diff --git a/agents/agent_decision.py b/agents/agent_decision.py deleted file mode 100644 index c248f8b19570346f9f583b2c05a73b013e5e902d..0000000000000000000000000000000000000000 --- a/agents/agent_decision.py +++ /dev/null @@ -1,227 +0,0 @@ -from typing import Dict, Optional, Union, List, TypedDict, Any, Literal -from dotenv import load_dotenv -from langchain_core.messages import HumanMessage, AIMessage, SystemMessage, BaseMessage -from langgraph.graph import MessagesState, StateGraph, END -from agents.message_filter import MessageFilter -from agents.rag_agent.buffer_memory import WindowBufferMemory -from config import Config -from agents.rag_agent import ResearchAssistantRAG -from langgraph.checkpoint.memory import MemorySaver - -load_dotenv() - -config = Config() - -memory = MemorySaver() - -thread_config = {"configurable": {"thread_id": "1"}} - -class AgentState(MessagesState): - """State maintained across the workflow.""" - messages: List[BaseMessage] - current_input: Optional[Union[str, Dict]] - output: Optional[str] - retrieval_confidence: float - sources: Optional[List[str]] # retrieved_chunks - -def create_agent_graph(): - message_filter = MessageFilter(config.rag.llm) - - def run_rag_agent(state: AgentState) -> AgentState: - print(f"Selected agent: RAG_AGENT") - - new_state = state.copy() - rag_agent = ResearchAssistantRAG(config) - - # messages: List[BaseMessage] = state["messages"] - # query: Union[str, Dict] = state["current_input"] - # rag_context_limit: int = config.rag.context_limit - # - # print(f"DEBUG messages: {messages}") - # - # buffer_memory = WindowBufferMemory(context_limit=rag_context_limit) - # chat_history: List[Dict[str, str]] = buffer_memory.build_context(messages) - # - # print("DEBUG chat_history input:", chat_history) - # print("DEBUG type of chat_history:", type(chat_history)) - - messages = state["messages"] - query = state["current_input"] - rag_context_limit = config.rag.context_limit - - print(f"checkdd") - recent_context = "" - for msg in messages[-rag_context_limit:]: # limit controlled from config - if isinstance(msg, HumanMessage): - # print("######### DEBUG 1:", msg) - recent_context += f"User: {msg.content}\n" - elif isinstance(msg, AIMessage): - # print("######### DEBUG 2:", msg) - recent_context += f"Assistant: {msg.content}\n" - - # if chat_history: - # for i, msg in enumerate(chat_history): - # print(f"DEBUG chat_history[{i}]: {msg} (type: {type(msg)})") - - print("Before processing query:", recent_context) - response: Dict[str, Any] = rag_agent.process_query(query, chat_history=recent_context) - - ### CHECKPOINT - print("Final response from RAG agent:", response) - - retrieval_confidence: float = response.get("confidence", 0.0) - - print(f"Retrieval Confidence: {retrieval_confidence}") - print(f"Sources: {len(response['sources'])}") - - insufficient_info = False - response_content = response["response"] - - if hasattr(response_content, 'content'): - response_text = response_content.content - else: - response_text = response_content - - print(f"Response text type: {type(response_text)}") - print(f"Response text preview: {response_text[:100]}...") - - # TODO: need to be improved because the logic is still "lord" - if isinstance(response_text, str) and ( - "I don't have enough information to answer this question based on the provided context" in response_text or - "I don't have enough information" in response_text or - "don't have enough information" in response_text.lower() or - "not enough information" in response_text.lower() or - "insufficient information" in response_text.lower() or - "cannot answer" in response_text.lower() or - "unable to answer" in response_text.lower() - ): - print("RAG response indicates insufficient information") - print(f"Response text that triggered insufficient_info: {response_text[:100]}...") - - # Store RAG output ONLY if confidence is high - if retrieval_confidence >= config.rag.min_retrieval_confidence: - response_output = AIMessage(content=response_text) - else: - response_output = AIMessage(content=response_text) # should be = "" - - updated_messages = messages + [AIMessage(content=response_text)] - - new_state.update({ - **state, - "messages": updated_messages, - "output": response_output, - "retrieval_confidence": retrieval_confidence, - "sources": response.get("chunks", []) - }) - - print(f"new_state in run_rag_agent: {new_state}") - - return new_state - - def apply_message_filter(state: AgentState) -> AgentState: - """Apply output guardrails to the generated response.""" - new_state = state.copy() - output = state["output"] - current_input = state["current_input"] - - # Check if output is valid - if not output or not isinstance(output, (str, AIMessage)): - return state - - # Get the original input text - input_text = "" - if isinstance(current_input, str): - input_text = current_input - elif isinstance(current_input, dict): - input_text = current_input.get("text", "") - - output_text = "" - if isinstance(output, str): - output_text = output - elif isinstance(output, AIMessage): - output_text = output.content - - sanitized_output = message_filter.validate_output(output_text, input_text) - - # For non-validation cases, add the sanitized output to messages - sanitized_message = AIMessage(content=sanitized_output) if isinstance(output, AIMessage) else sanitized_output - - updated_messages = state.get("messages", []) - if isinstance(updated_messages, list): - updated_messages = updated_messages + [sanitized_message] - else: - updated_messages = [sanitized_message] # ✅ Thêm fallback nếu messages bị sai kiểu - - new_state.update({ - **state, - "messages": updated_messages, - "output": sanitized_message - }) - - print(f"new_state in apply_message_filter: {new_state}") - - return new_state - - # === Create LangGraph === - graph = StateGraph(AgentState) - - graph.add_node("RAG_AGENT", run_rag_agent) - graph.add_node("MESSAGE_FILTER", apply_message_filter) - - graph.set_entry_point("RAG_AGENT") - graph.add_edge("RAG_AGENT", "MESSAGE_FILTER") - graph.add_edge("MESSAGE_FILTER", END) - - return graph.compile(checkpointer=memory) - - -def init_agent_state() -> AgentState: - """Initialize the agent state with default values.""" - return { - "messages": [], - "current_input": None, - "output": None, - "retrieval_confidence": 0.0, - "sources": [], - } - -def process_query(query: Union[str, Dict], conversation_history: List[BaseMessage] = None) -> Dict[str, Any]: - graph = create_agent_graph() - - state = init_agent_state() - - print(f"conversation_history {conversation_history}") - - input_text = query if isinstance(query, str) else query.get("text", "") - - if conversation_history: - state["messages"] = conversation_history - else: - state["messages"] = [HumanMessage(content=input_text)] - - state["current_input"] = query - - print(f"state first: {state}") - - state = graph.invoke(state, thread_config) - - output = state.get("output") - if hasattr(output, "content"): - response_text = output.content - else: - response_text = str(output) - # # Keep history to reasonable size (ANOTHER OPTION: summarize and store before truncating history) - # if len(result["messages"]) > config.max_conversation_history: # Keep last config.max_conversation_history messages - # result["messages"] = result["messages"][-config.max_conversation_history:] - # - # # visualize conversation history in console - # for m in result["messages"]: - # m.pretty_print() - - print(f"state after: {state}") - - return { - "response": response_text, - "messages": state.get("messages", []), - "chunks": state.get("sources", []), - } \ No newline at end of file diff --git a/agents/rag_agent/__init__.py b/agents/rag_agent/__init__.py deleted file mode 100644 index 1a038d757c86bc1c99c8ee942300e8638d92be03..0000000000000000000000000000000000000000 --- a/agents/rag_agent/__init__.py +++ /dev/null @@ -1,200 +0,0 @@ -import logging -import time -from typing import List, Dict, Any, Optional -import uuid -from pathlib import Path -import json - -from .content_processor import ContentProcessor -from .doc_parser import DocParser -from .query_expander import QueryExpander -from .query_processor import QueryProcessor -from .reranker import Reranker -from .response_generator import ResponseGenerator -from .multi_query_generator import MultiQueryGenerator -from .query_rewriter import QueryRewriter -from .vectorstore_qdrant import VectorStore - -class ResearchAssistantRAG: - - def __init__(self, config): - self.config = config - # self._initialize() - self.logger = logging.getLogger(f"{self.__module__}") - self.logger.info("Initializing Research Assistant RAG system") - self.doc_parser = DocParser() - self.content_processor = ContentProcessor(config) - self.parsed_content_dir = self.config.rag.parsed_content_dir - self.vector_store = VectorStore(config) - self.reranker = Reranker(config) - self.response_generator = ResponseGenerator(config) - self.parsed_content_dir = self.config.rag.parsed_content_dir - - - def ingest_file(self, document_path: str) -> Dict[str, Any]: - """ - Ingest a single file into the RAG system. - - Args: - document_path: Path to the file to ingest - - Returns: - Dictionary with ingestion results - """ - start_time = time.time() - self.logger.info(f"Ingesting file: {document_path}") - - try: - # Step 1: Parse document - self.logger.info("1. Parsing document and extracting images...") - parsed_document, images = self.doc_parser.parse_document(document_path, self.parsed_content_dir) - self.logger.info(f" Parsed document and extracted {len(images)} images") - - # Step 2: Summarize images - self.logger.info("2. Summarizing images...") - image_summaries = self.content_processor.summarize_images(images) - self.logger.info(f" Generated {len(image_summaries)} image summaries") - - # Step 3: Format document with image summaries - self.logger.info("3. Formatting document with image summaries...") - formatted_document = self.content_processor.format_document_with_images(parsed_document, image_summaries) - - # Save parsed_document to data/parsed - parsed_dir = Path("data/parsed") - parsed_dir.mkdir(exist_ok=True, parents=True) - parsed_path = parsed_dir / (Path(document_path).stem + "_parsed.json") - with open(parsed_path, "w", encoding="utf-8") as f: - import json - json.dump(formatted_document, f, ensure_ascii=False, indent=2, default=str) - - # Step 4: Chunk document into semantic sections - self.logger.info("4. Chunking document into semantic sections...") - document_chunks: List[str] = self.content_processor.chunk_document(formatted_document) - self.logger.info(f" Document split into {len(document_chunks)} chunks") - - with open("document_chunks.json", "w", encoding="utf-8") as f: - json.dump(document_chunks, f, ensure_ascii=False, indent=2) - - # Step 5: Create vector store and document store - self.logger.info("5. Creating vector store knowledge base...") - self.vector_store.create_vectorstore( - document_chunks=document_chunks, - document_path=document_path - ) - - return { - "success": True, - "documents_ingested": 1, - "chunks_processed": len(document_chunks), - "processing_time": time.time() - start_time - } - - except Exception as e: - self.logger.error(f"Error ingesting file: {e}") - return { - "success": False, - "error": str(e), - "processing_time": time.time() - start_time - } - - - def process_query(self, query: str, chat_history: Optional[List[Dict[str, str]]] = None) -> Dict[str, Any]: - """ - Process a query with the RAG system. - - Args: - query: The query string - chat_history: Optional chat history for context - - Returns: - Response dictionary - """ - start_time = time.time() - self.logger.info(f"RAG Agent processing query: {query}") - - # Process query and return result, passing chat_history - try: - # Step 1: Expand query - REWRITE QUERY - # self.logger.info(f"1. Expanding query: '{query}'") - # expansion_result = self.query_expander.expand_query(query) - # expanded_query = expansion_result["expanded_query"] - # self.logger.info(f" Original: '{query}'") - # self.logger.info(f" Expanded: '{expanded_query}'") - # query = expanded_query - - # Step 2: Retrieval - self.logger.info(f"2. Retrieving relevant documents for the query: '{query}'") - vectorstore, docstore = self.vector_store.load_vectorstore() - retrieved_documents = self.vector_store.retrieve_relevant_chunks( - query=query, - vectorstore=vectorstore, - docstore=docstore, - ) - - self.logger.info(f" Retrieved {len(retrieved_documents)} relevant document chunks") - print(f"type of retrieved_documents = {type(retrieved_documents)}") - print(f"retrieved_documents = {retrieved_documents}") - - # Step 3: Rerank the retrieved documents if we have a reranker and enough documents - self.logger.info(f"3. Reranking the retrieved documents") - if self.reranker and len(retrieved_documents) > 1: - # reranked_documents, reranked_top_k_picture_paths = self.reranker.rerank(query, retrieved_documents, - # self.parsed_content_dir) - reranked_documents = self.reranker.rerank(query, retrieved_documents, - self.parsed_content_dir) - self.logger.info(f" Reranked retrieved documents and chose top {len(reranked_documents)}") - # self.logger.info(f" Found {len(reranked_top_k_picture_paths)} referenced images") - else: - self.logger.info(f" Could not rerank the retrieved documents, falling back to original scores") - reranked_documents = retrieved_documents - reranked_top_k_picture_paths = [] - - # Step 4: Generate response - self.logger.info("4. Generating response...") - response = self.response_generator.generate_response( - query=query, - retrieved_docs=reranked_documents, - # picture_paths=reranked_top_k_picture_paths, - chat_history=chat_history - ) - - print(f"type(reranked_documents) = {type(reranked_documents)}") - print(f"reranked_documents = {reranked_documents}") - - # Add timing information - processing_time = time.time() - start_time - response["processing_time"] = processing_time - - response["chunks"] = [doc["content"] for doc in reranked_documents] - - return response - - except Exception as e: - self.logger.error(f"Error processing query: {e}") - import traceback - self.logger.error(traceback.format_exc()) - # Return error response - return { - "response": f"I encountered an error while processing your query: {str(e)}", - "sources": [], - "confidence": 0.0, - "processing_time": time.time() - start_time - } - - - def _ensure_json_serializable(self, obj): - if isinstance(obj, dict): - return {k: self._ensure_json_serializable(v) for k, v in obj.items()} - elif isinstance(obj, list): - return [self._ensure_json_serializable(item) for item in obj] - elif isinstance(obj, (str, int, float, bool, type(None))): - return obj - else: - return str(obj) - - - def ingest_directory(self, directory_path: str, file_extension: Optional[str] = None) -> Dict[str, Any]: - pass - - - diff --git a/agents/rag_agent/multi_query_generator.py b/agents/rag_agent/multi_query_generator.py deleted file mode 100644 index 74b4480b21162335b3f99b51d420b73a4bf0147f..0000000000000000000000000000000000000000 --- a/agents/rag_agent/multi_query_generator.py +++ /dev/null @@ -1,69 +0,0 @@ -from typing import List, Dict, Optional -from langchain_core.language_models import BaseLanguageModel - -class MultiQueryGenerator: - def __init__(self, llm: BaseLanguageModel, max_queries: int = 5): - """ - MQ (Multi-query) Generator: Sinh nhiều truy vấn từ câu hỏi gốc và ngữ cảnh. - Có thể nâng cấp sang MQA dễ dàng trong tương lai. - - Args: - llm: LLM dùng để sinh truy vấn (GPT-3.5, GPT-4...) - max_queries: Số truy vấn tối đa muốn sinh - """ - self.llm = llm - self.max_queries = max_queries - - def generate_queries( - self, - user_question: str, - chat_history: Optional[List[Dict[str, str]]] = None, - persona: Optional[List[str]] = None, - initial_answer: Optional[str] = None # nếu sau này dùng MQA, có thể truyền vào đây - ) -> List[str]: - """ - Sinh ra các truy vấn tìm kiếm từ câu hỏi và ngữ cảnh hội thoại. - - Args: - user_question: câu hỏi cuối cùng của người dùng - chat_history: lịch sử hội thoại (list gồm {"role": "user"|"ai", "content": ...}) - persona: thông tin nền của người dùng (dùng sau cho iKAT) - initial_answer: câu trả lời sơ bộ (dành cho nâng cấp sang MQA) - - Returns: - List[str]: Danh sách các truy vấn con - """ - history_text = "\n".join(f"{msg['role'].capitalize()}: {msg['content']}" for msg in chat_history or []) - persona_text = "\n".join(persona or []) - - # Prompt template có thể được mở rộng sang MQA nếu truyền initial_answer - prompt = f""" -Du bist ein intelligenter Suchassistent. -Ich werde dir ein Gespräch zwischen einem Nutzer und einem System sowie die letzte Frage des Nutzers geben. - -Deine Aufgabe ist es, bis zu {self.max_queries} präzisere Suchanfragen zu generieren, die dabei helfen können, die gesuchte Information besser zu finden. - -# Hintergrundinformationen zum Nutzer: -{persona_text} - -# Gesprächsverlauf: -{history_text} - -# Letzte Nutzerfrage: -{user_question} - -# Zu generierende Suchanfragen: -(schreibe jede Anfrage in eine neue Zeile, ohne Nummerierung) - """ - - print(f"search-prompt: \n{prompt}") - - response = self.llm.invoke(prompt) - if hasattr(response, "content"): - response_text = response.content - else: - response_text = response # fallback nếu là str - - queries = [line.strip() for line in response_text.strip().splitlines() if line.strip()] - - return queries[:self.max_queries] diff --git a/agents/rag_agent/query_expander.py b/agents/rag_agent/query_expander.py deleted file mode 100644 index dfe6d4240412ed51b3360ce424ac268c51c23a28..0000000000000000000000000000000000000000 --- a/agents/rag_agent/query_expander.py +++ /dev/null @@ -1,71 +0,0 @@ -import logging -from typing import List, Dict, Any - -class QueryExpander: - def __init__(self, config): - self.logger = logging.getLogger(f"{self.__module__}") - self.config = config - self.model = config.rag.llm - - def expand_query(self, original_query: str) -> Dict[str, Any]: - """ - Expand the original query with relevant academic and scientific terms. - - Args: - original_query: The user's original query - - Returns: - Dictionary with original and expanded queries - """ - self.logger.info(f"Expanding query: {original_query}") - - # Generate expansions - # Step 1: expand the query using synonyms and related terms (using a predefined thesaurus or external source) - expanded_query = self._expand_with_synonyms_and_related_terms(original_query) - - # Step 2: use llm to expand query semantically - expanded_query = self._expand_with_semantics(expanded_query) - - return { - "original_query": original_query, - "expanded_query": expanded_query - } - - def _expand_with_synonyms_and_related_terms(self, query: str) -> str: - """Expand the query by adding synonyms and related terms using a predefined thesaurus or domain knowledge.""" - - # Define a dictionary for basic synonyms/related terms (this can be expanded based on your domain) - synonym_dict = { - "artificial intelligence": ["machine learning", "deep learning", "neural networks", "AI"], - "data science": ["big data", "data analysis", "machine learning", "data mining"], - } - - expanded_query = query.lower() # Convert to lowercase for matching - - # Expand using synonyms from the dictionary - for key, synonyms in synonym_dict.items(): - if key.lower() in expanded_query: - expanded_query += " OR " + " OR ".join(synonyms) - - self.logger.info(f"Expanded query after synonym addition: {expanded_query}") - - # return expanded_query - ### For now: do nothing and return original query - return query - - def _expand_with_semantics(self, query: str) -> str: - """Use LLM to expand query with academic and scientific terminology.""" - prompt = f""" - As a research assistant, expand the following query with relevant scientific terminology, - synonyms, related concepts, and keywords that would help in retrieving relevant academic papers and research articles: - - User Query: {query} - - Expand the query only if you feel like it is required, otherwise keep the user query intact. - Be specific to the field of study mentioned, do not add other irrelevant domains. - If the user query asks about answering in tabular format, include that in the expanded query and do not answer in tabular format yourself. - Provide only the expanded query without explanations. - """ - expansion = self.model.invoke(prompt) - - return expansion \ No newline at end of file diff --git a/agents/rag_agent/query_processor.py b/agents/rag_agent/query_processor.py deleted file mode 100644 index 85b6f0ef83b94cad9c80b2f9cb5b05110a76f27f..0000000000000000000000000000000000000000 --- a/agents/rag_agent/query_processor.py +++ /dev/null @@ -1,109 +0,0 @@ -import logging -import re -import uuid -from typing import List, Dict, Any, Optional, Tuple, Union -from datetime import datetime - -class QueryProcessor: - def __init__(self, config, embedding_model, sparse_embedder): - self.logger = logging.getLogger(__name__) - self.embedding_model = embedding_model - self.sparse_embedder = sparse_embedder - - self.synonyms = { - "zusammenfassung": ["summary", "zusammenfassen", "kurzfassung"], - "artikel": ["article", "studie", "paper"], - "projekt": ["project", "forschung", "studie"], - "aktuellen": ["aktuellen", "neuesten", "recent", "latest"], - } - - self.intent_patterns = { - "summary": re.compile(r"\b(zusammenfassung|summary)\b", re.IGNORECASE), - "project_search": re.compile(r"\b(projekt|forschung|study|project)\b", re.IGNORECASE), - "article_navigation": re.compile(r"\b(link|artikel|paper|artikel)\b", re.IGNORECASE), - } - - def process_query(self, query: str) -> Tuple[Dict[str, Any], Dict[str, Any]]: - """ - Process the query to generate embedding and extract metadata filters. - - Args: - query: User query string - - Returns: - Tuple of (query_embedding, extracted_filters) - """ - try: - query_id = str(uuid.uuid4()) - - expanded_query = self._expand_query(query) - - query_intent = self._detect_query_intent(query) - - query_dense_embedding = self.embedding_model.embed_query(expanded_query) - if query_dense_embedding is None: - raise ValueError("Embedding model returned None for query.") - - query_dense_embedding = query_dense_embedding.tolist() if hasattr(query_dense_embedding, "tolist") else query_dense_embedding - - query_sparse_embeddings = list(self.sparse_embedder.query_embed(query)) - if query_sparse_embeddings: - query_sparse_embedding = query_sparse_embeddings[0] - else: - query_sparse_embedding = {} - - filters: Dict[str, Any] = { - "query_id": query_id, - "timestamp": datetime.now().isoformat(), - "query_intent": query_intent, - } - - filters = {k: v for k, v in filters.items() if v is not None} - - self.logger.info(f"Processed query with filters: {filters}") - - return { - "dense": query_dense_embedding, - "sparse": query_sparse_embedding - }, filters - - except Exception as e: - self.logger.error(f"Error processing query: {e}") - - fallback_dense_embedding = self.embedding_model.embed_query(query) - if fallback_dense_embedding is None: - fallback_dense_embedding = [] - fallback_dense_embedding = fallback_dense_embedding.tolist() if hasattr(fallback_dense_embedding, "tolist") else fallback_dense_embedding - - try: - fallback_sparse_embeddings = list(self.sparse_embedder.query_embed(query)) - fallback_sparse_embedding = fallback_sparse_embeddings[0] if fallback_sparse_embeddings else {} - except Exception as se: - self.logger.error(f"Error generating sparse fallback: {se}") - fallback_sparse_embedding = {} - - fallback_filters: Dict[str, Any] = { - "query_id": str(uuid.uuid4()), - "timestamp": datetime.now().isoformat(), - "is_fallback": True - } - - return { - "dense": fallback_dense_embedding, - "sparse": fallback_sparse_embedding - }, fallback_filters - - - def _expand_query(self, query: str) -> str: - parts = [query] - low = query.lower() - for key, syns in self.synonyms.items(): - if key in low: - parts.extend(syns) - return " ".join(dict.fromkeys(parts)) - - def _detect_query_intent(self, query: str) -> str: - for intent, pattern in self.intent_patterns.items(): - if pattern.search(query): - return intent - return "general_information" diff --git a/agents/rag_agent/response_generator.py b/agents/rag_agent/response_generator.py deleted file mode 100644 index 04065c2484d93705160d5f4ab7b80dc89a780649..0000000000000000000000000000000000000000 --- a/agents/rag_agent/response_generator.py +++ /dev/null @@ -1,230 +0,0 @@ -import logging -from typing import List, Dict, Any, Optional - -class ResponseGenerator: - - def __init__(self, config): - self.logger = logging.getLogger(__name__) - self.llm = config.rag.llm - self.max_context_length = config.rag.max_context_length - self.include_sources = getattr(config.rag, "include_sources", True) - - def _build_prompt( - self, - query: str, - context: str, - chat_history: Optional[List[Dict[str, str]]] = None - ) -> str: - """ - Build the prompt for the language model. - - Args: - query: User query - context: Formatted context from retrieved documents - chat_history: Optional chat history - - Returns: - Complete prompt string - """ - - table_instructions = """ - Einige der abgerufenen Informationen werden in Tabellenform präsentiert. Beim Verwenden von Informationen aus Tabellen: - 1. Stelle tabellarische Daten mit korrekter Markdown-Tabellenformatierung und Kopfzeilen dar, zum Beispiel: - | Spalte1 | Spalte2 | Spalte3 | - |---------|---------|---------| - | Wert1 | Wert2 | Wert3 | - 2. Formatiere die Tabellenstruktur so um, dass sie leichter zu lesen und zu verstehen ist. - 3. Wenn beim Umformatieren der Tabelle eine neue Komponente hinzugefügt wird, erwähne dies ausdrücklich. - 4. Interpretiere die tabellarischen Daten in deiner Antwort klar und verständlich. - 5. Beziehe dich beim Präsentieren spezifischer Datenpunkte auf die jeweilige Tabelle. - 6. Fasse, wenn sinnvoll, Trends oder Muster aus den Tabellen zusammen. - 7. Falls nur Referenznummern genannt werden und du dazugehörige Werte wie den Titel einer wissenschaftlichen Arbeit oder Autoren aus dem Kontext holen kannst, ersetze die Referenznummern durch die tatsächlichen Werte. - """ - - response_format_instructions = """Anweisungen: - 1. Beantworte die Frage ausschließlich auf Basis der im Kontext bereitgestellten Informationen. - 2. Falls der Kontext keine relevanten Informationen zur Beantwortung der Frage enthält, sage: "Ich habe nicht genügend Informationen, um diese Frage auf Basis des bereitgestellten Kontexts zu beantworten." - 3. Nutze kein Vorwissen, das nicht im Kontext enthalten ist. - 5. Sei präzise und korrekt. - 6. Gib eine gut strukturierte Antwort mit Überschriften, Unterüberschriften und ggf. tabellarischer Darstellung im Markdown-Format basierend auf dem abgerufenen Wissen. Halte Überschriften und Unterüberschriften möglichst kurz. - 7. Führe nur solche Abschnitte auf, die in einer Chatbot-Antwort sinnvoll sind. Nenne z. B. keine Referenzen explizit. - 8. Wenn Werte enthalten sind, gib exakt die im Kontext vorhandenen Werte wieder. Erfinde keine Werte. - 9. Wiederhole die Frage nicht in der Antwort.""" - - # Build the prompt - prompt = f""" - Du bist ein wissenschaftlicher Chatbot, der folgende Aufgaben erfüllt: - - Zusammenfassung wissenschaftlicher Artikel - - Suche nach aktuellen und vergangenen Forschungsprojekten - - Navigation zu Artikeln: Bereitstellung von Links zu Veröffentlichungen, Anzeige meistzitierter oder neuester Artikel Antworte auf Deutsch. - - Hier sind die letzten Nachrichten aus unserem Gespräch: - {chat_history} - - Der Nutzer hat folgende Frage gestellt: - {query} - - Ich habe die folgenden Informationen abgerufen, um bei der Beantwortung der Frage zu helfen: - {context} - - {table_instructions} - - {response_format_instructions} - - Bitte beantworte die Frage des Nutzers auf Grundlage der bereitgestellten Informationen umfassend, aber prägnant. - Falls die Informationen keine Antwort enthalten, weise bitte auf die Grenzen der verfügbaren Informationen hin. - - Gib keinen Quell-Link an, der nicht im Kontext enthalten ist. Erfinde keinen Quell-Link. - - Assistant Response:""" - - return prompt - - def generate_response( - self, - query: str, - retrieved_docs: List[Dict[str, Any]], - # picture_paths: List[str], - chat_history: Optional[List[Dict[str, str]]] = None, - ) -> Dict[str, Any]: - """ - Generate a response based on retrieved documents. - - Args: - query: User query - retrieved_docs: List of retrieved document dictionaries - chat_history: Optional chat history - - Returns: - Dict containing response text and source information - """ - try: - - # Extract content from documents for context - doc_texts = [doc["content"] for doc in retrieved_docs] - - # Combine retrieved documents into a single context - context = "\n\n===DOCUMENT SECTION===\n\n".join(doc_texts) - - # Build the prompt - prompt = self._build_prompt(query, context, chat_history) - - # Generate response - response = self.llm.invoke(prompt) - - # Extract sources for citation - sources = self._extract_sources(retrieved_docs) if hasattr(self, - 'include_sources') and self.include_sources else [] - - # Calculate confidence - confidence = self._calculate_confidence(retrieved_docs) - - # Add sources to response - if hasattr(self, 'include_sources') and self.include_sources: - response_with_source = response.content + "\n\n##### Source documents:" - for current_source in sources: - source_path = current_source['path'] - source_title = current_source['title'] - response_with_source += f"\n- [{source_title}]({source_path})" - else: - response_with_source = response.content - - # # Add picture paths to response - # response_with_source_and_picture_paths = response_with_source + "\n\n##### Reference images:" - # for picture_path in picture_paths: - # response_with_source_and_picture_paths += f"\n- [{picture_path.split('/')[-1]}]({picture_path})" - - # Format final response - result = { - # "response": response_with_source_and_picture_paths, - "response": response_with_source, - "sources": sources, - "confidence": confidence - } - - return result - - except Exception as e: - self.logger.error(f"Error generating response: {e}") - return { - "response": "I apologize, but I encountered an error while generating a response. Please try rephrasing your question.", - "sources": [], - "confidence": 0.0 - } - - def _extract_sources(self, documents: List[Dict[str, Any]]) -> List[Dict[str, str]]: - """ - Extract source information from retrieved documents for citation. - - Args: - documents: List of retrieved document dictionaries - - Returns: - List of source information dictionaries - """ - sources = [] - seen_sources = set() # Track unique sources to avoid duplicates - - for doc in documents: - # Extract source and source_path - source = doc.get("source") - source_path = doc.get("source_path") - - # Skip if no source information is available - if not source: - continue - - # Create a unique identifier for this source - source_id = f"{source}|{source_path}" - - # Skip if we've already included this source - if source_id in seen_sources: - continue - - # Add to our sources list - source_info = { - "title": source, - "path": source_path, - "score": doc.get("combined_score", doc.get("rerank_score", doc.get("score", 0.0))) - } - - sources.append(source_info) - seen_sources.add(source_id) - - # Sort sources by score from highest to lowest - sources.sort(key=lambda x: x.get("score", 0), reverse=True) - - # Format the final sources list, removing the scores which were just used for sorting - formatted_sources = [] - for source in sources: - formatted_source = { - "title": source["title"], - "path": source["path"] - } - formatted_sources.append(formatted_source) - - return formatted_sources - - def _calculate_confidence(self, documents: List[Dict[str, Any]]) -> float: - """ - Calculate confidence score based on retrieved documents. - - Args: - documents: Retrieved documents - - Returns: - Confidence score between 0 and 1 - """ - if not documents: - return 0.0 - - # Use combined score (both reranker and cosine similarity) if available, otherwise use original score - if "combined_score" in documents[0]: - scores = [doc.get("combined_score", 0) for doc in documents[:3]] - elif "rerank_score" in documents[0]: - scores = [doc.get("rerank_score", 0) for doc in documents[:3]] - else: - scores = [doc.get("score", 0) for doc in documents[:3]] - - # Average of top 3 document scores or fewer if less than 3 - return sum(scores) / len(scores) if scores else 0.0 \ No newline at end of file diff --git a/agents/rag_agent/vector_store.py b/agents/rag_agent/vector_store.py deleted file mode 100644 index 75865620c2d6e1a1662935bfc2a493e7980217b1..0000000000000000000000000000000000000000 --- a/agents/rag_agent/vector_store.py +++ /dev/null @@ -1,263 +0,0 @@ -# from typing import List, Dict, Any, Optional, Union -# import logging -# from qdrant_client import QdrantClient -# from qdrant_client.http import models as qdrant_models -# from qdrant_client.http.models import ContextQuery, ContextPair, SearchParams, SparseVectorParams -# from qdrant_client.http.exceptions import UnexpectedResponse -# from qdrant_client.http.models import Distance, VectorParams, PointStruct, Prefetch, FusionQuery, Fusion -# from sklearn.feature_extraction.text import TfidfVectorizer -# -# class QdrantClientManager: -# _instance = None -# _client = None -# -# @classmethod -# def get_client(cls, config): -# if cls._client is None: -# if config.rag.use_local: -# logging.info(f"Connecting to local Qdrant at: {config.rag.url}") -# cls._client = QdrantClient(url=config.rag.url) # Dùng URL, không phải path -# else: -# logging.info(f"Connecting to remote Qdrant at: {config.rag.url}") -# cls._client = QdrantClient(url=config.rag.url, api_key=config.rag.api_key) -# -# logging.info("Initialized Qdrant client singleton") -# -# return cls._client -# -# -# class QdrantRetriever: -# -# def __init__(self, config): -# self.logger = logging.getLogger(__name__) -# self.collection_name = config.rag.collection_name -# self.embedding_dim = config.rag.embedding_dim -# self.distance_metric = config.rag.distance_metric -# self.tfidf_vectorizer = TfidfVectorizer() -# self.sparse_vocab = {} -# self.is_fitted = False -# -# self.client = QdrantClientManager.get_client(config) -# -# self._ensure_collection() -# -# def _ensure_collection(self): -# collection_info = self.client.get_collections() -# print(f"Collection info: {collection_info}") -# collection_names = [collection.name for collection in collection_info.collections] -# print("Collection names:", collection_names) -# -# # self.client.delete_collection(collection_name=self.collection_name) -# -# if self.collection_name not in collection_names: -# self.logger.info(f"Creating new collection {self.collection_name}") -# try: -# self.client.create_collection( -# collection_name=self.collection_name, -# vectors_config={ -# "dense": VectorParams( -# size=self.embedding_dim, -# distance=self.distance_metric, # =Distance.COSINE -# ) -# }, -# sparse_vectors_config={ -# "sparse": SparseVectorParams( -# modifier=qdrant_models.Modifier.IDF -# ) -# } -# # vectors_config=VectorParams( -# # size=self.embedding_dim, -# # distance=Distance.COSINE -# # ), -# # optimizers_config=qdrant_models.OptimizersConfigDiff( -# # indexing_threshold=10000, -# # ), -# ) -# self.logger.info(f"Created new collection: {self.collection_name}") -# except Exception as e: -# self.logger.error(f"Error creating collection: {e}") -# raise e -# else: -# self.logger.info(f"Collection {self.collection_name} already exists") -# -# def upsert_chunks(self, chunks: List[Dict[str, Any]]): -# try: -# print(f"DEBUG Upserting chunks: {chunks}") -# points: List[PointStruct] = [] -# -# for chunk in chunks: -# payload = chunk["metadata"].copy() -# -# payload["content"] = chunk["content"] -# -# print(f"DEBUG Upserting chunk: {chunk['id']}") -# print(f"DEBUG Embedding keys: {chunk['embedding']}") -# print(f"DEBUG Payload: {payload}") -# -# points.append( -# PointStruct( -# id=chunk["id"], -# # vector=chunk["embedding"], -# vector={ -# "dense": chunk["embedding"]["dense"], -# "sparse": chunk["embedding"]["sparse"].as_object() -# }, -# #Giả định chunk["embedding"] là dict kiểu: -# # { -# # "dense": [...], # list[float] -# # "sparse": {...} # dict[int -> float] -# # } -# payload=payload -# ) -# ) -# -# batch_size = 100 -# # Nghĩa là mỗi lần gửi lên database sẽ gửi tối đa 100 points (vector + metadata). -# for i in range(0, len(points), batch_size): -# batch = points[i:i + batch_size] -# self.client.upsert( -# collection_name=self.collection_name, -# points=batch, -# wait=True -# ) -# self.logger.info(f"Successfully upserted {len(chunks)} chunks into '{self.collection_name}'") -# except Exception as e: -# self.logger.error(f"Error upserting documents: {e}") -# raise -# -# -# def count_documents(self) -> int: -# try: -# collection_info = self.client.get_collection(self.collection_name) -# count = collection_info.vectors_count -# self.logger.info(f"Collection {self.collection_name} has {count} documents") -# return count -# except Exception as e: -# self.logger.error(f"Error getting collection info: {str(e)}") -# return 0 -# -# -# def fit_sparse_vectorizer(self, corpus: List[str]): -# try: -# if not self.is_fitted: -# self.tfidf_vectorizer.fit(corpus) -# self.is_fitted = True -# self.logger.info("TF-IDF Vectorizer fitted successfully") -# else: -# self.logger.info("TF-IDF Vectorizer is already fitted") -# except Exception as e: -# self.logger.error(f"Error fitting TF-IDF Vectorizer: {e}") -# -# -# def text_to_sparse_vector(self, query_text: str) -> Dict[str, List]: -# if not self.is_fitted: -# self.logger.warning("TF-IDF Vectorizer is not fitted yet. Skipping transformation") -# return {} -# -# vec = self.tfidf_vectorizer.transform([query_text]) -# indices = vec.indices.tolist() -# values = vec.data.tolist() -# return { -# "indices": indices, -# "values": values -# } -# -# def retrieve( -# self, -# query_embedding: Dict[str, Any], -# filters: Optional[Dict[str, Any]] = None, -# top_k: int = 5, -# include_metadata: bool = True, -# ) -> List[Dict[str, Any]]: -# """ -# Perform hybrid retrieval using both dense and sparse embeddings. -# -# Args: -# query_embedding: Dict with keys "dense" (List[float]) and "sparse" (SparseEmbedding) -# filters: Optional metadata filters -# top_k: Number of documents to retrieve -# include_metadata: Whether to include payload in results -# -# Returns: -# List of retrieved documents with score -# """ -# dense_vector = query_embedding.get("dense") -# sparse_vector = query_embedding.get("sparse") -# -# self.logger.info(f""" -# [RETRIEVE PARAMS] -# -# dense_dim={len(dense_vector) if dense_vector else 'None'}, -# filters={filters}, -# top_k={top_k}, -# include_metadata={include_metadata} -# """) -# -# if sparse_vector: -# self.logger.info("Sparse vector detected → using hybrid search") -# -# prefetch = [ -# qdrant_models.Prefetch(query=dense_vector, using="dense", limit=top_k), -# qdrant_models.Prefetch( -# query=qdrant_models.SparseVector( -# indices=sparse_vector.indices.tolist(), -# values=sparse_vector.values.tolist() -# ), -# using="sparse", -# limit=top_k, -# ), -# ] -# -# try: -# response = self.client.query_points( -# collection_name=self.collection_name, -# prefetch=prefetch, -# query=qdrant_models.FusionQuery(fusion=qdrant_models.Fusion.RRF), -# with_payload=include_metadata, -# query_filter=None, # TODO: build filter from `filters` if needed -# ) -# retrieved_points = response.points -# -# results = [] -# for point in retrieved_points: -# print("DEBUG point:", point) -# -# result_item = dict(point.payload or {}) -# result_item["score"] = point.score -# results.append(result_item) -# -# self.logger.info(f"Retrieved {len(results)} results (hybrid search)") -# return results -# -# except Exception as e: -# self.logger.error(f"Error during hybrid retrieval: {e}", exc_info=True) -# return [] -# -# else: -# self.logger.info("No sparse vector → fallback to dense-only search") -# -# try: -# response = self.client.query_points( -# collection_name=self.collection_name, -# prefetch=[ -# qdrant_models.Prefetch(query=dense_vector, using="dense", limit=top_k) -# ], -# query=qdrant_models.FusionQuery(fusion=qdrant_models.Fusion.RRF), -# with_payload=include_metadata, -# query_filter=None, -# ) -# retrieved_points = response.points -# -# results = [] -# for point in retrieved_points: -# result_item = dict(point.payload or {}) -# result_item["score"] = point.score -# results.append(result_item) -# -# self.logger.info(f"Retrieved {len(results)} results (dense-only search)") -# return results -# -# except Exception as e: -# self.logger.error(f"Error during dense-only retrieval: {e}", exc_info=True) -# return [] -# diff --git a/api/fastapi_server.py b/api/fastapi_server.py index 874599e722761e9c8deb38045057c6482496a9ed..0039c0e5b2ab765615f218aba264acede5655067 100644 --- a/api/fastapi_server.py +++ b/api/fastapi_server.py @@ -1,122 +1,101 @@ import os import uuid -from fastapi import FastAPI, UploadFile, File, Form, HTTPException, Request, Response +import logging +from contextlib import asynccontextmanager +from fastapi import FastAPI, HTTPException, Request, Response from fastapi.staticfiles import StaticFiles from pydantic import BaseModel import uvicorn -from agents.agent_decision import process_query -from typing import List, Union -from langchain_core.messages import BaseMessage, HumanMessage, AIMessage, SystemMessage -from typing import Dict, Optional, Union, List, TypedDict, Any, Literal +from typing import Dict, Optional, List, Any +from config import Config +from dataclasses import is_dataclass + +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s | %(name)s | %(levelname)s | %(message)s' +) +logger = logging.getLogger(__name__) UPLOAD_FOLDER = "uploads/backend" os.makedirs(UPLOAD_FOLDER, exist_ok=True) -app = FastAPI(title="Transfer-Bot", version="1.0") - -app.mount("/uploads", StaticFiles(directory="uploads"), name="uploads") - -def deserialize_messages(serialized: List[dict]) -> List[BaseMessage]: - message_objects = [] - for msg in serialized: - print(f"Message deri: {msg}") - msg_type = msg.get("type") - content = msg.get("content", "") - if msg_type == "human": - message_objects.append(HumanMessage(content=content)) - elif msg_type == "ai": - message_objects.append(AIMessage(content=content)) - elif msg_type == "system": - message_objects.append(SystemMessage(content=content)) - return message_objects - -class QueryRequest(BaseModel): - query: str - conversation_history: List[dict] = [] - -@app.post("/chat") -def chat(request: QueryRequest, - response: Response, - request_obj: Request - ): - - session_id = request_obj.cookies.get("session_id", str(uuid.uuid4())) - - try: - print(f"Session id: {session_id}") - history: List[BaseMessage] = deserialize_messages(request.conversation_history) - - print(f"History: {history}") - print("Incoming request:", request.model_dump()) - response_data: Dict[str, Any] = process_query( - query=request.query, - conversation_history=history - ) +@asynccontextmanager +async def lifespan(server: FastAPI): + from rag.hybrid_retrieval import HybridRetrieval + app_config = Config() + server.state.config = app_config + server.state.default_retrieval = HybridRetrieval(app_config) + yield - print("response_data =", response_data) - response_text = response_data['response'] +app = FastAPI(title="Transfer-Bot", version="1.0", lifespan=lifespan) - response.set_cookie(key="session_id", value=session_id) +app.mount("/uploads", StaticFiles(directory="uploads"), name="uploads") - result = { - "response": response_text, - "agent": response_data.get("agent_name", "default_agent") - } - if "chunks" in response_data: - print(f"Chunks: {response_data['chunks']}") - result["context"] = { - "data_points": { - "text": response_data["chunks"] - } - } +class Message(BaseModel): + role: str + content: str - if "result_file" in response_data: - result["result_file_url"] = f"/uploads/{response_data['result_file']}" - print(f"Result final: {result}") +class QueryRequest(BaseModel): + messages: List[Message] + session_id: Optional[str] = None + context: Optional[dict] = {} - return result - except Exception as e: - raise HTTPException(status_code=500, detail=str(e)) -@app.post("/upload") -async def upload_file(response: Response, request_obj: Request, file: UploadFile = File(...), text: str = Form("")): +def deep_to_dict(obj): + if is_dataclass(obj): + return {k: deep_to_dict(v) for k, v in obj.__dict__.items()} + elif isinstance(obj, list): + return [deep_to_dict(i) for i in obj] + elif isinstance(obj, dict): + return {k: deep_to_dict(v) for k, v in obj.items()} + else: + return obj - file_path = os.path.join(UPLOAD_FOLDER, file.filename) - with open(file_path, "wb") as f: - f.write(await file.read()) - session_id = request_obj.cookies.get("session_id", str(uuid.uuid4())) +@app.post("/chat") +async def chat( + request: QueryRequest, + response: Response, + fastapi_request: Request, +): + session_id: str = request.session_id or str(uuid.uuid4()) + messages: List[Dict[str, Any]] = [msg.model_dump() for msg in request.messages] + + logger.info(f"Received chat | session_id: {session_id} | message count: {len(messages)}") + + print(f"type(messages) = {type(messages)}") + print(f"type(session_id) = {type(session_id)}") + print(f"messages = {messages}") + # [ + # { + # 'role': 'user', + # 'content': 'Wer ist Herr Thomas Heine?' + # }, + # { + # 'role': 'assistant', + # 'content': 'Herr Thomas Heine ist e' + # } + # ] + print(f"session_id = {session_id}") # 3f391a3a-f25b-4a96-9d6e-f63cc3eabb07 try: - query = {"text": text, "file_path": file_path} - response_data = process_query(query) - response_text = response_data['messages'][-1].content - + retrieval = fastapi_request.app.state.default_retrieval + logger.info(f"Using retrieval class: {retrieval.__class__.__name__}") + result = await retrieval.run(messages, session_id) response.set_cookie(key="session_id", value=session_id) - - result = { - "response": response_text, - "agent": response_data.get("agent_name", "default_agent") - } - - if "result_file" in response_data: - result["result_file_url"] = f"/uploads/{response_data['result_file']}" - - try: - os.remove(file_path) - except Exception as e: - print(f"Failed to delete temp file: {str(e)}") + logger.info(f"Response returned for session_id: {session_id}") + result = deep_to_dict(result) + logger.info(f"Chat response (session_id={session_id}): {result}") return result except Exception as e: - raise HTTPException(status_code=500, detail=str(e)) + logger.error("Error in /chat endpoint", exc_info=True) + raise HTTPException(status_code=500, detail="Internal server error") if __name__ == "__main__": - uvicorn.run(app, host="0.0.0.0", port=8000, log_config="logging_config.yaml" -) - + uvicorn.run(app, host="0.0.0.0", port=8000) diff --git a/chat_gui.py b/chat_gui.py index 834d17deee6fb5d6f8ce68a0e400dd8a371ca590..49a31186c212ef6e4f302a1aa78246e18762fe3b 100644 --- a/chat_gui.py +++ b/chat_gui.py @@ -10,8 +10,12 @@ if "chat_history" not in st.session_state: st.session_state.chat_history = [] def get_serialized_history(): + # return [ + # {"type": "human" if role == "user" else "ai", "content": msg} + # for role, msg in st.session_state.chat_history + # ] return [ - {"type": "human" if role == "user" else "ai", "content": msg} + {"role": "user" if role == "user" else "assistant", "content": msg} for role, msg in st.session_state.chat_history ] @@ -51,33 +55,59 @@ with tab1: st.session_state.pending_query = user_query st.rerun() + # if "pending_query" in st.session_state: + # with st.spinner("Wird verarbeitet..."): + # data = {} + # try: + # payload = { + # "query": st.session_state.pending_query, + # "conversation_history": get_serialized_history() # ✅ Thêm + # } + # + # print(f"payload: {payload}") + # + # response = requests.post(f"{API_URL}/chat", json=payload) + # + # data = response.json() + # bot_reply = data.get("response", "Keine Antwort erhalten.") + # + # # st.session_state.chat_history.append(("bot", bot_reply)) + # if "messages" in data: + # st.session_state.chat_history = [ + # ("user" if m["type"] == "human" else "bot", m["content"]) + # for m in data["messages"] + # ] + # else: + # st.session_state.chat_history.append(("bot", bot_reply)) + # except Exception as e: + # bot_reply = f"Error: {str(e)}" + # st.session_state.chat_history.append(("bot", bot_reply)) + # + # del st.session_state.pending_query + # st.rerun() if "pending_query" in st.session_state: with st.spinner("Wird verarbeitet..."): data = {} try: payload = { - "query": st.session_state.pending_query, - "conversation_history": get_serialized_history() # ✅ Thêm + "messages": get_serialized_history(), + "session_id": st.session_state.get("session_id", None), } - - print(f"payload: {payload}") - response = requests.post(f"{API_URL}/chat", json=payload) - data = response.json() - bot_reply = data.get("response", "Keine Antwort erhalten.") - - # st.session_state.chat_history.append(("bot", bot_reply)) - if "messages" in data: - st.session_state.chat_history = [ - ("user" if m["type"] == "human" else "bot", m["content"]) - for m in data["messages"] - ] - else: - st.session_state.chat_history.append(("bot", bot_reply)) + bot_reply = data.get("message", {}).get("content", "Keine Antwort erhalten.") + + # Nếu muốn lấy lại full history từ server + # if "messages" in data: + # st.session_state.chat_history = [ + # (m["role"], m["content"]) + # for m in data["messages"] + # ] + # else: + st.session_state.chat_history.append(("assistant", bot_reply)) except Exception as e: bot_reply = f"Error: {str(e)}" - st.session_state.chat_history.append(("bot", bot_reply)) + st.session_state.chat_history.append(("assistant", bot_reply)) del st.session_state.pending_query st.rerun() diff --git a/config.py b/config.py index da2b772ecd1d38749fd45cb1bbb0a2f8bf4f3e37..341144b885ac12914fb455a5f230dabeae189015 100644 --- a/config.py +++ b/config.py @@ -1,89 +1,88 @@ import os -from dotenv import load_dotenv from fastembed import SparseTextEmbedding from langchain_openai import ChatOpenAI, OpenAIEmbeddings from openai import OpenAI - -from agents.rag_agent.local_embedding_model import LocalEmbeddingModel +from dotenv import load_dotenv load_dotenv() -class AgentDecisoinConfig: +DEFAULTS = { + "VECTORSTORE_LOCAL_PATH": "./data/qdrant_db", + "DOCUMENT_DB_LOCAL_DIR": "./data/document_db", + "PARSED_CONTENT_DIR": "./data/parsed_documents", + "QDRANT_COLLECTION_NAME": "pro_assistant_rag", + "RETRIEVAL_TOP_K": 5, + "RERANKER_MODEL": "cross-encoder/ms-marco-TinyBERT-L-6", + "RERANKER_TOP_K": 3, + "EMBEDDING_PROVIDER": "openai", + "EMBEDDING_MODEL_NAME": "text-embedding-ada-002", + "EMBEDDING_DIM": 1536, + "SEMANTIC_CHUNKING_MODEL_NAME": "paraphrase-multilingual-MiniLM-L12-v2", + "API_HOST": "0.0.0.0", + "API_PORT": 8000, + "API_DEBUG": True, + "API_RATE_LIMIT": 10, +} + + +def getenv(name, default=None, type_cast=None): + value = os.getenv(name, default) + if type_cast and value is not None: + return type_cast(value) + return value + + +class BaseConfig: + def __init__(self): + self.vectorstore_local_path = getenv("VECTORSTORE_LOCAL_PATH", DEFAULTS["VECTORSTORE_LOCAL_PATH"]) + self.document_db_local_dir = getenv("DOCUMENT_DB_LOCAL_DIR", DEFAULTS["DOCUMENT_DB_LOCAL_DIR"]) + self.parsed_content_dir = getenv("PARSED_CONTENT_DIR", DEFAULTS["PARSED_CONTENT_DIR"]) + self.collection_name = getenv("QDRANT_COLLECTION_NAME", DEFAULTS["QDRANT_COLLECTION_NAME"]) + self.qdrant_url = getenv("QDRANT_URL", "") + self.qdrant_api_key = getenv("QDRANT_API_KEY", "") + self.retrieval_top_k = getenv("RETRIEVAL_TOP_K", DEFAULTS["RETRIEVAL_TOP_K"], int) + self.embedding_provider = getenv("EMBEDDING_PROVIDER", DEFAULTS["EMBEDDING_PROVIDER"]) + self.embedding_model_name = getenv("EMBEDDING_MODEL_NAME", DEFAULTS["EMBEDDING_MODEL_NAME"]) + self.embedding_dim = getenv("EMBEDDING_DIM", DEFAULTS["EMBEDDING_DIM"], int) + self.openai_api_key = getenv("OPENAI_API_KEY", "") + self.huggingface_api_token = getenv("HUGGINGFACE_TOKEN", "") + + +class RetrievalConfig(BaseConfig): def __init__(self): + super().__init__() self.llm = ChatOpenAI( - model=os.getenv("model_name"), - api_key=os.getenv("openai_api_key"), + model=getenv("CHAT_MODEL_NAME"), + api_key=self.openai_api_key, temperature=0.3 ) + self.reranker_model = getenv("RERANKER_MODEL", DEFAULTS["RERANKER_MODEL"]) + self.reranker_top_k = getenv("RERANKER_TOP_K", DEFAULTS["RERANKER_TOP_K"], int) -class RAGConfig: + +class FileIngestorConfig(BaseConfig): def __init__(self): - self.vector_db_type = "qdrant" - self.embedding_dim = 1536 - self.distance_metric = "Cosine" - self.use_local = True - self.vector_local_path = "./data/qdrant_db" # Add this with a default value - self.doc_local_path = "./data/docs_db" - self.parsed_content_dir = "./data/parsed_docs" - self.url = os.getenv("QDRANT_URL") - self.api_key = os.getenv("QDRANT_API_KEY") - self.collection_name = "pro_assistant_rag" - self.chunk_size = 512 - self.chunk_overlap = 50 - self.processed_docs_dir = "./data/processed" - self.embedding_model = OpenAIEmbeddings( - model=os.getenv("embedding_model_name"), - api_key=os.getenv("openai_api_key") - ) - self.embedding_for_chunk_model = LocalEmbeddingModel('paraphrase-multilingual-MiniLM-L12-v2') + super().__init__() self.summarizer_model = ChatOpenAI( - model=os.getenv("model_name"), - api_key=os.getenv("openai_api_key"), + model=getenv("CHAT_MODEL_NAME"), + api_key=self.openai_api_key, temperature=0.5 ) - self.chunker_model = ChatOpenAI( - model=os.getenv("model_name"), - api_key=os.getenv("openai_api_key"), - temperature=0.0 - ) - self.llm = ChatOpenAI( - model=os.getenv("model_name"), - api_key=os.getenv("openai_api_key"), - temperature=0.3 - ) - self.sparse_embedder = SparseTextEmbedding("Qdrant/bm25") - self.max_queries = 3 - self.top_k = 5 - self.similarity_threshold = 0.75 - self.huggingface_token = os.getenv("HUGGINGFACE_TOKEN") - self.vector_search_type = 'similarity' # or 'mmr' - self.reranker_model = "cross-encoder/ms-marco-TinyBERT-L-6" - self.reranker_top_k = 3 - # self.chunking_strategy = "semantic" - self.max_context_length = 8192 - self.include_sources = True - self.response_format_instructions = """Instructions: - 1. Answer the query based ONLY on the information provided in the context. - 2. If the context doesn't contain relevant information to answer the query, state: "I don't have enough information to answer this question based on the provided context." - 3. Do not use prior knowledge not contained in the context. - 5. Be concise and accurate. - 6. Provide a well-structured response based on retrieved knowledge.""" - self.min_retrieval_confidence = 0.8 # the auto routing from RAG agent to WEB_SEARCH agent is dependent on this value - self.context_limit = 20 # include last 20 messsages (10 Q&A pairs) in history + self.semantic_chunking_model_name = getenv("SEMANTIC_CHUNKING_MODEL_NAME", + DEFAULTS["SEMANTIC_CHUNKING_MODEL_NAME"]) + self.local_model_path = getenv("LOCAL_EMBEDDING_MODEL", "") + class APIConfig: def __init__(self): - self.host = "0.0.0.0" - self.port = 8000 - self.debug = True - self.rate_limit = 10 - self.max_image_upload_size = 5 # max upload size in MB + self.host = getenv("API_HOST", DEFAULTS["API_HOST"]) + self.port = getenv("API_PORT", DEFAULTS["API_PORT"], int) + self.debug = getenv("API_DEBUG", DEFAULTS["API_DEBUG"]) + self.rate_limit = getenv("API_RATE_LIMIT", DEFAULTS["API_RATE_LIMIT"], int) + class Config: def __init__(self): - self.agent_decision = AgentDecisoinConfig() - self.rag = RAGConfig() + self.rag = RetrievalConfig() self.api = APIConfig() - self.max_conversation_history = 40 - -# config = Config() \ No newline at end of file + self.file_ingestor = FileIngestorConfig() diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000000.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000000.json deleted file mode 100644 index bf111761f977c07964fd874fe8e1fea144371be2..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000000.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000000", - "content": " Schlussbericht zum Vorhaben INSPIRER Forschungsprogramm zur Mensch-Technik-Interaktion: \u201eTechnik zum Menschen bringen\u201c Das Projekt \u201eINSPIRER\u201c wurde vom Bundesministerium f\u00fcr Bildung und Forschung (BMBF) in der F\u00f6rderma\u00dfnahme \u201eForschungsprogramm zur Mensch-Technik- Interaktion: Technik zum Menschen bringen\u201c unter dem F\u00f6rderkennzeichen 16SV8744 gef\u00f6rdert und vom Projekttr\u00e4ger VDI Technologiezentrum GmbH f\u00fcr das BMBF betreut. Stuttgart, April 2025", - "embedding": { - "dense": [ - -0.014431343413889408, - -0.022423885762691498, - -0.010441656224429607, - -0.035709675401449203, - 0.01803917996585369, - 0.023608941584825516, - -0.035235654562711716, - -0.01848686672747135, - -0.00869699101895094, - -0.0013512925943359733, - -0.007959622889757156, - 0.010000552050769329, - -0.0015018933918327093, - -0.018315691500902176, - 0.001005651312880218, - 0.003028475446626544, - 0.017802167683839798, - 0.00352554046548903, - -0.004759973380714655, - -0.020330287516117096, - -0.006093160714954138, - -0.021844524890184402, - 0.0035123731940984726, - 0.021923528984189034, - -0.011165857315063477, - -0.0005048830644227564, - 0.010685251094400883, - -0.04250399395823479, - -0.007301259320229292, - -0.009045924060046673, - -0.007432932034134865, - -0.006712023168802261, - -0.004552588332444429, - -0.006494762841612101, - -0.026953430846333504, - -0.03036375716328621, - -0.02105448767542839, - -0.004526253789663315, - 0.036052025854587555, - -0.013680808246135712, - 0.02738795056939125, - 0.007103750016540289, - 0.0022664188873022795, - -0.008282221853733063, - -0.0148131949827075, - 0.012897354550659657, - 0.012706429697573185, - -0.02514951303601265, - -0.002914907643571496, - 0.032549526542425156, - 0.01315411739051342, - 0.03526198863983154, - -0.008677240461111069, - 0.002623581327497959, - 0.007999124936759472, - -0.03476162999868393, - 0.015300384722650051, - 0.02809898555278778, - -0.008407310582697392, - -0.024175133556127548, - -0.016301097348332405, - -0.0017068092711269855, - -0.02946838177740574, - 0.021515343338251114, - -0.019961602985858917, - -0.003650629660114646, - -0.0315224789083004, - 0.03681572526693344, - -0.004081858322024345, - 0.01468152180314064, - 0.03918583691120148, - 0.025202181190252304, - 0.01440500933676958, - 0.0005999343702569604, - 0.032997213304042816, - 0.005543426610529423, - 0.004509794991463423, - 0.006494762841612101, - 0.00603719986975193, - 0.00023989146575331688, - 0.009638451971113682, - -0.02746695466339588, - -0.026703253388404846, - 0.006656062323600054, - 0.000985900405794382, - 0.015932414680719376, - -0.007242006249725819, - -0.004661218728870153, - -0.0009982447372749448, - 0.002248313743621111, - 0.011264611966907978, - 0.044689763337373734, - 0.01095518097281456, - 0.02820432372391224, - 0.018605371937155724, - 0.0033543657045811415, - -0.010336318053305149, - 0.01043507270514965, - -0.0018121474422514439, - -0.022792568430304527, - -0.02109398879110813, - -0.008808913640677929, - -0.014892198145389557, - 0.0019207776058465242, - -0.01930323801934719, - 0.0034597038757056, - 0.017156971618533134, - 0.0016385039780288935, - 0.03944918513298035, - -0.0006682396633550525, - -0.011969061568379402, - 0.02783563919365406, - -0.024135632440447807, - -0.01156745944172144, - -0.0017825211398303509, - -0.035235654562711716, - 0.011165857315063477, - -0.014260169118642807, - -0.0003662150993477553, - -0.004799474962055683, - 0.04155594855546951, - 0.01419433206319809, - -0.00448016868904233, - -0.016301097348332405, - 0.03081144578754902, - 0.01963242143392563, - -0.026808591559529305, - 0.004809350706636906, - 0.003588085062801838, - -0.006079993676394224, - -0.013680808246135712, - -0.015590064227581024, - 0.018394695594906807, - -0.007294675335288048, - -0.0023585897870361805, - 0.010816924273967743, - -0.0015545624773949385, - -0.007716028485447168, - -0.029863400384783745, - -0.03547266498208046, - 0.02783563919365406, - 0.017538823187351227, - -0.02801998145878315, - -0.008479731157422066, - -0.02637406997382641, - -0.005349209066480398, - 0.00289186486043036, - -0.0016870582476258278, - 0.017341313883662224, - 0.02376694791018963, - -0.012844685465097427, - -0.03265486657619476, - 0.008407310582697392, - -0.024043461307883263, - -0.0005373897729441524, - 0.022344881668686867, - -0.005866025108844042, - 0.02235804870724678, - -0.011501622386276722, - 0.004509794991463423, - 0.022739900276064873, - -0.003140397369861603, - 0.010606247931718826, - 0.006267627235502005, - 0.02891535684466362, - 0.021107155829668045, - 0.010072972625494003, - -0.008058377541601658, - 0.003719757776707411, - -0.01069183461368084, - 0.006945742294192314, - 0.033760916441679, - -0.029863400384783745, - 0.00869699101895094, - -0.02321392297744751, - -0.007637024857103825, - -0.0002966753672808409, - 0.001823668833822012, - -0.005056237336248159, - 0.002042575040832162, - -0.007920121774077415, - 0.01956658437848091, - 0.031838491559028625, - -0.008947169408202171, - -0.014549849554896355, - -0.010599663481116295, - 0.030574433505535126, - 0.01777583360671997, - 0.011547707952558994, - -0.023938123136758804, - 0.016972629353404045, - 0.013437213376164436, - 0.015484726056456566, - 0.0018121474422514439, - -0.6358218193054199, - -0.009579199366271496, - -0.00023557094391435385, - -0.014247001148760319, - -0.006583642214536667, - 0.0027536083944141865, - 0.0004324629844632, - 0.010178310796618462, - 0.032022833824157715, - 0.06172822788357735, - 0.007228839211165905, - 0.009250016883015633, - 0.009664786979556084, - -0.03931751102209091, - -0.033181555569171906, - -0.013312124647200108, - -0.007558021228760481, - -0.00830855593085289, - 0.0067054396495223045, - 0.012344328686594963, - -0.009276351891458035, - 0.031838491559028625, - 0.0004050997376907617, - -0.00431228568777442, - 0.007176170125603676, - -0.008262471295893192, - 0.019211066886782646, - -0.010922262445092201, - 0.01207439973950386, - 0.004016021732240915, - -0.009454109705984592, - 0.010250730440020561, - 0.012831518426537514, - -0.009230266325175762, - 0.042872678488492966, - 0.012917106039822102, - -0.013470131903886795, - 0.011113188229501247, - -0.0014344110386446118, - 0.020001104101538658, - -0.00830855593085289, - -0.005740935914218426, - 0.01632743328809738, - 0.02299007773399353, - 0.004137819167226553, - 0.02306908182799816, - 0.022963743656873703, - -0.003173315431922674, - 0.024899333715438843, - -0.018974056467413902, - 0.011389700695872307, - 0.013878317549824715, - 0.011745217256247997, - 0.0005727768875658512, - 0.030126746743917465, - 0.006425634957849979, - 0.012778849340975285, - -0.0004476876638364047, - 0.0010286940960213542, - -0.0013093218440189958, - 0.001700225635431707, - 0.007775281555950642, - -0.0007525925757363439, - -0.015550563111901283, - -0.001144730718806386, - 0.020554130896925926, - -0.0055928039364516735, - 0.004898229613900185, - -0.00241784262470901, - -0.02794097736477852, - 0.0005435619386844337, - 0.03526198863983154, - -0.0035584585275501013, - -0.01773633249104023, - 0.0050726961344480515, - 0.012989525683224201, - 0.0006073410040698946, - 0.014642019756138325, - 0.002541285939514637, - -0.0020359912887215614, - 0.018421031534671783, - -0.0022153956815600395, - -0.0016771828522905707, - -0.011797886341810226, - 0.02765129692852497, - -0.010092723183333874, - -0.01335821021348238, - -0.03639437258243561, - -0.005671807564795017, - -0.000896198267582804, - 0.010033470578491688, - -0.013180451467633247, - -0.010836674831807613, - 0.0075251031666994095, - 0.022753067314624786, - 0.024491148069500923, - 0.016590777784585953, - 0.019658755511045456, - 0.007972790859639645, - -0.018658041954040527, - -0.011580626480281353, - 0.0015677297487854958, - 0.03958085551857948, - 0.0036967149935662746, - 0.023161252960562706, - -0.007847701199352741, - -0.04163495451211929, - 0.010724753141403198, - 0.041187264025211334, - -0.04210897535085678, - -0.004467001184821129, - -0.004996984265744686, - 0.01889505237340927, - 0.01330554112792015, - 0.0008599882712587714, - -0.030337423086166382, - 0.03760576248168945, - -0.022647729143500328, - 0.013338458724319935, - -0.00400614645332098, - 0.01572173833847046, - -0.027703966945409775, - -0.008045210503041744, - 0.00936852302402258, - 0.007077415473759174, - 0.02891535684466362, - 0.01844736561179161, - 0.0018532952526584268, - -0.03323422372341156, - 0.008762828074395657, - 0.0001865022350102663, - 0.005253746639937162, - 0.015669068321585655, - -0.003472871147096157, - 0.016643447801470757, - 0.022739900276064873, - 0.016722451895475388, - -0.02123882994055748, - 0.0035024976823478937, - -0.00967137049883604, - -0.023951290175318718, - 0.007946455851197243, - 0.008170300163328648, - -0.010125641711056232, - -0.006079993676394224, - -0.03494597226381302, - -0.003472871147096157, - 0.008525816723704338, - 0.0052274116314947605, - -0.0016812976682558656, - -0.030047742649912834, - 0.002686125924810767, - 0.0026202895678579807, - 0.030758775770664215, - 0.03136447072029114, - -0.026505744084715843, - -0.02954738587141037, - -0.029573719948530197, - -0.0024705117102712393, - -0.019908932968974113, - 0.009309270419180393, - 0.027993645519018173, - -0.030232084915041924, - -0.011258028447628021, - -0.014655187726020813, - 0.00015574428834952414, - 0.011152689345180988, - 0.0417402908205986, - -0.01669611595571041, - -0.05677732825279236, - 0.023872286081314087, - -0.00439787283539772, - -0.010309983976185322, - 0.004305702168494463, - 0.0020178863778710365, - 0.01373347733169794, - -0.012857853434979916, - -0.014760525897145271, - -0.0015677297487854958, - -0.002564328722655773, - -0.014879031106829643, - 0.01903989352285862, - -0.006178748328238726, - -0.0019207776058465242, - 0.010869593359529972, - 0.01911889761686325, - 0.0012722888495773077, - 0.023227090016007423, - 0.010125641711056232, - 0.013707143254578114, - 8.594738756073639e-05, - 0.017709996551275253, - 0.016933128237724304, - 0.013944153673946857, - -0.03017941489815712, - 0.004878479056060314, - -0.024056628346443176, - -0.020659469068050385, - 0.005500632803887129, - 0.0052405791357159615, - 0.05577661469578743, - 0.01432600524276495, - 0.02928403951227665, - 0.013628139160573483, - -0.004183904733508825, - -0.02809898555278778, - 0.004203655291348696, - -0.021172992885112762, - 0.04116092994809151, - -0.009638451971113682, - 0.015958748757839203, - -0.013391127809882164, - -0.02138366922736168, - 0.00012889536446891725, - -0.004052231553941965, - -0.016380101442337036, - -0.0009677953785285354, - -0.0019734466914087534, - -0.028335995972156525, - 0.010013720020651817, - -0.007123500574380159, - 0.0008797391783446074, - 0.008835247717797756, - -0.013437213376164436, - 0.0076501923613250256, - 0.010810340754687786, - 0.006906240712851286, - 0.015195045620203018, - 0.02146267332136631, - -7.884939986979589e-05, - 0.00624129269272089, - 0.028309661895036697, - 0.00010852722334675491, - 0.0023487142752856016, - 0.024899333715438843, - -0.0048751868307590485, - 0.0049410234205424786, - -0.027861973270773888, - 0.031759489327669144, - 0.03518298268318176, - 0.02533385530114174, - 0.012805184349417686, - -0.009803042747080326, - -0.016116755083203316, - 0.010928845964372158, - -0.016814621165394783, - 0.01691996119916439, - 0.022634562104940414, - -0.006451969500631094, - 0.029073363170027733, - -0.03244419023394585, - 0.0011109896004199982, - -0.01881605014204979, - 0.014352340251207352, - 0.009631868451833725, - -0.022924242541193962, - 0.006284086499363184, - 0.0015743133844807744, - 0.015181878581643105, - 0.04084491729736328, - 0.005892359651625156, - 0.02071213908493519, - 0.03671038895845413, - -0.013799314387142658, - 0.005454547703266144, - 0.02596588432788849, - -0.03225984796881676, - -0.010711586102843285, - -0.013693975284695625, - -0.022700397297739983, - 0.017262309789657593, - -0.004226698074489832, - -0.008650905452668667, - -0.027967311441898346, - 0.011613545008003712, - 0.00844022911041975, - 0.015827076509594917, - 0.01356230303645134, - 0.020224949344992638, - 0.026031721383333206, - -0.03913316875696182, - -0.018526369705796242, - -0.010323151014745235, - 0.02775663509964943, - -0.001214682008139789, - -0.01414166297763586, - -0.02667691744863987, - 0.012943440116941929, - -0.03323422372341156, - -0.006665937602519989, - -0.009618701413273811, - 0.012265325523912907, - -0.012015147134661674, - -0.004338620230555534, - 0.0015685526886954904, - -0.011462121270596981, - 0.014892198145389557, - -0.017196472734212875, - 0.019250569865107536, - 0.004496627487242222, - 0.00740659749135375, - -0.009625284932553768, - -0.012811767868697643, - -0.03412960097193718, - 0.045479800552129745, - -0.027519624680280685, - 0.01404949277639389, - -0.0026581455022096634, - 0.001976738451048732, - -0.032101839780807495, - 0.01934274099767208, - -0.007268340792506933, - -0.0001609906175872311, - 0.008907667361199856, - -0.0003680667432490736, - 0.016445938497781754, - 0.0027815888170152903, - -0.01309486385434866, - 0.044136736541986465, - -0.001367751625366509, - -0.001612169318832457, - -0.052300453186035156, - 0.0022055201698094606, - 0.007696277461946011, - 0.04832393303513527, - 0.01404949277639389, - -0.009934715926647186, - 0.026769088581204414, - -0.01414166297763586, - -0.0015899495920166373, - -0.020514629781246185, - -0.06257093697786331, - -0.016814621165394783, - -0.0226213950663805, - -0.0010443301871418953, - -0.02313491888344288, - 0.025623535737395287, - -0.014075826853513718, - 0.010020303539931774, - -0.002745378762483597, - -0.001633566222153604, - -0.0022647730074822903, - 0.009697704575955868, - -0.013496465981006622, - -0.009263184852898121, - -0.022121038287878036, - -0.0019421743927523494, - 0.046638522297143936, - 0.0324968583881855, - -0.03331322968006134, - 0.008953752927482128, - 0.033260561525821686, - 0.001328249811194837, - -0.01926373690366745, - 0.015590064227581024, - 0.016406435519456863, - 0.010863009840250015, - 0.015063373371958733, - -0.018526369705796242, - -0.007439515553414822, - -0.007966207340359688, - 0.00048554359818808734, - 0.023635275661945343, - 0.010053221136331558, - 0.00686673866584897, - 0.013121198862791061, - 0.0014640374574810266, - -0.017565157264471054, - -0.002332255244255066, - -0.005125365220010281, - -0.014668354764580727, - 0.02522851713001728, - 0.011462121270596981, - -0.02105448767542839, - 0.0022746482864022255, - -0.0033543657045811415, - -0.029257705435156822, - -0.011606961488723755, - -0.021357335150241852, - 0.01030339952558279, - 0.00456575583666563, - -0.020251283422112465, - -0.002435947535559535, - -0.03926484286785126, - -0.012989525683224201, - -0.0522477850317955, - 0.015958748757839203, - -0.014707856811583042, - -0.0038316796999424696, - -0.019421745091676712, - -0.011205359362065792, - -0.004490043967962265, - -0.0024836789816617966, - 0.005875900387763977, - 0.002893510740250349, - -0.010277065448462963, - -0.0334712378680706, - 0.01508970744907856, - 0.009980801492929459, - 0.008532400242984295, - 0.0017084551509469748, - -0.013720310293138027, - -0.0019948435947299004, - 0.02712460607290268, - -0.0012311410391703248, - -0.012765682302415371, - -0.0026054764166474342, - -0.025834212079644203, - 0.0031157087069004774, - -0.0042530326172709465, - -0.020369788631796837, - -0.004387997556477785, - 0.0011356782633811235, - 0.0017051632748916745, - -0.009177597239613533, - 0.01028364896774292, - 0.011501622386276722, - -0.00686673866584897, - -0.0031074790749698877, - 0.01192297600209713, - -0.006517805624753237, - 0.015326718799769878, - 0.011797886341810226, - -0.020554130896925926, - 0.030153080821037292, - -0.007722612004727125, - -0.01781533472239971, - 0.01337796077132225, - 0.0037065905053168535, - 0.025992218405008316, - 0.008854998275637627, - 0.014062659814953804, - -0.016366934403777122, - 0.004496627487242222, - 0.02474132739007473, - -0.01335821021348238, - 0.006231417413800955, - -0.005586220417171717, - 0.0023075665812939405, - -0.014062659814953804, - -0.022739900276064873, - 0.009789875708520412, - 0.016116755083203316, - -0.025610368698835373, - -0.01097493153065443, - -0.03081144578754902, - 0.04869261756539345, - 0.016366934403777122, - -0.0014977785758674145, - 0.011297529563307762, - 0.025215350091457367, - 0.0007032152498140931, - -0.020027440041303635, - -0.006738357711583376, - -0.0006900479784235358, - 0.0016821206081658602, - 0.009197347797453403, - -0.00857190228998661, - -0.028441334143280983, - -0.024043461307883263, - -0.008552150800824165, - 0.005964779760688543, - -0.010237563401460648, - -0.03197016566991806, - -0.02667691744863987, - -0.010138808749616146, - -0.013364793732762337, - 0.005500632803887129, - 0.008203217759728432, - -0.026058055460453033, - 0.005747519433498383, - 0.01535305380821228, - -0.024504316970705986, - 0.015563730150461197, - -0.03281287103891373, - 0.03607835993170738, - -0.011764968745410442, - 0.0030432885978370905, - -0.0033049883786588907, - -0.014721023850142956, - -0.03331322968006134, - -0.03125913441181183, - 0.028256991878151894, - 0.03723708167672157, - 0.016854124143719673, - -0.017538823187351227, - -0.005652057006955147, - 0.010836674831807613, - 0.012140235863626003, - -0.006024032365530729, - 0.007169586140662432, - -0.006264335475862026, - -0.026295065879821777, - 0.004457125905901194, - -0.006070117931813002, - 0.013187034986913204, - 0.008394143544137478, - -0.03484063595533371, - -0.010191477835178375, - -0.008071545511484146, - -0.038211457431316376, - -0.007906953804194927, - -0.005750811193138361, - -0.025031007826328278, - -0.01606408692896366, - -0.0074460990726947784, - 0.0058857761323452, - 0.011376533657312393, - -0.03607835993170738, - -0.009710872545838356, - 0.030574433505535126, - -0.008512649685144424, - 0.014800027944147587, - 0.03025841899216175, - 0.013693975284695625, - -0.02168651670217514, - 0.030100412666797638, - 0.033181555569171906, - 0.009480444714426994, - -0.006557307671755552, - -0.00808471255004406, - -0.03402426093816757, - 0.00578372972086072, - 0.03994954004883766, - 0.006590225733816624, - -0.0026383944787085056, - 0.004200363531708717, - -0.013048778288066387, - -0.0016631926409900188, - 0.02321392297744751, - 0.02712460607290268, - 0.001171888317912817, - -0.007307842839509249, - -0.028335995972156525, - -0.0062742107547819614, - -0.019513916224241257, - -0.017578324303030968, - -0.015537395142018795, - 0.023503601551055908, - 0.002633456839248538, - -0.003950185142457485, - 0.02504417486488819, - 0.00933560449630022, - 0.0007011579000391066, - -9.3919770733919e-05, - -0.01769682951271534, - 0.026742754504084587, - 0.011850555427372456, - 0.06641577929258347, - 0.023424599319696426, - -0.03118012845516205, - -0.01373347733169794, - -0.011521373875439167, - 0.0022795861586928368, - 0.004927855916321278, - 0.026663750410079956, - -0.011916392482817173, - 0.004825809504836798, - -0.011389700695872307, - 0.010145392268896103, - 0.006893073208630085, - -0.03663138300180435, - -0.027730301022529602, - 0.0246623232960701, - 0.00767652690410614, - 0.010836674831807613, - -0.015892911702394485, - -0.005214244592934847, - -0.017341313883662224, - 0.013279206119477749, - -0.020106442272663116, - 0.00458221510052681, - -0.00500356825068593, - -0.010803756304085255, - 0.006738357711583376, - 0.01724914275109768, - -0.000458797556348145, - -0.002600538544356823, - 0.003390575759112835, - -0.04282000660896301, - -0.006040491629391909, - -0.019737759605050087, - 0.009789875708520412, - -0.012884187512099743, - -0.0012846331810578704, - 0.0023585897870361805, - 0.0023092124611139297, - 0.010336318053305149, - 0.017947008833289146, - 0.011620128527283669, - -0.01982993073761463, - 0.0053656683303415775, - 0.009138095192611217, - 0.017854837700724602, - -0.002542931819334626, - -0.02608438953757286, - -0.02783563919365406, - -0.02142317220568657, - 0.017420317977666855, - -0.013048778288066387, - -0.0017331438139081001, - -0.025123178958892822, - -0.019395409151911736, - -0.006656062323600054, - -0.0009850774658843875, - -0.005033194553107023, - -0.0030778527725487947, - -0.008743076585233212, - -0.00578372972086072, - -0.013693975284695625, - 0.014247001148760319, - 0.007228839211165905, - 0.0048455605283379555, - -0.01940857619047165, - -0.019658755511045456, - 0.002114995149895549, - 0.005263621918857098, - 0.004088441841304302, - 0.005740935914218426, - 0.010685251094400883, - 0.006096452474594116, - 0.02339826337993145, - -0.03096945211291313, - 0.0038547224830836058, - 0.01397048868238926, - -0.019237402826547623, - -0.02001427300274372, - 0.0009085425990633667, - -0.00010441245103720576, - -0.015116042457520962, - 0.016854124143719673, - -0.011936143040657043, - -0.005652057006955147, - 0.0026976473163813353, - 0.013549135066568851, - 0.020396122708916664, - -0.0023585897870361805, - 0.0016919960035011172, - 0.021818190813064575, - -0.008736493065953255, - 0.009072259068489075, - -0.013292373158037663, - -0.011225109919905663, - 0.009763541631400585, - 0.007031329907476902, - 0.008051794022321701, - 0.024530651047825813, - -0.020698970183730125, - 0.0118703069165349, - -0.013279206119477749, - 0.0117715522646904, - -0.0005678391316905618, - -0.05219511315226555, - -0.010935429483652115, - 0.004934439901262522, - 0.0058034807443618774, - -0.008604819886386395, - -0.0002094421215588227, - -0.023503601551055908, - 0.0010081202490255237, - -0.023727446794509888, - 0.0031453350093215704, - 0.014497179538011551, - 0.014786859974265099, - -0.0018368361052125692, - 0.0030202458146959543, - 0.009967634454369545, - 0.01959291845560074, - 0.0050726961344480515, - 0.00325561105273664, - -0.01893455535173416, - -0.0187765471637249, - -0.019237402826547623, - -0.003030121326446533, - -0.0034695793874561787, - 0.031101126223802567, - 0.0035288322251290083, - -0.027335282415151596, - -0.004486752208322287, - 0.008506065234541893, - -0.03989687189459801, - -0.013325291685760021, - -0.02604488842189312, - 0.02909969910979271, - 0.018302524462342262, - 0.003617711365222931, - -0.01720963977277279, - 0.017709996551275253, - 0.010296816006302834, - 0.027967311441898346, - -0.005286664701998234, - -0.03449828550219536, - 0.021594345569610596, - 0.012094150297343731, - 0.008993254974484444, - 0.006007573567330837, - -0.0430043488740921, - -0.01322653703391552, - 0.04374171793460846, - 0.0027124604675918818, - -0.026558412238955498, - 0.02507050894200802, - 0.003476163139566779, - 0.0008822080562822521, - 0.02406979538500309, - -0.0022022284101694822, - -0.0052405791357159615, - -0.0016310972860082984, - 0.05656665191054344, - -0.02089647948741913, - -0.003999562468379736, - -0.0004468647239264101, - -0.0059285699389874935, - -0.01963242143392563, - -0.0023783408105373383, - 0.0056355977430939674, - 0.0019125480903312564, - -0.002745378762483597, - 0.015919245779514313, - -0.006060242652893066, - -0.003202941967174411, - -0.010968348011374474, - 0.015998249873518944, - -0.011817637830972672, - 0.0003059336158912629, - 0.002241730224341154, - 0.0019043184584006667, - -0.010474574752151966, - -0.035683341324329376, - 0.013068529777228832, - -0.028256991878151894, - -0.008723326027393341, - 0.021976197138428688, - -0.008328307420015335, - 0.01220607291907072, - -0.03260219469666481, - 0.012917106039822102, - -0.014444510452449322, - 0.004160861950367689, - -0.011929559521377087, - -0.00938827358186245, - -0.0032934669870883226, - 0.018078681081533432, - 0.0010023595532402396, - 0.00620508287101984, - -0.008295388892292976, - 0.0033938675187528133, - -0.009908381849527359, - -0.027071936056017876, - -0.012719596736133099, - -0.013654474169015884, - -0.0226213950663805, - 0.003091020043939352, - 0.020409289747476578, - -0.0019668631721287966, - 0.012001979164779186, - -0.019237402826547623, - 0.010784005746245384, - -0.021357335150241852, - 0.004927855916321278, - 0.2038295567035675, - -0.0305480994284153, - -0.008519233204424381, - 0.03133813664317131, - -0.036684054881334305, - 0.020066941156983376, - 0.015919245779514313, - -0.0030218916945159435, - 0.009750373661518097, - 0.010125641711056232, - -0.02574204094707966, - -0.0014294732827693224, - -0.021475840359926224, - 0.0036144196055829525, - 0.027150940150022507, - 0.004960774444043636, - -0.016485439613461494, - -0.02019861340522766, - -0.0072485897690057755, - 0.006432218477129936, - 0.019606085494160652, - -0.020356621593236923, - -0.0011126354802399874, - -0.025136345997452736, - 0.000525456911418587, - 0.007321009878069162, - -0.011817637830972672, - 0.01151479035615921, - 0.028994359076023102, - 0.005954904481768608, - -0.02533385530114174, - -0.0007451860001310706, - 0.007209088187664747, - 0.0027305656112730503, - -0.010527243837714195, - -0.0014911949401721358, - 0.011396284215152264, - -0.004483460448682308, - 0.025491861626505852, - 0.02838866412639618, - -0.002383278449997306, - -0.005576344672590494, - -0.024978337809443474, - -0.03149614483118057, - 0.010658917017281055, - 0.029073363170027733, - 0.0017709997482597828, - 0.004062107298523188, - 0.01540572289377451, - -0.00035819128970615566, - -0.02384595200419426, - -0.004203655291348696, - 0.040818579494953156, - 0.036052025854587555, - -0.003913975320756435, - 0.014536681585013866, - 0.019803594797849655, - 0.02720361016690731, - 0.01893455535173416, - 0.01769682951271534, - -0.010000552050769329, - 0.011290946044027805, - -0.007439515553414822, - 0.008209802210330963, - -0.02749328874051571, - 0.021251996979117393, - 0.016854124143719673, - 0.01873704604804516, - 0.011389700695872307, - -0.021844524890184402, - -0.002881989348679781, - -0.02917870134115219, - -0.02392495609819889, - 0.0034860384184867144, - -0.007400013972073793, - -0.022226376459002495, - 0.018881885334849358, - -0.005931861698627472, - 0.026729587465524673, - 0.041371606290340424, - -0.013654474169015884, - 0.02482033148407936, - 0.0005563177401199937, - -0.03826412931084633, - -0.01844736561179161, - -0.037131741642951965, - 0.012699845246970654, - 0.005770562216639519, - -0.00497394148260355, - -0.002292753430083394, - 0.005941736977547407, - -0.013996822759509087, - -0.007452683057636023, - -0.01335821021348238, - 0.01959291845560074, - 0.00421023927628994, - 0.0002946179884020239, - 0.01522138062864542, - 0.0008879687520675361, - 0.013233120553195477, - -0.02820432372391224, - 0.05174742639064789, - 0.0065671829506754875, - -0.006504638586193323, - -0.007742363028228283, - 0.023872286081314087, - 0.0022647730074822903, - 0.015669068321585655, - 0.013825648464262486, - -0.009809627197682858, - 0.007090582512319088, - -0.016775120049715042, - 0.017644161358475685, - 0.010388987138867378, - -0.0007904485100880265, - 0.034261275082826614, - -0.0035617502871900797, - -0.018118184059858322, - -0.016538109630346298, - -0.025254851207137108, - -0.020330287516117096, - -0.007123500574380159, - -0.008117631077766418, - 0.031733155250549316, - -0.011830804869532585, - -0.015892911702394485, - -0.005652057006955147, - 0.004657926969230175, - -0.015695402398705482, - 0.0002456521615386009, - 0.0035090812016278505, - -0.022450219839811325, - 0.01212706882506609, - -0.04769190400838852, - -0.009816210716962814, - 0.0015685526886954904, - 0.024793995544314384, - -0.011396284215152264, - 0.015590064227581024, - -0.0006250345031730831, - -0.011916392482817173, - -0.02071213908493519, - -0.007623857818543911, - 0.011732050217688084, - 0.0011932851048186421, - -0.003805345157161355, - 0.010316567495465279, - 0.012113901786506176, - -0.0059878225438296795, - -0.020053774118423462, - -0.013483298942446709, - -0.020211780443787575, - 0.017499320209026337, - -0.014563016593456268, - 0.029863400384783745, - 0.0034597038757056, - -0.02801998145878315, - -0.022937409579753876, - -0.002870467957109213, - -0.00913151167333126, - -0.005941736977547407, - 0.002435947535559535, - -0.0006155705195851624, - -0.0002559390850365162, - -0.021146658807992935, - 0.004852144047617912, - -0.1669611632823944, - 0.01751248724758625, - 0.03339223191142082, - -0.031917497515678406, - 0.042872678488492966, - -0.014391841366887093, - -0.005908818915486336, - -0.0007480663480237126, - 0.010494325309991837, - -0.01143578626215458, - 0.0007900370401330292, - 0.006451969500631094, - -0.02838866412639618, - -0.008887916803359985, - 0.006129371002316475, - 0.0020886603742837906, - -0.022976910695433617, - 0.009684537537395954, - 0.03715807572007179, - -0.0018714002799242735, - 0.002580787753686309, - -0.02258189208805561, - 0.025386523455381393, - -0.005398586392402649, - -0.002065617823973298, - 0.006827237084507942, - -0.010645749047398567, - 0.004825809504836798, - -0.0028359037823975086, - -0.025755207985639572, - -0.014220667071640491, - 0.017420317977666855, - 0.04355737566947937, - 0.003578209551051259, - -0.0063696736469864845, - -0.018500033766031265, - 0.002615351928398013, - -0.02119932696223259, - -0.013417462818324566, - 0.028889020904898643, - 0.029231371358036995, - 0.03154881298542023, - -0.0015109458472579718, - 0.012903939001262188, - -0.02555769868195057, - 0.004753389395773411, - 0.0013603450497612357, - -0.010092723183333874, - -0.007959622889757156, - -0.010494325309991837, - 0.026479408144950867, - -0.03199649974703789, - -0.006787735037505627, - 0.010948596522212029, - 0.012739347293972969, - 0.00740659749135375, - 0.00936852302402258, - 0.005204369314014912, - 0.011620128527283669, - 0.0011455537751317024, - -0.016867291182279587, - -0.014484012499451637, - 0.013693975284695625, - -0.020856978371739388, - -8.610169606981799e-05, - -0.02306908182799816, - -0.008051794022321701, - 0.01632743328809738, - -0.01373347733169794, - 0.010119058191776276, - -0.020593632012605667, - 0.013193618506193161, - -0.007360511925071478, - -0.005128657445311546, - -0.010040054097771645, - -0.00830855593085289, - -0.004506503231823444, - 0.01486586406826973, - -0.0022943993099033833, - -0.0009003130835480988, - -0.0187765471637249, - 0.04550613462924957, - -0.006965493317693472, - -0.0012294951593503356, - -0.03871181607246399, - -0.02441214583814144, - 0.0026927096769213676, - -0.0018895053071901202, - 0.0061129117384552956, - -0.010066389106214046, - 0.01229824312031269, - -0.03207550570368767, - -0.011389700695872307, - 0.010204644873738289, - 0.031022122129797935, - -0.0017117469105869532, - -0.016748785972595215, - -0.007742363028228283, - -0.008091296069324017, - 0.008413895033299923, - 0.020053774118423462, - 0.00035304779885336757, - -0.016788287088274956, - 0.02333242818713188, - 0.007347344420850277, - 0.017262309789657593, - -0.05524992570281029, - 0.017170138657093048, - 0.0245174840092659, - -0.002332255244255066, - -0.03613102808594704, - 0.008815497159957886, - 0.004276075400412083, - 0.04321502521634102, - 0.0024441771674901247, - 0.028335995972156525, - -0.007623857818543911, - -0.015300384722650051, - 0.004549296572804451, - 0.003202941967174411, - 0.04811325669288635, - 0.01220607291907072, - -0.041187264025211334, - 0.02115982584655285, - -0.023411432281136513, - -0.05972680076956749, - -0.06541506946086884, - -0.010158560238778591, - 0.032286182045936584, - 0.00667910510674119, - 0.02280573546886444, - 0.01440500933676958, - -0.014497179538011551, - 0.0006361444247886539, - -0.0237406138330698, - 0.016998963430523872, - 0.007367095444351435, - -0.04131893813610077, - 0.0006628904957324266, - 0.0003701241221278906, - 0.021897193044424057, - -0.012265325523912907, - -0.017354480922222137, - -0.014062659814953804, - -0.01339771132916212, - 0.015471559017896652, - 0.009118344634771347, - 0.002490262733772397, - -0.02258189208805561, - 0.0051977853290736675, - -0.008453396148979664, - 0.01248258538544178, - -0.034893304109573364, - 0.015879744663834572, - 0.008901083841919899, - 0.015418889932334423, - 0.0034366610925644636, - -0.0027601919136941433, - 0.006221541669219732, - -0.02284523844718933, - -0.01205464918166399, - 0.002320733852684498, - -0.035051312297582626, - -0.024754494428634644, - 0.01676195301115513, - -0.03368191421031952, - 0.01881605014204979, - -0.006787735037505627, - 0.009118344634771347, - -0.033892590552568436, - -0.022265877574682236, - -0.013279206119477749, - 0.003097603563219309, - -0.00667910510674119, - -0.0019372367532923818, - -0.01900039054453373, - -0.02343776635825634, - -0.017170138657093048, - -0.008664073422551155, - -0.008137381635606289, - 0.03942284733057022, - -0.01806551404297352, - 0.004799474962055683, - -0.016748785972595215, - -0.022107869386672974, - -0.0022433761041611433, - -0.0017265601782128215, - -0.01628793030977249, - -0.003775718854740262, - 0.031206464394927025, - -0.007702861446887255, - -0.005546718370169401, - -0.015787573531270027, - -0.008453396148979664, - 0.0235431045293808, - -0.017538823187351227, - -0.0037855941336601973, - 0.00272398185916245, - -0.017314977943897247, - 0.017459819093346596, - -0.022608228027820587, - -0.008650905452668667, - -0.028125319629907608, - -0.023569438606500626, - 0.031469810754060745, - -0.0025330563075840473, - -0.011560875922441483, - -0.023503601551055908, - 0.01763099431991577, - -0.008295388892292976, - 0.017644161358475685, - -0.00021047081099823117, - 0.0018384821014478803, - 0.0008641030290164053, - 0.013470131903886795, - -0.004016021732240915, - 0.00879574567079544, - 0.01844736561179161, - 0.01620892621576786, - 0.01620892621576786, - 0.0020672637037932873, - -0.0031749613117426634, - 0.001721622422337532, - 0.006415759213268757, - -0.038211457431316376, - 0.013772979378700256, - -0.02366160973906517, - -0.006820653099566698, - -0.07178803533315659, - 0.017868004739284515, - 0.0014270044630393386, - -0.008499481715261936, - -0.012179737910628319, - 0.010342901572585106, - 0.01702529937028885, - 0.02154167741537094, - -0.005609263200312853, - -0.006761400494724512, - -0.01009930670261383, - -9.644006837561392e-08, - -5.971569044049829e-05, - 0.01657761074602604, - -0.006201791111379862, - -0.009631868451833725, - 0.028889020904898643, - 0.002458990318700671, - -0.016998963430523872, - -0.005280081182718277, - -0.0034169103018939495, - 0.006731774192303419, - 0.01527404971420765, - 0.004384705796837807, - -0.030311089009046555, - 0.0027437328826636076, - -0.0032078796066343784, - 0.013575470075011253, - 0.00992813240736723, - -0.03044276125729084, - 0.009908381849527359, - 0.012647176161408424, - -0.021528510376811028, - 0.00974379014223814, - -0.0037000069860368967, - -0.03539365902543068, - 0.008269054815173149, - 0.04087125137448311, - -0.002549515338614583, - 0.02828332595527172, - -0.008914251811802387, - -0.03589401766657829, - 0.003181545063853264, - -0.00830855593085289, - 0.01102760061621666, - 0.008723326027393341, - 0.020356621593236923, - 0.002435947535559535, - 0.0039962707087397575, - -0.0019569876603782177, - -0.006860155146569014, - 0.00283261202275753, - -0.03070610761642456, - -0.009921548888087273, - 0.027177274227142334, - -0.010777422226965427, - 0.005908818915486336, - -0.001887859427370131, - -0.0011142814764752984, - -0.004552588332444429, - 0.046032827347517014, - 0.0018335443455725908, - 0.003244089661166072, - 0.003917267080396414, - 0.028599342331290245, - 0.010033470578491688, - -0.025979051366448402, - 0.0031700236722826958, - 0.013575470075011253, - 0.0030037867836654186, - -0.019132064655423164, - -0.01628793030977249, - -0.010316567495465279, - 0.038738150149583817, - 0.01143578626215458, - -0.004819225985556841, - 0.006741649471223354, - 0.0012566526420414448, - 0.005536843091249466, - 0.030047742649912834, - 0.01598508283495903, - -0.004829101730138063, - -0.004592090379446745, - 0.004911397118121386, - 0.03860647603869438, - 0.020172279328107834, - -0.02981073223054409, - 0.015471559017896652, - 0.006122787017375231, - 0.007031329907476902, - 0.00448016868904233, - 0.0023602356668561697, - 0.008841831237077713, - 0.00823613628745079, - 0.008038626983761787, - -0.005744227673858404, - -0.008275638334453106, - -0.0014895490603521466, - 0.012219239957630634, - 0.017077967524528503, - 0.015116042457520962, - 0.0036934232339262962, - 0.010810340754687786, - -0.026400404050946236, - -0.03460362181067467, - -0.002169310115277767, - 0.006939158774912357, - -0.022331714630126953, - -0.02101498655974865, - 0.01219948846846819, - 0.006721898447722197, - 0.023266591131687164, - -0.02187085896730423, - -0.0025149513967335224, - -0.022818904370069504, - 0.032101839780807495, - -0.0034695793874561787, - -0.013364793732762337, - -0.016643447801470757, - 0.02891535684466362, - 0.01508970744907856, - 0.015879744663834572, - 0.014576183632016182, - 0.015511061064898968, - 0.011337031610310078, - 0.02038295567035675, - 0.0011011142050847411, - -0.022410718724131584, - 0.007347344420850277, - -0.013693975284695625, - 0.0035815013106912374, - 0.007518519181758165, - -0.02064630202949047, - -0.017354480922222137, - -0.003795469645410776, - -0.008769411593675613, - -0.0014097223756834865, - -0.01728864386677742, - 0.01926373690366745, - 0.10202012211084366, - 0.012232406996190548, - -0.007452683057636023, - 0.024714993312954903, - -0.019145231693983078, - -0.0055928039364516735, - -0.015774406492710114, - 0.01133044809103012, - -0.05324849858880043, - -0.014497179538011551, - 0.002526472555473447, - -0.018842384219169617, - -0.00039069802733138204, - -0.032022833824157715, - -0.017907505854964256, - 0.014233834110200405, - -0.01971142366528511, - 0.028678344562649727, - -0.007577772252261639, - 0.005326166283339262, - 0.02712460607290268, - -0.011034184135496616, - -0.0004867780371569097, - 0.025689370930194855, - -0.005694850347936153, - -0.009329020977020264, - 0.02999507449567318, - 0.008427062071859837, - 0.00048554359818808734, - -0.018342027440667152, - -0.0026202895678579807, - 0.024135632440447807, - -0.06536240130662918, - -0.010158560238778591, - 0.023556271567940712, - -0.029231371358036995, - -0.024003958329558372, - -0.020817477256059647, - 0.006234709173440933, - 0.002060679951682687, - 0.001989905722439289, - 0.006945742294192314, - -0.019579751417040825, - -0.028362330049276352, - 0.007801616098731756, - -0.007643608376383781, - -0.008130798116326332, - 0.0002137626288458705, - -0.015524228103458881 - ], - "sparse": "SparseEmbedding(values=array([1.48015769, 1.89310924, 1.48015769, 1.76967793, 1.76967793,\n 1.76967793, 1.76967793, 1.96151502, 1.76967793, 1.76967793,\n 1.76967793, 1.76967793, 1.48015769, 1.48015769, 1.76967793,\n 1.48015769, 1.76967793, 1.48015769, 1.76967793, 1.48015769,\n 1.76967793, 1.48015769, 1.48015769, 1.48015769, 1.48015769,\n 1.48015769, 1.48015769, 1.48015769, 1.48015769, 1.48015769,\n 1.48015769, 1.48015769, 1.48015769, 1.48015769, 1.48015769,\n 1.48015769]), indices=array([1000544089, 828667247, 32750488, 2017215381, 1730860116,\n 338063690, 732421865, 22476906, 1232819956, 913777079,\n 425017862, 1413554298, 993732989, 1162941628, 1771054898,\n 1946192279, 2124172637, 1441934224, 164058840, 1533740972,\n 2126373955, 408270109, 1557666034, 565373295, 1505931685,\n 689006838, 1775796869, 946581070, 1602481333, 1701961266,\n 1650776438, 193740839, 261052326, 908425398, 1642199520,\n 35433555]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 0, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 51 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000001.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000001.json deleted file mode 100644 index 006c5e7966d8c3d4fee85eec2ac78296a942c395..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000001.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000001", - "content": "INSPIRER Forschungsprogramm zur Mensch-Technik-Interaktion: \u201eTechnik zum Menschen bringen\u201c Das Projekt \u201eINSPIRER\u201c wurde vom Bundesministerium f\u00fcr Bildung und Forschung (BMBF) in der F\u00f6rderma\u00dfnahme \u201eForschungsprogramm zur Mensch-Technik- Interaktion: Technik zum Menschen bringen\u201c unter dem F\u00f6rderkennzeichen 16SV8744 gef\u00f6rdert und vom Projekttr\u00e4ger VDI Technologiezentrum GmbH f\u00fcr das BMBF betreut. Ein Projekt der GEF\u00d6RDERT VOM FR | Bundesministerium f\u00fcr Bildung und Forschung", - "embedding": { - "dense": [ - -0.006778857205063105, - -0.016901951283216476, - 0.002768033416941762, - -0.038658857345581055, - 0.011879140511155128, - 0.019729703664779663, - -0.030524225905537605, - -0.015675300732254982, - -0.008857707493007183, - -0.007056467700749636, - -0.021589046344161034, - 0.004506326280534267, - 0.002687332686036825, - -0.01777997426688671, - -0.008302486501634121, - 0.009554960764944553, - 0.021563222631812096, - 0.006417318247258663, - 0.0013824027264490724, - -0.015868982300162315, - -0.013338209129869938, - -0.008308942429721355, - 0.0219764094799757, - 0.0100649893283844, - -0.012247135862708092, - 0.0050873709842562675, - 0.011911421082913876, - -0.037264347076416016, - -0.00500021455809474, - -0.002603403991088271, - 0.002901996485888958, - -0.007153308484703302, - -1.5585319488309324e-05, - -0.008037787862122059, - -0.02442971058189869, - -0.022996466606855392, - -0.024610480293631554, - 0.005009898450225592, - 0.03313247114419937, - -0.009199878200888634, - 0.03664456680417061, - 0.009090124629437923, - -0.00016271274944301695, - -0.0016487149987369776, - -0.011446584947407246, - 0.006239776965230703, - 0.0009038476855494082, - -0.023345094174146652, - -0.008237925358116627, - 0.024132732301950455, - 0.012518290430307388, - 0.04137039929628372, - -0.006278512999415398, - -0.0036024784203618765, - -0.000497923232614994, - -0.028664883226156235, - -0.005281052552163601, - 0.03060169890522957, - 0.0037897040601819754, - -0.01941981166601181, - -0.019484372809529305, - 0.0054069459438323975, - -0.026805538684129715, - 0.02547559142112732, - -0.021718168631196022, - -0.003944649361073971, - -0.026185758411884308, - 0.024597568437457085, - 0.0016059436602517962, - 0.0026518243830651045, - 0.030911589041352272, - 0.01873547025024891, - 0.018102778121829033, - 0.006355985999107361, - 0.039123691618442535, - 0.010452352464199066, - 0.008425150997936726, - 0.0007723055314272642, - 0.011440129019320011, - 0.008450975641608238, - 0.005684555973857641, - -0.024675041437149048, - -0.02791598066687584, - 0.006501247175037861, - -0.009768011048436165, - 0.006381810177117586, - -0.00558125926181674, - 0.0015429970808327198, - 0.010213478468358517, - -0.0021579363383352757, - 0.015339585952460766, - 0.03607643395662308, - 0.014564859680831432, - 0.019239043816924095, - 0.008341223001480103, - 0.0006145357037894428, - -0.0066626486368477345, - 0.017379699274897575, - -0.002664736472070217, - -0.017186017706990242, - -0.022880258038640022, - 0.003240939462557435, - -0.007501935586333275, - 0.0031925190705806017, - -0.026779714971780777, - 0.0017608889611437917, - 0.01754755713045597, - -0.0015300849918276072, - 0.0311698317527771, - -0.00854136049747467, - -0.0097744669765234, - 0.03044675476849079, - -0.021330805495381355, - -0.0023048114962875843, - -0.004935653880238533, - -0.028819827362895012, - 0.014448650181293488, - -0.007037099450826645, - -0.0069467150606215, - -0.0030020654667168856, - 0.03336489200592041, - 0.013506066054105759, - 0.007876386865973473, - -0.007798913866281509, - 0.030963238328695297, - 0.024855811148881912, - -0.02708960510790348, - 0.0011854930780828, - -0.004112506750971079, - -0.004106050822883844, - -0.0039026851300150156, - -0.02548850327730179, - 0.016346730291843414, - 0.0033119560685008764, - -0.009716362692415714, - 0.004386889282613993, - -0.0036831791512668133, - -0.005235860589891672, - -0.040544021874666214, - -0.032254450023174286, - 0.01780579797923565, - 0.010265126824378967, - -0.016682446002960205, - -0.009690538048744202, - -0.020401133224368095, - 0.005845957435667515, - 0.004645131528377533, - 0.009212790057063103, - 0.023577511310577393, - 0.030756644904613495, - -0.015339585952460766, - -0.026934660971164703, - 0.01568821258842945, - -0.024145644158124924, - -0.00034317965037189424, - 0.019097009673714638, - -0.019239043816924095, - 0.02059481479227543, - -0.0022079707123339176, - 0.0038994569331407547, - 0.015894806012511253, - -0.013996726833283901, - 0.00593311432749033, - 0.013092879205942154, - 0.02871653065085411, - 0.020865969359874725, - -0.009968148544430733, - -0.00855427235364914, - 0.003831668524071574, - -0.009567872621119022, - 0.004729059990495443, - 0.03450115770101547, - -0.0334940105676651, - 0.010516912676393986, - -0.015559092164039612, - -0.004700007848441601, - -0.008354134857654572, - 0.007411550730466843, - -0.01580442115664482, - 0.0036508990451693535, - -0.01005207747220993, - 0.030756644904613495, - 0.037858303636312485, - -0.0008521992131136358, - -0.016669534146785736, - -0.006849873811006546, - 0.015145904384553432, - 0.029904445633292198, - 0.0009183737565763295, - -0.025436855852603912, - 0.01768958941102028, - 0.011130237951874733, - 0.01930360309779644, - -0.002458142815157771, - -0.6515966653823853, - -0.015636565163731575, - 0.008747953921556473, - -0.013112246990203857, - 0.00889644306153059, - 0.007798913866281509, - 0.0030262756627053022, - 0.008509079925715923, - 0.03127313032746315, - 0.056555040180683136, - 0.010626666247844696, - 0.020194539800286293, - 0.007327622268348932, - -0.02835499309003353, - -0.022815696895122528, - -0.014771453104913235, - -0.002672806615009904, - -0.02382284216582775, - 0.018748382106423378, - 0.014564859680831432, - -0.021343717351555824, - 0.023061027750372887, - 0.006804681848734617, - 0.0060751475393772125, - 0.008425150997936726, - -0.003696091240271926, - 0.015868982300162315, - -0.004667727742344141, - -0.0023613020312041044, - 0.010394248180091381, - 0.00041843304643407464, - 0.0112270787358284, - 0.010336143895983696, - -0.000520115892868489, - 0.04671601206064224, - 0.011020485311746597, - -0.014435738325119019, - 0.01824481040239334, - -0.001915834262035787, - 0.014874749816954136, - -0.01355771441012621, - 0.0047742524184286594, - 0.02056899107992649, - 0.012931477278470993, - 0.00601704278960824, - 0.029697852209210396, - 0.01756046898663044, - 0.00025380364968441427, - 0.016204698011279106, - -0.006291425321251154, - 0.011711283586919308, - 0.011685458943247795, - 0.004632219206541777, - 0.0036928632762283087, - 0.026418175548315048, - 0.01593354344367981, - 0.008057156577706337, - -0.011517602019011974, - -0.0003750564355868846, - 7.6161268225405365e-06, - 0.0001868220861069858, - 0.004409485496580601, - -0.008431607857346535, - -0.02637943997979164, - -0.0046644993126392365, - 0.019239043816924095, - -0.008296030573546886, - 0.005968622397631407, - -0.0014994187513366342, - -0.023396741598844528, - 0.008709217421710491, - 0.03914951533079147, - 0.0012839478440582752, - -0.012369800359010696, - 0.007301798090338707, - 0.02103382535278797, - 0.014564859680831432, - 0.0018754838965833187, - -0.0007380077731795609, - -0.0014074199134483933, - 0.005616767797619104, - -0.006159076001495123, - -0.007385726552456617, - 0.003938193432986736, - 0.034475330263376236, - -0.020840143784880638, - -0.005326244980096817, - -0.0290522463619709, - -0.00901910848915577, - -0.006055779289454222, - 0.014500298537313938, - -0.019226130098104477, - -0.02174399234354496, - 0.006359213963150978, - 0.019587669521570206, - 0.022040970623493195, - 0.012408536858856678, - 0.0197555273771286, - 0.022970642894506454, - -0.025604713708162308, - -0.001973938662558794, - -0.0026098601520061493, - 0.04178358614444733, - 0.002824523951858282, - 0.015365410596132278, - -0.011201255023479462, - -0.05139019712805748, - 0.013209087774157524, - 0.041912708431482315, - -0.043203916400671005, - -0.00021869885677006096, - -0.008793146349489689, - 0.023693719878792763, - 0.003066625911742449, - 0.0019900789484381676, - -0.031118184328079224, - 0.026134109124541283, - -0.023203060030937195, - 0.012014717794954777, - -0.01836101897060871, - 0.006171988323330879, - -0.0337006039917469, - -0.00014505947183351964, - 0.009580785408616066, - 0.00970344990491867, - 0.025436855852603912, - 0.008973916061222553, - 0.003957561682909727, - -0.034242913126945496, - 0.005481190513819456, - -0.0050744591280817986, - 0.006323705427348614, - 0.009290263056755066, - -0.0029713991098105907, - 0.026650594547390938, - 0.015662388876080513, - 0.01629508286714554, - -0.01592063158750534, - 0.004628991242498159, - -0.005335929337888956, - -0.032486867159605026, - 0.006901522632688284, - 0.009025564417243004, - 0.001618855749256909, - -0.007514847442507744, - -0.03790995478630066, - -0.015597827732563019, - 0.008786690421402454, - -0.0009716362110339105, - 0.003408796852454543, - -0.026134109124541283, - 0.007379270624369383, - 0.0091934222728014, - 0.024687953293323517, - 0.03292587772011757, - -0.025669272989034653, - -0.02350003831088543, - -0.024584656581282616, - -0.009290263056755066, - -0.027941804379224777, - 0.013648099265992641, - 0.02289316989481449, - -0.03648962080478668, - -0.012950845994055271, - -0.010846171528100967, - -0.005771712865680456, - 0.01402255054563284, - 0.029852796345949173, - -0.028690706938505173, - -0.04991821572184563, - 0.024003611877560616, - -0.0046644993126392365, - -0.009813203476369381, - 0.008683393709361553, - -0.002913294592872262, - 0.01196952536702156, - -0.006991907022893429, - -0.011595074087381363, - 0.00019065536616835743, - -0.012808812782168388, - -0.010213478468358517, - 0.0203365720808506, - -0.002553369617089629, - 0.0032264133915305138, - 0.015662388876080513, - 0.01837393082678318, - 0.004800076596438885, - 0.017612116411328316, - -0.003031117608770728, - 0.01023284625262022, - -0.005991218611598015, - 0.024236029013991356, - 0.023667896166443825, - 0.01850305311381817, - -0.010297407396137714, - 0.00697899516671896, - -0.024804161861538887, - -0.025436855852603912, - 0.0036864071153104305, - -0.002851962111890316, - 0.048317112028598785, - 0.003809072310104966, - 0.023887401446700096, - 0.01215675100684166, - 0.008689849637448788, - -0.02755444124341011, - -0.018929151818156242, - -0.019239043816924095, - 0.039020393043756485, - 0.005332701373845339, - 0.008373502641916275, - -0.008115260861814022, - -0.020168714225292206, - -0.006940258666872978, - 0.0024597567971795797, - -0.014861837960779667, - -0.0029730130918323994, - 0.0006859558052383363, - -0.02428767830133438, - -0.005510242655873299, - -0.008031331934034824, - -0.005155159626156092, - 0.009593697264790535, - -0.011478865519165993, - 0.01394507847726345, - 0.026237405836582184, - 0.00543599808588624, - 0.005232632160186768, - 0.012544114142656326, - -0.0017576608806848526, - 0.007682705298066139, - 0.013518978841602802, - -0.002141796052455902, - 0.01604975201189518, - 0.024442622438073158, - 9.583206519891974e-06, - -0.004344924818724394, - -0.020517341792583466, - 0.03478522226214409, - 0.04209347814321518, - 0.01905827410519123, - 0.018567612394690514, - 0.0037541957572102547, - -0.015275025740265846, - 0.016669534146785736, - -0.004874321166425943, - 0.010471721179783344, - 0.014474474824965, - -0.017160193994641304, - 0.034578628838062286, - -0.027631914243102074, - 0.009987516328692436, - -0.021330805495381355, - 0.004212575498968363, - 0.008586552925407887, - -0.019471460953354836, - 0.0214986614882946, - -0.012983125634491444, - 0.010607297532260418, - 0.02440388686954975, - -0.0033280961215496063, - 0.016901951283216476, - 0.028277520090341568, - -0.01815442554652691, - 0.0040511745028197765, - 0.022376686334609985, - -0.025165701285004616, - -0.011472409591078758, - -0.02291899360716343, - -0.00894809141755104, - 0.022273389622569084, - -0.01104630995541811, - -0.0055748033337295055, - -0.02175690419971943, - 0.021924762055277824, - 0.008747953921556473, - 0.022415421903133392, - 0.019626406952738762, - 0.02861323393881321, - 0.029904445633292198, - -0.02835499309003353, - -0.020207451656460762, - -0.005962166469544172, - 0.03259016573429108, - -0.013673923909664154, - -0.01145304087549448, - -0.02951708249747753, - 0.004990530200302601, - -0.024248940870165825, - -0.008612376637756824, - -0.01754755713045597, - 0.01249892171472311, - -0.01510716788470745, - 0.004373976960778236, - 0.013441505841910839, - -0.015016783028841019, - 0.007346990052610636, - -0.006326933391392231, - 0.010652489960193634, - 0.0022822152823209763, - -0.00299238134175539, - -0.0022709171753376722, - -0.014745628461241722, - -0.03439785912632942, - 0.039820946753025055, - -0.029284663498401642, - 0.007340534124523401, - -0.006485106889158487, - 0.008915811777114868, - -0.027399495244026184, - 0.01850305311381817, - -0.0009893904207274318, - 0.014642331749200821, - -0.0029568730387836695, - -0.016127225011587143, - 0.017973655834794044, - -0.007624600548297167, - -0.011911421082913876, - 0.03803907334804535, - -0.006972539238631725, - -0.004606395028531551, - -0.04524403065443039, - 0.0020820775534957647, - 0.012356888502836227, - 0.045760516077280045, - 0.0028761723078787327, - -0.010110181756317616, - 0.020982177928090096, - -0.005252000410109758, - -0.00500021455809474, - -0.01987173594534397, - -0.06946714967489243, - -0.013312384486198425, - -0.02291899360716343, - 0.0059202020056545734, - -0.016243433579802513, - 0.03060169890522957, - -0.0220797061920166, - 0.015507443808019161, - 0.003922053147107363, - 0.0036057066172361374, - -0.006753033027052879, - -0.003993069753050804, - -0.014577771537005901, - -0.006100971717387438, - -0.018580526113510132, - 0.004222259856760502, - 0.02801927737891674, - 0.02685718797147274, - -0.026017900556325912, - 0.01626925729215145, - 0.03140224888920784, - -0.002374214120209217, - -0.0207110233604908, - 0.012227767147123814, - 0.016023928299546242, - 0.006907978560775518, - 0.005597399547696114, - -0.019264867529273033, - -0.015016783028841019, - -0.015868982300162315, - 0.01402255054563284, - 0.029336312785744667, - -0.001767345005646348, - 0.006536755245178938, - 0.02499784342944622, - -0.0052971928380429745, - -0.02428767830133438, - -0.006940258666872978, - -4.799168891622685e-05, - -0.019277779385447502, - 0.036205556243658066, - 0.010800979100167751, - -0.027735210955142975, - 0.01617887243628502, - -0.004393345210701227, - -0.030989062041044235, - -0.009735730476677418, - -0.016127225011587143, - 0.00424485607072711, - -0.0011507917661219835, - -0.02267366461455822, - -0.021563222631812096, - -0.04116380587220192, - -0.005171299912035465, - -0.052629757672548294, - 0.021459925919771194, - -0.005636135581880808, - -0.005678100045770407, - -0.022531630471348763, - -0.008457431569695473, - 0.003405568888410926, - -0.008812515065073967, - 0.00409959489479661, - 0.010032708756625652, - -0.024378063157200813, - -0.02907807007431984, - -0.0032054311595857143, - 0.003202203195542097, - 0.0021079019643366337, - 0.003905913094058633, - -0.013273648917675018, - -0.010155374184250832, - 0.02418438158929348, - 0.0016753461677581072, - -0.007482567336410284, - 0.002072393661364913, - -0.019820088520646095, - 0.00022152338351588696, - -0.002115971874445677, - -0.022066794335842133, - -0.009387103840708733, - 0.0038123002741485834, - 0.00374773982912302, - 0.0005072038038633764, - 0.0039188251830637455, - 0.01777997426688671, - -0.004800076596438885, - -0.01128518395125866, - 0.017031071707606316, - 0.002480739029124379, - 0.0043094162829220295, - 0.00884479470551014, - -0.01650167629122734, - 0.02257036790251732, - -0.017069809138774872, - -0.0214986614882946, - 0.007844106294214725, - 0.006656192243099213, - 0.02476542629301548, - 0.0091934222728014, - 0.008218557573854923, - -0.006862786132842302, - 0.0031360285356640816, - 0.021705256775021553, - -0.008651113137602806, - 0.019097009673714638, - -0.0094839446246624, - 0.01581733487546444, - -0.015029694885015488, - -0.013518978841602802, - 0.015223377384245396, - 0.018438491970300674, - -0.027786860242486, - -0.0021966726053506136, - -0.032848406583070755, - 0.047025904059410095, - 0.021563222631812096, - 0.0002927417226601392, - 0.011601530015468597, - 0.023629160597920418, - -0.002751893363893032, - -0.019239043816924095, - -0.009503312408924103, - -0.00549733079969883, - 0.007986139506101608, - -0.002592105884104967, - -0.009290263056755066, - -0.030291808769106865, - -0.026598945260047913, - -0.008534904569387436, - 0.02117585949599743, - -0.009748642332851887, - -0.03093741461634636, - -0.03532753139734268, - -0.016127225011587143, - -0.011859772726893425, - 0.011104414239525795, - 0.0184901412576437, - -0.02768356166779995, - 0.004516010172665119, - 0.013725572265684605, - -0.034346211701631546, - 0.018464315682649612, - -0.02897477336227894, - 0.031686317175626755, - -0.0061623044312000275, - 0.0020514114294201136, - -0.007689161226153374, - -0.0220797061920166, - -0.02951708249747753, - -0.03271928429603577, - 0.027373671531677246, - 0.037161052227020264, - 0.016475850716233253, - -0.014797277748584747, - -0.010762243531644344, - 0.019949208945035934, - 0.00918696541339159, - -0.0018867820035666227, - 0.006113883573561907, - -0.002356459852308035, - -0.022492894902825356, - 0.011291639879345894, - 0.0012766848085448146, - 0.0046644993126392365, - 0.012750707566738129, - -0.02173108048737049, - -0.015959367156028748, - -0.015546179376542568, - -0.03186708688735962, - -0.016359642148017883, - 0.0012403695145621896, - -0.023512952029705048, - -0.017883270978927612, - -0.004351380746811628, - 0.009180509485304356, - 0.008360590785741806, - -0.031686317175626755, - -0.006159076001495123, - 0.037290170788764954, - -0.0047968486323952675, - 0.01824481040239334, - 0.02662476897239685, - 0.006462510675191879, - -0.025501415133476257, - 0.01732804998755455, - 0.022234652191400528, - 0.01650167629122734, - 0.0018690278520807624, - -0.012970213778316975, - -0.025785481557250023, - 0.006536755245178938, - 0.028277520090341568, - 0.009374191053211689, - -0.008205645717680454, - 0.008225013501942158, - -0.015649477019906044, - -0.008386415429413319, - 0.020723935216665268, - 0.021808553487062454, - 0.007230781484395266, - -0.021898938342928886, - -0.019471460953354836, - -0.014577771537005901, - -0.019613493233919144, - -0.008386415429413319, - -0.02001377008855343, - 0.023525863885879517, - 0.007611688692122698, - -0.00424485607072711, - 0.027606090530753136, - 0.009567872621119022, - 0.008567184209823608, - 0.0020756216254085302, - -0.01757338084280491, - 0.023345094174146652, - 0.009141772985458374, - 0.058672625571489334, - 0.012879828922450542, - -0.03264181315898895, - -0.0021547081414610147, - -0.023448390886187553, - 0.006985451094806194, - 0.003308728104457259, - 0.02325470931828022, - -0.009199878200888634, - -0.0005721678608097136, - -0.02140827663242817, - 0.017844535410404205, - -0.005203580018132925, - -0.027296198531985283, - -0.022738223895430565, - 0.023435479030013084, - 0.0011661248281598091, - 0.011614442802965641, - -0.019807176664471626, - -0.002561439760029316, - -0.011872684583067894, - 0.010846171528100967, - -0.007501935586333275, - 0.009593697264790535, - -0.012421449646353722, - -0.008128172717988491, - -0.0003294605412520468, - 0.01394507847726345, - 0.011233535595238209, - -0.0067207529209554195, - 0.000525764946360141, - -0.03504346311092377, - -0.012692603282630444, - -0.026779714971780777, - 0.008095892146229744, - 0.014823101460933685, - 0.0016503289807587862, - 0.005758801009505987, - 0.008257294073700905, - 0.0106460340321064, - 0.019135745242238045, - 0.007295341696590185, - -0.01734096370637417, - 0.005332701373845339, - 0.006207496393471956, - 0.020840143784880638, - 0.0013267191825434566, - -0.017973655834794044, - -0.026301966980099678, - -0.02534647099673748, - 0.021834377199411392, - -0.010329687967896461, - -0.0019255182705819607, - -0.010420071892440319, - -0.021317891776561737, - -0.004590254742652178, - 0.0002858821826521307, - -0.005758801009505987, - -0.01402255054563284, - -0.004987302236258984, - -0.01052982546389103, - -0.008134628646075726, - 0.004260995890945196, - 0.0073082540184259415, - 0.0021740763913840055, - -0.02350003831088543, - -0.008496168069541454, - 0.006914434488862753, - 0.00776663376018405, - 0.007553583942353725, - 0.009690538048744202, - 0.009613065049052238, - 0.005287508945912123, - 0.0218731127679348, - -0.03920116275548935, - 0.006882154382765293, - 0.017818711698055267, - -0.016785742715001106, - -0.006959626916795969, - 0.003718687454238534, - 0.001414682948961854, - -0.017625030130147934, - 0.014345353469252586, - -0.012957301922142506, - -0.002295127371326089, - 0.003014977555721998, - 0.005458594299852848, - 0.02011706680059433, - 0.003045643912628293, - -0.004025350324809551, - 0.02115003578364849, - -0.008011964149773121, - 0.009238614700734615, - -0.01756046898663044, - -0.0037380557041615248, - 0.006604543887078762, - 0.00697899516671896, - 0.007818282581865788, - 0.025720922276377678, - -0.02186020091176033, - 0.0097744669765234, - -0.011762931942939758, - 0.010148918256163597, - -0.00045595885603688657, - -0.046664364635944366, - -0.014758541248738766, - 0.003341008210554719, - 0.021550310775637627, - -0.009496856480836868, - 0.006488334853202105, - -0.013021862134337425, - 0.002211198676377535, - -0.02742532081902027, - 0.009897131472826004, - 0.023809930309653282, - 0.021937673911452293, - -0.0026744205970317125, - 0.008676937781274319, - 0.0037509677931666374, - 0.015029694885015488, - 0.0014550333144143224, - 0.006333389785140753, - -0.01687612757086754, - -0.023784104734659195, - -0.013531890697777271, - 0.004903373308479786, - -0.015675300732254982, - 0.02804510109126568, - -0.0011055993381887674, - -0.036567091941833496, - -0.0042965044267475605, - 0.0031489406246691942, - -0.04700007662177086, - -0.016140136867761612, - -0.0189678892493248, - 0.028561586514115334, - 0.00797322764992714, - 0.009025564417243004, - -0.01581733487546444, - 0.014668156392872334, - 0.003702547401189804, - 0.036334674805402756, - -0.008612376637756824, - -0.026676418259739876, - 0.017521731555461884, - 0.001935202395543456, - 0.0006379389087669551, - 0.014758541248738766, - -0.03690280765295029, - -0.018076952546834946, - 0.03754841536283493, - -0.00363475875928998, - -0.021563222631812096, - 0.026676418259739876, - 0.0036283028312027454, - -0.003363604424521327, - 0.026469824835658073, - 0.013247824274003506, - -0.010077901184558868, - 0.004222259856760502, - 0.04932425916194916, - -0.031815435737371445, - -0.0008513922221027315, - -0.004238399676978588, - -0.012679691426455975, - -0.012795899994671345, - -0.0006778857205063105, - 0.010071445256471634, - 0.0003260307712480426, - -0.0019368163775652647, - 0.014242056757211685, - -0.008683393709361553, - -0.007566496264189482, - -0.0036864071153104305, - 0.011020485311746597, - -0.014861837960779667, - -0.008709217421710491, - -0.006323705427348614, - 0.010316775180399418, - -0.002421020530164242, - -0.026134109124541283, - 0.01883876696228981, - -0.026908835396170616, - -0.0032393254805356264, - 0.016333818435668945, - -0.018206074833869934, - 0.007643968798220158, - -0.019962120801210403, - 0.004958250094205141, - -0.019613493233919144, - 0.011885596439242363, - -0.015223377384245396, - 0.00014223495963960886, - -0.006026727147400379, - 0.014035463333129883, - 0.009354823268949986, - -0.0011637038551270962, - 0.0017463627737015486, - 7.449682016158476e-05, - -0.004725832026451826, - -0.03421708941459656, - -0.015998102724552155, - 0.00143163010943681, - -0.023629160597920418, - 0.007669792976230383, - 0.017250578850507736, - -0.0017092404887080193, - 0.013661012053489685, - -0.015339585952460766, - 0.016475850716233253, - -0.004076998680830002, - 0.004538606386631727, - 0.1988464891910553, - -0.02254454232752323, - -0.007069380022585392, - 0.029491256922483444, - -0.0332874171435833, - 0.01510716788470745, - 0.010129549540579319, - -0.0033958847634494305, - 0.005768484901636839, - 0.014190408401191235, - -0.01719892956316471, - -0.008270205929875374, - -0.025307733565568924, - -0.0018351335311308503, - 0.018115689978003502, - -0.007140396628528833, - -0.017870359122753143, - -0.014965134672820568, - -0.009864851832389832, - -0.002634070347994566, - 0.03271928429603577, - -0.025294821709394455, - -0.004467589780688286, - -0.024352237582206726, - 0.003466901369392872, - 0.0087156742811203, - -0.024378063157200813, - 0.006694928742945194, - 0.032254450023174286, - 0.001851273700594902, - -0.016721181571483612, - 0.0036670390982180834, - 0.01220839936286211, - 0.003528233850374818, - -0.013622275553643703, - 0.003370060585439205, - 0.011821036227047443, - -0.0045967111364007, - 0.02719290181994438, - 0.024223117157816887, - 0.002835822058841586, - 0.012854005210101604, - -0.02594042755663395, - -0.02161487191915512, - 0.022350860759615898, - 0.039356108754873276, - 0.001423560082912445, - 0.0040059820748865604, - 0.02138245292007923, - -0.0008376730838790536, - -0.028923125937581062, - -0.006746577098965645, - 0.030653348192572594, - 0.040879737585783005, - -0.01593354344367981, - 0.023680808022618294, - 0.021434102207422256, - 0.02626323141157627, - 0.014642331749200821, - 0.01400963868945837, - -0.0034378492273390293, - 0.007418006658554077, - -0.009696993976831436, - 0.027037957683205605, - -0.030188512057065964, - 0.022170091047883034, - 0.014177496545016766, - 0.020065417513251305, - 0.009128861129283905, - -0.010426528751850128, - -0.016230521723628044, - -0.03176378831267357, - -0.02384866587817669, - -0.0025372295640408993, - -0.0026130881160497665, - -0.014693980105221272, - 0.015985190868377686, - -0.005142247769981623, - 0.02036239579319954, - 0.03806489706039429, - -0.020543165504932404, - 0.008521991781890392, - -0.004951794166117907, - -0.03127313032746315, - -0.022505806758999825, - -0.040983036160469055, - 0.016475850716233253, - 0.009664714336395264, - -0.004716148134320974, - 0.002485580975189805, - 0.01255057007074356, - -0.013092879205942154, - -0.008521991781890392, - -0.017366787418723106, - 0.010026252828538418, - 0.010032708756625652, - 0.005239088553935289, - 0.005523154977709055, - -0.006559351459145546, - 0.027244551107287407, - -0.027167078107595444, - 0.045528098940849304, - 0.005368209443986416, - 0.0016309608472511172, - -0.0022386370692402124, - 0.031195655465126038, - -0.0028568042907863855, - 0.016075575724244118, - 0.00953559298068285, - -0.0018254495225846767, - -0.005132563412189484, - -0.008515535853803158, - 0.01930360309779644, - 0.0009756712825037539, - -0.0015276639023795724, - 0.03886545076966286, - -0.0040640863589942455, - -0.020607726648449898, - -0.003725143615156412, - -0.016243433579802513, - -0.01814151369035244, - -0.0019368163775652647, - -0.011026941239833832, - 0.03690280765295029, - -0.01069768238812685, - -0.016204698011279106, - -0.0032538515515625477, - 0.00407054228708148, - -0.02499784342944622, - -0.007166220806539059, - -0.00027256656903773546, - -0.03184126317501068, - 0.009180509485304356, - -0.03300335258245468, - -0.0025065632071346045, - -0.0023709861561656, - 0.028819827362895012, - -0.015184640884399414, - 0.006811137776821852, - 0.0030408017337322235, - -0.0018044672906398773, - -0.017986567690968513, - -0.01296375785022974, - 0.006849873811006546, - -0.002256391104310751, - -0.013125158846378326, - 0.012944390065968037, - 0.015378322452306747, - -0.0027648054528981447, - -0.01581733487546444, - -0.02502366714179516, - -0.010219934396445751, - 0.013325297273695469, - -0.029930269345641136, - 0.02315141260623932, - 0.0033119560685008764, - -0.030627522617578506, - -0.013841780833899975, - -0.005994446575641632, - -0.008296030573546886, - -0.021705256775021553, - 0.002955259056761861, - 0.01571403630077839, - -0.010471721179783344, - -0.019510196521878242, - -0.002458142815157771, - -0.16341565549373627, - 0.01459068339318037, - 0.034113794565200806, - -0.03351983428001404, - 0.039820946753025055, - -0.015262112952768803, - -0.010310319252312183, - 0.001870641834102571, - 0.0071985009126365185, - -0.006862786132842302, - 0.005122879520058632, - 0.0029262066818773746, - -0.019471460953354836, - -0.009780922904610634, - 0.010084357112646103, - 0.006472195032984018, - -0.02219591662287712, - 0.017018159851431847, - 0.03287423029541969, - -0.003973701503127813, - 0.004729059990495443, - -0.011233535595238209, - 0.028897300362586975, - -0.009664714336395264, - -0.006491562817245722, - 0.00912240520119667, - -0.009199878200888634, - 0.006985451094806194, - 0.0004113717295695096, - -0.026883011683821678, - -0.01354480255395174, - 0.016785742715001106, - 0.04591546207666397, - 0.007689161226153374, - 0.0033958847634494305, - -0.024584656581282616, - 0.003912369254976511, - -0.01685030199587345, - -0.0100649893283844, - 0.023461302742362022, - 0.030369281768798828, - 0.03315829858183861, - 0.0025065632071346045, - 0.009219245985150337, - -0.018696734681725502, - -0.002527545439079404, - 0.0087156742811203, - -0.013067054562270641, - -0.010265126824378967, - -0.003889773041009903, - 0.02277696132659912, - -0.029000597074627876, - -0.008160453289747238, - 0.015649477019906044, - 0.028458289802074432, - -0.006165532395243645, - 0.007747265510261059, - -0.004199663642793894, - 0.003915597219020128, - 0.0036089345812797546, - -0.0055748033337295055, - -0.010523369535803795, - 0.019729703664779663, - -0.022738223895430565, - 0.006226864643394947, - -0.019962120801210403, - 0.0012016331311315298, - 0.00826375000178814, - -0.016127225011587143, - 0.009968148544430733, - -0.02335800603032112, - 0.014474474824965, - 0.0033280961215496063, - -0.0077214413322508335, - -0.011356200091540813, - -0.005558663047850132, - -0.003263535676524043, - 0.016772830858826637, - 0.0029488028958439827, - -0.007127484306693077, - -0.016695357859134674, - 0.037600062787532806, - -0.011872684583067894, - -0.007863475009799004, - -0.04173193871974945, - -0.02000085823237896, - -0.0016462939092889428, - -0.005762028973549604, - 0.0023161096032708883, - -0.009490400552749634, - 0.008986827917397022, - -0.032615989446640015, - -0.008676937781274319, - 0.015339585952460766, - 0.031247304752469063, - 0.00010042191570391878, - -0.012079278007149696, - -0.0197555273771286, - -0.012298784218728542, - 0.004800076596438885, - 0.028794003650546074, - 0.0022660752292722464, - -0.019161570817232132, - 0.025888780131936073, - 0.006759489420801401, - 0.013803045265376568, - -0.0449083149433136, - 0.014913486316800117, - 0.028174223378300667, - -0.0004402222402859479, - -0.02579839527606964, - 0.00403826218098402, - 0.004154471214860678, - 0.04909183830022812, - 0.009987516328692436, - 0.015791509300470352, - -0.0051971240900456905, - -0.018399756401777267, - 0.001246825559064746, - 0.0013242982095107436, - 0.03979511931538582, - 0.012137383222579956, - -0.0451149083673954, - 0.014151671901345253, - -0.0202332753688097, - -0.053197890520095825, - -0.07241111248731613, - -0.021666519343852997, - 0.02637943997979164, - 0.013312384486198425, - 0.02302229031920433, - 0.030291808769106865, - -0.019226130098104477, - -0.007501935586333275, - -0.028923125937581062, - 0.01966514252126217, - 0.0010604070266708732, - -0.053559429943561554, - -0.0013259121915325522, - -0.010097269900143147, - 0.013828868977725506, - -0.013790132477879524, - -0.006394722033292055, - -0.01493931096047163, - -0.02231212519109249, - 0.02034948393702507, - 0.015326674096286297, - 0.0063075656071305275, - -0.01780579797923565, - 0.0034217089414596558, - -0.010265126824378967, - 0.010962381027638912, - -0.038891274482011795, - 0.023086851462721825, - 0.016656620427966118, - 0.009115949273109436, - -0.002569509670138359, - -0.0063204774633049965, - 0.01402255054563284, - -0.02637943997979164, - -0.020620638504624367, - -0.0013186491560190916, - -0.02257036790251732, - -0.022183004766702652, - 0.005390805657953024, - -0.013454417698085308, - 0.010303863324224949, - 0.002053025411441922, - 0.004128647036850452, - -0.032383568584918976, - -0.024016523733735085, - -0.01499095931649208, - -0.005981534719467163, - -0.008625289425253868, - 0.006333389785140753, - -0.028742356225848198, - -0.027037957683205605, - -0.011252903379499912, - -0.01722475327551365, - 0.005113195162266493, - 0.03501763939857483, - -0.005413401871919632, - -0.0003115046420134604, - -0.02548850327730179, - -0.0202332753688097, - -0.001250053639523685, - 0.0021934446413069963, - -0.0071985009126365185, - -0.00776663376018405, - 0.03393302485346794, - -0.010658945888280869, - -0.010536281391978264, - -0.025307733565568924, - -0.004386889282613993, - 0.018425580114126205, - -0.012337520718574524, - -0.001551874098367989, - 0.002195058623328805, - -0.005862097721546888, - 0.019510196521878242, - -0.0201299786567688, - 0.0011806510156020522, - -0.03339071571826935, - -0.03199620544910431, - 0.036205556243658066, - -0.001660820096731186, - -0.009574329480528831, - -0.030085215345025063, - 0.024791250005364418, - -0.0027712613809853792, - 0.015610740520060062, - 0.006410862319171429, - -0.0013937008334323764, - 0.0029875393956899643, - 0.008011964149773121, - -0.01069768238812685, - 0.011607985943555832, - 0.02698630839586258, - 0.011201255023479462, - 0.01402255054563284, - 0.013751396909356117, - -0.008173365145921707, - 0.0007416392909362912, - -0.00965180154889822, - -0.01836101897060871, - 0.010620210319757462, - -0.010491088964045048, - -0.004067314323037863, - -0.06714297086000443, - 0.00701127527281642, - 0.004700007848441601, - -0.010013340972363949, - -0.014151671901345253, - 0.007689161226153374, - 0.01952311024069786, - 0.019794262945652008, - -0.002616316080093384, - -0.011930788867175579, - -0.013118702918291092, - 0.0006589210825040936, - 0.002626000205054879, - 0.01978135108947754, - -0.010123093612492085, - -0.012699059210717678, - 0.02266075275838375, - 0.006972539238631725, - -0.010161830112338066, - -0.00965180154889822, - -0.006933802738785744, - 0.002141796052455902, - 0.005736204795539379, - 0.0050324946641922, - -0.03153137117624283, - 0.007521303836256266, - -0.01198243722319603, - 0.010781611315906048, - 0.012079278007149696, - -0.020439868792891502, - 0.0006742542027495801, - 0.012634498998522758, - -0.017392611131072044, - 0.007437374908477068, - -0.012421449646353722, - -0.02559179998934269, - 0.012427905574440956, - 0.03992424160242081, - 0.00015302866813726723, - 0.05758800730109215, - -0.013389857485890388, - -0.03184126317501068, - -0.0007497093756683171, - -0.008134628646075726, - 0.009561416693031788, - 0.000830410048365593, - 0.02652147226035595, - -0.004806532524526119, - -0.0009974604472517967, - 0.0036250746343284845, - -0.00918696541339159, - 0.003886544844135642, - -0.023319270461797714, - -0.006020271219313145, - 0.015287937596440315, - -0.01673409342765808, - 0.012828180566430092, - -0.011091502383351326, - -0.006026727147400379, - -0.007986139506101608, - 0.045863810926675797, - 0.0054682781919837, - -0.0016882582567632198, - 0.005762028973549604, - 0.02652147226035595, - -0.005658731795847416, - -0.013777220621705055, - -0.00042973115341737866, - 0.025204436853528023, - -0.008696305565536022, - -0.019845912232995033, - -0.015765685588121414, - -0.015868982300162315, - 0.027063781395554543, - 0.004577342886477709, - -0.003126344410702586, - 0.014048375189304352, - -0.0022547771222889423, - 0.004012438002973795, - 0.028458289802074432, - 0.014345353469252586, - -0.008231469430029392, - -0.011620898731052876, - -0.007631056476384401, - 0.026547297835350037, - 0.025320647284388542, - -0.03034345619380474, - 0.010136005468666553, - 0.00018268616986460984, - 0.008812515065073967, - -0.0013347893254831433, - 0.008773778565227985, - 0.009096581488847733, - 0.00347335753031075, - 0.01617887243628502, - -0.011601530015468597, - -0.009077212773263454, - -0.0023613020312041044, - 0.010465264320373535, - 0.01412584725767374, - 0.01592063158750534, - -0.00376387988217175, - 0.013983814045786858, - -0.02604372426867485, - -0.03966600075364113, - -0.002569509670138359, - -0.007418006658554077, - -0.013215543702244759, - -0.021653607487678528, - 0.011052765883505344, - 0.004851724952459335, - 0.025785481557250023, - -0.016837390139698982, - -0.008082980290055275, - -0.028303343802690506, - 0.04160281643271446, - -0.0020368853583931923, - -0.011420760303735733, - -0.021653607487678528, - 0.035534124821424484, - 0.016901951283216476, - 0.02382284216582775, - 0.007037099450826645, - 0.004215803928673267, - 0.021898938342928886, - 0.028639059513807297, - 0.002217654837295413, - -0.023745369166135788, - 0.0027389812748879194, - 0.004002754110842943, - 0.005271368660032749, - 0.010148918256163597, - -0.02244124561548233, - -0.01651458814740181, - -0.012453729286789894, - -0.016889039427042007, - 0.006265601143240929, - -0.01850305311381817, - 0.010613753460347652, - 0.0969957634806633, - 0.0014437352074310184, - -0.0005455366335809231, - 0.02535938285291195, - -0.011833948083221912, - -0.013764308765530586, - -0.008412239141762257, - 0.01648876443505287, - -0.04100885987281799, - -0.016217609867453575, - 0.0012113172560930252, - -0.024210205301642418, - 0.011956613510847092, - -0.009806746616959572, - -0.012860461138188839, - 0.014035463333129883, - -0.03357148543000221, - 0.020672287791967392, - -0.007159764878451824, - 0.002488809172064066, - 0.025850042700767517, - -0.0068305060267448425, - 0.006133251823484898, - 0.021421190351247787, - -0.0031941330526024103, - -0.00965180154889822, - 0.031014887616038322, - 0.007928035221993923, - -0.00015212078869808465, - 0.0005737818428315222, - -0.006907978560775518, - 0.024907458573579788, - -0.05908581241965294, - -0.018089864403009415, - 0.02711542882025242, - -0.026598945260047913, - -0.025979164987802505, - -0.01196952536702156, - 0.006856330204755068, - 0.011808124370872974, - -0.0016656621592119336, - 0.008418695069849491, - -0.01721184141933918, - -0.03705775365233421, - -0.004606395028531551, - -0.011407848447561264, - -0.01580442115664482, - -0.01109795831143856, - -0.018231898546218872 - ], - "sparse": "SparseEmbedding(values=array([1.75725429, 1.75725429, 1.75725429, 1.75725429, 1.9538595 ,\n 1.75725429, 1.75725429, 1.75725429, 1.75725429, 1.75725429,\n 1.75725429, 1.46285714, 1.88361204, 1.75725429, 1.88361204,\n 1.75725429, 1.88361204, 1.75725429, 1.75725429, 1.75725429,\n 1.46285714, 1.46285714, 1.46285714, 1.46285714, 1.46285714,\n 1.75725429, 1.46285714, 1.46285714, 1.46285714, 1.46285714,\n 1.46285714, 1.46285714, 1.46285714]), indices=array([2017215381, 1730860116, 338063690, 732421865, 22476906,\n 1232819956, 828667247, 913777079, 425017862, 1413554298,\n 993732989, 1162941628, 1771054898, 1946192279, 2124172637,\n 1441934224, 164058840, 1533740972, 2126373955, 408270109,\n 1557666034, 565373295, 1505931685, 689006838, 1775796869,\n 946581070, 1602481333, 1701961266, 1650776438, 193740839,\n 261052326, 1047604504, 1710461277]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 1, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 57 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000002.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000002.json deleted file mode 100644 index 1fabbfa75f2c50a7b64d22e396fe32c5044eacab..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000002.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000002", - "content": "Beteiligte", - "embedding": { - "dense": [ - -0.013443885371088982, - -0.007772043813019991, - 0.015621872618794441, - -0.014079132117331028, - -0.03723321110010147, - 0.034147728234529495, - -0.010131530463695526, - 0.021339088678359985, - -0.0027484125457704067, - -0.02517649531364441, - 0.02491721138358116, - 0.015349624678492546, - -0.010157458484172821, - -0.013677241280674934, - -0.008446183055639267, - 0.012400266714394093, - 0.020016739144921303, - 0.0013231596676632762, - 0.020353808999061584, - -0.0032767041120678186, - -0.0224929042160511, - -0.013171637430787086, - 0.020353808999061584, - 0.011907626874744892, - -0.021870622411370277, - -0.010034298524260521, - 0.0037304514553397894, - -0.035236723721027374, - 0.018720319494605064, - -0.011512218043208122, - 0.024256037548184395, - -0.019951919093728065, - -0.008420254103839397, - -0.006245508324354887, - -0.011901144869625568, - -0.025111675262451172, - 0.007402563933283091, - 0.021702086552977562, - 0.007752597332000732, - 0.02686184272170067, - 0.005688047036528587, - 0.00957406871020794, - 0.009366641752421856, - -0.02363375388085842, - -0.005231058690696955, - 0.015116268768906593, - -0.005879268981516361, - 0.009236999787390232, - -0.018629569560289383, - 0.025409851223230362, - 0.03471815586090088, - 0.030543679371476173, - -0.00242430716753006, - -0.017773931846022606, - 0.017073864117264748, - -0.015492230653762817, - -0.016503438353538513, - -0.007733151316642761, - -0.030232537537813187, - -0.010157458484172821, - -0.0026771093253046274, - -0.009548140689730644, - -0.025461707264184952, - 0.0062876418232917786, - -0.011440915055572987, - -0.023698575794696808, - -0.011252934113144875, - -0.0029833887238055468, - -0.012296552769839764, - -0.0019738010596483946, - 0.04407831281423569, - 0.005957054439932108, - 0.027665624395012856, - -0.0015192433493211865, - 0.021079804748296738, - -0.025059817358851433, - -0.00011343683581799269, - 0.011097363196313381, - 0.018111001700162888, - 0.022817010059952736, - 0.018525855615735054, - -0.010896418243646622, - -0.02581174112856388, - 0.0173072200268507, - 0.02818419225513935, - 0.0035878450144082308, - -0.008394326083362103, - 0.004041592590510845, - -0.006929370108991861, - -0.015375552698969841, - 0.008310058154165745, - 0.03912598639726639, - -0.01671086624264717, - 0.0168145801872015, - -0.0032329498790204525, - 0.01588115654885769, - -0.007622955366969109, - 0.020107489079236984, - -0.003532747272402048, - -0.03349951654672623, - 0.010961239226162434, - 0.02675812877714634, - -0.036662787199020386, - 0.0007547601126134396, - -0.025435779243707657, - 0.02388007380068302, - -0.00941849872469902, - 0.009081428870558739, - 0.009567586705088615, - -0.012225249782204628, - 0.0007134366896934807, - 0.012737336568534374, - -0.018279535695910454, - -0.0197833850979805, - 0.00331883761100471, - -0.017735039815306664, - 0.0023011472076177597, - -0.009152731858193874, - 0.01888885349035263, - -0.018966639414429665, - 0.0049231587909162045, - 0.0007182982517406344, - 0.008335987105965614, - -0.02719891257584095, - 0.01864253357052803, - 0.010248207487165928, - -0.0048583378084003925, - 0.0005675893044099212, - 0.008070220239460468, - -0.004715731367468834, - -0.013067923486232758, - 0.004683320876210928, - 0.016062656417489052, - -0.005545440595597029, - 0.002233085222542286, - 0.017229434102773666, - -0.0187851395457983, - 0.0021115457639098167, - -0.037699922919273376, - -0.0185388196259737, - -7.981091766851023e-05, - 0.008348951116204262, - -0.0014033757615834475, - -0.025876563042402267, - -0.011479808017611504, - 0.01038433238863945, - 0.01581633649766445, - 0.006851585116237402, - -0.006371909286826849, - -0.010799187235534191, - -0.003028763458132744, - -0.037414710968732834, - 0.03456258401274681, - -0.021650230512022972, - -0.0011303171049803495, - 0.006294123828411102, - -0.003516542026773095, - 0.0026690068189054728, - -0.016179334372282028, - -0.004417554475367069, - -0.001797163626179099, - 0.001148953102529049, - 0.038892630487680435, - -0.0450117364525795, - 0.028080478310585022, - 0.012153946794569492, - 0.020859412848949432, - 0.007713704835623503, - 0.0010898038744926453, - -0.002387035172432661, - -0.006041321903467178, - 0.010371367447078228, - -0.02833976224064827, - 0.017397969961166382, - -0.0037272104527801275, - 0.005321808159351349, - 0.003114651422947645, - -0.004553678911179304, - -0.03282538056373596, - -0.023776361718773842, - -0.03435515612363815, - 0.017346112057566643, - 0.019122209399938583, - 0.021053876727819443, - -0.020016739144921303, - 0.013832812197506428, - 0.004362456500530243, - 0.03451072797179222, - -0.006819174159318209, - -0.0066052647307515144, - 0.024502357468008995, - 0.015051447786390781, - 0.02299850806593895, - -0.023659683763980865, - -0.6704052090644836, - -0.039048198610544205, - 0.0037336924578994513, - 0.003088722936809063, - 0.0002890613686759025, - 0.02997325360774994, - 0.019861169159412384, - -0.0018117483705282211, - -0.008355433121323586, - 0.03471815586090088, - -0.021844694390892982, - 0.029091687873005867, - 0.0037725851871073246, - -0.003918432630598545, - -0.012225249782204628, - -0.005201889201998711, - -0.0035748807713389397, - -0.00744145642966032, - 0.005694529041647911, - -8.198850264307112e-05, - -0.004482375457882881, - 0.019964883103966713, - -0.014208774082362652, - 0.005454691126942635, - 0.024152323603630066, - 0.004731936380267143, - 0.016244154423475266, - -0.024113429710268974, - 0.004978256765753031, - 0.0032021598890423775, - -0.027924908325076103, - 0.02176690846681595, - -0.012698443606495857, - -0.014234702102839947, - 0.042704109102487564, - 0.008478593081235886, - 0.0022573929745703936, - 0.01265955064445734, - -0.00904901884496212, - 0.014701413922011852, - -0.01365131326019764, - -0.012393784709274769, - 0.006381632294505835, - 0.001999729312956333, - 0.017683181911706924, - 0.0039054681546986103, - 0.0018117483705282211, - -0.00020803505321964622, - -0.023478183895349503, - 0.0020548272877931595, - 0.016010798513889313, - -0.005389870144426823, - -0.020392702892422676, - -0.01075381226837635, - 0.008958268910646439, - 0.006310329306870699, - 0.0019883858039975166, - -0.01124645210802555, - -0.018227679654955864, - 0.018422141671180725, - -0.013521671295166016, - -0.004660633392632008, - -0.01540148165076971, - -0.02289479412138462, - 0.0012332204496487975, - -0.008394326083362103, - -0.015271839685738087, - 0.005697770044207573, - 0.016749758273363113, - -0.01923888735473156, - -0.012419712729752064, - 0.01327535044401884, - -0.021740980446338654, - 0.012322481721639633, - 0.02833976224064827, - 0.0040253871120512486, - 0.01515516173094511, - -0.006054285913705826, - -0.006961780600249767, - 0.011875215917825699, - -0.0024437536485493183, - -0.01785171777009964, - -3.946867764170747e-06, - -0.011959483847022057, - 0.029739897698163986, - -0.04436352476477623, - -0.005639431066811085, - -0.013716134242713451, - 0.00025097900652326643, - -0.0077590798027813435, - 0.016853472217917442, - 0.02953246980905533, - -0.0003224847314413637, - 0.0019948678091168404, - 0.0026900735683739185, - 0.020107489079236984, - 0.0003058743313886225, - 0.030284393578767776, - 0.030673321336507797, - -0.045478448271751404, - 0.006708978675305843, - -0.002126130508258939, - 0.02948061376810074, - 0.0016059414483606815, - -0.0013944627717137337, - 0.02091127075254917, - -0.039929766207933426, - 0.012322481721639633, - 0.026187703013420105, - -0.028547190129756927, - -0.009450908750295639, - -0.016581224277615547, - -0.013949490152299404, - -0.01330127939581871, - -0.009690746665000916, - -0.026887770742177963, - 0.01050749234855175, - -0.030388107523322105, - 0.009204588830471039, - -0.02468385547399521, - 0.007992435246706009, - -0.0008872381295077503, - 0.028469404205679893, - 0.014805127866566181, - -0.016529368236660957, - 0.01982227712869644, - 0.008938822895288467, - -0.020639022812247276, - -0.025941383093595505, - -0.0020434835460036993, - 0.021248340606689453, - 0.0023011472076177597, - 0.0180461797863245, - -0.010125047527253628, - 0.0016318699344992638, - 0.0051727197133004665, - 0.026278452947735786, - 0.001954354578629136, - 0.003228088142350316, - -0.00998892355710268, - -0.0022120182402431965, - -0.0009869005298241973, - 0.006994191091507673, - 0.001165158348158002, - -0.0059991879388689995, - -0.020444558933377266, - -0.0017242399044334888, - 0.01879810355603695, - -0.0013004723004996777, - 0.016192298382520676, - -0.01231599971652031, - -0.006858067121356726, - -0.007694258354604244, - 0.025591351091861725, - 0.04366345703601837, - -0.013417957350611687, - -0.025889527052640915, - -0.015608908608555794, - -0.009424980729818344, - -0.015492230653762817, - 0.010429706424474716, - 0.02120944671332836, - -0.011466844007372856, - -0.023465219885110855, - 0.0006125589134171605, - -0.022531796246767044, - 0.018512891605496407, - 0.016490474343299866, - 0.0023027677088975906, - -0.00885455496609211, - 0.0262006688863039, - 0.0011440914822742343, - 0.009956513531506062, - 0.02581174112856388, - 0.004362456500530243, - 0.0033642123453319073, - -0.008342469111084938, - -0.0009901415323838592, - -0.0059051974676549435, - -0.011661306954920292, - 0.018383249640464783, - -0.014299523085355759, - -0.012328963726758957, - 0.002390276174992323, - 0.005610262043774128, - 0.0009812286589294672, - 0.0064464532770216465, - 0.027172984555363655, - -0.023854145780205727, - -0.0007592165493406355, - -0.007337742950767279, - 0.02704334259033203, - 0.0012713028118014336, - 0.01127886213362217, - 0.02823604829609394, - 5.102125578559935e-05, - -0.0032021598890423775, - 0.0077590798027813435, - 0.014675485901534557, - 0.018772175535559654, - 0.02704334259033203, - -0.0008540173294022679, - 0.038348134607076645, - -0.014869948849081993, - 0.029999181628227234, - -0.03596271947026253, - 0.019303709268569946, - -0.017190542072057724, - 0.01725536398589611, - 0.003429033560678363, - 0.015297767706215382, - -0.015582980588078499, - -0.02625252492725849, - 0.0013045236701145768, - 0.01379391923546791, - 0.020198239013552666, - 0.0004663064319174737, - -0.00225091096945107, - 0.019692635163664818, - -0.029688039794564247, - 0.006942334584891796, - -0.03134746104478836, - 0.020535308867692947, - -0.014623628929257393, - -0.003723969217389822, - 0.006187169346958399, - 0.005256987176835537, - 0.00974260363727808, - 0.028702760115265846, - 0.02315407805144787, - -0.019848205149173737, - 0.0011505736038088799, - -0.026939628645777702, - 0.003565157763659954, - 0.0013985141413286328, - -0.009904656559228897, - 0.007143279537558556, - -0.020690878853201866, - 0.017540575936436653, - 0.006780281662940979, - 0.007752597332000732, - 0.03477001190185547, - 0.014493986964225769, - -0.0035424702800810337, - 0.022661438211798668, - 0.004718972370028496, - 0.010494528338313103, - 0.012549354694783688, - -0.002408101921901107, - 0.021196482703089714, - -0.0021358535159379244, - 0.0018652257276698947, - -0.018512891605496407, - -0.02468385547399521, - 0.015051447786390781, - -0.0026657655835151672, - 0.03443294018507004, - 0.017722075805068016, - 0.0028942597564309835, - 0.011259416118264198, - 0.015375552698969841, - 0.01204375084489584, - 0.007629437372088432, - 0.012795675545930862, - -0.007428492419421673, - -0.025085745379328728, - -0.017722075805068016, - -0.006504792254418135, - 0.0021617820020765066, - -0.03593679144978523, - 0.010332475416362286, - -0.0038503704126924276, - -0.003226467641070485, - 0.02428196556866169, - 0.017696145921945572, - -0.0009431462967768312, - -0.01770910993218422, - -0.0013239699183031917, - -0.016594188287854195, - 0.03173638507723808, - -0.027172984555363655, - -0.004683320876210928, - -0.02235029824078083, - 0.033058736473321915, - -0.01765725389122963, - 0.003445238806307316, - -0.018862925469875336, - 0.024100465700030327, - 0.004330046009272337, - 0.0031551646534353495, - 0.021235376596450806, - 0.012283588759601116, - -0.007097905036062002, - 0.012037268839776516, - 0.0316586010158062, - -0.0077201868407428265, - 0.020639022812247276, - -0.00536394165828824, - 0.012147464789450169, - -0.01899256743490696, - -0.008498040027916431, - -0.0031762314029037952, - -0.009658336639404297, - 0.006806210149079561, - 0.03868520259857178, - -0.0030012144707143307, - -0.004239296540617943, - 0.0032442936208099127, - -0.0006810261402279139, - -0.004628222901374102, - 0.00657609524205327, - -0.017294256016612053, - -0.0059440904296934605, - 0.012776228599250317, - 0.0015484128380194306, - 0.014869948849081993, - -0.0006502361502498388, - -0.009185142815113068, - 0.015492230653762817, - -0.012653068639338017, - -0.011058471165597439, - -0.04882321506738663, - -0.025656171143054962, - 0.0029688039794564247, - 0.03056960739195347, - 0.00820634514093399, - 0.004018905106931925, - 0.013845776207745075, - 0.00805725622922182, - 0.0029704244807362556, - -0.030076967552304268, - -0.04070761799812317, - -0.0014487504959106445, - -0.0173072200268507, - 0.0016586085548624396, - -0.0012923696776852012, - 0.03308466449379921, - 0.0059667774476110935, - 0.011564075015485287, - -0.002401619916781783, - -0.009548140689730644, - -0.01265955064445734, - 0.01665901020169258, - 0.004939363803714514, - -0.008945304900407791, - 0.0019624573178589344, - 0.016386760398745537, - 0.01581633649766445, - 0.01735907793045044, - -0.027717480435967445, - 0.016788652166724205, - 0.048097219318151474, - 0.012951245531439781, - -0.020353808999061584, - 0.01293179951608181, - 0.018175821751356125, - -0.009457390755414963, - 0.00571397552266717, - -0.017683181911706924, - -0.02338743396103382, - -0.027924908325076103, - 0.007577580865472555, - 0.039488982409238815, - 0.0033382840920239687, - 0.010513974353671074, - -0.0207686647772789, - -0.005091693252325058, - -0.004845373332500458, - 0.005924643948674202, - -0.014999590814113617, - 0.026174739003181458, - 0.008290612138807774, - -0.010345439426600933, - 0.006838620640337467, - 0.01219283975660801, - -0.008945304900407791, - -0.00353598827496171, - -0.001534638344310224, - -0.00670249667018652, - 0.00573666300624609, - -0.006064009387046099, - -0.01879810355603695, - 0.003121133428066969, - -0.018811069428920746, - -0.027069270610809326, - -0.019251851364970207, - -0.007169208023697138, - -0.02066495083272457, - 0.012419712729752064, - -0.01098068617284298, - -0.01957595720887184, - -0.03194381296634674, - -0.006349221803247929, - -0.012030786834657192, - -0.006715460680425167, - -0.013327207416296005, - -0.023555969819426537, - -0.007123833522200584, - -0.0070525300689041615, - 0.0013725857716053724, - 0.020366773009300232, - -0.005976500920951366, - -0.0025523288641124964, - 0.030336251482367516, - -0.021339088678359985, - -0.005036595743149519, - 0.004106413573026657, - -0.0007896014139987528, - -0.022376226261258125, - 0.01874624751508236, - -0.03598864749073982, - -0.016840508207678795, - 0.0033933818340301514, - 0.02229844033718109, - 0.010591759346425533, - -0.020263060927391052, - 0.006187169346958399, - -0.0163219403475523, - 0.0018636052263900638, - 0.007506277412176132, - -0.0025863598566502333, - 0.02616177499294281, - -0.00433976948261261, - -0.0005205940688028932, - 0.011855769902467728, - -0.01070843730121851, - 5.8338944654678926e-05, - -0.008368397131562233, - 0.01310033444315195, - 0.011790948919951916, - -0.01280863955616951, - 0.01302903052419424, - -0.020444558933377266, - 0.011583521962165833, - 0.02013341709971428, - -0.0022590134758502245, - -0.0017906815046444535, - -0.007532205898314714, - 0.0018700872315093875, - 0.005749627016484737, - 0.022829974070191383, - 0.03536636382341385, - 0.01011208351701498, - 0.0026900735683739185, - 0.001427683630026877, - -0.01904442347586155, - 0.028987973928451538, - 0.02062605880200863, - 0.008971232920885086, - -0.006922888103872538, - 0.012095607817173004, - -0.006336257793009281, - -0.00592140294611454, - -0.008835108950734138, - 0.012640104629099369, - 0.004670356400310993, - -0.011389058083295822, - -0.00670249667018652, - -0.04366345703601837, - 0.013612420298159122, - -0.004326805006712675, - 0.027950836345553398, - -0.03031032346189022, - 0.0019964883103966713, - -0.02833976224064827, - -0.013936525210738182, - 0.010987168177962303, - -0.009386087767779827, - -0.016684938222169876, - -0.026485880836844444, - -0.018461035564541817, - 0.003552193520590663, - -0.008815662935376167, - 0.025241317227482796, - -0.024320857599377632, - -0.008109113201498985, - -0.012426194734871387, - 0.0018538819858804345, - -0.024243071675300598, - -0.006935852114111185, - -0.0009188383701257408, - -0.003756379708647728, - 0.03326616436243057, - 0.022285476326942444, - 0.006657121703028679, - 0.01597190648317337, - 0.031191889196634293, - 0.017177578061819077, - 0.013074405491352081, - 0.0028343002777546644, - 0.008990679867565632, - -0.004381902981549501, - -0.01490884181112051, - 0.0029234292451292276, - -0.01667197421193123, - 0.029558397829532623, - 0.022907758131623268, - 0.023996751755475998, - -0.013392028398811817, - 0.003477649297565222, - -0.009632407687604427, - -0.016153406351804733, - -0.005114380735903978, - -0.011667788960039616, - -0.009444426745176315, - -0.012024304829537868, - 0.007117351051419973, - -0.012666032649576664, - -0.014623628929257393, - -0.007609991356730461, - 0.007136797532439232, - 0.00573666300624609, - -0.01463659293949604, - 0.0033836588263511658, - 0.0011116809910163283, - -0.03388844430446625, - 0.016853472217917442, - -0.008822144940495491, - -0.01033895742148161, - -0.005477378610521555, - 0.003025522455573082, - -0.0019089799607172608, - -0.002855367260053754, - 0.01278271060436964, - 0.01869439147412777, - -0.0040253871120512486, - -0.011739091947674751, - -0.02201322838664055, - -0.017696145921945572, - 0.024813497439026833, - 0.0033642123453319073, - -0.014558807946741581, - 0.0030806204304099083, - -0.015595944598317146, - -0.03209938481450081, - -0.014792163856327534, - -0.022233620285987854, - -0.0018360562389716506, - 0.028028622269630432, - -0.01013801246881485, - -0.012063196860253811, - 0.028028622269630432, - -0.004044833593070507, - -0.010053744539618492, - -0.013171637430787086, - -0.018966639414429665, - 0.049964066594839096, - -0.008523968048393726, - 0.0257080290466547, - 0.014416201040148735, - -0.02517649531364441, - -0.004064279608428478, - -0.04534880444407463, - -0.015842264518141747, - 0.0018668462289497256, - -0.0029525987338274717, - 0.025448743253946304, - -0.004142065066844225, - -0.02428196556866169, - 0.01159648597240448, - 0.01611451245844364, - -0.006845102645456791, - -0.005616744048893452, - 0.040526121854782104, - 0.013223494403064251, - 0.00889992993324995, - 0.01695718616247177, - -0.0002916947123594582, - 0.002291424199938774, - 0.020989056676626205, - -0.01171964593231678, - 0.0014706276124343276, - 0.004508303944021463, - -0.024761641398072243, - -0.0031746109016239643, - 0.005509789101779461, - -0.020444558933377266, - 0.03500336781144142, - 0.011337201111018658, - -0.005441727116703987, - 0.01770910993218422, - -0.017890609800815582, - 0.002377311931923032, - 0.015427409671247005, - -0.014260631054639816, - 0.013268868438899517, - 0.01431248802691698, - 0.011337201111018658, - -0.010423224419355392, - 0.013755026273429394, - -0.009191624820232391, - 0.007272921968251467, - 0.0005165427573956549, - 0.01785171777009964, - 0.018811069428920746, - -0.005098175723105669, - 0.007266439497470856, - 0.012756782583892345, - 0.029350971803069115, - -0.0007896014139987528, - -0.0034549618139863014, - 0.010092637501657009, - -0.0024259276688098907, - -0.01869439147412777, - 0.024256037548184395, - -0.021352054551243782, - -0.02240215428173542, - -0.021598374471068382, - -0.00991113856434822, - -0.014481022022664547, - -0.007376635447144508, - -0.02363375388085842, - -0.0016999320359900594, - -0.020587164908647537, - -0.01365131326019764, - -0.002840782515704632, - -0.012478051707148552, - 0.02215583436191082, - 0.01387170422822237, - -0.004518026951700449, - -0.0008118836558423936, - -0.004362456500530243, - -0.03383658826351166, - 0.009036053903400898, - -0.022039156407117844, - -0.00026272781542502344, - 0.006543684750795364, - -0.0040577976033091545, - 0.006002428941428661, - -0.020703842863440514, - 0.012426194734871387, - -2.3522950868937187e-05, - -0.005419039633125067, - -0.005435245111584663, - -0.013430921360850334, - -0.00296070147305727, - -0.00499446177855134, - -0.01943335123360157, - 0.005937607958912849, - -0.001541930716484785, - 0.002353004179894924, - -0.015142196789383888, - -0.004414313472807407, - 0.015051447786390781, - 0.0066344342194497585, - -0.013482778333127499, - 0.006994191091507673, - -0.005373665131628513, - -0.0054644146002829075, - 0.02704334259033203, - 0.020457522943615913, - -0.034744083881378174, - -0.026680344715714455, - -0.03158081695437431, - 0.013910597190260887, - 0.02280404604971409, - -0.02013341709971428, - 0.0017615120159462094, - 0.005616744048893452, - -0.008809180930256844, - -0.00937312375754118, - 0.03225495293736458, - 0.0073118144646286964, - 0.003056312445551157, - 0.007635919842869043, - 0.0031551646534353495, - 0.004459687974303961, - 0.014844019897282124, - -0.002077514538541436, - -0.004936122801154852, - -0.0004962861421518028, - -0.0014382170047610998, - -0.01869439147412777, - 0.008705466985702515, - -0.01899256743490696, - 0.023517075926065445, - -0.004919917788356543, - -0.034640368074178696, - -0.0147143779322505, - -0.007629437372088432, - -0.01958892121911049, - 0.022687368094921112, - -0.014805127866566181, - -0.010021334514021873, - 0.0002815664338413626, - 0.010325993411242962, - -0.00571397552266717, - 0.020885342732071877, - 0.010060226544737816, - 0.028650904074311256, - -0.04070761799812317, - -0.02161133848130703, - 0.032514236867427826, - -0.026498844847083092, - 0.01147332601249218, - -0.01112329214811325, - -0.029739897698163986, - 0.00048129630158655345, - 0.021637266501784325, - -0.012640104629099369, - 0.008886965923011303, - 0.0016116133192554116, - -0.016477510333061218, - -0.011985411867499352, - 0.006196892354637384, - 0.008692502975463867, - -0.02353004179894924, - 0.007648883853107691, - 0.04016312211751938, - -0.012899388559162617, - 0.017346112057566643, - -0.0026884530670940876, - -0.015077375806868076, - -0.037699922919273376, - -0.016360832378268242, - 0.019109245389699936, - -0.006871031131595373, - 0.01379391923546791, - 0.0008386223344132304, - -0.01820174977183342, - -0.010423224419355392, - -0.025189459323883057, - 0.009139767847955227, - -0.0007507088012062013, - -0.012892906554043293, - 0.012724371626973152, - -0.0029833887238055468, - -0.021040912717580795, - -0.0160756204277277, - 0.01181687694042921, - -0.02616177499294281, - -0.032177168875932693, - 0.010572313331067562, - -0.012393784709274769, - 0.003166508162394166, - -0.011914108879864216, - -0.017346112057566643, - -0.02452828548848629, - 0.018435105681419373, - 0.007733151316642761, - -0.0034517208114266396, - -0.005947331432253122, - 0.009826870635151863, - 0.02354300580918789, - 0.0006348411552608013, - 0.006650639697909355, - 0.0008775149472057819, - 0.022570690140128136, - -0.020846448838710785, - -0.02630438096821308, - -0.005769073497503996, - 0.0020224167965352535, - -0.006715460680425167, - 0.008666574023663998, - -0.0032475346233695745, - -0.007908168248832226, - 0.0027160020545125008, - -0.005843617487698793, - -0.031477101147174835, - 0.014481022022664547, - 0.2250586897134781, - -0.020068597048521042, - -0.0014706276124343276, - 0.009937066584825516, - -0.020003775134682655, - 0.008737877011299133, - 0.016244154423475266, - -0.001478730235248804, - 0.0045374734327197075, - 0.01849992759525776, - -0.007823900319635868, - -0.014921805821359158, - 0.011648342944681644, - 0.011434433050453663, - 0.02264847420156002, - -0.02862497605383396, - -0.01899256743490696, - -0.003970289137214422, - 0.0026933145709335804, - 0.014792163856327534, - 0.008245237171649933, - -0.018668461591005325, - 0.0020515862852334976, - -0.016801616176962852, - 0.011661306954920292, - -0.002231464721262455, - -0.00832950510084629, - 0.018811069428920746, - 0.010073191486299038, - 0.005992705933749676, - -0.0026252525858581066, - 0.012743818573653698, - -0.006174204871058464, - 0.00626819534227252, - 0.004074003081768751, - 0.008841590955853462, - 0.013242940418422222, - 0.01488291285932064, - 0.040137194097042084, - 0.02310222201049328, - 0.003179472405463457, - -0.0026592835783958435, - 0.0026446988340467215, - -0.02245401218533516, - -0.0034808903001248837, - 0.037207283079624176, - 0.009087910875678062, - 0.006663603708148003, - -0.005305602680891752, - 0.012004857882857323, - -0.03378473222255707, - -0.004242537543177605, - 0.0056848060339689255, - 0.029091687873005867, - -0.010688991285860538, - 0.025189459323883057, - 0.010734365321695805, - 0.00853045005351305, - -0.020185275003314018, - -0.01785171777009964, - 0.011615931987762451, - 0.008271166123449802, - -0.0001288318308070302, - 0.022713296115398407, - -0.023063329979777336, - 0.011602967977523804, - -0.025746921077370644, - 0.020107489079236984, - 0.0019964883103966713, - -0.026913698762655258, - -0.0054871016182005405, - -0.00796002522110939, - -0.021131662651896477, - 0.01988709717988968, - -0.005347736645489931, - -0.031477101147174835, - 0.016205262392759323, - 0.00803781021386385, - 0.02823604829609394, - 0.01958892121911049, - -0.013469814322888851, - 0.001722619403153658, - -0.005535717587918043, - -0.017592431977391243, - -0.015764478594064713, - -0.03640349954366684, - 0.018473999574780464, - 0.016283048316836357, - -0.010838079266250134, - -0.012257660739123821, - -0.00012913568934891373, - -0.01305495947599411, - 0.013022548519074917, - -0.008135042153298855, - 0.0142217380926013, - 0.001635921187698841, - -0.003228088142350316, - 0.018979603424668312, - -0.008997161872684956, - 0.009749085642397404, - -0.031814172863960266, - 0.07809639722108841, - 0.018979603424668312, - -0.019122209399938583, - -0.004615258891135454, - 0.0054320041090250015, - 0.008245237171649933, - 0.015803372487425804, - 0.008472111076116562, - -0.01848696358501911, - -0.04065576195716858, - -0.00021836590894963592, - 0.011531664989888668, - -0.013482778333127499, - -0.005085211247205734, - 0.003519783029332757, - -0.0009180281194858253, - 0.010656580328941345, - -0.007849829271435738, - -0.03427737206220627, - 0.022091014310717583, - -0.012277106754481792, - 0.00032633348018862307, - 0.004479134455323219, - 0.005901956465095282, - 0.000807022035587579, - -0.021883586421608925, - -0.035029295831918716, - -0.004521268419921398, - 0.008426736108958721, - 0.013962454162538052, - -0.009036053903400898, - 0.013534635305404663, - -0.018953675404191017, - -0.009230517782270908, - 0.013962454162538052, - 0.016646046191453934, - -0.008446183055639267, - -0.008750841952860355, - -0.005114380735903978, - 0.013677241280674934, - -0.007746115326881409, - -0.0061644818633794785, - -0.01184280589222908, - -0.016036728397011757, - -0.020794592797756195, - 0.011512218043208122, - -0.0054644146002829075, - 0.01107791718095541, - -0.04604887217283249, - -0.0163219403475523, - -0.02477460540831089, - 0.005863063968718052, - -0.004044833593070507, - 0.04838243126869202, - -0.013755026273429394, - -0.01934260129928589, - -0.012465087696909904, - -0.009962995536625385, - -0.016010798513889313, - -0.004187439568340778, - -0.009554622694849968, - 0.0048291683197021484, - -0.04729343578219414, - -0.010099119506776333, - 0.011823358945548534, - -0.1661493182182312, - 0.009800942614674568, - 0.0028456440195441246, - -0.00028501005726866424, - 0.030154751613736153, - 0.009956513531506062, - 0.00978797860443592, - -0.0018360562389716506, - -0.019757455214858055, - 0.014092096127569675, - 0.012646586634218693, - 0.0016351109370589256, - -0.036325715482234955, - -0.03132152929902077, - 0.007823900319635868, - -0.02368561178445816, - -0.015038483776152134, - 0.006316811311990023, - 0.029247257858514786, - 0.013165155425667763, - 0.011045507155358791, - -0.0008418633951805532, - -0.003957325126975775, - -0.0007170828757807612, - 0.027121126651763916, - 0.008271166123449802, - -0.007182172499597073, - 0.026732200756669044, - 7.25185454939492e-05, - -0.0015848746988922358, - -0.0033139761071652174, - 0.0011060091201215982, - 0.022583654150366783, - 0.0035100597888231277, - 0.006488587241619825, - -0.004621740896254778, - 0.006125589367002249, - -0.017683181911706924, - 0.013314243406057358, - 0.02220769226551056, - 0.0163219403475523, - 0.033110592514276505, - -0.01964077726006508, - 0.0187851395457983, - -0.01616637036204338, - 0.02447642758488655, - 0.014014311134815216, - -0.0004683320876210928, - -0.009522211737930775, - -0.008348951116204262, - 0.01795542985200882, - -0.031917884945869446, - 0.014818091876804829, - 0.015323695726692677, - -0.0036364609841257334, - 0.023906003683805466, - 0.024839425459504128, - -0.01411802414804697, - 0.004968533292412758, - 0.034847795963287354, - -0.006981227081269026, - 0.0001740040024742484, - 0.00853045005351305, - -0.007059012074023485, - -0.004553678911179304, - -0.02730262652039528, - 0.0015573257114738226, - -0.0024437536485493183, - -0.015764478594064713, - 0.0026301140896975994, - -0.0033836588263511658, - -0.007953543215990067, - 0.02037973701953888, - -0.00378230819478631, - 0.001938149333000183, - -0.008173934184014797, - -0.008634163998067379, - 0.013845776207745075, - -0.0007264008745551109, - -0.010747330263257027, - -0.041615113615989685, - 0.05870194360613823, - -0.03204752504825592, - -0.02833976224064827, - 0.00998892355710268, - 0.010598241351544857, - -0.0200297050178051, - -0.0046314639039337635, - 0.005801483988761902, - -0.023659683763980865, - 0.0072794039733707905, - -0.031866028904914856, - -0.010494528338313103, - -0.007078458555042744, - -0.010948275215923786, - -6.912557000759989e-05, - -0.015582980588078499, - 0.0006271436577662826, - -0.001970559824258089, - -0.010274136438965797, - -0.0032604988664388657, - -0.014053203165531158, - -0.02709519863128662, - 0.016840508207678795, - 0.01219283975660801, - -0.0008523967699147761, - 0.009243481792509556, - 0.029299113899469376, - 0.03614421561360359, - -0.00670249667018652, - -0.023724503815174103, - -0.00978797860443592, - -0.002156920498237014, - 0.023361505940556526, - 0.002437271410599351, - 0.02784712240099907, - -0.0007300470606423914, - -0.01760539785027504, - 0.00910087488591671, - -0.0007928424747660756, - 0.07239215075969696, - 0.018111001700162888, - 0.011298309080302715, - 0.025500601157546043, - -0.005895474459975958, - -0.014416201040148735, - -0.05896122753620148, - 0.007493313401937485, - 0.018422141671180725, - 0.00885455496609211, - 0.011732609942555428, - 0.028261978179216385, - 0.011272380128502846, - 0.008517486043274403, - 0.025837671011686325, - 0.0031924366485327482, - -0.02329668588936329, - -0.02862497605383396, - -0.01799432374536991, - -0.007998917251825333, - 0.0064464532770216465, - 0.005312085151672363, - -0.014377309009432793, - -0.0013839293969795108, - -0.02730262652039528, - 0.003304253099486232, - 0.011013096198439598, - -0.021183518692851067, - 0.017385005950927734, - -0.03604050353169441, - 0.001132747856900096, - -0.0040902080945670605, - -0.03233274072408676, - 0.017281292006373405, - -0.00589871546253562, - -0.012620658613741398, - -0.008822144940495491, - -0.022920722141861916, - 0.008724913001060486, - -0.025461707264184952, - -0.002839162014424801, - -0.011635378003120422, - -0.04659337177872658, - -0.026913698762655258, - 0.022324370220303535, - -0.004437000956386328, - 0.013456849381327629, - -0.0008912894409149885, - -0.021676158532500267, - -0.02096312679350376, - 0.008789733983576298, - -0.004287912510335445, - -0.014727342873811722, - 0.028806474059820175, - 0.026939628645777702, - -0.01362538430839777, - -0.032566096633672714, - 0.01276326458901167, - -0.005389870144426823, - -0.011466844007372856, - 0.006559890229254961, - 0.015245910733938217, - -0.005584333557635546, - 0.017838751897215843, - -0.019355565309524536, - -0.010125047527253628, - -0.0016837267903611064, - 0.009457390755414963, - -0.0058727869763970375, - 0.02393193170428276, - 0.011978929862380028, - -0.027769338339567184, - -0.037259139120578766, - -0.030491821467876434, - 0.017242399975657463, - 0.0009998646564781666, - 0.0007231598137877882, - -7.337945135077462e-05, - 0.0009245102410204709, - -0.002357865683734417, - -0.02828790619969368, - -0.0055908155627548695, - -0.0371035672724247, - -0.024165287613868713, - 0.04050019010901451, - -0.038555558770895004, - 0.013936525210738182, - -0.01744982600212097, - 0.015116268768906593, - -0.0002110735367750749, - 0.010714919306337833, - 0.027717480435967445, - -0.005253746174275875, - 0.004573124926537275, - -0.005444968119263649, - 0.01365131326019764, - -0.005091693252325058, - 0.0034679260570555925, - 0.015051447786390781, - -0.011330719105899334, - -0.009340712800621986, - 0.011402023024857044, - 0.0026916940696537495, - -0.017320184037089348, - -0.014519914984703064, - 0.014675485901534557, - 0.012432677671313286, - 0.009068464860320091, - -0.06487290561199188, - 0.027017412707209587, - -0.015842264518141747, - -0.004375420976430178, - 0.012361373752355576, - -0.002408101921901107, - 0.008491557091474533, - 0.0017712351400405169, - 0.01820174977183342, - 0.018655497580766678, - -0.0006388924666680396, - 0.017773931846022606, - 0.01785171777009964, - -0.019316673278808594, - -0.02556542120873928, - -0.01110384613275528, - 0.004479134455323219, - 0.023698575794696808, - 0.0067673176527023315, - 0.0036364609841257334, - 0.005477378610521555, - 0.010351921431720257, - 0.01050749234855175, - 0.02867683209478855, - -0.010546384379267693, - 0.01672383025288582, - 0.003584604011848569, - -0.00735718896612525, - -0.011907626874744892, - 0.009029571898281574, - 0.013884669169783592, - -0.013521671295166016, - -0.02180580049753189, - 0.0006854825769551098, - 0.02340039797127247, - -0.0014455093769356608, - -0.00651451526209712, - 0.01805914379656315, - -0.0033836588263511658, - 0.045815516263246536, - -0.004271707031875849, - -0.01967967115342617, - 0.0182924997061491, - -0.019368529319763184, - 0.01406616810709238, - 0.010501010343432426, - 0.016088584437966347, - -0.0013750165235251188, - 0.008433218114078045, - -0.014377309009432793, - 0.00483240932226181, - 0.014351380057632923, - 0.029999181628227234, - -0.024891283363103867, - 0.01672383025288582, - -0.00978797860443592, - -1.5622885257471353e-05, - -0.016853472217917442, - -0.015388516709208488, - -0.02878054603934288, - 0.019174067303538322, - 0.0158293005079031, - -0.020444558933377266, - -0.000748277991078794, - -0.008413772098720074, - -0.0006583387730643153, - 0.013417957350611687, - -0.014273595064878464, - 0.020353808999061584, - -0.01602376252412796, - -0.020807556807994843, - -0.0013555701589211822, - 0.005827412474900484, - 0.025785813108086586, - 0.023555969819426537, - 0.004650910384953022, - 0.0185388196259737, - -0.014623628929257393, - -0.031165961176156998, - 0.01855178363621235, - 0.015647800639271736, - 0.005626467056572437, - -0.04511544853448868, - -0.013003102503716946, - 0.018849961459636688, - 0.012134500779211521, - -0.0010031057754531503, - -0.013949490152299404, - 0.01379391923546791, - 0.004420795477926731, - 0.007810936309397221, - 0.01411802414804697, - 0.013340172357857227, - -0.0034387565683573484, - 0.014429165981709957, - 0.006569613236933947, - 0.001319108298048377, - 0.00018190406262874603, - 0.02645995281636715, - 0.030725177377462387, - 0.007266439497470856, - 0.021248340606689453, - -0.00731829646974802, - -0.01785171777009964, - -0.017034972086548805, - 0.016360832378268242, - -0.020690878853201866, - -0.046463727951049805, - -0.016451582312583923, - 0.011732609942555428, - 0.015712622553110123, - 0.020651986822485924, - -0.02601916901767254, - 0.019913027063012123, - -0.018020251765847206, - 0.04236703738570213, - -0.022376226261258125, - -0.0011716404696926475, - -0.011175149120390415, - -0.001581633579917252, - 0.015595944598317146, - 0.012309517711400986, - 0.0053380136378109455, - 0.008426736108958721, - 0.024515321478247643, - -0.03427737206220627, - -0.0021844692528247833, - -0.04231518134474754, - -0.008718430995941162, - -0.004514785949140787, - -0.015181089751422405, - 0.0013272110372781754, - -0.02190951444208622, - -0.00503335427492857, - -0.016308976337313652, - 0.004715731367468834, - 0.018668461591005325, - 0.016283048316836357, - -0.02013341709971428, - 0.06264305859804153, - 0.0147143779322505, - -0.006689532194286585, - -0.006423765793442726, - -0.021896550431847572, - -0.012426194734871387, - -0.0070525300689041615, - 0.006375150289386511, - -0.016153406351804733, - -0.014079132117331028, - -0.008115595206618309, - -0.02922132983803749, - -0.005500066094100475, - -0.03406994417309761, - -0.010669544339179993, - -0.00033443610300309956, - 0.017073864117264748, - 0.014429165981709957, - -0.0013255904195830226, - 0.012828085571527481, - 0.022324370220303535, - -0.0038892629090696573, - 0.021533552557229996, - 0.0022411877289414406, - 0.005513030104339123, - -0.001310195424593985, - 0.03386251628398895, - -0.022479940205812454, - -0.01577744260430336, - -0.013022548519074917, - 0.0060607679188251495, - -0.0004983118269592524, - -0.07628141343593597, - -0.010196351446211338, - -0.0014220117591321468, - -0.052634693682193756, - 6.907492934260517e-05, - -0.014558807946741581, - 0.018914781510829926, - -0.006773799657821655, - -0.0004525319382082671, - 0.008627681992948055, - -0.026887770742177963, - 0.012322481721639633, - 0.02670627273619175, - 0.0005201889434829354, - -0.00954165868461132, - -0.014584735967218876, - -0.01431248802691698 - ], - "sparse": "SparseEmbedding(values=array([1.68774348]), indices=array([215973776]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 2, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 1 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000003.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000003.json deleted file mode 100644 index b6ae64430fe74f8386c53778a3b815f0c16df2b1..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000003.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000003", - "content": "Hochschule f\u00fcr Technik Stuttgart Alfakhori, Muhammad Coors, Volker Schneider, Sven ", - "embedding": { - "dense": [ - 0.005754248239099979, - -0.018619438633322716, - -0.010512697510421276, - -0.02458086609840393, - -0.011662210337817669, - 0.03274775668978691, - -0.01249092910438776, - 0.0024544107727706432, - -0.0077124303206801414, - -0.013560243882238865, - 0.017603589221835136, - 0.002979043172672391, - 0.01835210993885994, - -0.010800075717270374, - 0.015879319980740547, - -0.02232193946838379, - 0.015478326939046383, - -0.005396696273237467, - 0.01361370924860239, - 0.0029857263434678316, - -0.021787282079458237, - 0.029031887650489807, - 0.004350773058831692, - 0.015571891330182552, - 0.002100200392305851, - -0.00046155956806614995, - 0.017109030857682228, - -0.023712048307061195, - -0.003010788466781378, - -0.003380036214366555, - 0.011308000423014164, - -0.010332250967621803, - -0.025008590891957283, - -0.0024143115151673555, - -0.021038761362433434, - 0.0024377028457820415, - -0.00624546455219388, - 0.00020091416081413627, - 0.03822799026966095, - 0.020143210887908936, - -0.0008671471732668579, - 0.00288213649764657, - 0.014997134916484356, - -0.02344471961259842, - 0.006258830893784761, - 0.009730761870741844, - 0.006689898669719696, - -0.004056711681187153, - -0.004778498783707619, - 0.03373686969280243, - 0.03678441792726517, - 0.03780026733875275, - -0.0003698742075357586, - -0.020450638607144356, - -0.018833300098776817, - 0.010860225185751915, - -0.007485201116651297, - 0.039297305047512054, - -0.007872827351093292, - -0.0058110556565225124, - -0.009069123305380344, - -0.00821367185562849, - -0.04576665908098221, - 0.0049957032315433025, - -0.020049646496772766, - -0.01690853387117386, - -0.020758066326379776, - 0.004614760167896748, - -0.023524917662143707, - 0.004300648812204599, - 0.030609125271439552, - 0.009817643091082573, - -0.010225319303572178, - -0.01855260506272316, - 0.032480426132678986, - 0.008487683720886707, - -0.020049646496772766, - 0.019742218777537346, - 0.000704243837390095, - -0.013119151815772057, - 0.014676340855658054, - -0.005670708138495684, - -0.015210998244583607, - 0.001200472586788237, - 0.02619820460677147, - 0.005095951724797487, - 0.0054501621052622795, - 0.009897842071950436, - -0.008741645142436028, - -8.562869879824575e-06, - 0.020143210887908936, - 0.035554707050323486, - -0.006766755599528551, - 0.011394881643354893, - -0.0063323467038571835, - -0.007725796662271023, - -0.002813633531332016, - 0.017256062477827072, - 0.0015830866759642959, - -0.03151804208755493, - -0.0027434597723186016, - -0.010639678686857224, - 0.003199589205905795, - -0.013680541887879372, - -0.03927057236433029, - -0.008948825299739838, - 0.00867481343448162, - 0.007257971912622452, - 0.014569409191608429, - -0.013292915187776089, - -0.013025586493313313, - 0.037559669464826584, - -0.01254439540207386, - -0.037559669464826584, - 0.0024493983946740627, - -0.03750620409846306, - 0.006823563016951084, - -0.005767614580690861, - 0.016333777457475662, - -0.038602251559495926, - 0.019956080242991447, - 0.021332822740077972, - 0.011996371671557426, - -0.013172617182135582, - 0.01701546646654606, - 0.008948825299739838, - 0.003057570895180106, - -0.004725033417344093, - -0.011969638988375664, - -0.01075997669249773, - 0.008046591654419899, - -0.011027305386960506, - 0.01886003278195858, - -0.0019698776304721832, - -0.0014719781465828419, - -0.005219591315835714, - -0.02384571172297001, - 0.009690661914646626, - -0.05015084892511368, - -0.03598242998123169, - 0.00369581812992692, - 0.028737826272845268, - -0.010793392546474934, - -0.007037425879389048, - -0.017817452549934387, - 0.02010311186313629, - 0.0016975366743281484, - 0.021453121677041054, - 0.0014836738118901849, - 0.0036256443709135056, - -0.012303799390792847, - -0.02375214733183384, - 0.006405862048268318, - -0.0025212429463863373, - 0.005630608648061752, - 0.0025646837893873453, - -0.005196199752390385, - 0.019702117890119553, - -0.029245750978589058, - -0.015331296250224113, - 0.004263891372829676, - -0.0013349722139537334, - 0.005527019035071135, - -0.006085067521780729, - 0.0263185016810894, - 0.011809241026639938, - 0.01610654965043068, - 0.0012606214731931686, - -0.010526063852012157, - 0.01701546646654606, - -6.427373591577634e-05, - 0.024313537403941154, - -0.02122589200735092, - 0.010632995516061783, - -0.013493411242961884, - -0.011227801442146301, - 0.0023391253780573606, - 0.002736776601523161, - -0.026385333389043808, - -0.01946152374148369, - -0.00917605496942997, - -0.0025563298258930445, - 0.032052699476480484, - 0.029726941138505936, - -0.01660110615193844, - -0.004892113618552685, - 0.01014512125402689, - 0.01487683691084385, - 0.003378365421667695, - -0.007191139739006758, - 0.015839220955967903, - 0.01494366955012083, - -0.013132518157362938, - -0.006115141790360212, - -0.6719571948051453, - -0.010171853937208652, - -0.014957035891711712, - -0.005917987320572138, - 0.005085926968604326, - 0.022094709798693657, - 0.011287950910627842, - -0.004838647786527872, - 0.005309814587235451, - 0.028684360906481743, - -0.002222169190645218, - 0.009216153994202614, - 0.0003216297482140362, - -0.006168607622385025, - -0.012731525115668774, - -0.01752339117228985, - 0.00736490311101079, - -0.013065685518085957, - 0.026478899642825127, - 0.010873591527342796, - 0.0015889344504103065, - 0.020343707874417305, - 0.0027334350161254406, - -0.01824517734348774, - 0.009496849030256271, - -0.0038027495611459017, - -0.0068202209658920765, - -0.011107503436505795, - 0.000247696676524356, - -0.0024126407224684954, - -0.03488638252019882, - 0.026746228337287903, - -0.010412449017167091, - 0.019648652523756027, - 0.04924193024635315, - 0.03606262803077698, - -0.021185792982578278, - 0.015304562635719776, - 0.015611991286277771, - 0.025650180876255035, - -0.009663929231464863, - -0.025663547217845917, - 0.016387244686484337, - -0.005547068547457457, - 0.002676627831533551, - 0.044189419597387314, - 0.019140727818012238, - -0.03718540817499161, - -0.025222454220056534, - -0.013640441931784153, - -0.003682451555505395, - -0.017616955563426018, - -0.012203550897538662, - -0.008186939172446728, - 0.010886957868933678, - -0.01569218933582306, - 0.017309527844190598, - -0.009556997567415237, - -0.026171471923589706, - 0.020210042595863342, - -0.005396696273237467, - 0.031223982572555542, - 0.0012046495685353875, - -0.00415695970878005, - -0.0024477276019752026, - 0.0014235248090699315, - -0.04416268691420555, - -0.011561962775886059, - 0.019555088132619858, - -0.012557761743664742, - 0.0032731047831475735, - 0.020423905923962593, - -0.011281267739832401, - -0.0005530360504053533, - 0.0028871491085737944, - 0.0379071980714798, - 0.01411495078355074, - -0.009536948055028915, - 0.003923047333955765, - 0.003508687950670719, - -0.01996944658458233, - 0.0022355355322360992, - 0.011682259850203991, - -0.008587931282818317, - 0.007598815951496363, - -0.02609127201139927, - -0.02691999077796936, - -0.004504486918449402, - 0.006970593705773354, - 0.007291387766599655, - 0.02905862033367157, - -0.003542104037478566, - 0.0037860414013266563, - 0.003882948076352477, - 0.013018903322517872, - 0.041836928576231, - -0.018418941646814346, - 0.02528928592801094, - 0.00800649169832468, - -0.05333205685019493, - -0.0004832800186704844, - -0.029833873733878136, - 0.014622875489294529, - -0.013493411242961884, - 1.219164641952375e-05, - 0.0006357408710755408, - -0.01589268632233143, - -0.00399990426376462, - 0.037051744759082794, - -0.021666983142495155, - -0.0035020047798752785, - -0.007919610477983952, - -0.006108458619564772, - -0.007197822909802198, - -0.007792628835886717, - -0.027668511494994164, - 0.023377887904644012, - 0.015144165605306625, - -0.004457704722881317, - -0.0077792624942958355, - 0.018592704087495804, - -0.006850295700132847, - 0.01610654965043068, - -0.005510311108082533, - 0.00011392793385311961, - 0.013038952834904194, - -0.009229520335793495, - -0.01906052976846695, - -0.026358600705862045, - 0.01023868564516306, - 0.01947489008307457, - -0.004698300268501043, - 0.031250715255737305, - -0.008033224381506443, - 0.020945196971297264, - -0.006195340771228075, - 0.0003278952499385923, - -0.0004179098177701235, - -0.004688275512307882, - -0.009550314396619797, - -0.011301317252218723, - -0.012477562762796879, - 0.008741645142436028, - -0.019207561388611794, - -0.016587739810347557, - -0.015531792305409908, - -0.001407652162015438, - 0.0068101962096989155, - 0.013219399377703667, - -0.0035788617096841335, - -0.013172617182135582, - 0.003729234216734767, - -0.0063824704848229885, - 0.007251288741827011, - 0.0179511159658432, - -0.00754535011947155, - 0.002223839983344078, - -0.008835210464894772, - -0.017683787271380424, - -0.00963051337748766, - 0.021867480129003525, - -0.00042501071584410965, - -0.028497230261564255, - -0.0033165456261485815, - 0.01599961705505848, - 0.021132327616214752, - 0.012216917239129543, - 0.010940423235297203, - -0.03600916266441345, - -0.01569218933582306, - 0.007090891245752573, - -0.011261217296123505, - 0.0073314872570335865, - 0.016654573380947113, - -0.00209184642881155, - -0.018071414902806282, - -0.022094709798693657, - 0.009316402487456799, - -0.018124880269169807, - -0.009450066834688187, - 0.02078479900956154, - 0.0031628315337002277, - -0.01690853387117386, - -0.000659132085274905, - 0.005664024967700243, - 0.02895168773829937, - -0.005075902212411165, - 0.016561007127165794, - 0.011742409318685532, - 0.008133472874760628, - -0.01803131401538849, - 0.004611418582499027, - 0.007338170427829027, - 0.016093183308839798, - 0.003431831020861864, - 0.012838456779718399, - -0.011134237051010132, - -0.012678059749305248, - 0.00852109957486391, - 0.028096236288547516, - 0.023725414648652077, - 0.006532842759042978, - 0.029031887650489807, - -0.00963051337748766, - 0.029138818383216858, - -0.02122589200735092, - -0.00010985535482177511, - -0.003055900102481246, - 0.036249760538339615, - 0.009409966878592968, - 0.019835783168673515, - -0.02785564213991165, - -0.03138437867164612, - 0.00820698868483305, - 0.017483290284872055, - 0.025449683889746666, - -0.004327381961047649, - 0.010225319303572178, - -0.007471834775060415, - -0.0002771445724647492, - 0.007986442185938358, - -0.02030360884964466, - 0.032186366617679596, - -0.014823371544480324, - 0.005921328905969858, - 0.01682833582162857, - -0.004698300268501043, - 0.010051555931568146, - 0.02142638899385929, - -0.0030425337608903646, - -0.015037233941257, - -0.007625548634678125, - 0.0014686365611851215, - 0.012464196421205997, - 0.005112659651786089, - 0.01045254897326231, - 0.014542676508426666, - -0.02774870954453945, - 0.02426007203757763, - 0.01978231780230999, - 0.003495321609079838, - 0.036249760538339615, - 0.011027305386960506, - 0.005837788339704275, - 0.012377314269542694, - -0.026251669973134995, - 0.0121768182143569, - 0.014810005202889442, - -0.0010759977158159018, - 0.01569218933582306, - -0.013439945876598358, - 0.004080102778971195, - 0.0032597382087260485, - -0.01293870434165001, - 0.025008590891957283, - -0.0049957032315433025, - 0.022776396945118904, - 0.008293869905173779, - -0.007431735284626484, - 0.01886003278195858, - -0.002584733534604311, - 0.02375214733183384, - 0.03079625591635704, - -0.010572846978902817, - -0.015037233941257, - 0.006432594731450081, - 0.0014034751802682877, - -0.0021870823111385107, - -0.011227801442146301, - 0.007037425879389048, - 0.0013015561271458864, - 0.007966392673552036, - 0.002023343462496996, - 0.000890538445673883, - 0.02264273352921009, - -0.0013149225851520896, - 0.005894595757126808, - 0.01330628152936697, - 0.007592132780700922, - 0.016694672405719757, - -0.00816020555794239, - -0.018098147585988045, - -0.01055947970598936, - 0.04646171256899834, - 0.00248615606687963, - -0.011033988557755947, - 0.0026348575484007597, - -0.0013901087222620845, - -0.03456559032201767, - 0.0033265703823417425, - 0.0032196389511227608, - 0.005069218575954437, - 0.0020617719274014235, - -0.011936222203075886, - -0.00545684527605772, - -0.013486728072166443, - 0.025516515597701073, - -0.02130609005689621, - -0.006626408081501722, - -0.011120869778096676, - 0.0005989831406623125, - -0.011535229161381721, - -0.008146839216351509, - -0.006021576933562756, - 0.046541910618543625, - -0.015358028933405876, - 0.0024644355289638042, - -0.016253579407930374, - 0.008180255070328712, - -0.016133282333612442, - 0.017790719866752625, - -0.01744319126009941, - -0.019742218777537346, - 0.004611418582499027, - 0.005009070038795471, - 0.014489211142063141, - 0.0015028880443423986, - -0.023885810747742653, - 0.02629176899790764, - -0.007785945665091276, - 0.004233817104250193, - -0.00830723624676466, - -0.009189421311020851, - 0.010011456906795502, - 0.08126790076494217, - 0.028417032212018967, - -0.014542676508426666, - 0.030261598527431488, - 0.006963910534977913, - -0.02355165034532547, - -0.01976895146071911, - -0.03993889316916466, - 0.01090700738132, - -0.0180580485612154, - 1.5768211596878245e-05, - -0.008828527294099331, - 0.017657054588198662, - -0.014449111185967922, - 0.014449111185967922, - -0.016547640785574913, - -0.0018763126572594047, - -0.009162687696516514, - 0.019408056512475014, - -0.01238399837166071, - -0.02244223654270172, - -0.02397937700152397, - 0.026331868022680283, - 0.012958754785358906, - 0.010833491571247578, - -0.014235248789191246, - 0.006673190277069807, - 0.036543820053339005, - 5.31524456164334e-05, - -0.024193238466978073, - 0.02233530580997467, - 0.015210998244583607, - 0.027160586789250374, - 0.020758066326379776, - -0.030742790549993515, - 0.0021068835631012917, - -0.019822416827082634, - 0.018632804974913597, - 0.015598624013364315, - -0.003167844144627452, - 0.009683978743851185, - 0.0064493026584386826, - 0.009289668872952461, - -0.009744128212332726, - -0.007110941223800182, - -0.013333014212548733, - -0.0006411709473468363, - 0.022362038493156433, - 0.0015830866759642959, - -0.013480044901371002, - 0.005537043791264296, - 0.004317357204854488, - -0.008434217423200607, - -0.016667939722537994, - -0.004377506207674742, - -0.016587739810347557, - 0.012470879592001438, - -0.014221882447600365, - 0.0054401373490691185, - -0.009697345085442066, - -0.025850676000118256, - -0.024219973012804985, - 0.012911971658468246, - -0.013232766650617123, - -0.006218731869012117, - -0.0040333205834031105, - -0.017616955563426018, - -0.01803131401538849, - -0.018512506037950516, - 0.003565495368093252, - 0.021265991032123566, - 0.011942905373871326, - -0.03477945178747177, - 0.006970593705773354, - 0.0020049645099788904, - -0.0013934504240751266, - 0.01836547628045082, - -0.013399846851825714, - -0.007886193692684174, - 0.02150658704340458, - -0.008628031238913536, - -0.02774870954453945, - -0.013386480510234833, - -0.022281840443611145, - -0.01493030320852995, - -0.013139201328158379, - -0.021252624690532684, - -0.005714149214327335, - 0.007378269452601671, - 0.02508879080414772, - -0.006917127873748541, - -0.023431353271007538, - -0.0044142636470496655, - -0.01055947970598936, - -0.008320602588355541, - -0.005613900721073151, - 0.0301814004778862, - 0.0069238110445439816, - -0.005707466043531895, - -0.014449111185967922, - 0.012918654829263687, - -0.02700018882751465, - 0.018325375393033028, - 0.00031327572651207447, - 0.005978135857731104, - 0.030208133161067963, - -0.012811724096536636, - 0.0045178537257015705, - -0.0036456938832998276, - 0.005844471976161003, - 0.04539239779114723, - -0.007077524904161692, - 0.0028503912035375834, - -0.006238781381398439, - -0.01234389841556549, - 0.012664693407714367, - -0.007886193692684174, - 0.016387244686484337, - 0.012958754785358906, - -0.00846095010638237, - 0.0013274536468088627, - -0.011742409318685532, - 0.026960089802742004, - 0.014662974514067173, - 0.0001052084262482822, - 0.02272293157875538, - -0.0016591082094237208, - -0.014008019119501114, - -0.005854496732354164, - 0.006596333347260952, - -0.01681496948003769, - 0.013807523064315319, - 0.007926293648779392, - -0.022308573126792908, - -0.023431353271007538, - -0.020971929654479027, - -0.018525872379541397, - -0.0010317213600501418, - -0.0063423714600503445, - -0.014195148833096027, - -0.0249952245503664, - 0.001879654242657125, - 0.0032346760854125023, - -0.005266373511403799, - -0.033496275544166565, - -0.023939277976751328, - -0.013172617182135582, - 0.00180446810554713, - -0.011541912332177162, - 0.027668511494994164, - -0.008320602588355541, - 0.016494175419211388, - -0.01239736471325159, - 0.007572082802653313, - -0.019715484231710434, - -0.05151422321796417, - -0.017763985320925713, - -0.018940232694149017, - 0.025757111608982086, - 0.035848766565322876, - 0.029219016432762146, - 0.010078288614749908, - 0.030315063893795013, - 0.020263507962226868, - 0.0015805803705006838, - 0.009216153994202614, - 0.00042584611219353974, - 0.022495701909065247, - -0.034111130982637405, - 0.01956845447421074, - 0.02589077688753605, - -0.00957704707980156, - 0.013179300352931023, - -0.0038194574881345034, - 0.006068359594792128, - 0.0011286280350759625, - -0.010626312345266342, - -0.01599961705505848, - -0.003057570895180106, - -0.027361083775758743, - -0.02030360884964466, - -0.01203647069633007, - 0.01487683691084385, - -0.009109222330152988, - 0.012731525115668774, - -0.0006194505258463323, - 0.020036280155181885, - 0.004765132442116737, - -0.011007255874574184, - -0.0049656289629638195, - 0.02438036911189556, - -0.030609125271439552, - 0.014903570525348186, - 0.012103303335607052, - 0.002360845683142543, - -0.010171853937208652, - -0.020343707874417305, - -0.027280883863568306, - -0.010265418328344822, - 0.029940804466605186, - 0.00993794109672308, - -0.007004009559750557, - -0.0025112181901931763, - -0.0037258926313370466, - -0.013286232016980648, - 0.02182738110423088, - 0.015571891330182552, - -2.8795258913305588e-05, - 0.0023909201845526695, - -0.012236966751515865, - -0.012584494426846504, - -0.019087262451648712, - 0.0016373877879232168, - -0.02139965444803238, - 0.008066641166806221, - 0.003919705748558044, - -0.035634905099868774, - 0.01412831712514162, - -0.004865380935370922, - -0.0037192092277109623, - 0.0009548643720336258, - -0.012704792432487011, - 0.04148939996957779, - 0.00830723624676466, - 0.024447200819849968, - 0.039511170238256454, - -0.012911971658468246, - -0.013533511199057102, - -0.044403281062841415, - 0.008554515428841114, - -0.004317357204854488, - -0.0024878268595784903, - 0.016146648675203323, - 0.0014335496816784143, - -0.019501622766256332, - 0.013941187411546707, - 0.025850676000118256, - -0.02518235519528389, - -0.017576856538653374, - 0.02212144248187542, - 0.025342753157019615, - 0.010653045028448105, - -0.018592704087495804, - 0.01772388629615307, - -0.03405766561627388, - -0.006486060563474894, - 0.011789191514253616, - -0.001659943605773151, - -0.023832345381379128, - -0.01660110615193844, - -0.014168416149914265, - 0.021239258348941803, - -0.01345999538898468, - 5.5502016039099544e-05, - 0.0037459421437233686, - -0.02264273352921009, - 0.008547832258045673, - -0.023404620587825775, - 0.003649035468697548, - 0.0018713002791628242, - -0.017403092235326767, - 0.040313154458999634, - 0.0077124303206801414, - 0.004618101753294468, - 0.0063824704848229885, - 0.008293869905173779, - -0.008788428269326687, - 0.006165266036987305, - 0.0008746657986193895, - 0.02241550385951996, - -0.011635477654635906, - -0.010900324210524559, - 0.007525300607085228, - 0.004243841860443354, - 0.008066641166806221, - 0.0009690662263892591, - 0.012958754785358906, - -0.008233721368014812, - -0.018592704087495804, - 0.007993125356733799, - 0.0024493983946740627, - -0.002785230055451393, - 0.012932021170854568, - 0.004220450296998024, - 0.0007564564584754407, - -0.019956080242991447, - -0.0048987967893481255, - -0.00917605496942997, - -0.001274823327548802, - -0.05656673386693001, - -0.004715008195489645, - -0.0025212429463863373, - 0.0077391634695231915, - -0.005567118525505066, - -0.005563776940107346, - -0.013560243882238865, - -0.0033934025559574366, - 0.018713003024458885, - -0.04453694820404053, - 0.007986442185938358, - 0.017590222880244255, - -0.002310721669346094, - -0.0005630608648061752, - 0.010018140077590942, - 0.006516134832054377, - -0.008908726274967194, - 0.027374450117349625, - -0.01601298339664936, - -0.004912163130939007, - 0.013627075590193272, - -0.018017947673797607, - -0.0020550887566059828, - 0.003572178538888693, - -0.012216917239129543, - 0.015491693280637264, - -0.022789763286709785, - 0.012009738013148308, - -0.01946152374148369, - 0.0036423522979021072, - 0.010211952961981297, - -0.005486919544637203, - -0.004240500275045633, - -0.0017626980552449822, - -0.03456559032201767, - 0.0037192092277109623, - 0.03536757454276085, - 0.005116001237183809, - -0.0035153713542968035, - -0.0163070447742939, - -0.013012220151722431, - 0.026799693703651428, - 0.039912160485982895, - -0.0068569788709282875, - 0.0023575040977448225, - -0.01712239719927311, - 0.006566259078681469, - -0.007525300607085228, - 0.01172235980629921, - -0.012577811256051064, - -0.013700591400265694, - 0.007605499122291803, - 0.04231812059879303, - 0.009196104481816292, - 0.019127361476421356, - -0.02822990156710148, - -0.012277066707611084, - -0.0036523770540952682, - 0.001276494120247662, - -0.017469923943281174, - 0.0007347359787672758, - -0.004958945792168379, - 0.009156004525721073, - -0.006556234322488308, - -0.011475080624222755, - 0.004160301294177771, - 0.03731907531619072, - -0.016347143799066544, - -0.027361083775758743, - -0.028711093589663506, - 0.0021068835631012917, - -0.0031812104862183332, - 0.029245750978589058, - -0.007973075844347477, - 0.01152854599058628, - 0.006125167012214661, - 0.027361083775758743, - -0.004190376028418541, - -0.015772387385368347, - 0.010178537108004093, - -0.003522054525092244, - 0.004357456229627132, - -0.00805995799601078, - -0.0385487861931324, - -0.007485201116651297, - 0.046729039400815964, - -0.014101584441959858, - -0.01044586580246687, - 0.015344662591814995, - -0.016574373468756676, - 0.0036991597153246403, - 0.013954553753137589, - 0.0019347908673807979, - -0.0379071980714798, - 0.0019398032454773784, - 0.033309146761894226, - -0.03253389149904251, - 0.0012347240699455142, - 0.014676340855658054, - -0.013072368688881397, - -0.005296448245644569, - 0.007117624394595623, - 0.004708325024694204, - -0.01264464296400547, - 0.014235248789191246, - 0.0067433640360832214, - -0.0045278784818947315, - 0.013560243882238865, - -0.0036791099701076746, - 0.005045827478170395, - 0.009704028256237507, - -0.026238303631544113, - 0.0014226894127205014, - 0.010746610350906849, - 0.011147603392601013, - 0.007024059072136879, - 0.010379033163189888, - -0.024032842367887497, - -0.006506110075861216, - -0.0007597980438731611, - -0.027093755081295967, - 0.017282795161008835, - -0.014569409191608429, - -0.011642160825431347, - -0.003582203295081854, - 0.018900133669376373, - -0.02785564213991165, - -0.02937941439449787, - -0.01493030320852995, - 0.023792246356606483, - 0.006432594731450081, - -0.02519572153687477, - 0.010218636132776737, - -0.017670420929789543, - -0.0037860414013266563, - -0.013112468644976616, - -0.004798548761755228, - 0.004093469586223364, - -0.01045923214405775, - -0.015558524988591671, - -0.010345617309212685, - -0.0038996560033410788, - -0.011535229161381721, - -0.003498663194477558, - 0.0032179681584239006, - -0.0389765128493309, - 0.009149321354925632, - 0.2058430314064026, - -0.018606070429086685, - -0.007819361984729767, - 0.019809050485491753, - -0.016841702163219452, - -0.004227133467793465, - 0.020129844546318054, - 0.0027016897220164537, - -0.0059346952475607395, - 0.013653809204697609, - -0.01835210993885994, - 0.031678441911935806, - -0.010372349992394447, - -0.008547832258045673, - 0.01579912006855011, - -0.019434789195656776, - -0.030849721282720566, - -0.029192283749580383, - -0.00626885611563921, - 0.019220927730202675, - -0.0009774202480912209, - 0.005523677449673414, - 0.002960664452984929, - -0.024808095768094063, - 0.02047737129032612, - 0.009951307438313961, - -0.005209566093981266, - 0.014342180453240871, - 0.043280500918626785, - 0.010786709375679493, - -0.0022355355322360992, - 0.01188275683671236, - -0.0020868340507149696, - 0.00018566807557363063, - 0.00943669956177473, - -0.006155241280794144, - -0.0033599864691495895, - 0.007685697637498379, - 0.025757111608982086, - 0.013373114168643951, - -0.01055279653519392, - 0.0008738304022699594, - -0.004387530963867903, - -0.03456559032201767, - 0.009470116347074509, - 0.023712048307061195, - -0.015317928977310658, - 0.00942333322018385, - -0.019234294071793556, - -0.007090891245752573, - -0.01463624183088541, - -0.01248424593359232, - 0.014556042850017548, - 0.031865570694208145, - 0.0017760645132511854, - 0.008995607495307922, - 0.002364187501370907, - 0.007184456568211317, - 0.0039765131659805775, - 0.013860988430678844, - 0.0026315159630030394, - 0.028604160994291306, - -0.0009648891864344478, - 0.018017947673797607, - -0.007525300607085228, - 0.0039564636535942554, - -0.005814397241920233, - 0.010713194496929646, - 0.004290624056011438, - -0.010372349992394447, - -0.0049856784753501415, - -0.026572464033961296, - -0.012150085531175137, - 0.008654763922095299, - -0.042772576212882996, - -0.020744699984788895, - 0.024834828451275826, - 0.018726369366049767, - 0.006008210591971874, - 0.032373495399951935, - -0.011334733106195927, - 0.00035358386230655015, - 0.003421806264668703, - 0.0040333205834031105, - -0.006897078361362219, - -0.008327286690473557, - 0.013687225058674812, - 0.018378842622041702, - -0.009998089633882046, - -0.00932308565825224, - -0.018111513927578926, - -0.0016858410090208054, - -0.0164139773696661, - -0.005557093303650618, - 0.018432307988405228, - 0.01946152374148369, - 0.005116001237183809, - 0.011555279605090618, - 0.002377553842961788, - 0.009697345085442066, - -0.03229329735040665, - 0.048894401639699936, - 0.005316497758030891, - 0.00657962542027235, - -0.00288046570494771, - 0.02212144248187542, - 0.005463528446853161, - -0.0006938012666068971, - 0.009797593578696251, - -0.025021957233548164, - -0.013319647870957851, - -0.012577811256051064, - 0.003936413675546646, - 0.0018930207006633282, - 0.014235248789191246, - 0.030742790549993515, - -1.566378523421008e-05, - -0.010051555931568146, - 0.019434789195656776, - -0.024219973012804985, - 0.00736490311101079, - -0.0209184642881155, - -0.008287186734378338, - 0.005089268554002047, - 0.011314683593809605, - -0.012838456779718399, - -0.04945579171180725, - -0.0021202501375228167, - -0.019327858462929726, - -0.02458086609840393, - 0.02884475700557232, - 0.015130799263715744, - 0.016146648675203323, - -0.025316018611192703, - 0.015665456652641296, - -0.018699636682868004, - 0.006957226898521185, - -0.016748137772083282, - -0.004273916129022837, - 0.0030976703856140375, - -0.0021620201878249645, - -0.008427534252405167, - 0.0009406625758856535, - 6.641445361310616e-05, - -0.01472980622202158, - -0.006445961073040962, - 0.005199541337788105, - -0.018124880269169807, - -0.0352606438100338, - -0.025463050231337547, - 0.001593946828506887, - -0.008835210464894772, - -0.013172617182135582, - -0.024848194792866707, - 0.0354745052754879, - -0.0008161876467056572, - -0.03456559032201767, - -0.015224364586174488, - -0.007859461009502411, - -0.000692548172082752, - -0.008427534252405167, - -0.007732480298727751, - 0.012531029060482979, - -0.01753675751388073, - -0.02407294139266014, - 0.016066448763012886, - -0.17333586513996124, - 0.03119724802672863, - 0.008541149087250233, - -0.026799693703651428, - 0.006643116008490324, - 0.006205365527421236, - 0.027508113533258438, - 0.0064092036336660385, - -0.015865953639149666, - 0.004293965641409159, - 0.002781888470053673, - 0.0008266302174888551, - -0.02916555106639862, - -0.023217489942908287, - 0.017296161502599716, - -0.003420135471969843, - 0.0062488061375916, - -0.003299837466329336, - 0.013860988430678844, - 0.010131753981113434, - 0.009543631225824356, - -0.007164406590163708, - 0.007725796662271023, - -0.0007953026215545833, - -0.006713289767503738, - -0.01361370924860239, - -0.012150085531175137, - 0.00964387971907854, - 0.00045738255721516907, - 0.0031929060351103544, - -0.001032556756399572, - 0.003421806264668703, - 0.018271910026669502, - 0.009750811383128166, - -0.005590509623289108, - -0.005864521488547325, - -0.024126406759023666, - -0.011287950910627842, - 0.0002967765321955085, - 0.014181782491505146, - 0.026077905669808388, - 0.010138437151908875, - 0.023083824664354324, - 0.002827000105753541, - -0.015304562635719776, - 0.021386288106441498, - 0.021038761362433434, - 0.0034017565194517374, - 0.0025446342770010233, - -0.006445961073040962, - 0.029325949028134346, - -0.02027687430381775, - 0.005029119551181793, - 0.013072368688881397, - 0.006542867980897427, - -0.0014594470849260688, - 0.00576093140989542, - 9.15287237148732e-05, - -0.0010968827409669757, - 0.0020834924653172493, - -0.01284513995051384, - -0.005794347729533911, - 8.322691428475082e-05, - -0.019448157399892807, - -0.008374068886041641, - -0.01091369055211544, - -0.008688179776072502, - 0.0059747942723333836, - -0.025155622512102127, - 0.0031244030687958, - 0.001956511288881302, - -0.017296161502599716, - -0.0010718206176534295, - -0.00850773323327303, - -0.013560243882238865, - -0.007598815951496363, - -0.020049646496772766, - 0.008915409445762634, - -0.012223600409924984, - -0.0234580859541893, - -0.01926102675497532, - 0.0656559094786644, - -0.0015697202179580927, - -0.007826045155525208, - -0.0025245845317840576, - 0.01733626052737236, - -0.010673094540834427, - -0.016146648675203323, - -0.0007251288625411689, - -0.016641205176711082, - 0.008755012415349483, - -0.016774870455265045, - -0.04769142344594002, - 0.011715676635503769, - -0.0026899941731244326, - 0.003471930278465152, - -0.02722741849720478, - 0.015852587297558784, - -0.009089172817766666, - -0.005349913612008095, - 0.02722741849720478, - 0.009750811383128166, - -0.04408248886466026, - 0.012363947927951813, - 0.007137673906981945, - 0.011074087582528591, - -0.030448729172348976, - 0.0334695428609848, - 0.034298259764909744, - 0.014475843869149685, - -0.024340270087122917, - 0.009470116347074509, - 0.0102453688159585, - 0.00815352238714695, - 0.01202978752553463, - 0.012664693407714367, - 0.007665648125112057, - -0.023003626614809036, - 0.02018330991268158, - -0.005366622004657984, - 0.04437654837965965, - 0.01958182081580162, - -0.01284513995051384, - 0.01351346168667078, - -0.010385716333985329, - -0.01734962686896324, - -0.0557112842798233, - 0.0048887720331549644, - 0.01692190021276474, - 0.026572464033961296, - -0.004748424515128136, - 0.028737826272845268, - 0.004778498783707619, - 0.002551317447796464, - -0.012210234068334103, - 0.026465533301234245, - 0.009496849030256271, - -0.05699446052312851, - -0.01702883280813694, - -0.0031327572651207447, - 0.02713385410606861, - -0.002374212257564068, - 0.0038862896617501974, - -0.012317165732383728, - -0.015732288360595703, - 0.012577811256051064, - -0.014141683466732502, - -0.009289668872952461, - -0.00624212296679616, - -0.014235248789191246, - -0.021252624690532684, - -0.002541292691603303, - -0.02305709198117256, - 0.018525872379541397, - 0.03039526380598545, - 0.005253007169812918, - 0.0063824704848229885, - -0.008320602588355541, - 0.010051555931568146, - -0.046274583786726, - 0.004828623030334711, - -0.007919610477983952, - -0.02253580279648304, - -0.030234865844249725, - 0.03600916266441345, - -0.023297687992453575, - 0.0024727897252887487, - 0.0164139773696661, - 0.027454648166894913, - -0.03344281017780304, - -0.03183883801102638, - 0.004574660677462816, - -0.019822416827082634, - 0.004992361646145582, - 0.03822799026966095, - -0.003020813222974539, - -0.010639678686857224, - -0.0036356691271066666, - -0.026118004694581032, - -0.016026349738240242, - 0.015170898288488388, - -0.001550505985505879, - 0.0007664812728762627, - 0.0036690852139145136, - -0.0243536364287138, - 0.016801603138446808, - 0.03405766561627388, - 0.018606070429086685, - -0.0023391253780573606, - 0.017763985320925713, - 0.010358983650803566, - -0.016440710052847862, - -0.022081343457102776, - -0.014662974514067173, - 0.0247813630849123, - -0.019715484231710434, - 0.0027484723832458258, - 0.004307332448661327, - -0.024206606671214104, - 0.012510978616774082, - -0.003585545113310218, - 0.011541912332177162, - -0.04779835417866707, - -0.024246705695986748, - 0.029138818383216858, - -0.02895168773829937, - -0.0019548404961824417, - -0.020009547472000122, - 0.01896696537733078, - -0.014489211142063141, - 0.01127458456903696, - 0.021854113787412643, - -0.00852109957486391, - 0.013586976565420628, - 0.010205269791185856, - -0.024701163172721863, - 0.02905862033367157, - 0.009142638184130192, - 0.017055565491318703, - -0.019087262451648712, - -0.006750047206878662, - -0.0018328718142583966, - 0.005339888855814934, - -0.0021469828207045794, - 0.0005079243564978242, - 0.011227801442146301, - -0.017362993210554123, - -0.023939277976751328, - -0.08607981353998184, - 0.012531029060482979, - -0.0011269571259617805, - -0.004187034443020821, - -0.016868434846401215, - -0.0016248567262664437, - -0.0038428488187491894, - 0.015839220955967903, - 0.005246323999017477, - 0.004598052240908146, - -0.024701163172721863, - -0.030208133161067963, - -0.0029757015872746706, - 0.015625357627868652, - -0.0068001714535057545, - 0.0023157340474426746, - 0.025021957233548164, - 0.009376551024615765, - 0.013239449821412563, - -0.0037192092277109623, - 0.0059747942723333836, - -0.00023182402946986258, - 0.0060015274211764336, - 0.017670420929789543, - -0.006379128899425268, - -0.005376646760851145, - -0.008908726274967194, - -2.2151203665998764e-05, - 0.0026866525877267122, - 0.00657962542027235, - 0.020864998921751976, - -0.017362993210554123, - -0.0010743268067017198, - 0.01652090810239315, - -0.0034000857267528772, - -0.03606262803077698, - 0.011548596434295177, - 0.027294252067804337, - 0.00609509227797389, - 0.049001336097717285, - -0.012771624140441418, - -0.015865953639149666, - 0.003090986981987953, - 0.003485296852886677, - -0.006529501173645258, - 0.005643975455313921, - 0.005780981387943029, - 0.024393735453486443, - 0.010412449017167091, - -0.02122589200735092, - 0.007785945665091276, - 0.01966201886534691, - 0.004701641853898764, - -0.020824898034334183, - 0.00866144709289074, - -0.003585545113310218, - -0.004427629988640547, - 0.000748102436773479, - -0.0049856784753501415, - -0.03908344358205795, - 0.024594232439994812, - 0.016360510140657425, - 0.021279357373714447, - -0.0004912163130939007, - 0.01672140508890152, - 0.007552033290266991, - -0.005590509623289108, - -0.007572082802653313, - 0.035527970641851425, - -0.02447393350303173, - -0.015197631902992725, - -0.016895167529582977, - -6.839853449491784e-05, - 0.048065684735774994, - -0.02182738110423088, - -0.013794156722724438, - -0.006870345212519169, - 0.007037425879389048, - -0.012805040925741196, - 0.013994652777910233, - -0.007926293648779392, - 0.017991214990615845, - -0.007431735284626484, - 0.013860988430678844, - 0.02078479900956154, - 0.0049455794505774975, - 0.00011277925659669563, - 0.002586404327303171, - 0.027508113533258438, - 0.015317928977310658, - -0.0026799694169312716, - 0.017269428819417953, - -0.00676007242873311, - -0.032774489372968674, - 0.018098147585988045, - 0.0016014655120670795, - -0.013446629047393799, - -0.0150907002389431, - 0.009744128212332726, - 0.016079815104603767, - -0.00754535011947155, - 0.0038662401493638754, - -0.0055069695226848125, - -0.017603589221835136, - -0.0305021945387125, - 0.012985487468540668, - -0.0150907002389431, - -0.03397746756672859, - -0.002947297878563404, - 0.003628985956311226, - 0.022763030603528023, - 0.018739735707640648, - 0.013272865675389767, - -0.0036189609672874212, - -0.02581057697534561, - 0.022001145407557487, - -0.013620392419397831, - -0.009349818341434002, - -0.02416650578379631, - 0.004588027484714985, - 0.011695627123117447, - 0.0067700971849262714, - 0.006676531862467527, - 0.004761790856719017, - 0.012617910280823708, - 0.010325567796826363, - 0.011294634081423283, - -0.0275348462164402, - 0.0054969447664916515, - 0.003538762452080846, - -0.006282222457230091, - 0.002367529086768627, - -0.004688275512307882, - -0.02651899866759777, - -0.021172426640987396, - -0.007411685772240162, - 0.004070078022778034, - 0.005994844250380993, - -0.021493220701813698, - 0.0984838604927063, - 0.03306854888796806, - -0.009530264884233475, - 0.003979854751378298, - -0.00609175069257617, - 0.007745846640318632, - -0.0021369580645114183, - 0.0018662879010662436, - -0.007598815951496363, - -0.03333587944507599, - 0.014489211142063141, - 0.001792772556655109, - 0.011628794483840466, - -0.032881420105695724, - -0.0002153248351532966, - -0.0166278388351202, - -0.017777353525161743, - 0.00739163625985384, - -0.01331296470016241, - 0.010947106406092644, - 0.00850773323327303, - -0.01142829842865467, - 0.008200305514037609, - 0.02548978291451931, - -0.004848672542721033, - -0.026358600705862045, - 0.0297536738216877, - -0.0005212908145040274, - 0.006051651667803526, - -0.024219973012804985, - -0.02621157094836235, - 0.015879319980740547, - -0.06538857519626617, - -0.023832345381379128, - 0.017563490197062492, - -0.02438036911189556, - -0.014662974514067173, - 0.009590414352715015, - 0.008902043104171753, - 0.00010071814176626503, - -0.007291387766599655, - 0.016574373468756676, - -0.014261981472373009, - -0.024607598781585693, - -0.006329004652798176, - -0.018793201074004173, - -0.03130418062210083, - 0.006218731869012117, - 0.025449683889746666 - ], - "sparse": "SparseEmbedding(values=array([1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722,\n 1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722]), indices=array([ 685289368, 2124172637, 22476906, 908425398, 1434387530,\n 49941346, 1943099684, 2024115788, 332321440, 1330812002]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 3, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 10 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000004.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000004.json deleted file mode 100644 index fd0807694ab81333fda223bb708615528130d023..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000004.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000004", - "content": "Kooperationspartnerinnen Hochschule f\u00fcr Technik und Wirtschaft Berlin Hochschule f\u00fcr Wirtschaft und Recht Berlin Berliner Hochschule f\u00fcr Technik Virtual Dimension Center Point Cloud Technology FrauenComputerZentrumBerlin e.V. erf\u00e4ller: INSPIRE", - "embedding": { - "dense": [ - -0.00392000749707222, - -0.01259883027523756, - -0.005861631128937006, - -0.025304600596427917, - 0.006459824740886688, - 0.0165756493806839, - -0.03996870294213295, - -0.014075934886932373, - 0.0068641905672848225, - -0.04841693863272667, - 0.00246963812969625, - -0.00629941513761878, - 0.016508812084794044, - -0.010921214707195759, - -0.00768628902733326, - -0.011462596245110035, - 0.021347831934690475, - -0.01034641359001398, - -0.00501948082819581, - -0.009223546832799911, - -0.016241462901234627, - -0.014530428685247898, - 0.01914220117032528, - 0.009891919791698456, - -0.012044080533087254, - -0.011596270836889744, - 0.022550903260707855, - -0.02186916396021843, - 0.024462450295686722, - 0.003819751553237438, - -5.417476131697185e-06, - -0.004057024139910936, - -0.024622859433293343, - -0.0002046892186626792, - -0.0101926876232028, - 0.0029625631868839264, - -0.021615181118249893, - 0.008628695271909237, - 0.02324601262807846, - 0.004224117379635572, - 0.016348402947187424, - -0.0042007239535450935, - 0.0070513347163796425, - 0.0010894479928538203, - -0.010272892192006111, - 0.01842035911977291, - 0.005062925163656473, - -0.008194252848625183, - -0.0042308010160923, - 0.0075125121511518955, - 0.013554603792726994, - 0.04855061322450638, - -0.009978808462619781, - 0.0060186986811459064, - -0.02280488610267639, - -0.01870107650756836, - -0.026494303718209267, - 0.020893339067697525, - -0.018326787278056145, - -0.022844988852739334, - -0.012665667571127415, - -0.015198801644146442, - -0.020773032680153847, - 0.00535700935870409, - -0.008314560167491436, - -0.0009490895899944007, - -0.03090556524693966, - 0.012164387851953506, - -0.009885236620903015, - -0.008401447907090187, - 0.03799032047390938, - 0.01779208891093731, - 0.014690837822854519, - -0.0015439415583387017, - 0.014690837822854519, - 0.002142135286703706, - 0.01628156565129757, - 0.004471415188163519, - -0.00723847933113575, - 0.0001641691051190719, - -0.0017979232361540198, - -0.017257390543818474, - -0.02412826381623745, - -0.004304321948438883, - 0.02370050549507141, - -0.002287506591528654, - -0.009377272799611092, - 0.012552044354379177, - 0.011970560066401958, - -0.001786226755939424, - 0.012485207058489323, - 0.03170761466026306, - -0.010546925477683544, - 0.014329916797578335, - -0.002295861253514886, - 0.008855941705405712, - 0.016040951013565063, - 0.015773601830005646, - 0.006727173924446106, - -0.02578582987189293, - 0.002255758736282587, - 0.002519766101613641, - -0.02986290492117405, - -0.008902727626264095, - -0.04724059998989105, - -0.012538677081465721, - 0.01170321088284254, - -0.007946955040097237, - 0.021949367597699165, - -0.00800042413175106, - -0.021989470347762108, - 0.0023626985494047403, - -0.012191123329102993, - -0.0015840439591556787, - 0.009985492564737797, - -0.04721386730670929, - -0.006991181056946516, - 0.015225536189973354, - 0.00305613549426198, - -0.016789529472589493, - 0.034193962812423706, - 0.005310223437845707, - 0.004300979897379875, - -0.010981367900967598, - 0.021053748205304146, - -0.006125638261437416, - 0.0032132030464708805, - -0.019382815808057785, - -0.011716578155755997, - -0.013521185144782066, - -0.001871444284915924, - -0.010333046317100525, - 0.015653295442461967, - 0.0011654753470793366, - -0.010673915967345238, - 0.011282135732471943, - -0.0012030713260173798, - -0.01273250486701727, - -0.03561091050505638, - -0.023727240040898323, - 0.013668227009475231, - 0.029782699421048164, - -0.019489755854010582, - 0.009945389814674854, - -0.034033551812171936, - 0.018153009936213493, - -0.010145901702344418, - -0.0023610275238752365, - 0.028419218957424164, - 0.011422494426369667, - -0.019676899537444115, - -0.04023605212569237, - 0.0016508812550455332, - -0.024395612999796867, - 0.002541488269343972, - 0.007619451731443405, - -0.0018881536088883877, - 0.031627409160137177, - -0.001367658143863082, - -0.02142803743481636, - 0.0023459892254322767, - -0.018460461869835854, - -0.008053894154727459, - -0.0024830056354403496, - 0.03590499609708786, - 0.01424971129745245, - -0.0013693291693925858, - 0.00747240986675024, - -0.0028756747487932444, - 0.006730515975505114, - -0.0002796723274514079, - 0.04871102049946785, - -0.04611773416399956, - -0.0006090548704378307, - -0.0031664168927818537, - -0.007078069727867842, - 0.002381078666076064, - -0.005153155419975519, - -0.016174625605344772, - -0.013146895915269852, - 0.0026634663809090853, - 0.010934581980109215, - 0.017899028956890106, - 0.010673915967345238, - -0.014062567614018917, - -0.0018848117906600237, - 0.027042370289564133, - 0.015025024302303791, - -0.004892490338534117, - -0.014423488639295101, - 0.02280488610267639, - 0.011135093867778778, - 0.00898293312638998, - -0.0058014774695038795, - -0.6489099264144897, - -0.009109923616051674, - 0.01296643540263176, - -0.02970249392092228, - 0.002609996357932687, - 0.014877982437610626, - 0.010820958763360977, - 0.00029115998768247664, - -0.0036727094557136297, - 0.02972923032939434, - 0.01660238392651081, - 0.010165953077375889, - -0.015907276421785355, - -0.02804492972791195, - -0.016842998564243317, - -0.014877982437610626, - -0.002884029410779476, - -0.02264447696506977, - -0.005400453694164753, - 0.018660973757505417, - -0.024796636775135994, - 0.00791353639215231, - 0.011429177597165108, - -0.004407919943332672, - 0.009183445014059544, - 0.01947638764977455, - 0.013501133769750595, - 0.013026589527726173, - -0.013213733211159706, - -0.0006712970789521933, - -0.005022822879254818, - 0.024475818499922752, - -0.0043143476359546185, - 0.00874900259077549, - 0.04646528884768486, - 0.03774970397353172, - -0.024235203862190247, - 0.021534977480769157, - -0.002073627198114991, - -0.0011420822702348232, - -0.0203853752464056, - -0.007666238117963076, - 0.016187993809580803, - 0.030424337834119797, - 0.00927701685577631, - 0.024355510249733925, - 0.015920644626021385, - -0.018888220191001892, - -0.011295503005385399, - -0.014757675118744373, - -0.0010760804871097207, - -0.02686859294772148, - -0.00671380665153265, - 0.0050963438116014, - 0.02188253030180931, - -0.005778084509074688, - 0.004050340037792921, - -0.001574853784404695, - -0.01199061144143343, - 0.004227458965033293, - 0.0031647461000829935, - 0.013233784586191177, - -0.010740753263235092, - -0.042160965502262115, - -0.022096410393714905, - 0.01903526298701763, - -0.016629120334982872, - 0.0023526728618890047, - 0.007418939843773842, - -0.014744307845830917, - 0.011048205196857452, - 0.027216147631406784, - -0.010045645758509636, - -0.017738617956638336, - 0.007124855648726225, - 0.025705624371767044, - 0.01764504611492157, - -0.02486347407102585, - 0.0014378373743966222, - 0.0031731007620692253, - -0.005734640173614025, - -0.030397603288292885, - -0.00011853176692966372, - -0.004514859523624182, - -0.003709469921886921, - -0.04274913668632507, - -0.02217661589384079, - -0.01705687865614891, - -0.02129436284303665, - 0.005002771504223347, - 0.02865983359515667, - 0.0005413821199908853, - -0.004324373323470354, - -0.02340642176568508, - -0.003575795330107212, - 0.024408981204032898, - -0.010587028227746487, - 0.044433433562517166, - 0.003462171880528331, - -0.024061426520347595, - 0.0008099845144897699, - -0.0026768336538225412, - 0.014650735072791576, - -0.001067725825123489, - 0.0037729653995484114, - 0.013862055726349354, - -0.03518315404653549, - -0.005460607353597879, - 0.03229578211903572, - -0.016094421967864037, - -0.015626560896635056, - -0.02337968721985817, - 0.0015690055442973971, - 0.0038598538376390934, - -0.005233360454440117, - -0.033418647944927216, - 0.029354941099882126, - -0.013835320249199867, - 0.011034837923943996, - 0.010720702819526196, - 0.01395562756806612, - -0.003112947102636099, - -0.003158062230795622, - 0.001367658143863082, - -0.004651875700801611, - 0.01003896165639162, - -0.004113835748285055, - -0.0003059894952457398, - -0.03307109326124191, - 0.008795788511633873, - 0.02292519249022007, - -0.02654777467250824, - 0.026307160034775734, - -0.016415240243077278, - 0.034755393862724304, - 0.01356797106564045, - 0.013100109994411469, - -0.02427530661225319, - 0.01600084826350212, - -0.015760235488414764, - -0.014931452460587025, - -0.0017294150311499834, - 0.016482077538967133, - -0.01688310131430626, - -0.01854066550731659, - -0.02852615900337696, - -0.017618311569094658, - 0.018808014690876007, - -0.001958332723006606, - -0.016856366768479347, - -0.010312994942069054, - -0.013300621882081032, - -0.006910976488143206, - 0.029969843104481697, - 0.023032132536172867, - -0.021374568343162537, - 0.011709894053637981, - -0.0032248995266854763, - -0.01959669589996338, - -0.02277815155684948, - 0.023620299994945526, - 0.003532351227477193, - -0.017885660752654076, - -0.011088307946920395, - 0.023606933653354645, - -0.005908417049795389, - 0.01630830019712448, - 0.007626135367900133, - -0.024248572066426277, - -0.0236737709492445, - 0.007612768094986677, - -0.0006128144450485706, - -0.0005881682154722512, - 0.012986486777663231, - 0.008528439328074455, - 0.002930815564468503, - -0.008862625807523727, - 0.012465155683457851, - -0.003946742508560419, - 0.00030786931165494025, - 0.0067572505213320255, - 0.005390428006649017, - -0.017698517069220543, - 0.0004164799174759537, - -0.005457265302538872, - 0.020478947088122368, - 0.01494481973350048, - 0.014517060481011868, - -0.008668797090649605, - -0.006235919892787933, - -0.01312016136944294, - 0.02954208478331566, - 0.018300052732229233, - 0.004087100736796856, - -0.01689646951854229, - 0.0130600081756711, - -0.010500139556825161, - 0.006553397048264742, - -0.003022716846317053, - 0.018005967140197754, - 0.04662569984793663, - 0.0019382815808057785, - 0.041840147227048874, - 0.008708899840712547, - 0.01733759418129921, - -0.02863309718668461, - 0.00020458479411900043, - -0.01884811744093895, - 0.03788337856531143, - 0.010667232796549797, - 0.017538106068968773, - -0.006356226745992899, - -0.019957616925239563, - -0.0047888923436403275, - 0.024462450295686722, - 0.013968994840979576, - -0.016040951013565063, - -0.0018112907418981194, - -0.004702003672719002, - 0.012645616196095943, - 0.002588274423032999, - -0.011963875964283943, - 0.016321668401360512, - 0.0022507458925247192, - 0.014958187006413937, - 0.002384420484304428, - 0.0010727386688813567, - 0.0020301828626543283, - 0.010206054896116257, - -0.013080058619379997, - -0.0013091755099594593, - 0.0030862120911478996, - 0.0035490605514496565, - 0.011402443051338196, - -0.008708899840712547, - -0.0009933693800121546, - 0.014837879687547684, - -0.01071401871740818, - 0.01989077962934971, - 0.01748463697731495, - 0.017150450497865677, - 0.03772297129034996, - -0.0005167358322069049, - -0.01328057050704956, - 0.002309228526428342, - 0.00170602195430547, - 0.02820533886551857, - 0.03857848793268204, - -0.01962343044579029, - 0.015947379171848297, - -0.027269616723060608, - -0.011589587666094303, - -0.0057112472131848335, - -0.010988052003085613, - 0.021214157342910767, - -0.01705687865614891, - 0.023032132536172867, - 0.006249287165701389, - 0.004374501295387745, - 0.023005397990345955, - -0.0014069251483306289, - 2.0207839042996056e-05, - 0.015292373485863209, - 0.0017394406022503972, - 0.01154948491603136, - 0.012418369762599468, - 2.465930811013095e-05, - 0.008869308978319168, - -0.019717002287507057, - -0.026053179055452347, - 0.005925126373767853, - -0.008702215738594532, - 0.013968994840979576, - -0.0008797459304332733, - -0.0038966143038123846, - -0.004805601667612791, - -0.0021504899486899376, - 0.003400347428396344, - 0.0021956053096801043, - 0.038391344249248505, - -0.010099115781486034, - -0.011188563890755177, - -0.0027837734669446945, - 0.044593844562768936, - 0.005664460826665163, - -0.013126845471560955, - -0.012692403048276901, - 0.0005580914439633489, - -0.001996764214709401, - 0.013755115680396557, - 0.01281270943582058, - -0.0016291590873152018, - 0.0068641905672848225, - 0.007699656765908003, - 0.00860195979475975, - -0.025545215234160423, - 0.015385945327579975, - -0.012124286033213139, - 0.003417056752368808, - 0.004999429918825626, - -0.0022758098784834146, - -0.006182449869811535, - -0.017979232594370842, - -0.012692403048276901, - 0.02686859294772148, - -0.03210863843560219, - 0.002880687592551112, - 0.005965228658169508, - 0.0016492103459313512, - -0.029381675645709038, - 0.002339305356144905, - -0.01116182841360569, - -0.00561767490580678, - 0.010580344125628471, - -0.012378267012536526, - 0.020893339067697525, - -0.006606866605579853, - -0.008615327998995781, - 0.025371437892317772, - 0.01063381414860487, - -0.003417056752368808, - -0.026013076305389404, - -0.016776161268353462, - 0.022403862327337265, - 0.06106255576014519, - 0.0334988534450531, - -0.017377696931362152, - 0.03213537111878395, - -0.020879970863461494, - -0.011295503005385399, - -0.015118596144020557, - -0.055180873721838, - -0.009771612472832203, - -0.009651306085288525, - 0.011876987293362617, - -0.013166947290301323, - 0.03646643087267876, - -0.006797353271394968, - 0.008862625807523727, - 0.007111488375812769, - -0.002990968991070986, - -0.00689760921522975, - 0.003742888569831848, - -0.022083042189478874, - 0.004448022227734327, - 0.000983343692496419, - 0.008107364177703857, - 0.030825361609458923, - 0.032215576618909836, - -0.003869879525154829, - 0.025398172438144684, - 0.032509662210941315, - -0.003112947102636099, - -0.02109385095536709, - 0.004030289128422737, - 0.0203853752464056, - 0.0018530640518292785, - 0.03422069549560547, - -0.020773032680153847, - -0.021668652072548866, - -0.00765955401584506, - 0.0024913602974265814, - 0.029221266508102417, - 0.0018898245180025697, - 0.009210179559886456, - 0.032509662210941315, - 0.016842998564243317, - -0.018513930961489677, - 0.001660906826145947, - -0.019222406670451164, - 0.0006779808318242431, - 0.033579058945178986, - 0.021668652072548866, - -0.019262509420514107, - 0.008782421238720417, - 0.000767793448176235, - -0.018179744482040405, - -0.026454202830791473, - -0.018300052732229233, - -0.0020034480839967728, - -0.017110347747802734, - -0.025010516867041588, - 0.010125850327312946, - -0.03352558985352516, - -0.028953917324543, - -0.03908644989132881, - 0.012498574331402779, - -0.0033234846778213978, - -0.0208398699760437, - 0.006600182969123125, - -0.01963679865002632, - -0.010627130046486855, - -0.02249743416905403, - 0.01003896165639162, - -0.008822523057460785, - -0.015867173671722412, - -0.03954094648361206, - 0.015292373485863209, - 0.0015205484814941883, - 0.004665243439376354, - 0.005938493646681309, - 0.002476321766152978, - -0.020746296271681786, - 0.019249141216278076, - -0.0022340365685522556, - -0.017431167885661125, - -6.820798262197059e-06, - -0.0261200163513422, - -0.0005605978076346219, - 0.0019850677344948053, - -0.03526335954666138, - -0.02050568349659443, - -0.0006880064029246569, - -0.008515072055161, - 0.0019416235154494643, - -0.018206479027867317, - 0.019061997532844543, - 0.017578208819031715, - -0.0022306947503238916, - 0.03122638538479805, - 0.019650164991617203, - 0.016468709334731102, - 0.012993170879781246, - -0.024021323770284653, - 0.006433089729398489, - -0.019569961354136467, - -0.003014362184330821, - -0.0029525374993681908, - 0.023339584469795227, - 0.04071728140115738, - -0.009310435503721237, - 0.011910405941307545, - 0.0007878446485847235, - 0.009544366039335728, - 0.0325898677110672, - 0.0010042303474619985, - 0.0088292071595788, - -0.005978596396744251, - -0.022230084985494614, - 0.012177755124866962, - -0.008047210983932018, - 0.008087312802672386, - 0.02491694502532482, - -0.007779861334711313, - -0.010105798952281475, - -0.02292519249022007, - 0.02431540936231613, - 0.0053336163982748985, - 0.007285265251994133, - 0.023887649178504944, - 0.00713153975084424, - 0.014744307845830917, - 0.001708528376184404, - 0.005564204882830381, - 0.0039300331845879555, - 0.005246727727353573, - 0.0006779808318242431, - -0.016562283039093018, - -0.032055169343948364, - -0.01962343044579029, - -0.015118596144020557, - 0.009530998766422272, - -0.0081474669277668, - -0.020585887134075165, - -0.019409550353884697, - 0.015532988123595715, - 0.00011759186600102112, - -0.02065272442996502, - -0.010693967342376709, - -0.025745727121829987, - -0.011963875964283943, - -0.009871868416666985, - -0.016214728355407715, - 0.02610664814710617, - -0.00016343807510565966, - 0.02260437421500683, - -0.012405002489686012, - 0.0037228374276310205, - -0.017123715952038765, - -0.032509662210941315, - -0.0256655216217041, - -0.03558417782187462, - 0.00535700935870409, - 0.028953917324543, - 0.007412256207317114, - 0.010780856013298035, - 0.017591577023267746, - 0.02355346269905567, - 0.008942830376327038, - 0.0037662817630916834, - 0.007833330892026424, - 0.007606084458529949, - -0.038872573524713516, - 0.019944248721003532, - -0.011643056757748127, - 0.01963679865002632, - 0.006045433692634106, - -0.02370050549507141, - -0.0023994590155780315, - 0.004534910432994366, - -0.02761717140674591, - -0.011402443051338196, - -0.0037662817630916834, - -0.030852096155285835, - -0.011168512515723705, - -0.008802471682429314, - 0.007612768094986677, - 0.012177755124866962, - -0.02098691090941429, - 0.017284125089645386, - 0.01439675409346819, - 0.0040336307138204575, - 0.022524168714880943, - 0.021976104006171227, - 0.007572665810585022, - -0.010734070092439651, - 0.018487196415662766, - 0.03352558985352516, - -0.002112058689817786, - -0.01152943354099989, - -0.016642486676573753, - -0.005614332854747772, - 0.0033752834424376488, - 0.04991409182548523, - -0.0026216930709779263, - -0.007646186742931604, - 0.0009198482730425894, - -0.0017594918608665466, - -0.010379832237958908, - 0.006616892293095589, - -0.0063729360699653625, - -0.008501703850924969, - -0.02550511248409748, - -0.00830787606537342, - -0.0048590716905891895, - -0.013755115680396557, - -0.015893910080194473, - -0.021013645455241203, - 0.01928924396634102, - -0.006837455555796623, - -0.022283554077148438, - 0.04876449331641197, - -0.001537257805466652, - -0.010433302260935307, - -0.006707122549414635, - -0.0190218947827816, - 0.024368878453969955, - 0.017150450497865677, - 0.030130254104733467, - 0.016548914834856987, - -0.008842574432492256, - -0.01545278262346983, - -0.033097829669713974, - -0.014142772182822227, - -0.003796358359977603, - 0.01903526298701763, - 0.019102100282907486, - -0.025705624371767044, - -0.015573089942336082, - 0.012491891160607338, - 0.010152585804462433, - -0.006429748144000769, - -0.014142772182822227, - 0.02775084599852562, - -0.0009273674804717302, - 0.005320248659700155, - -0.026173485442996025, - 0.010259524919092655, - -0.032509662210941315, - 0.015426048077642918, - -0.02444908395409584, - 0.024997148662805557, - -0.022711314260959625, - -0.003833119058981538, - 0.0015071810921654105, - 0.020318537950515747, - -0.009604519233107567, - 0.023794077336788177, - 0.003876563161611557, - -0.012792658992111683, - 0.016415240243077278, - 0.0014771042624488473, - -0.013267203234136105, - 0.014744307845830917, - -0.01582707278430462, - 0.007004548795521259, - -0.00957110058516264, - 0.005153155419975519, - 0.015733499079942703, - 0.0031279854010790586, - -0.01660238392651081, - -0.0001335701672360301, - -0.019209038466215134, - 0.02245733141899109, - -0.0011621335288509727, - -0.017845558002591133, - -0.01486461516469717, - -0.021147320047020912, - 0.03229578211903572, - 0.0004469744162634015, - 0.007612768094986677, - 0.007385521195828915, - 0.005186574067920446, - -0.013995730318129063, - -0.004003554116934538, - -0.014156139455735683, - -0.0026551117189228535, - -0.02125426009297371, - -0.0013551261508837342, - -0.0022390494123101234, - 0.0038130676839500666, - -0.008789104409515858, - -0.003223228733986616, - -0.01870107650756836, - -0.009938705712556839, - 0.016949938610196114, - -0.0014796106843277812, - 0.013688278384506702, - -0.0005676993168890476, - 0.026026442646980286, - -0.008702215738594532, - 0.022524168714880943, - -0.036439694464206696, - 0.0068641905672848225, - 0.017230655997991562, - -0.0010259525151923299, - -0.025251131504774094, - 0.013400877825915813, - -0.000507963472045958, - -0.014062567614018917, - 0.022256819531321526, - -0.006015356630086899, - 0.013106794096529484, - 0.005657777190208435, - -0.003993528429418802, - 0.0002312152792001143, - 0.006733857560902834, - -0.021374568343162537, - 0.02788452059030533, - -0.0053536673076450825, - 0.016388505697250366, - -0.008127415552735329, - -0.009911971166729927, - 0.02141466923058033, - 0.01676279492676258, - -0.00980503112077713, - 0.02412826381623745, - -0.0380437895655632, - -0.0032633310183882713, - 0.0005062925047241151, - 0.020879970863461494, - -0.004999429918825626, - -0.023112338036298752, - -0.023566830903291702, - 0.00792021956294775, - 0.016816264018416405, - -0.005784768145531416, - 0.010734070092439651, - -0.020091291517019272, - -0.004050340037792921, - -0.0005422175745479763, - 0.010446669533848763, - 0.009317119605839252, - 0.0144769586622715, - 0.009330486878752708, - 0.023259378969669342, - -0.003615897847339511, - 0.023005397990345955, - 0.0025314625818282366, - -0.020465580746531487, - -0.016695957630872726, - -0.02698890119791031, - -0.031894758343696594, - 0.0010125850094482303, - -0.014196242205798626, - 0.033124566078186035, - 0.0011780073400586843, - -0.019503124058246613, - -0.01993088237941265, - -0.005460607353597879, - -0.027336454018950462, - -0.023486625403165817, - -0.027403291314840317, - 0.01463736779987812, - 0.01275255624204874, - 0.02486347407102585, - -0.017083613201975822, - 0.010720702819526196, - 0.008167517371475697, - 0.039594415575265884, - -0.021027013659477234, - -0.002518095076084137, - 0.023606933653354645, - -0.03435437008738518, - 0.008327927440404892, - -0.014904716983437538, - -0.024542655795812607, - -0.012745872139930725, - 0.037776440382003784, - 0.013848687522113323, - -0.005674486514180899, - 0.04256198927760124, - -0.0032466216944158077, - -0.011208614334464073, - 0.025237763300538063, - 0.01184356864541769, - -0.012278011068701744, - 0.025598684325814247, - 0.032803744077682495, - -0.05502046272158623, - 0.009404007345438004, - 0.009337170049548149, - -0.002857294399291277, - -0.017711883410811424, - 0.007271897979080677, - 0.0008442386169917881, - -0.005647751502692699, - 0.010206054896116257, - -0.0016316655091941357, - 0.010279576294124126, - 0.002086994703859091, - -0.024462450295686722, - 0.018353521823883057, - -0.010333046317100525, - 0.010981367900967598, - 0.007158274296671152, - 0.0013651518383994699, - -0.0033953345846384764, - -0.01598748192191124, - 0.0023977879900485277, - -0.028419218957424164, - -0.0033819673117250204, - 0.012899598106741905, - -0.022390494123101234, - 0.008114048279821873, - -0.029301470145583153, - 0.0011337276082485914, - -0.01078754011541605, - 0.02384754829108715, - -0.03154720366001129, - -0.015399313531816006, - -0.024983782321214676, - -0.0038565120194107294, - 0.03649316355586052, - 0.0005451416946016252, - 0.01795249804854393, - -0.01752473972737789, - -0.009243598207831383, - -0.03323150426149368, - 0.0070379674434661865, - -0.007418939843773842, - -0.0172039195895195, - 0.014062567614018917, - -0.0075258794240653515, - -0.038685426115989685, - 0.010914530605077744, - -0.008608643896877766, - 0.015639927238225937, - -0.008321243338286877, - 0.0064932433888316154, - 0.21420016884803772, - 0.0003663519455585629, - -0.0042575360275805, - 0.021494874730706215, - -0.01977047324180603, - -0.018366890028119087, - 0.017738617956638336, - -0.0006316124345175922, - 0.000720171898137778, - 0.022350391373038292, - -0.030959036201238632, - -0.0013133528409525752, - -0.012806026265025139, - -0.0023643693421036005, - 0.03181455284357071, - -0.0027152651455253363, - -0.04662569984793663, - -0.007405572570860386, - 0.0010117496130988002, - 0.018166378140449524, - 0.021040381863713264, - -0.007452358491718769, - 0.010914530605077744, - -0.01686973311007023, - 0.010954633355140686, - 0.01034641359001398, - -0.0057112472131848335, - 0.014303181320428848, - 0.022510802373290062, - 0.014503693208098412, - -0.00723847933113575, - 0.015025024302303791, - 0.016241462901234627, - 0.011910405941307545, - 0.013126845471560955, - -0.002337634563446045, - 0.013741748407483101, - -0.019650164991617203, - 0.021601814776659012, - 0.021936001256108284, - -0.016321668401360512, - 0.006814062595367432, - -0.01546615082770586, - -0.0020101317204535007, - -0.0013952285517007113, - 0.03654663264751434, - 0.00314803677611053, - 0.01585380733013153, - 0.010366464965045452, - 0.0018229872221127152, - -0.02366040274500847, - -0.01932934671640396, - 0.010025594383478165, - 0.03368599712848663, - -0.007626135367900133, - 0.024408981204032898, - 0.022417228668928146, - 0.027670640498399734, - -0.011121726594865322, - 0.0010994735639542341, - -0.01335409190505743, - 0.022697946056723595, - -0.008648746646940708, - 0.02202957309782505, - -0.003310117172077298, - -0.011175195686519146, - 0.0026634663809090853, - 0.024930311366915703, - 0.0075258794240653515, - -0.012084183283150196, - 0.0041104936972260475, - -0.008702215738594532, - -0.021227525547146797, - 0.012973119504749775, - -0.03277701139450073, - -0.030317397788167, - 0.02820533886551857, - 0.005377060733735561, - 0.012298062443733215, - 0.039460740983486176, - -0.0027018976397812366, - 0.017230655997991562, - 0.010299627669155598, - -0.014570530503988266, - -0.009383956901729107, - -0.014329916797578335, - 0.025732358917593956, - 0.017457902431488037, - -0.004240826703608036, - -0.009009667672216892, - 0.0014336600434035063, - -0.0002980525605380535, - -0.01078754011541605, - -0.005674486514180899, - 0.012391635216772556, - 0.017711883410811424, - -0.005921784322708845, - 0.012618881650269032, - -0.006767276208847761, - 0.013601389713585377, - -0.026521040126681328, - 0.051839008927345276, - 0.018460461869835854, - -0.017163818702101707, - -0.008341294713318348, - 0.01387542299926281, - 0.005002771504223347, - -0.004130545072257519, - 0.02141466923058033, - -0.020104659721255302, - -0.010607078671455383, - -0.018500564619898796, - 0.010820958763360977, - 0.0031630750745534897, - -0.0009056453709490597, - 0.04012911394238472, - 0.017070244997739792, - -0.02486347407102585, - 0.014837879687547684, - -0.02807166427373886, - -0.01282607764005661, - -0.01674942672252655, - -0.009878552518785, - 0.02562541887164116, - -0.01645534299314022, - -0.014570530503988266, - -0.013133528642356396, - 0.0015923986211419106, - -0.02144140563905239, - -0.0013308976776897907, - 0.024048060178756714, - 0.014757675118744373, - 0.012358216568827629, - -0.03245619311928749, - 0.006850822828710079, - 0.012558728456497192, - 0.030103517696261406, - -0.01854066550731659, - -0.022684577852487564, - 0.019797207787632942, - -0.004150595981627703, - -0.024342143908143044, - -0.023941120132803917, - 0.001954990904778242, - -0.016321668401360512, - -0.008989616297185421, - -0.007699656765908003, - -0.019262509420514107, - -0.020024454221129417, - -0.024716433137655258, - -0.006546713411808014, - -0.030825361609458923, - -0.00025753246154636145, - -0.013313989154994488, - 0.031680878251791, - 0.0049693528562784195, - -0.0389527752995491, - -0.026480937376618385, - -0.02775084599852562, - 0.02066609263420105, - -0.038819100707769394, - -3.8927504647290334e-05, - 0.008648746646940708, - -0.021227525547146797, - -0.01963679865002632, - 0.01585380733013153, - -0.17174512147903442, - 0.011983927339315414, - 0.0028021535836160183, - -0.014877982437610626, - 0.009905287064611912, - -0.0005631042295135558, - -0.019075363874435425, - -0.009751562029123306, - -0.012177755124866962, - -0.007672921754419804, - -0.01273250486701727, - -0.0009916983544826508, - -0.023767342790961266, - -0.0011170182842761278, - 0.0022323657758533955, - 0.0169232040643692, - -0.018500564619898796, - 0.015265638940036297, - 0.018888220191001892, - -0.003953426145017147, - 0.004240826703608036, - -0.0037228374276310205, - 0.005223334766924381, - 0.011776731349527836, - -0.0014762687496840954, - -0.008642062544822693, - -0.03344538435339928, - 0.0052701206877827644, - -0.0004248345794621855, - -0.02019823156297207, - 0.0074991448782384396, - -0.00018390700279269367, - 0.04437996447086334, - -0.004959327634423971, - 0.011475963518023491, - -0.021334465593099594, - -0.015172066166996956, - -0.022724680602550507, - -0.012378267012536526, - 0.025371437892317772, - 0.04863081872463226, - 0.016361771151423454, - 0.013100109994411469, - -0.006740541197359562, - 0.0027386583387851715, - 0.004805601667612791, - 0.025972973555326462, - -0.008815839886665344, - -0.006703780964016914, - -0.009083189070224762, - 0.018139641731977463, - -0.02730971947312355, - 0.010754121467471123, - 0.010206054896116257, - 0.00569787947461009, - 0.032830480486154556, - 0.007545930799096823, - 0.0019783840980380774, - 0.011522750370204449, - 0.000807895848993212, - 0.0014111024793237448, - -0.02382081188261509, - 0.014316548593342304, - -0.02431540936231613, - -0.013420929200947285, - -0.021334465593099594, - -0.002041879342868924, - 0.008120731450617313, - -0.0066737039014697075, - 0.013995730318129063, - -0.0009023034945130348, - -0.026668081060051918, - -1.9946755855926313e-05, - 0.009898603893816471, - -0.020398743450641632, - -0.004802259616553783, - 0.0002940841077361256, - 0.012939700856804848, - 0.0015531317330896854, - -0.029167795553803444, - -0.02521102875471115, - 0.0358782596886158, - 0.008769053034484386, - -0.0038030422292649746, - -0.03360579162836075, - -0.025879401713609695, - -0.014062567614018917, - -0.005006113555282354, - -0.0036961024161428213, - -0.016174625605344772, - -0.0002320507337572053, - -0.03571785241365433, - -0.019369449466466904, - 0.005748007446527481, - -0.00013482336362358183, - 0.008241038769483566, - -0.0320284329354763, - 0.0009942047763615847, - -0.016789529472589493, - 0.004611773416399956, - 0.015947379171848297, - 0.0119772432371974, - -0.014156139455735683, - 0.03422069549560547, - 0.015586457215249538, - 0.020331906154751778, - -0.013781850226223469, - 0.012685718946158886, - 0.03152047097682953, - 0.010393199510872364, - -0.041278716176748276, - 0.0006103080813772976, - 0.023005397990345955, - 0.02549174427986145, - -0.005841579753905535, - 0.012899598106741905, - -0.003325155470520258, - -0.017016775906085968, - 0.01137570757418871, - 0.006052117329090834, - 0.04988735914230347, - 0.00828782469034195, - -0.027216147631406784, - 0.01207749918103218, - -0.0005292678251862526, - -0.013360776007175446, - -0.0588168203830719, - -0.01959669589996338, - 0.016027584671974182, - 0.015639927238225937, - 0.0023459892254322767, - 0.037321947515010834, - -0.007652870379388332, - 0.00483233667910099, - -0.02006455697119236, - 0.02335295081138611, - -0.0029491956811398268, - -0.043364036828279495, - -0.022136513143777847, - -0.008241038769483566, - 0.02882024273276329, - -0.015279006212949753, - -0.018781280145049095, - 0.001109499135054648, - -0.017738617956638336, - 0.017110347747802734, - 0.0015548026422038674, - 0.01230474654585123, - -0.009631254710257053, - -0.009731510654091835, - -0.018794648349285126, - 0.018901588395237923, - -0.03542376682162285, - 0.01568002998828888, - 0.019676899537444115, - 0.007011232431977987, - -0.013888790272176266, - -0.017123715952038765, - 0.016963306814432144, - -0.0218557957559824, - -0.0009649634594097733, - -0.004935934208333492, - -0.02820533886551857, - -0.01825994998216629, - 0.004130545072257519, - -0.029167795553803444, - 0.001746124355122447, - 0.008555173873901367, - 0.007599400822073221, - -0.02098691090941429, - -0.03079862706363201, - -0.004284270573407412, - -0.026360629126429558, - -0.005667802877724171, - 0.025451643392443657, - 0.007372153922915459, - -0.017832191661000252, - -0.0137952184304595, - -0.00640635471791029, - -0.01094794925302267, - 0.027857786044478416, - -0.0057246144860982895, - 0.002170541323721409, - -0.010921214707195759, - -0.026627978309988976, - 0.01077417191118002, - -0.00859527662396431, - 0.011643056757748127, - -0.029782699421048164, - 0.021976104006171227, - 0.011308870278298855, - -0.019569961354136467, - -0.023753974586725235, - -0.0023610275238752365, - 0.01115514524281025, - -0.01751137152314186, - 0.006533345673233271, - 0.012117601931095123, - -0.01613452285528183, - 0.025531847029924393, - -0.027082473039627075, - -0.010921214707195759, - -0.023647036403417587, - -0.033579058945178986, - 0.029007386416196823, - -0.011195247061550617, - -0.0007819963502697647, - -0.027069104835391045, - 0.012892914935946465, - -0.0095109473913908, - 0.015479518100619316, - -0.0035590860061347485, - 0.0024746509734541178, - -0.012157704681158066, - 0.017671780660748482, - -0.021227525547146797, - 0.014583897776901722, - 0.006720490287989378, - 0.014316548593342304, - -0.0165756493806839, - 0.006045433692634106, - -0.02156171202659607, - -0.009096556343138218, - -0.013180314563214779, - -0.03200169652700424, - 0.034033551812171936, - -0.03558417782187462, - -0.009383956901729107, - -0.07186346501111984, - 0.010092431679368019, - -0.005744665861129761, - -0.01213096920400858, - 0.0007903510122559965, - 0.008501703850924969, - 0.013013221323490143, - 0.0416797399520874, - 0.011402443051338196, - -0.003325155470520258, - -0.020933441817760468, - 0.004484782461076975, - -0.0007886801031418145, - 0.020011086016893387, - -0.020639358088374138, - -0.030504541471600533, - 0.029809433966875076, - -0.004822310991585255, - 0.012799342162907124, - 0.014276446774601936, - 0.00519994180649519, - -0.004725397098809481, - 0.027964724227786064, - 0.006172424182295799, - -0.01854066550731659, - 0.01259883027523756, - -0.01137570757418871, - -0.0057246144860982895, - -0.006807378493249416, - 0.0012866179458796978, - -0.0019366106716915965, - 0.0019650165922939777, - -0.00972482655197382, - 0.035343561321496964, - -0.008047210983932018, - -0.030237192288041115, - -0.0019683584105223417, - 0.05812171474099159, - 0.0033752834424376488, - 0.033552322536706924, - -0.027256250381469727, - -0.04341750964522362, - 0.013380826450884342, - -0.008875993080437183, - 0.012057448737323284, - -0.005032848566770554, - 0.005811503157019615, - 0.010700651444494724, - 0.028125135228037834, - -0.002329279901459813, - 0.016682589426636696, - 0.021227525547146797, - -0.015639927238225937, - -0.010005543008446693, - 0.016522180289030075, - -0.0008296179585158825, - -0.002564881229773164, - 0.00019184392294846475, - -0.009871868416666985, - 0.004036972764879465, - 0.028285544365644455, - -0.010279576294124126, - 0.0029074223712086678, - 0.025130823254585266, - 0.019262509420514107, - 0.005002771504223347, - -0.01676279492676258, - -0.0027420001570135355, - 0.024556022137403488, - -0.0009515960118733346, - -0.02534470334649086, - -0.00127325055655092, - -0.010700651444494724, - 0.03903298079967499, - -0.004611773416399956, - -0.00044112614705227315, - 0.010065697133541107, - 0.001831341884098947, - 0.001986738760024309, - 0.021802326664328575, - -0.0017979232361540198, - 0.022951927036046982, - -0.028740037232637405, - 0.008722267113626003, - 0.015265638940036297, - 0.009036402218043804, - -0.021962735801935196, - -0.005056241527199745, - 0.01932934671640396, - 0.011282135732471943, - 0.016842998564243317, - 0.02399458922445774, - -0.006403013132512569, - -0.0055441539734601974, - 0.01887485198676586, - -0.010206054896116257, - 0.01154948491603136, - -0.01752473972737789, - 0.004384526517242193, - 0.009136658161878586, - 0.028713302686810493, - 0.01676279492676258, - -0.007405572570860386, - -0.02214987948536873, - -0.02625369094312191, - 0.014837879687547684, - -0.017096981406211853, - -0.02126762829720974, - -0.013547919690608978, - 0.015118596144020557, - 0.005313565023243427, - 0.017751986160874367, - 0.008174201473593712, - -0.009036402218043804, - -0.029007386416196823, - 0.026427466422319412, - -0.023259378969669342, - -0.015025024302303791, - -0.02280488610267639, - 0.02986290492117405, - -0.0003559086180757731, - 0.016187993809580803, - 0.003833119058981538, - 0.004100468009710312, - 0.033097829669713974, - 0.021214157342910767, - -0.005744665861129761, - -0.03617234528064728, - -0.019957616925239563, - -0.007973689585924149, - 0.0073320516385138035, - 0.004197382368147373, - -0.020184863358736038, - -0.013654859736561775, - -0.024502553045749664, - -0.005490683950483799, - 0.013133528642356396, - 0.0070379674434661865, - 0.012003978714346886, - 0.1119658425450325, - 0.018594136461615562, - -0.00213043880648911, - 0.033712733536958694, - -0.010460036806762218, - -0.001700173714198172, - 0.0010877769673243165, - 0.0088292071595788, - -0.042455051094293594, - -0.03226904571056366, - 0.021521609276533127, - 0.00024186747032217681, - 0.0033719416242092848, - -0.0044881245121359825, - 0.0033418647944927216, - -0.005838237702846527, - -0.015573089942336082, - 0.020759664475917816, - -0.012531992979347706, - 0.020278435200452805, - 0.032803744077682495, - -0.011676475405693054, - -0.0013024918735027313, - 0.03710806742310524, - -0.026601243764162064, - 0.004167305305600166, - 0.02400795742869377, - 0.004290954675525427, - -0.006800694856792688, - -0.01796586625277996, - -0.00836134608834982, - 0.02005118876695633, - -0.05157165974378586, - -0.013227101415395737, - 0.004615115467458963, - -0.009136658161878586, - -0.006439773365855217, - 0.007826647721230984, - 0.020305171608924866, - 0.008728951215744019, - -0.0032065194100141525, - 0.0008981261635199189, - -0.009156709536910057, - -0.028472688049077988, - 0.0009190128184854984, - -0.008047210983932018, - -0.00713153975084424, - -0.0006165740778669715, - 0.022109778597950935 - ], - "sparse": "SparseEmbedding(values=array([1.57318436, 1.94206897, 1.94206897, 1.83452769, 1.83452769,\n 1.83452769, 1.94206897, 1.57318436, 1.57318436, 1.57318436,\n 1.57318436, 1.57318436, 1.57318436, 1.57318436, 1.57318436,\n 1.57318436, 1.57318436, 1.57318436, 1.57318436]), indices=array([ 674462543, 685289368, 2124172637, 22476906, 164058840,\n 2098979715, 474071269, 509972577, 1087278016, 1034394088,\n 1714869808, 648501015, 1570547443, 575755316, 1356360172,\n 1701593959, 1112552363, 1995714065, 2017215381]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 4, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 27 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000005.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000005.json deleted file mode 100644 index 0967cb3194564de8a0445b412f6fda30b4e37adb..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000005.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000005", - "content": "Schlussbericht - Kurzbericht", - "embedding": { - "dense": [ - -0.0009387987665832043, - 0.004084541462361813, - 0.012631404213607311, - -0.03179807588458061, - -0.011417343281209469, - 0.012650777585804462, - -0.005598889198154211, - -0.001988994190469384, - 0.008201371878385544, - -0.0036841596011072397, - 0.022963840514421463, - 0.0337095744907856, - -0.029344120994210243, - 0.014207101427018642, - -0.005072580650448799, - 0.0004520441289059818, - 0.026683518663048744, - -0.0219564288854599, - 0.00172906881198287, - 0.0024555681739002466, - -0.010119330137968063, - 0.0011995313689112663, - -0.01237955130636692, - -0.0020390418358147144, - 0.010067668743431568, - 0.00022420581080950797, - 0.0025669648312032223, - -0.03166892006993294, - -0.0029043834656476974, - -0.0064997486770153046, - 0.0022247028537094593, - -0.014026283286511898, - -0.013219061307609081, - -0.007633087690919638, - -0.012450587004423141, - 0.011830640025436878, - -0.0003257139469496906, - -0.0008419321966357529, - 0.022343894466757774, - -0.005201736465096474, - -0.006005729082971811, - 0.011501293629407883, - 0.0007107586716301739, - -0.006851697340607643, - 0.011611076071858406, - -0.007762243505567312, - 0.04091645032167435, - 0.013038244098424911, - -0.025469457730650902, - 0.019166670739650726, - -0.012121240608394146, - 0.021711032837629318, - -0.01092655211687088, - -0.00847905594855547, - -0.023118827491998672, - 0.0006441628793254495, - -0.012708897702395916, - 0.01914083957672119, - -0.019954519346356392, - -0.014956202358007431, - -0.004688343498855829, - -7.157785603340017e-06, - -0.028207553550601006, - 0.0035097997169941664, - -0.01791386306285858, - -0.014956202358007431, - -0.0254307109862566, - 0.017810538411140442, - -0.02614106610417366, - 0.01597653143107891, - 0.02639937587082386, - 0.042156342417001724, - 0.020561549812555313, - -0.0011309175752103329, - 0.041949693113565445, - -0.0023587015457451344, - 0.014891625382006168, - 0.014788300730288029, - 0.007749327924102545, - -0.004862703382968903, - 0.010500338859856129, - 0.00034508726093918085, - -0.024875342845916748, - 0.009325024671852589, - 0.03143643960356712, - 0.015705304220318794, - -0.01991577260196209, - 0.018469231203198433, - -0.03890162706375122, - -0.0158215444535017, - -0.008711536414921284, - 0.027742594480514526, - 0.001809790963307023, - 0.023273814469575882, - 0.006079993676394224, - -0.0023748460225760937, - -0.005698984954506159, - 0.017035605385899544, - -0.006470688618719578, - -0.03252134472131729, - -0.004762607626616955, - -0.0009315337520092726, - -0.010687614791095257, - 0.0021197639871388674, - -0.012269768863916397, - -0.01396170537918806, - 0.001629780512303114, - 0.010907178744673729, - 0.016673970967531204, - -0.004878847859799862, - -0.020639043301343918, - 0.019851194694638252, - -0.006193004548549652, - -0.018766289576888084, - 0.021207327023148537, - -0.019579967483878136, - 0.025469457730650902, - -0.03187556937336922, - 0.004358997102826834, - -0.015033695846796036, - 0.03642183914780617, - 0.00045486941235139966, - 0.0002063460269710049, - -0.024694524705410004, - 0.010887805372476578, - 0.009990175254642963, - -0.00952521525323391, - -0.005011232104152441, - -0.016480237245559692, - -0.010429304093122482, - -0.0013577467761933804, - 0.0035065708216279745, - 0.0061348844319581985, - -0.00900859385728836, - 0.0017532854108139873, - -0.0001643705036258325, - -0.029189134016633034, - 0.011178405024111271, - -0.03608603775501251, - -0.04714174568653107, - 0.021129833534359932, - 0.02364836446940899, - -0.02349337935447693, - -0.025081990286707878, - 0.017939694225788116, - 0.00023530510952696204, - 0.004827185533940792, - 0.007633087690919638, - -0.006896901875734329, - -0.00725207943469286, - 0.021775610744953156, - -0.023312561213970184, - 0.036835137754678726, - -0.0073424880392849445, - -0.010229112580418587, - -0.004862703382968903, - 0.008950473740696907, - 0.012437671422958374, - -0.03580189496278763, - -0.0015086972853168845, - 0.009886850602924824, - 0.010300148278474808, - 0.021310651674866676, - -0.0026589881163090467, - 0.005014460999518633, - 0.026941830292344093, - 0.007697665598243475, - -0.0024620259646326303, - 0.011397969909012318, - -0.0005020918906666338, - 0.0006873492384329438, - 0.03053235076367855, - -0.01991577260196209, - 0.02506907470524311, - -0.013690479099750519, - 0.013051159679889679, - -0.004307334776967764, - -0.004630223382264376, - -0.011191320605576038, - -0.02180144190788269, - -0.024939920753240585, - -0.0056118047796189785, - 0.0076847500167787075, - 0.009822272695600986, - -0.016092771664261818, - -0.008278865367174149, - 0.01669980213046074, - 0.008872980251908302, - -0.0022424617782235146, - 0.0072068748995661736, - 0.0006647470290772617, - 0.017216423526406288, - 0.00783973652869463, - 0.004400972276926041, - -0.6662355661392212, - -0.01832715980708599, - -0.018055934458971024, - -0.0073683192022144794, - 0.0078913988545537, - 0.018365906551480293, - 0.015098273754119873, - -8.84916735230945e-05, - 0.02548237331211567, - 0.04703842103481293, - 0.0011527125025168061, - 0.0011890374589711428, - 0.0007325536571443081, - -0.01751348003745079, - -0.01266369316726923, - -0.007587883621454239, - -0.02864668145775795, - -0.009744780138134956, - -0.013432168401777744, - -0.001626551616936922, - -0.008065758273005486, - 0.01883086748421192, - 0.0076201725751161575, - -0.006896901875734329, - 0.0003014972899109125, - 0.007658918853849173, - 0.0034549087285995483, - -0.023622535169124603, - 0.014336256310343742, - 0.0022731360513716936, - -0.024500790983438492, - -0.004643138963729143, - -0.011727316305041313, - 0.005011232104152441, - 0.03890162706375122, - 0.02655436284840107, - -0.014465412124991417, - -0.007271452806890011, - 0.012153529562056065, - 0.01939915120601654, - -0.03329627960920334, - 0.005008003208786249, - -0.014103776775300503, - 0.005847513675689697, - -0.01138505432754755, - -0.016247756779193878, - 0.029834911227226257, - 0.016454406082630157, - 0.015899037942290306, - -0.0033031508792191744, - -0.0012423141160979867, - -0.0014021439710631967, - -0.0041975523345172405, - 0.01619609445333481, - 0.0034484509378671646, - 0.0028753234073519707, - 0.012114782817661762, - -0.004275045823305845, - -0.02271844632923603, - 0.021052340045571327, - -0.009718948975205421, - 0.02477201819419861, - -0.01699685864150524, - -0.005308289546519518, - -0.021220242604613304, - 0.020639043301343918, - -0.005434216000139713, - -0.02717430889606476, - 0.029602432623505592, - -0.014387918636202812, - -0.005925006698817015, - 0.010681157000362873, - -0.004891762975603342, - 0.012030831538140774, - 0.025701936334371567, - 0.006690253037959337, - -0.003677701810374856, - 0.0032272720709443092, - -0.010170992463827133, - 0.00126410904340446, - 0.0005876573850400746, - -0.019218333065509796, - -0.013767972588539124, - 0.004430032335221767, - 0.009247531183063984, - -0.01751348003745079, - -0.033735405653715134, - -0.01823675073683262, - -0.0016313949599862099, - 0.020535718649625778, - 0.014077945612370968, - 0.02905998006463051, - -0.0369642935693264, - 0.023054249584674835, - 0.006167173385620117, - 0.044093675911426544, - -0.0101839080452919, - 0.024681609123945236, - 0.010952383279800415, - -0.046082668006420135, - -0.016273587942123413, - 0.0007172164623625576, - 0.0076201725751161575, - 0.005837826989591122, - -0.01185001339763403, - 0.007064803969115019, - -0.007142296992242336, - -0.015408246777951717, - 0.03544025868177414, - -0.018624218180775642, - 0.008827775716781616, - 0.014220016077160835, - 0.002791372360661626, - -0.0029625033494085073, - -0.013206145726144314, - -0.024939920753240585, - 0.03825584799051285, - 0.0007285175379365683, - 0.03027404099702835, - -0.008659874089062214, - 0.0157827977091074, - 0.025559866800904274, - 0.029964067041873932, - -0.025353217497467995, - 0.012495791539549828, - 0.006435170769691467, - 0.005188820883631706, - -0.0012245551915839314, - -0.024371635168790817, - -0.03298630565404892, - 0.0062963287346065044, - 0.02441038191318512, - 0.02833670936524868, - 0.012166444212198257, - -0.007878483273088932, - 0.0016838643932715058, - 0.03722260519862175, - -0.003545317566022277, - 0.00450429692864418, - -0.015511571429669857, - -0.003961843904107809, - 0.008388647809624672, - -0.0013076990144327283, - -0.027742594480514526, - -0.006632132921367884, - -0.04104560613632202, - -0.0027219513431191444, - 0.0008734138100408018, - -0.01706143654882908, - 0.03414870426058769, - -0.023312561213970184, - -0.01803010329604149, - 0.007955976761877537, - 0.009447721764445305, - 0.03572440147399902, - -0.008085131645202637, - -0.021775610744953156, - -0.023880844935774803, - -0.015124104917049408, - -0.029369952157139778, - 0.019773701205849648, - 0.02333839237689972, - -0.021155664697289467, - -0.01383255049586296, - -0.017642635852098465, - 0.003958615008741617, - 0.020910268649458885, - 0.0039037237875163555, - -0.011682111769914627, - -0.024035831913352013, - 0.013432168401777744, - -0.010629494674503803, - -0.0097770681604743, - -0.007452270016074181, - -0.004898220766335726, - 0.0035324019845575094, - -0.018301328644156456, - -0.02441038191318512, - -0.010138703510165215, - -0.008924642577767372, - -0.0017403698293492198, - 0.015369500033557415, - -0.0022650640457868576, - -0.00957687757909298, - -0.004152348265051842, - 0.019489560276269913, - 0.024927005171775818, - 0.012812222354114056, - -0.021814357489347458, - 0.0007055117166601121, - 0.018301328644156456, - 0.014336256310343742, - -0.01704852096736431, - 0.006961479317396879, - -0.031229790300130844, - 0.01588612236082554, - -0.024229565635323524, - 0.021013593301177025, - -0.007484558969736099, - 0.010939467698335648, - 0.03936658427119255, - 0.011559413745999336, - 0.0019244163995608687, - 0.009337940253317356, - 0.005792622454464436, - -0.018443400040268898, - 0.02420373447239399, - -0.0064545441418886185, - 0.03425202891230583, - 0.006903359666466713, - 0.024074578657746315, - -0.02655436284840107, - -0.029705757275223732, - -0.005931464489549398, - -0.003735821694135666, - 0.029473276808857918, - 0.013793803751468658, - 0.0023102683480829, - -0.015860291197896004, - 0.0027687703259289265, - 0.030454859137535095, - -0.02394542284309864, - 0.016673970967531204, - -0.01905043050646782, - 0.016557730734348297, - -0.0032692477107048035, - 0.000578374310862273, - 0.03099731169641018, - 0.014439580962061882, - 0.01283805351704359, - -0.02119441144168377, - 3.395376188564114e-05, - 0.004200781229883432, - -0.0028059023898094893, - 0.009221700020134449, - 0.025598613545298576, - 0.013076990842819214, - -0.024629946798086166, - 0.021827273070812225, - 0.017474733293056488, - -0.013793803751468658, - 0.01335467491298914, - -0.005153303034603596, - 0.0019357175333425403, - 0.029757419601082802, - -0.029240796342492104, - 0.04078729450702667, - 0.021943513303995132, - -0.0019809219520539045, - -0.0009081243770197034, - -0.02043239399790764, - 0.02676101215183735, - -0.002290894975885749, - 0.0047690654173493385, - 0.022783024236559868, - -0.005385783035308123, - 0.03228886425495148, - 0.022356810048222542, - -0.008472598157823086, - 0.02849169448018074, - 0.0010897492757067084, - 0.004420345649123192, - 0.015175767242908478, - 0.006483604200184345, - -0.013871297240257263, - 0.008472598157823086, - 0.00777515908703208, - -0.01614443212747574, - 0.003390330821275711, - -0.021168580278754234, - 0.027639269828796387, - 0.00801409687846899, - 0.004126517102122307, - 0.0009016665862873197, - -0.0018307786667719483, - -0.016841871663928032, - 0.008801944553852081, - 0.017539311200380325, - 0.015201598405838013, - 0.003198212245479226, - -0.025417795404791832, - -0.01121069397777319, - 0.01695811189711094, - 0.0230284184217453, - -0.011146116070449352, - -0.021026508882641792, - -0.008614669553935528, - 0.037713393568992615, - -0.019476644694805145, - 0.017074352130293846, - -0.015033695846796036, - -0.01108153909444809, - -0.001997066428884864, - -0.012218106538057327, - 0.002232775092124939, - -2.7748244974645786e-05, - 0.008717994205653667, - -0.007529763504862785, - -0.007400608155876398, - -0.00031925615621730685, - -0.004894991870969534, - -0.010713445954024792, - 0.01735849492251873, - -0.02456536889076233, - 0.041639722883701324, - 0.013328843750059605, - -0.019282910972833633, - -0.023622535169124603, - 0.0071616703644394875, - -0.006176860071718693, - -0.0068904440850019455, - -0.016118600964546204, - -0.018146343529224396, - 0.012624946422874928, - 0.0025588925927877426, - 0.008136793971061707, - -0.004594705533236265, - 0.0023183405864983797, - 0.032857149839401245, - -0.012373093515634537, - 0.004081312566995621, - -0.014904540032148361, - -0.018805036321282387, - 0.009802899323403835, - 0.035156115889549255, - 0.03957323357462883, - -0.0009299193625338376, - 0.03146227076649666, - -0.004614078905433416, - -0.007833278737962246, - -0.031333114951848984, - -0.050887253135442734, - 0.007323114667087793, - -0.012825137935578823, - -0.006005729082971811, - -0.010829685255885124, - 0.0001813221606425941, - -0.001758128753863275, - 0.02266678400337696, - -0.019037514925003052, - 0.005001545418053865, - 0.0018517664866521955, - 0.009221700020134449, - 0.003571148496121168, - 0.01623484119772911, - -0.009912681765854359, - 0.007678292226046324, - 0.03569857031106949, - 0.01064241025596857, - -0.03337377309799194, - 0.011953338049352169, - 0.00878257118165493, - 0.0033677287865430117, - -0.02078111469745636, - 0.002786529017612338, - 0.02818172238767147, - 0.019631629809737206, - 0.015589063987135887, - -0.04094228148460388, - 0.008227203041315079, - 0.00731665687635541, - -0.02645103819668293, - 0.009318566881120205, - 0.022795939818024635, - 0.007897856645286083, - 0.003761652857065201, - 0.008627585135400295, - -0.020303238183259964, - 0.012082493863999844, - -0.0013698551338165998, - -0.00794306118041277, - 0.020238660275936127, - -0.003555004019290209, - -0.02363545075058937, - 0.002050342969596386, - -0.006935648620128632, - -0.01837882213294506, - 0.014426665380597115, - -0.020871523767709732, - -0.004052252508699894, - -0.019722038879990578, - 0.0032950788736343384, - 0.018882527947425842, - 0.0022263173013925552, - -0.019889941439032555, - -0.009815814904868603, - 0.0010953997261822224, - -0.005983126815408468, - -0.008401562459766865, - -0.014994949102401733, - -0.023105911910533905, - 0.007717038970440626, - -0.03161725774407387, - 0.005198507569730282, - -0.0015167695237323642, - -0.011611076071858406, - -0.0174101572483778, - 0.009305651299655437, - 0.0024620259646326303, - 0.01072636153548956, - -0.006121968850493431, - -0.015589063987135887, - 0.001393264508806169, - 0.013141568750143051, - -0.028155891224741936, - -0.005298602860420942, - -0.018365906551480293, - -0.04329290986061096, - -0.01673854887485504, - 0.009467095136642456, - -0.03360624983906746, - 0.008291780948638916, - -0.017022689804434776, - 0.02231806330382824, - -0.02246013469994068, - 0.003117490094155073, - 0.016247756779193878, - 0.0013625901192426682, - -0.015020780265331268, - 0.003123947884887457, - -0.012605573050677776, - 0.01813342794775963, - -0.009912681765854359, - 0.008944015949964523, - 0.034587834030389786, - -0.0254307109862566, - -0.012153529562056065, - 0.003755195066332817, - 0.0012552296975627542, - -0.004287961404770613, - -0.014026283286511898, - 0.017384326085448265, - -0.0056344070471823215, - 0.02446204423904419, - 0.0433187410235405, - -0.03236635774374008, - -0.017642635852098465, - 0.017345579341053963, - -0.0067548309452831745, - 0.02262803725898266, - -0.020083675161004066, - 0.02165937051177025, - 0.008511344902217388, - -0.023867929354310036, - -0.008304696530103683, - -0.010887805372476578, - 0.02691599912941456, - 0.032598838210105896, - -0.005234024953097105, - 0.0262443907558918, - 0.022537628188729286, - -0.01939915120601654, - -0.019980350509285927, - -0.0012487719068303704, - 0.009551046416163445, - 0.010739277116954327, - 0.0066837952472269535, - 0.005466504953801632, - -0.022705530747771263, - -0.00013591595052275807, - -0.02026449143886566, - 0.009757695719599724, - -0.010648868046700954, - -0.0044042011722922325, - -0.024629946798086166, - -0.006767746061086655, - -0.01920541748404503, - 0.019825363531708717, - -0.0008378960774280131, - -0.016325250267982483, - -0.021052340045571327, - 0.01330301258713007, - -0.003416161984205246, - 0.019644545391201973, - -0.02109108678996563, - -0.0007269030902534723, - -0.029421614482998848, - 0.007077719550579786, - 0.01823675073683262, - -0.0321597121655941, - -0.010416388511657715, - -0.017590973526239395, - 0.009228157810866833, - 0.034536171704530716, - -0.007826820947229862, - 0.0046334522776305676, - -0.004546272102743387, - -0.0047948965802788734, - -0.007355403620749712, - 0.001733912155032158, - 0.020664874464273453, - -0.0158215444535017, - -0.024642862379550934, - 0.006761288736015558, - 0.013076990842819214, - 0.016506068408489227, - -0.004894991870969534, - -0.0011599775170907378, - 0.009944970719516277, - 0.022912180051207542, - -0.013574238866567612, - -0.012185817584395409, - -0.00036890030605718493, - 0.00029604852898046374, - -0.006344762165099382, - 0.01879212073981762, - 0.01673854887485504, - 0.006741915363818407, - -0.027587607502937317, - -0.014517074450850487, - 0.025650275871157646, - -0.023015502840280533, - -0.00404579471796751, - -0.0030077078845351934, - 0.01092655211687088, - -0.0307906623929739, - 0.029654094949364662, - -0.0003713219484779984, - -0.03575023263692856, - -0.013193230144679546, - 0.009563961997628212, - -0.014426665380597115, - 0.005440673790872097, - 0.029964067041873932, - -0.005101640708744526, - 0.010080584324896336, - 0.004216925706714392, - 0.002203715033829212, - 0.025043243542313576, - 0.011023418977856636, - 0.03347709774971008, - -0.027019323781132698, - 0.016867702826857567, - -0.019334573298692703, - -0.018365906551480293, - -0.019541220739483833, - -0.004962798673659563, - -0.018624218180775642, - 0.032598838210105896, - 0.002705806866288185, - -0.012269768863916397, - 0.03820418566465378, - 0.00404579471796751, - -0.0037648817524313927, - -0.007432897109538317, - -0.020199915394186974, - 0.01690644957125187, - 0.0035679196007549763, - 0.04616016149520874, - 0.01706143654882908, - -0.004885305184870958, - -0.03383873030543327, - -0.04840746894478798, - -0.0008427394204773009, - -0.008362816646695137, - 0.019115008413791656, - 0.033322110772132874, - 0.002752625849097967, - -0.0010146775748580694, - 0.01638982817530632, - 0.03670598194003105, - -0.012812222354114056, - -0.017642635852098465, - 0.020613212138414383, - 0.008291780948638916, - -0.006490061990916729, - -0.022292232140898705, - 0.011875844560563564, - -0.006787119433283806, - 0.021711032837629318, - -0.013445083983242512, - -0.03184973821043968, - 0.00593469338491559, - -0.0036292686127126217, - 0.019463729113340378, - 0.03110063634812832, - -0.005918548908084631, - 0.027251802384853363, - 0.010971756651997566, - -0.02052280306816101, - -0.006125197745859623, - -0.015847375616431236, - -0.012650777585804462, - 0.003123947884887457, - -0.03717094287276268, - 0.02359670400619507, - -0.024371635168790817, - -0.018572555854916573, - -0.01602819375693798, - 0.014155439101159573, - -0.02869834378361702, - 0.008634042926132679, - 0.003971530590206385, - 0.01751348003745079, - -0.016015278175473213, - -0.0450235940515995, - 0.006948563735932112, - 0.0027203368954360485, - 0.02797507308423519, - -0.008401562459766865, - 0.010868432000279427, - -0.027432620525360107, - -0.011301103048026562, - -0.012063120491802692, - -0.0032466454431414604, - 0.00714875478297472, - -0.00268159038387239, - -0.03272799402475357, - -0.0028527213726192713, - -0.023351307958364487, - 0.009337940253317356, - -0.012650777585804462, - -0.001761357649229467, - -0.006825866177678108, - -0.02098776213824749, - 0.0011914591304957867, - 0.003881121752783656, - 0.013690479099750519, - -0.019579967483878136, - -0.011475463397800922, - -0.0002195642882725224, - 0.0307906623929739, - -0.04050315171480179, - -0.007219790481030941, - 0.01345799956470728, - -0.01174023188650608, - -0.01863713376224041, - 0.016867702826857567, - 0.006535266526043415, - -0.019437897950410843, - 0.03130728378891945, - -0.02712264657020569, - -0.041381411254405975, - 0.0082982387393713, - -0.01664813980460167, - 0.006486833095550537, - -0.002676747040823102, - -0.015421162359416485, - -0.005918548908084631, - -0.013509661890566349, - -0.012960750609636307, - -0.008110962808132172, - -0.006021873559802771, - 0.023041334003210068, - 0.002155281836166978, - -0.012250395491719246, - 0.012224564328789711, - -0.028052566573023796, - 0.017384326085448265, - 0.016661055386066437, - 0.007174585945904255, - 0.008304696530103683, - -0.03350292891263962, - 0.012140613980591297, - 0.00783973652869463, - 0.020354900509119034, - -0.010939467698335648, - -0.006008957978338003, - 0.00032732836552895606, - -0.022188909351825714, - -4.502783122006804e-05, - 0.004998316522687674, - 0.001574889407493174, - -0.01278639119118452, - 0.0025572781451046467, - -0.015537402592599392, - -0.024216650053858757, - 0.006441628560423851, - -0.001861453172750771, - 0.00023147081083152443, - -0.0005311518325470388, - 0.003256332129240036, - -0.010448676533997059, - -0.024332888424396515, - 0.008078673854470253, - 0.034742821007966995, - 0.041433073580265045, - -0.014684976078569889, - -0.01644149050116539, - 0.008866522461175919, - -0.031281452625989914, - 0.00772349676117301, - -0.015356584452092648, - 0.012876799330115318, - 0.003049683291465044, - 0.02083277702331543, - 0.01383255049586296, - 0.033322110772132874, - 0.004229841288179159, - 0.01571821980178356, - -0.019644545391201973, - -0.011914591304957867, - 0.023545041680336, - -0.0017968753818422556, - 0.02792341075837612, - -0.015950700268149376, - -0.03345126658678055, - 0.005989584606140852, - 0.04685760289430618, - 0.0008451610920019448, - -0.020561549812555313, - 0.010300148278474808, - 0.021310651674866676, - -0.003751966170966625, - 0.009925597347319126, - 0.00494019640609622, - 0.007749327924102545, - 0.006603072863072157, - 0.002757469192147255, - 0.0016346238553524017, - 0.010971756651997566, - 0.015369500033557415, - -0.012476418167352676, - -0.03773922473192215, - 0.0014554206281900406, - 0.01787511631846428, - -0.0033515843097120523, - -0.002791372360661626, - 0.005379325244575739, - -0.0038197727408260107, - -0.021478554233908653, - -0.0025863382034003735, - -0.0003626443212851882, - 0.016170263290405273, - 0.00855009164661169, - 0.00750393234193325, - -0.016325250267982483, - -0.0363701768219471, - -6.44263782305643e-05, - 0.01562781073153019, - -0.04799417033791542, - 0.003358042100444436, - 0.02257637493312359, - -0.004320250358432531, - 0.013716310262680054, - -0.004623765591531992, - -0.004798125475645065, - -0.0036615573335438967, - -0.00033479518606327474, - -0.024797849357128143, - -0.0020600296556949615, - -0.0158215444535017, - 0.00819491408765316, - 0.011798352003097534, - -0.004168492741882801, - 0.00262992805801332, - 0.0076847500167787075, - -0.012528079561889172, - -0.004652825649827719, - -0.008446766994893551, - -0.015692388638854027, - -0.031074805185198784, - -0.0070002260617911816, - 0.011456090025603771, - 0.004891762975603342, - 0.007329572457820177, - -0.022485965862870216, - -0.017668467015028, - -0.04019318148493767, - 0.015020780265331268, - 0.21119500696659088, - -0.03445867821574211, - -0.0034226197749376297, - 0.03590521961450577, - -0.01710018329322338, - 0.0012487719068303704, - 0.006787119433283806, - -0.010319521650671959, - 0.008717994205653667, - 0.011707942932844162, - -0.014439580962061882, - 0.001578925526700914, - 0.018094681203365326, - 0.0015175767475739121, - 0.012179359793663025, - -0.020212829113006592, - -0.032805487513542175, - 0.0019599341321736574, - -0.007813905365765095, - 0.010351810604333878, - 0.005640864837914705, - -0.018262581899762154, - -0.011643365025520325, - -0.015653641894459724, - 0.021788526326417923, - 0.001546636689454317, - 0.003048068843781948, - 0.0029076123610138893, - 0.017319748178124428, - 0.01555031817406416, - 0.0034452220425009727, - -0.0059766690246760845, - 0.017539311200380325, - -0.015046611428260803, - -0.014103776775300503, - 0.012340804561972618, - 0.018107596784830093, - 0.0035033419262617826, - 0.003732592798769474, - 0.02359670400619507, - 0.006812950596213341, - -0.0058894893154501915, - 0.00878257118165493, - -0.03197889402508736, - 0.0100547531619668, - 0.015911953523755074, - 0.020806945860385895, - -0.0016919365152716637, - 0.006748373154550791, - 0.01905043050646782, - -0.02771676331758499, - 0.005734502803534269, - 0.027845917269587517, - 0.028465863317251205, - -0.012340804561972618, - -0.0004023999790661037, - 0.007155212573707104, - 0.0015393716748803854, - -0.02563736028969288, - -0.0040619391947984695, - -0.019528305158019066, - 0.02501741237938404, - 0.0007640352705493569, - 0.00858238060027361, - -0.0092410733923316, - 0.026231475174427032, - 0.002231160644441843, - -0.0027962157037109137, - -0.0009541359613649547, - -0.014839963056147099, - -0.01607985608279705, - -0.01843048445880413, - -0.03587938845157623, - 0.008627585135400295, - -0.043525390326976776, - -0.03210804983973503, - 0.030248209834098816, - 0.015459909103810787, - 0.003280548844486475, - 0.013651732355356216, - -0.019360404461622238, - 0.01115903165191412, - -0.027148477733135223, - -0.019954519346356392, - -0.016661055386066437, - -0.026257306337356567, - 0.008181998506188393, - 0.011908133514225483, - -0.007258537225425243, - -0.00587011594325304, - -0.0119016757234931, - -0.004078083671629429, - 0.004346081521362066, - -0.014207101427018642, - 0.016790209338068962, - 0.011346307583153248, - -0.006780661642551422, - 0.01761680468916893, - 0.0026024826802313328, - 0.004139432683587074, - -0.02593441680073738, - 0.07439354807138443, - 0.02271844632923603, - -0.012599115259945393, - -0.0246170312166214, - -0.008911726996302605, - -0.03396788612008095, - 0.0246170312166214, - 0.005053207278251648, - -0.014142523519694805, - -0.009047340601682663, - -0.01915375515818596, - 0.015795713290572166, - -0.002492700470611453, - -0.012928461655974388, - -0.0024636404123157263, - -0.00252176052890718, - -0.002836576895788312, - -0.013135110959410667, - -0.018159257248044014, - -0.015020780265331268, - -0.01628650352358818, - -0.006144571118056774, - 0.002730023581534624, - -0.01680312491953373, - -0.007562052458524704, - 0.000838703301269561, - 0.005004774313420057, - -0.0072779105976223946, - -0.008117420598864555, - 0.0374809168279171, - -0.02451370656490326, - 0.022602206096053123, - -0.013612985610961914, - -0.021478554233908653, - 0.01874045841395855, - 0.012476418167352676, - 0.00035598475369624794, - 0.0046205366961658, - -0.003697075182572007, - 0.025198230519890785, - -0.004714174196124077, - -0.010991130024194717, - -0.012340804561972618, - -0.007633087690919638, - 0.004436490125954151, - 0.024449128657579422, - 0.01571821980178356, - -0.00021411554189398885, - -0.00583459809422493, - -0.010610121302306652, - -0.02138814516365528, - -0.016867702826857567, - -0.015085358172655106, - 0.035517752170562744, - 0.00900859385728836, - -0.013290097005665302, - -0.027380958199501038, - -0.007432897109538317, - 0.013509661890566349, - -0.0011599775170907378, - -0.0003000846481882036, - 0.01429750956594944, - -0.019541220739483833, - -0.006909817457199097, - 0.002466869307681918, - -0.16480237245559692, - 0.01772012934088707, - 0.013742141425609589, - -0.0174101572483778, - 0.010138703510165215, - 0.00021492276573553681, - 0.018507977947592735, - 0.005692527163773775, - -0.0007777580758556724, - -0.00032409949926659465, - -0.0008189263753592968, - 0.011152573861181736, - -0.020897353067994118, - 0.00336449989117682, - -0.004346081521362066, - -0.009253988973796368, - -0.02532738633453846, - 0.012650777585804462, - 0.019115008413791656, - 0.015421162359416485, - 0.006286642048507929, - -0.022912180051207542, - 0.0027187224477529526, - -0.003961843904107809, - 0.006218835711479187, - 0.004933738615363836, - -0.029938235878944397, - 0.012457044795155525, - -0.019282910972833633, - 0.003361270995810628, - -0.02797507308423519, - 0.02660602517426014, - 0.0230284184217453, - 0.00853071827441454, - -0.021517300978302956, - -0.008207829669117928, - -0.029473276808857918, - 0.014129607938230038, - -0.013987536542117596, - 0.03231469541788101, - 0.01434917189180851, - 0.029757419601082802, - -0.012185817584395409, - 0.005014460999518633, - -0.023725857958197594, - -0.001730683259665966, - -0.003435535356402397, - 0.014542905613780022, - 0.0017984898295253515, - 0.0008839077199809253, - 0.00913774874061346, - -0.02828504703938961, - 0.021362314000725746, - -0.004775523208081722, - 0.00957687757909298, - 0.01787511631846428, - 0.022330978885293007, - -0.012121240608394146, - 0.0030254668090492487, - 0.019011683762073517, - -0.03022237867116928, - -0.012172902002930641, - -0.015330753289163113, - 0.010319521650671959, - -0.018055934458971024, - -0.017448903992772102, - -0.016673970967531204, - -0.00027687702095136046, - -0.004465550184249878, - 0.017242254689335823, - -0.0055246250703930855, - -0.0009759309468790889, - -0.00785910990089178, - -0.023855013772845268, - -0.006761288736015558, - 0.009047340601682663, - -0.008750282227993011, - 0.0033741865772753954, - -0.006761288736015558, - 0.019670376554131508, - -0.007239163853228092, - 0.04241465404629707, - -0.01174023188650608, - -0.028775837272405624, - 0.007736412342637777, - 0.006935648620128632, - 0.007613714784383774, - 0.02470744028687477, - 0.023984169587492943, - -0.008059300482273102, - 0.012101867236196995, - -0.027949241921305656, - -0.010577832348644733, - 0.003078743349760771, - 0.016932280734181404, - 0.011875844560563564, - -0.013729225844144821, - 0.007426439318805933, - 0.005279229488223791, - -0.01730683259665966, - -0.00020341985509730875, - 0.005760333500802517, - -0.022860517725348473, - 0.013038244098424911, - -0.002255377359688282, - -0.0020890897139906883, - -0.015692388638854027, - 0.0072972835041582584, - 0.046495966613292694, - -0.006115511059761047, - -0.013677563518285751, - -0.0022489195689558983, - -0.009092544205486774, - 0.020755283534526825, - -0.00041652636718936265, - 0.007846194319427013, - -0.016609393060207367, - -0.01986411027610302, - 0.0219564288854599, - -0.0028817811980843544, - 0.05667341873049736, - 0.0038100862875580788, - -0.011695027351379395, - -0.007542679086327553, - -0.007665376644581556, - -0.00785910990089178, - -0.047865014523267746, - 0.003261175472289324, - 0.028620850294828415, - 0.01618317887187004, - 0.005989584606140852, - 0.004756149835884571, - -0.005824911408126354, - 0.03334794193506241, - 0.02833670936524868, - 0.023260898888111115, - -0.025998994708061218, - -0.01607985608279705, - -0.013935874216258526, - -0.0003257139469496906, - 0.030609844252467155, - -0.028879161924123764, - -0.009660828858613968, - -0.010371183976531029, - -0.008020554669201374, - 0.026115234941244125, - -0.0031400921288877726, - 0.01250870618969202, - -0.0026848192792385817, - -0.016480237245559692, - -0.0011494836071506143, - 0.010325979441404343, - -0.02823338471353054, - 0.02589567005634308, - 0.03412287309765816, - 0.006415797863155603, - -0.010048295371234417, - -0.02339005470275879, - 0.013690479099750519, - -0.011662738397717476, - 0.00807221606373787, - 0.0001747634814819321, - -0.025314470753073692, - -0.011804809793829918, - 0.029628263786435127, - -0.05388366058468819, - 0.012741186656057835, - 0.0009323409758508205, - 0.016983943060040474, - -0.05254044383764267, - 0.009796441532671452, - -0.005999271292239428, - -0.0048401011154055595, - 0.012037289328873158, - 0.0005081460112705827, - -0.00435253931209445, - -0.005931464489549398, - -0.007155212573707104, - 0.004849787801504135, - -0.004526899196207523, - 0.016506068408489227, - 0.01033889502286911, - -0.007523305714130402, - -0.018779205158352852, - -0.016118600964546204, - -0.012708897702395916, - -0.0017226110212504864, - -0.008640500716865063, - -0.017733044922351837, - 0.05186883360147476, - 0.016209010034799576, - -0.02205975353717804, - -0.018753373995423317, - -0.007833278737962246, - 0.011643365025520325, - -0.00911837536841631, - -0.012121240608394146, - 0.021478554233908653, - -0.011552955955266953, - 0.001233434653840959, - -0.02823338471353054, - -0.015253259800374508, - -0.04564354196190834, - -0.004207239020615816, - 0.020845692604780197, - -0.00283334800042212, - -0.01573113538324833, - -0.02558569796383381, - -0.012850968167185783, - 0.006425484083592892, - 0.013987536542117596, - 0.01695811189711094, - 0.002807516837492585, - -0.0026153980288654566, - 0.015640726312994957, - 0.002712264657020569, - 0.022305147722363472, - 0.003651870647445321, - -0.0009525215718895197, - -0.012231022119522095, - -0.005079038441181183, - 0.008265949785709381, - -0.013057617470622063, - 0.0009178110049106181, - 0.0027445536106824875, - 0.004384827800095081, - -0.020974846556782722, - -0.019734954461455345, - -0.07584008574485779, - 0.00672899978235364, - -0.0010671470081433654, - -0.02031615376472473, - -0.020354900509119034, - 0.0203678160905838, - 0.01131401862949133, - 0.003839146113023162, - -0.002678361488506198, - 0.004394514486193657, - -0.0075491368770599365, - -0.0025411336682736874, - 0.00035356308217160404, - -0.0025443625636398792, - -0.017991356551647186, - -0.02323506772518158, - 0.019037514925003052, - -0.009253988973796368, - 0.02016116864979267, - 0.01583446003496647, - 0.0044526346027851105, - -0.006664421875029802, - -0.003461366519331932, - -9.863239392871037e-05, - -0.0158215444535017, - 0.0023570870980620384, - 0.008311154320836067, - 0.013910043053328991, - -0.005424529314041138, - -0.023041334003210068, - 0.009357313625514507, - -0.006118739955127239, - -0.012534537352621555, - 0.00834990106523037, - -0.012695982120931149, - -0.004701259080320597, - 0.0011704714270308614, - 0.03823001682758331, - 0.009693117812275887, - 0.04468778893351555, - -0.02583109214901924, - 0.013044701889157295, - 0.027949241921305656, - -0.02052280306816101, - -0.006845239549875259, - 0.011016961187124252, - -0.024978667497634888, - -0.0008205408230423927, - 0.005030605476349592, - -0.030403196811676025, - 0.015756966546177864, - 0.018856696784496307, - -0.026580194011330605, - -0.005179134197533131, - 0.03347709774971008, - 0.009266904555261135, - 0.023622535169124603, - 0.009589793160557747, - 0.0035001130308955908, - -0.005560142919421196, - 0.02797507308423519, - -0.0008451610920019448, - -0.001942175324074924, - 0.004174950532615185, - 0.006570784375071526, - 0.019011683762073517, - -0.02348046377301216, - 0.00029847020050510764, - -0.00917003769427538, - -0.013483830727636814, - -0.0014037584187462926, - 0.004049023613333702, - -0.010145161300897598, - 0.039754051715135574, - 0.007348945830017328, - -0.011372138746082783, - 0.022757193073630333, - 0.010829685255885124, - -0.0027655414305627346, - 0.013290097005665302, - 0.02583109214901924, - 0.039754051715135574, - -0.01649315282702446, - -0.0012818679679185152, - 0.020186999812722206, - 0.03580189496278763, - -0.0018743686378002167, - -0.005715129431337118, - -0.005618262570351362, - -0.003471052972599864, - -0.0052953739650547504, - 0.009331482462584972, - 0.0076847500167787075, - 0.007594341412186623, - -0.007930145598948002, - 0.019734954461455345, - 0.0033031508792191744, - -0.010203281417489052, - -0.0008709921385161579, - 0.017126014456152916, - 0.00587011594325304, - 0.009066713973879814, - 0.0040619391947984695, - -0.03528527170419693, - -0.016635224223136902, - 0.02333839237689972, - 0.018417568877339363, - -0.03884996473789215, - -0.0032208142802119255, - 0.019734954461455345, - -0.0006110667600296438, - -0.0044752368703484535, - 0.0048659322783350945, - 0.015266175381839275, - -0.028155891224741936, - 0.021840188652276993, - -0.02645103819668293, - -0.019011683762073517, - -0.024294143542647362, - -0.0003226868575438857, - 0.006283413153141737, - 0.01583446003496647, - 0.00551493838429451, - -0.01179189421236515, - 0.010480965487658978, - -0.013212603516876698, - -0.005527853965759277, - -0.01445249654352665, - -0.008924642577767372, - -0.0034032464027404785, - -0.0037164485547691584, - -1.5248921044985764e-05, - 0.004090999253094196, - -0.021917682141065598, - 0.005802309140563011, - 0.008304696530103683, - -0.006283413153141737, - 0.02190476655960083, - 0.008343443274497986, - 0.07986973971128464, - 0.028052566573023796, - -0.01340633723884821, - 0.012631404213607311, - -0.01227622665464878, - 0.014258762821555138, - 0.005692527163773775, - 0.012850968167185783, - -0.02475910261273384, - -0.03513028472661972, - 0.007077719550579786, - -0.0002131065120920539, - -0.00042903830762952566, - -0.041329748928546906, - -0.008931100368499756, - -0.00388757954351604, - 0.009499384090304375, - -0.0037067618686705828, - -0.013328843750059605, - 0.006961479317396879, - 0.032908812165260315, - 0.00235385843552649, - 0.020509887486696243, - 0.04019318148493767, - -0.0238420981913805, - -0.004756149835884571, - 0.007710581179708242, - -0.006399653386324644, - 0.013948789797723293, - -0.03172058239579201, - 0.0009517143480479717, - -0.00452044140547514, - -0.04032233729958534, - -0.02323506772518158, - 0.045772697776556015, - -0.022963840514421463, - 0.01126235630363226, - -0.018043018877506256, - -0.007465185597538948, - -0.020458225160837173, - 0.01593778468668461, - 0.02466869354248047, - -0.04218217357993126, - -0.002105233957991004, - -0.023712942376732826, - -0.012263311073184013, - 0.006735457573086023, - 0.011701485142111778, - -0.019412066787481308 - ], - "sparse": "SparseEmbedding(values=array([1.68320383, 1.68320383]), indices=array([1000544089, 1193801813]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 5, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 3 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000006.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000006.json deleted file mode 100644 index 3b32eb3de296ecf2dfa3ea087c49277a1f85e999..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000006.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000006", - "content": "INSPIRER Forschungsprogramm zur Mensch-Technik-Interaktion: \u201eTechnik zum Menschen bringen\u201c Projektlaufzeit 01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024) F\u00f6rderkennzeichen 16SV8744 Stichworte Stadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation und Akzeptanz, Augmented Reality, Extended Reality (XR), AR-Tracking, Point Cloud Matching Projektleitung Prof. Dr.-Ing. Volker Coors Beteiligte Professoren Prof. Dr.-Ing. Volker Coors Gef\u00f6rderte Ma\u00dfnahme Forschungsprogramm zur Mensch-Technik-Interaktion F\u00f6rderbereich Technik zum Mensch bringen Fachhochschule Hochschule f\u00fcr Technik Stuttgart (HFT Stuttgart), Schellingstra\u00dfe 24, 70174 Stuttgart Das Projekt \u201eINSPIRER\u201c wurde vom Bundesministerium f\u00fcr Bildung und Forschung (BMBF) in der F\u00f6rderma\u00dfnahme \u201eForschungsprogramm zur Mensch-Technik-Interaktion: Technik zum Menschen bringen\u201c unter dem F\u00f6rderkennzeichen 16SV8744 gef\u00f6rdert und vom Projekttr\u00e4ger VDI Technologiezentrum GmbH f\u00fcr das BMBF betreut. Hochschule f\u00fcr Technik Stuttgart, April 2025 ", - "embedding": { - "dense": [ - 0.001494552823714912, - -0.015743615105748177, - -0.0104560861364007, - -0.032544735819101334, - 0.01194981299340725, - 0.026847422122955322, - -0.02789171040058136, - -0.003066766308620572, - -0.01005291286855936, - -0.014765421859920025, - -0.015267737209796906, - -0.004629891831427813, - 0.0016283933073282242, - -0.013529461808502674, - -0.01005291286855936, - -0.013377445749938488, - 0.01617983542382717, - 0.0032947908621281385, - 0.007885025814175606, - -0.01335761696100235, - -0.024150783196091652, - -0.009729051031172276, - 0.017488498240709305, - 0.012947834096848965, - -0.03064122423529625, - 0.010912136174738407, - 0.02485138177871704, - -0.02531404048204422, - 0.008103136904537678, - -0.001514381030574441, - 0.001825849525630474, - -0.0044349138624966145, - -0.010033084079623222, - -0.009484503418207169, - -0.01916728913784027, - -0.018612097948789597, - -0.021017923951148987, - 0.007257131859660149, - 0.03352292627096176, - -0.010918744839727879, - 0.036060940474271774, - 0.0032402630895376205, - 0.0037739730905741453, - -0.00388963776640594, - -0.0151487672701478, - 0.016563180834054947, - -0.004606758709996939, - -0.00578653858974576, - -0.0021133588161319494, - 0.02514219470322132, - 0.011625952087342739, - 0.0385725162923336, - -0.0045241410844028, - -0.006761426106095314, - -0.006493745371699333, - -0.02138805016875267, - 0.00026540912222117186, - 0.038281701505184174, - -0.0016688760370016098, - -0.006404518149793148, - 0.0009459718130528927, - -0.01242569088935852, - -0.03574368730187416, - 0.02097826637327671, - -0.025234727188944817, - 0.0010566794080659747, - -0.04190365970134735, - 0.015664301812648773, - -0.00796433910727501, - 0.010290850885212421, - 0.03809664025902748, - 0.008314637467265129, - 0.027574457228183746, - -0.005842718295753002, - 0.028394024819135666, - 0.023410530760884285, - 0.015267737209796906, - -0.0007625606958754361, - 0.024230096489191055, - 0.005770015064626932, - -0.0002972169022541493, - -0.02133517526090145, - -0.0175810307264328, - 0.012227408587932587, - 0.00984802097082138, - 0.014210231602191925, - 0.008717811666429043, - 0.003955731634050608, - 0.011586295440793037, - -0.008757468312978745, - 0.014659671112895012, - 0.027151456102728844, - 0.0017647123895585537, - 0.024600224569439888, - 0.00810974556952715, - -0.008096527308225632, - -0.007263741455972195, - 0.013146116398274899, - -0.0040846155025064945, - -0.013813666999340057, - -0.02051560766994953, - -0.0021612769924104214, - -0.014276325702667236, - -0.0009071414824575186, - -0.04000014811754227, - -0.0016540047945454717, - 0.009629909880459309, - 0.007918072864413261, - 0.028208961710333824, - -9.087938815355301e-05, - -0.013800447806715965, - 0.030667662620544434, - -0.021229425445199013, - -0.013410492800176144, - 0.0058129760436713696, - -0.040158774703741074, - 0.010343726724386215, - 0.0018440253334119916, - -0.003790496615692973, - -0.0037805824540555477, - 0.042749661952257156, - 0.02115011215209961, - -0.00946467462927103, - 0.00251322821713984, - 0.03378730267286301, - 0.03434249386191368, - -0.024230096489191055, - 0.00434899190440774, - 0.0007654522778466344, - -0.022048991173505783, - -0.01517520472407341, - -0.028631962835788727, - 0.02355593629181385, - 0.012544659897685051, - -0.0036318707279860973, - 0.010482524521648884, - -0.01664249412715435, - -0.010667587630450726, - -0.044097982347011566, - -0.0418243445456028, - 0.011414450593292713, - 0.011467326432466507, - -0.014514263719320297, - -0.013397273607552052, - -0.023648468777537346, - 0.005221433937549591, - -0.0054461536929011345, - 0.0021844098810106516, - 0.03156654164195061, - 0.020462732762098312, - -0.005588256288319826, - -0.03270335868000984, - -0.00011421886301832274, - -0.013251867145299911, - -0.00016802358732093126, - 0.008645107969641685, - -0.003522815415635705, - 0.009953771717846394, - -0.009266392327845097, - 0.006480526179075241, - 0.013628602959215641, - -0.017237341031432152, - 0.013086631894111633, - 0.010555227287113667, - 0.03970933333039284, - 0.01201590709388256, - -0.007224084809422493, - 0.004851306788623333, - 0.010733681730926037, - 0.001185562927275896, - 0.0003430696961004287, - 0.040105897933244705, - -0.04185078293085098, - -0.0004957057535648346, - -0.012994099408388138, - 0.005588256288319826, - -0.003721097717061639, - 0.007970948703587055, - -0.015571769326925278, - -0.009405190125107765, - -0.011269044131040573, - 0.010892307385802269, - 0.042564600706100464, - 0.005528771318495274, - -0.015796490013599396, - -0.0016548309940844774, - 0.02541979029774666, - 0.03405167907476425, - 0.003233653726056218, - -0.012498393654823303, - 0.027574457228183746, - 0.014210231602191925, - 0.01007935032248497, - 0.004213498905301094, - -0.6505774259567261, - -0.012524832040071487, - 0.005892288871109486, - -0.0168143380433321, - 0.0024818333331495523, - 0.00641443207859993, - 0.0107535095885396, - 0.009180470369756222, - 0.01623271033167839, - 0.05742255225777626, - 0.002404172904789448, - 0.01734309084713459, - 1.4780809578951448e-05, - -0.028288275003433228, - -0.026992829516530037, - -0.010971620678901672, - 6.315084465313703e-05, - -0.015902239829301834, - 0.0145935770124197, - 0.023767437785863876, - -0.0246663186699152, - 0.02456056699156761, - 0.0006824215524829924, - -0.0008534400258213282, - 0.007680134382098913, - -0.008506310172379017, - 0.0021480582654476166, - -0.003621956566348672, - -0.0022984223905950785, - -0.005971601698547602, - -0.007785884663462639, - 0.01508267316967249, - 0.003651699051260948, - 0.0023744304198771715, - 0.051526959985494614, - 0.019312696531414986, - -0.012227408587932587, - 0.027151456102728844, - 0.0060905711725354195, - 0.014223449863493443, - -0.002495052292943001, - -0.0025644509587436914, - 0.012670238502323627, - 0.015796490013599396, - 0.0008765729726292193, - 0.025618072599172592, - 0.019378790631890297, - -0.018850037828087807, - 0.0009980208706110716, - -0.01561142597347498, - 0.009834801778197289, - 0.005062807817012072, - 0.007217475678771734, - -0.006880395580083132, - 0.02038341946899891, - 0.010039693675935268, - 0.014289543963968754, - -0.0034963777288794518, - 0.0002205890486948192, - -0.009431627579033375, - -0.011077371425926685, - 0.0134435398504138, - -0.01066097803413868, - -0.02507610060274601, - -0.01321221049875021, - 0.029081404209136963, - -0.013707916252315044, - 0.0016135221812874079, - -0.001280573196709156, - -0.02138805016875267, - 0.005538685712963343, - 0.052108585834503174, - -0.00725052272900939, - -0.009120985865592957, - 0.010204928927123547, - 0.01974891684949398, - 0.017488498240709305, - -0.006946489680558443, - -0.0036979648284614086, - 0.014580357819795609, - 0.006579667329788208, - -0.011929985135793686, - 0.0024933998938649893, - 0.006761426106095314, - 0.02062135934829712, - -0.025102538987994194, - -0.016325242817401886, - -0.017607467249035835, - -0.0010930311400443316, - 0.00022141523368190974, - 0.007673524785786867, - -0.009682785719633102, - -0.01674824394285679, - -0.002876745769754052, - 0.012214189395308495, - 0.036404628306627274, - 0.009411799721419811, - 0.03719775751233101, - 0.0026272404938936234, - -0.0268870797008276, - -0.003925989381968975, - -0.015664301812648773, - 0.0317516066133976, - -0.0031444267369806767, - 0.02601463720202446, - -0.004391952883452177, - -0.0348183698952198, - 0.015320612117648125, - 0.047429125756025314, - -0.03323211148381233, - -0.014553920365869999, - -0.008783905766904354, - 0.0036583084147423506, - -0.005951773840934038, - 0.0009087938815355301, - -0.02514219470322132, - 0.028552651405334473, - -0.02220761775970459, - 0.014672890305519104, - -0.020608140155673027, - 0.012386034242808819, - -0.03024465963244438, - 0.015889020636677742, - 0.008625280112028122, - 0.012029126286506653, - 0.020290888845920563, - -0.0006952272960916162, - 0.0035889095161110163, - -0.03193666785955429, - 0.0022471994161605835, - 0.01040321122854948, - -0.011143465526401997, - 0.016616055741906166, - -1.5410123523906805e-06, - 0.027058923617005348, - 0.00803043320775032, - 0.014752202667295933, - -0.011678826995193958, - 0.008255152963101864, - -0.015228080563247204, - -0.03804376348853111, - 0.0016953136073425412, - 0.02121620625257492, - -0.01174492109566927, - -0.01862531714141369, - -0.05303390324115753, - -0.003807020140811801, - 0.008446825668215752, - 0.00975548941642046, - -0.0107535095885396, - -0.031196415424346924, - 0.003000672208145261, - 0.002660287544131279, - 0.029425092041492462, - 0.014408513903617859, - -0.025353696197271347, - -0.018321285024285316, - -0.02378065697848797, - -0.019021881744265556, - -0.027283644303679466, - 0.020542046055197716, - 0.02660948410630226, - -0.013892979361116886, - -0.02444159798324108, - -0.0017217512940987945, - 0.0006725074490532279, - 0.015889020636677742, - 0.044441673904657364, - -0.029134279116988182, - -0.045975055545568466, - 0.028552651405334473, - -0.010568446479737759, - -0.015043016523122787, - 0.020423077046871185, - -0.011725093238055706, - 0.013681478798389435, - -0.02736295759677887, - -0.011447497643530369, - -0.011077371425926685, - -0.0044448282569646835, - -0.005984820891171694, - 0.02179783396422863, - -0.008440216071903706, - -0.006652371026575565, - 0.0020489171147346497, - 0.012313330546021461, - -0.004662938881665468, - 0.012306720949709415, - 0.0007291005458682775, - 0.015267737209796906, - -0.00578653858974576, - 0.01670858822762966, - 0.0151487672701478, - 0.018387379124760628, - -0.010575056076049805, - 0.008043651469051838, - -0.029795220121741295, - -0.027812397107481956, - 0.0024653098080307245, - 0.0002389714791206643, - 0.051659148186445236, - 0.009709223173558712, - 0.03286198526620865, - 0.021652426570653915, - 0.009557207114994526, - -0.032729797065258026, - -0.013529461808502674, - -0.01365504041314125, - 0.03193666785955429, - 0.011235997080802917, - 0.005128901917487383, - -0.002080311765894294, - -0.0273100808262825, - -0.006311986595392227, - -0.005066112615168095, - 0.002873440971598029, - -0.005128901917487383, - 0.01136818528175354, - -0.02255130745470524, - 0.005112378392368555, - -0.003539338940754533, - -0.009094548411667347, - 0.016417773440480232, - -0.013080022297799587, - 0.0074554141610860825, - 0.020594920963048935, - 0.00805687066167593, - 0.02553875930607319, - 0.017594249919056892, - -0.003688050666823983, - 0.007726400159299374, - 0.009127595461905003, - 0.006953099276870489, - 0.017541373148560524, - 0.01358894631266594, - -0.0018076736014336348, - 0.0069200522266328335, - -0.014738984405994415, - 0.026728453114628792, - 0.028737714514136314, - 0.017025839537382126, - 0.022762807086110115, - 0.007138162851333618, - -0.02079320326447487, - 0.016510305926203728, - -0.01932591386139393, - 0.011222777888178825, - 0.01250500325113535, - 0.002585931681096554, - 0.03341717645525932, - -0.026569828391075134, - 0.012458737939596176, - -0.01711837202310562, - -0.0040813107043504715, - 0.014249887317419052, - -0.02079320326447487, - 0.020436296239495277, - -0.007290178909897804, - 0.018241971731185913, - 0.028023898601531982, - -0.005380059592425823, - 0.027759522199630737, - 0.033840179443359375, - -0.0145935770124197, - 0.006946489680558443, - 0.01582292653620243, - -0.023185810074210167, - -0.011335138231515884, - -0.010218148119747639, - -0.012227408587932587, - 0.016272367909550667, - -0.009729051031172276, - -0.004778603557497263, - -0.01986788585782051, - 0.02144092507660389, - 0.005459372419863939, - 0.027521582320332527, - 0.006021172273904085, - 0.021533457562327385, - 0.03508274629712105, - -0.018717849627137184, - -0.026873860508203506, - -0.00505289388820529, - 0.02847333811223507, - -0.01394585520029068, - -0.026345107704401016, - -0.022313367575407028, - 0.004662938881665468, - -0.02050239033997059, - -0.015836145728826523, - -0.01142106018960476, - 0.0023579068947583437, - -0.008387341164052486, - 0.009279611520469189, - 0.003364189527928829, - -0.016074085608124733, - 0.0209121722728014, - -0.019643167033791542, - 0.0008212191751226783, - -0.014078043401241302, - -0.009947162121534348, - 0.0021183157805353403, - -0.016801120713353157, - -0.04002658650279045, - 0.025578416883945465, - -0.03386661782860756, - 0.005604779813438654, - -0.006887005176395178, - 0.006880395580083132, - -0.022538088262081146, - 0.021718520671129227, - -0.005690701771527529, - 0.005122292786836624, - 0.014553920365869999, - -0.013384055346250534, - 0.03201598301529884, - 0.0002953580114990473, - -0.025274382904171944, - 0.02683420479297638, - -0.007230694405734539, - 0.00010007059609051794, - -0.04240597411990166, - -0.016193054616451263, - 0.017039058730006218, - 0.04822225496172905, - 0.01881038025021553, - -0.002557841595262289, - 0.020409857854247093, - -0.008744249120354652, - -9.769533789949492e-05, - -0.0174091849476099, - -0.06239283084869385, - -0.003075028071179986, - -0.01763390563428402, - 0.0013466672971844673, - -0.019656384363770485, - 0.026384763419628143, - -0.02695317380130291, - 0.003721097717061639, - 0.006503659300506115, - 0.008360903710126877, - -0.008089917711913586, - 6.165340164443478e-05, - 0.0029279685113579035, - 0.001261571072973311, - -0.020436296239495277, - 0.010852650739252567, - 0.037356384098529816, - 0.02512897551059723, - -0.023463405668735504, - 0.02454734779894352, - 0.020079387351870537, - 0.008440216071903706, - -0.02924002893269062, - 0.022048991173505783, - 0.0192862581461668, - 0.014355638064444065, - 0.008803733624517918, - -0.003945817705243826, - -0.01118973083794117, - -0.01793793775141239, - 0.005740272346884012, - 0.02701926790177822, - 0.004705899860709906, - 0.0065565346740186214, - 0.021308736875653267, - 0.0014078043168410659, - -0.01406482420861721, - -0.002614021534100175, - -0.0039722551591694355, - -0.012637191452085972, - 0.024679535999894142, - 0.004682766739279032, - -0.022048991173505783, - 0.005320575088262558, - -0.006553229875862598, - -0.031672291457653046, - -0.012121657840907574, - -0.01857244223356247, - 0.00533048901706934, - 0.004230022430419922, - -0.026027856394648552, - -0.01916728913784027, - -0.041745033115148544, - -0.014567139558494091, - -0.0459221787750721, - 0.011989469639956951, - 0.0024173916317522526, - -0.013027146458625793, - -0.029081404209136963, - 0.0017267083749175072, - 9.877969569060951e-05, - -0.00840716902166605, - 0.014963704161345959, - 0.0019068147521466017, - -0.014210231602191925, - -0.028896339237689972, - 0.005776624195277691, - 0.0013896283926442266, - -0.004857916384935379, - -0.00015676693874411285, - -0.0072769601829349995, - -0.011335138231515884, - 0.02789171040058136, - -0.008949141018092632, - -0.0063780806958675385, - -0.0046199774369597435, - -0.02448125369846821, - -0.001592867774888873, - -0.006143446546047926, - -0.014831515960395336, - -0.015161986462771893, - 0.00826176255941391, - 0.013370836153626442, - -0.0038929423317313194, - -0.0028916168957948685, - 0.02355593629181385, - 0.008189058862626553, - -0.011473936028778553, - 0.015333831310272217, - 0.0010046303505077958, - 0.007984166964888573, - 0.0028205655980855227, - -0.009458065964281559, - 0.014976922422647476, - -0.016906870529055595, - -0.02267027646303177, - 0.017845407128334045, - 0.01268345769494772, - 0.017329873517155647, - 0.008869827724993229, - 0.006589581724256277, - -0.015333831310272217, - -0.005277613643556833, - 0.01916728913784027, - 0.0006985320360399783, - 0.02080642245709896, - -0.01418379321694374, - 0.01136818528175354, - -0.01007935032248497, - -0.01201590709388256, - 0.008678155019879341, - 0.02958371862769127, - -0.026160044595599174, - -0.01968282274901867, - -0.023450186476111412, - 0.047799251973629, - 0.01828162744641304, - -0.00016957266780082136, - 0.014606796205043793, - 0.028050335124135017, - 0.005327184218913317, - -0.029160715639591217, - 0.002214152365922928, - -0.01910119503736496, - 0.0004535707412287593, - -0.003298095427453518, - -0.013998730108141899, - -0.021520238369703293, - -0.030773412436246872, - -0.01985466666519642, - 0.007970948703587055, - -0.005532076116651297, - -0.02145414426922798, - -0.025181852281093597, - -0.005822889972478151, - -0.00013425364159047604, - 0.0034104555379599333, - 0.010066131129860878, - -0.02512897551059723, - -0.006589581724256277, - 0.013165944255888462, - -0.021956460550427437, - 0.019061537459492683, - -0.016920089721679688, - 0.026926735416054726, - -0.010165272280573845, - 0.004051568452268839, - -0.01194981299340725, - -0.018783943727612495, - -0.02690029889345169, - -0.026979610323905945, - 0.019524196162819862, - 0.027574457228183746, - 0.025763479992747307, - -0.010740291327238083, - 0.002371125854551792, - 0.013311351649463177, - 0.0015779966488480568, - -0.0027544714976102114, - 0.004762080032378435, - 0.009259783662855625, - -0.022247273474931717, - 0.021401269361376762, - 0.010522180236876011, - 0.007415757980197668, - 0.010892307385802269, - -0.020872516557574272, - -0.01969604194164276, - -0.011434279382228851, - -0.04007946327328682, - -0.003266700776293874, - 0.0034600261133164167, - -0.04150709509849548, - -0.0140383867546916, - -0.008076698519289494, - 0.01139462273567915, - 0.01098483894020319, - -0.032729797065258026, - -0.0036186520010232925, - 0.0268870797008276, - -0.0017134895315393806, - 0.02185070887207985, - 0.02044951356947422, - 0.00876407790929079, - -0.025829574093222618, - 0.016549961641430855, - 0.024639880284667015, - 0.010786556638777256, - 0.008803733624517918, - -0.015161986462771893, - -0.02642442099750042, - 0.006913442630320787, - 0.041163403540849686, - 0.002838741522282362, - -0.0034302836284041405, - 0.013516243547201157, - -0.010389992035925388, - -0.005148730240762234, - 0.019114414229989052, - 0.022286931052803993, - -0.003582300152629614, - -0.011685436591506004, - -0.018413815647363663, - 0.016536744311451912, - -0.01969604194164276, - -0.007752837613224983, - -0.01365504041314125, - 0.00914081372320652, - 0.006946489680558443, - -0.010171881876885891, - 0.033258549869060516, - 0.016497086733579636, - 0.007111724931746721, - 0.00034575475729070604, - -0.009980209171772003, - 0.033602241426706314, - 0.004957057535648346, - 0.050178639590740204, - 0.02360881306231022, - -0.018321285024285316, - -0.004659634083509445, - -0.03053547441959381, - 0.018664972856640816, - -0.008189058862626553, - 0.02842046320438385, - -0.007838760502636433, - -0.006616019178181887, - -0.018704630434513092, - 0.02321224845945835, - 0.009405190125107765, - -0.04290828853845596, - -0.024877818301320076, - 0.02051560766994953, - 0.013159334659576416, - 0.012769379653036594, - -0.01565108262002468, - -0.005968297366052866, - -0.023238684982061386, - 0.002967625157907605, - -0.01670858822762966, - 0.008228715509176254, - -0.003578995354473591, - 0.0036550036165863276, - 0.0033906272146850824, - 0.012022516690194607, - -0.0007200125837698579, - 0.007614040281623602, - 0.005386669188737869, - -0.02430940978229046, - -0.009451456367969513, - -0.01104432437568903, - 0.006464002653956413, - -0.006959708407521248, - -0.003012238536030054, - 0.012029126286506653, - 0.004196975380182266, - 0.012075391598045826, - 0.02348984219133854, - 0.007362882606685162, - -0.01139462273567915, - -0.007885025814175606, - 0.016391336917877197, - 0.021982897073030472, - -0.01142106018960476, - -0.017726438120007515, - -0.017144808545708656, - -0.015228080563247204, - 0.0074686333537101746, - -0.012445518746972084, - -0.001933252438902855, - -0.012875130400061607, - -0.020409857854247093, - -0.009471284225583076, - 0.008222105912864208, - -0.003321228548884392, - -0.008975578472018242, - -0.012062173336744308, - -0.0026321974582970142, - -0.016510305926203728, - 0.0036186520010232925, - 0.0032204349990934134, - 0.006143446546047926, - -0.03526781126856804, - -0.013159334659576416, - 0.02063457854092121, - 0.005660959519445896, - 0.006946489680558443, - 0.007039021700620651, - 0.019788572564721107, - 0.0007497549522668123, - 0.017250560224056244, - -0.03529424965381622, - -0.0024917474947869778, - 0.017832187935709953, - -0.002253808779641986, - -0.013291522860527039, - 0.006219454575330019, - -0.0004238284018356353, - -0.01599477231502533, - 0.02541979029774666, - -0.008393950760364532, - -0.010991448536515236, - 0.0030618091113865376, - 0.009074719622731209, - 0.015518894419074059, - 0.00022802464081905782, - 0.005234652664512396, - 0.028394024819135666, - -0.01350963395088911, - 0.006318595726042986, - -0.00032365453080274165, - -0.015849364921450615, - 0.0034137601032853127, - 0.018202314153313637, - 0.0062756347469985485, - 0.021652426570653915, - -0.03024465963244438, - 0.029557280242443085, - -0.023939283564686775, - 0.01652352511882782, - -0.005185082089155912, - -0.05430291220545769, - -0.01717124693095684, - 0.00846665445715189, - 0.011361575685441494, - -0.017911501228809357, - -0.0014020210364833474, - -0.02074032835662365, - 0.0014565486926585436, - -0.020370202139019966, - -0.0020373505540192127, - 0.011989469639956951, - 0.01686721481382847, - 0.004573711659759283, - 0.016074085608124733, - 0.004844697657972574, - 0.014580357819795609, - 0.011883718892931938, - 0.0025760175194591284, - -0.01693330891430378, - -0.008572404272854328, - -0.018387379124760628, - -0.002648720983415842, - -0.008929313160479069, - 0.03497699648141861, - 0.002205890603363514, - -0.03759432211518288, - 0.0030188478995114565, - 0.005079331342130899, - -0.038757581263780594, - -0.0227892454713583, - -0.02161277085542679, - 0.02261740155518055, - 0.0050892457365989685, - 0.01095840148627758, - -0.00750168040394783, - 0.026992829516530037, - 0.0008067610906437039, - 0.028975652530789375, - -0.010852650739252567, - -0.023159371688961983, - 0.008922703564167023, - -0.007012583781033754, - 0.0008117181714624166, - 0.020542046055197716, - -0.04621299356222153, - -0.012736332602798939, - 0.03748857229948044, - 0.010773338377475739, - -0.013575728051364422, - 0.027257205918431282, - -0.0028205655980855227, - 0.004471265710890293, - 0.028156086802482605, - 0.007144771981984377, - -0.013476586900651455, - -0.0058129760436713696, - 0.04031740128993988, - -0.03450112044811249, - -0.001170691684819758, - -0.005538685712963343, - -0.01792472042143345, - -0.015161986462771893, - 0.004940534010529518, - 0.007633868604898453, - -0.0055552092380821705, - -0.0031642550602555275, - 0.012352987192571163, - -0.009035062976181507, - -0.016259148716926575, - -0.004051568452268839, - 0.015347049571573734, - -0.009444846771657467, - 0.0010409820824861526, - -0.005046284291893244, - 0.014738984405994415, - -0.001055853208526969, - -0.03053547441959381, - 0.01969604194164276, - -0.021639207378029823, - -0.006573058199137449, - 0.01886325515806675, - -0.015307392925024033, - 0.015333831310272217, - -0.036008063703775406, - -0.0027924757450819016, - -0.011064152233302593, - 0.013403883203864098, - -0.006041000597178936, - -0.00238764937967062, - -0.009881068021059036, - 0.01956385374069214, - 0.00911437626928091, - -0.00499671371653676, - -0.003919380251318216, - -0.005499029066413641, - -0.014051605015993118, - -0.026926735416054726, - -0.009662956930696964, - -0.00010606037540128455, - -0.011249215342104435, - -0.0026982915587723255, - 0.020846078172326088, - -0.012048954144120216, - -0.0017151418142020702, - -0.006586276926100254, - 0.01816265843808651, - -0.004454742185771465, - -0.0001944612304214388, - 0.20674234628677368, - -0.011837453581392765, - 0.005347012542188168, - 0.016378117725253105, - -0.02924002893269062, - 0.016193054616451263, - 0.02331799827516079, - -0.0054428488947451115, - -0.00575679587200284, - 0.018731066957116127, - -0.012068782933056355, - 0.008545966818928719, - -0.02097826637327671, - -0.004560492932796478, - 0.017078714445233345, - -0.004653024487197399, - -0.027336519211530685, - -0.014712546020746231, - -0.0010632887715473771, - 0.0036913554649800062, - 0.031037788838148117, - -0.008810343220829964, - -0.0072769601829349995, - -0.025036444887518883, - 0.006913442630320787, - -0.0031890403479337692, - -0.014276325702667236, - -0.0059187267906963825, - 0.029874533414840698, - 0.005994734819978476, - -0.022934652864933014, - 0.0005469286697916687, - 0.014157355763018131, - -0.00024847249733284116, - -0.004355601035058498, - 0.0009864544263109565, - 0.011850671842694283, - 0.005647740792483091, - 0.029345780611038208, - 0.036589693278074265, - -0.005793147720396519, - 0.004669548012316227, - -0.017501717433333397, - -0.020013293251395226, - 0.021401269361376762, - 0.032729797065258026, - -0.0066391522996127605, - 0.0037376212421804667, - 0.015161986462771893, - -0.005647740792483091, - -0.02485138177871704, - -0.00782554131001234, - 0.02553875930607319, - 0.04214159771800041, - -0.00817583967000246, - 0.01028424222022295, - 0.015664301812648773, - 0.023714562878012657, - 0.016682149842381477, - 0.012194361537694931, - -0.01259753480553627, - 0.009623301215469837, - 0.002622283296659589, - 0.018308065831661224, - -0.03238610923290253, - 0.011434279382228851, - 0.006754816975444555, - 0.014791859313845634, - 0.00015088044165167958, - -0.00547920074313879, - -0.01174492109566927, - -0.036880508065223694, - -0.01927303895354271, - 0.0037111835554242134, - -0.0038995519280433655, - -0.02237946167588234, - 0.021546676754951477, - 0.0019464711658656597, - 0.02185070887207985, - 0.03918058052659035, - -0.0015697348862886429, - 0.00015325569256674498, - 0.0046166726388037205, - -0.030086033046245575, - -0.018612097948789597, - -0.03275623545050621, - 0.030958475545048714, - 0.011705265380442142, - -0.006609410047531128, - 0.007984166964888573, - -0.0004320901643950492, - -0.004352296236902475, - -0.006748207379132509, - -0.023132935166358948, - 0.010171881876885891, - 0.005565123166888952, - 0.0244944728910923, - 0.008645107969641685, - -0.004887658637017012, - 0.02120298705995083, - -0.022868558764457703, - 0.052187900990247726, - -0.001553211361169815, - -0.014659671112895012, - -0.008664936758577824, - 0.02608073130249977, - -0.004610063508152962, - 0.016536744311451912, - 0.018479909747838974, - -0.009365533478558064, - -0.004282897803932428, - -0.016682149842381477, - 0.0056246076710522175, - 0.003202259074896574, - 0.004930619616061449, - 0.037938013672828674, - 0.0007650391780771315, - -0.009299439378082752, - -0.00348646380007267, - -0.008770686574280262, - -0.015955114737153053, - -0.0020852687302976847, - -0.017660344019532204, - 0.02847333811223507, - 0.0015936939744278789, - -0.040053024888038635, - 0.00194481888320297, - -0.01189693808555603, - -0.035717252641916275, - -0.01397229265421629, - 0.013456758111715317, - -0.018731066957116127, - 0.0233840923756361, - -0.038228828459978104, - -0.0023975635413080454, - -0.00025941935018636286, - 0.027442269027233124, - -0.02541979029774666, - 0.005670873913913965, - 0.010363554581999779, - -0.0033476660028100014, - -0.025631291791796684, - -0.001087247976101935, - 0.0084930919110775, - -0.0052743093110620975, - -0.008393950760364532, - 0.0003771494666580111, - 0.00725052272900939, - -0.01502979826182127, - -0.013747572898864746, - 0.0021695387549698353, - -0.01992076076567173, - 0.01985466666519642, - -0.028869902715086937, - 0.024190440773963928, - 0.0035360343754291534, - -0.02191680297255516, - -0.01658961921930313, - -0.005925335921347141, - -0.007673524785786867, - -0.026728453114628792, - -0.006255806423723698, - 0.0051619489677250385, - 0.0026305450592190027, - -0.03000672161579132, - 0.00502645643427968, - -0.16856639087200165, - 0.011817624792456627, - 0.02584279328584671, - -0.028896339237689972, - 0.02426975406706333, - -0.011262434534728527, - -0.003959036432206631, - -0.0061004855670034885, - -0.0061996267177164555, - -0.0009393623913638294, - 0.007151381578296423, - -0.004653024487197399, - -0.030799850821495056, - -0.019537415355443954, - 0.013278304599225521, - 0.008453435264527798, - -0.024216877296566963, - 0.011083980090916157, - 0.0336286760866642, - 0.0015176857123151422, - 0.003585604950785637, - -0.024864600971341133, - 0.01787184365093708, - -0.002047264715656638, - -0.00780571298673749, - -0.00287839793600142, - -0.010066131129860878, - -0.005657654721289873, - 0.01128226239234209, - -0.02678132802248001, - 0.00011401232040952891, - 0.0026553303468972445, - 0.042564600706100464, - 0.002392606344074011, - -0.006411127746105194, - -0.02097826637327671, - 0.004382038954645395, - -0.006953099276870489, - -0.01553211361169815, - 0.036536816507577896, - 0.02256452478468418, - 0.019365571439266205, - -0.004679462406784296, - 0.01159951463341713, - -0.03685406967997551, - 0.010475914925336838, - 0.010898916982114315, - -0.016312023624777794, - -0.016946526244282722, - -0.015889020636677742, - 0.01502979826182127, - -0.024401942268013954, - -0.0025330563075840473, - 0.009385362267494202, - 0.015241298824548721, - -0.0012830516789108515, - 0.014448169618844986, - -0.012029126286506653, - 0.00505289388820529, - 0.006424346473067999, - -0.0014879434602335095, - 0.0005308182444423437, - 0.01898222602903843, - -0.02425653487443924, - 0.002171191154047847, - -0.0211633313447237, - 0.0031807785853743553, - 0.01270989514887333, - -0.02063457854092121, - 0.013641822151839733, - -0.021308736875653267, - 0.009147423319518566, - -0.0028998786583542824, - 0.008314637467265129, - -0.012610753998160362, - -0.004940534010529518, - -0.008169231005012989, - 0.018374159932136536, - 0.002557841595262289, - -0.0031526884995400906, - -0.016087302938103676, - 0.0464244969189167, - -0.013747572898864746, - -0.017541373148560524, - -0.038810454308986664, - -0.027389394119381905, - -0.008777296170592308, - -0.0006906833150424063, - 0.011031105183064938, - -0.013384055346250534, - 0.003585604950785637, - -0.026702016592025757, - -0.017713218927383423, - 0.008922703564167023, - 0.014487826265394688, - 0.005356926936656237, - -0.009339096024632454, - -0.011269044131040573, - -0.010773338377475739, - -0.012703285552561283, - 0.028605526313185692, - -0.01280242670327425, - -0.009015235118567944, - 0.019352352246642113, - 0.004167233128100634, - 0.01394585520029068, - -0.03867826610803604, - 0.02174495905637741, - 0.025869229808449745, - 0.007184428628534079, - -0.03148723021149635, - -0.00469929026439786, - 0.004854611586779356, - 0.03291486203670502, - 0.001043460564687848, - 0.023807095363736153, - -0.008579013869166374, - -0.014236669056117535, - 0.008942531421780586, - 0.00780571298673749, - 0.045261237770318985, - 0.015016579069197178, - -0.04528767615556717, - 0.020555265247821808, - -0.026966392993927002, - -0.04153353348374367, - -0.07841403782367706, - -0.025168633088469505, - 0.020594920963048935, - 0.02531404048204422, - 0.01066097803413868, - 0.03614025190472603, - -0.007521508261561394, - -0.02003973163664341, - -0.02649051509797573, - 0.01962994784116745, - 0.007594211958348751, - -0.05620642006397247, - -0.005416411440819502, - -0.0025941934436559677, - 0.02326512336730957, - -0.007951119914650917, - -0.003955731634050608, - -0.011672218330204487, - -0.018387379124760628, - 0.03341717645525932, - 0.00916725117713213, - -0.0018985529895871878, - -0.0018076736014336348, - -0.007131553255021572, - -0.02044951356947422, - 0.0010071088327094913, - -0.042987603694200516, - 0.01857244223356247, - 0.018360940739512444, - 0.0074686333537101746, - -0.008433607406914234, - -0.0023859969805926085, - 0.023357653990387917, - -0.016100522130727768, - -0.012921396642923355, - -0.012009297497570515, - -0.017382748425006866, - -0.01874428614974022, - 0.0009434932726435363, - -0.021890366449952126, - 0.014540702104568481, - 0.010290850885212421, - 0.014197012409567833, - -0.033073488622903824, - -0.0151487672701478, - -0.01956385374069214, - -0.007111724931746721, - -0.008962360210716724, - -0.0036979648284614086, - -0.026397982612252235, - -0.03674831986427307, - -0.012881739996373653, - -0.00884339027106762, - -0.0008707897504791617, - 0.025631291791796684, - -0.008413778617978096, - -0.002822217997163534, - -0.025882449001073837, - -0.025644510984420776, - -0.00025570153957232833, - -0.005241262260824442, - 0.006434260401874781, - -0.019537415355443954, - 0.023833531886339188, - 0.003909465856850147, - -0.01121616829186678, - -0.026450857520103455, - -0.002873440971598029, - 0.01365504041314125, - -0.0012359597021713853, - -0.00777927553281188, - 0.00021336000645533204, - -0.0044349138624966145, - 0.0077462284825742245, - -0.022247273474931717, - -0.0037938011810183525, - -0.027971021831035614, - -0.025922104716300964, - 0.026041075587272644, - -0.0038565907161682844, - -0.018030470237135887, - -0.03188379481434822, - 0.016668932512402534, - -0.008922703564167023, - 0.005826194770634174, - 0.0037376212421804667, - 0.005350317340344191, - -0.012458737939596176, - 0.015571769326925278, - -0.00861206091940403, - 0.022048991173505783, - 0.014395294710993767, - 0.014315981417894363, - 0.009907505474984646, - 0.010000037029385567, - -0.010019865818321705, - 0.004005302209407091, - 0.0032683531753718853, - -0.013463367708027363, - 0.008572404272854328, - -0.0199736375361681, - -0.013218820095062256, - -0.06789185851812363, - 0.015016579069197178, - 0.008268372155725956, - -0.011592905037105083, - -0.014355638064444065, - 0.009477893821895123, - 0.021982897073030472, - 0.02695317380130291, - -0.0017035753699019551, - -0.004649719689041376, - -0.006801082752645016, - -0.004765384364873171, - -0.0056345220655202866, - 0.019894324243068695, - -0.0015358616365119815, - -0.004781907889991999, - 0.026807766407728195, - -0.012300112284719944, - 0.003721097717061639, - -0.005660959519445896, - -0.0006803561118431389, - 0.0038962471298873425, - 0.002427305793389678, - 0.011117027141153812, - -0.019722478464245796, - 0.0023661686573177576, - -0.011083980090916157, - 0.0038202388677746058, - 0.013641822151839733, - -0.012551269493997097, - 0.0049041821621358395, - 0.009960380382835865, - -0.01862531714141369, - 0.021242642775177956, - -0.012306720949709415, - -0.03304705023765564, - 0.020052948966622353, - 0.045975055545568466, - -0.008565795607864857, - 0.048830319195985794, - -0.021467363461852074, - -0.03154010325670242, - 0.005300746764987707, - -0.0006663111271336675, - 0.014130918309092522, - 0.006014563143253326, - 0.01858566142618656, - 0.0002996954426635057, - 0.0025545370299369097, - 0.00135162437800318, - 0.003935903776437044, - 0.007997386157512665, - -0.011262434534728527, - -0.013503024354577065, - 0.020343763753771782, - -0.02063457854092121, - -0.0009542335756123066, - -0.007772665936499834, - -0.010786556638777256, - -0.016378117725253105, - 0.049306198954582214, - -0.002838741522282362, - 0.004011911805719137, - 0.004682766739279032, - 0.03130216524004936, - -0.003942512907087803, - -0.023807095363736153, - -0.005380059592425823, - 0.02635832689702511, - 0.004768689163029194, - -0.025684166699647903, - -0.012234018184244633, - -0.007157990708947182, - 0.032729797065258026, - 0.00150198838673532, - -0.004177147056907415, - 0.013093240559101105, - -0.0022224141284823418, - -0.006011258345097303, - 0.015452800318598747, - 0.021057579666376114, - -0.0053734504617750645, - -0.006834129802882671, - -0.0075743836350739, - 0.02050239033997059, - 0.021586332470178604, - -0.021930022165179253, - -0.0007005974766798317, - -0.006361557170748711, - 0.007766056805849075, - 0.006939880549907684, - 0.00585924182087183, - 0.010323897935450077, - 0.003863200079649687, - 0.004276288207620382, - -0.017012620344758034, - -0.0009277958888560534, - -0.005016542039811611, - 0.007713181432336569, - 0.029081404209136963, - 0.013721134513616562, - 0.006364861503243446, - 0.009041672572493553, - -0.020846078172326088, - -0.03265048563480377, - 0.0034534167498350143, - -0.011493763886392117, - -0.01127565372735262, - -0.016325242817401886, - 0.015730395913124084, - 0.007442195434123278, - 0.025300821289420128, - -0.004894268233329058, - -0.00803043320775032, - -0.02355593629181385, - 0.04417729750275612, - 0.010046303272247314, - -0.01729021593928337, - -0.01986788585782051, - 0.03751501068472862, - 0.01821553334593773, - 0.013549290597438812, - 0.01060810312628746, - 0.006229368969798088, - 0.019471321254968643, - 0.017184466123580933, - 0.011705265380442142, - -0.02208864875137806, - -0.0006105442298576236, - -0.0014540702104568481, - 0.0023430357687175274, - 0.021361613646149635, - -0.01623271033167839, - -0.019643167033791542, - -0.015333831310272217, - -0.00966956652700901, - 0.012842083349823952, - -0.012048954144120216, - 0.011969641782343388, - 0.0904696062207222, - 0.01224723644554615, - -0.004276288207620382, - 0.01910119503736496, - -0.013800447806715965, - -0.002305031754076481, - -0.018559223040938377, - 0.015413143672049046, - -0.0423266626894474, - -0.022194398567080498, - 0.006827520206570625, - -0.021652426570653915, - 0.013826885260641575, - -0.00863849837332964, - -0.00914081372320652, - -0.007534727454185486, - -0.024216877296566963, - 0.026768110692501068, - -0.006077352445572615, - 0.007389320060610771, - 0.02308006025850773, - 0.001371452584862709, - -0.0001823784114094451, - 0.03191022947430611, - -0.013615384697914124, - -0.011791187338531017, - 0.028103210031986237, - 0.0003149796975776553, - -0.006966318003833294, - -0.012584316544234753, - -0.01222079899162054, - 0.024600224569439888, - -0.058744434267282486, - -0.027918146923184395, - 0.009821583516895771, - -0.016074085608124733, - -0.01341710239648819, - -0.009325877763330936, - 0.010370164178311825, - -0.006103789899498224, - -0.0028486556839197874, - 0.005495724268257618, - -0.006526792421936989, - -0.025803135707974434, - -0.0029147497843950987, - -0.010165272280573845, - -0.022101866081357002, - -0.0028536126483231783, - -0.010013256222009659 - ], - "sparse": "SparseEmbedding(values=array([1.61653272, 1.77329975, 1.77329975, 1.86366645, 2.01791473,\n 1.77329975, 1.77329975, 1.61653272, 1.77329975, 1.27767695,\n 1.27767695, 1.27767695, 1.27767695, 1.61653272, 1.27767695,\n 1.61653272, 1.27767695, 1.27767695, 1.27767695, 1.61653272,\n 1.61653272, 1.27767695, 1.27767695, 1.27767695, 1.27767695,\n 1.27767695, 1.77329975, 1.27767695, 1.27767695, 1.61653272,\n 1.27767695, 1.27767695, 1.27767695, 1.27767695, 1.27767695,\n 1.27767695, 1.27767695, 1.27767695, 1.61653272, 1.61653272,\n 1.61653272, 1.61653272, 1.61653272, 1.27767695, 1.27767695,\n 1.61653272, 1.27767695, 1.27767695, 1.27767695, 1.61653272,\n 1.86366645, 1.86366645, 1.27767695, 1.27767695, 1.27767695,\n 1.27767695, 1.61653272, 1.27767695, 1.27767695, 1.61653272,\n 1.27767695, 1.27767695, 1.27767695, 1.61653272, 1.27767695,\n 1.27767695, 1.27767695, 1.27767695, 1.27767695, 1.27767695,\n 1.27767695, 1.27767695, 1.27767695, 1.27767695, 1.27767695]), indices=array([2017215381, 1730860116, 338063690, 732421865, 22476906,\n 1232819956, 828667247, 913777079, 425017862, 2045693989,\n 1642882560, 1384544046, 1087744415, 538856249, 1236181979,\n 1555540962, 1434720364, 1356962648, 2031875777, 689006838,\n 1775796869, 592290584, 1427900950, 1122624640, 46957595,\n 229152442, 164058840, 1508183312, 1358867299, 1751750842,\n 1777633817, 685068363, 1675878461, 1466158544, 648501015,\n 1570547443, 1778032728, 913860438, 1156470180, 1273013281,\n 400827032, 2024115788, 1943099684, 215973776, 1991311340,\n 946581070, 868289168, 121929559, 707839511, 685289368,\n 2124172637, 908425398, 376450507, 1613681035, 2075059736,\n 1268378419, 1413554298, 993732989, 1162941628, 1771054898,\n 1946192279, 1441934224, 1533740972, 2126373955, 408270109,\n 1557666034, 565373295, 1505931685, 1602481333, 1701961266,\n 1650776438, 193740839, 261052326, 1642199520, 35433555]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 6, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 107 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000007.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000007.json deleted file mode 100644 index 65b52fb5e412f724ab02cf9a419d99903971de22..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000007.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000007", - "content": "I. Kurzdarstellungen Das Projekt INSPIRER zielte darauf ab, Augmented Reality (AR) zur interaktiven B\u00fcrgerbeteiligung in der Stadtplanung einzusetzen. Durch eine standortbezogene Visualisierung von Planungsentw\u00fcrfen konnten B\u00fcrger*innen geplante Ver\u00e4nderungen direkt vor Ort erleben. Der entwickelte AR-Client mit einem innovativen Point Cloud Matching-Tracking-System erm\u00f6glichte eine pr\u00e4zise Platzierung und Stabilisierung virtueller Inhalte ohne GPS. Im Rahmen des Projekts wurde ein 3D-Stadtmodell-Server entwickelt, der Bestands- und Entwurfsdaten verwaltet. Dies erlaubte die nahtlose Integration von Stadtplanungsmodellen in AR-Anwendungen. Ein zentraler Anwendungsfall war die Visualisierung eines geplanten Kreisverkehrs in Fellbach, wobei die AR-App es erm\u00f6glichte, das 3D-Design des neuen Stadtbereichs direkt vor Ort zu erleben. Die Forschungsergebnisse wurden evaluiert und zeigen, dass AR-basierte Beteiligungsformate das Verst\u00e4ndnis und die Akzeptanz von Stadtplanungsprozessen erheblich verbessern k\u00f6nnen. Die entwickelte Technologie wurde ver\u00f6ffentlicht und als Open Access zug\u00e4nglich gemacht, um zuk\u00fcnftige Entwicklungen in der digitalen B\u00fcrgerbeteiligung zu unterst\u00fctzen.", - "embedding": { - "dense": [ - 0.002455565147101879, - 0.005839453544467688, - -0.01056758128106594, - -0.004758073482662439, - 0.009975317865610123, - 0.017621507868170738, - -0.03170274198055267, - -0.010421179234981537, - 0.0057729072868824005, - -0.034231510013341904, - -0.005117424298077822, - 0.0012885062023997307, - -0.008165253326296806, - -0.009915425442159176, - -0.012983218766748905, - -0.0015796470688655972, - 0.026552045717835426, - 0.0013874941505491734, - -0.0024023279547691345, - 0.00829834584146738, - -0.018952438607811928, - 0.010900313965976238, - 0.03734588623046875, - -0.004242338240146637, - -0.022319689393043518, - 0.01338915154337883, - 0.021334800869226456, - -0.032794106751680374, - 0.021148471161723137, - -0.011213081888854504, - 0.01719561032950878, - -0.007899067364633083, - 0.0022808806970715523, - -0.006032438483089209, - -0.026285860687494278, - 0.002643558895215392, - -0.006581447087228298, - -0.009343125857412815, - 0.014866483397781849, - 0.011099953204393387, - 0.02333119697868824, - -0.01746179722249508, - 0.003766530891880393, - -0.007127128075808287, - 0.0006130594410933554, - 0.021467894315719604, - -0.004531815182417631, - -0.0015580194303765893, - -0.008850681595504284, - 0.010441143065690994, - 0.021414658054709435, - 0.02319810353219509, - -0.031409937888383865, - -0.009962008334696293, - 0.003796476637944579, - -0.015744896605610847, - -0.030079009011387825, - 0.034151654690504074, - 0.0016578391660004854, - -0.02528766356408596, - 0.00674781296402216, - 0.007972268387675285, - -0.02395673282444477, - 0.01931178942322731, - -0.031143752858042717, - 0.0077393557876348495, - -0.02341105230152607, - 0.008045469410717487, - -0.000444613688159734, - -0.000203070740099065, - 0.06500260531902313, - 0.039555229246616364, - 0.026245931163430214, - -0.020789120346307755, - 0.01714237406849861, - -0.0020196856930851936, - 0.020735884085297585, - -0.009689168073236942, - -0.006388462148606777, - 0.01599777489900589, - -0.01751503348350525, - -0.017395250499248505, - -0.02150782197713852, - 0.03886314481496811, - 0.008112016133964062, - 0.023397741839289665, - -0.004132536239922047, - 0.014613606967031956, - -0.00010429081157781184, - -0.005180643405765295, - -0.015651732683181763, - 0.02792290411889553, - -0.005160679575055838, - 0.01621072366833687, - 0.0032824052032083273, - 0.018459994345903397, - 0.005746288690716028, - 0.01923193223774433, - -0.006408425979316235, - -0.017235537990927696, - -0.006880905944854021, - -0.0019198659574612975, - -0.01607763022184372, - -0.006574792321771383, - -0.026485498994588852, - 0.003443780355155468, - 0.0011487585725262761, - 0.010161647573113441, - 0.034098416566848755, - 0.001830028253607452, - -0.015758207067847252, - 0.027523623779416084, - 0.00019745588360819966, - 0.01538554672151804, - -0.0031942310743033886, - -0.04139191284775734, - 0.01664992980659008, - 0.002700123470276594, - -0.00340551626868546, - -0.004884511698037386, - 0.029812823981046677, - 0.027470387518405914, - 0.0026834867894649506, - -0.003896296489983797, - 0.016849568113684654, - 0.011312901973724365, - -0.005869399756193161, - 0.0005668928497470915, - -0.009935389272868633, - -0.02813585288822651, - -0.006128930952399969, - -0.0013550526928156614, - 0.01233106292784214, - 0.002364063635468483, - 0.0002322888030903414, - 0.010021899826824665, - -0.020709265023469925, - -0.002327463123947382, - -0.038197681307792664, - -0.03375237435102463, - -0.0014997912803664804, - -0.0041391910053789616, - -0.014294183813035488, - -0.020336603745818138, - -0.020003871992230415, - 0.014121163636446, - -0.0009657557820901275, - 0.005523358006030321, - 0.02693801559507847, - 0.0003079854359384626, - 0.002641895320266485, - -0.031383320689201355, - 0.006994035094976425, - -0.010055173188447952, - -0.004205737728625536, - 0.0028049342799931765, - -0.013921523466706276, - 0.016530144959688187, - -0.019125457853078842, - 0.010241503827273846, - 0.008977120742201805, - -0.009522801265120506, - 0.00734673161059618, - -0.0043687764555215836, - 0.035429347306489944, - 0.007958958856761456, - -0.0119517482817173, - 0.009236651472747326, - 0.0007765142363496125, - -0.009635930880904198, - 0.0017734636785462499, - 0.03846386447548866, - -0.03236820921301842, - 0.014986267313361168, - -0.0038430592976510525, - -0.010015245527029037, - 0.007413277868181467, - 0.017794528976082802, - -0.01659669168293476, - -0.010507689788937569, - 0.006295297294855118, - -0.01822042651474476, - 0.01923193223774433, - 0.007167056202888489, - -0.008544567972421646, - -0.005583249963819981, - 0.014826555736362934, - 0.0372127927839756, - -0.010727292858064175, - -0.008937192149460316, - 0.006335224956274033, - 0.0002347842964809388, - 0.019617902114987373, - -0.028375418856739998, - -0.6328836679458618, - -0.009462909772992134, - 0.024542342871427536, - -0.018459994345903397, - 0.008750862441956997, - 0.015651732683181763, - 0.0023757093586027622, - -0.0009566056542098522, - 0.01621072366833687, - 0.048685405403375626, - -0.005949255544692278, - 0.0020213492680341005, - -0.003155966755002737, - -0.021081924438476562, - -0.022346308454871178, - -0.015625113621354103, - 0.003039510454982519, - -0.02474198117852211, - 0.01759488880634308, - 0.02450241521000862, - -0.026112839579582214, - 0.0017069171881303191, - 0.0007024813094176352, - -0.020190201699733734, - -0.008384856395423412, - 0.023144865408539772, - -0.008644388057291508, - -0.01526576280593872, - -0.006398444063961506, - 0.008065433241426945, - 0.0055433218367397785, - 0.026818232610821724, - 0.004355467390269041, - 0.023650620132684708, - 0.05355660617351532, - 0.02699125185608864, - -0.01137944869697094, - 0.02341105230152607, - -0.006741158664226532, - 0.022878680378198624, - 0.0010248158359900117, - 0.0025038113817572594, - 0.031037278473377228, - 0.016170794144272804, - 0.01800747774541378, - 0.002944681793451309, - 0.02609952911734581, - -0.011226391419768333, - -0.006814359687268734, - -0.027310675010085106, - 0.0038929691072553396, - -0.007419932633638382, - -0.010454452596604824, - -0.0006534032872878015, - 0.03375237435102463, - 0.010820457711815834, - 0.0039528608322143555, - -0.0008767498657107353, - -0.0017368631670251489, - 0.0062686786986887455, - -0.02093552239239216, - -0.006418407894670963, - -0.022332999855279922, - -0.03215526044368744, - -0.021388038992881775, - 0.04027393087744713, - 0.00016626222350168973, - 0.00998197216540575, - -0.007513097487390041, - -0.033991944044828415, - 0.014906411990523338, - 0.03351280838251114, - -0.026964634656906128, - -0.013921523466706276, - 0.0037399122957140207, - 0.013196167536079884, - 0.019085530191659927, - 0.003889641724526882, - -0.011512541212141514, - 0.007493133656680584, - 0.0173819400370121, - -0.017395250499248505, - -0.025540539994835854, - 7.891996938269585e-05, - 0.007526407018303871, - -0.021734081208705902, - -0.03455093130469322, - -0.03500344976782799, - -0.011292938143014908, - 0.008943847380578518, - 0.015398855321109295, - 0.009283234365284443, - -0.036733657121658325, - -0.004798001144081354, - -0.0009091913234442472, - 0.03500344976782799, - 0.0011429358273744583, - 0.04935086891055107, - 0.014906411990523338, - -0.03880990669131279, - -0.019737686961889267, - 0.0017817820189520717, - 0.026192694902420044, - 0.016383742913603783, - 0.03210202232003212, - 0.007732701022177935, - -0.046076782047748566, - -0.004734782036393881, - 0.04413362592458725, - -0.048605550080537796, - -0.016290578991174698, - -0.010274776257574558, - -0.002946345368400216, - -0.014201018959283829, - 0.014201018959283829, - -0.018566468730568886, - 0.017754601314663887, - -0.01538554672151804, - 0.010514344088733196, - -0.00622542342171073, - 0.021334800869226456, - -0.029067503288388252, - 0.026818232610821724, - -0.012024949304759502, - 0.0001426590170012787, - 0.004578398074954748, - 0.013735193759202957, - -0.00520060770213604, - -0.03726603090763092, - -0.0018549831584095955, - 0.009456254541873932, - -0.01260390318930149, - 0.01931178942322731, - -0.007080545648932457, - 0.022226525470614433, - 0.004318866413086653, - 0.017421869561076164, - -0.019098840653896332, - 0.004232356324791908, - -0.019152076914906502, - -0.03987465053796768, - 0.009196723811328411, - 0.009915425442159176, - -0.00958934798836708, - -0.03127684444189072, - -0.03247468173503876, - -0.011153190396726131, - 0.01292998157441616, - 0.0022293070796877146, - 0.013269368559122086, - -0.039368897676467896, - -0.018247045576572418, - -0.006401771679520607, - 0.035455964505672455, - 0.01931178942322731, - -0.008331619203090668, - -0.007752664852887392, - -0.018672943115234375, - -0.0010389569215476513, - -0.029945915564894676, - 0.019298478960990906, - 0.021986957639455795, - -0.022559257224202156, - -0.0344976969063282, - 0.0009857197292149067, - -0.014893102459609509, - 0.01947150006890297, - 0.04016745463013649, - -0.018207117915153503, - -0.02816247008740902, - 0.017914311960339546, - 0.0007482320070266724, - -0.017648126929998398, - 0.032687630504369736, - -0.019404953345656395, - 0.007493133656680584, - -0.027417149394750595, - -0.01722222939133644, - 0.008557877503335476, - -0.01476000901311636, - 0.00597587414085865, - 0.02297184430062771, - -0.016490217298269272, - -0.012404263950884342, - -0.017674745991826057, - 0.006694575771689415, - -0.004069317132234573, - 0.019098840653896332, - -0.008411475457251072, - 0.01746179722249508, - 0.013801740482449532, - 0.052837904542684555, - 0.009596002288162708, - 0.027736572548747063, - -0.009203378111124039, - -0.0013525572139769793, - -0.0146002983674407, - -0.004348812624812126, - -0.005253844894468784, - 0.011093297973275185, - 0.042083993554115295, - 0.018539849668741226, - 0.036973223090171814, - 0.011898511089384556, - 0.009343125857412815, - -0.026964634656906128, - -0.0012510737869888544, - -0.008358238264918327, - 0.0336725190281868, - 0.010021899826824665, - 0.015185906551778316, - -0.0022060158662497997, - -0.022852061316370964, - -0.007493133656680584, - 0.010627472773194313, - 0.011359483934938908, - 0.009070285595953465, - 0.005706360563635826, - -0.011645633727312088, - 0.0015189234400168061, - -0.012497428804636002, - -0.0014432268217206001, - 0.028694842010736465, - -0.01204491313546896, - 0.005493411794304848, - 0.008551223203539848, - 0.00909690372645855, - 0.03580200672149658, - 0.019671140238642693, - -0.02427615597844124, - -0.005839453544467688, - 0.018459994345903397, - -0.01046776119619608, - 0.012490774504840374, - 0.010654091835021973, - 0.012537357397377491, - 0.012623867020010948, - -0.013329260051250458, - 0.025753488764166832, - 0.012390954419970512, - 0.022412855178117752, - 0.016769712790846825, - -0.008411475457251072, - 0.004811310674995184, - 0.02080243080854416, - 0.005020931828767061, - 0.03580200672149658, - 0.026791613548994064, - -0.006598083768039942, - 0.023450979962944984, - -0.03353942558169365, - 0.006771104410290718, - -0.010301395319402218, - 0.00583279924467206, - -0.0016087611438706517, - 0.0010572571773082018, - 0.027111036702990532, - 0.000969083106610924, - 0.03345957025885582, - 0.03061138093471527, - 0.010727292858064175, - 0.024622198194265366, - 0.02962649241089821, - -0.0017119082622230053, - -0.015771515667438507, - 0.02471536211669445, - -0.011539159342646599, - -0.028455276042222977, - -0.015957845374941826, - -0.004847911186516285, - 0.03319338336586952, - -0.023624001070857048, - 0.006651320960372686, - -0.003480380866676569, - 0.0022858716547489166, - -0.0045584337785840034, - 0.0018250372959300876, - 0.008537913672626019, - 0.02482183650135994, - 0.019045602530241013, - -0.014746700413525105, - -0.026485498994588852, - -0.00891057401895523, - 0.011279628612101078, - 0.0008035487844608724, - -0.026166075840592384, - -0.020376533269882202, - 0.008970465511083603, - -0.01040121540427208, - -0.01398807018995285, - -0.023450979962944984, - -0.006664630025625229, - -0.007459860295057297, - -0.0016478572506457567, - 0.0042223744094371796, - -0.006125603802502155, - 0.02612614817917347, - -0.010381250642240047, - 0.002126160077750683, - -0.007938995026051998, - -0.01583806239068508, - 0.009675858542323112, - 0.006361843552440405, - -0.024302775040268898, - 0.032581157982349396, - -0.02957325614988804, - 0.00791903119534254, - -0.02810923382639885, - 9.285313717555255e-05, - -0.03758545219898224, - -0.0042955754324793816, - -0.004438650328665972, - 0.008537913672626019, - 0.009170104749500751, - 0.0015904608881101012, - 0.009323162026703358, - -0.008564531803131104, - -0.014187709428369999, - 0.030025772750377655, - 0.009942044503986835, - -0.018260354176163673, - -0.03979479521512985, - 0.010115064680576324, - 0.018486611545085907, - 0.04184442758560181, - -6.847009353805333e-05, - -0.01008844655007124, - 0.013156238943338394, - -0.009143486618995667, - 0.0017817820189520717, - -0.011299592442810535, - -0.04703505337238312, - -0.014573679305613041, - 0.004069317132234573, - -0.018286973237991333, - -0.009403017349541187, - 0.03761206939816475, - -0.026192694902420044, - 0.007639536168426275, - 0.010953551158308983, - 0.003783167339861393, - -0.012823507189750671, - -0.010507689788937569, - -0.005945927929133177, - 0.005490084644407034, - 0.0029363634530454874, - 0.012823507189750671, - 0.026379024609923363, - 0.024755291640758514, - -0.025008168071508408, - 0.036840133368968964, - 0.00873089861124754, - 0.0001832107809605077, - -0.027497006580233574, - 0.019790923222899437, - 0.014280875213444233, - 0.0035103268455713987, - 0.01933840662240982, - -0.008877300657331944, - -0.005164006724953651, - 0.010168301872909069, - -0.002585330745205283, - 0.017688054591417313, - 0.009609311819076538, - 0.019165387377142906, - 0.01672978512942791, - 0.0011454313062131405, - -0.007173710502684116, - 0.0006875083199702203, - -0.01007513701915741, - -0.0036567291244864464, - 0.012324408628046513, - -0.008092052303254604, - -0.017741292715072632, - -0.013422424905002117, - -0.008271727710962296, - -0.018127260729670525, - -0.009922080673277378, - -0.014826555736362934, - 0.007113819010555744, - -0.00027720769867300987, - -0.013469007797539234, - 0.006887560710310936, - -0.028508512303233147, - -0.03699984401464462, - -0.013535554520785809, - -0.010015245527029037, - -0.0035036723129451275, - -0.015931228175759315, - -0.030212102457880974, - -0.0020845686085522175, - -0.0003965754294767976, - -0.017129063606262207, - 0.016250651329755783, - 0.0213214922696352, - -0.0172488484531641, - -0.031143752858042717, - 0.007167056202888489, - 0.016370434314012527, - 0.005363646429032087, - 0.01360875554382801, - -0.0047514187172055244, - -0.015438783913850784, - 0.02585996314883232, - 0.0032008858397603035, - -0.019018983468413353, - 0.014294183813035488, - -0.029759585857391357, - -0.017168991267681122, - 0.00635518878698349, - -0.0279761403799057, - -0.012657140381634235, - -0.012271171435713768, - 0.013375842943787575, - 0.001587965409271419, - -0.0005955910310149193, - 0.027257438749074936, - 0.004538469947874546, - -0.008125325664877892, - 0.020789120346307755, - 0.002844862174242735, - 0.006202131975442171, - 0.013568827882409096, - -0.027656717225909233, - 0.020083727315068245, - -0.009888807311654091, - -0.02379702217876911, - 0.008504640311002731, - 0.024395940825343132, - 0.004654926247894764, - -0.009689168073236942, - 0.009902115911245346, - -0.015505329705774784, - -0.006331897806376219, - -0.0008247604710049927, - 0.006880905944854021, - 0.011173154227435589, - -0.011871892027556896, - 0.010860385373234749, - -0.0023291269317269325, - -0.0023673910181969404, - 0.011020096950232983, - 0.03316676616668701, - -0.009835570119321346, - -0.02617938630282879, - -0.015478711575269699, - 0.03851710259914398, - 0.027709955349564552, - 0.014400658197700977, - 0.013575482182204723, - 0.0207758117467165, - 0.02810923382639885, - -0.01546540204435587, - -0.01127297431230545, - -0.013602100312709808, - 0.008018851280212402, - -0.0002713848662097007, - -0.001058089081197977, - -0.017701363191008568, - -0.015904609113931656, - 0.007513097487390041, - 0.0010788848157972097, - -0.0021228326950222254, - -0.011798691004514694, - -0.022066812962293625, - 0.00018206701497547328, - 0.011698870919644833, - 0.0017252175603061914, - -0.0003084013587795198, - -0.019125457853078842, - -0.008225144818425179, - 0.025327591225504875, - -0.050096191465854645, - 0.014201018959283829, - -0.015225835144519806, - 0.020469697192311287, - -0.010367942042648792, - 0.0028565076645463705, - -0.012111459858715534, - -0.02542075514793396, - -0.005400246940553188, - -0.022253142669796944, - 0.019378336146473885, - 0.015478711575269699, - 0.019351717084646225, - 0.012264516204595566, - 0.026285860687494278, - 0.0017634817631915212, - -0.010554271750152111, - -0.007506443187594414, - -0.01458698883652687, - -0.010001935996115208, - -0.03564229607582092, - 0.010447797365486622, - 0.005177316255867481, - 0.02542075514793396, - 0.014893102459609509, - -0.019644521176815033, - -0.010740602388978004, - 0.015651732683181763, - -0.04195090010762215, - 0.0037498942110687494, - -0.010234848596155643, - -0.03572215139865875, - -0.031383320689201355, - 0.013568827882409096, - 0.011326211504638195, - 0.0014440586091950536, - -0.0248484555631876, - 0.02020351216197014, - 0.02311824820935726, - -0.005124079063534737, - 0.019617902114987373, - -0.006581447087228298, - 0.00014505053695756942, - -0.015545258298516273, - 0.03319338336586952, - 0.025460682809352875, - 0.022319689393043518, - -0.006458336021751165, - -0.0010522662196308374, - -0.0347638800740242, - 0.01225120760500431, - 0.0252610445022583, - 0.0032607775647193193, - -0.002606958383694291, - 0.01806071400642395, - -0.004392067901790142, - -0.007972268387675285, - 0.021734081208705902, - 0.02359738200902939, - -0.016876187175512314, - 0.0021145143546164036, - -0.009622621349990368, - 0.010793839581310749, - -0.015531948767602444, - -0.021002069115638733, - -0.001051434432156384, - 0.010308049619197845, - -0.0057363067753612995, - -0.006611392833292484, - 0.04708829149603844, - -0.004042698536068201, - 0.0025686940643936396, - 0.0034371258225291967, - -0.005420210771262646, - 0.025820035487413406, - 0.016796331852674484, - 0.022399544715881348, - -0.009482873603701591, - -0.02813585288822651, - -0.007938995026051998, - -0.05494077503681183, - 0.005606540944427252, - -0.00695410743355751, - 0.012490774504840374, - -0.0038929691072553396, - -0.015984464436769485, - -0.015066123567521572, - 0.018726179376244545, - 0.002824898110702634, - -0.028694842010736465, - -0.01458698883652687, - 0.030398432165384293, - 0.015199216082692146, - 0.01751503348350525, - -0.004851238336414099, - -0.022905299440026283, - -0.01008844655007124, - 0.0025820033624768257, - -0.010880349203944206, - 0.00635518878698349, - 0.005337027832865715, - 0.010827112011611462, - -0.005693051498383284, - 0.011698870919644833, - 0.0008156102849170566, - 0.007772629149258137, - 0.009875497780740261, - -0.032767485827207565, - 0.005593231879174709, - -0.008451403118669987, - -0.00960265751928091, - 0.0030777747742831707, - 0.015438783913850784, - -0.010847076773643494, - 0.004961040336638689, - 0.017288776114583015, - 0.013788430951535702, - 0.016743093729019165, - -0.0039994437247514725, - -0.0072069838643074036, - 0.005719670094549656, - 0.02427615597844124, - -0.012291135266423225, - -0.007686118595302105, - -0.02599305473268032, - -0.016410361975431442, - 0.02074919268488884, - 0.004451959393918514, - -0.00350034493021667, - -0.011073334142565727, - -0.0065248822793364525, - 0.011213081888854504, - 0.021680843085050583, - -0.02458227053284645, - -0.024409249424934387, - -0.0239034965634346, - 0.004172464367002249, - -0.012444191612303257, - -0.0021061960142105818, - 0.016610002145171165, - 0.007459860295057297, - -0.02354414574801922, - -0.026325788348913193, - 0.024076517671346664, - -0.00670123053714633, - 0.018326900899410248, - 0.0023757093586027622, - 0.016370434314012527, - -8.006373718671966e-06, - 0.015611804090440273, - -0.04820626974105835, - -0.00600914703682065, - 0.04040702432394028, - -0.011086643673479557, - -0.016490217298269272, - 0.015425474382936954, - 0.0031709398608654737, - -0.016250651329755783, - 0.025673631578683853, - -0.010906968265771866, - -0.02424953691661358, - -0.013748503290116787, - 0.005816162563860416, - 0.006301951594650745, - 0.007067236118018627, - 0.012776924297213554, - 0.010966859757900238, - -0.002898099133744836, - -0.0062686786986887455, - 0.0038796598091721535, - -0.00995535310357809, - -0.0041025904938578606, - 0.006980726029723883, - -0.0026535410434007645, - 0.02406320720911026, - -0.013761811889708042, - 0.022692350670695305, - -0.010461106896400452, - 0.015026194974780083, - 0.00034957699244841933, - -0.04030054807662964, - -0.029759585857391357, - 0.001780118327587843, - 0.008092052303254604, - -0.029599875211715698, - -0.0023224721662700176, - -0.007992232218384743, - -0.0044852327555418015, - -0.016876187175512314, - 0.007719391956925392, - 0.006854287348687649, - 0.016929425299167633, - 0.009529456496238708, - 0.007453205995261669, - -0.0060756937600672245, - 0.0019914035219699144, - 0.009536110796034336, - 0.006651320960372686, - 0.003580200718715787, - -0.002204352291300893, - -0.031090516597032547, - 0.007526407018303871, - -0.019538046792149544, - 0.030451670289039612, - 0.016117557883262634, - -0.04759404435753822, - -0.02058948203921318, - -0.005613195709884167, - -0.0491645410656929, - 0.00112713105045259, - -0.015571876429021358, - 0.0010738938581198454, - 0.006967416498810053, - 0.00463828956708312, - 0.006441699340939522, - 0.02297184430062771, - -0.0040726447477936745, - 0.016716476529836655, - -0.008125325664877892, - -0.029679730534553528, - 0.012204624712467194, - -0.02588658034801483, - 0.009862188249826431, - 0.0060024927370250225, - -0.06106305122375488, - -0.010481070727109909, - 0.01271037757396698, - 0.005373628344386816, - 0.016889497637748718, - 0.02544737420976162, - -0.0070938547141849995, - -0.0069474526681005955, - 0.021654224023222923, - 0.017554961144924164, - 0.005297099705785513, - -0.006840978283435106, - 0.04027393087744713, - -0.010434487834572792, - -0.0038364045321941376, - 0.004172464367002249, - -0.0034537622705101967, - -0.0186063963919878, - 0.0056165228597819805, - 0.004518506117165089, - -0.008551223203539848, - -0.0011545814340934157, - 0.03316676616668701, - -0.01667654886841774, - -0.019870778545737267, - -0.009136831387877464, - 0.019032293930649757, - -0.0049078031443059444, - -0.0009582693455740809, - 0.02048300765454769, - 0.011020096950232983, - -0.001070566475391388, - -0.013828358612954617, - 0.014946339651942253, - -0.027656717225909233, - 0.00386302312836051, - 0.008584495633840561, - -0.01999056339263916, - 0.01881934516131878, - -0.019617902114987373, - -0.006621374748647213, - -0.01623734086751938, - 0.031436558812856674, - 0.0030578107107430696, - -0.005420210771262646, - 0.0027899611741304398, - 0.019950635731220245, - -0.00029238860588520765, - 0.027656717225909233, - 0.016450289636850357, - 0.006275332998484373, - -0.015598495490849018, - -0.03061138093471527, - -0.0031443212646991014, - 0.01328267715871334, - -0.010813803412020206, - 0.013182858005166054, - 0.005673087667673826, - -0.01939164474606514, - 0.005556631367653608, - 0.0001399555621901527, - 0.010707329027354717, - -0.004704836290329695, - 0.01876610703766346, - 0.20059771835803986, - -0.004721472971141338, - 0.0036101466976106167, - 0.014906411990523338, - -0.038091205060482025, - 0.009076939895749092, - 0.016330506652593613, - 0.010727292858064175, - -0.020962141454219818, - 0.00931650772690773, - -0.01621072366833687, - 0.0023324540816247463, - -0.0031792582012712955, - -0.00217606988735497, - 0.004954385571181774, - -0.01133952010422945, - -0.012583939358592033, - 0.005263826809823513, - -0.0067544677294790745, - 0.0181938074529171, - 0.0334063321352005, - -0.016995972022414207, - -0.015625113621354103, - -0.021148471161723137, - 0.008957155980169773, - 0.0042190467938780785, - -0.015984464436769485, - -0.008644388057291508, - 0.021654224023222923, - 0.0075463708490133286, - -0.0032258406281471252, - 0.0017135718371719122, - 0.006049075163900852, - -0.009037012234330177, - 0.010447797365486622, - -0.016064319759607315, - 0.0226790402084589, - 0.011326211504638195, - 0.028455276042222977, - 0.03087756782770157, - -0.019152076914906502, - 0.0004107165732420981, - -0.01094689592719078, - -0.012164697051048279, - 0.023783711716532707, - 0.0075530256144702435, - -0.009030357003211975, - 0.01037459634244442, - 0.019830850884318352, - -0.02017689310014248, - -0.01586468145251274, - -0.013063074089586735, - 0.02322472259402275, - 0.02781642973423004, - 0.0032308315858244896, - 0.004867875017225742, - 0.005466793198138475, - 0.007592953275889158, - 0.0033190057147294283, - -0.0017135718371719122, - -0.017834456637501717, - -0.006272005848586559, - 0.016796331852674484, - 0.01397476065903902, - -0.04541131854057312, - 0.010208230465650558, - 0.009742405265569687, - 0.02270565927028656, - -0.0042589749209582806, - -0.01342908013612032, - 0.005739633925259113, - -0.018979055806994438, - -0.023610690608620644, - 0.0027533606626093388, - -0.00998197216540575, - -0.027390532195568085, - 0.026924706995487213, - -0.004947730805724859, - 0.02810923382639885, - 0.011406066827476025, - 0.0027633425779640675, - 0.0146668441593647, - 0.019192004576325417, - -0.019218623638153076, - -0.01303645595908165, - -0.04820626974105835, - 0.031330082565546036, - 0.005513376090675592, - 0.00031755148665979505, - -0.0076195718720555305, - -0.018513230606913567, - -0.024316083639860153, - 0.007899067364633083, - -0.0426429845392704, - 0.016942733898758888, - -0.0018832654459401965, - 0.016064319759607315, - 0.013868286274373531, - -0.018939128145575523, - 0.019844161346554756, - 0.0003404268354643136, - 0.059306222945451736, - 0.011499231681227684, - -0.02221321500837803, - -0.025354208424687386, - 0.028428656980395317, - 0.015106051228940487, - 0.022931916639208794, - 0.008997084572911263, - 0.012071531265974045, - 0.00350034493021667, - -0.026086220517754555, - 0.0011238036677241325, - -0.009010393172502518, - 0.006411753594875336, - 0.029972534626722336, - -0.0018749471055343747, - -0.00572299724444747, - 0.002751697087660432, - -0.014067926444113255, - -0.027044489979743958, - 0.013615409843623638, - -0.0120182940736413, - 0.013122965581715107, - 0.017395250499248505, - -0.027443768456578255, - -0.009975317865610123, - -0.012464155443012714, - -0.01398807018995285, - -0.004578398074954748, - 0.009123522788286209, - -0.0005086646415293217, - 0.026964634656906128, - -0.0065348646603524685, - -0.007147091906517744, - -0.006867596879601479, - 0.01743517816066742, - -0.029732966795563698, - 0.015425474382936954, - -0.012444191612303257, - 0.019644521176815033, - -0.00870427954941988, - 0.007566334679722786, - 0.0045617613941431046, - -0.01727546565234661, - 0.0006018297281116247, - -0.000687924271915108, - 0.008517949841916561, - -0.00023041719396132976, - 0.0034970175474882126, - 0.002470538020133972, - -0.012557321228086948, - -0.003982807043939829, - -0.02422291971743107, - 0.035482585430145264, - 0.0021694153547286987, - -0.018207117915153503, - -0.004778037313371897, - 0.003560236655175686, - 0.00369000225327909, - -0.020682645961642265, - -0.007839175872504711, - 0.006834323517978191, - -0.01349562592804432, - -0.028588367626070976, - 0.0038097859360277653, - -0.16886834800243378, - 0.010274776257574558, - 0.024129753932356834, - -0.04804655909538269, - 0.014480514451861382, - -0.017781220376491547, - 0.004392067901790142, - -0.0004911962314508855, - -0.00927657913416624, - 0.0028082614298909903, - 0.01855315826833248, - 0.002839870983734727, - -0.021787317469716072, - -0.012244552373886108, - 0.01458698883652687, - 0.009509491734206676, - -0.006727849133312702, - 0.02061609923839569, - 0.03907609358429909, - 0.009835570119321346, - 0.014054616913199425, - -0.02794952131807804, - 0.017475105822086334, - 0.00900373887270689, - -0.0079456502571702, - 0.009010393172502518, - -0.012351026758551598, - 0.012404263950884342, - 0.0007869121618568897, - -0.03244806453585625, - 0.011812000535428524, - -0.008551223203539848, - 0.06170189753174782, - -0.014240946620702744, - 0.002052958821877837, - -0.02604629285633564, - 0.006771104410290718, - 0.0019198659574612975, - -0.012284480035305023, - 0.05510048568248749, - 0.026525426656007767, - 0.012623867020010948, - -0.0003574793809093535, - 0.026245931163430214, - -0.024316083639860153, - 0.02317148447036743, - 0.01988408900797367, - -0.007013998925685883, - -0.020389841869473457, - -0.004089281428605318, - 0.0029496727511286736, - -0.031143752858042717, - -0.02161429636180401, - 0.010148338042199612, - 0.00832496490329504, - 0.03865019604563713, - 0.025034785270690918, - -0.006854287348687649, - 0.012417573481798172, - -0.0073267677798867226, - -0.012404263950884342, - -0.002219325164332986, - 0.022199906408786774, - -0.015758207067847252, - -0.009203378111124039, - -0.03207540512084961, - 0.023943424224853516, - 0.023317886516451836, - -0.01292998157441616, - 0.006059057079255581, - -0.01923193223774433, - -0.0008817408815957606, - 0.005739633925259113, - 0.0007444887305609882, - -0.0042922478169202805, - 0.016490217298269272, - -0.011918474920094013, - 0.027337294071912766, - 0.007852484472095966, - -0.015106051228940487, - -0.016303887590765953, - 0.040806300938129425, - -0.009329816326498985, - -0.018619704991579056, - -0.034098416566848755, - -0.017807837575674057, - -0.012524047866463661, - 0.018619704991579056, - -0.002866489579901099, - -0.006019129417836666, - 0.02536751888692379, - -0.05510048568248749, - -0.03891638293862343, - 0.01478662807494402, - 0.008684315718710423, - 0.010055173188447952, - 0.005446829367429018, - -0.0013375842245295644, - -0.003320669289678335, - -0.03654732555150986, - 0.027363913133740425, - -0.01096020545810461, - 0.010128374211490154, - 0.01654345542192459, - -0.004611670970916748, - -0.00040822106529958546, - -0.009868843480944633, - 0.015505329705774784, - 0.03308691084384918, - -0.01093358639627695, - -0.03212863951921463, - -0.015039504505693913, - 0.0025237752124667168, - 0.008770826272666454, - -0.024356011301279068, - 0.015824753791093826, - 0.00899042934179306, - -0.013355879113078117, - 0.003328987630084157, - -0.0005710519617423415, - 0.050069570541381836, - 0.0014166082255542278, - -0.040753066539764404, - 0.0023790367413312197, - -0.013548863120377064, - -0.03452431410551071, - -0.07628888636827469, - -0.03345957025885582, - 0.02957325614988804, - 0.01401468925178051, - -0.003348951693624258, - 0.026631901040673256, - -0.002057950012385845, - -0.002823234535753727, - -0.02012365497648716, - 0.02424953691661358, - -0.0305581446737051, - -0.04144514724612236, - -0.00547344796359539, - -0.01751503348350525, - 0.01871287077665329, - -0.009349780157208443, - -0.003312351182103157, - -0.00048786887782625854, - 0.004837929271161556, - 0.02194702997803688, - 0.018726179376244545, - -0.008883954957127571, - 0.014946339651942253, - -9.300910460297018e-05, - -0.01887258142232895, - -0.0022609166335314512, - -0.03183583542704582, - 0.019591284915804863, - 0.011126571334898472, - 0.006032438483089209, - 0.005297099705785513, - -0.009190068580210209, - 0.008757516741752625, - -0.024728672578930855, - -0.014493823982775211, - -0.004867875017225742, - -0.025354208424687386, - -0.013169548474252224, - -0.014347421005368233, - -0.023916805163025856, - 0.02116178162395954, - -0.002009703777730465, - 0.011126571334898472, - -0.03835739195346832, - -0.013735193759202957, - -0.0041458457708358765, - -0.019724376499652863, - 0.000977401388809085, - -0.008125325664877892, - -0.01397476065903902, - -0.03614804893732071, - -0.007120473310351372, - 0.0005415219930000603, - 0.0022509347181767225, - 0.018446683883666992, - 0.003956188447773457, - 0.0008709270623512566, - -0.02427615597844124, - -0.015611804090440273, - 0.0007615413051098585, - -0.004934421740472317, - -0.010148338042199612, - -0.01064743660390377, - 0.02259918488562107, - -0.0002992512017954141, - -0.0021012050565332174, - -0.013841668143868446, - 0.004471923690289259, - -0.004731454886496067, - 0.0028282254934310913, - -0.020416460931301117, - -0.0010730619542300701, - 0.006801050156354904, - 0.0005223898915573955, - -0.01795424148440361, - -0.01535892765969038, - -0.030504906550049782, - -0.01678302325308323, - 0.029653111472725868, - -0.004881184548139572, - -0.014813246205449104, - -0.029972534626722336, - 0.031543031334877014, - -0.01591791771352291, - 0.01591791771352291, - 0.009562728926539421, - -0.0004629139439202845, - -0.036573946475982666, - 0.014813246205449104, - -0.02585996314883232, - 0.006188822910189629, - 0.005892690736800432, - 0.00636849831789732, - -0.0194182638078928, - -0.005483429878950119, - -0.01957797445356846, - 0.018446683883666992, - -0.006155549548566341, - -0.020429769530892372, - 0.004754745867103338, - -0.024209609255194664, - 0.0004895325400866568, - -0.06431052088737488, - 0.015704968944191933, - 0.024356011301279068, - 0.00029862733208574355, - -0.02424953691661358, - 0.012144733220338821, - 0.015625113621354103, - 0.013761811889708042, - 0.00035955896601080894, - -0.015039504505693913, - -0.012470810674130917, - -0.017781220376491547, - 0.009469564072787762, - 0.017634818330407143, - -0.00552003039047122, - -0.022199906408786774, - 0.008511294610798359, - -0.003270759480074048, - 0.0018533194670453668, - -0.005759597755968571, - 0.008664351888000965, - 0.005872726906090975, - -0.00018716197519097477, - 0.00832496490329504, - -0.02492831088602543, - -0.0025869945529848337, - -0.01944488100707531, - -0.005802853032946587, - 0.004205737728625536, - -0.023637309670448303, - -0.013242749497294426, - -0.005972546525299549, - -0.020416460931301117, - 0.01469346322119236, - -0.017727982252836227, - -0.01814057119190693, - 0.00940967258065939, - 0.04905806481838226, - 0.011891855858266354, - 0.06377814710140228, - -0.027111036702990532, - -0.045970309525728226, - 0.020908905193209648, - -0.022878680378198624, - 0.007885757833719254, - -0.01155912410467863, - 0.021308183670043945, - -0.008318309672176838, - 0.0146002983674407, - -0.009935389272868633, - 0.005742961075156927, - 0.010214884765446186, - -0.011845273897051811, - -0.02161429636180401, - 0.015012886375188828, - -0.027417149394750595, - 0.0020928867161273956, - -0.0034171617589890957, - -0.01722222939133644, - -0.009130177088081837, - 0.057922057807445526, - 0.009735750034451485, - -0.0072868396528065205, - 0.010128374211490154, - 0.03444445878267288, - 0.0017551634227856994, - -0.04546455666422844, - -0.006245387252420187, - 0.03729264810681343, - 0.0006746149738319218, - -0.02786966599524021, - -0.023717164993286133, - 0.008697625249624252, - 0.026458879932761192, - 0.008584495633840561, - -0.018699560314416885, - 0.028402037918567657, - -0.007187020033597946, - 0.008032159879803658, - 0.01664992980659008, - 0.015957845374941826, - 0.008411475457251072, - -0.02118839882314205, - 0.010367942042648792, - 0.021121853962540627, - 0.010308049619197845, - -0.03699984401464462, - -0.01591791771352291, - -0.020576171576976776, - 0.008238454349339008, - 0.0036101466976106167, - 0.009822260588407516, - 0.0019165386911481619, - 0.002284207846969366, - -0.009376399219036102, - -0.003493690164759755, - -0.0018766107968986034, - -0.015332309529185295, - 0.011778727173805237, - 0.014520442113280296, - 0.025753488764166832, - 0.019617902114987373, - 0.00829834584146738, - -0.03915594890713692, - -0.03636099770665169, - 0.01204491313546896, - -0.010847076773643494, - -0.027683336287736893, - -0.008517949841916561, - 0.009742405265569687, - -0.008997084572911263, - 0.020336603745818138, - -0.00572299724444747, - -0.004348812624812126, - -0.008943847380578518, - 0.04370772838592529, - 0.009862188249826431, - -0.016290578991174698, - -0.02210674062371254, - 0.0026335769798606634, - 0.023011773824691772, - 0.0046349624171853065, - -0.009496183134615421, - 0.006142240017652512, - 0.031543031334877014, - 0.008278382010757923, - 0.0020695955026894808, - -0.01808733306825161, - -0.016011083498597145, - -0.019790923222899437, - -0.0033905431628227234, - -0.001455704215914011, - -0.013122965581715107, - -0.0009166777599602938, - -0.020709265023469925, - -0.010940241627395153, - 0.012131423689424992, - 0.000969083106610924, - 0.0041757915169000626, - 0.10386575013399124, - 0.01006182748824358, - 0.00900373887270689, - -0.0029230541549623013, - -0.01397476065903902, - 0.00025724375154823065, - -0.003190903691574931, - 0.013695266097784042, - -0.03771854564547539, - -0.031463176012039185, - 0.014853174798190594, - -0.010807148180902004, - 0.013395806774497032, - -0.011752108111977577, - -0.013542208820581436, - -0.005220571532845497, - -0.01607763022184372, - 0.026818232610821724, - -0.005160679575055838, - 0.013335914351046085, - 0.020656026899814606, - -0.010174957104027271, - 0.0038563685957342386, - 0.03191569074988365, - -0.0334063321352005, - 0.0020712593104690313, - 0.021281564608216286, - -0.0032591139897704124, - -0.0027533606626093388, - -0.025673631578683853, - -0.011386102996766567, - 0.02311824820935726, - -0.06404433399438858, - -0.025607086718082428, - 0.015625113621354103, - -0.006295297294855118, - -0.00695410743355751, - -0.024409249424934387, - 0.014374040067195892, - -0.0005332036525942385, - 0.017674745991826057, - 0.02064271830022335, - -0.018925819545984268, - -0.01991070620715618, - -0.0056631057523190975, - -0.006867596879601479, - -0.0039528608322143555, - -0.018885891884565353, - -0.017129063606262207 - ], - "sparse": "SparseEmbedding(values=array([1.22036836, 1.73559322, 1.56989547, 1.22036836, 1.22036836,\n 1.22036836, 1.22036836, 1.22036836, 1.22036836, 1.89565803,\n 1.22036836, 1.22036836, 1.56989547, 1.83228955, 1.22036836,\n 1.22036836, 1.22036836, 1.89565803, 1.22036836, 1.56989547,\n 1.73559322, 1.22036836, 1.22036836, 1.22036836, 1.22036836,\n 1.22036836, 1.22036836, 1.56989547, 1.56989547, 1.56989547,\n 1.56989547, 1.73559322, 1.22036836, 1.22036836, 1.22036836,\n 1.22036836, 1.22036836, 1.22036836, 1.22036836, 1.22036836,\n 1.22036836, 1.56989547, 1.22036836, 1.22036836, 1.89565803,\n 1.22036836, 1.22036836, 1.22036836, 1.22036836, 1.22036836,\n 1.22036836, 1.22036836, 1.56989547, 1.56989547, 1.56989547,\n 1.22036836, 1.22036836, 1.22036836, 1.22036836, 1.22036836,\n 1.97366708, 1.22036836, 1.22036836, 1.22036836, 1.22036836,\n 1.22036836, 1.22036836, 1.22036836, 1.22036836, 1.22036836,\n 1.22036836, 1.22036836, 1.22036836, 1.22036836, 1.22036836,\n 1.22036836, 1.22036836, 1.22036836, 1.56989547, 1.22036836,\n 1.22036836, 1.22036836, 1.22036836, 1.22036836, 1.22036836,\n 1.22036836, 1.22036836, 1.22036836, 1.22036836, 1.22036836,\n 1.22036836, 1.22036836, 1.22036836, 1.22036836, 1.22036836,\n 1.22036836, 1.22036836, 1.22036836, 1.22036836, 1.22036836,\n 1.22036836, 1.22036836, 1.22036836, 1.22036836]), indices=array([1382232221, 1413554298, 993732989, 2017215381, 236447838,\n 127426384, 1681926305, 1358867299, 1751750842, 1675878461,\n 338063690, 1828557919, 46957595, 408270109, 1535770478,\n 188726820, 1147900472, 1047604504, 1617051573, 419117754,\n 1638510030, 187367513, 760377859, 626604648, 31730435,\n 1081081954, 288125403, 990385963, 1260730820, 1991080414,\n 1891508191, 448728680, 1141673130, 231980230, 1354425271,\n 312766046, 648501015, 1570547443, 1778032728, 1466158544,\n 2095749492, 1185887606, 808610452, 1529164083, 164058840,\n 701581752, 252537680, 190331650, 372990882, 1095350901,\n 1515684580, 728497482, 47951928, 1162941628, 1320850453,\n 1171521091, 548955463, 1325617505, 1043056305, 1406760440,\n 1109731834, 480342213, 1595922768, 1836140557, 2055334591,\n 1420421541, 82935738, 851532794, 1822615852, 260949019,\n 674560496, 834718839, 2083703521, 2039377815, 1769347644,\n 1598346136, 2094190344, 1157951464, 1174634009, 334671777,\n 1448994436, 515581108, 1788297724, 912658635, 1737558547,\n 38345691, 656549967, 1508183312, 1792571469, 324336841,\n 1982861065, 963966427, 81286401, 1028804636, 433708589,\n 2091876921, 2120211764, 241487245, 1863110071, 1079921207,\n 808465105, 897487598, 1141776127, 815174908]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 7, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 138 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000008.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000008.json deleted file mode 100644 index 1b9966f7128fc75b2b92619f45efaef352224e0a..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000008.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000008", - "content": "Aufgabenstellung Das Projekt verfolgte das Ziel, B\u00fcrgerbeteiligung durch immersive AR-Visualisierungen zu verbessern. Herk\u00f6mmliche Beteiligungsverfahren sind oft schwer zug\u00e4nglich und nicht f\u00fcr alle Bev\u00f6lkerungsgruppen verst\u00e4ndlich. Durch AR-Technologie wurde eine interaktive M\u00f6glichkeit geschaffen, um B\u00fcrger*innen aktiv in Planungsprozesse einzubinden. Die Herausforderung bestand darin, ein stabil arbeitendes, genaues AR-Tracking-System zu entwickeln, das ohne GPS funktioniert und eine realistische Darstellung geplanter Ver\u00e4nderungen erm\u00f6glicht. l.2", - "embedding": { - "dense": [ - 0.003811880713328719, - 0.009234695695340633, - -0.006881273351609707, - -0.008492207154631615, - 0.004673697520047426, - 0.008823675103485584, - -0.026716312393546104, - -0.003563279751688242, - -0.02436951920390129, - -0.0287448950111866, - 0.002215862972661853, - 0.0037754192017018795, - -0.0033511403016746044, - -0.013590184040367603, - -0.016029788181185722, - 0.0073851048946380615, - 0.0371774397790432, - -0.0038748597726225853, - -0.003356112400069833, - 0.00667576352134347, - -0.026941711083054543, - 0.019675934687256813, - 0.04088987782597542, - 0.008604906499385834, - -0.019742228090763092, - 0.010447868146002293, - 0.020232800394296646, - -0.03227171301841736, - 0.015101676806807518, - -0.014823243953287601, - 0.006987343076616526, - -0.0005344919627532363, - 0.010931811295449734, - -0.013550407253205776, - -0.015327075496315956, - -0.00888333935290575, - -0.0024097715504467487, - -0.0020567583851516247, - 0.015114936046302319, - 0.02604011818766594, - -0.001112903468310833, - -0.0120588019490242, - 0.007683425676077604, - -0.005336632952094078, - -0.01504864264279604, - 0.019012998789548874, - -0.01470391545444727, - 0.014783468097448349, - -0.017117002978920937, - 0.004398578777909279, - 0.015406628139317036, - 0.027445541694760323, - -0.02739250659942627, - -0.018469391390681267, - 6.0130347264930606e-05, - -0.0048427460715174675, - -0.012867583893239498, - 0.022367453202605247, - -0.0033163363113999367, - -0.0185887198895216, - -0.005575289949774742, - 0.013225569389760494, - -0.030388977378606796, - 0.0071464478969573975, - -0.03232474997639656, - 0.017329141497612, - -0.026424620300531387, - 0.00640064524486661, - 0.008717605844140053, - 0.0016523674130439758, - 0.05107257142663002, - 0.01654687710106373, - 0.029169173911213875, - 0.00015837950923014432, - 0.026610242202878, - -0.0032036371994763613, - 0.027339471504092216, - -0.012204647995531559, - -0.010348428040742874, - 0.010805853642523289, - -0.005190787371248007, - -0.015857424587011337, - -0.019927849993109703, - 0.04417804256081581, - 0.009420317597687244, - 0.026968227699398994, - 0.015472921542823315, - 0.02226138301193714, - 0.0011990851489827037, - -0.00984459649771452, - -0.023600514978170395, - 0.016931379213929176, - -0.008810416795313358, - 0.022287901490926743, - -0.009168402291834354, - 0.019503571093082428, - -0.011084286496043205, - 0.022208349779248238, - -0.010136288590729237, - -0.019742228090763092, - -0.005741023924201727, - 0.0016531961737200618, - -0.01113069150596857, - -0.01121024414896965, - -0.02393198199570179, - -0.005187472328543663, - -0.004444984253495932, - 0.01295376569032669, - 0.029010070487856865, - -0.006947567220777273, - -0.007404992822557688, - 0.03415445238351822, - -0.006669133901596069, - 0.010606972500681877, - 8.618165156804025e-05, - -0.02434300258755684, - -0.0002457005903124809, - -0.007318811025470495, - 0.006394015625119209, - 0.001781639875844121, - 0.030388977378606796, - 0.015406628139317036, - 0.004481445997953415, - 0.009420317597687244, - 0.008936374448239803, - 0.01380232349038124, - -0.02138630859553814, - 0.012575891800224781, - -0.0018843950238078833, - -0.025615839287638664, - -0.012827807106077671, - 0.006026086397469044, - 0.018442872911691666, - 0.005777485202997923, - -0.009526386857032776, - 0.01629496179521084, - -0.013908392749726772, - 0.0038350834511220455, - -0.0456099808216095, - -0.018124664202332497, - -0.007935341447591782, - 0.008684459142386913, - -0.00431571202352643, - -0.021121134981513023, - -0.01622866839170456, - 0.010872147046029568, - -0.0019191991304978728, - 0.006224967073649168, - 0.005621695425361395, - -0.00520404614508152, - 0.00038077373756095767, - -0.03481738641858101, - 0.005190787371248007, - -0.010540679097175598, - -0.012483080849051476, - -0.011455530300736427, - -0.016268443316221237, - 0.008730864152312279, - -0.017939042299985886, - -0.012065431103110313, - 0.01488953735679388, - -0.0004918155027553439, - 0.005707877222448587, - -0.009632457047700882, - 0.052027199417352676, - 0.016268443316221237, - -0.0032815320882946253, - 0.007371846120804548, - 0.004471501801162958, - -0.010746189393103123, - 0.008823675103485584, - 0.027286436408758163, - -0.027445541694760323, - 0.013212310150265694, - -0.003891433123499155, - 0.00260202307254076, - -0.0073851048946380615, - 0.0037555312737822533, - -0.014094014652073383, - -0.024130862206220627, - -0.016029788181185722, - -0.005910072475671768, - 0.014558070339262486, - 0.014226602390408516, - -0.013590184040367603, - 0.006523288320749998, - 0.00836624950170517, - 0.04078381136059761, - -0.005724450573325157, - -0.006089065223932266, - 0.03182091936469078, - -0.003377657849341631, - 0.003957726527005434, - -0.0177931971848011, - -0.6402368545532227, - 0.004388635046780109, - 0.02317623607814312, - -0.009937407448887825, - 0.0036196294240653515, - 0.023467926308512688, - -0.004965389147400856, - -0.006201764103025198, - 0.0011253334814682603, - 0.037972960621118546, - 0.007139818277209997, - -0.00774308992549777, - 4.433383219293319e-05, - -0.02695496939122677, - -0.020206281915307045, - -0.011303055100142956, - -0.0002550231001805514, - -0.014239860698580742, - 0.02760464698076248, - 0.031741365790367126, - -0.03601067140698433, - 0.001753465156070888, - -0.004053852520883083, - -0.013311750255525112, - -0.006758630275726318, - 0.009566163644194603, - -0.006112268194556236, - -0.014438741840422153, - -0.023878946900367737, - 0.002669973997399211, - -0.018403097987174988, - 0.01176048070192337, - -0.007172965444624424, - 0.03638191521167755, - 0.046776749193668365, - 0.02003392018377781, - -0.005383038427680731, - 0.019954366609454155, - -0.006185190752148628, - 0.021837104111909866, - -0.0013722770381718874, - -0.007683425676077604, - 0.025005938485264778, - -0.0013449309626594186, - 0.01705070771276951, - -0.009287730790674686, - 0.02840016968548298, - -0.008319844491779804, - -0.01694463938474655, - -0.029699523001909256, - -0.00834636203944683, - -0.010706412605941296, - -0.011548341251909733, - -0.007915453054010868, - 0.02657046727836132, - 0.002282156376168132, - -0.008565130643546581, - 0.005419500172138214, - -0.007431510370224714, - -0.002285471186041832, - -0.024568399414420128, - -0.01556573249399662, - -0.011594747193157673, - -0.04088987782597542, - -0.033783208578825, - 0.03688574582338333, - -0.002542358823120594, - 0.010149546898901463, - -0.010103140957653522, - -0.02654394879937172, - 0.011554970405995846, - 0.03269599378108978, - -0.0215454138815403, - -0.01014291774481535, - 0.01280129048973322, - 0.004431725945323706, - 0.016812050715088844, - -0.015419886447489262, - -0.004378690849989653, - 0.007073524873703718, - 0.006324407644569874, - -0.011044510640203953, - -0.011442271992564201, - 0.019569864496588707, - 0.02147911861538887, - -0.016281703487038612, - -0.038476794958114624, - -0.024833574891090393, - 0.0005900128744542599, - 0.018920186907052994, - 0.012244423851370811, - 0.012781402096152306, - -0.035268183797597885, - -0.000856844533700496, - -0.0023766248486936092, - 0.03473783656954765, - 0.006397330202162266, - 0.041340675204992294, - 0.030150320380926132, - -0.03412793576717377, - -0.025390440598130226, - -0.00869771745055914, - 0.03436659276485443, - 0.015685060992836952, - 0.03216564282774925, - 0.015327075496315956, - -0.0329611673951149, - 0.0011361062061041594, - 0.05208023637533188, - -0.043727245181798935, - -0.019914591684937477, - -0.01717003621160984, - -0.006390701048076153, - -0.008280067704617977, - 0.0185887198895216, - -0.01726284809410572, - 0.002971609588712454, - -0.026398103684186935, - 0.023905465379357338, - -0.00888333935290575, - 0.02150563709437847, - -0.017289364710450172, - 0.04266654700040817, - -0.011203614994883537, - 0.0007284007151611149, - 0.021280238404870033, - 0.00575428269803524, - -0.013331638649106026, - -0.033756691962480545, - -0.0019092550501227379, - 0.002799246460199356, - -0.013563666492700577, - 0.02150563709437847, - 0.006649245973676443, - 0.024382777512073517, - 0.014319413341581821, - 0.005336632952094078, - -0.009175031445920467, - -0.003299762960523367, - -0.013411191292107105, - -0.01934446580708027, - 0.013961427845060825, - 0.014597846195101738, - -0.013059834949672222, - -0.03094584308564663, - -0.03786689043045044, - -0.007650278974324465, - 0.002671631285920739, - 0.008134221658110619, - 0.005054885521531105, - -0.0431438609957695, - -0.021147651597857475, - 0.010036847554147243, - 0.030866289511322975, - 0.024647952988743782, - -0.007643649820238352, - -0.018416356295347214, - -0.01739543490111828, - 0.005492423195391893, - -0.03370365500450134, - 0.02409108728170395, - 0.011972620151937008, - -0.024926384910941124, - -0.027790268883109093, - -0.0026053376495838165, - -0.009665603749454021, - 0.01242341659963131, - 0.04417804256081581, - -0.0177931971848011, - -0.027684198692440987, - 0.03518863022327423, - 0.010169435292482376, - -0.01648058369755745, - 0.027843303978443146, - -0.00959268119186163, - 0.02631855010986328, - -0.024382777512073517, - -0.019039515405893326, - -0.006122211925685406, - -0.018482649698853493, - -0.002600365551188588, - 0.006142099853605032, - -0.009088849648833275, - -0.015008865855634212, - -0.008339731954038143, - -0.0012736653443425894, - 0.0009877743432298303, - 0.017687126994132996, - -0.008823675103485584, - 0.015671802684664726, - 0.021121134981513023, - 0.03919276222586632, - 0.0023285618517547846, - 0.019742228090763092, - -0.0026335124857723713, - 0.0019175417255610228, - -0.016652947291731834, - -0.0019142270321026444, - 0.003997502848505974, - 0.02771071530878544, - 0.039351869374513626, - 0.0133183803409338, - 0.03439310938119888, - 0.004004132002592087, - 0.002144597237929702, - -0.0236800666898489, - -0.004047222901135683, - -0.010461126454174519, - 0.011886438354849815, - -0.005562031175941229, - 0.014001203700900078, - -0.015353593043982983, - -0.00858501810580492, - -0.011608005501329899, - 0.01632147841155529, - 0.014650881290435791, - 0.004004132002592087, - 0.00548910815268755, - 0.0013631617184728384, - 0.007252517621964216, - -0.004113516770303249, - -0.0046637533232569695, - 0.01959638111293316, - -0.01717003621160984, - -0.0064669386483728886, - 0.006374127697199583, - 0.015313816256821156, - 0.028479721397161484, - 0.03598415479063988, - -0.016109339892864227, - -0.002887085312977433, - 0.027684198692440987, - -0.02163822390139103, - 0.010083253495395184, - 0.019132327288389206, - 0.0033428536262363195, - 0.024952903389930725, - -0.019039515405893326, - 0.016812050715088844, - 0.018190957605838776, - 0.02773723378777504, - 0.023282304406166077, - 0.006649245973676443, - -0.002174429362639785, - 0.01959638111293316, - -0.003947782795876265, - 0.040200427174568176, - 0.019264914095401764, - -0.006732112728059292, - 0.020683595910668373, - -0.02619922161102295, - 0.006655875127762556, - -0.02695496939122677, - -0.006026086397469044, - 0.0005208189249970019, - 0.0034737836103886366, - 0.016308220103383064, - 0.002187688136473298, - 0.02975255809724331, - 0.048792075365781784, - 0.01723632961511612, - 0.032377783209085464, - 0.02342815138399601, - 0.005966422148048878, - -0.02122720330953598, - 0.003921265248209238, - -0.017276106402277946, - -0.0304685290902853, - -0.01591045968234539, - -0.00518084317445755, - 0.026928450912237167, - -0.022248124703764915, - -0.003556650597602129, - -0.007603873498737812, - -0.004491390194743872, - -0.002227464225143194, - 0.005608436651527882, - -0.003506930312141776, - 0.018628494814038277, - 0.02145260199904442, - -0.030574599280953407, - -0.019105808809399605, - -0.007961858995258808, - 0.014266378246247768, - 0.0019258285174146295, - -0.01792578399181366, - -0.015897199511528015, - 0.016931379213929176, - -0.019901331514120102, - -0.023812653496861458, - -0.02657046727836132, - -0.0019374298863112926, - 0.005081402603536844, - 0.0032135811634361744, - 0.002214205451309681, - 0.014412224292755127, - 0.02386568859219551, - -0.002696491312235594, - -0.007418251596391201, - -0.022751957178115845, - -0.018230734393000603, - -0.002916917437687516, - 0.004395264200866222, - -0.029460866004228592, - 0.024568399414420128, - -0.009751785546541214, - -0.007981746457517147, - -0.024303225800395012, - -0.004388635046780109, - -0.029540419578552246, - 0.006848126649856567, - -0.011674298904836178, - 0.008558501489460468, - 0.0034141193609684706, - -0.006278001703321934, - 0.008803787641227245, - -0.0030809941235929728, - -0.014849761500954628, - 0.029460866004228592, - 0.0027246661484241486, - -0.012734996154904366, - -0.03606370836496353, - -0.003220210550352931, - 0.021359791979193687, - 0.06051277741789818, - 0.005011794622987509, - 0.005339947994798422, - 0.017501505091786385, - -0.011747222393751144, - 0.0010573825566098094, - -0.029832109808921814, - -0.04614033177495003, - -0.0011617949930951, - 0.01064674835652113, - -0.019795263186097145, - -0.004070425871759653, - 0.029911663383245468, - -0.013643218204379082, - 0.020206281915307045, - 0.016016528010368347, - 0.022181831300258636, - -0.001743521075695753, - -0.013305121101439, - 0.007670166902244091, - 0.00636086892336607, - -0.005817261524498463, - 0.003851657034829259, - 0.016586653888225555, - 0.020431680604815483, - -0.012178130447864532, - 0.032245196402072906, - 0.005306800827383995, - -0.005263709928840399, - -0.021770810708403587, - 0.020365387201309204, - 0.024647952988743782, - -0.002761127660050988, - 0.0009471694938838482, - -0.01357029564678669, - 0.002255639061331749, - -0.004398578777909279, - 0.0025887642987072468, - 0.02214205451309681, - 0.0016134199686348438, - 0.029222209006547928, - 0.012038913555443287, - 0.0012090291129425168, - -0.005356521345674992, - 0.019172102212905884, - 0.0015554131241515279, - -0.0035301330499351025, - 0.015830906108021736, - -0.010162805207073689, - -0.012290829792618752, - -0.0024545197375118732, - -0.009718638844788074, - -0.024409295991063118, - -0.017779937013983727, - 0.004146663472056389, - -0.0009471694938838482, - 0.010023589245975018, - -0.01877434179186821, - 0.007159706670790911, - -0.030335942283272743, - -0.035268183797597885, - -0.014849761500954628, - -0.01498234923928976, - -0.011561600491404533, - -0.013987945392727852, - -0.030866289511322975, - -0.012754884548485279, - -0.010355057194828987, - -0.024316484108567238, - 0.012244423851370811, - 0.006453679874539375, - -0.021691258996725082, - -0.026742829009890556, - -0.009029185399413109, - 0.006556435022503138, - -6.230560393305495e-05, - 0.025271112099289894, - -0.011561600491404533, - 0.007252517621964216, - 0.003914635628461838, - -0.008498837240040302, - -0.022367453202605247, - 0.011780369095504284, - -0.02088247798383236, - -0.01632147841155529, - -0.00016521602810826153, - -0.030998878180980682, - -0.02840016968548298, - -0.018694790080189705, - 0.03094584308564663, - 0.011707445606589317, - -0.006967455148696899, - 0.027975890785455704, - 0.00855187140405178, - -0.006778518203645945, - 0.011893068440258503, - -0.004514592699706554, - 0.004637235775589943, - 0.025416957214474678, - -0.016493842005729675, - 0.008777270093560219, - -0.009360653348267078, - -0.01921187900006771, - 0.01087877620011568, - 0.024647952988743782, - -0.00514106685295701, - -0.03346499800682068, - 0.010520790703594685, - -0.01817769929766655, - -0.014425482600927353, - 0.01014291774481535, - -0.0072724055498838425, - 0.014531552791595459, - -0.016016528010368347, - 0.028983552008867264, - 0.010268875397741795, - 0.0009886029874905944, - 0.0013465883675962687, - 0.057754967361688614, - -0.005638268776237965, - 0.0013946511317044497, - -0.017660608515143394, - 0.04415152221918106, - 0.028532756492495537, - 0.011196985840797424, - 0.0018926816992461681, - 0.029566936194896698, - 0.00014004518743604422, - -0.009506499394774437, - -0.015035383403301239, - -0.0005382209783419967, - -0.003493671538308263, - -0.00984459649771452, - 0.004193068947643042, - -0.018376579508185387, - -0.012854324653744698, - 0.00774308992549777, - 0.0012446619803085923, - -0.007259146776050329, - -0.0011758824111893773, - -0.005306800827383995, - 0.0017998706316575408, - 0.03354455158114433, - 0.006616099271923304, - 0.011150579899549484, - -0.02789633721113205, - -0.009506499394774437, - 0.020458199083805084, - -0.042374856770038605, - 0.03412793576717377, - -0.01852242648601532, - -0.00606254767626524, - -0.019132327288389206, - -0.023918723687529564, - -0.00518084317445755, - -0.02434300258755684, - 0.002688204636797309, - -0.0051476964727044106, - 0.02204924449324608, - 0.02336185798048973, - 0.03656753897666931, - 0.0228580255061388, - 0.016931379213929176, - -0.010706412605941296, - -0.0016308220801874995, - -0.006248169578611851, - 0.0005999568966217339, - -0.01597675308585167, - -0.03346499800682068, - 0.01638777181506157, - 0.019702451303601265, - 0.02269892208278179, - 0.019105808809399605, - -0.014863020740449429, - -0.0010466098319739103, - 0.010858887806534767, - -0.037601716816425323, - 0.004179810173809528, - -0.0001742278109304607, - -0.017886007204651833, - -0.018350062891840935, - 0.010918552055954933, - 0.01117709744721651, - 0.0020534435752779245, - -0.024568399414420128, - 0.005936590023338795, - 0.02358725480735302, - 0.016719240695238113, - 0.010156176052987576, - -0.017329141497612, - 0.013311750255525112, - -0.016971156001091003, - 0.017554540187120438, - 0.0014452000614255667, - 0.008041410706937313, - -0.015472921542823315, - -0.004517907276749611, - -0.02760464698076248, - 0.01868152990937233, - 0.0320860929787159, - 0.0190262570977211, - 0.003732328535988927, - -0.0017882692627608776, - -0.013278603553771973, - -0.019755486398935318, - 0.03142315521836281, - 0.01824399270117283, - -0.008797157555818558, - 0.004534480627626181, - -0.016878345981240273, - 0.002744554076343775, - -0.010732930153608322, - -0.018628494814038277, - -0.0025953936856240034, - 0.001015120418742299, - 0.015645284205675125, - -0.002404799684882164, - 0.03852982819080353, - 0.006695651449263096, - 0.003947782795876265, - 0.0011593089438974857, - -0.007557468023151159, - 0.028161512687802315, - 0.014186825603246689, - 0.019384242594242096, - 0.0076966844499111176, - -0.025682132691144943, - -0.021081358194351196, - -0.07488522678613663, - 0.020166506990790367, - -0.007464657071977854, - 0.014558070339262486, - -0.0022075760643929243, - -0.012290829792618752, - -0.029036587104201317, - 0.015141453593969345, - 0.009917519055306911, - -0.013881875202059746, - -0.013895134441554546, - 0.024767281487584114, - 0.02120068669319153, - 0.008909856900572777, - 0.0156320258975029, - -0.007875677198171616, - -0.0091021079570055, - 0.004352173302322626, - -0.017872748896479607, - 0.002953378949314356, - 0.01498234923928976, - 0.0064139035530388355, - -0.019901331514120102, - 0.011296425946056843, - -0.015618767589330673, - 0.013126128353178501, - 0.003022987162694335, - -0.01758105680346489, - 0.02223486639559269, - 0.007497803773730993, - 0.004511278122663498, - 0.015022125095129013, - 0.003369371173903346, - 0.0048493752256035805, - -0.001418682630173862, - 0.016719240695238113, - -0.0018396468367427588, - 0.009658974595367908, - 0.00926121324300766, - -0.016772275790572166, - 0.014253119006752968, - 0.0219564326107502, - -0.010964957997202873, - -0.02509874850511551, - -0.007789495401084423, - -0.00040915567660704255, - 0.01827051118016243, - 0.007922082208096981, - -0.010951699689030647, - -0.028134994208812714, - -0.009108738042414188, - 0.0013374729314818978, - 0.029487384483218193, - -0.01748824678361416, - -0.021439343690872192, - -0.013629959896206856, - 0.00800163485109806, - -0.023043647408485413, - -0.011561600491404533, - 0.011435641907155514, - 0.017819713801145554, - -0.015870682895183563, - -0.023255787789821625, - 0.02688867598772049, - -0.0027511834632605314, - 0.010898664593696594, - -0.004106887150555849, - 0.015923717990517616, - 0.00839939620345831, - 0.018641754984855652, - -0.05833834782242775, - -0.0017070596804842353, - 0.03434007242321968, - -0.011382607743144035, - -0.011448901146650314, - 0.009566163644194603, - -0.003556650597602129, - -0.02975255809724331, - 0.02622574009001255, - -0.021784070879220963, - -0.03354455158114433, - -0.030839772894978523, - -0.0046935854479670525, - 0.005721135996282101, - -0.00885019265115261, - 0.0029583510477095842, - 0.0019424018682911992, - -0.002126366598531604, - 0.011813515797257423, - 0.0031472877599298954, - -0.012542745098471642, - -0.010746189393103123, - 0.0039544119499623775, - 0.009957295842468739, - 0.027312954887747765, - -0.01861523650586605, - 0.016308220103383064, - -0.003951097372919321, - 0.010341797955334187, - 0.002252324251458049, - -0.04004132002592087, - -0.011004733853042126, - -0.00437206169590354, - 0.009042443707585335, - -0.03818510100245476, - -0.0063476101495325565, - 0.004047222901135683, - -0.003931209444999695, - -0.01210520789027214, - 0.002205918775871396, - -0.00023513504129368812, - 0.0025141839869320393, - 0.023322081193327904, - 0.0024545197375118732, - -0.0005680531030520797, - 0.008969521149992943, - -0.007995005697011948, - -0.005008480045944452, - -0.002676603151485324, - -0.007756348699331284, - -0.027100814506411552, - 0.005658157169818878, - -0.006612784694880247, - 0.032033056020736694, - 0.022208349779248238, - -0.02890400029718876, - -0.002648428548127413, - -0.013397932052612305, - -0.049508046358823776, - 0.009493240155279636, - -0.00752432132139802, - -0.022128796204924583, - 0.0004203427233733237, - 0.01710374280810356, - 0.00026248113135807216, - 0.030017731711268425, - -0.005426129326224327, - 0.00814748089760542, - -0.02100180648267269, - -0.02805544249713421, - 0.007643649820238352, - -0.03903365880250931, - 0.010805853642523289, - 0.017289364710450172, - -0.06337665766477585, - 0.0030677353497594595, - 0.01385535765439272, - -0.007093412801623344, - 0.0036395175848156214, - 0.01921187900006771, - -0.015022125095129013, - -0.010388203896582127, - 0.02509874850511551, - 0.019569864496588707, - -0.01488953735679388, - -0.007040378171950579, - 0.04096943140029907, - 0.0016863428754732013, - 0.004319026600569487, - 0.00173357711173594, - -0.0036991816014051437, - -0.02468772791326046, - -0.01579113118350506, - -0.002401484875008464, - -0.011044510640203953, - 0.007232629228383303, - 0.01556573249399662, - -0.025337405502796173, - -0.01575135439634323, - -0.01149530615657568, - 0.022367453202605247, - 0.012297458946704865, - -0.017939042299985886, - 0.020484715700149536, - 0.013232198543846607, - 0.004130090121179819, - -0.01172733400017023, - 0.017382176592946053, - -0.021174168214201927, - -0.010467756539583206, - -0.0046040890738368034, - -0.012708478607237339, - 0.029063105583190918, - -0.012993541546165943, - -0.007670166902244091, - -0.011382607743144035, - 0.02386568859219551, - -0.0009529701783321798, - -0.0036991816014051437, - -0.012695220299065113, - 0.012701849453151226, - -0.012065431103110313, - 0.017779937013983727, - 0.0036494615487754345, - -0.0073254406452178955, - -0.02459491789340973, - -0.017594315111637115, - -0.015406628139317036, - 0.013106240890920162, - -0.008817045949399471, - 0.007902194745838642, - 0.0024976106360554695, - -0.014823243953287601, - 0.00036316452315077186, - 0.012589151039719582, - -0.005628325045108795, - -0.012960394844412804, - 0.02893051691353321, - 0.19389545917510986, - -0.010248987004160881, - -0.01588394120335579, - 0.009877743199467659, - -0.03452569618821144, - 0.0028141625225543976, - 0.018973222002387047, - -0.003301420249044895, - -0.000827426731120795, - 0.014809985645115376, - -0.01742195338010788, - -0.0008634738624095917, - 0.005926645826548338, - -0.0018330174498260021, - 0.01061360165476799, - -0.015433144755661488, - -0.014770209789276123, - 0.007835901342332363, - -0.0014410567237064242, - 0.02104158140718937, - 0.025801461189985275, - -0.016454067081212997, - -0.011614634655416012, - -0.03110494650900364, - 0.027339471504092216, - -0.010600343346595764, - -0.0030511619988828897, - -0.016175633296370506, - 0.01319242175668478, - -0.0016009899554774165, - -0.009930778294801712, - -0.008193885907530785, - 0.011985879391431808, - -0.01121024414896965, - 0.0006289603188633919, - -0.0133183803409338, - 0.012522856704890728, - 0.007550838403403759, - 0.031078429892659187, - 0.020299093797802925, - -0.0027114073745906353, - 0.00328981876373291, - 0.0058868699707090855, - -0.02666327729821205, - 0.026583725586533546, - 0.025682132691144943, - -0.00808118749409914, - 0.009287730790674686, - 0.012913988903164864, - -0.026265515014529228, - -0.022871283814311028, - -0.008220403455197811, - 0.018694790080189705, - 0.024223674088716507, - -0.00844580214470625, - 0.012045543640851974, - 0.003201979910954833, - 0.00374227249994874, - 0.006185190752148628, - 0.017276106402277946, - -0.014823243953287601, - 0.007643649820238352, - 0.03418096899986267, - 0.0177931971848011, - -0.0312640517950058, - 0.007252517621964216, - -0.002263925736770034, - 0.017435211688280106, - 0.0021992893889546394, - -0.010302022099494934, - 0.00774308992549777, - -0.01742195338010788, - -0.02145260199904442, - 0.006125526502728462, - -0.006516658701002598, - -0.030229872092604637, - 0.019198620691895485, - 0.013470855541527271, - 0.03439310938119888, - 0.008505466394126415, - -0.010295392945408821, - -0.0020567583851516247, - 0.003052819287404418, - -0.019158843904733658, - -0.02590753138065338, - -0.03362410143017769, - 0.02757812850177288, - 0.00690116174519062, - -0.014770209789276123, - -0.013484113849699497, - -0.014505035243928432, - -0.01413379143923521, - 0.010388203896582127, - -0.038821518421173096, - 0.0143857067450881, - 0.0031406583730131388, - 0.028373651206493378, - 0.008730864152312279, - -0.030919324606657028, - 0.017315883189439774, - 0.004289194475859404, - 0.057224616408348083, - 0.013245456852018833, - -0.024077827110886574, - -0.010739559307694435, - 0.008538613095879555, - -0.0029699523001909256, - 0.021903399378061295, - 0.0005556230316869915, - 0.005290227476507425, - -0.004521221853792667, - -0.030335942283272743, - 0.0016987730050459504, - -0.006947567220777273, - 0.0028904001228511333, - 0.025231335312128067, - 0.0009745156276039779, - -0.006569693796336651, - 0.010268875397741795, - -0.007756348699331284, - -0.021492378786206245, - 0.009871114045381546, - -9.286279964726418e-05, - 0.006708910223096609, - 0.014173567295074463, - -0.024568399414420128, - -0.006493456196039915, - -0.0028904001228511333, - 0.00020240258891135454, - -0.019145585596561432, - 0.001418682630173862, - -0.003927894402295351, - 0.01760757528245449, - -0.013948168605566025, - -0.00885019265115261, - -0.004564312752336264, - 0.014319413341581821, - -0.01799207739531994, - -0.0031754623632878065, - -0.009493240155279636, - 0.017329141497612, - -0.0077629778534173965, - 0.001842961530201137, - -0.004116831347346306, - -0.010998104698956013, - -0.003821824910119176, - 0.0016092766309157014, - 0.00896289199590683, - -0.016997674480080605, - -0.0050217388197779655, - -0.012761513702571392, - -0.026928450912237167, - -0.0034008605871349573, - -0.02635832689702511, - 0.03823813796043396, - 0.010553937405347824, - -0.0036892376374453306, - -0.010447868146002293, - 0.007915453054010868, - 0.0030180150642991066, - -0.018893670290708542, - -0.0013731057988479733, - 0.010832371190190315, - -0.008836934342980385, - -0.025005938485264778, - 0.008193885907530785, - -0.16812051832675934, - 0.019331207498908043, - 0.01413379143923521, - -0.03622281178832054, - 0.009473352693021297, - -0.0031953505240380764, - 0.018005335703492165, - -0.0018479335121810436, - -0.039325352758169174, - 0.004249418620020151, - 0.015698319301009178, - -0.009818078950047493, - -0.028214547783136368, - -0.007312181871384382, - 0.0034406366758048534, - 0.004746620077639818, - -0.0029500643722712994, - 0.018376579508185387, - 0.025271112099289894, - 0.018204215914011, - 0.019066033884882927, - -0.019477052614092827, - 0.009652345441281796, - 0.017342399805784225, - 0.006387386471033096, - 0.013908392749726772, - -0.016175633296370506, - 0.0022241496481001377, - -0.00463060662150383, - -0.022659145295619965, - 0.010447868146002293, - -0.0071464478969573975, - 0.05711854621767998, - -0.0039179506711661816, - 0.0001521644735476002, - -0.005890184547752142, - 0.000334989745169878, - 0.0049919066950678825, - -0.003001441713422537, - 0.042189233005046844, - 0.01471717469394207, - 0.028638826683163643, - 0.0015811019111424685, - 0.013305121101439, - -0.03871544823050499, - 0.041367191821336746, - 0.030017731711268425, - -0.0015123222256079316, - -0.01682531088590622, - -0.00889659859240055, - 0.009340764954686165, - -0.03837072476744652, - -0.02588101290166378, - 0.0037091257981956005, - 0.019012998789548874, - 0.033226341009140015, - 0.02471424639225006, - -0.0009670575964264572, - 0.0036693494766950607, - 0.0031953505240380764, - -0.00514106685295701, - 0.0003610928251873702, - 0.017978819087147713, - -0.012549374252557755, - -0.027180368080735207, - -0.016122598201036453, - 0.01657339558005333, - 0.0031787771731615067, - 0.009287730790674686, - 0.013629959896206856, - -0.02741902507841587, - -0.01833680458366871, - 0.008830304257571697, - 0.007756348699331284, - 0.005422814749181271, - 0.009320877492427826, - -0.017634091898798943, - 0.013073094189167023, - 0.012668702751398087, - -0.010514161549508572, - -0.002903658663854003, - 0.03113146498799324, - -0.028983552008867264, - -0.012841066345572472, - -0.019251655787229538, - -0.01058045495301485, - -0.03317330777645111, - 0.022473523393273354, - -0.01009651180356741, - 0.005025053396821022, - 0.014027721248567104, - -0.040359530597925186, - -0.03598415479063988, - 0.008810416795313358, - 0.0004930584691464901, - 0.012012396939098835, - 0.006271372549235821, - -0.005890184547752142, - -0.0038185101002454758, - -0.036620572209358215, - 0.028957035392522812, - -0.005900128744542599, - 0.004441669676452875, - 0.017368918284773827, - 0.011183726601302624, - 0.0003273245529271662, - -0.00659621087834239, - 0.022181831300258636, - 0.03532121703028679, - 0.004826172720640898, - -0.03701833263039589, - -0.017528021708130836, - -0.013576924800872803, - -0.003349483013153076, - -0.009281100705265999, - 0.022539816796779633, - 0.01842961460351944, - -0.013265345245599747, - 0.002225806936621666, - 0.0015811019111424685, - 0.04738664999604225, - 0.0017849545693024993, - -0.02741902507841587, - -0.007133189123123884, - -0.0003633716842159629, - -0.019636157900094986, - -0.08899249881505966, - -0.026238998398184776, - 0.015419886447489262, - 0.01320568099617958, - 0.0036096854601055384, - 0.0397496297955513, - -0.0017683812184259295, - 0.00657963752746582, - -0.0028804559260606766, - 0.010971587151288986, - -0.030044250190258026, - -0.02578820288181305, - -0.0025887642987072468, - -0.028347134590148926, - 0.012993541546165943, - -0.005396297201514244, - -0.018005335703492165, - 0.0027942743618041277, - 0.009393800050020218, - 0.02975255809724331, - 0.007875677198171616, - -0.025483252480626106, - 0.03614325821399689, - -0.027312954887747765, - -0.0219564326107502, - -0.005863667000085115, - -0.03160877898335457, - 0.012556003406643867, - 0.016281703487038612, - 0.0016183919506147504, - -0.0008808759157545865, - -0.015499439090490341, - 0.028877483680844307, - -0.036806195974349976, - -0.007239258848130703, - -0.0060426597483456135, - -0.018482649698853493, - -0.009287730790674686, - 0.003420748747885227, - -0.00833310279995203, - 0.0190262570977211, - 0.0037489018868654966, - -0.010242357850074768, - -0.042215749621391296, - 0.006175247021019459, - 0.0010093197925016284, - -0.0035599651746451855, - 0.003556650597602129, - -0.002839022548869252, - -0.011833404190838337, - -0.03338544815778732, - -0.007418251596391201, - 0.00287382653914392, - 0.004024020396173, - 0.007172965444624424, - -0.009334135800600052, - -0.016785534098744392, - -0.028797930106520653, - -0.015605508349835873, - 0.0038848037365823984, - -0.00871097669005394, - -0.00459083030000329, - -0.001793241361156106, - 0.025576062500476837, - 0.004378690849989653, - 0.004600774496793747, - -0.017342399805784225, - -0.00959268119186163, - -0.002718036761507392, - 0.012363752350211143, - -0.018442872911691666, - 0.007033748552203178, - 0.012860954739153385, - -0.0012189731933176517, - -0.030044250190258026, - -0.022248124703764915, - -0.03741609677672386, - -0.019012998789548874, - 0.028850965201854706, - -0.011362719349563122, - -0.021717775613069534, - -0.035931121557950974, - 0.026093153282999992, - 0.0008982779690995812, - 0.008943003602325916, - 0.00437206169590354, - -0.005817261524498463, - -0.021492378786206245, - 0.002114765113219619, - -0.019052773714065552, - 0.0002817477216012776, - 0.014213343150913715, - -0.0006550634279847145, - -0.025642355903983116, - -0.011554970405995846, - 0.0036063706502318382, - 0.0007673481595702469, - -0.007477915845811367, - -0.019317949190735817, - -0.00979819055646658, - -0.01622866839170456, - 0.006142099853605032, - -0.05428118258714676, - 0.019410759210586548, - 0.019490312784910202, - 0.012317347340285778, - -0.01842961460351944, - 0.024952903389930725, - 0.006334351375699043, - 0.01146215945482254, - 0.0029401201754808426, - -0.03582505136728287, - 0.003387601813301444, - -0.00829995609819889, - 0.010302022099494934, - 0.002669973997399211, - -0.02546999230980873, - -0.01726284809410572, - 0.01066000759601593, - 0.0007072696462273598, - 0.014677397906780243, - 0.0103616863489151, - 0.0073254406452178955, - 0.002084932988509536, - -0.00690116174519062, - 0.013682994991540909, - -0.010427979752421379, - 0.005813946947455406, - -0.010805853642523289, - 0.009029185399413109, - -0.002706435276195407, - -0.02104158140718937, - -0.011269908398389816, - 0.006556435022503138, - -0.026278775185346603, - 0.01146215945482254, - 0.009678862057626247, - 0.006649245973676443, - 0.013417820446193218, - 0.04465535655617714, - 0.007709943223744631, - 0.06342969834804535, - -0.01555247325450182, - -0.03365062177181244, - 0.012967023998498917, - -0.02771071530878544, - -0.0003780805564019829, - -0.016493842005729675, - 0.01006336510181427, - -0.01654687710106373, - 0.011661040596663952, - -0.008107705041766167, - 0.003752216463908553, - 0.00914851389825344, - -0.010434608906507492, - -0.011303055100142956, - 0.018655013293027878, - -0.03876848518848419, - -0.003064420772716403, - -0.005303486250340939, - -0.0050283679738640785, - -0.015035383403301239, - 0.0642252191901207, - 0.0015496123814955354, - -0.00837950874119997, - -0.0066525605507195, - 0.014916054904460907, - -0.005333318375051022, - -0.023786136880517006, - -0.007345328573137522, - 0.028479721397161484, - -0.02170451730489731, - -0.020922252908349037, - -0.00778286624699831, - 0.00914851389825344, - 0.0070867836475372314, - 0.0036627203226089478, - -0.008200515992939472, - 0.021213945001363754, - -0.011382607743144035, - 0.0002119322889484465, - 0.004425096325576305, - 0.011740593239665031, - 0.00947998184710741, - -0.021426085382699966, - 0.011720704846084118, - 0.01641429029405117, - 0.023388374596834183, - -0.02308342419564724, - -0.0031373435631394386, - -0.009287730790674686, - 0.016719240695238113, - -0.015618767589330673, - 0.009891001507639885, - 0.012635556049644947, - 0.01817769929766655, - -0.017819713801145554, - 0.020047178491950035, - 0.02562909759581089, - -0.007199482526630163, - 0.032563406974077225, - 0.02141282521188259, - 0.015605508349835873, - 0.021439343690872192, - 0.006145414896309376, - -0.02977907471358776, - -0.037150923162698746, - 0.004829487297683954, - -0.02333533950150013, - -0.03399534896016121, - 0.0027230088599026203, - 0.01305320579558611, - -0.013338267803192139, - 0.014743692241609097, - -0.007663537748157978, - -0.005996254272758961, - -0.014743692241609097, - 0.03876848518848419, - 0.016533618792891502, - -0.0016797136049717665, - -0.0338362418115139, - 0.01707722619175911, - 0.022712180390954018, - 0.016440806910395622, - -0.003831768874078989, - 0.0022904430516064167, - 0.03227171301841736, - -0.01243667583912611, - -0.0025141839869320393, - -0.024568399414420128, - -0.009612568654119968, - -0.02342815138399601, - -0.011548341251909733, - 0.0005394640029408038, - -0.008677829056978226, - 6.593103898921981e-05, - -0.01125665009021759, - -0.005625010002404451, - 0.012761513702571392, - 0.005764226894825697, - -0.0049090394750237465, - 0.09217458963394165, - 0.01717003621160984, - 0.008936374448239803, - -0.018376579508185387, - -0.009453464299440384, - 0.0036759788636118174, - 0.016440806910395622, - 0.020246058702468872, - -0.02695496939122677, - -0.037628237158060074, - 0.016467325389385223, - -0.01463762205094099, - 0.011236761696636677, - -0.010779336094856262, - -0.012005766853690147, - 0.005585234146565199, - -0.01685182750225067, - 0.03632888197898865, - -0.01663968898355961, - 0.029646487906575203, - 0.022221608087420464, - 0.0021595133002847433, - 0.010520790703594685, - 0.0430908277630806, - -0.026610242202878, - -0.001791583956219256, - 0.02657046727836132, - 0.006460309028625488, - -0.0049090394750237465, - -0.004382005427032709, - 0.003791992785409093, - 0.002244037576019764, - -0.06703606992959976, - -0.02471424639225006, - 0.01239026989787817, - -0.019835038110613823, - 0.0073917340487241745, - -0.022566333413124084, - 0.018535684794187546, - 0.004793025553226471, - 0.028028925880789757, - 0.03601067140698433, - -0.004279250744730234, - -0.020179765298962593, - -0.016427548602223396, - -0.009506499394774437, - -0.006211708299815655, - -0.03211260959506035, - -0.013106240890920162 - ], - "sparse": "SparseEmbedding(values=array([1.43930488, 1.87047493, 1.43930488, 1.43930488, 1.43930488,\n 1.43930488, 1.7401514 , 1.43930488, 1.87047493, 1.43930488,\n 1.7401514 , 1.43930488, 1.43930488, 1.43930488, 1.43930488,\n 1.43930488, 1.43930488, 1.43930488, 1.7401514 , 1.43930488,\n 1.43930488, 1.43930488, 1.43930488, 1.43930488, 1.43930488,\n 1.43930488, 1.87047493, 1.43930488, 1.43930488, 1.43930488,\n 1.43930488, 1.43930488, 1.43930488, 1.43930488, 1.43930488,\n 1.43930488, 1.43930488, 1.43930488, 1.43930488, 1.43930488,\n 1.43930488, 1.43930488, 1.43930488, 1.43930488, 1.43930488,\n 1.43930488, 1.43930488, 1.43930488, 1.43930488, 1.43930488,\n 1.43930488, 1.43930488, 1.43930488, 1.43930488, 1.43930488,\n 1.43930488]), indices=array([ 587639173, 1413554298, 993732989, 204345709, 1955583600,\n 46957595, 1147900472, 728204394, 1675878461, 1188906178,\n 1174634009, 1982861065, 433223868, 194422743, 641040124,\n 276055817, 1471235886, 241487245, 164058840, 367467701,\n 2124172637, 192819851, 331192678, 1668827666, 81286401,\n 1162941628, 1047604504, 1232819956, 1470230192, 1248773628,\n 1079921207, 626604648, 31730435, 1570494828, 1617841679,\n 600286221, 1109731834, 636228984, 1325617505, 477024947,\n 1895499668, 657480073, 2144264319, 1466158544, 2095749492,\n 576576816, 372990882, 1095350901, 272588683, 1361513361,\n 911111262, 1081081954, 288125403, 1185887606, 492661292,\n 19522071]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 8, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 60 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000009.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000009.json deleted file mode 100644 index 2960e9e47ca7e498c1fabc53b492437377f99ec2..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000009.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000009", - "content": "Voraussetzungen, unter denen das Vorhaben durchgef\u00fchrt wurde Das Vorhaben wurde interdisziplin\u00e4r an der Hochschule f\u00fcr Technik Stuttgart (HFT) mit Unterst\u00fctzung der Stadt Fellbach und weiteren Partnern durchgef\u00fchrt. Die technische Umsetzung erforderte die Kombination von 3D-Stadtmodellen, Punktwolken-Tracking und AR-Visualisierung. Zus\u00e4tzlich wurden Nutzertests in Workshops durchgef\u00fchrt, um die Benutzerfreundlichkeit und Effektivit\u00e4t der Anwendung zu evaluieren.", - "embedding": { - "dense": [ - 0.010832538828253746, - 0.010852850042283535, - -0.007433829829096794, - -0.020595364272594452, - -0.003048344049602747, - 0.029356179758906364, - -0.03154977038502693, - -0.0061779324896633625, - -0.0024847136810421944, - -0.03433914855122566, - 0.0019481644267216325, - -0.009688352234661579, - 0.006915898993611336, - -0.009221198968589306, - -0.004316089674830437, - -0.007169786840677261, - 0.02924785390496254, - -0.017995554953813553, - -0.012694381177425385, - -0.00725780101493001, - -0.019891249015927315, - 0.012335553765296936, - 0.036018192768096924, - -0.005006663966923952, - -0.0134391188621521, - 0.0010189356980845332, - 0.020784933120012283, - -0.018604885786771774, - 0.00011774039012379944, - -0.002354384632781148, - 0.003486723406240344, - -0.006794033106416464, - -0.016844598576426506, - -0.007603088393807411, - -0.018767373636364937, - 0.0032379135955125093, - -0.009295672178268433, - -0.004891568329185247, - 0.01999957486987114, - 0.024833595380187035, - 0.025009624660015106, - -0.01538220513612032, - 0.006597693078219891, - -0.010554955340921879, - 0.0037812329828739166, - 0.00987792108207941, - -0.002317147795110941, - 0.011875170283019543, - -0.013797946274280548, - 0.015273879282176495, - 0.009173805825412273, - 0.04370929300785065, - -0.008957155048847198, - -0.00301110721193254, - -0.018198665231466293, - 0.009403998032212257, - -0.011286151595413685, - 0.017684118822216988, - -0.002225748263299465, - -0.020053736865520477, - -0.014014597050845623, - 0.005047285929322243, - -0.03114354982972145, - 0.005128529854118824, - -0.03479953110218048, - -0.0061779324896633625, - -0.0356932170689106, - -0.00011774039012379944, - -0.024413833394646645, - 0.013283400796353817, - 0.046742405742406845, - 0.0044819628819823265, - 0.012762084603309631, - -0.010500792413949966, - 0.02324933558702469, - 0.005294403526932001, - 0.028733309358358383, - -0.0014412354212254286, - -0.008584787137806416, - 0.0013066750252619386, - 0.0015554848359897733, - -0.015977995470166206, - -0.020256847143173218, - 0.04823187738656998, - 0.02384512685239315, - 0.007183327339589596, - 0.008090551942586899, - 0.015219717286527157, - -0.005010049324482679, - -0.0003524806525092572, - -0.015070769935846329, - 0.03672230616211891, - -0.015991535037755966, - 0.005903733428567648, - 0.0035273453686386347, - 0.018550721928477287, - 0.0035815080627799034, - 0.016248807311058044, - -0.0028740079142153263, - -0.011929333209991455, - -0.019810006022453308, - 0.00036856019869446754, - -0.014556224457919598, - -0.008354595862329006, - -0.02881455235183239, - -0.014028137549757957, - 0.007501533254981041, - 0.015179094858467579, - 0.010196126997470856, - -0.017521630972623825, - -0.019606895744800568, - 0.030222782865166664, - -0.026526179164648056, - -0.009959165006875992, - -0.009417538531124592, - -0.03563905134797096, - 0.01888923905789852, - -0.014881200157105923, - 0.005737860221415758, - -0.0017535171937197447, - 0.03677646815776825, - 0.009072251617908478, - 0.00936337560415268, - 0.0007024224614724517, - 0.02838125079870224, - 0.020107900723814964, - -0.009038399904966354, - -0.00837490614503622, - 0.0006237172638066113, - -0.018442397937178612, - -0.001161959022283554, - -0.012971965596079826, - 0.017115410417318344, - 0.0001248280896106735, - -0.027555270120501518, - 0.005788637790828943, - -0.026742830872535706, - -0.01352713257074356, - -0.04617369547486305, - -0.019850626587867737, - -0.00042441548430360854, - 0.006540145259350538, - -0.006475827191025019, - -0.019512111321091652, - -0.007223949301987886, - 0.02538876235485077, - -0.004928804934024811, - 0.006780492141842842, - 0.013777635060250759, - -0.020784933120012283, - -0.0040215798653662205, - -0.06239542365074158, - -0.006516449153423309, - -0.00274367886595428, - -0.009302442893385887, - -0.015409286133944988, - -0.014461439102888107, - 0.01148249115794897, - -0.011807466857135296, - -0.018185123801231384, - 0.007542155217379332, - -0.002159737516194582, - 0.011990265920758247, - -0.0013193694176152349, - 0.05088585242629051, - 0.00019020415493287146, - 0.001259282580576837, - -0.0216786190867424, - 0.006614618934690952, - -0.006401353515684605, - -0.008442609570920467, - 0.027203213423490524, - -0.033635031431913376, - 0.00016925841919146478, - -0.0041366759687662125, - -0.005175922531634569, - -0.0012398179387673736, - 0.0061779324896633625, - -0.023289958015084267, - -0.025943931192159653, - -0.006915898993611336, - 0.0057954080402851105, - 0.01936316303908825, - 0.015734262764453888, - -0.026986561715602875, - 0.0036966039333492517, - 0.006408123765140772, - 0.01868612878024578, - 0.00595789635553956, - -0.008618638850748539, - 0.02173278108239174, - 0.009715433232486248, - -0.0016308048507198691, - -0.007129164412617683, - -0.650818943977356, - 0.001662117661908269, - 0.011211677454411983, - -0.02515857107937336, - 0.007806198205798864, - 0.02946450561285019, - 0.012091821059584618, - -0.002951866714283824, - -0.010500792413949966, - 0.04614661633968353, - 0.001951549551449716, - 0.015287420712411404, - -0.00773172453045845, - -0.009275360964238644, - -0.023818043991923332, - -0.004918649792671204, - -0.006408123765140772, - -0.01654670387506485, - -0.00019771499501075596, - 0.03398708999156952, - -0.037318095564842224, - 0.021109910681843758, - 0.006570611614733934, - -0.016871679574251175, - 0.009403998032212257, - 0.02001311630010605, - 0.0012863639276474714, - -0.004959271755069494, - -0.004536125808954239, - 0.0014742407947778702, - -0.00472230976447463, - 0.029139529913663864, - -0.023168092593550682, - 0.01914651319384575, - 0.04874642565846443, - 0.004861101973801851, - -0.022098379209637642, - 0.013351104222238064, - 0.009552945382893085, - 0.009410767816007137, - -0.006993758026510477, - -0.006377657409757376, - 0.008523853495717049, - 0.02922077290713787, - 0.00468168780207634, - 0.0009943932527676225, - 0.025117948651313782, - -0.021015124395489693, - -0.013391725718975067, - -0.020893258973956108, - 0.008381676860153675, - -0.008415528573095798, - 0.00672294432297349, - -0.002049719449132681, - 0.016939383000135422, - 0.0052334703505039215, - 0.023344121873378754, - 0.0054061138071119785, - -0.017264358699321747, - -0.00030445356969721615, - -0.008313973434269428, - 0.002354384632781148, - -0.008104093372821808, - -0.015734262764453888, - -0.018753832206130028, - 0.024562781676650047, - -0.012315242551267147, - 0.0036255153827369213, - 0.002405162202194333, - -0.024400293827056885, - 0.005291018169373274, - 0.04457589611411095, - -0.019471488893032074, - 0.004708769265562296, - 0.011746534146368504, - 0.021177614107728004, - 0.027785461395978928, - -0.012545433826744556, - 0.0020954192150384188, - 0.02020268514752388, - 0.0011137203546240926, - -0.011306462809443474, - -0.00023061459069140255, - 0.005101448856294155, - 0.019850626587867737, - -0.023790962994098663, - -0.03404125198721886, - -0.016208186745643616, - 0.0012804399011656642, - -0.000923304702155292, - 0.011286151595413685, - 0.0009554637945257127, - -0.022003594785928726, - -0.013208926655352116, - -0.009519093669950962, - 0.04641743004322052, - 0.00976959615945816, - 0.03842842951416969, - -0.005521209444850683, - -0.049965083599090576, - -0.025740820914506912, - -0.007785887457430363, - 0.03404125198721886, - -0.0020294084679335356, - 0.009227968752384186, - -0.006702633574604988, - -0.02471172995865345, - -0.005497513338923454, - 0.030358189716935158, - -0.009248279966413975, - -0.016655027866363525, - -0.0093566058203578, - -0.01699354499578476, - -0.007440600078552961, - -0.003730455646291375, - -0.02517211250960827, - 0.01515201386064291, - -0.021177614107728004, - 0.010453400202095509, - 0.0035138048697263002, - 0.007521844003349543, - -0.018185123801231384, - 0.038753408938646317, - 0.008747274987399578, - 0.0021563521586358547, - 0.006475827191025019, - 0.006861736066639423, - -0.019728761166334152, - -0.04151570424437523, - 0.016059238463640213, - 0.007975456304848194, - 0.010670050978660583, - 0.0322268046438694, - -0.0010544799733906984, - 0.028706228360533714, - 0.009410767816007137, - 0.01741330698132515, - -0.008273351937532425, - -0.008632179349660873, - -0.02469818852841854, - -0.025023164227604866, - 0.0163300521671772, - 0.015544692985713482, - -0.02001311630010605, - -0.02212546020746231, - -0.023181632161140442, - -0.013472970575094223, - 0.011997036635875702, - 0.012301702052354813, - -0.0032836133614182472, - -0.02212546020746231, - -0.029816562309861183, - -0.003232835792005062, - 0.01888923905789852, - 0.013107371516525745, - -0.0032802282366901636, - 0.01073775440454483, - -0.02560541406273842, - 0.0038624771405011415, - -0.02794794924557209, - 0.021164072677493095, - -0.0027521417941898108, - -0.03244345262646675, - -0.011468950659036636, - 0.0032819206826388836, - 0.0029924889095127583, - 0.013669310137629509, - 0.03398708999156952, - -0.014935363084077835, - -0.028056275099515915, - 0.0034562568180263042, - -0.01298550609499216, - 0.0014243095647543669, - 0.03572029620409012, - -0.025226274505257607, - 0.012775625102221966, - -0.014759333804249763, - -0.0236284751445055, - -0.018591344356536865, - -0.015571774914860725, - 0.0041366759687662125, - 0.01526033878326416, - -0.009194117039442062, - -0.005785252898931503, - -0.009383686818182468, - 0.010128423571586609, - 0.004705383908003569, - 0.016695650294423103, - 0.0023730029352009296, - -0.003331005573272705, - 0.004251771606504917, - 0.029166610911488533, - 0.002615042496472597, - 0.024779433384537697, - -0.014975984580814838, - -0.0017484395066276193, - -0.019268378615379333, - -0.016438378021121025, - -0.007271341513842344, - 0.02128593809902668, - 0.028733309358358383, - 0.020053736865520477, - 0.024386752396821976, - 0.015991535037755966, - 0.01237617526203394, - -0.030006133019924164, - 0.002301914384588599, - -0.007447370328009129, - 0.014610386453568935, - -0.013276630081236362, - 0.011468950659036636, - -0.004109594505280256, - -0.03712852671742439, - -0.010480481199920177, - 0.013127682730555534, - 0.013831797987222672, - 0.0022240555845201015, - -0.005379032343626022, - -0.004421029705554247, - 0.010026868432760239, - -0.009011317975819111, - -0.019688138738274574, - 0.04151570424437523, - -0.01696646399796009, - 0.006377657409757376, - -0.00344271631911397, - 0.005846185609698296, - 0.025754360482096672, - 0.04213857650756836, - -0.013743783347308636, - 0.005548290908336639, - 0.017792444676160812, - -0.013087061233818531, - 0.017575794830918312, - 0.01744038797914982, - 0.010473710484802723, - 0.00682449946179986, - -0.025266896933317184, - 0.021218234673142433, - 0.020744312554597855, - 0.017873689532279968, - 0.02533460035920143, - 0.011556964367628098, - -0.008679571561515331, - 0.02813751995563507, - -0.0171966552734375, - 0.03184766322374344, - 0.010338304564356804, - -0.001720511820167303, - 0.021123450249433517, - -0.018022635951638222, - 0.011584046296775341, - -0.007427059579640627, - -0.014745793305337429, - 0.023154551163315773, - -0.012085051275789738, - 0.016411297023296356, - -0.012003807350993156, - 0.034257903695106506, - 0.028002113103866577, - 0.014881200157105923, - 0.05110250040888786, - 0.026702208444476128, - -0.008584787137806416, - -0.02303268574178219, - 0.011245529167354107, - -0.021786943078041077, - 0.0019837087020277977, - -0.023113928735256195, - -0.022518139332532883, - 0.019051726907491684, - -0.021177614107728004, - 0.005683697760105133, - -0.004776472691446543, - 0.003947106190025806, - -0.0026658200658857822, - 0.02598455175757408, - 0.007339044939726591, - 0.023912830278277397, - 0.015815505757927895, - -0.009647729806602001, - -0.026580341160297394, - -0.019837087020277977, - 0.021448425948619843, - 0.0005234316340647638, - -0.01995895244181156, - 0.006299798376858234, - 0.010886701755225658, - -0.019891249015927315, - -0.018740292638540268, - -0.006012058816850185, - -0.007840050384402275, - 0.0031397435814142227, - -0.0003681370581034571, - -0.0006884586182422936, - -0.0007201945991255343, - 0.012328783050179482, - -0.0017975243972614408, - -0.014799956232309341, - 0.0012322012335062027, - -0.013973974622786045, - -0.014447898603975773, - -0.006052681244909763, - -0.03913254663348198, - 0.027392782270908356, - -0.030466515570878983, - -0.004790013190358877, - -0.01974230259656906, - 0.017481008544564247, - -0.016912302002310753, - 0.008963925763964653, - 0.0027081347070634365, - -0.0044074892066419125, - 0.018550721928477287, - -0.012010577134788036, - 0.008550935424864292, - -0.005666771903634071, - 0.006827884819358587, - 0.04920680820941925, - -0.005538135301321745, - 0.006028984673321247, - -0.021597374230623245, - -0.014068759977817535, - 0.009383686818182468, - 0.05142747610807419, - 0.01742684654891491, - -0.0032243728637695312, - 0.0014869351871311665, - -0.010988256894052029, - -0.023709720000624657, - -0.013655769638717175, - -0.05153580382466316, - -0.0013210619799792767, - -0.0048712571151554585, - 0.010812227614223957, - -0.010514332912862301, - 0.020744312554597855, - -0.003950491547584534, - -0.002562572481110692, - 0.007765576243400574, - -0.0007163862464949489, - -0.0008238653535954654, - -0.002868930110707879, - 0.019268378615379333, - -0.0020531045738607645, - -0.006113613955676556, - 0.01826636865735054, - 0.028056275099515915, - 0.024156561121344566, - -0.01526033878326416, - 0.03891589492559433, - 0.019810006022453308, - -0.006634930148720741, - -0.02366909757256508, - 0.012775625102221966, - 0.012558974325656891, - 0.023926369845867157, - 0.020351631566882133, - -0.021651536226272583, - 0.005219929851591587, - -0.016451917588710785, - -0.006404738407582045, - 0.018997564911842346, - 0.0005877498770132661, - 0.028922878205776215, - 0.005802178755402565, - 0.0056938533671200275, - -0.009200887754559517, - 0.009139955043792725, - -0.004840790759772062, - 0.02513149008154869, - 0.017751822248101234, - 0.0007942451047711074, - -0.012437108904123306, - 0.010785146616399288, - -0.005534750409424305, - -0.013371415436267853, - -0.013296941295266151, - -0.0016858138842508197, - -0.014014597050845623, - 0.006249020807445049, - -0.033445462584495544, - 0.0021918965503573418, - -0.015246798284351826, - -0.027379242703318596, - -0.02625536546111107, - -0.003226065542548895, - -0.009309212677180767, - -0.008523853495717049, - -0.008781126700341702, - -0.010040408931672573, - -0.01043308898806572, - -0.011719453148543835, - -0.0011636515846475959, - 0.008280121721327305, - -0.0010003172792494297, - -0.04086575284600258, - -0.006577382329851389, - 0.009654500521719456, - -0.013946893624961376, - 0.012322013266384602, - 0.010419548489153385, - -0.009823758155107498, - 0.009735744446516037, - -0.020527660846710205, - -0.00709531269967556, - 0.006299798376858234, - -0.02708134613931179, - -0.01934962160885334, - 0.003859092015773058, - -0.0313602015376091, - -0.018848616629838943, - 0.014854119159281254, - 0.023587852716445923, - 0.002494869055226445, - 0.003970802295953035, - -0.001690891571342945, - 0.01332402229309082, - -0.009451390244066715, - -0.0002780069480650127, - 0.013933353126049042, - 0.011665290221571922, - 0.005978207569569349, - -0.013242778368294239, - 0.017968473955988884, - -0.023533690720796585, - 0.001117105595767498, - 0.005778482183814049, - 0.026729289442300797, - 0.014122922904789448, - -0.0171966552734375, - 0.005788637790828943, - -0.013520362786948681, - -0.0031025067437440157, - 0.021624455228447914, - -0.0014039985835552216, - 0.008144714869558811, - -0.012748544104397297, - 0.0163300521671772, - 0.014258328825235367, - 8.298952161567286e-05, - 0.024359671398997307, - 0.04341140016913414, - -0.01570718176662922, - 0.010785146616399288, - -0.01634359359741211, - 0.04322183132171631, - 0.007217179052531719, - 0.005680312402546406, - 0.01354744378477335, - 0.03458287939429283, - -0.005067597143352032, - -0.03780556097626686, - -0.0038489364087581635, - -0.01299227587878704, - 0.012301702052354813, - -0.0017188192578032613, - -0.008036389946937561, - -0.03842842951416969, - -0.012863639742136002, - -0.02689177729189396, - 0.003987728152424097, - -0.002540568821132183, - -0.01612694188952446, - -0.022626465186476707, - -0.01558531541377306, - 0.005247010849416256, - -0.004776472691446543, - -0.005582142621278763, - -0.023614933714270592, - -0.013168305158615112, - -0.0018279908690601587, - -0.024860676378011703, - 0.03994498774409294, - -0.004055431578308344, - 0.0009943932527676225, - -0.01677689515054226, - -0.011116893030703068, - -0.011035649105906487, - -0.035801541060209274, - 0.005805563647300005, - -0.015856128185987473, - 0.016885219141840935, - 0.029816562309861183, - 0.03550364449620247, - 0.014420817606151104, - 0.03563905134797096, - -0.019647516310214996, - -0.01934962160885334, - -0.0003313233610242605, - -0.0007764729671180248, - 0.00839521735906601, - -0.034257903695106506, - 0.029383260756731033, - 0.016668569296598434, - 0.016668569296598434, - 0.017711201682686806, - 0.006052681244909763, - -0.009207657538354397, - 0.020324550569057465, - -0.02491483837366104, - -0.007251030765473843, - 0.00367967807687819, - -0.016519621014595032, - -0.006032370030879974, - 0.0011941181728616357, - 0.021962972357869148, - -0.0011966570746153593, - -0.03463704138994217, - 0.006858351174741983, - 0.012897491455078125, - 0.01333756372332573, - 0.007542155217379332, - 0.013229237869381905, - 0.026824073866009712, - -0.020067278295755386, - 0.005094678606837988, - 0.0034833382815122604, - -0.0007629322935827076, - -0.0026861310470849276, - -0.019823545590043068, - -0.03268718719482422, - 0.009282131679356098, - 0.04368221387267113, - 0.005869882181286812, - -0.0018093724502250552, - -0.00014312914572656155, - -0.011001797392964363, - -0.004498888738453388, - 0.031468525528907776, - 0.00682449946179986, - -0.01043308898806572, - -0.009573256596922874, - -0.022667087614536285, - -0.00434994138777256, - -0.009993016719818115, - 0.013188616372644901, - 0.001758594997227192, - 0.003204061882570386, - -0.0024999468587338924, - -0.012721463106572628, - 0.035557810217142105, - -0.0017450542654842138, - 0.009681581519544125, - 0.0070817722007632256, - -0.006973446812480688, - 0.043113503605127335, - 0.002645509084686637, - 0.027785461395978928, - 0.02017560414969921, - -0.018144503235816956, - -0.030656084418296814, - -0.07073647528886795, - 0.005595683120191097, - -0.008483231998980045, - 0.023141011595726013, - 0.012254309840500355, - -0.016059238463640213, - -0.00987792108207941, - 0.0013015972217544913, - 0.03674938902258873, - -0.03444747254252434, - -0.018428856506943703, - 0.02602517418563366, - 0.020784933120012283, - -0.009376916103065014, - 0.0007582777179777622, - -0.0006427588523365557, - -0.028895797207951546, - 0.009573256596922874, - -0.005412884056568146, - 0.0008572938968427479, - 0.005348565988242626, - 0.004597058519721031, - -0.00795514602214098, - 0.01827991008758545, - -0.025212734937667847, - 0.021407805383205414, - 0.011489261873066425, - -0.0033563943579792976, - 0.018334072083234787, - -0.0007658943650312722, - -0.00016418065933976322, - 0.025402303785085678, - 0.0016849675448611379, - 0.03203723207116127, - 0.0014056911459192634, - -0.0003770231269299984, - 0.017453927546739578, - -1.2800167496607173e-05, - -0.012315242551267147, - 0.0003084734780713916, - 0.003383475821465254, - 0.02259938418865204, - -0.01054141391068697, - -0.013892730697989464, - 0.002137733856216073, - 0.01191579271107912, - 0.020595364272594452, - 0.01635713316500187, - -0.0030212628189474344, - -0.021164072677493095, - -0.007812968455255032, - 0.010094571858644485, - 0.02450861968100071, - -0.000655876356177032, - 0.0008632179233245552, - -0.018780913203954697, - 0.0038624771405011415, - -0.031062304973602295, - -0.0016959693748503923, - 0.0006216015317477286, - 0.004393948707729578, - -0.04923388734459877, - -0.023966992273926735, - 0.023953450843691826, - -0.007427059579640627, - 0.0035578119568526745, - -0.009742514230310917, - 0.0022325185127556324, - 0.007779116742312908, - 0.023127470165491104, - -0.0361265167593956, - -0.004911879077553749, - 0.0348266139626503, - 0.002599809318780899, - -0.026756370440125465, - 0.009986246936023235, - -0.007772346492856741, - -0.030439434573054314, - 0.03769723325967789, - -0.015043688006699085, - -0.018306991085410118, - -0.0026844386011362076, - -0.003947106190025806, - -2.2248225377552444e-06, - 0.00190754234790802, - -0.0037439961452037096, - 0.017873689532279968, - -0.004448111169040203, - 0.01760287582874298, - -0.007711413782089949, - -0.015409286133944988, - -0.00040812435327097774, - 0.012504812330007553, - 0.005175922531634569, - 0.027338620275259018, - -0.029112448915839195, - 0.013310481794178486, - 0.018848616629838943, - 0.00943784974515438, - -0.010121653787791729, - -0.05359398573637009, - -0.016289429739117622, - -0.010500792413949966, - 0.01107627060264349, - -0.02299206331372261, - -0.007474451791495085, - -0.02146196737885475, - -0.008693112060427666, - -0.008327513933181763, - -0.002958637196570635, - -0.011468950659036636, - 0.0007878979668021202, - 0.006638315040618181, - 0.017291439697146416, - -0.017467468976974487, - 0.018631966784596443, - -0.005534750409424305, - -0.015409286133944988, - -2.0086214135517366e-05, - -0.007474451791495085, - -0.03474536910653114, - 0.006526604760438204, - 0.0019210830796509981, - 0.03049359656870365, - 0.004221304785460234, - -0.03848259523510933, - 0.0017822911031544209, - -0.00999978743493557, - -0.0417594388127327, - -0.008435839787125587, - -0.008151485584676266, - -0.004569977521896362, - 0.002697979100048542, - 0.011022108606994152, - -0.012931343168020248, - 0.01526033878326416, - -0.003315772395581007, - 0.010162275284528732, - -0.007670791354030371, - -0.024779433384537697, - 0.004238230641931295, - -0.026769911870360374, - 0.02408885769546032, - 0.0051353005692362785, - -0.03485369309782982, - -0.0073728966526687145, - 0.010250289924442768, - -0.012430338189005852, - 0.017088329419493675, - 0.003693218808621168, - 0.0008776048780418932, - -0.002757219597697258, - 0.027446944266557693, - 0.021123450249433517, - -8.288372919196263e-05, - -0.0008331745630130172, - 0.015639478340744972, - -0.015544692985713482, - 0.012064740061759949, - 0.0011001797392964363, - -0.02450861968100071, - -0.025700198486447334, - -0.012416797690093517, - 0.002168200444430113, - -0.013676079921424389, - -0.005876652430742979, - 0.0038252403028309345, - -0.030195701867341995, - 0.00150470738299191, - -0.017277900129556656, - 0.00826658122241497, - -0.0012618214823305607, - -0.005385803058743477, - 0.002026023343205452, - 0.01589675061404705, - 0.005047285929322243, - -0.007508303504437208, - 0.021800484508275986, - -0.020162062719464302, - 0.01086639054119587, - 0.002880778396502137, - -0.02169215865433216, - 0.018130961805582047, - -0.009410767816007137, - -0.006089917849749327, - -0.013053209520876408, - 0.012856869027018547, - -0.01482703723013401, - -0.001855072216130793, - -0.014664549380540848, - 0.029762400314211845, - -0.0008293662685900927, - 0.017291439697146416, - 0.007535384967923164, - -0.01955273188650608, - -0.006563841365277767, - -0.004878027830272913, - -0.008875911124050617, - 0.007332274690270424, - -0.013709931634366512, - 0.0012406641617417336, - 0.015504071488976479, - -0.01780598610639572, - 0.01569364033639431, - 0.02125885710120201, - 0.007163016125559807, - -0.015747804194688797, - 0.027162590995430946, - 0.20560158789157867, - -0.006628159899264574, - -0.008936844766139984, - 0.011475720442831516, - -0.008077011443674564, - 0.005639690440148115, - 0.01654670387506485, - -0.0010426318040117621, - 0.00041891459841281176, - 0.01451560202986002, - -0.02082555554807186, - 0.017982013523578644, - 0.00838844757527113, - -0.0011712682899087667, - 0.01911943033337593, - -0.018103880807757378, - -0.014772875234484673, - -0.005206388887017965, - -0.005653231404721737, - 0.018956942483782768, - 0.024454455822706223, - -0.00622532470151782, - -0.010345074348151684, - -0.020459957420825958, - 0.03076441027224064, - -0.010832538828253746, - -0.011807466857135296, - -0.0026387388352304697, - 0.026106419041752815, - 0.0032209877390414476, - -7.690679194638506e-05, - -0.000219824374653399, - 0.012816247530281544, - 0.0022595999762415886, - 0.021001584827899933, - -0.008246270008385181, - 0.00746091129258275, - 0.01202411763370037, - 0.027203213423490524, - 0.01934962160885334, - -0.006001903675496578, - 0.0037338407710194588, - -0.003256531897932291, - -0.02517211250960827, - 0.01247773040086031, - 0.019403785467147827, - -0.004993123468011618, - 0.011103352531790733, - 0.001652808510698378, - -0.01995895244181156, - -0.022640006616711617, - -0.019078809767961502, - 0.02747402712702751, - 0.03488077595829964, - -0.023560771718621254, - 0.02277541346848011, - -0.0017196654807776213, - -0.0013726857723668218, - 0.01278239581733942, - 0.011103352531790733, - -0.029085366055369377, - 0.018374694511294365, - 0.002697979100048542, - 0.014217707328498363, - -0.026079338043928146, - -0.01974230259656906, - -0.005788637790828943, - 0.005676927510648966, - 0.012619907967746258, - 0.0030601921025663614, - 0.0018059873254969716, - -0.03463704138994217, - -0.01933608204126358, - 0.01615402288734913, - -0.014908281154930592, - -0.03225388377904892, - 0.007799427956342697, - 0.010548184625804424, - 0.02017560414969921, - 0.03929503262042999, - -0.002092034090310335, - -0.012856869027018547, - 0.003537500975653529, - -0.020676609128713608, - -0.018306991085410118, - -0.038834650069475174, - 0.034312065690755844, - 0.003777847858145833, - -0.015571774914860725, - -0.006773721892386675, - -0.022071298211812973, - 0.0009021473815664649, - -0.007237489800900221, - -0.027582351118326187, - 0.014001056551933289, - 0.007183327339589596, - 0.02303268574178219, - 0.011719453148543835, - -0.011083041317760944, - 0.017995554953813553, - -0.022301489487290382, - 0.04815063625574112, - 0.003754151752218604, - -0.012965194880962372, - -0.009275360964238644, - 0.01073775440454483, - -0.008043159730732441, - 0.018645508214831352, - 0.004468422383069992, - -0.0037236851640045643, - 0.01094763446599245, - -0.041163645684719086, - 0.00384555128403008, - -0.009004548192024231, - 0.01448852103203535, - 0.040324125438928604, - -0.0034664124250411987, - -0.011570505797863007, - -0.0034934936556965113, - -0.02064952626824379, - -0.0036322856321930885, - 0.019945412874221802, - -0.013486511074006557, - 0.013865649700164795, - 0.015449908562004566, - -0.03561197221279144, - -0.024359671398997307, - -0.01765703782439232, - -0.01869967021048069, - -0.010175815783441067, - 0.03379752114415169, - 0.0039234100840985775, - 0.01385887898504734, - -0.001392996753565967, - 0.01716957427561283, - -0.0037236851640045643, - -0.00786036066710949, - -0.026052255183458328, - -0.014217707328498363, - 0.001124722184613347, - 0.01764349825680256, - -0.0010984871769323945, - -0.011286151595413685, - 0.005098063498735428, - -0.001020628260448575, - -0.011462179943919182, - -0.008571246638894081, - -0.005037130322307348, - -0.024847134947776794, - -0.015788424760103226, - 0.019011106342077255, - -0.00976959615945816, - -0.018821535632014275, - -0.025916848331689835, - 0.040107473731040955, - 0.0014970906777307391, - -0.006221939343959093, - -0.014014597050845623, - -0.0035138048697263002, - -0.007907752878963947, - -0.019376704469323158, - -0.008449380286037922, - 0.01301258709281683, - -0.0046546063385903835, - -0.0178466085344553, - 0.012674069963395596, - -0.17418722808361053, - 0.02083909697830677, - 0.01236940547823906, - -0.04744651913642883, - 0.022463977336883545, - -0.0014243095647543669, - 0.009715433232486248, - -0.0035950487945228815, - -0.026350149884819984, - 0.0012093513505533338, - 0.006445360369980335, - 0.0036390561144798994, - -0.02576790191233158, - -0.006817729212343693, - 0.009173805825412273, - 0.024440916255116463, - -0.01718311384320259, - 0.024576323106884956, - 0.024332590401172638, - 0.02580852434039116, - 0.030141539871692657, - -0.01738622412085533, - 0.00933629460632801, - -0.003611974650993943, - 0.00828689243644476, - -0.000588596158195287, - -0.0225452221930027, - -0.00434994138777256, - -0.004224690143018961, - -0.023696178570389748, - 0.02060890570282936, - 0.0007811276009306312, - 0.03544948250055313, - -0.013533903285861015, - -0.015422827564179897, - -0.02813751995563507, - 0.007176557090133429, - -0.008848830126225948, - -0.011949644424021244, - 0.044602978974580765, - 0.022396273910999298, - 0.009959165006875992, - 0.0015537922736257315, - 0.001652808510698378, - -0.02941034361720085, - 0.009837299585342407, - 0.02366909757256508, - -0.0020311009138822556, - -0.0049863532185554504, - -0.010805457830429077, - 0.014691630378365517, - -0.031306035816669464, - -0.004922034684568644, - 0.014881200157105923, - 0.011983496136963367, - 0.01695292256772518, - 0.017589334398508072, - -0.008713423274457455, - 0.0016731194918975234, - -0.001564794103614986, - -0.004861101973801851, - 0.009735744446516037, - 0.013513592071831226, - -0.008632179349660873, - -0.017481008544564247, - -0.02922077290713787, - -0.003984343260526657, - 0.013669310137629509, - -0.016844598576426506, - -0.006089917849749327, - -0.01503014750778675, - -0.01419062539935112, - 0.011969955638051033, - 0.0003882364835590124, - 0.007718184031546116, - 0.00682449946179986, - -0.02448153682053089, - 0.01887569949030876, - 0.016235267743468285, - -0.022518139332532883, - -0.008747274987399578, - 0.040269963443279266, - -0.013655769638717175, - -0.025442926213145256, - -0.0037067593075335026, - -0.007508303504437208, - -0.023100389167666435, - 0.01526033878326416, - -0.009065480902791023, - 0.0009072251268662512, - 0.018767373636364937, - -0.037291016429662704, - -0.023736800998449326, - 0.008442609570920467, - 0.016181103885173798, - 0.0054298099130392075, - 0.00027991109527647495, - -0.0015893365489318967, - -0.005534750409424305, - -0.02472526952624321, - 0.026309529319405556, - -0.007190097589045763, - -0.011475720442831516, - 0.029491586610674858, - 0.011035649105906487, - 0.03853675723075867, - -0.011367395520210266, - 0.05058795586228371, - 0.028327088803052902, - 0.010582036338746548, - -0.03460996225476265, - -0.0018736907513812184, - 0.005284247919917107, - -0.008889452554285526, - 0.0037575368769466877, - 0.014001056551933289, - 0.023994073271751404, - -0.008970696479082108, - 0.005842800717800856, - -0.0019684755243360996, - 0.05489388853311539, - 0.006939595099538565, - -0.03561197221279144, - 0.01482703723013401, - -0.003537500975653529, - -0.012917802669107914, - -0.0787525549530983, - -0.017332062125205994, - 0.017359143123030663, - 0.012958424165844917, - 0.005748015828430653, - 0.026796992868185043, - 0.008246270008385181, - -0.006323494482785463, - -0.015829047188162804, - 0.028949959203600883, - -0.021326560527086258, - -0.04828604310750961, - -0.0026387388352304697, - -0.01161112729460001, - 0.01955273188650608, - -0.01074452418833971, - -0.003896328853443265, - 0.005003279075026512, - 0.0017941392725333571, - 0.037913884967565536, - 0.00023146088642533869, - -0.023912830278277397, - 0.006831269711256027, - -0.025700198486447334, - -0.0189298614859581, - 0.011861629784107208, - -0.024684647098183632, - 0.01526033878326416, - 0.021841106936335564, - 0.0018990794196724892, - 0.0023933141492307186, - -0.005521209444850683, - 0.029193691909313202, - -0.024386752396821976, - 0.010169045999646187, - -0.016167564317584038, - -0.014529142528772354, - -0.006892202887684107, - 0.020080817863345146, - -0.018550721928477287, - 0.014163544401526451, - -0.007826508954167366, - 0.013513592071831226, - -0.03615359961986542, - -0.007548925466835499, - -0.006980217061936855, - -0.02173278108239174, - 0.005768327042460442, - 0.0014945518923923373, - -0.011096581816673279, - -0.017738282680511475, - -0.006827884819358587, - -0.0006317570223473012, - -0.00025579179055057466, - 0.011929333209991455, - -0.010026868432760239, - -0.011428328230977058, - -0.02170570008456707, - -0.008523853495717049, - 0.017968473955988884, - -0.002659049816429615, - 0.013621917925775051, - -0.010521103627979755, - 0.023547230288386345, - -0.001556331175379455, - -0.0034545643720775843, - -0.022640006616711617, - -0.011367395520210266, - 0.0003808314504567534, - -0.00013582987594418228, - -0.008591556921601295, - 0.004265312105417252, - -0.007271341513842344, - -0.009918543510138988, - -0.013865649700164795, - -0.01894340291619301, - -0.03073732927441597, - -0.008950385265052319, - 0.013811486773192883, - -0.017562253400683403, - -0.008361365646123886, - -0.023046227172017097, - 0.03639733046293259, - 0.003913254477083683, - -0.004657991696149111, - 0.0036999890580773354, - 0.009627418592572212, - -0.02557833306491375, - 0.01084607932716608, - -0.009546174667775631, - 0.03049359656870365, - 0.008625408634543419, - 0.010020098648965359, - -0.027446944266557693, - -0.007379666902124882, - -0.005900348536670208, - 0.0036695224698632956, - 0.008016078732907772, - -0.022477518767118454, - 0.006882047280669212, - -0.022680627182126045, - -0.019661057740449905, - -0.07333628833293915, - 0.01975584216415882, - 0.015625936910510063, - -0.008361365646123886, - -0.015734262764453888, - 0.024630485102534294, - 0.013398496434092522, - 0.02668866701424122, - 0.015964454039931297, - -0.01974230259656906, - -0.01676335372030735, - -0.011421558447182178, - 0.0015537922736257315, - 0.014271870255470276, - -0.032172638922929764, - 0.002273140475153923, - 0.013466199859976768, - -0.001892309170216322, - 0.01744038797914982, - 0.0107648354023695, - 0.005676927510648966, - -0.004813709296286106, - 0.007643710356205702, - 0.013811486773192883, - -0.021665077656507492, - -0.012294931337237358, - -0.0027758381329476833, - 0.006871891673654318, - 0.006045910529792309, - -0.013764094561338425, - -0.004333015531301498, - 0.00515561131760478, - -0.016817515715956688, - 0.020297469571232796, - -0.00230868486687541, - -0.019877709448337555, - 0.010568495839834213, - 0.034501634538173676, - 0.01570718176662922, - 0.06797417998313904, - -0.01761641539633274, - -0.02838125079870224, - 0.009187347255647182, - -0.022910820320248604, - -0.004488733131438494, - 0.0014564687153324485, - 0.038997139781713486, - -0.0004976197378709912, - 0.002821537898853421, - 0.006425049621611834, - -0.002554109552875161, - 0.013256319798529148, - -0.01117782574146986, - -0.015246798284351826, - 0.00645213108509779, - -0.021827565506100655, - -0.0065570711158216, - -0.003672907594591379, - -0.010690361261367798, - -0.026593882590532303, - 0.038590919226408005, - 0.0027402937412261963, - 0.009139955043792725, - 0.006946365348994732, - 0.01419062539935112, - -0.012619907967746258, - -0.010852850042283535, - 0.0014539298135787249, - 0.02580852434039116, - -0.00038400504854507744, - -0.028408333659172058, - -0.008307202719151974, - 0.003033110871911049, - 0.017128951847553253, - -0.023100389167666435, - -0.008950385265052319, - 0.009485241957008839, - -0.001595260575413704, - 0.005595683120191097, - 0.01932254061102867, - 0.02922077290713787, - 0.0022900663316249847, - -0.016925841569900513, - 0.013222468085587025, - 0.030439434573054314, - 0.0024119324516505003, - -0.007061461452394724, - -0.0018753833137452602, - -0.009268591180443764, - 0.005937585141509771, - 0.00014577381080016494, - 0.016384214162826538, - 0.008483231998980045, - -0.0004062202060595155, - -0.011563735082745552, - 0.020676609128713608, - 0.01073775440454483, - -0.00978990737348795, - 0.011672060936689377, - 0.02943742461502552, - 0.01742684654891491, - 0.010439859703183174, - 0.0093566058203578, - -0.022721249610185623, - -0.042030248790979385, - 0.009722203947603703, - -0.012254309840500355, - -0.04300517961382866, - -0.01419062539935112, - 0.014542683027684689, - 3.678725988720544e-05, - 0.00872019398957491, - 0.00441087456420064, - -0.010372156277298927, - -0.014407276175916195, - 0.030899817124009132, - -0.008043159730732441, - -0.018130961805582047, - -0.024251345545053482, - 0.009410767816007137, - 0.02169215865433216, - 0.011658519506454468, - 0.0030348035506904125, - -0.003038188675418496, - 0.025849144905805588, - 0.006614618934690952, - -0.002527028089389205, - -0.0197964645922184, - 0.0003702527901623398, - -0.00752861425280571, - -0.010290911421179771, - 0.02017560414969921, - 0.003075425513088703, - -0.004708769265562296, - -0.011976725421845913, - -0.014799956232309341, - -0.005480587482452393, - -0.002862159861251712, - 0.010575265623629093, - 0.10030931234359741, - 0.018428856506943703, - 0.017792444676160812, - -0.015558233484625816, - -0.028272926807403564, - -0.012789166532456875, - 0.01213921420276165, - 0.005016819573938847, - -0.018306991085410118, - -0.044630058109760284, - 0.020351631566882133, - -0.0045564365573227406, - -0.0007244260050356388, - -0.01696646399796009, - -0.009647729806602001, - -0.00311266235075891, - -0.020920339971780777, - 0.0074676815420389175, - -0.02193589136004448, - 0.024779433384537697, - 0.02515857107937336, - -0.000368983339285478, - 0.003241298720240593, - 0.034962017089128494, - -0.014732252806425095, - -0.009810217656195164, - 0.012816247530281544, - 0.009187347255647182, - -0.007386437617242336, - -0.010818998329341412, - -0.016682108864188194, - 0.003896328853443265, - -0.06261207163333893, - -0.04127197340130806, - 0.021109910681843758, - -0.0003353432402946055, - 0.00023823122319299728, - -0.0010147042339667678, - 0.0021055748220533133, - -7.03480327501893e-05, - 0.016221726313233376, - 0.013662539422512054, - -0.011868400499224663, - -0.015625936910510063, - -0.02794794924557209, - -0.018740292638540268, - -0.004129905253648758, - -0.011184596456587315, - -0.008591556921601295 - ], - "sparse": "SparseEmbedding(values=array([1.47666492, 1.47666492, 1.47666492, 1.76717917, 1.76717917,\n 1.89120215, 1.76717917, 1.47666492, 1.89120215, 1.47666492,\n 1.47666492, 1.47666492, 1.47666492, 1.47666492, 1.47666492,\n 1.47666492, 1.47666492, 1.47666492, 1.89120215, 1.47666492,\n 1.47666492, 1.89120215, 1.47666492, 1.47666492, 1.47666492,\n 1.47666492, 1.47666492, 1.47666492, 1.47666492, 1.47666492,\n 1.47666492, 1.47666492, 1.47666492, 1.47666492, 1.47666492,\n 1.47666492, 1.47666492, 1.47666492, 1.47666492, 1.47666492,\n 1.47666492, 1.47666492, 1.47666492]), indices=array([ 848391633, 565373295, 1268912444, 1413554298, 32750488,\n 1550900382, 1162941628, 901258011, 408270109, 685289368,\n 2124172637, 22476906, 908425398, 376450507, 231980230,\n 1552799069, 1407327463, 834718839, 164058840, 70307177,\n 364826492, 1109731834, 722623917, 124322104, 267025598,\n 193925971, 1638510030, 1320850453, 1096210089, 594994963,\n 1466158544, 1675878461, 419117754, 580417171, 1448994436,\n 1595967062, 899821500, 1079921207, 997357077, 1807029080,\n 1115756734, 1174634009, 855096045]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 9, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 53 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000010.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000010.json deleted file mode 100644 index 4c7aafaffa667cec7263ddab841573aaeedada8b..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000010.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000010", - "content": "Planung und Ablauf des Vorhabens Das Projekt wurde wie geplant durchgef\u00fchrt. Es wurde ein iterativer Entwicklungsansatz verfolgt, der eine kontinuierliche Anpassung des AR-Systems anhand von Tests und Nutzerr\u00fcckmeldungen erm\u00f6glichte. 1. Entwicklung des AR-Tracking-Systems (AP6): Implementierung eines Point Cloud Matching-Verfahrens zur stabilen Platzierung virtueller Inhalte. 2. Erstellung eines Stadtmodell-Servers (AP8): Verwaltung und Bereitstellung von 3D- Daten f\u00fcr AR-Anwendungen. 3. Integration in ein reales Stadtplanungsszenario (AP4): Test in Fellbach, bei dem die AR-App f\u00fcr die Visualisierung eines Kreisverkehrs genutzt wurde. 4. Evaluation und B\u00fcrgerbeteiligung (AP9): Durchf\u00fchrung von Workshops, um Feedback zur Anwendung zu sammeln. ", - "embedding": { - "dense": [ - 0.010104031302034855, - 0.014470799826085567, - -0.0012596448650583625, - -0.009237395599484444, - 0.012556139379739761, - 0.029317812994122505, - -0.013906478881835938, - -0.009647199884057045, - 0.0019751230720430613, - -0.017668617889285088, - 0.011360316537320614, - -0.0001275390386581421, - -0.016163762658834457, - 0.001991918310523033, - -0.023567114025354385, - -0.001713956706225872, - 0.028511639684438705, - -0.004816881846636534, - -0.01623094268143177, - 0.0008851104066707194, - -0.020275242626667023, - 0.016620593145489693, - 0.024467341601848602, - -0.008666356094181538, - -0.01322123222053051, - 0.006298223976045847, - 0.018515098839998245, - -0.028941599652171135, - 0.01897193118929863, - -0.003301949007436633, - 0.014820140786468983, - -0.0018424404552206397, - 0.002725871279835701, - 0.0039636823348701, - -0.01332872174680233, - 0.006993548013269901, - -0.011642477475106716, - -0.005535718984901905, - 0.013187641277909279, - 0.017440201714634895, - 0.017977651208639145, - -0.009694226086139679, - 0.002920696511864662, - -0.010762405581772327, - 0.008021418005228043, - 0.010527271777391434, - -0.006822236347943544, - 0.010124185122549534, - -0.016459358856081963, - 0.0028467972297221422, - 0.00601942278444767, - 0.033079952001571655, - -0.034531064331531525, - -0.0078064389526844025, - -0.008552148938179016, - 0.007544432766735554, - -0.023231210187077522, - 0.02429267019033432, - -0.005394638981670141, - -0.018515098839998245, - -0.017050551250576973, - 0.011575296521186829, - -0.027114273980259895, - 0.010540707968175411, - -0.03004336915910244, - 0.00463549280539155, - -0.023190900683403015, - 0.01287189032882452, - -0.008666356094181538, - 0.0071615008637309074, - 0.06159159168601036, - 0.011837301775813103, - 0.012462086044251919, - -0.011272981762886047, - 0.033671144396066666, - -0.0015997489681467414, - 0.03160196915268898, - -0.022478781640529633, - -0.016244379803538322, - 0.011823865585029125, - -0.0038595516234636307, - -0.011877610348165035, - -0.009438938461244106, - 0.032112546265125275, - 0.015250099822878838, - 0.019227217882871628, - 0.010439936071634293, - 0.009855461306869984, - -0.0018877877155318856, - 0.008787281811237335, - -0.0131674874573946, - 0.02536756731569767, - -0.007033856585621834, - 0.013530264608561993, - -0.011172209866344929, - 0.01225382462143898, - 0.0017836570041254163, - 0.030392710119485855, - -0.011749967001378536, - -0.018300119787454605, - -0.014013968408107758, - 0.0006218446651473641, - -0.01338246650993824, - -0.007745975628495216, - -0.02386271208524704, - -0.01550538744777441, - -0.001013594213873148, - 0.007571305148303509, - 0.02483011782169342, - -0.009519555605947971, - -0.020234934985637665, - 0.01848822645843029, - -0.003018108895048499, - 0.004360050428658724, - -0.006792004685848951, - -0.03434295579791069, - 0.016647465527057648, - -0.023903019726276398, - 0.005451742559671402, - 0.00370839424431324, - 0.027127711102366447, - 0.016701210290193558, - 0.006519921589642763, - -0.0006126072839833796, - 0.016943061724305153, - 0.008767127990722656, - -0.003063456155359745, - -0.0031121624633669853, - -0.0015426450408995152, - -0.02601250447332859, - -0.013866170309484005, - -0.0033674505539238453, - 0.0255288016051054, - 0.008007981814444065, - -0.019160037860274315, - -0.006012704689055681, - -0.01628468744456768, - 0.006049653980880976, - -0.03686896339058876, - -0.032166291028261185, - 0.006973393727093935, - 0.005911932792514563, - -0.0040039909072220325, - -0.01644592173397541, - -0.0025646367575973272, - 0.026778368279337883, - -0.008108753710985184, - 0.0003180603089276701, - 0.006298223976045847, - -0.012408341281116009, - -0.011561859399080276, - -0.04380204901099205, - 0.004353332333266735, - -0.011676067486405373, - -0.012663628906011581, - -0.025810962542891502, - -0.011629041284322739, - 0.010124185122549534, - -0.014927631244063377, - -0.02090674452483654, - 0.01574723981320858, - 0.01655341312289238, - -0.004074531141668558, - 0.004709391854703426, - 0.03294559195637703, - 0.012240388430655003, - 0.0016828854568302631, - -0.007423506584018469, - -0.011165491305291653, - -0.005841393023729324, - -0.005112478509545326, - 0.003533723531290889, - -0.01483357697725296, - 0.003926732577383518, - -0.019119728356599808, - -0.016472795978188515, - 0.0019566481932997704, - 0.003202856983989477, - -0.025730345398187637, - -0.01746707409620285, - 0.004403718281537294, - -0.006577025633305311, - 0.02133670449256897, - 0.011897765100002289, - -0.009519555605947971, - -0.003384245792403817, - 0.0031927796080708504, - 0.033993612974882126, - -0.005246840417385101, - 0.004427231848239899, - 0.025770653039216995, - -0.0012907159980386496, - 0.0028400791343301535, - -0.021054543554782867, - -0.6376288533210754, - -0.004296228755265474, - 0.021296394988894463, - -0.021202340722084045, - 0.008867899887263775, - 0.03133324533700943, - 0.018179193139076233, - -0.004161866381764412, - -0.011682786047458649, - 0.048021018505096436, - 0.0009926001075655222, - -0.0066206930205225945, - 0.0065703075379133224, - -0.013308566994965076, - -0.01655341312289238, - -0.0276785958558321, - 0.00859917514026165, - -0.02289530448615551, - 0.005424870178103447, - 0.024144871160387993, - -0.0467580147087574, - 0.011481242254376411, - -0.00047866502427496016, - -0.02155168354511261, - -0.014551416970789433, - 0.0018054909305647016, - 0.0035941866226494312, - -0.0006986829685047269, - -0.021954769268631935, - 0.003009711392223835, - 0.00378229352645576, - 0.015438206493854523, - -0.004014068283140659, - 0.041249167174100876, - 0.04342583566904068, - 0.007080883253365755, - -0.024547958746552467, - 0.025837834924459457, - -0.0013117101043462753, - 0.025407874956727028, - -0.0058313156478106976, - 0.013463083654642105, - 0.00781987514346838, - 0.011440933682024479, - 0.003943528048694134, - -0.006751696113497019, - 0.040389250963926315, - -0.010063722729682922, - -0.007974391803145409, - -0.035659704357385635, - 0.0018877877155318856, - -0.002097728429362178, - -0.008679792284965515, - -0.005824597552418709, - 0.013395902700722218, - 0.015384461730718613, - 0.00689277658239007, - 0.016513103619217873, - -0.0046220566146075726, - -0.013751962222158909, - -0.02219662070274353, - -0.014927631244063377, - -0.005492051597684622, - -0.037325795739889145, - -0.036895837634801865, - 0.043130237609148026, - -0.005737262312322855, - -0.003026506630703807, - 0.007826592773199081, - -0.023513369262218475, - 0.006926367059350014, - 0.027342690154910088, - -0.016795264557003975, - -0.024682320654392242, - 0.014040840789675713, - 0.008229679428040981, - 0.016849009320139885, - -0.015774112194776535, - -0.004155148286372423, - 0.004981475416570902, - 0.00042492017382755876, - -0.00972781702876091, - 0.002828322583809495, - 0.02160542830824852, - 0.01752081885933876, - 0.008377477526664734, - -0.039798058569431305, - -0.025663163512945175, - 0.004087967332452536, - 0.0048235999420285225, - 0.01421551126986742, - 0.005915292073041201, - -0.037379540503025055, - -0.011622322723269463, - 0.0005534039810299873, - 0.045817479491233826, - -0.0007667038007639349, - 0.03004336915910244, - -0.008558866567909718, - -0.050600770860910416, - -0.021686045452952385, - -0.001495618256740272, - 0.02826978825032711, - 0.011783557012677193, - 0.03772887960076332, - 0.0011353598674759269, - -0.027073966339230537, - 0.0015191315906122327, - 0.06841719150543213, - -0.012106026522815228, - -0.023446189239621162, - -0.013483238406479359, - -0.016096580773591995, - 0.0031944592483341694, - 0.011897765100002289, - -0.023688040673732758, - -0.006644206587225199, - -0.01746707409620285, - 0.01940188929438591, - -0.005596181843429804, - 0.013557136990129948, - -0.022048823535442352, - 0.03719143196940422, - -0.003065135795623064, - -0.013100306503474712, - 0.010943793691694736, - 0.010144339874386787, - -0.023876147344708443, - -0.02413143590092659, - -0.00234461878426373, - 0.010554144158959389, - -0.010359318926930428, - 0.027047093957662582, - -0.0012478880817070603, - 0.03165571391582489, - 0.011548423208296299, - 0.014645470306277275, - -0.013584009371697903, - -0.002196820452809334, - -0.028350405395030975, - -0.021269522607326508, - 0.01612345315515995, - 0.012119462713599205, - -0.009747971780598164, - -0.005397997796535492, - -0.02923719584941864, - 0.007537714671343565, - 0.006106758024543524, - 0.014981376007199287, - -0.005572668742388487, - -0.01773579977452755, - -0.01918691024184227, - 0.005206531845033169, - 0.03294559195637703, - 0.015115737915039062, - -0.0033691299613565207, - -0.007074165157973766, - -0.0311720110476017, - 0.005754057317972183, - -0.04122229665517807, - 0.01907942071557045, - 0.008955234661698341, - -0.02225036546587944, - -0.022263802587985992, - 0.010782559402287006, - -0.010063722729682922, - 0.004087967332452536, - 0.044742584228515625, - -0.014860449358820915, - -0.040872953832149506, - 0.022774377837777138, - -0.0012462085578590631, - -0.013416057452559471, - 0.022371292114257812, - -0.02241159975528717, - 0.0022707197349518538, - -0.02719489112496376, - -0.02912970632314682, - 0.001159713021479547, - -0.01260316651314497, - -0.0017198350979015231, - 0.033617399632930756, - 0.0030869694892317057, - 0.006761773489415646, - -0.0036512904334813356, - 0.008055008947849274, - 0.011407343670725822, - 0.02579752542078495, - -0.00859917514026165, - 0.024117998778820038, - 0.004339896142482758, - 0.043398961424827576, - -0.01096394844353199, - 0.01617719791829586, - -0.02214287593960762, - -0.0074705337174236774, - -0.024171743541955948, - 0.006953239440917969, - 0.007020420394837856, - 0.014699215069413185, - 0.028081681579351425, - 0.017977651208639145, - 0.032005056738853455, - 0.027436744421720505, - 0.004507848992943764, - -0.02977464348077774, - 0.006526639685034752, - -0.011938073672354221, - 0.023929892107844353, - -0.007705667056143284, - 0.0016266213497146964, - -0.009170214645564556, - -0.01512917410582304, - -0.008149062283337116, - 0.019415324553847313, - 0.009546427987515926, - 0.0045380801893770695, - -0.0004954602918587625, - -0.015384461730718613, - 0.016539976000785828, - 0.003993913996964693, - 0.003899860428646207, - 0.030446454882621765, - -0.015572569333016872, - 0.001781977480277419, - -0.007638486102223396, - 0.010957229882478714, - 0.03348303958773613, - 0.02359398640692234, - -0.01539789792150259, - -0.0038393973372876644, - 0.012851736508309841, - -0.010795995593070984, - 0.0008212884422391653, - 0.02230411022901535, - 0.015102301724255085, - 0.02380896732211113, - -0.008794000372290611, - 0.007960955612361431, - 0.023620858788490295, - 0.021780097857117653, - 0.013684781268239021, - 0.008941798470914364, - -0.016956498846411705, - 0.01881069503724575, - -0.017870161682367325, - 0.0386962890625, - 0.03219316154718399, - -0.0031608687713742256, - 0.013637754134833813, - -0.01811201311647892, - 0.007833311334252357, - -0.01461859792470932, - -0.0018105295021086931, - -0.0024940967559814453, - 0.00407117186114192, - 0.015048556961119175, - -0.00741678848862648, - 0.039421845227479935, - 0.04111480712890625, - 0.018152320757508278, - 0.026133431121706963, - 0.015276972204446793, - 0.00438020471483469, - -0.017614873126149178, - 2.235869578726124e-05, - -0.024951044470071793, - -0.029855262488126755, - -0.005216609220951796, - -0.01518291886895895, - 0.039583079516887665, - -0.016002528369426727, - -0.0060866037383675575, - -0.0006357007659971714, - 0.007262272294610739, - 0.0011941433185711503, - 0.017937341704964638, - -0.009909206070005894, - 0.02778608538210392, - 0.017749235033988953, - -0.019536251202225685, - -0.016002528369426727, - -0.01249567698687315, - 0.02520633302628994, - 0.005858188029378653, - 0.000968246953561902, - 0.0036210590042173862, - 0.010278701782226562, - -0.015787547454237938, - -0.029049089178442955, - -0.039475589990615845, - -0.009197087027132511, - -0.002074215095490217, - 0.0026250998489558697, - 0.0012470483779907227, - 0.010628042742609978, - 0.02950591966509819, - 0.005139350891113281, - -0.011608886532485485, - -0.016163762658834457, - -0.011770120821893215, - 0.003009711392223835, - 0.006724823731929064, - -0.03681521862745285, - 0.035122256726026535, - -0.01550538744777441, - -0.005932087078690529, - -0.043828919529914856, - -0.005314021371304989, - -0.032381270080804825, - 0.009647199884057045, - 0.001355377840809524, - 0.004504489712417126, - 0.009660636074841022, - 0.007067447062581778, - 0.003930091857910156, - -0.003008031751960516, - -0.006550153251737356, - 0.033026207238435745, - -0.002942530205473304, - -0.01967061311006546, - -0.029640281572937965, - -0.0041753025725483894, - 0.018501663580536842, - 0.03525661677122116, - 0.014148330315947533, - 0.008115471340715885, - 0.01539789792150259, - -0.0247226282954216, - -0.013362311758100986, - -0.021511374041438103, - -0.038830649107694626, - 0.004853831138461828, - 0.014443927444517612, - -0.01558600552380085, - 0.010137621313333511, - 0.018125448375940323, - -0.018837567418813705, - 0.007490688003599644, - 0.008585738949477673, - 0.019589995965361595, - 0.008424504660069942, - -0.0028031296096742153, - 0.01703711599111557, - 0.025609418749809265, - 0.00014265476784203202, - 0.021363576874136925, - 0.031682588160037994, - 0.023177465423941612, - -0.009445657022297382, - 0.0446082204580307, - -0.0036412132903933525, - -0.005969036836177111, - -0.033671144396066666, - 0.016298124566674232, - 0.024682320654392242, - -0.0030500199645757675, - 0.019254090264439583, - -0.006815518252551556, - 0.034423574805259705, - 0.004937807563692331, - 0.0019113010494038463, - 0.025676600635051727, - 0.008357323706150055, - 0.025972196832299232, - 0.0039468868635594845, - 0.0016845649806782603, - -0.007954237051308155, - 0.01655341312289238, - 0.005139350891113281, - -0.004329819232225418, - 0.007826592773199081, - -0.011105028912425041, - -0.014296128414571285, - -0.005011706613004208, - -0.0028971831779927015, - -0.023661168292164803, - -0.00030357440118677914, - 0.011763403192162514, - -0.0017215146217495203, - 0.012757682241499424, - -0.00945909321308136, - 0.007101037539541721, - -0.031521350145339966, - -0.033993612974882126, - -0.0042895106598734856, - -0.02090674452483654, - -0.011844020336866379, - -0.020678328350186348, - -0.012213516049087048, - -0.014430491253733635, - 0.000786858145147562, - -0.012972662225365639, - -0.0008725139778107405, - 0.006039577070623636, - -0.0072689903900027275, - -0.02746361680328846, - 0.015303844586014748, - 0.029855262488126755, - -0.002292553661391139, - 0.01907942071557045, - -0.0035673140082508326, - -0.00514606898650527, - 0.009687508456408978, - -0.018931621685624123, - -0.025878142565488815, - 0.012428495101630688, - -0.017708927392959595, - -0.016150325536727905, - 0.008834308944642544, - -0.015975655987858772, - -0.02214287593960762, - -0.008928362280130386, - 0.022451909258961678, - -0.006513203494250774, - -0.012025409378111362, - 0.025985632091760635, - 0.0007276548421941698, - -0.013718372210860252, - 0.0029794799629598856, - -0.008169216103851795, - 0.022210057824850082, - 0.001268882188014686, - -0.014013968408107758, - 0.0003422035078983754, - 8.203437027987093e-05, - -0.01029213797301054, - 0.002746025798842311, - 0.020624583587050438, - 0.0034866968635469675, - -0.021309830248355865, - 0.013248104602098465, - -0.01859571598470211, - -0.014537980780005455, - 0.0220353864133358, - -0.0034598244819790125, - 0.0012579653412103653, - -0.01456485316157341, - 0.027651723474264145, - 0.022317547351121902, - 0.005109119229018688, - 0.010433218441903591, - 0.050708260387182236, - 0.005350971128791571, - -0.002527687232941389, - -0.015559133142232895, - 0.042485300451517105, - 0.022989356890320778, - 0.008847745135426521, - 0.014134894125163555, - 0.030983902513980865, - 0.019643740728497505, - -0.03031209297478199, - -0.0008065925794653594, - -0.00808859895914793, - 0.00043499734601937234, - -0.013906478881835938, - -0.006136989686638117, - -0.020543966442346573, - -0.014040840789675713, - -0.0022304111625999212, - 0.000996798975393176, - 0.009586736559867859, - -0.0024218771141022444, - -0.019254090264439583, - 0.005559232551604509, - 0.028027936816215515, - 0.013825861737132072, - -0.0036479313857853413, - -0.02595875971019268, - -0.007880337536334991, - 0.025931887328624725, - -0.051568180322647095, - 0.034746043384075165, - -0.009089596569538116, - 0.0014788230182603002, - -0.03025834821164608, - -0.005233404226601124, - -0.026939604431390762, - -0.020127445459365845, - 0.004370127804577351, - -0.014336437918245792, - 0.031360115855932236, - 0.025219768285751343, - 0.02966715395450592, - 0.009170214645564556, - 0.035605959594249725, - -0.010493680834770203, - -0.013308566994965076, - 0.0041517894715070724, - -0.019092855975031853, - -0.010621325112879276, - -0.02601250447332859, - 0.021000798791646957, - 0.010742250829935074, - 0.01477983221411705, - 0.022183185443282127, - -0.002682203659787774, - 0.004370127804577351, - 0.028726620599627495, - -0.02977464348077774, - 0.0024957761634141207, - -0.0056700813584029675, - -0.027450179681181908, - -0.01913316547870636, - 0.008686510846018791, - 0.01881069503724575, - 0.004934448748826981, - -0.02810855396091938, - 0.010164493694901466, - 0.0071883732452988625, - 0.009351602755486965, - 0.02036929689347744, - -0.006872622296214104, - 0.016741519793868065, - -0.02397020161151886, - 0.007719103246927261, - 0.0158547293394804, - 0.010614606551826, - -0.020866436883807182, - -0.003411118173971772, - -0.04272715374827385, - 0.01864946074783802, - 0.03660023957490921, - 0.008464813232421875, - 0.009862178936600685, - 0.010352600365877151, - -0.00514606898650527, - -0.009855461306869984, - 0.020181190222501755, - 0.01961686834692955, - -0.023096846416592598, - 0.008928362280130386, - -0.013557136990129948, - 0.003825961146503687, - -0.012824864126741886, - -0.006781927775591612, - 0.0023127079475671053, - 0.009008979424834251, - 0.01714460551738739, - 0.020785819739103317, - 0.03176320344209671, - -0.007826592773199081, - -0.003872987814247608, - 0.021565118804574013, - -0.014202075079083443, - 0.03133324533700943, - 0.014900757931172848, - 0.025730345398187637, - 0.014752959832549095, - -0.021565118804574013, - -0.03310682624578476, - -0.07664015144109726, - 0.012851736508309841, - 0.011400625109672546, - 0.022371292114257812, - 0.020490221679210663, - -0.006241119932383299, - -0.024064254015684128, - 0.006022781599313021, - 0.026644006371498108, - -0.026644006371498108, - -0.024010509252548218, - 0.025918452069163322, - 0.02526007778942585, - 0.00033464565058238804, - -0.0023059898521751165, - -0.012112744152545929, - -0.023338699713349342, - 0.017964214086532593, - -0.006912930868566036, - 0.014981376007199287, - 0.008518557995557785, - 0.004061094950884581, - -0.026375282555818558, - 0.027396434918045998, - -0.009983104653656483, - 0.027651723474264145, - 0.013449647463858128, - -0.025810962542891502, - 0.021108288317918777, - -0.004346614237874746, - -0.0005000790115445852, - -0.0010975705226883292, - 0.008068445138633251, - 0.015572569333016872, - 0.003172625321894884, - 0.006755055394023657, - 0.001435995101928711, - 0.0031323167495429516, - -0.0006760093965567648, - -0.012589730322360992, - -0.003973759710788727, - 0.022707197815179825, - -0.020557403564453125, - -0.012381468899548054, - -0.014994812197983265, - -0.0070405746810138226, - 0.01709086075425148, - 0.004853831138461828, - -0.0019062624778598547, - -0.025501929223537445, - -0.015424770303070545, - -0.000976644572801888, - 0.011891047470271587, - 0.006331814453005791, - -0.012112744152545929, - -0.018340429291129112, - 0.004548157565295696, - -0.01287189032882452, - -0.002191781997680664, - 0.019039111211895943, - 0.018138885498046875, - -0.048074763268232346, - -0.032864972949028015, - 0.02918345108628273, - -0.010218238458037376, - 0.007316017057746649, - -0.005297226365655661, - 0.005626413505524397, - -0.009674072265625, - 0.01752081885933876, - -0.0440707728266716, - 0.001808849978260696, - 0.043667685240507126, - -0.01580098457634449, - -0.015048556961119175, - 0.027477052062749863, - -0.012300851754844189, - -0.007591459434479475, - 0.02972089871764183, - -0.017265532165765762, - -0.034746043384075165, - -0.017762672156095505, - 0.008686510846018791, - 0.005310662556439638, - -0.0033036284148693085, - -0.0022959127090871334, - 0.02031555213034153, - -0.011373752728104591, - 0.00022988517594058067, - -0.0021951410453766584, - -0.0032498836517333984, - -0.018125448375940323, - -0.007793002761900425, - -0.002517610089853406, - 0.027168018743395805, - -0.02182040736079216, - 0.025770653039216995, - 0.017171477898955345, - -0.0061806570738554, - 0.0010001580230891705, - -0.043775174766778946, - -0.024924172088503838, - -0.010681788437068462, - 0.012294133193790913, - -0.02832353301346302, - -0.016969934105873108, - -0.01838073693215847, - -0.01405427698045969, - -0.008632766082882881, - -0.0007612453191541135, - -0.009049287997186184, - 0.0005403876421041787, - 0.005028502084314823, - -0.008169216103851795, - -0.0123613141477108, - 0.009008979424834251, - 0.003147432580590248, - -0.008552148938179016, - 0.005307303275913, - -0.004316383041441441, - -0.034477319568395615, - -0.006828954443335533, - -0.013429493643343449, - 0.021081415936350822, - 0.019818412140011787, - -0.036519620567560196, - -0.005458460655063391, - -0.027073966339230537, - -0.04111480712890625, - -0.004121557809412479, - -0.020033391192555428, - -0.007544432766735554, - 0.006133630406111479, - 0.010775841772556305, - 0.0010748968925327063, - 0.023069974035024643, - 0.009553146548569202, - -0.0022975921165198088, - -0.008807436563074589, - -0.021780097857117653, - -0.004534721374511719, - -0.0260662492364645, - 0.009721098467707634, - -0.006617334205657244, - -0.06191406026482582, - -0.0015787548618391156, - 0.0010018375469371676, - -0.010224957019090652, - 0.01843448169529438, - 0.00081792933633551, - -0.003389284247532487, - -0.01168950367718935, - 0.016566848382353783, - 0.015814419835805893, - -0.0163921769708395, - 0.006308301351964474, - 0.022989356890320778, - 0.01400053221732378, - 0.0002949668269138783, - 0.018071703612804413, - -0.008236397989094257, - -0.027597978711128235, - -0.010775841772556305, - 0.005975754931569099, - -0.014363310299813747, - 0.00032708776416257024, - 0.004548157565295696, - -0.022962484508752823, - -0.005475256126374006, - -0.01179699320346117, - 0.017063988372683525, - -0.003018108895048499, - -0.0015384461730718613, - 0.003987195901572704, - -0.0006075686542317271, - 0.010755687020719051, - -0.018689770251512527, - 0.018528535962104797, - -0.02697991207242012, - 0.014900757931172848, - -0.0007469693664461374, - -0.011434216052293777, - 0.012381468899548054, - -0.012898762710392475, - -0.015706930309534073, - -0.012267260812222958, - 0.0014746241504326463, - 0.015626313164830208, - -0.0022488858085125685, - -0.018904749304056168, - 0.015115737915039062, - -0.0075242784805595875, - 0.019697485491633415, - 0.0076048956252634525, - -0.0028249635361135006, - -0.008881336078047752, - -0.020611148327589035, - -0.005065451841801405, - 0.008055008947849274, - -0.004397000186145306, - -0.0027611413970589638, - -0.01193135604262352, - -0.015680057927966118, - -0.005206531845033169, - 0.016459358856081963, - -0.008135626092553139, - -0.011729812249541283, - 0.018851004540920258, - 0.1950937956571579, - 0.0028971831779927015, - -0.008310296572744846, - 0.00761833181604743, - -0.025609418749809265, - 0.0010278701083734632, - 0.011951509863138199, - 0.018461354076862335, - 0.0005189736839383841, - 0.027382997795939445, - 0.0006390598136931658, - 0.006523280404508114, - 0.025864707306027412, - 0.00047824514331296086, - 0.010762405581772327, - -0.006036217790096998, - -0.0018340428359806538, - -0.004531362093985081, - 0.004091326147317886, - 0.03423546627163887, - 0.0419209785759449, - -0.010681788437068462, - -0.01005028560757637, - -0.011776839382946491, - 0.018515098839998245, - -0.0006806280580349267, - -0.019213782623410225, - -0.0036748037673532963, - 0.023123718798160553, - -0.0004660685663111508, - -0.014793268404901028, - 0.004450744949281216, - 0.017588000744581223, - -0.012462086044251919, - 0.008552148938179016, - -0.014752959832549095, - 0.022666888311505318, - 0.009882333688437939, - 0.02026180736720562, - 0.00889477226883173, - -0.010278701782226562, - -0.008256551809608936, - 0.007033856585621834, - -0.030903285369277, - 0.0070540108717978, - 0.02429267019033432, - -0.005340894218534231, - -0.006157143972814083, - 0.010923639871180058, - -0.019375016912817955, - -0.016539976000785828, - -0.009069442749023438, - 0.0255288016051054, - 0.014470799826085567, - -0.011219236068427563, - 0.0021413962822407484, - -0.009277704171836376, - -0.007504124194383621, - 0.008377477526664734, - 0.021215777844190598, - -0.02542131207883358, - 0.00298283901065588, - 0.013026406988501549, - 0.014605161733925343, - -0.03283809870481491, - 0.0011756684398278594, - 0.0016467756358906627, - -0.006849108729511499, - 0.016620593145489693, - -0.015102301724255085, - -0.003026506630703807, - -0.031037647277116776, - -0.01534415315836668, - 0.011058001779019833, - -0.012179925106465816, - -0.0317094586789608, - 0.00972781702876091, - 0.026361847296357155, - 0.034692298620939255, - 0.019200345501303673, - 0.0019113010494038463, - 0.002756102941930294, - -0.005371125414967537, - -0.020382732152938843, - -0.01977810263633728, - -0.03568657860159874, - 0.04466196522116661, - -0.006980111822485924, - -0.014591725543141365, - -0.015612877905368805, - -0.023137155920267105, - -0.018421046435832977, - 0.0056700813584029675, - -0.034692298620939255, - 0.015545696951448917, - 0.005992550402879715, - 0.03746015578508377, - 0.0033153851982206106, - -0.009103032760322094, - 0.011501397006213665, - -0.0005970716592855752, - 0.04901529848575592, - 0.017991086468100548, - -0.015666622668504715, - -0.01596221886575222, - 0.011145337484776974, - -0.0010581016540527344, - 0.02139044925570488, - 0.011407343670725822, - -0.007772848475724459, - 0.005320739466696978, - -0.027006784453988075, - 0.006751696113497019, - -0.009223959408700466, - 0.008585738949477673, - 0.030500199645757675, - -0.007947519421577454, - -0.0141080217435956, - -0.0007255554082803428, - -0.008511839434504509, - -0.011548423208296299, - 0.014228947460651398, - -0.02031555213034153, - 0.009667353704571724, - 0.021309830248355865, - -0.027006784453988075, - -0.019751230254769325, - -0.014793268404901028, - -0.0030584177002310753, - -0.012509113177657127, - -0.0013797309948131442, - -0.01230756938457489, - 0.01601596362888813, - -0.0029240555595606565, - 0.0005151947261765599, - -0.0027510642539709806, - -0.0017769389087334275, - -0.026563389226794243, - -0.0006541755283251405, - 0.0016484551597386599, - 0.033778633922338486, - 0.02724863588809967, - 0.013960223644971848, - -0.005619695410132408, - -0.004134994000196457, - 0.005088964942842722, - 0.008243115618824959, - 0.017561128363013268, - -0.042270321398973465, - -0.011534987017512321, - 0.0015854729572311044, - -0.009331448934972286, - -0.014121457934379578, - -0.011064720340073109, - 0.041410401463508606, - 0.007221963722258806, - -0.01956312358379364, - -0.018259810283780098, - 0.008431222289800644, - -0.011199082247912884, - -0.017158042639493942, - -0.00781987514346838, - 0.025354130193591118, - 0.009714380837976933, - -0.018998803570866585, - 0.004467540420591831, - -0.17112359404563904, - 0.014148330315947533, - 0.025354130193591118, - -0.02923719584941864, - 0.006513203494250774, - 0.004692596849054098, - 0.019710922613739967, - 0.008908208459615707, - -0.03192443773150444, - 0.0092709856107831, - 0.008229679428040981, - -0.004057735670357943, - -0.020933616906404495, - -0.006456099450588226, - 0.008807436563074589, - 0.01518291886895895, - -0.025004789233207703, - 0.027866702526807785, - 0.0276785958558321, - 0.006446022540330887, - 0.016728082671761513, - -0.02440015971660614, - 0.0035404416266828775, - 0.009532991796731949, - -0.005028502084314823, - 0.021363576874136925, - -0.017386456951498985, - 0.006553512066602707, - -0.00988905131816864, - -0.023473061621189117, - 0.01811201311647892, - -0.005690235644578934, - 0.041249167174100876, - -0.010406346060335636, - -0.015263536013662815, - -0.016687775030732155, - -0.006486331112682819, - 0.007463815622031689, - -0.006271351594477892, - 0.03536411002278328, - 0.016808699816465378, - 0.0247226282954216, - -0.001862594741396606, - -0.0034866968635469675, - -0.025784090161323547, - 0.04261966049671173, - 0.042592789977788925, - -0.013308566994965076, - -0.012811427935957909, - -0.01789703406393528, - -0.011387188918888569, - -0.031951311975717545, - -0.022425036877393723, - 0.00370839424431324, - 0.008679792284965515, - 0.020785819739103317, - 0.020248370245099068, - 0.004625415895134211, - 0.0009371757623739541, - 0.005354330409318209, - -0.012482239864766598, - 0.012455367483198643, - 0.010251829400658607, - -0.012139616534113884, - -0.015250099822878838, - -0.030446454882621765, - 0.0069599575363099575, - 0.025233205407857895, - -0.010520553216338158, - 0.0034497473388910294, - -0.012186643667519093, - -0.016566848382353783, - -0.0006415790994651616, - 6.959537859074771e-05, - -0.0036244180519133806, - 0.027342690154910088, - -0.008169216103851795, - 0.016029400750994682, - 0.022640015929937363, - -0.021296394988894463, - -0.006634129211306572, - 0.04734920710325241, - -0.005972396116703749, - -0.02628123015165329, - -0.01773579977452755, - -0.013395902700722218, - -0.016647465527057648, - 0.031521350145339966, - 0.002017111284658313, - -0.0024201974738389254, - 0.01483357697725296, - -0.03885752335190773, - -0.02923719584941864, - 0.01558600552380085, - 0.025031661614775658, - 0.02074551023542881, - -0.0021111646201461554, - -0.007530996575951576, - -0.006513203494250774, - -0.028457894921302795, - 0.027288945391774178, - 0.0033237827010452747, - 0.0032683582976460457, - 0.00932473037391901, - -0.00043457746505737305, - -0.006667719688266516, - -0.005216609220951796, - 0.021833842620253563, - 0.029694026336073875, - 0.0024655447341501713, - -0.03552534431219101, - -0.005481974221765995, - 0.0079273646697402, - 0.0092709856107831, - -0.006429227069020271, - 0.0214979387819767, - 0.015975655987858772, - -0.01056086178869009, - -0.0015199714107438922, - -0.004927730653434992, - 0.053395502269268036, - -0.004323101136833429, - -0.03713768720626831, - 0.007766129914671183, - -0.0026855627074837685, - -0.014900757931172848, - -0.08196088671684265, - -0.020893309265375137, - 0.018353864550590515, - 0.009929359890520573, - -0.0029324530623853207, - 0.033133696764707565, - 0.006220965646207333, - 0.007262272294610739, - -0.009922642260789871, - 0.02638871967792511, - -0.02407769113779068, - -0.03412797674536705, - -0.00988905131816864, - -0.006795363966375589, - 0.011293135583400726, - -0.004400359001010656, - -0.006973393727093935, - -0.005219968035817146, - 0.007121191825717688, - 0.030607689172029495, - 0.012784554623067379, - -0.015491951256990433, - 0.02192789688706398, - -0.026523081585764885, - -0.020073698833584785, - -0.0011387189151719213, - -0.024762937799096107, - 0.002581431996077299, - 0.01687588170170784, - -0.00012648933625314385, - 0.009983104653656483, - -0.008048290386795998, - 0.02837727777659893, - -0.026200613006949425, - 0.009123187512159348, - -0.017184915021061897, - -0.022653453052043915, - -0.003437990555539727, - 0.02848476730287075, - -0.0274098701775074, - 0.012838300317525864, - -0.00185419712215662, - 0.00612691231071949, - -0.047214847058057785, - 0.005505487788468599, - -0.009828588925302029, - -0.009076160378754139, - 0.00039069983176887035, - -0.016687775030732155, - -0.008834308944642544, - -0.032864972949028015, - -0.004826958756893873, - 0.006862544920295477, - 0.006372123025357723, - 0.01644592173397541, - -0.011259544640779495, - 0.0017299122409895062, - -0.02445390447974205, - -0.009492683224380016, - -0.000813730526715517, - -0.019213782623410225, - -0.0032381268683820963, - -0.00035060112713836133, - 0.018098575994372368, - 0.0014939387328922749, - 0.013919915072619915, - -0.010540707968175411, - -0.007047292776405811, - 0.01096394844353199, - 0.008169216103851795, - -0.023284954950213432, - -0.004984834231436253, - -0.001404923852533102, - -0.01461859792470932, - -0.009909206070005894, - -0.013906478881835938, - -0.037379540503025055, - -0.003019788535311818, - 0.019361579790711403, - -0.013570573180913925, - -0.0171983502805233, - -0.040711719542741776, - 0.026993349194526672, - -0.011709658429026604, - 0.005125914700329304, - 0.009794997982680798, - -0.0071883732452988625, - -0.030070241540670395, - -0.004252560902386904, - -0.007584741339087486, - 0.014578289352357388, - 0.006049653980880976, - 0.008968670852482319, - -0.03670772910118103, - -0.02128295786678791, - 0.002356375567615032, - 0.0074705337174236774, - -0.00447425851598382, - -0.018313556909561157, - 9.237394988304004e-05, - -0.019536251202225685, - -0.006415790878236294, - -0.07105068862438202, - 0.016311559826135635, - 0.014551416970789433, - 0.0016215827781707048, - -0.02649620920419693, - 0.024252360686659813, - 0.014847013168036938, - -0.003671444719657302, - -0.005088964942842722, - -0.02574378065764904, - -0.0166609026491642, - -0.01434987410902977, - 0.0024218771141022444, - 0.013174205087125301, - -0.021027671173214912, - 0.005757416598498821, - 0.009553146548569202, - 0.0041786618530750275, - 0.021162033081054688, - 0.0002240068424725905, - 0.009969668462872505, - 0.0008993864175863564, - -0.0037688573356717825, - -0.004978116136044264, - -0.019482506439089775, - -0.0006793684442527592, - -0.01757456362247467, - -6.550809303007554e-06, - -0.004706033039838076, - -0.017641745507717133, - -0.014954503625631332, - 0.006825595162808895, - -0.01692962646484375, - 0.02816229872405529, - -0.0022707197349518538, - -0.002788013778626919, - -0.00025801724405027926, - 0.042431555688381195, - 0.008390913717448711, - 0.05503472313284874, - -0.028135426342487335, - -0.035176001489162445, - 0.01891818642616272, - -0.026644006371498108, - 0.009660636074841022, - -0.020570838823914528, - 0.025381002575159073, - -0.015787547454237938, - 0.006812158972024918, - -0.010728814639151096, - 0.019388452172279358, - 0.005942164454609156, - -0.016754955053329468, - -0.01956312358379364, - 0.011508114635944366, - -0.03746015578508377, - 0.0072958627715706825, - -0.001899544382467866, - -0.013006252236664295, - -0.020772382616996765, - 0.05202500894665718, - -0.01993933692574501, - 0.0006382200517691672, - -0.007006984204053879, - 0.018582280725240707, - -0.0014443927211686969, - -0.026308102533221245, - 0.0029593254439532757, - 0.008834308944642544, - -0.010406346060335636, - -0.016781827434897423, - -0.018528535962104797, - 0.017386456951498985, - 0.025824397802352905, - -0.008498403243720531, - -0.0030046727042645216, - 0.012220234610140324, - 0.011407343670725822, - 0.005065451841801405, - 0.009069442749023438, - 0.019227217882871628, - 0.025112278759479523, - -0.026644006371498108, - 0.02171291783452034, - 0.027920447289943695, - 0.016432486474514008, - -0.022021951153874397, - -0.0010606208816170692, - -0.020127445459365845, - 0.01569349505007267, - -0.0005680997855961323, - 0.014242383651435375, - 0.007396634202450514, - 0.012965943664312363, - -0.02869974821805954, - 0.018582280725240707, - 0.018138885498046875, - -0.00736304372549057, - 0.021027671173214912, - 0.033724889159202576, - 0.018636025488376617, - 0.017292404547333717, - -0.008612611331045628, - -0.03917999193072319, - -0.040711719542741776, - -0.007826592773199081, - -0.021108288317918777, - -0.03686896339058876, - -0.010581016540527344, - 0.015250099822878838, - -0.003644572338089347, - 0.011991818435490131, - 0.004182020667940378, - 0.0038393973372876644, - -0.012072435580193996, - 0.016002528369426727, - -0.010144339874386787, - -0.010070440359413624, - -0.033886123448610306, - 0.011911201290786266, - 0.014820140786468983, - 0.013053279370069504, - -0.0011840661754831672, - 0.008639483712613583, - 0.013563855551183224, - 0.002447070088237524, - 0.007833311334252357, - -0.018985366448760033, - -0.005958959925919771, - -0.00951283797621727, - -0.004051017574965954, - 0.004608620423823595, - 0.008296860381960869, - -0.00047698550042696297, - -0.02896847203373909, - -0.014013968408107758, - -0.0021682686638087034, - 0.007195091340690851, - -0.0004723668098449707, - 0.10743594914674759, - 0.013073433190584183, - 0.006788645870983601, - -0.015411334112286568, - -0.006966675631701946, - -0.005552514456212521, - 0.008740255609154701, - 0.0016635708743706346, - -0.013053279370069504, - -0.03047332726418972, - 0.015895038843154907, - -0.0066240523010492325, - 0.003799088764935732, - -0.011152055114507675, - -0.007692230865359306, - -0.001872672000899911, - -0.022935612127184868, - 0.018945058807730675, - -0.024104563519358635, - 0.026348410174250603, - 0.00827670656144619, - -0.010527271777391434, - -0.001971764024347067, - 0.046032458543777466, - -0.030070241540670395, - -0.004168584477156401, - 0.012583011761307716, - 0.012509113177657127, - 0.0034766197204589844, - -0.015814419835805893, - 0.0013914876617491245, - -0.002746025798842311, - -0.0736304372549057, - -0.021739790216088295, - 0.01394678745418787, - -0.00012145075743319467, - 0.0021229214034974575, - -0.03520287200808525, - 0.017211787402629852, - -0.00956658273935318, - 0.016298124566674232, - 0.024440469220280647, - -0.013093587942421436, - -0.025622855871915817, - -0.010325727984309196, - -0.013866170309484005, - -0.009082878939807415, - -0.02219662070274353, - -0.008753691799938679 - ], - "sparse": "SparseEmbedding(values=array([1.34063318, 1.89613669, 1.34063318, 1.81268104, 1.34063318,\n 1.34063318, 1.34063318, 1.81268104, 1.34063318, 1.34063318,\n 1.34063318, 1.34063318, 1.98764779, 1.34063318, 1.34063318,\n 1.34063318, 1.34063318, 1.34063318, 1.34063318, 1.89613669,\n 1.66602574, 1.34063318, 1.81268104, 1.66602574, 1.34063318,\n 1.34063318, 1.34063318, 1.34063318, 1.34063318, 1.34063318,\n 1.34063318, 1.34063318, 1.34063318, 1.34063318, 1.34063318,\n 1.66602574, 1.34063318, 1.34063318, 1.34063318, 1.34063318,\n 1.34063318, 1.34063318, 1.34063318, 1.34063318, 1.34063318,\n 1.34063318, 1.34063318, 1.34063318, 1.34063318, 1.66602574,\n 1.34063318, 1.34063318, 1.34063318, 1.34063318, 1.34063318,\n 1.34063318, 1.34063318, 1.34063318, 1.34063318, 1.66602574,\n 1.34063318, 1.34063318, 1.34063318, 1.34063318, 1.34063318,\n 1.34063318, 1.34063318, 1.34063318, 1.34063318, 1.34063318,\n 1.34063318, 1.34063318, 1.34063318, 1.34063318, 1.34063318]), indices=array([ 111478241, 164058840, 771161480, 47951928, 32750488,\n 1413554298, 993732989, 1162941628, 220308237, 1081081954,\n 1550900382, 1769347644, 1047604504, 1431506044, 358393217,\n 204345709, 408270109, 615529936, 1255579020, 1675878461,\n 2095749492, 1610378824, 1638510030, 1167338989, 185481368,\n 1185887606, 1810453357, 1381219851, 1466158544, 417052468,\n 1183771120, 648501015, 1570547443, 1778032728, 1271910523,\n 338063690, 2055058016, 1529164083, 252537680, 190331650,\n 19522071, 1971402191, 1171521091, 548955463, 1840981087,\n 906931389, 1013132602, 1320850453, 1393334896, 2124172637,\n 1420421541, 264741300, 1836140557, 708164930, 1976192589,\n 292707773, 834718839, 1793743868, 1505931685, 1109731834,\n 2039377815, 419117754, 674560496, 1707387297, 516830072,\n 56078255, 46957595, 1649969916, 1245450934, 899821500,\n 1079921207, 452963723, 1115756734, 1174634009, 685593942]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 10, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 92 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000011.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000011.json deleted file mode 100644 index efd951175fdc2be6aaa0f222b39d4dfe1bc72893..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000011.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000011", - "content": "1.4 Wissenschaftlicher und technischer Stand, an den angekn\u00fcpft wurde Die Nutzung von Augmented Reality (AR) f\u00fcr die Stadtplanung hat sich als vielversprechender Ansatz erwiesen, um B\u00fcrgerbeteiligung zu verbessern und Planungsprozesse interaktiver zu gestalten. Allerdings bestehen weiterhin technologische Herausforderungen, insbesondere bei der genauen Verankerung virtueller Inhalte im Au\u00dfenbereich, der effizienten Verarbeitung gro\u00dfer 3D-Datenmengen und der intuitiven Nutzung durch B\u00fcrger*innen. Bisherige AR-Anwendungen basieren h\u00e4ufig auf GPS-Tracking oder Markern, die jedoch in dichten st\u00e4dtischen Umgebungen ungenau oder fehleranf\u00e4llig sind. Das Projekt INSPIRER setzte daher auf ein Punktwolken-basiertes Matching-Verfahren, das eine pr\u00e4zisere Positionierung virtueller Inhalte erm\u00f6glicht. Dabei wurden moderne Algorithmen wie Fast Global Registration (FGR) f\u00fcr eine grobe Vorregistrierung und Generalized ICP (GICP) f\u00fcr eine exakte Feinanpassung der Punktwolken eingesetzt. Zus\u00e4tzlich wurde ein 3D-Stadtmodell-Server entwickelt, um Bestands- und Entwurfsdaten effizient f\u00fcr AR-Anwendungen bereitzustellen. Dabei wurden etablierte Formate wie 3D- Tiles genutzt, um eine optimierte Darstellung auf mobilen Endger\u00e4ten zu erm\u00f6glichen. Die Kombination aus pr\u00e4zisem AR-Tracking, effizienter 3D-Datenverarbeitung und interaktiver Visualisierung erweitert bestehende Stadtplanungstechnologien und zeigt das Potenzial immersiver L\u00f6sungen zur Verbesserung der B\u00fcrgerbeteiligung auf. Angabe bekannter Konstruktionen, Verfahren und Schutzrechte, die f\u00fcr die Durchf\u00fchrung des Vorhabens benutzt wurden \u2022 AR-Technologien: Unity Game Engine, MRTK SDK, XCode \u2022 Punktwolkenverarbeitung: Open3D Library, Fast Global Registration (FGR), Generalized ICP (GICP) \u2022 Hardware: Microsoft HoloLens 2, iPhone 12 Pro \u2022 3D-Datenverarbeitung: 3D-Tiles, MeshLab, Blender", - "embedding": { - "dense": [ - 0.011382261291146278, - 0.01661810278892517, - 0.0011323676444590092, - -0.009326758794486523, - 0.011388957500457764, - 0.012252669781446457, - -0.0383247435092926, - -0.008309051394462585, - 0.003722669091075659, - -0.04330615699291229, - 0.010612284764647484, - 0.005825039930641651, - -0.012038415297865868, - -0.003983791451901197, - -0.015694130212068558, - 0.0017809892306104302, - 0.040895797312259674, - 0.004670075140893459, - 0.0061865937896072865, - 0.010518549010157585, - -0.016993047669529915, - 0.0270228274166584, - 0.031602513045072556, - -0.009373627603054047, - -0.026152420789003372, - 0.019282890483736992, - 0.029245717450976372, - -0.02589799277484417, - 0.018787426874041557, - -0.013471241109073162, - 0.004258304834365845, - -0.0165109746158123, - -0.007210997398942709, - -0.005620828829705715, - -0.030691932886838913, - 0.011991547420620918, - 4.176808943157084e-05, - -0.0060761189088225365, - 0.012748133391141891, - 0.025308793410658836, - 0.02501419372856617, - -0.007826978340744972, - 0.006775793619453907, - -0.008945118635892868, - -0.004773854278028011, - 0.016296720132231712, - -0.023942921310663223, - 0.012185715138912201, - -0.012426751665771008, - 0.010377944447100163, - 0.019845308735966682, - 0.027933409437537193, - -0.024291085079312325, - -0.007478815503418446, - -0.012112065218389034, - -0.007425251882523298, - -0.028843989595770836, - 0.023983094841241837, - -0.0015458115376532078, - -0.018907945603132248, - -0.012520487420260906, - -0.0008678974700160325, - -0.017863456159830093, - 0.012661091983318329, - -0.02303234115242958, - 0.000827724754344672, - -0.03433425724506378, - -0.0015550177777186036, - 0.0015650609275326133, - -0.010337771847844124, - 0.05206380411982536, - 0.01780989207327366, - 0.036048293113708496, - -0.017314428463578224, - 0.02510792948305607, - 0.0011825835099443793, - 0.02611224725842476, - -0.016885919496417046, - 0.0004916969919577241, - 0.006447716616094112, - -0.017341209575533867, - -0.02224227786064148, - -0.004188002552837133, - 0.032057806849479675, - 0.00824879202991724, - 0.024076830595731735, - 0.0010369574883952737, - 0.014033659361302853, - 0.006631841417402029, - -0.012252669781446457, - -0.011824160814285278, - 0.03045089729130268, - 0.00035799722536467016, - 0.00952762272208929, - -0.0015809626784175634, - 0.018733862787485123, - 0.002211171668022871, - 0.018117882311344147, - -0.020099734887480736, - -0.018104491755366325, - -0.011589820496737957, - 0.0003981699119322002, - -0.022295841947197914, - -0.008563478477299213, - -0.030022388324141502, - -0.011328698135912418, - 0.007371688261628151, - 0.018666910007596016, - 0.02201463282108307, - -0.006079467013478279, - -0.02071571536362171, - 0.0165109746158123, - -0.006447716616094112, - 0.0024471862707287073, - 0.00254594418220222, - -0.03529840335249901, - 0.021974461153149605, - -0.005647610407322645, - 0.004623206797987223, - -0.011971460655331612, - 0.0376284196972847, - 0.0213718693703413, - 0.005071802064776421, - 0.011616602540016174, - 0.021211178973317146, - 0.012908823788166046, - -0.020863015204668045, - 0.007271256763488054, - -0.007813587784767151, - -0.02879042737185955, - -0.0004590566677507013, - -0.0027853064239025116, - 0.0004172101034782827, - 0.01747511886060238, - -0.0023735363502055407, - 0.0128485644236207, - -0.013477937318384647, - -0.01067923940718174, - -0.03650358319282532, - -0.043788231909275055, - -0.003856578143313527, - -1.9929419067921117e-05, - -0.017448337748646736, - -0.020729107782244682, - -0.01968461647629738, - 0.016685055568814278, - 0.004730334039777517, - 0.007646201644092798, - 0.03130791336297989, - -0.016122639179229736, - -0.00478724529966712, - -0.02546948380768299, - 0.0028288268949836493, - 0.003012951696291566, - -0.010331076569855213, - -0.013102991506457329, - -0.01024403516203165, - 0.013190032914280891, - -0.01905524544417858, - -0.008951813913881779, - 0.003823100822046399, - -0.007057002279907465, - 0.00600246898829937, - 0.00243546930141747, - 0.030584806576371193, - 0.010002999566495419, - -0.011000621132552624, - 0.006052684970200062, - -0.003017973154783249, - -0.0054902671836316586, - 0.0027986972127109766, - 0.023219814524054527, - -0.025844428688287735, - 0.01128852553665638, - 0.0038197531830519438, - -0.0038800120819360018, - 0.006283678114414215, - 0.008931728079915047, - -0.018573172390460968, - -0.012078587897121906, - 1.5064758372318465e-05, - -0.023942921310663223, - 0.014408604241907597, - 0.006842747796326876, - -0.008161751553416252, - -0.005416617263108492, - 0.023273376747965813, - 0.033611148595809937, - -0.01322351023554802, - -0.020970143377780914, - 0.01992565393447876, - 2.421869066893123e-05, - 0.012754828669130802, - -0.02435803972184658, - -0.6324787735939026, - -0.011964765377342701, - 0.023407286033034325, - -0.01869369111955166, - 0.00412439601495862, - 0.0316292978823185, - 0.01517188549041748, - 0.008268877863883972, - 0.003602151060476899, - 0.05608107149600983, - -0.006136378273367882, - -0.0025241838302463293, - -0.008650518953800201, - -0.014475558884441853, - -0.028602954000234604, - -0.0173947736620903, - 0.008603651076555252, - -0.01573430374264717, - 0.010813148692250252, - 0.036262545734643936, - -0.03722669184207916, - -0.004412300419062376, - 0.0035753692500293255, - -0.02879042737185955, - -0.00487093860283494, - 0.022938605397939682, - 0.001904855016618967, - -0.005098583642393351, - -0.007518988102674484, - 0.016417238861322403, - -0.015104930847883224, - 0.026929091662168503, - 0.0013206771109253168, - 0.027531681582331657, - 0.05147460475564003, - 0.01626993902027607, - -0.018519610166549683, - 0.029513534158468246, - 0.001904855016618967, - 0.012011634185910225, - 0.0018345527350902557, - -0.0060761189088225365, - 0.021653078496456146, - 0.0059890784323215485, - 0.007244474720209837, - 0.0083023551851511, - 0.028710080310702324, - -0.019523926079273224, - -0.006688752677291632, - -0.025871211662888527, - 0.004432386718690395, - -0.0007457055035047233, - 0.0030397335067391396, - 0.004854199942201376, - 0.0358608178794384, - 0.012051806785166264, - 0.0055137015879154205, - 0.003048102604225278, - -0.0027769370935857296, - -0.004047398455440998, - -0.031040096655488014, - -0.007706460542976856, - -0.01869369111955166, - -0.0358608178794384, - -0.025737302377820015, - 0.03998521715402603, - -0.007418556604534388, - 0.00039482221473008394, - -0.0038766644429415464, - -0.03312907740473747, - 0.019202545285224915, - 0.03417356684803963, - -0.009534318000078201, - -0.012460228987038136, - 0.0033778534270823, - 0.02865651808679104, - 0.02325998619198799, - -0.018211618065834045, - -0.005764780566096306, - 0.01151617057621479, - 0.012199106626212597, - -0.016564538702368736, - -0.006956570316106081, - 0.013618540950119495, - 0.008851381950080395, - -0.021961068734526634, - -0.03495023772120476, - -0.020287208259105682, - 0.009045550599694252, - 0.008583564311265945, - 0.005687783006578684, - 0.010652457363903522, - -0.03639645501971245, - -0.012065197341144085, - -0.007914019748568535, - 0.03607507422566414, - -0.008222009986639023, - 0.04081545025110245, - 0.0013851207913830876, - -0.04052085056900978, - -0.01323020551353693, - -0.00331926834769547, - 0.030477680265903473, - 0.01455590408295393, - 0.0187204722315073, - 0.015359357930719852, - -0.03045089729130268, - 0.00736499298363924, - 0.04531479254364967, - -0.03867290914058685, - -0.027612026780843735, - -0.02125135250389576, - 0.0013491327408701181, - -0.01434164959937334, - 0.016417238861322403, - -0.01432825904339552, - 0.008456351235508919, - -0.015372748486697674, - 0.009045550599694252, - -0.011087661609053612, - 0.026098856702446938, - -0.02559000253677368, - 0.03650358319282532, - -0.013993486762046814, - -0.006983352359384298, - -0.014060440473258495, - 0.002457229420542717, - -0.0034347649198025465, - -0.029245717450976372, - -0.010250731371343136, - 0.01134208869189024, - -0.017528682947158813, - 0.02003278024494648, - 0.0014353366568684578, - 0.03888716176152229, - 0.002032068558037281, - 0.019965825602412224, - -0.00869738683104515, - 0.009869090281426907, - -0.007706460542976856, - -0.034361038357019424, - -0.0012704612454399467, - 0.013036036863923073, - -0.021171007305383682, - -0.020300598815083504, - -0.032031022012233734, - -0.008362614549696445, - 0.0083023551851511, - 0.011650079861283302, - -0.003444808069616556, - -0.026420237496495247, - -0.02015329897403717, - -0.0012210822897031903, - 0.04935884103178978, - 0.0053530107252299786, - 0.004412300419062376, - -0.009808830916881561, - -0.024103613570332527, - -0.003111709374934435, - -0.03122757002711296, - 0.016631493344902992, - 0.009875785559415817, - -0.0325130969285965, - -0.03366471081972122, - 0.017689373344182968, - -0.023661714047193527, - 0.007057002279907465, - 0.041913505643606186, - -0.024987412616610527, - -0.028067318722605705, - 0.015091540291905403, - -0.0020220254082232714, - -0.014703203924000263, - 0.027612026780843735, - -0.020113125443458557, - 0.013966704718768597, - -0.03157573193311691, - -0.017997363582253456, - 0.0030112776439636946, - -0.015761084854602814, - -0.00016947853146120906, - 0.0056844353675842285, - -0.01538613997399807, - -0.006240157410502434, - -0.01628332957625389, - -0.0015884950989857316, - 0.004050746094435453, - 0.018988290801644325, - -0.0060660759918391705, - 0.018466046079993248, - 0.01957749016582966, - 0.045984335243701935, - -0.005038324743509293, - 0.02056841552257538, - 0.0010629023890942335, - 0.008663909509778023, - -0.02611224725842476, - -0.000239780725678429, - -0.01173042505979538, - 0.017970582470297813, - 0.029245717450976372, - 0.025616783648729324, - 0.028870772570371628, - 0.0026815268211066723, - 0.006404195912182331, - -0.02621937356889248, - 0.005483571905642748, - -0.010170385241508484, - 0.01234640646725893, - -0.002236279658973217, - 0.003407983109354973, - -0.005858517251908779, - -0.018238401040434837, - -0.0008373494492843747, - 0.02425091341137886, - 0.022215496748685837, - 0.004462515935301781, - 0.0023233203683048487, - -0.004254957195371389, - 0.01892133615911007, - 0.004931197501718998, - 0.002440490759909153, - 0.030825842171907425, - -0.004864242859184742, - -0.007117261178791523, - 0.0006009164499118924, - 0.01904185488820076, - 0.03982452303171158, - 0.017675982788205147, - -0.03176320716738701, - -0.016524365171790123, - 0.00886477343738079, - -0.008442959748208523, - 0.012272756546735764, - 0.010344467125833035, - 0.017354601994156837, - 0.021345088258385658, - -0.018733862787485123, - 0.026821965351700783, - 0.0058551691472530365, - 0.012466924265027046, - 0.00979544036090374, - 0.0034481557086110115, - 0.0012378209503367543, - 0.023742059245705605, - 0.006367370951920748, - 0.049760568886995316, - 0.017247473821043968, - -0.0019785049371421337, - 0.022871650755405426, - -0.02301895059645176, - -0.0019701356068253517, - -0.022858260199427605, - 0.0062200711108744144, - 0.004060789011418819, - -0.010525244288146496, - 0.03457529470324516, - -0.007057002279907465, - 0.02214854210615158, - 0.038458652794361115, - 0.00929997768253088, - 0.018318746238946915, - 0.01266778726130724, - -0.0030547981150448322, - -0.015520048327744007, - 0.006045989692211151, - -0.009447277523577213, - -0.03307551145553589, - -0.01372566819190979, - 0.005185624584555626, - 0.025844428688287735, - -0.03561978414654732, - 0.006273634731769562, - -0.0017257516738027334, - -0.0034648943692445755, - -0.014127395115792751, - 0.01693948358297348, - -0.003330985317006707, - 0.018854381516575813, - 0.02646041102707386, - -0.012379883788526058, - -0.03369149565696716, - -0.004546209238469601, - 0.02722369134426117, - -0.0023199727293103933, - -0.026513975113630295, - -0.029754571616649628, - 0.009333455003798008, - -0.004311868455260992, - -0.02766559086740017, - -0.02046128921210766, - -0.00957449059933424, - 0.0011005642591044307, - -0.006206680089235306, - 0.010371249169111252, - -0.003203771775588393, - 0.022001242265105247, - -0.004800636321306229, - -0.015801256522536278, - -0.018198227509856224, - -0.006805922836065292, - 0.013551587238907814, - -0.006692100316286087, - -0.025616783648729324, - 0.014421994797885418, - -0.03280769661068916, - -0.005172233562916517, - -0.02094336226582527, - 0.011154616251587868, - -0.02900467999279499, - 0.00644436851143837, - 0.006156464572995901, - 0.00890494603663683, - 0.012165629304945469, - 7.704996096435934e-05, - 0.01904185488820076, - -0.009273195639252663, - -0.004435734357684851, - 0.025389138609170914, - 0.023942921310663223, - -0.016417238861322403, - -0.02999560721218586, - 0.003538544289767742, - 0.009159373119473457, - 0.042877648025751114, - 0.003993834834545851, - -0.010123517364263535, - 0.006213375832885504, - -0.016336893662810326, - -0.010163689963519573, - -0.01195807009935379, - -0.04437743127346039, - 0.002299886429682374, - -0.00033540010917931795, - -0.003675800981000066, - 0.00760602904483676, - 0.026661274954676628, - -0.03331654891371727, - 0.006601711735129356, - 0.005232492461800575, - -0.003334333188831806, - -0.01517188549041748, - -0.0021910853683948517, - 0.013477937318384647, - 0.014087222516536713, - -0.004673422779887915, - 0.00736499298363924, - 0.02787984535098076, - 0.017461728304624557, - -0.01772954687476158, - 0.04480593651533127, - 0.008188532665371895, - -0.012741437181830406, - -0.018332136794924736, - 0.023608149960637093, - 0.008208619430661201, - -0.006136378273367882, - 0.01969800889492035, - -0.014877285808324814, - 0.010645762085914612, - 0.004161220975220203, - -0.0024722942616790533, - 0.018747255206108093, - 0.0061865937896072865, - 0.010250731371343136, - 0.022402968257665634, - -0.00035925261909142137, - -0.005791562609374523, - 0.013993486762046814, - -0.008014451712369919, - -0.00036950502544641495, - 0.012861955910921097, - -0.02455890364944935, - -0.024813329800963402, - -0.018024146556854248, - -0.012861955910921097, - -0.01858656294643879, - -0.024773158133029938, - -0.020193470641970634, - -0.00780689250677824, - 0.0019885480869561434, - -0.009862395003437996, - 0.0038900552317500114, - -0.03331654891371727, - -0.023072514683008194, - -0.019336454570293427, - -0.014274694956839085, - -0.009768658317625523, - -0.020072953775525093, - -0.029727788642048836, - -0.013524805195629597, - -0.00020410654542502016, - -0.018305355682969093, - 0.01411400455981493, - 0.006471150554716587, - -0.023393895477056503, - -0.01858656294643879, - -0.0014838787028566003, - 0.013544891029596329, - 0.002258039778098464, - 0.02854938991367817, - -0.012025024741888046, - -0.005426660645753145, - 0.022617222741246223, - 0.0013265355955809355, - -0.010096735320985317, - 0.002490706741809845, - -0.029701007530093193, - -0.009735180996358395, - -0.002852260833606124, - -0.01596194878220558, - -0.013765840791165829, - -0.017649201676249504, - 0.022188715636730194, - 0.0036992349196225405, - -0.012306233868002892, - 0.021398652344942093, - 0.020421115681529045, - 0.002206150209531188, - 0.016095856204628944, - -0.0019718094263225794, - 0.005804953631013632, - 0.016564538702368736, - -0.027103174477815628, - -0.0009917631978169084, - -0.011482693254947662, - -0.016765402629971504, - 0.0017491858452558517, - 0.027411164715886116, - 0.009674922563135624, - -0.019202545285224915, - 0.004516079556196928, - -0.005111974664032459, - 0.0036992349196225405, - -0.0028204575646668673, - -0.00674901157617569, - 0.019831916317343712, - -0.020876407623291016, - 0.027478119358420372, - 0.01217901986092329, - 0.0076395063661038876, - -0.0024204044602811337, - 0.03931567072868347, - -0.016792183741927147, - -0.027304036542773247, - -0.0316292978823185, - 0.04218132421374321, - 0.02091657929122448, - 0.012500401586294174, - 0.008771036751568317, - 0.008657214231789112, - 0.02745133638381958, - -0.026152420789003372, - -0.00138344697188586, - -0.01505136676132679, - 0.0027601984329521656, - -2.8403346732375212e-05, - 0.006293721031397581, - -0.004191350657492876, - -0.007552465423941612, - -0.001298916875384748, - 0.004690161440521479, - -0.01024403516203165, - -0.0030363856349140406, - -0.01000969484448433, - 0.003170294687151909, - 0.023112686350941658, - 0.00545009458437562, - -0.010110126808285713, - -0.02370188571512699, - -0.018894555047154427, - 0.018907945603132248, - -0.025496266782283783, - 0.022751132026314735, - -0.0139533132314682, - -0.0021994546987116337, - -0.018894555047154427, - -0.004050746094435453, - -0.0056241764687001705, - -0.030290206894278526, - 0.0004126069834455848, - -0.016323503106832504, - 0.02921893447637558, - 0.012219192460179329, - 0.023005560040473938, - 0.013558282516896725, - 0.03454851359128952, - -0.006558191496878862, - -0.021211178973317146, - -0.01045159436762333, - -0.021077269688248634, - -0.0015843104338273406, - -0.047778718173503876, - 0.018854381516575813, - 0.005691130645573139, - 0.022938605397939682, - 0.007304733619093895, - -0.006474498193711042, - -0.0023618193808943033, - 0.015252230688929558, - -0.03843187168240547, - 0.00014865986304357648, - -0.003176990197971463, - -0.03797658160328865, - -0.019644444808363914, - 0.01626993902027607, - 0.024197349324822426, - 0.0016872528940439224, - -0.030397333204746246, - 0.009099113754928112, - 0.025094538927078247, - -0.0021576080471277237, - 0.01835891790688038, - -0.00940040871500969, - 0.027143346145749092, - -0.012232583947479725, - 0.033262986689805984, - 0.004583034198731184, - 0.01584143005311489, - -0.017622418701648712, - 0.00041135158971883357, - -0.024076830595731735, - 0.008931728079915047, - 0.026165811344981194, - 0.01573430374264717, - 0.0054902671836316586, - 0.013350723311305046, - -0.0015089865773916245, - -0.017649201676249504, - 0.0191623717546463, - 0.02170664258301258, - -0.020327379927039146, - -0.0021458910778164864, - -0.024291085079312325, - 0.012855260632932186, - -0.012761523947119713, - -0.02190750651061535, - 0.008054624311625957, - 0.015145103447139263, - 0.001625320059247315, - 0.0003849882632493973, - 0.04502019286155701, - 0.006641884334385395, - -0.012413360178470612, - 0.01428808644413948, - 0.003752798540517688, - 0.03296838700771332, - 0.005456790328025818, - 0.014676421880722046, - 0.00023873457394074649, - -0.017582247033715248, - -0.008141664788126945, - -0.06454411894083023, - 0.011228266172111034, - -0.004984761122614145, - 0.013605150394141674, - -0.005647610407322645, - -0.0077667199075222015, - -0.02964744344353676, - 0.027853064239025116, - 0.00163871084805578, - -0.01880081743001938, - -0.026072073727846146, - 0.03473598510026932, - 0.02725047431886196, - 0.012982473708689213, - -0.0036557146813720465, - -0.02621937356889248, - -0.03200424090027809, - 0.0056509580463171005, - -0.00586521252989769, - 0.00021571895922534168, - -0.011194788850843906, - 0.008161751553416252, - -0.008416177704930305, - 0.020956752821803093, - -0.005081844981759787, - 0.006491236854344606, - 0.004054093733429909, - -0.02292521484196186, - 0.01256066095083952, - -0.002457229420542717, - -0.0008281432092189789, - 0.018680300563573837, - 0.00940040871500969, - 0.005935514811426401, - 0.001735794940032065, - 0.006625145673751831, - 0.014100614003837109, - 0.0005607437924481928, - 0.0061598122119903564, - -0.015667349100112915, - 0.014890676364302635, - 0.02588460221886635, - -0.013317245990037918, - 0.0029828220140188932, - -0.01750190183520317, - -0.018198227509856224, - 0.03773554414510727, - 0.012493706308305264, - 0.005178928840905428, - -0.007753328885883093, - -0.004147829953581095, - 0.0015558546874672174, - 0.018787426874041557, - -0.012902128510177135, - -0.010438203811645508, - -0.022001242265105247, - 0.007927410304546356, - -0.017863456159830093, - -0.009199545718729496, - 0.01968461647629738, - 0.016202984377741814, - -0.02545609325170517, - -0.0222556684166193, - 0.02292521484196186, - -0.01384618692100048, - 0.005771476309746504, - -0.0034950238186866045, - 0.00190150726120919, - -0.0023969702888280153, - 0.003776232711970806, - -0.04890355095267296, - 0.0001198903628392145, - 0.048555389046669006, - 0.002186063677072525, - -0.011502780020236969, - 0.009628054685890675, - -0.0020421117078512907, - -0.031174005940556526, - 0.026179201900959015, - -0.02190750651061535, - -0.029968826100230217, - -0.01605568453669548, - -0.008309051394462585, - -0.003347723977640271, - 0.00346154673025012, - 0.0018529652152210474, - 0.024518730118870735, - -0.003178664017468691, - 7.856689626350999e-05, - -0.0008453003247268498, - -0.013645322993397713, - -0.0016454063588753343, - 0.006179898511618376, - 0.00014740446931682527, - 0.0200461708009243, - -0.023514414206147194, - 0.02292521484196186, - -0.0001374659186694771, - 0.0001927033590618521, - 0.00239362264983356, - -0.033155858516693115, - -0.02458568476140499, - -0.0015307468129321933, - 0.00758594274520874, - -0.03395931422710419, - 0.0008578542619943619, - -0.005249231122434139, - -0.0027183520141988993, - -0.010552026331424713, - 0.01085332129150629, - 0.0029610618948936462, - 0.003175316145643592, - 0.023300159722566605, - 0.013323941268026829, - -0.013330637477338314, - 0.005178928840905428, - 0.0022078240290284157, - -0.008436264470219612, - 0.005319533403962851, - -0.008449655026197433, - -0.033825404942035675, - 0.024532120674848557, - -0.012928910553455353, - 0.03272734954953194, - 0.02359475940465927, - -0.04590399190783501, - -0.012259365059435368, - -0.00824879202991724, - -0.03955670818686485, - -0.004254957195371389, - -0.015868211165070534, - -0.003484980668872595, - 0.011308611370623112, - 0.008175142109394073, - 0.005332924425601959, - 0.02900467999279499, - 0.00024501155712641776, - 0.011549647897481918, - -0.011375566013157368, - -0.016966264694929123, - 0.0021241309586912394, - -0.02690231055021286, - 0.007338210940361023, - 0.012038415297865868, - -0.04692170023918152, - 0.0006795880035497248, - 0.011931288056075573, - -0.0005017401417717338, - 0.016644883900880814, - 0.018184836953878403, - -0.0022881694603711367, - 0.001540789962746203, - 0.0022731046192348003, - 0.012152237817645073, - -0.006290373392403126, - 0.0017374687595292926, - 0.04196706786751747, - -0.016002120450139046, - 0.007237779442220926, - 0.018332136794924736, - -0.003816405311226845, - -0.025616783648729324, - 0.017582247033715248, - 0.0033929182682186365, - -0.016644883900880814, - 0.009594577364623547, - 0.02844226360321045, - -0.017247473821043968, - -0.01438182219862938, - -0.011308611370623112, - 0.03312907740473747, - -0.0003950314421672374, - -0.012774914503097534, - 0.004646640736609697, - 0.011609907262027264, - 0.006782488897442818, - -0.008945118635892868, - 0.013980095274746418, - -0.02447855845093727, - 0.005714565049856901, - 0.005095236003398895, - -0.021653078496456146, - 0.023393895477056503, - -0.021612906828522682, - -0.0054132696241140366, - -0.0024773157201707363, - 0.00553378788754344, - 0.00736499298363924, - -0.012245974503457546, - -0.01505136676132679, - 0.019831916317343712, - -0.01195137482136488, - 0.020541634410619736, - 0.01106757577508688, - -0.002924236934632063, - -0.007231083698570728, - -0.02656753733754158, - -0.013913140632212162, - 0.0014679769519716501, - -0.013544891029596329, - 0.006320503074675798, - 0.012312929145991802, - -0.024612467736005783, - -0.016537755727767944, - 0.02145221456885338, - 0.004653336480259895, - 0.003980443812906742, - 0.014649639837443829, - 0.20236322283744812, - 0.00022074054868426174, - -0.008168446831405163, - 0.008001060225069523, - -0.023219814524054527, - -0.007940801791846752, - 0.025496266782283783, - 0.005319533403962851, - -0.005316185764968395, - 0.004877633880823851, - -0.011054184287786484, - 0.013819404877722263, - -0.005979035049676895, - -0.0016897637397050858, - 0.016189593821763992, - -0.011871029622852802, - -0.025389138609170914, - -0.008094796910881996, - -0.00717082479968667, - 0.03312907740473747, - 0.03663749247789383, - -0.0007477978360839188, - -0.019403409212827682, - -0.031388260424137115, - 0.01617620326578617, - -0.002117435447871685, - -0.007231083698570728, - -0.020273815840482712, - 0.018774036318063736, - 0.0039670527912676334, - -0.002371862530708313, - -0.0010034802835434675, - 0.0009181133355014026, - -0.00028748580371029675, - 0.006541452836245298, - -0.014515731483697891, - 0.016551148146390915, - 0.014006877318024635, - 0.03639645501971245, - 0.022081587463617325, - -0.010197167284786701, - -0.009614663198590279, - 2.3944072381709702e-05, - -0.026380065828561783, - 0.022885041311383247, - 0.017876846715807915, - -0.007927410304546356, - 0.013089600950479507, - 0.010304294526576996, - -0.028602954000234604, - -0.016792183741927147, - -0.01661810278892517, - 0.021974461153149605, - 0.02668805606663227, - -0.009674922563135624, - 0.004911111202090979, - 0.0035285011399537325, - 0.006595016457140446, - 0.0005741346394643188, - 0.018439263105392456, - -0.026969265192747116, - 0.004479254595935345, - 0.017100173979997635, - 0.025817647576332092, - -0.04491306468844414, - -0.00012543503544293344, - -0.0032991820480674505, - 0.015279012732207775, - -0.003618889721110463, - -0.0055304402485489845, - 0.005453442223370075, - -0.01106757577508688, - -0.025040974840521812, - 0.008603651076555252, - -0.011837552301585674, - -0.03695887327194214, - 0.019751571118831635, - 0.004522775299847126, - 0.024853503331542015, - 0.009212936274707317, - 0.0023283420596271753, - 0.008650518953800201, - 0.037574853748083115, - -0.023768840357661247, - -0.021331697702407837, - -0.037467725574970245, - 0.022978777065873146, - 0.004117700736969709, - 0.0027451335918158293, - -0.007257865741848946, - -0.020889798179268837, - -0.011864334344863892, - 0.005028281360864639, - -0.0226975679397583, - 0.017073392868041992, - 0.0055070058442652225, - 0.019122200086712837, - 0.0037795803509652615, - -0.01971139945089817, - 0.008804514072835445, - -0.0057279556058347225, - 0.04049406945705414, - 0.030263425782322884, - -0.01584143005311489, - -0.017689373344182968, - 0.021425433456897736, - 0.002711656503379345, - 0.021559342741966248, - 0.00908572319895029, - 0.005764780566096306, - -0.0006352306227199733, - -0.04196706786751747, - 0.011208180338144302, - -0.00046784442383795977, - 0.008717473596334457, - 0.04713595286011696, - 0.004633250180631876, - -0.003585412399843335, - 0.0023752101697027683, - -0.008222009986639023, - -0.01366540975868702, - 0.003386222757399082, - -0.01570752076804638, - 0.011897810734808445, - 0.01803753711283207, - -0.03229884058237076, - -0.018881162628531456, - -0.003364462638273835, - -0.011616602540016174, - -0.016899310052394867, - 0.010317685082554817, - -0.011991547420620918, - 0.026875527575612068, - -0.005694478750228882, - -0.0014930849429219961, - -0.013471241109073162, - 0.011047489009797573, - -0.03184355050325394, - -0.0016177876386791468, - 0.015252230688929558, - 0.019015071913599968, - 0.00035674183163791895, - 0.017234083265066147, - 0.006698795594274998, - -0.007833674550056458, - 0.013859577476978302, - -0.01261422410607338, - 0.017635809257626534, - -0.012413360178470612, - 0.0023919488303363323, - 0.0008804514072835445, - -0.013913140632212162, - -0.003598803421482444, - -0.024398213252425194, - 0.021853942424058914, - 0.00018286942213308066, - -0.008128274232149124, - -0.002440490759909153, - 0.003625584999099374, - 0.006769097875803709, - -0.03200424090027809, - -0.004988108761608601, - 0.012466924265027046, - -0.014636249281466007, - -0.029727788642048836, - 0.010317685082554817, - -0.17043931782245636, - 0.01604229398071766, - 0.014060440473258495, - -0.04290442913770676, - 0.003374505788087845, - -0.002971105044707656, - 0.018104491755366325, - -0.0024974020197987556, - -0.013344028033316135, - -0.0054300082847476006, - 0.011750510893762112, - -0.003349397797137499, - -0.01039803121238947, - -0.01244683749973774, - 0.010444899089634418, - 0.014314867556095123, - -0.016350284218788147, - 0.02954031713306904, - 0.030691932886838913, - 0.00820192415267229, - 0.023447459563612938, - -0.017662592232227325, - 0.013491327874362469, - 0.003123426577076316, - 0.007505597081035376, - 0.009875785559415817, - -0.013169946148991585, - 0.012922214344143867, - 0.0013859577011317015, - -0.028710080310702324, - 0.006936484016478062, - -0.024170568212866783, - 0.049626659601926804, - -0.02589799277484417, - -0.004023964051157236, - -0.020769279450178146, - -0.0056844353675842285, - 0.017448337748646736, - -0.0132904639467597, - 0.03698565438389778, - 0.03112044185400009, - 0.015573612414300442, - 0.011395652778446674, - 0.01478354912251234, - -0.03805692493915558, - 0.03165607899427414, - 0.015238840132951736, - -0.020528243854641914, - -0.01771615631878376, - -0.004358736798167229, - -0.0003602987853810191, - -0.01936323568224907, - -0.016805574297904968, - 0.007954192347824574, - 0.012306233868002892, - 0.03353080525994301, - 0.02766559086740017, - -0.004201393574476242, - -0.0003128029638901353, - -0.013980095274746418, - -0.0034230477176606655, - -0.0026430280413478613, - 0.022161932662129402, - -0.026714837178587914, - -0.01727425679564476, - -0.02246992290019989, - 0.007505597081035376, - 0.008429569192230701, - -0.007130652200430632, - 0.0007201791158877313, - -0.012025024741888046, - -0.0135114137083292, - 0.013832795433700085, - -0.005001499783247709, - -0.004131091292947531, - 0.01570752076804638, - -0.006243505515158176, - 0.01257405150681734, - 0.01112783420830965, - -0.009768658317625523, - -0.025750692933797836, - 0.03698565438389778, - -0.007626115344464779, - -0.02579086646437645, - -0.03331654891371727, - -0.02646041102707386, - -0.019229326397180557, - 0.024170568212866783, - -0.017327819019556046, - 0.005132060963660479, - 0.025282012298703194, - -0.03363792970776558, - -0.03374505788087845, - 0.010029780678451061, - 0.010933666490018368, - 0.005426660645753145, - 0.004241566173732281, - -0.007304733619093895, - -0.007358297239989042, - -0.04528801143169403, - 0.04143143072724342, - 0.0027853064239025116, - 0.011931288056075573, - 0.0012553965207189322, - 0.03187033161520958, - -0.000827724754344672, - 0.0007503086235374212, - 0.02146560698747635, - 0.031388260424137115, - 0.008764341473579407, - -0.016109248623251915, - -0.009855699725449085, - 0.001846269820816815, - -0.00030840907129459083, - -0.022777915000915527, - 0.013431068509817123, - 0.011937984265387058, - -0.01244683749973774, - -0.003853230271488428, - 0.007619420066475868, - 0.05415278300642967, - -0.0005490267649292946, - -0.034709203988313675, - 0.005527092143893242, - -0.011583125218749046, - -0.02478654868900776, - -0.07686374336481094, - -0.018640127032995224, - 0.023380504921078682, - 0.02079606242477894, - -0.009889177046716213, - 0.0325130969285965, - -0.0003734804631676525, - 0.0008678974700160325, - -0.008128274232149124, - 0.04017268866300583, - -0.033477239310741425, - -0.037494510412216187, - -0.004519427195191383, - -0.007947497069835663, - 0.010297599248588085, - -0.007518988102674484, - -0.00940040871500969, - -0.006146421190351248, - 0.0028338483534753323, - 0.02534896694123745, - 0.007244474720209837, - -0.011650079861283302, - 0.007599333301186562, - -0.015453093685209751, - -0.029379626736044884, - -0.005493615288287401, - -0.02600512094795704, - 0.019764961674809456, - 0.0182785727083683, - 0.002032068558037281, - 0.011054184287786484, - -0.009159373119473457, - 0.012681178748607635, - -0.037146344780921936, - -0.007237779442220926, - -0.017126956954598427, - -0.011583125218749046, - -0.008617041632533073, - -0.004894372541457415, - -0.01925610937178135, - 0.01794380135834217, - 0.008623736910521984, - -0.0016797204734757543, - -0.029808133840560913, - -0.00357202161103487, - -0.0012679505161941051, - -0.022336015477776527, - 0.010317685082554817, - -0.014154177159070969, - -0.007967582903802395, - -0.04215453937649727, - -0.02633989229798317, - -0.004998152144253254, - -0.0006779141258448362, - 0.009614663198590279, - 0.001744164153933525, - -0.013303855434060097, - -0.019082026556134224, - -0.0030849275644868612, - 0.0034146783873438835, - -0.006836052518337965, - -0.005269317422062159, - -0.014073831960558891, - 0.010384639725089073, - 0.004402257036417723, - 0.007083783857524395, - -0.020233644172549248, - -0.011040793731808662, - -0.004131091292947531, - 0.010438203811645508, - -0.023875968530774117, - 0.005188972223550081, - 0.0014889002777636051, - 0.00423487089574337, - -0.02138526178896427, - -0.001221919315867126, - -0.028951117768883705, - -0.014020267874002457, - 0.02943318895995617, - -0.009293281473219395, - -0.02391614019870758, - -0.02612563781440258, - 0.025951556861400604, - -0.009674922563135624, - 0.018626736477017403, - 0.009587881155312061, - -0.0036858441308140755, - -0.024599075317382812, - 0.014087222516536713, - -0.03532518446445465, - 0.0021961070597171783, - 0.009058941155672073, - 0.0169528741389513, - -0.02358136884868145, - -0.005068453960120678, - -0.018064318224787712, - 0.005081844981759787, - 0.0026246155612170696, - -0.006156464572995901, - 0.006862834095954895, - -0.01926949992775917, - 0.001603559823706746, - -0.06545469909906387, - 0.017662592232227325, - 0.025536438450217247, - 0.003772885072976351, - -0.020313989371061325, - 0.00012041344598401338, - 0.014073831960558891, - 0.009413800202310085, - 0.012714656069874763, - -0.023875968530774117, - -0.024759767577052116, - -0.010759584605693817, - -0.0016998068895190954, - 0.006437673233449459, - -0.019296281039714813, - -0.014542513526976109, - 0.006290373392403126, - 0.0161628108471632, - 0.0031267742160707712, - -0.010706021450459957, - 0.006019207648932934, - 0.011710338294506073, - -0.0028171096928417683, - 0.009688313119113445, - -0.020836234092712402, - -0.0055572218261659145, - -0.0209299698472023, - -0.016296720132231712, - 0.001633689273148775, - -0.006347284652292728, - -0.006133030168712139, - 0.006260243710130453, - -0.010866711847484112, - 0.012681178748607635, - -0.00824209675192833, - -0.013993486762046814, - 0.014087222516536713, - 0.05300116539001465, - 0.002592812292277813, - 0.06920415163040161, - -0.030156297609210014, - -0.051742423325777054, - 0.026487192139029503, - -0.010431507602334023, - 0.0032523139379918575, - -0.021171007305383682, - 0.024371430277824402, - -0.004023964051157236, - 0.013739059679210186, - -0.006474498193711042, - 0.014087222516536713, - 0.018064318224787712, - -0.015372748486697674, - -0.016229765489697456, - 0.002440490759909153, - -0.031816769391298294, - 0.001043652999214828, - 0.0007197606610134244, - -0.009761963039636612, - -0.014127395115792751, - 0.0533493310213089, - 0.017970582470297813, - 0.0005799931823275983, - -0.0030866016168147326, - 0.027304036542773247, - -0.003444808069616556, - -0.038030143827199936, - 0.011214875616133213, - 0.03511092811822891, - -0.0020555024966597557, - -0.022844867780804634, - -0.010083344765007496, - 0.02501419372856617, - 0.018010756000876427, - 0.0031853592954576015, - -0.013176641426980495, - 0.026406846940517426, - 0.002937627723440528, - 0.0024471862707287073, - 0.012025024741888046, - 0.01861334592103958, - 0.01805092766880989, - -0.017100173979997635, - -0.0003891729284077883, - 0.022644005715847015, - 0.003026342485100031, - -0.02047467976808548, - -0.0035285011399537325, - -0.011522865854203701, - 0.013792622834444046, - 0.002775263274088502, - 0.010331076569855213, - 0.007565856445580721, - 0.003963705152273178, - -0.02257705107331276, - 0.006089509930461645, - 0.007277952041476965, - 0.002053828677162528, - 0.022831477224826813, - 0.01880081743001938, - 0.015024585649371147, - 0.01023064460605383, - 0.009755267761647701, - -0.023648321628570557, - -0.03511092811822891, - 0.016752010211348534, - -0.02868329919874668, - -0.023179640993475914, - -0.008583564311265945, - 0.011308611370623112, - 0.0005712053971365094, - 0.013102991506457329, - -0.0029828220140188932, - -0.0008754298323765397, - -0.005342967342585325, - 0.038913942873477936, - 0.0004590566677507013, - -0.023005560040473938, - -0.03312907740473747, - 0.015479875728487968, - 0.02568373829126358, - 0.00672222999855876, - 0.0059221237897872925, - -0.004244914278388023, - 0.026513975113630295, - 0.004743725061416626, - 0.007318124640733004, - -0.027478119358420372, - 0.0005268480745144188, - -0.022938605397939682, - -0.005881951190531254, - -0.005071802064776421, - 0.003106687916442752, - -0.004251609556376934, - -0.03229884058237076, - -0.005995773710310459, - 0.01090688444674015, - 0.013082905672490597, - 0.0037159735802561045, - 0.10653796792030334, - 0.020005999132990837, - 0.006672014016658068, - -0.016805574297904968, - -0.011690252460539341, - 0.004385518375784159, - 0.006708838976919651, - -0.0010553699685260653, - -0.03709278255701065, - -0.05602750927209854, - 0.011944679543375969, - -0.013377505354583263, - 0.027478119358420372, - 0.005356358364224434, - -0.013417677953839302, - -0.008449655026197433, - -0.01681896485388279, - 0.027424555271863937, - -0.014060440473258495, - 0.025040974840521812, - 0.03200424090027809, - -0.008603651076555252, - 0.00022074054868426174, - 0.028308354318141937, - -0.019202545285224915, - -0.003187033347785473, - 0.022965386509895325, - 0.0010729455389082432, - 0.009487450122833252, - -0.020729107782244682, - 0.008771036751568317, - 0.005111974664032459, - -0.06202663108706474, - -0.029272498562932014, - 0.020996924489736557, - -0.021733423694968224, - -0.004191350657492876, - -0.02015329897403717, - 0.0173947736620903, - 0.0006553169805556536, - 0.008590259589254856, - 0.02070232480764389, - -0.0003565326042007655, - -0.023956313729286194, - -0.0016839051386341453, - -0.016189593821763992, - -0.01234640646725893, - -0.023849185556173325, - -0.007498901803046465 - ], - "sparse": "SparseEmbedding(values=array([1.05212031, 1.05212031, 1.05212031, 1.93597731, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.42348035, 1.86151049,\n 1.42348035, 1.05212031, 1.05212031, 1.05212031, 1.80593856,\n 1.80593856, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.61329132, 1.42348035,\n 1.61329132, 1.05212031, 1.05212031, 1.42348035, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.80593856, 1.05212031, 1.05212031,\n 1.42348035, 1.42348035, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.86151049, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.42348035,\n 1.05212031, 1.05212031, 1.72853526, 1.05212031, 1.42348035,\n 1.42348035, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.61329132,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.86151049,\n 1.42348035, 1.05212031, 1.05212031, 1.42348035, 1.05212031,\n 1.05212031, 1.05212031, 1.42348035, 1.61329132, 1.05212031,\n 1.05212031, 1.42348035, 1.42348035, 1.42348035, 1.42348035,\n 1.42348035, 1.05212031, 1.05212031, 1.42348035, 1.42348035,\n 1.42348035, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.42348035,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.42348035, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031, 1.05212031, 1.05212031,\n 1.05212031, 1.05212031, 1.05212031]), indices=array([1810453357, 516830072, 113787179, 164058840, 722623917,\n 1875908499, 651773314, 1488626057, 1162941628, 1109731834,\n 940461617, 1638510030, 1358867299, 1751750842, 1675878461,\n 2124172637, 1535770478, 1485265044, 717918380, 433708589,\n 1423591746, 738624403, 393171071, 1079921207, 46957595,\n 1174634009, 1982861065, 1617841679, 283239108, 1573069705,\n 1725241252, 932903491, 1012445868, 1255616507, 702141502,\n 221927294, 1793743868, 408270109, 308638477, 107790506,\n 252537680, 190331650, 1515684580, 331375433, 1234348238,\n 1987253734, 1803955614, 1320850453, 1621941132, 1808015244,\n 1147900472, 626604648, 31730435, 231065151, 1420421541,\n 583924216, 1783291875, 2103309648, 1095350901, 1466158544,\n 1033482951, 340622549, 991653233, 1304995642, 1082106827,\n 2096264884, 1278438172, 157963163, 641040124, 1413554298,\n 993732989, 2017215381, 1126216074, 509487748, 1047604504,\n 594994963, 1737558547, 1778032728, 1271910523, 1829846477,\n 1354271124, 1185887606, 476156908, 1448994436, 440637894,\n 154932874, 220308237, 1935863057, 1122754679, 1193012855,\n 2141928861, 1701595384, 1204211514, 1026658409, 1174684327,\n 1863669750, 659547876, 1025396610, 814294889, 580417171,\n 1171521091, 548955463, 448728680, 1325617505, 1043056305,\n 1824312681, 1274297921, 276517635, 1646401716, 1980353612,\n 1707387297, 1183671614, 911111262, 754164350, 1055453620,\n 1092544096, 193925971, 176244452, 445168225, 1577361146,\n 688180012, 419117754, 565838854, 16371181, 1843872330,\n 866872027, 1189585774, 420823076, 1325800022, 338063690,\n 562850081, 147731234, 189842624, 997700983, 839254378,\n 1245450934, 47951928, 32750488, 335129476, 1814813154,\n 1633188342, 1784532271, 856081220, 574130683, 750468199,\n 1276241225, 1651719083, 1027013124, 1096988414, 1090888193,\n 114473371, 1874710970, 19522071, 900174356, 103616747,\n 833760702, 202712292, 1201327608]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 11, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 216 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000012.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000012.json deleted file mode 100644 index 8a20f91acbef7af36e05384767b4e70cf471ee82..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000012.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000012", - "content": "Angaben der verwendeten Fachliteratur sowie der benutzten Informations- und Dokumentationsdienste Eine Auflistung der verwendeten Fachliteratur, Informations- und Datenquellen befindet sich in Anhang 1. 1.7_", - "embedding": { - "dense": [ - 0.006702776532620192, - 0.02081371285021305, - -0.014475109986960888, - -0.03606310486793518, - -0.004570223856717348, - 0.016771705821156502, - -0.01961948350071907, - 0.0008989528869278729, - 0.0005585647304542363, - -0.02619430609047413, - 0.02612868882715702, - 0.016010547056794167, - 0.013189016841351986, - 0.027847854420542717, - -0.014632591046392918, - 0.010419979691505432, - 0.029422663152217865, - 0.0002554961829446256, - 0.0055151088163256645, - -0.009186379611492157, - -0.00409121997654438, - 0.007729682605713606, - 0.0008448188891634345, - 0.002358931116759777, - -0.01889769546687603, - 0.007814984768629074, - 0.0158793143928051, - -0.04805789142847061, - -0.017808454111218452, - 0.004908151458948851, - 0.0002452435437589884, - -0.021850461140275, - -0.004104343242943287, - -0.0201706662774086, - -0.028005335479974747, - -0.016561729833483696, - -0.026876723393797874, - -0.004422585945576429, - 0.01501316949725151, - -0.011601085774600506, - 0.010695571079850197, - 0.005547917447984219, - -0.003999356180429459, - -0.004442270845174789, - 0.00012415966193657368, - 0.02301844395697117, - 0.026063071563839912, - 0.013608966022729874, - -0.011056464165449142, - 0.023241540417075157, - -0.002375335432589054, - 0.025433149188756943, - -0.000522065267432481, - -0.030761249363422394, - -0.02246726118028164, - -0.01007877103984356, - -0.028687752783298492, - 0.03073500283062458, - -0.002877305494621396, - -0.013989544473588467, - -0.04021009802818298, - -0.009986907243728638, - -0.031889863312244415, - -0.011889800429344177, - -0.019566988572478294, - -0.015288760885596275, - -0.01381894014775753, - -5.2442337619140744e-05, - 0.006732304114848375, - -0.0065190489403903484, - 0.027454152703285217, - 0.0074278442189097404, - 0.02015754207968712, - 0.007145691197365522, - 0.022532878443598747, - -0.0017388504929840565, - -0.0013730357168242335, - 0.0009694911423139274, - -0.004845815245062113, - -0.0032135925721377134, - 0.017362257465720177, - -0.024829473346471786, - -0.010105017572641373, - 0.029658883810043335, - 0.03139117360115051, - 0.014238889329135418, - 0.01472445484250784, - 0.039422694593667984, - -0.012139145284891129, - -0.010354362428188324, - -0.0029986968729645014, - 0.03257227689027786, - 0.004501326009631157, - -0.00030675946618430316, - -0.002417986514046788, - 0.006355006247758865, - 0.0047375475987792015, - 0.04359593614935875, - -0.0019209376769140363, - -0.04748046025633812, - -0.015433118678629398, - 0.003164379857480526, - -0.020131295546889305, - 0.008189001120626926, - -0.02667987160384655, - -0.005426526069641113, - 0.021259907633066177, - 0.015669340267777443, - -0.00681104464456439, - -0.023963328450918198, - -0.028372790664434433, - 0.04850408434867859, - -0.01763784885406494, - -0.02248038351535797, - 0.013477731496095657, - -0.01976384036242962, - 0.021955447271466255, - -0.027296671643853188, - -0.005016419570893049, - -0.01472445484250784, - -0.0023359651677310467, - 0.0025410184171050787, - 0.027742868289351463, - -0.005429806653410196, - 0.021338649094104767, - 0.031023716554045677, - 0.0038779645692557096, - 0.01440949272364378, - -0.02406831458210945, - -0.009370107203722, - -0.00972443912178278, - 0.01875333860516548, - 0.024199549108743668, - 0.011837306432425976, - -0.01770346611738205, - 0.020052555948495865, - -0.03202109411358833, - 0.0017798611661419272, - -0.009816302917897701, - -0.018084045499563217, - 0.025603752583265305, - 0.02660113200545311, - -0.028057828545570374, - -0.03551192209124565, - 0.0055315131321549416, - 0.014803195372223854, - 0.014737578108906746, - -0.0038517178036272526, - 0.009599766694009304, - -0.007736244238913059, - 0.002275269478559494, - -0.028713999316096306, - -0.008661444298923016, - -0.01690293848514557, - -0.018740214407444, - -0.010433102957904339, - -0.004511168692260981, - 0.008366167545318604, - 0.01302497461438179, - -0.00740815931931138, - 0.0010900624329224229, - 0.0016830760287120938, - 0.029238935559988022, - -0.0032972542103379965, - 0.028451530262827873, - 0.01825464889407158, - -0.0033284223172813654, - -0.03375338390469551, - -0.0007242476567625999, - -0.012335996143519878, - -0.005049228202551603, - 0.01167326420545578, - 0.0006364848813973367, - -0.004796602763235569, - -0.0017388504929840565, - 0.006286108400672674, - 0.0064370278269052505, - -0.009409477934241295, - -0.03217857703566551, - -0.022204792127013206, - -0.010885859839618206, - 0.006184402387589216, - -0.0014083049027249217, - 0.004734266549348831, - -0.039186473935842514, - 0.011299246922135353, - 0.011345178820192814, - 0.01342523843050003, - -0.004816287662833929, - -0.008031520992517471, - 0.006725742481648922, - 0.013845186680555344, - 0.0036220583133399487, - -0.024750731885433197, - -0.6442014575004578, - -0.036089349538087845, - -0.014291382394731045, - -0.014514480717480183, - -0.0008247236837632954, - 0.03813660144805908, - 0.019671976566314697, - 0.005679151508957148, - 0.0010941635118797421, - 0.03994762897491455, - -1.878799230325967e-05, - 0.00388124561868608, - 0.01580057293176651, - 0.002139114076271653, - -0.009055146016180515, - -0.013031535781919956, - -0.02468511462211609, - -0.008950158953666687, - 0.004881904926151037, - 0.006355006247758865, - 0.013569595292210579, - 0.020039431750774384, - -0.0023540097754448652, - -0.008917350322008133, - -0.0033021755516529083, - 0.012605025433003902, - 0.021771719679236412, - -0.01851711794734001, - 0.031259939074516296, - 0.01906830072402954, - -0.02850402519106865, - 0.003034786321222782, - 0.0052657644264400005, - 0.007250678259879351, - 0.02604994922876358, - 0.019002683460712433, - -0.020223159343004227, - 0.013346497900784016, - 0.0230315662920475, - 0.01111551932990551, - -0.019947567954659462, - -0.012106336653232574, - 0.007158814463764429, - 0.020275652408599854, - 0.005052508786320686, - 0.006571542471647263, - 0.033858370035886765, - -0.003238199045881629, - 0.00937666930258274, - -0.01581369712948799, - -0.007769052870571613, - -0.01397642120718956, - 0.003175862831994891, - -0.008615512400865555, - 0.014921305701136589, - 0.016168028116226196, - 0.009566958993673325, - -0.02889772690832615, - -0.009986907243728638, - 0.019186411052942276, - -3.0065913961152546e-05, - 0.01707354374229908, - -0.0028313735965639353, - -0.038005366921424866, - -0.01612865924835205, - 0.027270425111055374, - -0.01867459900677204, - -0.011574838310480118, - 0.031181197613477707, - -0.011364864185452461, - -0.002148956758901477, - 0.025118187069892883, - 0.006223772652447224, - -3.2295865821652114e-05, - 0.02144363522529602, - 0.0035695647820830345, - 0.009271682240068913, - 0.005032823886722326, - -0.024724485352635384, - 0.0022523035295307636, - -0.008589264936745167, - -0.011246753856539726, - 0.00019931163114961237, - 0.012014472857117653, - 0.0017667376669123769, - -0.016627347096800804, - -0.021981695666909218, - -0.02374023012816906, - -0.00035146105801686645, - 0.017611602321267128, - 0.026102442294359207, - 0.007749367505311966, - -0.011456727981567383, - 0.023228418081998825, - -0.012165391817688942, - 0.04089251533150673, - 0.01072181761264801, - -0.003357949899509549, - -0.013077467679977417, - -0.026469897478818893, - -0.008267741650342941, - 0.007473776116967201, - 0.01108271162956953, - -0.008799239993095398, - 0.018608981743454933, - 0.016102410852909088, - -0.01841212995350361, - 0.01112208142876625, - 0.036168090999126434, - -0.016378002241253853, - -0.004215892404317856, - -0.00391405401751399, - -0.01223100908100605, - 0.005485581234097481, - 0.0058792829513549805, - -0.025839975103735924, - 0.03293973207473755, - 0.018635228276252747, - 0.01763784885406494, - -0.001459978288039565, - 0.007769052870571613, - 0.006322198081761599, - 0.01619427464902401, - -0.024265166372060776, - 0.0032726479694247246, - 0.03112870454788208, - 0.01644361950457096, - -0.02270348183810711, - -0.0038254710379987955, - -0.021483005955815315, - -0.003996075130999088, - -0.006548576522618532, - 0.012742821127176285, - -0.0008948518079705536, - -0.008497401140630245, - 0.0017601760337129235, - 0.023700859397649765, - -0.019829457625746727, - 0.01754598505795002, - -0.012329434044659138, - -0.023569626733660698, - -0.008753308095037937, - 0.003576126415282488, - -0.036483053117990494, - -0.011929170228540897, - -0.029160194098949432, - 0.009068269282579422, - 0.011758565902709961, - 0.0053641898557543755, - 0.03795287385582924, - -0.01644361950457096, - -0.02834654413163662, - -0.01501316949725151, - 0.03186361491680145, - 0.030525028705596924, - -0.005193585529923439, - -0.0338321253657341, - -0.01715228334069252, - 0.005029542837291956, - -0.011168013326823711, - 0.012500038370490074, - 0.023687737062573433, - -0.036640532314777374, - -0.014133901335299015, - -0.009960660710930824, - -0.01880583167076111, - 0.02834654413163662, - 0.016154905781149864, - -0.022375397384166718, - -0.03771665319800377, - 0.02658800780773163, - 0.012795315124094486, - -0.018477747216820717, - 0.029343921691179276, - 0.006220491603016853, - 1.1950752195843961e-05, - -0.010787434875965118, - 0.009783494286239147, - 0.00877955462783575, - -0.019094547256827354, - 0.012900302186608315, - -0.014291382394731045, - 0.01937013864517212, - -0.007434405852109194, - 0.028766492381691933, - 0.016719210892915726, - 0.0024294694885611534, - 0.003592530731111765, - 0.009908166714012623, - -0.006968525238335133, - -0.008595827035605907, - 0.026259923353791237, - -0.012572216801345348, - 0.005941619165241718, - -0.020118171349167824, - 0.03637806326150894, - 0.0059120915830135345, - 0.007972465828061104, - 0.013595842756330967, - 0.004429147578775883, - 0.036876752972602844, - 0.009783494286239147, - 0.031181197613477707, - -0.022664111107587814, - 0.007755929138511419, - -0.02374023012816906, - 0.013530225493013859, - -0.0044783600606024265, - 0.020669354125857353, - 0.003838594537228346, - 0.01723102480173111, - -0.008116822689771652, - -0.021627362817525864, - -0.02325466461479664, - 0.025669369846582413, - 0.03217857703566551, - -0.004960644990205765, - 0.006843853276222944, - 0.008123384788632393, - 0.011555153876543045, - 0.005442929919809103, - 0.004694896284490824, - 0.034514542669057846, - 0.0067979213781654835, - 0.005728363990783691, - -0.0027411500923335552, - 0.020315023139119148, - 0.008215248584747314, - 0.005941619165241718, - 0.00448820274323225, - 0.004553820006549358, - -0.020183788612484932, - -0.0076903123408555984, - 0.02160111628472805, - -0.001419787877239287, - 0.03375338390469551, - 0.026955462992191315, - -0.036404311656951904, - 0.03679801523685455, - 0.014514480717480183, - -0.00698821060359478, - 0.015341254882514477, - 0.012762506492435932, - 0.017165407538414, - 0.016692964360117912, - -0.002614837372675538, - 0.007874039933085442, - 0.025538137182593346, - -0.01644361950457096, - 0.0048392536118626595, - -0.01421264186501503, - -0.0038681221194565296, - 0.0035170712508261204, - -0.006896346807479858, - 0.01127956248819828, - 0.002762475749477744, - 0.03270351141691208, - -0.0006779056275263429, - -0.005528232082724571, - 0.011489536613225937, - 0.015577475540339947, - -0.003080718219280243, - 0.006299232132732868, - -0.005925214849412441, - 0.0056594661436975, - -0.006207368336617947, - -0.01536750141531229, - -0.019632605835795403, - -0.00893703568726778, - 0.00782154593616724, - 0.010538090020418167, - 0.003582688281312585, - 0.007375350687652826, - -0.005396998021751642, - 0.015393747948110104, - -0.020787466317415237, - 0.01497379969805479, - -0.010820243507623672, - 0.034829504787921906, - 0.011030217632651329, - -0.019986938685178757, - -0.01730976440012455, - -0.012795315124094486, - 0.03317595645785332, - 0.029658883810043335, - -0.002127631101757288, - -0.005390436388552189, - 0.0341208390891552, - -0.02112867310643196, - 0.010951477102935314, - -0.0015649654669687152, - -0.003943581599742174, - 0.007145691197365522, - -0.008346482180058956, - 0.036955494433641434, - -0.021876707673072815, - 0.0222441628575325, - -0.029763871803879738, - 0.018136538565158844, - 0.016942309215664864, - -0.011594523675739765, - -0.03858279436826706, - -0.026653625071048737, - -0.00010908826516242698, - 0.048399098217487335, - -0.004206049721688032, - -0.009383231401443481, - 0.015341254882514477, - 0.03755917027592659, - -0.020511874929070473, - 0.021378017961978912, - 0.015236266888678074, - -0.006171278655529022, - 0.0019012525444850326, - 0.011089272797107697, - -0.005105002783238888, - -0.006715899799019098, - 0.009186379611492157, - 0.01913391798734665, - 0.004639121703803539, - 0.0117126340046525, - -0.03191610798239708, - -0.008320235647261143, - 0.011437042616307735, - 0.007795299403369427, - 0.024435769766569138, - 0.0005954742664471269, - 0.01842525415122509, - 0.0030889203771948814, - -0.03280850127339363, - -0.012683765962719917, - -0.027926595881581306, - -0.00877955462783575, - 0.0032726479694247246, - 0.009790056385099888, - -0.008431784808635712, - 0.02652239054441452, - 0.007421282585710287, - 0.015301884151995182, - -0.011607646942138672, - -0.00501970062032342, - -0.013326812535524368, - -0.006259861867874861, - -0.022427890449762344, - -0.011063026264309883, - 0.011364864185452461, - -0.005977708846330643, - 0.01825464889407158, - 0.013136523775756359, - -0.029763871803879738, - 0.028792738914489746, - 0.01572183333337307, - 0.00736222742125392, - -0.027270425111055374, - 0.0013082389486953616, - -0.0010113220196217299, - 0.009429163299500942, - 0.03724420815706253, - -0.02461949922144413, - 0.036089349538087845, - 0.00021694620954804122, - 0.0001512266753707081, - 0.04039382562041283, - 0.017139161005616188, - -0.012539409101009369, - -0.008392414078116417, - 0.012598464265465736, - -0.019973814487457275, - 0.011981664225459099, - -0.014081408269703388, - -0.008123384788632393, - 0.012677204795181751, - 0.012014472857117653, - -0.015131279826164246, - -0.01635175570845604, - 0.023923957720398903, - 0.0008620433509349823, - -0.012080089189112186, - 0.018044674769043922, - -0.01986882835626602, - 0.0005626657512038946, - 0.0024130651727318764, - -0.013031535781919956, - -0.02119429036974907, - -0.022742852568626404, - -0.015918683260679245, - 0.004639121703803539, - -0.013366183266043663, - -0.032362304627895355, - 0.009494779631495476, - -0.0244620181620121, - 0.007467214483767748, - -0.022021064534783363, - 0.00048310516285710037, - 0.020695602521300316, - -0.0011286124354228377, - -0.021929200738668442, - 0.007992150261998177, - 0.004507888108491898, - 0.011660140939056873, - 0.014343876391649246, - 0.009652260690927505, - -0.008431784808635712, - 0.02534128539264202, - -0.017926564440131187, - -0.017729712650179863, - -0.0019078142940998077, - -0.04078752547502518, - -0.012152268551290035, - 0.01667984202504158, - -0.04028883948922157, - -0.008563018403947353, - -0.008707376196980476, - 0.016561729833483696, - -0.008654882200062275, - -0.01187011506408453, - -0.006066291593015194, - -0.012742821127176285, - 0.01748036965727806, - 0.008038082160055637, - 8.75064215506427e-05, - 0.010544652119278908, - 0.01644361950457096, - -0.011568277142941952, - 0.0007746907067485154, - -0.009402915835380554, - -0.014698208309710026, - -0.0032923328690230846, - 0.022191669791936874, - 0.005190304480493069, - 0.0017798611661419272, - 0.010748064145445824, - 0.025630000978708267, - 0.014343876391649246, - -0.004747389815747738, - -0.029658883810043335, - -0.0075590782798826694, - -0.01032155379652977, - -0.010374047793447971, - 0.022532878443598747, - -0.005675870459526777, - -0.0024934459943324327, - 0.036561790853738785, - 0.003425207454711199, - 0.005980989430099726, - -0.031102458015084267, - 0.032598525285720825, - 0.02913394756615162, - -0.01944887824356556, - 0.03963266685605049, - 0.004757232498377562, - 0.01123363059014082, - -0.02897646650671959, - -0.0075918869115412235, - 0.011030217632651329, - 0.008385852910578251, - -0.012939671985805035, - -0.0074606528505682945, - -0.014160148799419403, - 0.02150925248861313, - -0.0089764054864645, - -0.0006049067014828324, - -0.008444908075034618, - -0.013582718558609486, - 0.012526284903287888, - -0.020538121461868286, - 0.006745427381247282, - 0.011574838310480118, - -0.011601085774600506, - -0.02254600077867508, - -0.012362242676317692, - 0.02104993350803852, - 0.019580112770199776, - 0.014081408269703388, - -0.006443589460104704, - -0.005396998021751642, - -0.001077759196050465, - 0.00893703568726778, - 0.0053674704395234585, - -0.023149676620960236, - -0.003487543435767293, - 0.003786100773140788, - 0.018438376486301422, - 0.011299246922135353, - 0.007060389034450054, - 0.0075918869115412235, - 0.016561729833483696, - 0.008864856325089931, - -0.018149662762880325, - 0.018490871414542198, - -0.02581372857093811, - 0.0013254634104669094, - -0.028556518256664276, - 0.0030036182142794132, - 0.012053842656314373, - 0.006204087287187576, - 0.018359636887907982, - 0.006223772652447224, - 0.033070966601371765, - 0.02152237668633461, - -0.015590598806738853, - -0.002673892769962549, - 0.005452772602438927, - -0.02254600077867508, - 0.01222444698214531, - 0.004002636764198542, - 0.006384534295648336, - 0.014488233253359795, - -0.03580063581466675, - 0.004452113527804613, - 0.018149662762880325, - -0.009619452059268951, - -0.0012926548952236772, - -0.00862207356840372, - 0.024737609550356865, - -0.01889769546687603, - 0.022270409390330315, - 0.0158793143928051, - 0.005334662273526192, - -0.03364839777350426, - 0.013740199618041515, - -0.016023671254515648, - -0.005570883397012949, - 0.026902969926595688, - 0.013267757371068, - -0.01993444375693798, - -0.0002302746579516679, - -0.0162730161100626, - 0.014540727250277996, - -0.001072837971150875, - 0.03598436340689659, - -0.032756004482507706, - -0.003243120154365897, - -0.02468511462211609, - -0.035065725445747375, - -0.019278274849057198, - -0.006243457552045584, - 0.01635175570845604, - 0.041732411831617355, - -0.014133901335299015, - 0.007283486891537905, - 0.03986888751387596, - -0.01385830994695425, - -0.0012967559741809964, - 0.0174541212618351, - -0.01961948350071907, - 0.036325570195913315, - -0.01698167994618416, - 0.023779600858688354, - 0.026797981932759285, - -0.02333340421319008, - -0.023307157680392265, - -0.03309721499681473, - -0.009114201180636883, - -0.00504266656935215, - 0.024580128490924835, - 0.017336010932922363, - 0.01262471079826355, - -0.013845186680555344, - 0.008398976176977158, - 0.030131326988339424, - 0.012454106472432613, - -0.0053510661236941814, - 0.02635178714990616, - 0.019580112770199776, - 0.006571542471647263, - -0.020774342119693756, - 0.0037303264252841473, - -0.019881950691342354, - 0.008471154607832432, - -0.0007968364516273141, - 0.0024704800453037024, - 0.002385177882388234, - 0.00048556580441072583, - 0.02708669751882553, - 0.015485611744225025, - -0.01612865924835205, - 0.02518380433320999, - 0.0026394438464194536, - -0.02994759939610958, - -0.006725742481648922, - -0.028792738914489746, - -0.01944887824356556, - -0.0040649729780852795, - -0.02850402519106865, - 0.027821607887744904, - 0.0056496234610676765, - -0.02477697841823101, - 0.0019291398348286748, - 0.0059120915830135345, - -0.014698208309710026, - 0.0020160824060440063, - 0.02628616988658905, - 0.01826777309179306, - 0.0065518575720489025, - -0.008845171891152859, - -0.014396369457244873, - -0.0019635886419564486, - 0.018149662762880325, - -0.009645698592066765, - 0.005547917447984219, - -0.00802495889365673, - -0.005728363990783691, - -0.02034126967191696, - -0.009606328792870045, - 0.003759854007512331, - -0.01263127289712429, - -0.016548607498407364, - -0.002203090814873576, - -0.03391086682677269, - 0.016863569617271423, - -0.022992197424173355, - 0.002787081990391016, - -0.03425207361578941, - -0.0025082097854465246, - 0.012749383226037025, - 0.02636491134762764, - 0.013845186680555344, - 0.007480337750166655, - -0.038005366921424866, - 0.0068176062777638435, - 0.013700829818844795, - -0.03771665319800377, - 0.016233645379543304, - 0.02089245244860649, - -0.022191669791936874, - -0.0026755330618470907, - -0.009711315855383873, - -0.0013205420691519976, - -0.030682509765028954, - 0.01266408059746027, - -0.011732319369912148, - -0.041653670370578766, - 0.002808407647535205, - -0.003252962836995721, - 0.012440983206033707, - -0.030603768303990364, - -0.01938326098024845, - 0.024199549108743668, - -0.004678491968661547, - 0.00048023441922850907, - 0.0019898354075849056, - -0.0009366826852783561, - 0.034750763326883316, - -0.00041851343121379614, - 0.006286108400672674, - 0.025118187069892883, - -0.03700798749923706, - 0.008464592508971691, - 0.0007164556300267577, - 0.004888466559350491, - -0.023162800818681717, - -0.03517071157693863, - -0.03892400488257408, - -0.0015255952021107078, - 0.00320703093893826, - -0.037217963486909866, - -0.006368129979819059, - -0.019357014447450638, - -0.019094547256827354, - -0.014750701375305653, - 0.019278274849057198, - 0.008241495117545128, - 0.0014033835614100099, - 0.0032103117555379868, - 0.007283486891537905, - 0.0057644532062113285, - 0.00968506932258606, - -0.015498735010623932, - 0.013136523775756359, - 0.005551198031753302, - -0.008523648604750633, - -0.01938326098024845, - 0.020524997264146805, - -0.014947552233934402, - 0.019960692152380943, - 0.01346460822969675, - -0.02374023012816906, - -0.024357030168175697, - 0.0008472795016132295, - -0.027060450986027718, - 0.02381897158920765, - 0.004678491968661547, - 0.01032811589539051, - -0.006673248950392008, - 0.027900347486138344, - 0.010990847833454609, - 0.02963263727724552, - -0.0018799270037561655, - 0.010013153776526451, - -0.025223175063729286, - -0.016640471294522285, - 0.003059392562136054, - 0.014619467779994011, - 0.01811029203236103, - -0.01151578314602375, - -0.02929142862558365, - -0.01540687121450901, - 0.01517065055668354, - -0.013595842756330967, - -0.00802495889365673, - 0.004137151874601841, - -0.0007209667819552124, - -0.02230978012084961, - -0.003315298818051815, - 0.025918714702129364, - -0.01536750141531229, - 0.012755944393575191, - 0.031233692541718483, - -0.0018897695699706674, - 0.008996090851724148, - -0.01433075312525034, - 0.026378033682703972, - -0.0013894399162381887, - 0.009947537444531918, - 0.016797952353954315, - 0.013103715144097805, - -0.001582189928740263, - 0.034829504787921906, - -0.01612865924835205, - -0.008326796814799309, - -0.016456743702292442, - 0.007729682605713606, - -0.006397657562047243, - -0.021154921501874924, - 0.00506563251838088, - -0.020787466317415237, - -0.010793996043503284, - 0.0038878072518855333, - 0.009448847733438015, - -0.023727107793092728, - -0.01028218399733305, - 0.021102426573634148, - -0.014986922964453697, - 0.010649639181792736, - -0.01858273521065712, - 0.005465895868837833, - -0.007598448544740677, - 0.01723102480173111, - -0.008759869262576103, - -0.0047408281825482845, - -0.03002633899450302, - 0.014868811704218388, - -0.004209330305457115, - -0.013530225493013859, - -0.0029839330818504095, - -0.005803823471069336, - 0.022847838699817657, - -0.007860916666686535, - -0.030603768303990364, - -0.02658800780773163, - -0.02968513034284115, - 0.012637834064662457, - -0.012126021087169647, - -0.02548564225435257, - 0.015511858277022839, - -0.011128643527626991, - -0.0052362363785505295, - -0.023412145674228668, - 0.00760501017794013, - 0.1759585440158844, - -0.013123399578034878, - -0.0001747052592691034, - 0.021942324936389923, - -0.02897646650671959, - 0.012795315124094486, - -0.00033485176390968263, - -0.006558419205248356, - 0.008871418423950672, - 0.01072181761264801, - -0.011266439221799374, - -0.01271001249551773, - -0.002401582198217511, - 0.00661419378593564, - 0.028294051066040993, - -0.006407500244677067, - -0.06267736107110977, - -0.021417388692498207, - -0.011568277142941952, - 0.041338708251714706, - 0.003582688281312585, - -0.006325478665530682, - 0.010708694346249104, - -0.019435755908489227, - 0.020118171349167824, - -0.0024655587039887905, - -0.008635196834802628, - 0.012388489209115505, - 0.03548567369580269, - -0.004409462213516235, - -0.010006592608988285, - 0.004481641110032797, - -0.0009399635018780828, - 0.00232284190133214, - -0.025630000978708267, - -0.006125346757471561, - 0.007598448544740677, - 0.005784138571470976, - 0.009835988283157349, - 0.004937679041177034, - 0.007126006297767162, - -0.029737623408436775, - -0.0029790117405354977, - -0.03803161159157753, - -0.017257271334528923, - 0.03994762897491455, - 0.0015346176223829389, - -0.00018208716937806457, - 0.002506569493561983, - 0.0010474113514646888, - -0.03787413239479065, - 0.013346497900784016, - 0.021469881758093834, - 0.03771665319800377, - -0.012440983206033707, - 0.008425222709774971, - 0.0031971882563084364, - 0.016246769577264786, - 0.001555943163111806, - 0.011010532267391682, - 0.005295292008668184, - 0.018372759222984314, - -0.008825486525893211, - 0.02619430609047413, - -0.0063057937659323215, - 0.004917994141578674, - -0.027979088947176933, - -0.015459365211427212, - 0.0006450971122831106, - -0.0248557198792696, - 0.007355665788054466, - -0.006292670499533415, - -0.002002958906814456, - 0.03763791173696518, - -0.012769068591296673, - -0.030944976955652237, - -0.0005942439311183989, - 0.011686387471854687, - -0.0018471184885129333, - 0.016535483300685883, - -0.015236266888678074, - -0.0020324864890426397, - -0.0128215616568923, - -0.00350394775159657, - -0.011555153876543045, - -0.030446287244558334, - -0.005082036834210157, - -0.010590584017336369, - 0.025275668129324913, - -0.01938326098024845, - -0.00937666930258274, - -0.0015994143905118108, - -0.0052329557947814465, - -0.01103677973151207, - 0.01644361950457096, - 0.027217932045459747, - -0.011968540959060192, - 0.0201706662774086, - -0.01496067550033331, - 0.015223143622279167, - -0.02343839220702648, - 0.09123387932777405, - 0.027611633762717247, - -0.007375350687652826, - -0.007834670133888721, - 0.005708679091185331, - -0.014291382394731045, - 0.018359636887907982, - -0.005141091998666525, - -0.008877980522811413, - 0.0015666058752685785, - -0.03674551844596863, - -0.0031348522752523422, - 0.00022473822173196822, - -0.016640471294522285, - 0.009468533098697662, - -0.025157557800412178, - -0.004891747143119574, - 0.011968540959060192, - -0.027191685512661934, - -0.01867459900677204, - -0.026246799156069756, - 0.014803195372223854, - 0.009940975345671177, - -0.001555943163111806, - -0.023713983595371246, - -0.03430456668138504, - 0.014304505661129951, - 0.007933095097541809, - -0.0017568952171131968, - 0.018399007618427277, - -0.016246769577264786, - -0.0024229076225310564, - 0.0023556503001600504, - 0.0017126037273555994, - 0.014199518598616123, - -0.026102442294359207, - -0.017126036807894707, - -0.0027657565660774708, - 0.007657503709197044, - 0.024238919839262962, - -0.01889769546687603, - 0.019015805795788765, - 0.010892421938478947, - 0.001195049611851573, - -0.013129961676895618, - 0.010669324547052383, - -0.023569626733660698, - -0.020065678283572197, - -0.02635178714990616, - 0.001187667716294527, - -0.006374691613018513, - -0.004140432458370924, - 0.0027395098004490137, - 0.03257227689027786, - -0.014908182434737682, - -0.0013476090971380472, - -0.03774289786815643, - 0.0026279608719050884, - 0.003353028791025281, - -0.0041929264552891254, - -0.016929185017943382, - 0.0022506630048155785, - -0.00760501017794013, - 0.008746745996177197, - 0.00126640812959522, - -0.1662997305393219, - 0.002531175734475255, - 0.014002667739987373, - -0.018950190395116806, - 0.009114201180636883, - -0.0032283563632518053, - 0.019803211092948914, - 0.038241587579250336, - 0.004294632468372583, - -0.006148312706500292, - 0.010190320201218128, - 0.0009186380193568766, - -0.0029527649749070406, - -0.03249353915452957, - -0.012460668571293354, - 0.0020226440392434597, - -0.020511874929070473, - 0.016548607498407364, - 0.03488199785351753, - 0.027112944051623344, - 0.006515767890959978, - -0.005685713142156601, - 0.010649639181792736, - -0.015393747948110104, - 0.009790056385099888, - 0.011253315024077892, - -0.03459328040480614, - 0.02358274906873703, - -0.02477697841823101, - 0.012992165982723236, - -0.019881950691342354, - 0.027769114822149277, - 0.019816333428025246, - -0.015761204063892365, - 0.017664097249507904, - -0.019435755908489227, - -0.016811074689030647, - 0.004678491968661547, - -0.025052569806575775, - 0.02358274906873703, - 0.009822865016758442, - 0.032441046088933945, - 0.01282812375575304, - 0.008307112380862236, - -0.01163389440625906, - 0.00908795464783907, - 0.04018384963274002, - -0.028241556137800217, - -0.020616861060261726, - -0.02097119390964508, - 0.014120778068900108, - -0.03784788399934769, - -0.01636487990617752, - -0.014448863454163074, - -0.015157527290284634, - 0.01691606268286705, - 0.01580057293176651, - 0.021784843876957893, - 0.008510524407029152, - -0.004094500560313463, - -0.00012200661149108782, - -0.00996722187846899, - 0.001357451663352549, - -0.0013664739672094584, - 0.017086666077375412, - -0.027191685512661934, - -0.037217963486909866, - 0.007290048524737358, - -0.009002652019262314, - 0.017257271334528923, - -0.016076164320111275, - -0.024409523233771324, - -0.003776258323341608, - 0.004845815245062113, - -0.005734925623983145, - -0.02049875073134899, - -0.009475095197558403, - -0.004947521723806858, - 0.007545955013483763, - -0.011758565902709961, - -0.004901589825749397, - 0.033779632300138474, - -0.008838609792292118, - -0.02215229906141758, - -0.009908166714012623, - -0.009232311509549618, - -0.029081454500555992, - 0.011791374534368515, - 0.02009192481637001, - -0.0027591949328780174, - 0.005088598467409611, - -0.0209580697119236, - -0.02367461286485195, - -0.01505253929644823, - 0.003943581599742174, - 0.026732366532087326, - -0.00933729950338602, - 0.0012688686838373542, - 0.006542014889419079, - 0.020026307553052902, - 0.010984285734593868, - -0.0029626074247062206, - -0.02708669751882553, - 0.014790072105824947, - 0.02065623179078102, - -0.020472504198551178, - -0.01658797822892666, - 0.005419963970780373, - 0.05028886720538139, - 0.008563018403947353, - -0.019107669591903687, - -0.007834670133888721, - 0.005164057947695255, - -0.0038779645692557096, - 0.004281509201973677, - 0.032441046088933945, - -0.01818903163075447, - -0.031889863312244415, - -0.010774311609566212, - 0.008700814098119736, - 0.05532825365662575, - 0.013169331476092339, - -0.020511874929070473, - -0.000193262574612163, - -0.015026292763650417, - -0.030052585527300835, - -0.0595802366733551, - 0.012578778900206089, - 0.03774289786815643, - 0.01801842823624611, - -0.0060072364285588264, - 0.02669299580156803, - 0.005324819590896368, - -0.0067979213781654835, - 0.006387814879417419, - 0.023149676620960236, - -0.022913455963134766, - -0.02532816119492054, - -0.01397642120718956, - -0.036246832460165024, - 0.03448829427361488, - -0.007119444664567709, - -0.02921268902719021, - -0.017913440242409706, - -0.020052555948495865, - 0.020236283540725708, - 0.02414705604314804, - 0.008563018403947353, - -0.016338633373379707, - -0.009566958993673325, - -0.020774342119693756, - -0.021141797304153442, - -0.02397645078599453, - 0.03144366666674614, - 0.015223143622279167, - -0.017349135130643845, - 0.007093197666108608, - -0.021496128290891647, - 0.009626014158129692, - -0.016797952353954315, - -0.006325478665530682, - -0.01167326420545578, - -0.013727076351642609, - -0.01397642120718956, - 0.015590598806738853, - -0.020183788612484932, - -0.002693577902391553, - 0.026955462992191315, - 0.007126006297767162, - -0.03811035305261612, - 0.011063026264309883, - -0.017440998926758766, - 0.0023868184071034193, - 0.018687721341848373, - -0.017112912610173225, - -0.019173286855220795, - -0.01417327206581831, - -0.020223159343004227, - -0.02048562653362751, - -0.0006574002909474075, - 0.024580128490924835, - 0.0007759210420772433, - -0.010846490040421486, - 0.0009842549916356802, - -0.015196897089481354, - 0.016574854031205177, - -0.024567004293203354, - -0.00937666930258274, - -0.03356965631246567, - 0.01946200244128704, - -0.007257240358740091, - 0.015997424721717834, - -0.0026164778973907232, - -0.01167982630431652, - -0.01611553505063057, - -0.00893703568726778, - -0.0011409155558794737, - -0.009147009812295437, - -0.017979057505726814, - -0.004235577303916216, - -0.021719226613640785, - -0.022926580160856247, - -0.027454152703285217, - 0.0011720836628228426, - 0.0014370123390108347, - -0.005492142867296934, - -0.008766431361436844, - -0.033543411642313004, - -0.005328100174665451, - -0.004412743262946606, - 0.017178529873490334, - 0.01581369712948799, - 0.01589243672788143, - -0.011771690100431442, - -0.011194259859621525, - -0.04383215680718422, - 0.010387171059846878, - 0.03301847353577614, - 0.025131311267614365, - -0.014081408269703388, - 0.006771674379706383, - 0.00881892442703247, - 0.02057749032974243, - -0.012926548719406128, - -0.010774311609566212, - 0.0050032963044941425, - -0.015866190195083618, - 0.001725727110169828, - -0.07532831281423569, - 0.008877980522811413, - -0.0009276603232137859, - -0.02080058865249157, - -0.006427185144275427, - 0.01986882835626602, - 0.020708724856376648, - -0.01746724545955658, - 0.016482990235090256, - 0.022887209430336952, - -0.0333334356546402, - 0.0032693669199943542, - 0.0071981847286224365, - -2.939949081337545e-05, - -0.010413417592644691, - -0.013077467679977417, - 0.024658868089318275, - 0.021154921501874924, - 0.0007833029376342893, - -0.0021948886569589376, - -0.024868842214345932, - 0.011647017672657967, - 0.00563650019466877, - 0.013031535781919956, - -0.03706048056483269, - 0.003979670815169811, - 0.012880616821348667, - -0.029501402750611305, - -0.019960692152380943, - 0.019278274849057198, - 0.028609011322259903, - 0.0017650972586125135, - -0.020183788612484932, - -0.004202768672257662, - -0.016496114432811737, - -0.01056433655321598, - 0.0009571879636496305, - 0.026548638939857483, - 0.011699510738253593, - 0.03803161159157753, - -0.004908151458948851, - -0.01043966505676508, - 0.026404280215501785, - -0.022913455963134766, - 0.014068285003304482, - -0.0037696966901421547, - 0.004901589825749397, - 0.018845202401280403, - 0.025551259517669678, - -0.02493445947766304, - 0.0398426428437233, - 0.01222444698214531, - -0.010374047793447971, - -0.01472445484250784, - 0.018202155828475952, - -0.02048562653362751, - 0.02532816119492054, - -0.002462277887389064, - 0.00913388654589653, - -0.02073497138917446, - 0.03614184260368347, - -0.012368804775178432, - -0.0007262981380335987, - -0.012749383226037025, - 0.01437012292444706, - -0.005374032072722912, - -0.014094531536102295, - -0.009947537444531918, - 0.0028855076525360346, - -0.03288723900914192, - -0.02716543711721897, - -0.01056433655321598, - 0.002588590607047081, - 0.03456703573465347, - 0.022349150851368904, - -0.0024393119383603334, - 0.01729664020240307, - 0.029737623408436775, - 0.013569595292210579, - 0.014685084111988544, - 0.03805785998702049, - 0.028215309605002403, - -0.009908166714012623, - 0.00015245699614752084, - 0.023451516404747963, - 0.0036122158635407686, - -0.022808469831943512, - 0.006355006247758865, - 0.013241510838270187, - -0.009002652019262314, - -0.028871480375528336, - 0.010839927941560745, - 0.016797952353954315, - -0.00013871844566892833, - -0.007716559339314699, - -0.018123416230082512, - 0.0022260567639023066, - 0.0010769390501081944, - 0.009678507223725319, - 0.026902969926595688, - 0.00028276824741624296, - 0.011056464165449142, - 0.01897643692791462, - -0.019265150651335716, - -0.038320329040288925, - 0.011410796083509922, - -0.030603768303990364, - -0.04202112555503845, - -0.022021064534783363, - 0.00760501017794013, - -0.025525012984871864, - 0.007552516646683216, - 0.027611633762717247, - 0.02127303183078766, - -0.024409523233771324, - -0.0019045333610847592, - -0.022427890449762344, - -0.010577460750937462, - -0.02461949922144413, - 0.02604994922876358, - 0.018359636887907982, - 0.03829408064484596, - 0.005157496314495802, - -0.003379275556653738, - 0.03535443916916847, - -0.026561761274933815, - 0.018595857545733452, - -0.014855688437819481, - 0.01007877103984356, - 0.004048568662256002, - -0.008635196834802628, - 0.010839927941560745, - -0.010406856425106525, - -0.008064329624176025, - -0.006968525238335133, - -0.0071981847286224365, - 0.024396400898694992, - 0.024895090609788895, - 0.009002652019262314, - 0.10341238975524902, - 0.010669324547052383, - -0.021220536902546883, - 0.019986938685178757, - -0.015275637619197369, - -0.0070800743997097015, - 0.002792003331705928, - -0.01691606268286705, - -0.04160117730498314, - -0.02461949922144413, - 0.021469881758093834, - -0.0010892421705648303, - 0.010964600369334221, - -0.02104993350803852, - -0.01162733230739832, - 0.007112882565706968, - -0.0017388504929840565, - -0.0019898354075849056, - -0.0005880923708900809, - 0.011528906412422657, - 0.0005126328323967755, - -0.00350394775159657, - 0.004419304896146059, - 0.01286749355494976, - -0.03293973207473755, - 0.010846490040421486, - 0.028162816539406776, - -0.02374023012816906, - -0.001852039829827845, - -0.017808454111218452, - 0.013412115164101124, - -0.00933729950338602, - -0.039343953132629395, - -0.030630014836788177, - 0.026246799156069756, - -0.023162800818681717, - -0.005577445030212402, - -0.011817621998488903, - 0.01302497461438179, - 0.00251969275996089, - -0.004402900580316782, - 0.013254634104669094, - -0.01286749355494976, - -0.017742836847901344, - -0.02279534563422203, - -0.009816302917897701, - -0.008477716706693172, - -0.00261975871399045, - -0.028162816539406776 - ], - "sparse": "SparseEmbedding(values=array([1.58916479, 1.9501385 , 1.84534731, 1.84534731, 1.58916479,\n 1.58916479, 1.84534731, 1.84534731, 1.58916479, 1.58916479,\n 1.58916479, 1.58916479, 1.58916479, 1.58916479, 1.58916479,\n 1.84534731, 1.58916479]), indices=array([ 844957600, 408270109, 1818780009, 706241563, 311286247,\n 1125623744, 647566671, 164058840, 1489983496, 1047604504,\n 402228202, 1373052463, 1439165134, 717918380, 381716141,\n 1810453357, 41015022]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 12, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 24 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000013.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000013.json deleted file mode 100644 index 349d8e408fb83877ff1a023dfdaf447d16504999..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000013.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000013", - "content": "Zusammenarbeit mit anderen Stellen Stadt Fellbach: Bereitstellung von Stadtplanungsdaten, Nutzung der AR-App zur B\u00fcrgerbeteiligung. Ver\u00f6ffentlichung und Open Access: Ergebnisse wurden auf Konferenzen pr\u00e4sentiert (z. B. SDSC, XRWeek, INTERGEO) und \u00f6ffentlich zug\u00e4nglich gemacht.", - "embedding": { - "dense": [ - 0.003465109970420599, - 0.022560078650712967, - 0.008083023130893707, - -0.022653911262750626, - -0.022479649633169174, - 0.026809362694621086, - -0.01743949018418789, - 0.01671563647687435, - 0.003625966142863035, - -0.03233209252357483, - 0.012519972398877144, - -0.0018263878300786018, - -0.006595103070139885, - -0.002784822601824999, - -0.03651435300707817, - -0.004886006470769644, - 0.032466135919094086, - -0.011373871937394142, - -0.015241122804582119, - 0.012808172963559628, - 0.00017677423602435738, - 0.019812118262052536, - 0.030723528936505318, - -0.004145397804677486, - -0.01576390489935875, - 0.016487758606672287, - 0.013458299450576305, - -0.025200800970196724, - -0.008920814841985703, - 0.001640397822484374, - 0.016407329589128494, - 0.0025602940004318953, - -0.0041018323972821236, - -0.012868493795394897, - -0.003319334238767624, - -0.015656666830182076, - -0.007741203531622887, - -0.0066319662146270275, - 0.015013243071734905, - 0.00768758449703455, - 0.0012240149080753326, - -0.0003640208742581308, - -0.0019386520143598318, - -0.014128534123301506, - 0.017292039468884468, - 0.0018062808085232973, - -0.01185644045472145, - 0.001616101828403771, - -0.006152748595923185, - 0.012922112829983234, - 0.013029349967837334, - 0.025468893349170685, - -0.019128479063510895, - -0.007607156410813332, - 0.0011737473541870713, - 0.010381925851106644, - -0.005294849164783955, - 0.028578780591487885, - -0.02927582338452339, - -0.02312307432293892, - -0.006628614850342274, - 0.010469055734574795, - -0.02057618647813797, - 0.014838982373476028, - -0.01654137670993805, - -0.023578833788633347, - -0.029919248074293137, - 0.0007598778465762734, - -0.005857845768332481, - 0.018565483391284943, - 0.04187622293829918, - 0.016099022701382637, - 0.023310741409659386, - -0.022184748202562332, - 0.03332403674721718, - -0.001672233920544386, - 0.011226420290768147, - 0.0027730935253202915, - -0.008847089484333992, - 0.010180855169892311, - -0.0011754229199141264, - -0.024517161771655083, - -0.029061349108815193, - 0.04209069907665253, - 0.014704935252666473, - 0.031929951161146164, - -0.001983892871066928, - 0.0282034482806921, - -0.02195686846971512, - -0.009088373742997646, - 0.008056213147938251, - 0.04040170833468437, - -0.006923517677932978, - 0.0032690665684640408, - -0.010026701726019382, - -0.008786768652498722, - -0.01190335676074028, - 0.02565656043589115, - 0.0074261934496462345, - -0.021876439452171326, - -0.001698205596767366, - 0.017895249649882317, - -0.01410172414034605, - -0.00011236892896704376, - -0.015053456649184227, - -0.0032120966352522373, - 0.0039208694361150265, - -0.00014368142001330853, - 0.02162175066769123, - -0.000821874535176903, - -0.03235889971256256, - 0.020294686779379845, - -0.003686287207528949, - 0.0016445867950096726, - -0.016863089054822922, - -0.037104155868291855, - 0.02847154252231121, - -0.017157992348074913, - -0.008069617673754692, - 0.00634711654856801, - 0.026822766289114952, - 0.01698373071849346, - 0.014570888131856918, - -0.0028133075684309006, - 0.006541484501212835, - 0.029356252402067184, - -0.0030814011115580797, - 0.010884600691497326, - 0.001542376121506095, - -0.014812172390520573, - -0.007935571484267712, - 0.0041856118477880955, - 0.015723690390586853, - -0.0029339496977627277, - -0.02130003832280636, - 0.008726447820663452, - -0.005251283757388592, - -0.0031216151546686888, - -0.027291931211948395, - -0.028283877298235893, - 0.003696340834721923, - 0.005445651710033417, - -0.01683628000319004, - -0.01756013184785843, - 0.015978379175066948, - 0.02353861927986145, - 0.008739852346479893, - 0.0008273201528936625, - 0.01111248042434454, - -0.010100427083671093, - 6.964150816202164e-05, - -0.026273174211382866, - 0.0023525215219706297, - -0.004182260483503342, - -0.015616453252732754, - -0.012077617458999157, - -0.005918166600167751, - 0.032251663506031036, - 0.00853878166526556, - -0.007593751884996891, - 0.0013362792087718844, - 0.013465002179145813, - 0.0202142596244812, - -0.0009642992517910898, - 0.0020073510240763426, - 0.010851089842617512, - -0.0008880601380951703, - -0.001223177183419466, - 0.011983784846961498, - -0.009410086087882519, - -0.022064104676246643, - 0.014704935252666473, - -0.019195502623915672, - 0.014182152226567268, - 0.00213134428486228, - 0.0014049781020730734, - -0.01369958370923996, - -0.004436949267983437, - -0.025817416608333588, - -0.014678126201033592, - -0.015160694718360901, - 0.004503972828388214, - 0.022037295624613762, - 0.03278784826397896, - -0.019972974434494972, - 0.010522674769163132, - 0.017104372382164, - 0.026460841298103333, - -0.004627966322004795, - 0.008793470449745655, - 0.029409870505332947, - -0.0057137454859912395, - 0.014061510562896729, - -0.0159381665289402, - -0.633129894733429, - -0.015026647597551346, - 0.011628560721874237, - -0.022211557254195213, - -0.004483866039663553, - 0.021675368770956993, - -0.003098157001659274, - -0.016554780304431915, - -0.003739906009286642, - 0.017573537304997444, - 0.001142749097198248, - 0.01435641385614872, - -0.016259878873825073, - -0.014275985769927502, - -0.01268082857131958, - 0.0027312038000673056, - 0.002102859318256378, - -0.01911507546901703, - 0.009745202958583832, - 0.024718232452869415, - -0.022291984409093857, - 0.024155234917998314, - 0.0008181044249795377, - -0.019208908081054688, - -0.022841576486825943, - 0.02239922247827053, - 0.015334955416619778, - -0.013994487002491951, - -0.003434949554502964, - 0.009095076471567154, - -0.024651208892464638, - 0.023860331624746323, - -0.01280147023499012, - 0.017707584425807, - 0.05335063114762306, - 0.021903248503804207, - -0.020562781020998955, - 0.024155234917998314, - 0.025884440168738365, - 0.01962445303797722, - -0.016608400270342827, - 0.006910113152116537, - 0.006363872438669205, - 0.015348359942436218, - 0.005955029744654894, - -0.0039376248605549335, - 0.028927301988005638, - -0.009946273639798164, - -0.016863089054822922, - -0.021125776693224907, - -0.0016135885380208492, - 0.0015800767578184605, - -0.003686287207528949, - -0.007647370453923941, - 0.025348251685500145, - 0.013290741480886936, - 0.014128534123301506, - -0.003272417699918151, - -0.020080212503671646, - 0.014651316218078136, - -0.0004829874087590724, - 0.009497216902673244, - -0.035039834678173065, - -0.01911507546901703, - -0.03753310814499855, - 0.033029135316610336, - 0.003910815808922052, - -0.02676914818584919, - 0.012211664579808712, - -0.017359061166644096, - -0.008344413712620735, - 0.020241068676114082, - -0.005402086302638054, - 0.007352467626333237, - 0.01396767795085907, - 0.02093811146914959, - 0.018203556537628174, - 0.015241122804582119, - -0.02329733595252037, - 0.011997189372777939, - 0.01093151792883873, - -0.00482903653755784, - 0.00920901633799076, - -3.173139339196496e-05, - 0.021259823814034462, - -0.009463705122470856, - -0.03680925443768501, - -0.027801308780908585, - 0.02341797761619091, - -0.0005726311937905848, - 0.023873737081885338, - -0.0014167072949931026, - -0.013451597653329372, - -0.013780011795461178, - 0.00035543349804356694, - 0.04166175052523613, - 0.006869899109005928, - 0.018578888848423958, - -0.0037466082721948624, - -0.043860115110874176, - -0.014584292657673359, - -0.0021899896673858166, - 0.03857867419719696, - 0.0041856118477880955, - 0.01218485552817583, - 0.014302794821560383, - -0.03206399828195572, - 0.0038605481386184692, - 0.033029135316610336, - -0.0028702772688120604, - -0.0094368951395154, - -0.005707043223083019, - -0.014168747700750828, - -0.0015934815164655447, - 0.006306902505457401, - -0.024892492219805717, - -0.00487595284357667, - -0.01591135561466217, - 0.021782606840133667, - -0.0010154045885428786, - 0.014785363338887691, - -0.02443673461675644, - 0.02186303585767746, - -0.0032120966352522373, - -0.012137939222157001, - 0.01671563647687435, - -0.001908491482026875, - -0.015160694718360901, - -0.03077714703977108, - -0.0013697908725589514, - -0.008277390152215958, - -0.005398735404014587, - 0.030106913298368454, - -0.003357872599735856, - 0.035817306488752365, - -0.00011802402877947316, - 0.014557483606040478, - -0.020978325977921486, - -0.00892751757055521, - -0.026259770616889, - -0.023887142539024353, - 0.008176855742931366, - 0.005495919380337, - -0.0462997704744339, - -0.01627328246831894, - -0.01475855428725481, - 0.004034808836877346, - 0.010830982588231564, - -0.0042962003499269485, - 0.017023945227265358, - -0.035334739834070206, - -0.022050701081752777, - 0.0032305282074958086, - 0.017332252115011215, - 0.020871087908744812, - -0.000553780875634402, - 0.006112534552812576, - -0.014597698114812374, - -0.011749203316867352, - -0.0338602252304554, - 0.02467801794409752, - 0.005137343890964985, - -0.033538512885570526, - -0.030321389436721802, - 0.010536079294979572, - -0.0016588292783126235, - 0.02662169747054577, - 0.015830928459763527, - 0.015469001606106758, - -0.0102143669500947, - 0.01827058009803295, - -0.0013840333558619022, - -0.017694178968667984, - 0.020951516926288605, - -0.011641965247690678, - -0.005304902791976929, - -0.03640711307525635, - -0.0007301362347789109, - -0.0025401869788765907, - -0.013096373528242111, - 0.012861791998147964, - 0.02009361796081066, - -0.004624614957720041, - -0.0006073996191844344, - 0.0016085617244243622, - 0.0033511703368276358, - -0.013793417252600193, - 0.00930284895002842, - -0.026313388720154762, - -0.008237176574766636, - -0.011280039325356483, - 0.04233198240399361, - -0.006092427764087915, - 0.007104481104761362, - -0.004192314110696316, - 0.006809577811509371, - -0.01359234657138586, - 0.0033779796212911606, - 0.017519917339086533, - 0.026970218867063522, - 0.015187503769993782, - 0.02261369675397873, - 0.034289173781871796, - 0.004849143326282501, - 0.014718339778482914, - -0.02587103471159935, - -0.008223772048950195, - -0.02674233913421631, - 0.03621944785118103, - -0.006611858960241079, - 0.012955624610185623, - -0.020897898823022842, - -0.028498351573944092, - 0.0024949463550001383, - 0.01734565757215023, - 0.015750499442219734, - -0.003135019913315773, - 0.00488265510648489, - -0.015093671157956123, - 0.011507919058203697, - 0.006755959242582321, - -0.0018850333290174603, - 0.035307928919792175, - -0.004708394408226013, - -0.0034148425329476595, - -0.010006594471633434, - 0.018136532977223396, - 0.05128630995750427, - 0.028820063918828964, - 0.005170855671167374, - -0.002598832594230771, - 0.012700935825705528, - -0.013552132993936539, - 0.0023944112472236156, - 0.019611049443483353, - -0.004862548317760229, - 0.010777363553643227, - -0.025669964030385017, - 0.005201016087085009, - 0.008230473846197128, - 0.00897443387657404, - 0.02003999799489975, - 0.010951624251902103, - 0.01317680161446333, - 0.006259986199438572, - -0.013619155623018742, - 0.026340197771787643, - 0.041742175817489624, - -0.0030294579919427633, - 0.010737149976193905, - -0.024664612486958504, - 0.016527971252799034, - -0.0031886384822428226, - -0.013149992562830448, - 0.016501162201166153, - -0.017278634011745453, - 0.006001946050673723, - -0.00936316978186369, - 0.018136532977223396, - 0.022117724642157555, - 0.02054937556385994, - 0.027211502194404602, - 0.0227611493319273, - -0.0024966218043118715, - -0.028069403022527695, - 0.009865845553576946, - -0.012426139786839485, - -0.03554921597242355, - -0.013719690963625908, - -0.014651316218078136, - 0.014383222907781601, - -0.026058699935674667, - -0.005904762074351311, - 0.004232528153806925, - -0.003202043240889907, - -0.006142694968730211, - 0.012707637622952461, - -0.007459705229848623, - 0.033002324402332306, - 0.01314328983426094, - -0.005603156518191099, - -0.026005081832408905, - -0.0161526408046484, - 0.032171234488487244, - 0.010757256299257278, - -0.009148694574832916, - -0.01218485552817583, - 0.008344413712620735, - -0.029436679556965828, - -0.016916707158088684, - -0.004708394408226013, - -0.0002706070081330836, - -0.0008964380249381065, - -0.00975190568715334, - 0.005965082906186581, - 0.008424841798841953, - 0.012419437058269978, - -0.0003171044809278101, - -0.004232528153806925, - 0.0021631803829222918, - -0.026581482961773872, - -0.004108534660190344, - 0.011273336596786976, - -0.021165991201996803, - 0.04192984104156494, - -0.015616453252732754, - -0.0012994162971153855, - -0.022332198917865753, - -0.00342154479585588, - -0.022359007969498634, - -0.005961732007563114, - 0.015482407063245773, - -0.008270688354969025, - 0.015133884735405445, - -0.005613210145384073, - -0.007835036143660545, - -0.005402086302638054, - -0.01230549719184637, - 0.03565645217895508, - -0.01875314861536026, - -0.020361710339784622, - -0.03281465917825699, - -0.008646019734442234, - 0.013679477386176586, - 0.060964491218328476, - 0.014517270028591156, - -0.0038270363584160805, - -0.01731884852051735, - 0.010408734902739525, - -0.011608453467488289, - -0.02188984490931034, - -0.02694340981543064, - -0.007111183367669582, - 0.005653424188494682, - 0.01274114940315485, - -0.012104427441954613, - 0.012761256657540798, - -0.011507919058203697, - 0.0025736987590789795, - 0.003508675377815962, - -0.003508675377815962, - -0.019812118262052536, - -0.006457705050706863, - 0.015241122804582119, - 0.0035723475739359856, - -0.02239922247827053, - 0.033029135316610336, - 0.027586834505200386, - 0.033216800540685654, - -0.0076607754454016685, - 0.034021079540252686, - 0.009403383359313011, - -0.008290795609354973, - -0.009906059131026268, - 0.013183504343032837, - 0.02613912895321846, - 0.012104427441954613, - 0.021192800253629684, - -0.038954004645347595, - 0.02410161681473255, - 0.0018230365822091699, - -0.028283877298235893, - 0.02368607185781002, - 0.019477002322673798, - 0.03412831947207451, - -0.004152100067585707, - -0.002566996496170759, - -0.02130003832280636, - 0.02694340981543064, - -0.011641965247690678, - -0.008277390152215958, - 0.024597590789198875, - -0.006544835399836302, - -0.021139182150363922, - -0.0023759796749800444, - -0.01138057466596365, - 0.010462353937327862, - -0.00930284895002842, - -0.003914166707545519, - -0.012982433661818504, - 0.015080266632139683, - -0.023096265271306038, - 0.0034818658605217934, - -0.03721139580011368, - -0.019208908081054688, - 0.003629317507147789, - -0.0132371224462986, - -0.009537430480122566, - -0.022720934823155403, - 0.003662829054519534, - -0.024838874116539955, - -0.023082861676812172, - -0.010388627648353577, - 0.02072363719344139, - 0.0282034482806921, - -0.022653911262750626, - -0.0373186320066452, - 0.011233123019337654, - 0.010938219726085663, - -0.010288093239068985, - 0.024745041504502296, - 0.004902762360870838, - -0.01717139594256878, - 0.012325604446232319, - -0.014463650994002819, - -0.02210431918501854, - 0.005365223623812199, - -0.026031890884041786, - -0.03292189538478851, - 0.005147397518157959, - -0.020120427012443542, - -0.015026647597551346, - -0.014436841942369938, - 0.006370574701577425, - 0.0065682935528457165, - -0.005572996102273464, - 0.026058699935674667, - -0.0015029999194666743, - -0.029195396229624748, - 0.012794768437743187, - 0.006350467912852764, - 0.016621803864836693, - 0.00488265510648489, - -0.0016169396694749594, - 0.007003945764154196, - -0.0008499405812472105, - -0.02715788409113884, - 0.010040106251835823, - 0.028042592108249664, - 0.019007837399840355, - -0.009014648385345936, - 0.028846872970461845, - -0.0027395817451179028, - -0.0015180801274254918, - 0.016729041934013367, - -0.010147343389689922, - 0.02533484809100628, - -0.0006685584667138755, - 0.01632690243422985, - 0.02640722133219242, - -0.0012399329571053386, - 0.039945948868989944, - 0.0400799959897995, - -0.0299728661775589, - -0.0069972435012459755, - -0.012332306243479252, - 0.03927571699023247, - 0.01579071395099163, - 0.013170098885893822, - 0.015026647597551346, - 0.022868385538458824, - 0.004678233526647091, - -0.035817306488752365, - 0.004916166886687279, - -0.01845824532210827, - 0.004376628436148167, - -0.008310901932418346, - -1.047240675688954e-05, - -0.03512026369571686, - 0.009296146221458912, - -0.016621803864836693, - 0.016581591218709946, - -0.015107075683772564, - -0.008733149617910385, - 0.0024597588926553726, - -0.007674179971218109, - 0.01794886775314808, - 0.006457705050706863, - -0.012640614062547684, - -0.022600293159484863, - -0.006822982802987099, - -0.012406032532453537, - -0.013337657786905766, - 0.04321669042110443, - -0.016621803864836693, - -0.010656721889972687, - -0.015924761071801186, - 0.005123939365148544, - -0.0030344848055392504, - -0.020026594400405884, - -0.00449391920119524, - -0.008304200135171413, - 0.04010680690407753, - 0.025790605694055557, - 0.02390054613351822, - 0.025616345927119255, - 0.032519757747650146, - -0.017399275675415993, - -0.012861791998147964, - -0.0035287823993712664, - -0.008284092880785465, - -3.0422343115787953e-05, - -0.013873845338821411, - 0.014289390295743942, - -0.003135019913315773, - 0.03005329519510269, - 0.022305389866232872, - -0.0025468894746154547, - -0.010924815200269222, - 0.027828117832541466, - -0.01836441271007061, - -0.017117777839303017, - 0.0053685749880969524, - -0.013860439881682396, - -0.018163342028856277, - 0.004343116655945778, - 0.015442192554473877, - 0.016608400270342827, - -0.029624344781041145, - 0.011206313036382198, - 0.01369958370923996, - 0.010073618032038212, - 0.0031534512527287006, - -0.006454354152083397, - -0.0036661801859736443, - -0.018176747485995293, - 0.05345786735415459, - 0.02577720209956169, - -0.01275455392897129, - -0.02105875499546528, - -0.0005793335731141269, - -0.030106913298368454, - 0.011769309639930725, - 0.04018723592162132, - 0.004614561330527067, - 0.0028082807548344135, - 0.0031467489898204803, - -0.021796012297272682, - 0.0009592724964022636, - -0.002481541596353054, - 0.008277390152215958, - -0.02584422565996647, - -0.0094368951395154, - -0.01722501590847969, - 0.01722501590847969, - -0.012211664579808712, - -0.018820172175765038, - -0.00202243123203516, - 0.023337550461292267, - -0.0069972435012459755, - -0.010884600691497326, - 0.02524101547896862, - 0.014517270028591156, - -0.0003298808296676725, - -0.0015231069410219789, - -0.003947678487747908, - 0.012158045545220375, - 0.00819696206599474, - 0.05273401737213135, - 0.00171077239792794, - -0.01196367759257555, - -0.029624344781041145, - -0.030106913298368454, - 0.010408734902739525, - -0.014624507166445255, - 0.026997027918696404, - 0.017184801399707794, - -0.005140695255249739, - -0.03364574909210205, - 0.004879303742200136, - 0.02305605076253414, - -0.015964975580573082, - -0.0035589428152889013, - 0.022171342745423317, - 0.04600486531853676, - 0.003703043097630143, - 0.003629317507147789, - 0.014168747700750828, - -0.0256967730820179, - 0.006457705050706863, - -0.005777417682111263, - 0.0003194084274582565, - -0.0011528026079759002, - 0.011373871937394142, - -0.01072374451905489, - 0.016943516209721565, - -0.0169301126152277, - 0.030321389436721802, - 0.023967569693922997, - -0.019423382356762886, - 0.008364520967006683, - -0.0025033243000507355, - -0.005298200063407421, - 0.027560023590922356, - -0.0010815901914611459, - 0.023136479780077934, - -0.0002530133642721921, - 0.014128534123301506, - -0.01112588495016098, - 0.012318901717662811, - -0.012077617458999157, - -0.005026755388826132, - 0.0031149128917604685, - 0.02575039304792881, - -0.01955742947757244, - -0.012312199920415878, - -0.027560023590922356, - -0.0013379547744989395, - 0.007506621535867453, - 0.003934273961931467, - -0.009805524721741676, - -0.003622615011408925, - -0.025763796642422676, - -0.0006476136622950435, - 0.010884600691497326, - -0.005707043223083019, - -0.012915410101413727, - -0.024262472987174988, - 0.0029842171352356672, - -0.05125949904322624, - -0.0027245015371590853, - 0.004805578384548426, - 0.020509162917733192, - -0.03664839640259743, - -0.013002540916204453, - 0.011427490971982479, - -0.003736554877832532, - 0.01967807114124298, - 0.0037566618993878365, - -0.0024262473452836275, - -0.0006023728637956083, - 0.007097778841853142, - -0.03184952214360237, - 0.02557613141834736, - 0.032761041074991226, - 0.010133938863873482, - -0.019155289977788925, - 0.016018593683838844, - -0.006192962639033794, - -0.02251986414194107, - 0.006253283936530352, - 0.004064969718456268, - -0.015804119408130646, - 0.0013170099118724465, - -0.002329063368961215, - 0.018699530512094498, - -0.012808172963559628, - -0.01410172414034605, - 0.035602834075689316, - -0.005241230130195618, - 0.0022653911728411913, - -0.005335063207894564, - -0.026487650349736214, - 0.012406032532453537, - -0.00533171184360981, - -0.005492568016052246, - 0.022466246038675308, - -0.022452840581536293, - 0.02733214572072029, - 0.014704935252666473, - 0.010971731506288052, - 0.003434949554502964, - -0.030348198488354683, - -0.032439328730106354, - 0.012600400485098362, - 0.010247878730297089, - -0.015361764468252659, - -0.0049898927100002766, - -0.008739852346479893, - -0.009289444424211979, - 0.0006375601515173912, - 0.007077671587467194, - -0.008056213147938251, - -9.676504123490304e-05, - 0.0069972435012459755, - 0.004111886024475098, - -0.00858569797128439, - 0.011219718493521214, - 0.01489260047674179, - 0.00020211745868436992, - -0.0007686747121624649, - -0.009832333773374557, - -0.019275931641459465, - 0.015710286796092987, - -0.007265337277203798, - 0.02006680704653263, - 0.013719690963625908, - -0.04680914804339409, - -0.01782822608947754, - -0.018190152943134308, - -0.027506405487656593, - -0.01967807114124298, - -0.0072318254970014095, - 0.0002829644363373518, - -0.0024949463550001383, - 0.021460894495248795, - -0.005948327481746674, - 0.026702124625444412, - -0.002337441314011812, - 0.011668775230646133, - -0.01138057466596365, - -0.023069456219673157, - 0.0006208043196238577, - -0.025643154978752136, - 0.04533463343977928, - 0.005301551427692175, - -0.04546867683529854, - -0.013679477386176586, - 0.008377925492823124, - -0.012030701152980328, - 0.008344413712620735, - 0.007144695147871971, - -0.007714394014328718, - -0.012928814627230167, - 0.01112588495016098, - 0.007345765363425016, - -0.005569645203649998, - 0.006752608343958855, - 0.037667155265808105, - -0.023498406633734703, - 0.02416864037513733, - 0.0012416086392477155, - 0.0008578996057622135, - -0.02404799871146679, - 0.004309604875743389, - -0.003326036501675844, - -0.012566888704895973, - 0.003274093382060528, - 0.04010680690407753, - -0.023350954055786133, - -0.0025418626610189676, - -0.0026457489002496004, - -0.00241451826877892, - -0.00931625347584486, - -0.01782822608947754, - 0.011373871937394142, - -0.0027630398981273174, - 0.009249229915440083, - 0.0002582495508249849, - 0.013015945442020893, - -0.0357636883854866, - 0.011427490971982479, - 0.01659499481320381, - -0.02052256651222706, - 0.026192747056484222, - -0.033806607127189636, - -0.0006354656652547419, - -0.008384628221392632, - 0.014624507166445255, - -0.024664612486958504, - -0.014235771261155605, - -0.008505269885063171, - 0.006065618246793747, - -2.756861249508802e-05, - 0.0012851738138124347, - -0.01666201837360859, - -0.0032841467764228582, - -0.0030663209035992622, - -0.00019363481260370463, - 0.002513377694413066, - -0.0017392573645338416, - 0.003002648474648595, - -0.014195557683706284, - 0.001221501617692411, - -0.013806821778416634, - -0.0001367696386296302, - -0.0036159127485007048, - -0.004172206856310368, - -0.005747257266193628, - 0.01785503514111042, - 0.21704860031604767, - -0.014745148830115795, - 0.009463705122470856, - 0.018498459830880165, - -0.0323052816092968, - -0.006370574701577425, - 0.015857737511396408, - 0.0038236852269619703, - -0.0020006487611681223, - 0.008451651781797409, - -0.029114967212080956, - -0.0028300632257014513, - 0.011769309639930725, - -0.002055943012237549, - 0.012654018588364124, - -0.018351009115576744, - -0.02509356290102005, - -0.008377925492823124, - -0.012593697756528854, - 0.021031944081187248, - 0.029356252402067184, - -0.012902005575597286, - -0.023136479780077934, - -0.0037633641622960567, - 0.024503756314516068, - -0.005247932858765125, - -0.014584292657673359, - -0.005583049729466438, - 0.016970327123999596, - 0.009410086087882519, - 0.0024899195414036512, - 0.00235922378487885, - 0.020388519391417503, - 0.00725193228572607, - -0.005660126451402903, - -0.005965082906186581, - 0.034798551350831985, - 0.01268082857131958, - 0.028846872970461845, - 0.002908815862610936, - -0.026058699935674667, - -0.009745202958583832, - -0.022828172892332077, - -0.02652786485850811, - 0.009798821993172169, - 0.0101071298122406, - -0.0029925950802862644, - 0.011239824816584587, - 0.021796012297272682, - -0.01814993843436241, - -0.01719820499420166, - -0.009503918699920177, - 0.004447002895176411, - 0.03514707460999489, - -0.0066185612231493, - 0.006923517677932978, - 0.005345116835087538, - 0.008451651781797409, - -0.00510718347504735, - 0.007975785061717033, - -0.002213448053225875, - 0.01600519008934498, - 0.007600454147905111, - 0.017814820632338524, - -0.05613880604505539, - -0.0032305282074958086, - -0.018833577632904053, - 0.02538846619427204, - 0.01395427342504263, - -0.012513269670307636, - -0.003585752099752426, - -0.011849737726151943, - -0.02045554295182228, - -0.006766012869775295, - -0.010482460260391235, - -0.0349862165749073, - 0.014262580312788486, - 0.02407480776309967, - 0.011447597295045853, - 0.046460624784231186, - -0.008793470449745655, - 0.0194367878139019, - -0.012540079653263092, - -0.01280147023499012, - -0.004219123162329197, - -0.04804237559437752, - 0.016313496977090836, - -0.007868547923862934, - -0.018686125054955482, - -0.03707734867930412, - -0.025911249220371246, - 0.004564294125884771, - 0.012761256657540798, - -0.03718458488583565, - 0.01899443380534649, - 0.006420842371881008, - 0.006062266882508993, - 0.016916707158088684, - -0.016769256442785263, - 0.00679617328569293, - -0.01066342368721962, - 0.07608497142791748, - 0.022533269599080086, - -0.002749635139480233, - -0.02419544942677021, - -0.008485163561999798, - -0.0017727690283209085, - 0.013149992562830448, - 0.0019704881124198437, - -0.00022159612854011357, - 0.020589590072631836, - -0.029329441487789154, - -0.005026755388826132, - -0.01845824532210827, - 0.027560023590922356, - 0.02575039304792881, - 0.007285444065928459, - -0.011910059489309788, - 0.004624614957720041, - -0.024959515780210495, - -0.02067001909017563, - -0.013397978618741035, - -0.011715691536664963, - 0.007211718242615461, - -0.0052847955375909805, - -0.009148694574832916, - -0.021165991201996803, - -0.02057618647813797, - -0.009021350182592869, - -0.006655424367636442, - 0.023458192124962807, - 0.007057564798742533, - 0.020254474133253098, - -0.007278741803020239, - 0.02487908862531185, - 0.015536025166511536, - 0.0015532674733549356, - -0.019731691107153893, - -0.016997136175632477, - 0.0029289228841662407, - 0.018565483391284943, - 0.00043984109652228653, - 0.009195610880851746, - -0.004383330699056387, - -0.028391115367412567, - 0.009865845553576946, - -0.0014208961511030793, - -0.0064979190938174725, - -0.016742447391152382, - 0.008304200135171413, - 0.012747852131724358, - -0.027439381927251816, - -0.01106556411832571, - -0.024007784202694893, - 0.055441759526729584, - 0.004339765291661024, - 0.005385330878198147, - -0.01133365835994482, - 0.016527971252799034, - 0.0010179179953411222, - -0.03536154702305794, - -0.016648614779114723, - 0.029704773798584938, - -0.01671563647687435, - -0.0006878277054056525, - 0.00026955976500175893, - -0.17136543989181519, - 0.013605751097202301, - 0.017332252115011215, - -0.028283877298235893, - 0.016527971252799034, - 0.0034148425329476595, - 0.01991935633122921, - 0.007861845195293427, - -0.020884493365883827, - -0.0013781688176095486, - 0.025173991918563843, - 0.012265283614397049, - -0.01567007228732109, - 0.004349818918853998, - 0.005817631725221872, - 0.014678126201033592, - -0.003237230470404029, - 0.03340446576476097, - 0.0159381665289402, - 0.01450386457145214, - 0.014195557683706284, - -0.0412864163517952, - 0.009772012941539288, - -0.0061728558503091335, - 0.014168747700750828, - 0.02239922247827053, - -0.017090968787670135, - 0.020884493365883827, - -0.017385872080922127, - -0.02003999799489975, - -0.008444949053227901, - -0.001221501617692411, - 0.05104502663016319, - -0.009222420863807201, - -0.019517214968800545, - -0.027090860530734062, - -0.007922166958451271, - -0.011025350540876389, - -0.013170098885893822, - 0.048766229301691055, - 0.011226420290768147, - 0.033752985298633575, - -0.01863250695168972, - -0.008042808622121811, - -0.0326538048684597, - 0.012888601049780846, - 0.034289173781871796, - 0.002625641878694296, - -0.011675477027893066, - -0.005180909298360348, - 0.006668828893452883, - -0.02290860004723072, - -0.012084320187568665, - -0.0065079727210104465, - 0.008049511350691319, - 0.03718458488583565, - 0.010241176001727581, - 0.003287498140707612, - 0.0015205935342237353, - -0.0022804713808000088, - -0.007888655178248882, - -0.002220150316134095, - 0.014034701511263847, - -0.01357894204556942, - -0.024476947262883186, - -0.02596486732363701, - -0.009919463656842709, - 0.012915410101413727, - -0.013042754493653774, - 0.006032106466591358, - -0.0007188260206021369, - 0.010127237066626549, - 0.007942273281514645, - -0.015576239675283432, - 0.008317604660987854, - -0.003011026419699192, - -0.011816226877272129, - 0.013900654390454292, - 0.02123301476240158, - -0.013163397088646889, - -0.008766661398112774, - 0.06975796073675156, - -0.01707756333053112, - -0.021970272064208984, - 0.0006451002554968, - -0.0038605481386184692, - -0.013605751097202301, - 0.013793417252600193, - -0.002823360962793231, - 0.01872633956372738, - 0.030080104246735573, - -0.026273174211382866, - -0.02210431918501854, - 0.013304146006703377, - 0.01591135561466217, - 0.02652786485850811, - 0.018645910546183586, - -0.01591135561466217, - -0.005663477815687656, - -0.02844473347067833, - 0.020924707874655724, - -0.002793200546875596, - -0.016246473416686058, - 0.022707529366016388, - 0.015576239675283432, - 0.0066922870464622974, - -0.0038102807011455297, - 0.009698286652565002, - 0.022426031529903412, - -0.018163342028856277, - -0.03908805176615715, - -0.011078968644142151, - 0.004390032961964607, - -0.010515972040593624, - -0.01014064159244299, - 0.014597698114812374, - 0.018310794606804848, - -0.010026701726019382, - 0.018042700365185738, - -0.007881952449679375, - 0.04160812869668007, - -0.00014190110960043967, - -0.01731884852051735, - 0.006045510992407799, - -0.01020096242427826, - -0.007727798540145159, - -0.058873359113931656, - -0.007573644630610943, - 0.021782606840133667, - 0.011199611239135265, - -0.009859142825007439, - 0.02434290014207363, - 0.005475812125951052, - -0.0004884330555796623, - 0.004420193377882242, - 0.03281465917825699, - -0.026367008686065674, - -0.0357636883854866, - -0.01311648078262806, - -0.013806821778416634, - 0.023257121443748474, - 0.006105832289904356, - -0.023645857349038124, - -0.0007745392504148185, - -0.0122451763600111, - 0.0256967730820179, - 0.009249229915440083, - -0.021152587607502937, - -0.0021782605908811092, - -0.022157937288284302, - -0.02156813256442547, - 0.022653911262750626, - -0.03211761638522148, - 0.017211610451340675, - 0.015629857778549194, - 0.007064267061650753, - -0.0005290660192258656, - -0.0297583919018507, - 0.016648614779114723, - -0.025938058272004128, - -0.0023474947083741426, - -0.016501162201166153, - -0.013780011795461178, - -0.019517214968800545, - 0.009725096635520458, - -0.030214151367545128, - 0.001107561751268804, - 0.002483217278495431, - 0.02365926280617714, - -0.04262688755989075, - -0.004638019483536482, - -0.016112426295876503, - -0.014651316218078136, - 0.004681584890931845, - 0.0237128809094429, - -0.005234527867287397, - -0.030482245609164238, - -0.010851089842617512, - 0.0032640397548675537, - -0.015294740907847881, - 0.01644754409790039, - -0.0015574564458802342, - -0.03292189538478851, - -0.01940997876226902, - -0.02951710857450962, - 0.02108556404709816, - 0.010120534338057041, - 0.0027395817451179028, - -0.021782606840133667, - 0.019302740693092346, - -0.0005772390868514776, - 0.003726501250639558, - -0.023645857349038124, - -0.014973028562963009, - -0.0009567590896040201, - 0.0010078644845634699, - -0.01229209266602993, - 0.004192314110696316, - 0.0017627155175432563, - -0.008223772048950195, - -0.027479596436023712, - 0.005546187050640583, - -0.028873683884739876, - -0.01218485552817583, - 0.02550910785794258, - -0.04761342704296112, - -0.005499270278960466, - -0.028793254867196083, - 0.03050905466079712, - 0.0061762067489326, - 0.008297497406601906, - -0.0015851035714149475, - 0.009168801829218864, - -0.018082914873957634, - 0.01632690243422985, - -0.013062861748039722, - 0.022801361978054047, - 0.01369958370923996, - 0.006192962639033794, - -0.03694330155849457, - -0.02398097515106201, - 0.013223717920482159, - 0.00190681591629982, - 0.0030462138820439577, - -0.007359169889241457, - -0.0035991568583995104, - -0.02150110900402069, - -0.00977871473878622, - -0.08166132122278214, - 0.004999945871531963, - 0.011119183152914047, - -0.00286022387444973, - -0.038659099489450455, - 0.012057511135935783, - 0.006286795251071453, - -0.0025519162882119417, - 0.004349818918853998, - -0.025924652814865112, - -0.012928814627230167, - 0.007392681669443846, - 0.003165180329233408, - -0.001973839243873954, - -0.016997136175632477, - 5.262384547677357e-06, - 0.015616453252732754, - 0.005378628149628639, - 0.020978325977921486, - 0.024450138211250305, - 0.007339063100516796, - 0.0012114481069147587, - -0.008263985626399517, - 0.000363601982826367, - -0.023592239245772362, - 0.008230473846197128, - -0.01914188452064991, - 0.006461056414991617, - -0.009074969217181206, - -0.010361818596720695, - 0.0025804010219872, - -0.0080763204023242, - -0.026661910116672516, - 0.009074969217181206, - -0.003629317507147789, - -0.014396627433598042, - 0.013726393692195415, - 0.032707422971725464, - -0.007325658109039068, - 0.06075001507997513, - -0.03884676471352577, - -0.01680947095155716, - 0.01860569790005684, - -0.034530457109212875, - 0.0077613103203475475, - -0.005800875835120678, - 0.03935614228248596, - 0.002449705498293042, - 0.012258580885827541, - -0.010375223122537136, - 0.009725096635520458, - 0.010656721889972687, - -0.017131183296442032, - -0.01567007228732109, - 0.02715788409113884, - -0.019101670011878014, - -0.008967732079327106, - 0.004594454541802406, - -0.009637965820729733, - -0.014450246468186378, - 0.031929951161146164, - 0.01498643308877945, - -0.0042559863068163395, - 0.006166153121739626, - 0.013371169567108154, - 0.003977838903665543, - -0.015897952020168304, - 0.013994487002491951, - 0.031232906505465508, - -0.01579071395099163, - -0.029302632436156273, - -0.01450386457145214, - 0.0130226481705904, - 0.004574347287416458, - -0.013558834791183472, - 0.002144749043509364, - 0.015469001606106758, - -0.004738554824143648, - -0.007017350755631924, - 0.012084320187568665, - 0.013887249864637852, - -0.013806821778416634, - -0.021259823814034462, - 0.02195686846971512, - 0.02227858081459999, - 0.01111248042434454, - -0.029356252402067184, - -0.013940867967903614, - -0.010247878730297089, - 0.005425544921308756, - -0.015174099244177341, - 0.016729041934013367, - 0.0103216040879488, - -0.004956380929797888, - -0.019664667546749115, - 0.02060299552977085, - 0.012573590502142906, - 0.014074915088713169, - 0.009577644988894463, - 0.03469131514430046, - 0.0005123101291246712, - 0.0067325010895729065, - -0.0006626939284615219, - -0.02694340981543064, - -0.04142046347260475, - 0.0055093239061534405, - 0.005643370561301708, - -0.03214442357420921, - -0.019182099029421806, - 0.024088211357593536, - -0.023699475452303886, - 0.02611231803894043, - 0.008156748488545418, - 0.002660829108208418, - 0.0005927382153458893, - 0.016233067959547043, - 0.005824333988130093, - -0.0009333009365946054, - -0.024812065064907074, - 0.0025921303313225508, - 0.0057036918587982655, - 0.00027458652039058506, - -0.0031015081331133842, - -0.0021196152083575726, - 0.021903248503804207, - 0.0007502432563342154, - -3.513492629281245e-05, - -0.022533269599080086, - -0.0209917314350605, - -0.02601848542690277, - -0.02587103471159935, - 0.0046212635934352875, - -0.01800248585641384, - -0.01639392413198948, - -0.01923571713268757, - 0.005670180078595877, - 0.0038706017658114433, - 0.0013773309765383601, - -0.009912761859595776, - 0.09077650308609009, - 0.020388519391417503, - 0.008163451217114925, - -0.013780011795461178, - -0.006665477529168129, - -0.006719096563756466, - 0.018082914873957634, - 0.0015448895283043385, - -0.01436981838196516, - -0.07603134959936142, - 0.012225069105625153, - -0.0066319662146270275, - 0.006266688462346792, - -0.031688667833805084, - -0.003803578205406666, - -0.007948976010084152, - -0.00880687590688467, - 0.01191676128655672, - -0.018498459830880165, - 0.0237128809094429, - 0.00858569797128439, - -0.018552077934145927, - 0.003910815808922052, - 0.024785256013274193, - -0.0412059910595417, - -0.004577698651701212, - 0.02679595723748207, - -0.00308475224301219, - -0.011641965247690678, - -0.0035723475739359856, - -0.007546835578978062, - -0.014115129597485065, - -0.0489807054400444, - -0.03136695548892021, - 0.03053586371243, - -0.0071916114538908005, - 0.001354710548184812, - -0.024396520107984543, - 0.021434085443615913, - -0.0016253176145255566, - 0.011655370704829693, - -0.0004963920800946653, - -0.020174045115709305, - -0.02599167637526989, - -0.007520026061683893, - -0.009135290049016476, - 0.00018756081408355385, - -0.008746554143726826, - -0.015415383502840996 - ], - "sparse": "SparseEmbedding(values=array([1.55365517, 1.55365517, 1.55365517, 1.55365517, 1.55365517,\n 1.55365517, 1.55365517, 1.55365517, 1.55365517, 1.55365517,\n 1.55365517, 1.55365517, 1.55365517, 1.55365517, 1.55365517,\n 1.55365517, 1.82118027, 1.55365517, 1.55365517, 1.55365517,\n 1.55365517, 1.55365517, 1.55365517, 1.55365517, 1.55365517,\n 1.55365517, 1.55365517, 1.55365517, 1.55365517, 1.55365517,\n 1.55365517, 1.55365517]), indices=array([1358918445, 231980230, 1827422926, 2067298431, 1407327463,\n 834718839, 1013132602, 1638510030, 2010445050, 940461617,\n 408270109, 1675878461, 2039377815, 338063690, 46957595,\n 79617988, 164058840, 2091876921, 2120211764, 134490412,\n 1448994436, 2103309648, 763618498, 622596397, 1040803305,\n 1780580861, 1790506364, 1178764858, 354059869, 1226210254,\n 241487245, 1863110071]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 13, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 32 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000014.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000014.json deleted file mode 100644 index dd9fa039fcdd7753af5f93d873034352ba3e961c..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000014.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000014", - "content": "Inhaltsverzeichnis Inhaltsverzeichnis .............................................................................................................................................. 1 Verwendung der Zuwendung und des erzielten Ergebnisses im Einzelnen, mit II.1.1 II.1.2 II.1.3 II.1.4 II.1.5 II.1.6 II.1.7 II.1.8 Abbildungsverzeichnis....................................................................................................................................... 1 II. Eingehende Darstellungen ....................................................................................................................... 2 Gegen\u00fcberstellung der vorgegebenen Ziele ............................................................................................ 2", - "embedding": { - "dense": [ - -0.008262557908892632, - 0.006350868381559849, - 0.007782097905874252, - -0.02044999971985817, - -0.011537806130945683, - 0.014386730268597603, - -0.017648445442318916, - -0.010515982285141945, - 0.0005333274602890015, - -0.019272534176707268, - 0.023603441193699837, - 0.01890711486339569, - 0.00062933488516137, - 0.02426661178469658, - 0.011957362294197083, - 0.0203146580606699, - 0.04225340858101845, - -0.02142445370554924, - -0.004148196429014206, - -0.011923527345061302, - -0.016931138932704926, - -0.0015784124843776226, - -0.005809505470097065, - -0.00796480756253004, - -0.011822021566331387, - -0.006222294643521309, - 0.02544407732784748, - -0.032075777649879456, - 0.000827693787869066, - 0.009697170928120613, - 0.005914394278079271, - -0.0007367616635747254, - -0.003441040636971593, - -0.005400099325925112, - 0.0009143964853137732, - -0.004655724857002497, - -0.02543054334819317, - -0.022831998765468597, - -0.0001090128134819679, - -0.005731684155762196, - 0.0018880045972764492, - -0.006608016323298216, - -0.0016477745957672596, - -0.021505657583475113, - -0.006340717896819115, - 0.01800033077597618, - 0.0006026896298862994, - 0.005843340419232845, - -0.022574851289391518, - 0.015469457022845745, - 0.0055794259533286095, - 0.026716280728578568, - -0.008905426599085331, - 0.0008196579292416573, - -0.032129913568496704, - 0.004997460171580315, - -0.03508034348487854, - 0.02097782865166664, - -0.006411771755665541, - -0.017134148627519608, - -0.026783950626850128, - 0.010245300829410553, - -0.019692091271281242, - -0.008309926837682724, - -0.033239707350730896, - -0.03061409667134285, - -0.01670105941593647, - 0.008276091888546944, - -0.011125016026198864, - -0.005833189934492111, - 0.03378107026219368, - 0.030857710167765617, - 0.0030570111703127623, - 0.013554384000599384, - 0.01851462572813034, - -0.027717802673578262, - -0.00527490908280015, - -0.026716280728578568, - -0.009527994319796562, - -0.009155807085335255, - 0.019299602136015892, - -0.007680592127144337, - -0.02361697517335415, - 0.029044141992926598, - 0.027988484129309654, - 0.01178141962736845, - 0.015780741348862648, - 0.0354863665997982, - -0.04195565730333328, - -0.01533411629498005, - 0.0017864989349618554, - 0.04907458648085594, - 0.009494159370660782, - 0.021004896610975266, - 0.0004525459080468863, - 0.009453557431697845, - -0.015428855083882809, - 0.009534761309623718, - 0.0036880376283079386, - -0.03535102680325508, - -0.01954321563243866, - 0.0024361349642276764, - -0.0031043803319334984, - 0.002705124905332923, - -0.029802050441503525, - -0.012870913371443748, - 0.011794953607022762, - -0.013148361817002296, - -0.003789543407037854, - -0.0076399901881814, - -0.027298245579004288, - 0.04168497771024704, - -0.01850109174847603, - -0.0011918451637029648, - 0.018622899428009987, - -0.019313136115670204, - 0.028908802196383476, - -0.006513277534395456, - 0.005088815465569496, - 0.006868547294288874, - 0.0023210952058434486, - -0.006239212583750486, - 0.017174752429127693, - -0.00412451196461916, - 0.020287590101361275, - -6.509312697744463e-06, - -0.002547791227698326, - -0.006909149698913097, - -0.0181898083537817, - -0.017648445442318916, - 0.01625443436205387, - 0.009555063210427761, - 0.025268133729696274, - 0.006303499452769756, - -0.016484513878822327, - 0.034728456288576126, - -0.014752150513231754, - 0.003435965394601226, - -0.013513782061636448, - -0.0397360697388649, - 0.007335473317652941, - 0.011916760355234146, - -0.006005749572068453, - -0.029071209952235222, - 0.013737094588577747, - 0.0240094643086195, - -0.0024395184591412544, - 0.0038673642557114363, - 0.002769411774352193, - -0.007978342473506927, - -0.022994408383965492, - -0.03651495650410652, - 0.018365750089287758, - -0.01417018473148346, - 0.007152763195335865, - 0.004997460171580315, - -0.018744705244898796, - 0.004415494855493307, - 0.009846045635640621, - -0.00111571594607085, - 0.015577729791402817, - -0.004797832574695349, - -0.006293348502367735, - 0.023007942363619804, - 0.02828623354434967, - 0.01839281991124153, - 0.02782607451081276, - -0.014603275805711746, - -0.003359836060553789, - -0.01168668083846569, - -0.012749106623232365, - 0.023508703336119652, - -0.014048377983272076, - 0.029152415692806244, - -0.042361680418252945, - -0.01837928593158722, - 0.022371839731931686, - 0.013391975313425064, - -0.030532890930771828, - -0.014752150513231754, - -0.01463034376502037, - 0.01042124442756176, - 0.020219920203089714, - 0.002063947729766369, - -0.021898146718740463, - -0.015090502798557281, - 0.017255956307053566, - 0.02899000607430935, - 0.0031754341907799244, - -0.026053110137581825, - 0.00521062221378088, - 0.03386227786540985, - 0.0036406684666872025, - -0.01940787583589554, - -0.6219182014465332, - 0.00944679044187069, - -0.017323626205325127, - -0.013080691918730736, - 0.008066313341259956, - 0.02233123779296875, - -0.0017255955608561635, - 0.01015732903033495, - -0.005643712822347879, - 0.03248180076479912, - 0.005938079208135605, - -0.02220943011343479, - -0.007409910671412945, - -0.00548468716442585, - 0.002747418824583292, - -0.022087624296545982, - -0.02361697517335415, - -0.031750958412885666, - 0.006059885956346989, - 0.004939940292388201, - -0.01962442137300968, - 0.0010370491072535515, - 0.010698692873120308, - 0.0006128402310423553, - 0.000846303126309067, - 0.018271012231707573, - 0.015036366879940033, - -0.03545929864048958, - 0.023129748180508614, - 0.009440023452043533, - -0.030532890930771828, - 0.014846889302134514, - 0.007186598144471645, - 0.020734215155243874, - 0.03353745862841606, - 0.015645399689674377, - -0.02815089374780655, - -0.005078664515167475, - 0.01239045336842537, - 0.00994078442454338, - -0.04271356761455536, - -0.013378441333770752, - -0.0017391296569257975, - 0.014088980853557587, - -0.005782437045127153, - 0.015131104737520218, - 0.033239707350730896, - -0.003180509665980935, - 0.018284546211361885, - -0.013926571235060692, - -0.0002922516141552478, - 0.010434778407216072, - -0.006577564403414726, - 0.006381320301443338, - 0.022899668663740158, - 0.025092190131545067, - 0.011801720596849918, - -0.012566396035254002, - 0.005843340419232845, - 0.03248180076479912, - -0.0031111473217606544, - -0.022047022357583046, - -0.0024953465908765793, - -0.03269834443926811, - -0.03624427318572998, - 0.021789874881505966, - -0.01591608114540577, - 0.001358483568765223, - 0.0471256785094738, - -0.017959728837013245, - -0.015225843526422977, - 0.012715271674096584, - -0.0015496525447815657, - -0.0078023988753557205, - 0.019759761169552803, - 0.007924205623567104, - -0.005758752580732107, - -0.009731005877256393, - -0.011517505161464214, - 0.010096426121890545, - -0.004486548714339733, - -0.016010820865631104, - -0.004151579923927784, - 0.007173064164817333, - 0.025457611307501793, - -0.02809675596654415, - -0.019583817571401596, - 0.0025393322575837374, - -0.01207240205258131, - 0.01644391193985939, - 0.012911515310406685, - 0.0029538136441260576, - -0.0037557079922407866, - -0.004720011726021767, - -0.01824394427239895, - 0.05156485736370087, - -0.001558957272209227, - 0.021086102351546288, - 0.002713583642616868, - -0.012972419150173664, - -0.01624090038239956, - -0.015415321104228497, - 0.016335638239979744, - -0.005809505470097065, - 0.021018430590629578, - 0.013419043272733688, - -0.0331314355134964, - -0.015415321104228497, - 0.045339178293943405, - -0.021262044087052345, - -0.01637624017894268, - -0.016200298443436623, - 0.005535440053790808, - 0.011835555545985699, - 0.019462011754512787, - -0.03153441473841667, - 0.013182196766138077, - -0.0013593294424936175, - 0.005383181385695934, - 0.005024528596550226, - 0.0031043803319334984, - 0.01371679361909628, - 0.019245466217398643, - -0.013777696527540684, - -0.00566063029691577, - 0.02744712121784687, - 0.005921161267906427, - -0.006648618262261152, - -0.004293688107281923, - -0.014711548574268818, - 0.005982064642012119, - 0.0021231593564152718, - 0.02777193859219551, - 0.009196409955620766, - 0.014779218472540379, - 0.0003958719316869974, - 0.01800033077597618, - -0.002716967137530446, - 0.0010539666982367635, - -0.023346293717622757, - -0.021316181868314743, - 0.010644556023180485, - 0.03483673185110092, - -0.03456604853272438, - -0.018785307183861732, - -0.023089146241545677, - -0.015902547165751457, - 0.013216032646596432, - -0.0018068001372739673, - 0.03513447940349579, - -0.005207238718867302, - -0.01126712467521429, - -0.014603275805711746, - 0.011490436270833015, - 0.038409728556871414, - -0.008309926837682724, - -0.014738616533577442, - -0.009758073836565018, - -0.002691590692847967, - -0.020666545256972313, - 0.0057993545196950436, - 0.010353573597967625, - -0.038057841360569, - -0.019380807876586914, - -0.023549305275082588, - -0.0027846377342939377, - 0.009595665149390697, - 0.023400429636240005, - -0.018176274374127388, - -0.041576702147722244, - 0.012180674821138382, - 0.00866858009248972, - -0.015428855083882809, - 0.034593116492033005, - -0.007755029480904341, - 0.01856876164674759, - -0.013662656769156456, - -0.02587716653943062, - -0.006672303192317486, - -0.0005993061349727213, - 0.012234811671078205, - -0.009967852383852005, - 0.0010438162134960294, - -0.007538484409451485, - 0.013168662786483765, - -0.010367107577621937, - -0.0028962937649339437, - -0.0028150894213467836, - 0.025714758783578873, - 0.003907966427505016, - -0.010184397920966148, - 0.00521062221378088, - -0.010428011417388916, - 0.0031483662314713, - -0.0021874462254345417, - 0.024293679744005203, - -0.01579427532851696, - 0.01023176684975624, - 0.0031415990088135004, - 0.007870069704949856, - 0.03619013726711273, - 0.006100487895309925, - 0.022114692255854607, - -0.015510058961808681, - 0.016281502321362495, - -0.029612574726343155, - 0.01591608114540577, - -0.014670946635305882, - 0.02782607451081276, - -0.0014066988369449973, - 0.02717643976211548, - -0.010949073359370232, - -0.014833355322480202, - -0.004814750049263239, - 0.011368629522621632, - 0.023468099534511566, - -0.0005367110134102404, - 0.005907627288252115, - -0.0007498728227801621, - -0.008133984170854092, - 0.026039576157927513, - 0.01048891432583332, - 0.030181005597114563, - -0.013594986870884895, - -0.011449834331870079, - -0.004544068593531847, - 0.009500926360487938, - 0.007254268508404493, - 0.00342919840477407, - 0.011991198174655437, - -0.00879715383052826, - -0.00439857691526413, - -0.0003290474123787135, - 0.009697170928120613, - 0.011158851906657219, - 0.0269192922860384, - 0.04084586352109909, - -0.025782428681850433, - 0.024889178574085236, - 0.015550661832094193, - -0.00644222367554903, - 0.018419887870550156, - -0.001404161099344492, - -0.002625612076371908, - 0.03416002541780472, - 0.01618676446378231, - 0.026242587715387344, - 0.04160377010703087, - -0.029991528019309044, - 0.0134596461430192, - -0.009169341064989567, - 0.003290473949164152, - -0.026053110137581825, - 0.010258834809064865, - 0.011531039141118526, - -0.03250886872410774, - 0.02161393128335476, - 0.024577895179390907, - 0.023711713030934334, - 0.023847054690122604, - 0.0036034495569765568, - -0.022561317309737206, - 0.0029504301492124796, - -0.006171541754156351, - -0.0015699536306783557, - 0.007876836694777012, - -0.01986803486943245, - -0.0289358701556921, - -0.015022831968963146, - -0.004337673541158438, - 0.012180674821138382, - 0.0024598196614533663, - -0.006723056081682444, - 0.01831161417067051, - 0.022574851289391518, - -0.012410754337906837, - 0.010055824182927608, - -0.0035256287083029747, - 0.023129748180508614, - 0.040737591683864594, - -0.018731171265244484, - -0.008810687810182571, - -0.009081370197236538, - 0.037435274571180344, - 0.009467091411352158, - -0.0007266111206263304, - -0.003337843343615532, - 0.021072568371891975, - -0.03299609571695328, - 0.006628317292779684, - -0.00818812008947134, - 0.0004508541605900973, - 0.019123660400509834, - -0.02562001906335354, - 0.006702754646539688, - 0.004757230170071125, - 0.015699537470936775, - -0.020544737577438354, - -0.0009093212429434061, - -0.011761118657886982, - 0.022804930806159973, - -0.028367439284920692, - 0.0011436300119385123, - -0.0028895267751067877, - 0.05890033021569252, - -0.0076399901881814, - 0.006970053073018789, - -0.009297914803028107, - 0.002549482975155115, - -0.014413798227906227, - -7.353870751103386e-05, - -0.006499743554741144, - 0.0013424118515104055, - 0.004584670532494783, - 0.016010820865631104, - -0.011625777930021286, - -0.025295201689004898, - 0.0029707313515245914, - 0.049615949392318726, - -0.01421078760176897, - 0.0015970218228176236, - -0.03930297866463661, - 0.012931816279888153, - 0.02252071537077427, - 0.021573329344391823, - 0.02842157520353794, - -0.002008119598031044, - 0.010170863941311836, - -0.011273891665041447, - -0.006333950906991959, - -0.0007968191639520228, - -0.05391978845000267, - 0.014670946635305882, - 0.011808487586677074, - 0.0078633027151227, - -0.016741661354899406, - 0.02279139682650566, - -0.02103196457028389, - 0.024090668186545372, - -0.003911349922418594, - -0.0024192174896597862, - -0.02710876800119877, - 0.018487557768821716, - 0.016525115817785263, - -0.0019066139357164502, - 0.01417018473148346, - 0.00772119453176856, - 0.028881734237074852, - -0.0061816927045583725, - -0.027149371802806854, - 0.0414142943918705, - 0.037624750286340714, - -0.0052613746374845505, - -0.03445777669548988, - 0.0035256287083029747, - 0.011361862532794476, - 0.011544573120772839, - 0.04233461245894432, - -0.03965486213564873, - 0.009460324421525002, - 0.004743696190416813, - 0.002801555208861828, - 0.044310588389635086, - 0.007403143681585789, - -0.014481469057500362, - 0.011314493604004383, - 0.002173912012949586, - -0.0157266054302454, - -0.006086953915655613, - -0.0010049056727439165, - 0.008465569466352463, - 0.004161730408668518, - -0.004676025826483965, - -0.0064557576552033424, - 0.005934695713222027, - 0.00522753968834877, - 0.007173064164817333, - -0.035567570477724075, - -0.011713748797774315, - -0.013669423758983612, - -0.02505158819258213, - -0.004604971967637539, - 0.0016816098941490054, - -0.009494159370660782, - -0.01006935816258192, - -0.041197750717401505, - -0.002052105264738202, - -0.023779384791851044, - -0.002590085146948695, - -0.01954321563243866, - -0.03878868371248245, - -0.002654372015967965, - -0.01702587679028511, - 0.00887159164994955, - 0.023251555860042572, - -0.012694969773292542, - 0.004990693181753159, - -0.027325313538312912, - 0.01864996738731861, - 0.03131786733865738, - 0.0002465740835759789, - 0.005071897525340319, - 0.008052779361605644, - 0.007491115015000105, - -0.007484348025172949, - -0.02576889470219612, - -0.021410919725894928, - -0.03080357424914837, - 0.003911349922418594, - 0.002141768578439951, - -0.02770426869392395, - 0.018406353890895844, - -0.015374718233942986, - 0.0009000165155157447, - -0.02640499733388424, - -0.0069971210323274136, - 0.006567413918673992, - -0.00193029863294214, - 0.01800033077597618, - 0.01928606815636158, - 4.6523411583621055e-05, - 0.001706140348687768, - 0.014670946635305882, - -0.018162740394473076, - 0.020341727882623672, - -0.014143116772174835, - -0.008073080331087112, - 0.005041446071118116, - 0.019516147673130035, - 0.028827596455812454, - -0.02142445370554924, - 0.024361349642276764, - 0.001416003447957337, - 0.014806287363171577, - 0.009778374806046486, - -0.015171707607805729, - 0.008384364657104015, - 0.006026050541549921, - 0.0022145144175738096, - 0.024442553520202637, - 0.005843340419232845, - 0.02285906672477722, - 0.04653017967939377, - -0.006019283551722765, - -0.010299437679350376, - -0.015401787124574184, - 0.02551174722611904, - 0.01293858326971531, - -0.015361184254288673, - 0.004659108351916075, - -0.018433421850204468, - -0.007044490426778793, - -0.009670102037489414, - -0.010340039618313313, - -0.009818977676331997, - 0.005153102334588766, - -0.020761283114552498, - 0.009832511655986309, - -0.0038064608816057444, - 0.0072068991139531136, - -0.020165784284472466, - -0.0028979855123907328, - -0.02233123779296875, - -0.0011529347393661737, - 0.007633222732692957, - 0.00545085221529007, - -0.012187441810965538, - 0.015469457022845745, - 0.002701741410419345, - -0.041062407195568085, - -0.016714593395590782, - 0.021708669140934944, - -0.0061174058355391026, - 0.011822021566331387, - 0.0062493630684912205, - -0.004195565823465586, - -0.03513447940349579, - 0.0215462613850832, - 0.005765519570559263, - -0.018108602613210678, - -0.01553712785243988, - -0.0055117555893957615, - 0.020571807399392128, - 0.009149040095508099, - 0.005041446071118116, - -0.010732527822256088, - 0.0027558777946978807, - -0.022696657106280327, - -0.0008602601592428982, - 0.020828954875469208, - 0.005826422944664955, - -0.016227366402745247, - -0.049940768629312515, - 0.02796141617000103, - 0.01012349408119917, - 0.019448477774858475, - 0.03185923025012016, - -0.0029216702096164227, - 0.035053275525569916, - 0.005132800899446011, - -0.024158338084816933, - -0.001344949472695589, - -0.01883944310247898, - 0.0012239885982125998, - 0.0023938410449773073, - 0.028556915000081062, - 0.0052579911425709724, - -0.006384703796356916, - -0.038924023509025574, - -0.016985274851322174, - 0.030722368508577347, - -0.0011368630221113563, - 0.010265601798892021, - 0.024807974696159363, - -0.0013288777554407716, - -0.025714758783578873, - 0.04192858934402466, - 0.02388765662908554, - -0.026689212769269943, - -0.002727117855101824, - 0.019380807876586914, - -0.03204870969057083, - -0.0185822956264019, - 0.032914891839027405, - -0.008763318881392479, - -0.00931821670383215, - 0.005948229692876339, - -0.01239045336842537, - -0.01194382831454277, - -0.0009499234729446471, - 0.014549139887094498, - -0.015158173628151417, - -0.007227200549095869, - -0.019908636808395386, - -0.03202164173126221, - 0.005643712822347879, - -0.0012256804620847106, - 0.006225678138434887, - 0.038030773401260376, - 0.0009321600082330406, - -0.012667901813983917, - 0.01882590912282467, - 0.002001352608203888, - -0.021397385746240616, - -0.010312971659004688, - -0.03061409667134285, - 0.025863632559776306, - 0.0010116727789863944, - 0.03665029630064964, - 0.0357029102742672, - -0.014156650751829147, - -0.021762805059552193, - -0.05088815465569496, - -0.010170863941311836, - -0.0016630004392936826, - 0.01709354668855667, - 0.02428014576435089, - 0.010908471420407295, - -0.007247501518577337, - -0.007788864895701408, - 0.025944838300347328, - -0.02310268022119999, - -0.008201654069125652, - 0.014860423281788826, - 0.00994078442454338, - 0.0037557079922407866, - -0.01126712467521429, - -0.006086953915655613, - -0.010306204669177532, - 0.025985440239310265, - -0.0035899155773222446, - 0.009406187571585178, - 0.0056504798121750355, - 0.010867868550121784, - 0.0005959225818514824, - 0.03210284560918808, - -0.00428692065179348, - 0.03838266059756279, - -0.003413972444832325, - -0.0028962937649339437, - -0.013594986870884895, - -0.026716280728578568, - -0.05313481017947197, - 0.015212309546768665, - -0.012972419150173664, - 0.016592785716056824, - 0.019015386700630188, - -0.010326505638659, - -0.015631865710020065, - -0.03210284560918808, - -0.016078490763902664, - 0.0029741148464381695, - 0.014738616533577442, - 0.0190289206802845, - -0.0051903207786381245, - -0.021275578066706657, - -0.004652340896427631, - -0.0009583822684362531, - 0.009615966118872166, - -0.004540685098618269, - -0.0045880540274083614, - -0.02007104456424713, - 0.0011317876633256674, - -0.008438500575721264, - 0.003358144313097, - 0.018541693687438965, - -0.023860588669776917, - -0.03383520990610123, - 0.01882590912282467, - -0.009839278645813465, - 0.006567413918673992, - -0.03088477812707424, - 0.028448643162846565, - -0.017134148627519608, - 0.015564195811748505, - 0.009473858401179314, - 0.006273047532886267, - 0.0488039031624794, - -0.007382842246443033, - -0.009270846843719482, - 0.007680592127144337, - 0.014657411724328995, - -0.04065638780593872, - 0.019570283591747284, - 0.020043976604938507, - -0.011639311909675598, - -0.00990018155425787, - 0.008695648051798344, - -0.013899503275752068, - -0.014156650751829147, - 0.033104367554187775, - -0.012160373851656914, - -0.022899668663740158, - -0.006073419936001301, - 0.0061884596943855286, - 0.008492637425661087, - -0.000990525702945888, - -0.0017628143541514874, - 0.0052004712633788586, - -0.020301124081015587, - 0.006171541754156351, - -0.002781254006549716, - -0.020571807399392128, - 0.006949751637876034, - 0.021600397303700447, - 0.009920483455061913, - 0.022358305752277374, - -0.03367279842495918, - 0.028719324618577957, - 0.004872269928455353, - -0.0011867699213325977, - -0.014779218472540379, - -0.026188451796770096, - -0.027934348210692406, - -0.005938079208135605, - 0.003251563524827361, - -0.0022280483972281218, - -0.01498223003000021, - -0.007937739603221416, - -0.007876836694777012, - 0.0018135671271011233, - 0.0008814071770757437, - 0.0051632528193295, - -0.007294870913028717, - -0.00036880376865155995, - -0.010637789033353329, - 0.009013699367642403, - 0.006303499452769756, - -0.004665875341743231, - 0.0037523244973272085, - 0.0388428196310997, - -0.007017422001808882, - -0.009561830200254917, - -0.0029284371994435787, - -0.001989510143175721, - 0.016227366402745247, - 0.027528325095772743, - -0.02097782865166664, - -0.02239890769124031, - -0.008100149221718311, - -0.032400596886873245, - -0.004851968958973885, - -0.00948062539100647, - 0.006435456685721874, - 0.0005836573545821011, - 0.026323791593313217, - 0.0014312292914837599, - 0.03210284560918808, - -0.003972253296524286, - 0.004050074610859156, - -0.02782607451081276, - -0.04509556666016579, - 0.012891214340925217, - -0.000502029899507761, - 0.015550661832094193, - 0.0009896798292174935, - -0.037570614367723465, - -0.0069260671734809875, - 0.020991362631320953, - -0.012918282300233841, - 0.011896459385752678, - 0.020274056121706963, - 0.018460489809513092, - -0.015469457022845745, - -0.020165784284472466, - 0.0152799803763628, - 0.0012899673311039805, - 0.03930297866463661, - 0.0222771018743515, - -0.004138045944273472, - -0.011300959624350071, - 0.0030400934629142284, - -0.006584331393241882, - -0.03158855065703392, - 0.005907627288252115, - -0.00245305267162621, - 0.009047534316778183, - 0.0008534931112080812, - 0.020436465740203857, - -0.006262897048145533, - -0.042226340621709824, - 0.006049735005944967, - 0.004770764149725437, - 0.006679070182144642, - -0.010664857923984528, - -0.0032667892519384623, - -0.002833698643371463, - -0.007274569943547249, - -0.009778374806046486, - 0.01870410330593586, - -0.02991032414138317, - -0.006421922706067562, - 0.006198610179126263, - -0.007010655011981726, - 0.010942306369543076, - -0.01463034376502037, - 0.021600397303700447, - -0.006401621270924807, - 0.011050579138100147, - 0.0003740905085578561, - -0.023738782852888107, - -0.020422931760549545, - 0.024672633036971092, - 0.01767551340162754, - -0.015564195811748505, - 0.004510233178734779, - 1.995748607441783e-05, - 0.019840966910123825, - -0.019394341856241226, - -0.028313301503658295, - -0.009683636948466301, - -0.01909659057855606, - -0.011415999382734299, - -0.0034884100314229727, - -0.010651323944330215, - 0.01168668083846569, - -0.010049057193100452, - -0.016728127375245094, - -0.036406684666872025, - 0.011111482046544552, - 0.17475208640098572, - -0.030695300549268723, - 0.02173573710024357, - 0.03448484465479851, - -0.020558271557092667, - -0.018988318741321564, - 0.03288782387971878, - -0.0017729649553075433, - 0.013845367357134819, - 0.008702415972948074, - -0.023021476343274117, - -0.009717471897602081, - -0.004720011726021767, - -0.0009237011545337737, - 0.024374883621931076, - -0.04168497771024704, - -0.05218742415308952, - -0.0034951770212501287, - -0.013114526867866516, - 0.016849933192133904, - 0.01813567243516445, - -0.00793097261339426, - 0.001940449234098196, - -0.014684480614960194, - 0.03792250156402588, - -0.010996442288160324, - -0.009947551414370537, - 0.012228044681251049, - 0.02750125713646412, - -0.006080186925828457, - -0.008878358639776707, - 0.0043884264305233955, - 0.010130261071026325, - 0.009934017434716225, - -0.031020117923617363, - 0.005241073668003082, - 0.023251555860042572, - -0.011158851906657219, - 0.022561317309737206, - 0.007579086814075708, - 0.009460324421525002, - -0.006963285617530346, - -0.01029267068952322, - -0.03995261341333389, - 0.007118927780538797, - 0.04471661150455475, - 0.008397898636758327, - -0.0014752150746062398, - 0.008215188980102539, - -0.0030130252707749605, - -0.031236663460731506, - -0.0025376405101269484, - 0.006560646928846836, - 0.0219387486577034, - -0.009988153353333473, - 0.011700214818120003, - 0.0033936714753508568, - -0.0037015718407928944, - 0.009027233347296715, - 0.03843679651618004, - -0.008086614310741425, - 0.01695820689201355, - -0.0038978159427642822, - 0.01772964932024479, - -0.0157266054302454, - 0.013439344242215157, - -0.011070880107581615, - 0.00103112799115479, - 0.023143282160162926, - -0.016619853675365448, - 0.008756551891565323, - -0.03164268657565117, - -0.014995764009654522, - 0.02335982769727707, - -0.015415321104228497, - -0.0037760091945528984, - 0.008905426599085331, - 0.014291991479694843, - 0.007220433559268713, - 0.023671111091971397, - -0.00023473174951504916, - -0.010800198651850224, - -0.009061068296432495, - -0.01599728688597679, - -0.0011326335370540619, - -0.030451687052845955, - 0.015198775567114353, - 0.0251869298517704, - 0.022371839731931686, - -0.010522749274969101, - -0.020301124081015587, - 0.0005193704273551702, - -0.01592961512506008, - -0.014522070996463299, - -0.010637789033353329, - 0.008878358639776707, - 0.020098114386200905, - 0.02609371207654476, - 0.011456601321697235, - 0.004347824025899172, - -0.03416002541780472, - 0.07990522682666779, - 0.02173573710024357, - -0.0007963962270878255, - -0.0063238004222512245, - -0.011415999382734299, - -0.0035290122032165527, - 0.00574183464050293, - 0.0035831485874950886, - 0.0036508189514279366, - 0.03139907494187355, - -0.03483673185110092, - 0.01766197942197323, - 0.00024572820984758437, - 0.0032684809993952513, - -0.01203856710344553, - -0.021573329344391823, - -0.026892224326729774, - 0.018622899428009987, - -0.01695820689201355, - -0.006594481877982616, - -0.00977160781621933, - 0.012356618419289589, - 0.01605142280459404, - 0.0152799803763628, - -0.014833355322480202, - -0.037705954164266586, - 0.01586194522678852, - -0.015036366879940033, - -0.005264758598059416, - 0.018230410292744637, - -0.02587716653943062, - 0.02666214480996132, - 0.0005684315110556781, - -0.003437657142058015, - 0.012708503752946854, - -0.016944672912359238, - -0.021410919725894928, - -0.01618676446378231, - 0.010306204669177532, - 0.005555741023272276, - 0.007653524167835712, - -0.0022483495995402336, - -0.0029791900888085365, - 0.014251389540731907, - -0.0001362924522254616, - -0.002867533825337887, - -0.017810853198170662, - -0.008452034555375576, - -0.03702925145626068, - -0.01245812326669693, - 0.003329384373500943, - 0.014413798227906227, - -0.019137194380164146, - 0.05178140103816986, - 0.0012696661287918687, - -0.008695648051798344, - -0.04303838312625885, - 0.009020466357469559, - 0.006773808505386114, - -0.02220943011343479, - -0.004002705216407776, - 0.004807983059436083, - -0.019583817571401596, - -0.006242596078664064, - -0.005031295586377382, - -0.17139562964439392, - 0.007998643442988396, - 0.008167819119989872, - -0.028232097625732422, - 0.02958550676703453, - 0.006124172825366259, - 0.02077481709420681, - 0.017634909600019455, - -0.007843000814318657, - 0.01048891432583332, - 0.012918282300233841, - -0.005751985590904951, - 0.0005092198844067752, - -0.015212309546768665, - -0.027298245579004288, - 0.008932494558393955, - -0.019908636808395386, - 0.019367273896932602, - 0.018081534653902054, - 0.003914733417332172, - 0.009947551414370537, - 0.0030096417758613825, - 0.026201985776424408, - 0.0008183891186490655, - 0.0025951603893190622, - 0.028583982959389687, - -0.013940106146037579, - 0.02046353369951248, - -0.014955162070691586, - -0.004814750049263239, - 0.00396548630669713, - 0.01281000953167677, - 0.048181336373090744, - -0.023711713030934334, - -0.017946194857358932, - -0.00550160463899374, - -0.003435965394601226, - 0.008106916211545467, - -0.018785307183861732, - 0.016849933192133904, - -0.003332768101245165, - 0.009818977676331997, - -0.005836573429405689, - -0.00951446034014225, - -0.024767372757196426, - 0.018852977082133293, - 0.023197418078780174, - 0.0023024859838187695, - -0.007443745620548725, - -0.004611738957464695, - 0.019110126420855522, - -0.028529847040772438, - -0.02013871632516384, - 0.013764162547886372, - 0.010671624913811684, - 0.009920483455061913, - 0.001636778237298131, - -0.0010505832033231854, - -0.00554897403344512, - 0.007423444651067257, - 0.004236168228089809, - 0.0016646921867504716, - 0.014508537016808987, - -0.00861444417387247, - 0.02000337466597557, - -0.02536287158727646, - -0.02700049616396427, - 0.009500926360487938, - -0.012498726136982441, - 0.009839278645813465, - 0.02544407732784748, - -0.022926736623048782, - -0.013100992888212204, - -0.015686001628637314, - -0.003226187080144882, - 0.007152763195335865, - 0.0027237343601882458, - -0.006056502461433411, - 0.022114692255854607, - -0.009101671166718006, - -0.024158338084816933, - 0.03150734677910805, - 0.01023176684975624, - -0.02428014576435089, - 0.0014785985695198178, - 0.002720350632444024, - -0.0018998469458892941, - 0.0190289206802845, - 0.03218404948711395, - 0.006273047532886267, - 0.015320582315325737, - -0.022953804582357407, - -0.05202501639723778, - -0.01689053513109684, - 0.00439857691526413, - 0.019394341856241226, - -0.0050549800507724285, - -0.008113683201372623, - -0.00530874403193593, - -0.0030130252707749605, - 0.014549139887094498, - -0.0006686683045700192, - -0.016714593395590782, - 0.017919126898050308, - 0.016064956784248352, - -0.009873113594949245, - -0.01574013940989971, - 0.010346806608140469, - 0.05484010651707649, - 0.008905426599085331, - -0.030532890930771828, - -0.011463368311524391, - -0.007071558386087418, - 0.007430211640894413, - 0.004858735948801041, - 0.02724410966038704, - -0.02963964268565178, - -0.007971575483679771, - -0.004503466188907623, - -0.006611399818211794, - 0.05210622027516365, - 0.0029487384017556906, - -0.03218404948711395, - -0.017878523096442223, - -0.02387412264943123, - -0.020680079236626625, - -0.0908949002623558, - -0.012999487109482288, - 0.03516154736280441, - 0.021140238270163536, - 0.024956850335001945, - 0.012546095065772533, - -0.0018693952588364482, - 0.00682794488966465, - 0.020341727882623672, - 0.022574851289391518, - -0.029693778604269028, - -0.013168662786483765, - -0.019177796319127083, - -0.0068448628298938274, - 0.00944679044187069, - -0.008201654069125652, - -0.02568769082427025, - -0.03172389045357704, - -0.015401787124574184, - 0.033429186791181564, - 0.014197253622114658, - 0.01371679361909628, - -0.012498726136982441, - -0.0331314355134964, - -0.013743861578404903, - -0.003337843343615532, - -0.02543054334819317, - 0.013737094588577747, - 0.02453729324042797, - -0.006885464768856764, - 0.000508796947542578, - -0.01637624017894268, - 0.011693447828292847, - -0.04604295268654823, - 0.006218911148607731, - -0.004547452088445425, - -0.01832514815032482, - -0.02369817905128002, - 0.024645565077662468, - -0.03432243689894676, - 0.009602432139217854, - 0.0024699701461941004, - 0.018731171265244484, - -0.032860755920410156, - 0.006428689695894718, - -0.0042530857026577, - -0.006405004765838385, - -0.01779731921851635, - -0.010400942526757717, - -0.0028184729162603617, - -0.04233461245894432, - -0.019042454659938812, - -0.01481982134282589, - 0.002195904962718487, - 0.0061884596943855286, - -0.010204698890447617, - -0.003968869801610708, - -0.020598875358700752, - -0.024117736145853996, - 0.012403987348079681, - -0.02361697517335415, - -0.005802738014608622, - -0.015036366879940033, - 0.03093891404569149, - 0.0037015718407928944, - 0.00954829528927803, - 0.0010675007943063974, - 0.0005942308343946934, - -0.006773808505386114, - -0.009006932377815247, - -0.022574851289391518, - 0.014955162070691586, - -0.012904748320579529, - 0.019313136115670204, - -0.019895102828741074, - 0.000338352081598714, - -0.022601919248700142, - -0.006448990665376186, - 0.03351039066910744, - -0.019854500889778137, - -0.007924205623567104, - -0.03889695554971695, - 0.0021586862858384848, - -0.008749784901738167, - 0.021532725542783737, - 0.012654367834329605, - 0.008803920820355415, - 0.0036508189514279366, - 0.0017949577886611223, - -0.015943150967359543, - -0.0030011830385774374, - 0.008079847320914268, - 0.021086102351546288, - -0.021857544779777527, - 0.005839956924319267, - -0.007078325375914574, - -0.011720515787601471, - -0.022425975650548935, - -0.004131278954446316, - 0.005494837649166584, - -0.004121128469705582, - -0.009264079853892326, - -0.054921310395002365, - 0.017905592918395996, - 0.004784298595041037, - -0.03080357424914837, - -0.02958550676703453, - 0.019786829128861427, - 0.019394341856241226, - -0.009412954561412334, - 0.0017255955608561635, - -0.0001833445276133716, - -0.020815420895814896, - 0.024929780513048172, - 0.003432581899687648, - 0.01207240205258131, - -0.00027723723906092346, - -0.03237352892756462, - 0.007362541276961565, - -0.0006864317692816257, - -0.028719324618577957, - -0.005457619205117226, - -0.002556249964982271, - 0.0024141420144587755, - 0.012620532885193825, - -0.0031246815342456102, - -0.014589741826057434, - 0.008621211163699627, - 0.0015107420040294528, - -0.014048377983272076, - -0.015347650274634361, - 0.0023989162873476744, - 0.022696657106280327, - 0.0011630852241069078, - -0.007315171882510185, - 0.010522749274969101, - -0.01760784164071083, - 0.005088815465569496, - 0.027595994994044304, - 0.03275248035788536, - 0.03416002541780472, - 0.04774824529886246, - -0.0214921236038208, - -0.013567918911576271, - 0.03870747983455658, - -0.020788351073861122, - 0.004760613664984703, - -0.005965147167444229, - 0.00818812008947134, - 0.030181005597114563, - 0.010001687332987785, - -0.008452034555375576, - 0.027880212292075157, - 0.02128911204636097, - -0.0023583141155540943, - -0.0068448628298938274, - 0.030911846086382866, - -0.0269192922860384, - 0.03445777669548988, - 0.0064625246450304985, - 0.013852134346961975, - -0.030641164630651474, - 0.04341733828186989, - -0.03386227786540985, - -0.009196409955620766, - -0.007924205623567104, - 0.002165453275665641, - 0.0008365755202248693, - -0.03551343455910683, - 0.01391303725540638, - -0.010732527822256088, - -0.013547617010772228, - -0.008878358639776707, - 0.016944672912359238, - -0.029802050441503525, - 0.016538649797439575, - 0.00866858009248972, - 0.012336316518485546, - 0.0023278624285012484, - 0.03351039066910744, - 0.021911680698394775, - 0.008303159847855568, - 0.045988816767930984, - 0.006063269451260567, - -0.03148027881979942, - 0.019962772727012634, - 0.015821343287825584, - 0.03586532175540924, - -0.011334794573485851, - 0.024672633036971092, - -0.0177431832998991, - -0.006472675129771233, - 0.01610555872321129, - 0.017634909600019455, - 0.007464047055691481, - -0.011111482046544552, - 0.0024902713485062122, - -0.007552018389105797, - 0.008039245381951332, - -0.001709523843601346, - -0.005166636314243078, - 0.023210952058434486, - -0.00044789357343688607, - 0.013053623028099537, - 0.007464047055691481, - -0.017269490286707878, - -0.03318557143211365, - 0.0251869298517704, - -0.025349337607622147, - -0.05830483138561249, - -0.018988318741321564, - 0.03646082058548927, - -0.01139569841325283, - 0.015604797750711441, - 0.02413127012550831, - -0.006134323310106993, - -0.03112839162349701, - 0.002551174722611904, - -0.012931816279888153, - -0.008174586109817028, - -0.02667567878961563, - 0.03315850347280502, - 0.0185822956264019, - 0.022317703813314438, - 0.024943316355347633, - -0.00044493298628367484, - 0.01586194522678852, - -0.01488749124109745, - 0.018541693687438965, - -0.042686499655246735, - 0.016227366402745247, - 0.011037045158445835, - -0.011456601321697235, - 0.018433421850204468, - -0.005948229692876339, - -0.023210952058434486, - -0.0010150562738999724, - -0.023183884099125862, - 0.027853142470121384, - 0.009088137187063694, - 0.023386895656585693, - 0.07979695498943329, - 0.0038335290737450123, - -0.008526472374796867, - 0.007788864895701408, - 0.004144812934100628, - -0.024185406044125557, - -0.00036034497315995395, - -0.018595829606056213, - -0.027555393055081367, - -0.029666710644960403, - 0.002842157380655408, - -0.018595829606056213, - 0.005836573429405689, - -0.0340246856212616, - 0.0004669258778449148, - 0.016687525436282158, - -0.010854334570467472, - 0.0002880222164094448, - -0.02834036946296692, - 0.01889358088374138, - 0.011030278168618679, - 0.006963285617530346, - -0.012376919388771057, - 0.01657925173640251, - -0.03345625475049019, - -0.0214921236038208, - 0.022304169833660126, - -0.015523593872785568, - 0.001373709412291646, - -0.03600066155195236, - 0.005237690173089504, - 0.013155128806829453, - -0.06333950906991959, - -0.027690734714269638, - 0.023278623819351196, - -0.03177802637219429, - 0.02654033713042736, - 0.004703093785792589, - 0.004601588472723961, - -0.005887326318770647, - -0.009967852383852005, - 0.025335803627967834, - -0.02428014576435089, - -0.02368464507162571, - -0.03600066155195236, - -0.00866858009248972, - -0.01644391193985939, - 0.007579086814075708, - -0.03015393763780594 - ], - "sparse": "SparseEmbedding(values=array([1.78227848, 2.11008174, 1.49787234, 1.78227848, 1.49787234,\n 1.49787234, 1.49787234, 1.49787234, 1.49787234, 1.49787234,\n 1.49787234, 1.49787234, 2.09108911, 1.9027027 , 1.49787234,\n 1.49787234, 1.49787234, 1.49787234, 1.49787234, 1.49787234,\n 1.49787234, 1.49787234, 1.49787234, 1.49787234, 1.49787234,\n 1.49787234]), indices=array([1641614904, 1810453357, 762622902, 408270109, 496729847,\n 164058840, 47951928, 2122794914, 134490412, 1515684580,\n 997168741, 231980230, 524783164, 19522071, 264741300,\n 516830072, 1394226660, 670727360, 602572328, 1114505193,\n 337416142, 1981992371, 433033979, 1244437960, 1677166423,\n 1955583600]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 14, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 35 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000015.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000015.json deleted file mode 100644 index ab3b0a8365b8b657f67523dc92704759b25dbb55..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000015.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000015", - "content": "Arbeitspaket 1: Entwurf Gesamtkonzept, Techn. Integration, Entw. des Demonstrators . 2", - "embedding": { - "dense": [ - 0.013033419847488403, - -0.002795464126393199, - -0.0005749068805016577, - -0.006427755579352379, - -0.0023655195254832506, - 0.008572537451982498, - -0.027226535603404045, - 0.004157779272645712, - -0.004925420042127371, - -0.027384677901864052, - 0.006058760918676853, - 0.012927992269396782, - -0.019200902432203293, - 0.005277941934764385, - -0.019793929532170296, - 0.006651788018643856, - 0.0019042761996388435, - -0.008078347891569138, - 0.01038456428796053, - 0.0046519688330590725, - -0.014127224683761597, - 0.008704321458935738, - 0.019424933940172195, - 0.010430688969790936, - 0.0009702583774924278, - 0.003633938729763031, - 0.003818436060100794, - -0.02828080765902996, - -0.013534197583794594, - 0.005044025368988514, - 0.01396908424794674, - -0.017540425062179565, - -0.004796931054443121, - -0.01734274998307228, - -0.009771769866347313, - -0.028069952502846718, - -0.01875283755362034, - 0.01245357096195221, - 0.02601412497460842, - 0.00034613843308761716, - 0.0126973707228899, - 0.03154904395341873, - -8.313705620821565e-05, - -0.0003177225589752197, - 0.006220195908099413, - 0.00461572827771306, - 0.004352160729467869, - -0.008552770130336285, - -0.017817171290516853, - 0.031364548951387405, - 0.005696355365216732, - 0.022693173959851265, - -0.03144361823797226, - -0.007366715464740992, - -0.010562472976744175, - -0.006589191034436226, - -0.034000225365161896, - 0.036635901778936386, - 0.00924463476985693, - -0.00747873168438673, - -0.023207129910588264, - 1.3667423445440363e-05, - -0.022535033524036407, - -0.021335799247026443, - -0.03434286266565323, - -0.015418706461787224, - -0.0015558727318421006, - 0.019952069967985153, - -0.012262484058737755, - -0.006744036916643381, - 0.0575631707906723, - 0.02287767082452774, - 0.00010758913413155824, - -0.00986401829868555, - 0.02727925032377243, - -0.01238767895847559, - 0.005590928252786398, - -0.027331963181495667, - -0.005709534045308828, - -0.01382412202656269, - 0.015537312254309654, - -0.018555160611867905, - -0.02677847072482109, - 0.010272548533976078, - 0.017382284626364708, - 0.03381572663784027, - -0.005894031375646591, - 0.005959922913461924, - -0.010292315855622292, - 0.0003867031482513994, - 0.015076068229973316, - 0.01237450074404478, - 0.011577208526432514, - 0.02730560675263405, - -0.01483885757625103, - -0.010094640776515007, - 0.0026043776888400316, - 0.015906305983662605, - 0.009560915641486645, - -0.038032811135053635, - 0.0036570008378475904, - 0.004147895611822605, - -0.023839691653847694, - -0.011774883605539799, - -0.044938281178474426, - -0.026475368067622185, - 0.029466861858963966, - 0.0015196321764960885, - 0.011979148723185062, - 0.003515333402901888, - -0.027490103617310524, - 0.015010177157819271, - -0.030652916058897972, - -0.013626446947455406, - 0.02464357390999794, - -0.04161733016371727, - -0.0009496671264059842, - -0.002981608733534813, - 0.0064013986848294735, - -0.013560554943978786, - 0.016156695783138275, - 0.003633938729763031, - 0.023813335224986076, - -0.02389240637421608, - 0.026224980130791664, - 0.0212699081748724, - 0.0011918199015781283, - 0.004691503942012787, - -0.017408642917871475, - -0.014878393150866032, - -0.012242716737091541, - 0.0017955545336008072, - 0.009560915641486645, - 0.011590386740863323, - -0.00994308851659298, - 0.00024338823277503252, - -0.024854427203536034, - 0.020821843296289444, - -0.03687311336398125, - -0.03921886533498764, - 0.024076903238892555, - 0.023576125502586365, - -0.019517183303833008, - -0.006806633900851011, - 0.022785421460866928, - 0.01672336645424366, - 0.014535754919052124, - 0.028228092938661575, - -0.0026702696923166513, - -0.02893972583115101, - -0.01396908424794674, - -0.011610154062509537, - 0.0059928689152002335, - -0.011346586979925632, - -0.00559751782566309, - 0.0053636012598872185, - -0.01011440809816122, - -0.01068766787648201, - -0.023958297446370125, - 0.0029272481333464384, - 0.010595418512821198, - -0.01887144334614277, - -0.0001879978517536074, - 0.008348505012691021, - 0.01407451182603836, - 0.009745413437485695, - 0.011274105869233608, - 0.0028728873003274202, - 0.02087455615401268, - -0.00015824353613425046, - 0.002306216862052679, - -0.006991131231188774, - -0.026699401438236237, - 0.03508085012435913, - -0.008150829002261162, - 0.001329369260929525, - -0.0021942006424069405, - -0.01150472741574049, - -0.03133819252252579, - -0.02501256763935089, - -0.010167121887207031, - -0.0066221365705132484, - 0.01698693446815014, - 0.016433442011475563, - -0.028491660952568054, - -0.005475617479532957, - 0.013119079172611237, - 0.014680717140436172, - 0.008104704320430756, - -0.00018686533439904451, - 0.006971363909542561, - 0.024814892560243607, - 0.012038451619446278, - 0.004655263386666775, - -0.6481655240058899, - -0.00031895801657810807, - -0.011722170747816563, - -0.03850723057985306, - 0.0008557711844332516, - 0.0173691064119339, - 0.03031027689576149, - -0.007538034114986658, - 0.01407451182603836, - 0.003327541286125779, - 0.004757395945489407, - 0.003291300730779767, - 0.0028794764075428247, - -0.006019225809723139, - -0.005699649918824434, - -0.02717382274568081, - -0.0031974047888070345, - -0.0191350094974041, - 0.003808552399277687, - 0.004460882395505905, - -0.023984653875231743, - -0.006786866579204798, - -0.005584339145570993, - -0.019161367788910866, - 0.011247748509049416, - -0.009976034983992577, - -0.005416315048933029, - -0.0009694346808828413, - -0.004217082168906927, - 0.018159810453653336, - -0.008098115213215351, - 0.020176101475954056, - -0.014865214936435223, - 0.0015797584783285856, - 0.03392115607857704, - 0.02814902365207672, - -0.014469862915575504, - 0.013165202923119068, - 0.0076698181219398975, - 0.0337103009223938, - -0.024419540539383888, - 0.015814058482646942, - -0.01885826326906681, - -0.02063734643161297, - 0.025302492082118988, - 0.011623332276940346, - 0.03568705916404724, - 0.007663229014724493, - -0.013573733158409595, - -0.008216721005737782, - 0.02830716408789158, - -0.007386482786387205, - 0.0040227011777460575, - 0.012176824733614922, - 0.024235043674707413, - 0.004072119947522879, - 0.007900440134108067, - -0.02904515340924263, - -0.017263680696487427, - 0.010661310516297817, - 0.004576193168759346, - 0.00048183457693085074, - -0.012414035387337208, - -0.04064212739467621, - -0.01922725886106491, - 0.014614825136959553, - -0.007155861239880323, - -0.0009216630714945495, - 0.01672336645424366, - -0.008091526105999947, - -0.0008302380447275937, - 0.023062167689204216, - 0.0028712397906929255, - 0.004533363506197929, - 0.015761343762278557, - -0.011511316522955894, - 0.00867137499153614, - -0.010779916308820248, - -0.010806272737681866, - 0.0071097370237112045, - 0.0005979690467938781, - -0.010259370319545269, - -0.0037261873949319124, - 0.005439376924186945, - 0.034659143537282944, - -0.012097754515707493, - -0.031153693795204163, - -0.022693173959851265, - 0.006997720804065466, - 0.0036998307332396507, - 0.02162572368979454, - 0.013837301172316074, - -0.01821252331137657, - 0.007129504345357418, - -0.0016950693679973483, - 0.03718939423561096, - -0.0033291885629296303, - 0.024683108553290367, - 0.015286922454833984, - -0.024735823273658752, - -0.02701568230986595, - 0.010364796966314316, - 0.03608240932226181, - -0.004032584838569164, - 0.02501256763935089, - -0.00023247489298228174, - -0.014127224683761597, - 0.0133233442902565, - 0.0412219762802124, - 0.0062498473562300205, - -0.01232178695499897, - -0.014259008690714836, - -0.01723732240498066, - -0.010397743433713913, - -0.00868455320596695, - -0.03745296224951744, - 0.005890736822038889, - -0.011919845826923847, - 0.003040911629796028, - -0.0035548685118556023, - 0.011399299837648869, - -0.009079905226826668, - 0.022442784160375595, - -0.026343584060668945, - -0.002253503305837512, - 0.03273509815335274, - -0.029862212017178535, - -0.015655918046832085, - -0.006846169475466013, - -0.0012140583712607622, - -0.0014026740100234747, - -0.0042006089352071285, - 0.012684192508459091, - 0.0049682497046887875, - 0.0034000223968178034, - 0.004731039050966501, - 0.010002391412854195, - -0.003032675012946129, - -0.01812027394771576, - -0.030600201338529587, - -0.010410921648144722, - -0.0001019780247588642, - 0.001927338307723403, - -0.02654126100242138, - 0.003245176514610648, - -0.011702402494847775, - -0.0021398398093879223, - -0.006767098791897297, - 0.010483402758836746, - 0.036530472338199615, - -0.016248945146799088, - -0.011083018966019154, - -0.009732235223054886, - 0.0019487531390041113, - 0.022429605945944786, - -0.04011499509215355, - 0.003633938729763031, - -0.010338440537452698, - -0.005785309709608555, - -0.030837412923574448, - 0.01960943266749382, - 0.015221030451357365, - -0.029862212017178535, - 0.015352814458310604, - -0.012084576301276684, - -0.0026570912450551987, - 0.005442671477794647, - 0.015550490468740463, - -0.030336635187268257, - -0.03884986788034439, - 0.010872164741158485, - -0.00797292124480009, - -0.008565948344767094, - -0.003535100957378745, - -0.006042288150638342, - -0.0012519462034106255, - -0.006786866579204798, - -0.00048677646555006504, - -0.011280694976449013, - 9.538883023196831e-05, - 0.010845808312296867, - 0.01899004727602005, - -0.010562472976744175, - -0.0003325482248328626, - 0.03610876575112343, - -0.008019044995307922, - -0.0016456503653898835, - 0.012446981854736805, - -0.005330655258148909, - 0.006345390807837248, - -0.001793907256796956, - 0.02978314273059368, - 0.0013581969542428851, - 0.009712466970086098, - -0.017448177561163902, - 0.0005736714228987694, - -0.009014013223350048, - 0.017790814861655235, - 0.0030491480138152838, - 0.012143878266215324, - 0.04101112484931946, - -0.006312444806098938, - 0.004905652720481157, - -0.010615186765789986, - 0.03921886533498764, - -0.030837412923574448, - 0.023562947288155556, - -0.012367911636829376, - 0.03320952132344246, - 0.009191920980811119, - 0.014456684701144695, - -0.03637233376502991, - -0.016552047803997993, - 0.007373304571956396, - 0.015814058482646942, - 0.03139090538024902, - -0.01757996156811714, - 0.019780751317739487, - -0.0046651470474898815, - -0.007314001675695181, - 0.011985737830400467, - 0.0014578584814444184, - 0.021401692181825638, - -0.020215637981891632, - -0.008552770130336285, - 0.003039264352992177, - 0.01647297665476799, - 0.025961412116885185, - 0.012908224947750568, - 0.016038089990615845, - -0.004536658059805632, - 0.004510301165282726, - -0.004082003608345985, - 0.015524134039878845, - 0.039192505180835724, - 0.01910865306854248, - 0.009481845423579216, - -0.0164861548691988, - 0.0432778038084507, - 0.019411755725741386, - 0.0004983075778000057, - 0.034659143537282944, - 0.005877558141946793, - 0.006095001474022865, - 0.015484598465263844, - -0.015260566025972366, - 0.01302024070173502, - 0.0369521826505661, - -0.022455962374806404, - 0.007827959023416042, - -0.028201736509799957, - 0.007992688566446304, - -0.014469862915575504, - -0.024169152602553368, - 0.018950512632727623, - -0.013165202923119068, - 0.0347382128238678, - -0.006964774802327156, - 0.008908585645258427, - 0.014812501147389412, - 0.010924878530204296, - 0.008032223209738731, - 0.011985737830400467, - 0.013745051808655262, - -0.0026060249656438828, - -0.006826401688158512, - 0.008407807908952236, - -0.01987299881875515, - -0.007050434127449989, - -0.021072233095765114, - 0.018528804183006287, - 0.0024956560228019953, - -0.02124355174601078, - -0.012367911636829376, - 0.00187791942153126, - 0.0056897662580013275, - 0.0029107751324772835, - 0.016881506890058517, - 0.036161478608846664, - 0.020795486867427826, - -0.023444341495633125, - -0.006582601461559534, - -0.00980471633374691, - 0.018924156203866005, - -0.002573078963905573, - 0.00040317612001672387, - -0.008500056341290474, - 0.01382412202656269, - -0.001092158374376595, - -0.003564752172678709, - 0.0010715671814978123, - 0.005228522699326277, - 0.01055588386952877, - 0.00892176479101181, - 0.0020887735299766064, - -0.024485433474183083, - 0.01645979844033718, - -0.0048166983760893345, - -0.014298544265329838, - -0.001176170539110899, - -0.008770212531089783, - -0.004147895611822605, - 0.006029109470546246, - -0.016275301575660706, - 0.04454293102025986, - 0.008625251241028309, - -0.010120997205376625, - -0.0212699081748724, - 0.0054459660314023495, - -0.022838136181235313, - 0.025948233902454376, - 0.0063058556988835335, - 0.011603564955294132, - 0.003260002238675952, - -0.004052352160215378, - -0.021704794839024544, - -0.01711871847510338, - -0.010417510755360126, - 0.033367663621902466, - 0.003396727843210101, - -0.008223310112953186, - 0.004829877056181431, - -0.017039647325873375, - 0.03921886533498764, - 0.0540313646197319, - 0.03210253641009331, - 0.009837661869823933, - 0.01912183128297329, - -0.024920320138335228, - -0.026198621839284897, - -0.022403249517083168, - -0.05297709256410599, - 0.011379532516002655, - -0.009106261655688286, - 0.008236488327383995, - -0.01572180911898613, - 0.006322328466922045, - -0.006144420243799686, - 0.009870607405900955, - -0.008210131898522377, - 0.00892176479101181, - 0.000948019849602133, - 0.03832273557782173, - 0.019635789096355438, - -0.013639625161886215, - -0.018673766404390335, - 0.003584519727155566, - 0.008967888541519642, - 0.0043389820493757725, - -0.0326823852956295, - 0.011175267398357391, - 0.030731985345482826, - -0.006407988257706165, - -0.039166148751974106, - 0.011662867851555347, - 4.699946293840185e-05, - 0.005419609602540731, - 0.021348977461457253, - -0.04628247767686844, - 0.012249305844306946, - 0.001928985584527254, - 0.026554439216852188, - 0.01935904286801815, - 0.00868455320596695, - -0.0030442061834037304, - 0.001529515953734517, - -0.0019504005322232842, - -0.022231929004192352, - 0.0008689495152793825, - 0.015115603804588318, - -0.029651358723640442, - 0.008954710327088833, - -0.006220195908099413, - -0.0232598427683115, - 0.012980706058442593, - 0.013369468040764332, - -0.0010452104033902287, - 0.0011802888475358486, - 0.012183413840830326, - -0.01251946296542883, - -0.0033506036270409822, - -0.020044319331645966, - 0.010819450952112675, - -0.038296375423669815, - -0.025552881881594658, - -0.03057384490966797, - 0.0036932413931936026, - -0.016697010025382042, - -0.013310165144503117, - -0.015392350032925606, - -0.010259370319545269, - 0.006151009816676378, - -0.03505449369549751, - 0.0026867424603551626, - -0.004411463160067797, - -0.008341915905475616, - -0.015919484198093414, - -0.00270651001483202, - 0.018897799775004387, - -0.0024511790834367275, - 0.00525158504024148, - -0.011017126962542534, - -0.004622317384928465, - 0.007142683025449514, - -0.010694256983697414, - -0.010615186765789986, - -0.0030277331825345755, - -0.02349705435335636, - -0.013119079172611237, - -0.004605844616889954, - -0.02904515340924263, - -0.01645979844033718, - -0.002900891238823533, - 0.020057497546076775, - 0.0032303507905453444, - -0.006118063814938068, - 0.004068825393915176, - -0.014443506486713886, - -0.019688501954078674, - 0.0034889765083789825, - 0.00980471633374691, - 0.007663229014724493, - 0.013995441608130932, - -0.006170777138322592, - -0.004813403822481632, - -0.012822565622627735, - 0.00047853999421931803, - -0.002507187193259597, - 0.005917093250900507, - 0.01478614378720522, - -0.010766738094389439, - 0.019082296639680862, - -0.019635789096355438, - 0.001679420005530119, - 0.03961421549320221, - -0.014496220275759697, - -0.005729301366955042, - -0.00011644335609162226, - -0.006104885134845972, - 0.03668861463665962, - -0.019583074375987053, - -0.009053547866642475, - 0.02553970366716385, - -0.006918650586158037, - 0.008526412770152092, - -0.010120997205376625, - 0.017922598868608475, - 0.013679159805178642, - -0.008743856102228165, - 0.030204851180315018, - 0.0052120499312877655, - -0.003360487287864089, - -0.00936324056237936, - 0.006806633900851011, - -0.010595418512821198, - 0.013198149390518665, - 0.008645018562674522, - 0.004210493061691523, - -0.011531083844602108, - 0.006832990795373917, - 0.0061674825847148895, - 0.02099316194653511, - -0.013013651594519615, - -0.009745413437485695, - 0.0010979239596053958, - 0.005007784813642502, - 0.0035944036208093166, - 0.006925239693373442, - 0.012756673619151115, - -0.03146997466683388, - -0.012835743837058544, - 0.014008619822561741, - -0.03421108052134514, - 0.03687311336398125, - -0.006266320589929819, - -0.01174852717667818, - -0.028386233374476433, - 0.012835743837058544, - -0.0003278122458141297, - -0.03471185639500618, - -0.011801240965723991, - -0.006786866579204798, - -0.0015888186171650887, - 0.036767683923244476, - 0.023075345903635025, - -0.0040227011777460575, - 0.02190246991813183, - -0.003844792954623699, - 0.011952792294323444, - 0.024169152602553368, - 0.013652803376317024, - -0.011056662537157536, - -0.03750567510724068, - 0.00021167776139918715, - 0.008967888541519642, - 0.011774883605539799, - 0.025552881881594658, - 0.025579238310456276, - 0.028465304523706436, - 0.02538156323134899, - -0.007775245234370232, - -0.010984181426465511, - 0.018792372196912766, - -0.022073788568377495, - 0.0020525329746305943, - -0.006674850359559059, - -0.010905111208558083, - -0.0027905222959816456, - -0.023945119231939316, - 0.01934586465358734, - 0.02601412497460842, - -0.0036570008378475904, - 0.0024528263602405787, - 0.028465304523706436, - 0.011227981187403202, - -0.007300823461264372, - 0.04164368659257889, - 0.0023819925263524055, - -0.01163651142269373, - 0.0007112207822501659, - -0.01748771220445633, - -0.022851314395666122, - 0.010318673215806484, - 0.03734753280878067, - 0.030521132051944733, - 0.024973032996058464, - 0.001092158374376595, - -0.020307885482907295, - -0.006407988257706165, - 0.013863657601177692, - -0.0009768474847078323, - -0.01698693446815014, - -0.016301658004522324, - -0.0051988717168569565, - -0.0019388693617656827, - -0.02062416635453701, - -0.01559002511203289, - -0.02601412497460842, - 0.027200179174542427, - 0.005324066150933504, - -0.016907863318920135, - 0.01757996156811714, - -0.00603899359703064, - -0.0020755950827151537, - 0.028755228966474533, - -0.03700489550828934, - 0.03687311336398125, - 0.01647297665476799, - 0.03418472036719322, - 0.04153825715184212, - -0.008091526105999947, - -0.02349705435335636, - -0.05379415303468704, - 0.005673293489962816, - 0.005106622818857431, - 0.018159810453653336, - 0.0214939396828413, - -0.007215164136141539, - -0.02626451477408409, - 0.012664425186812878, - 0.005709534045308828, - -0.008025634102523327, - -0.011333407834172249, - 0.023075345903635025, - 0.00456301448866725, - 0.006450817920267582, - -0.006351979915052652, - 0.009455488994717598, - 0.0009924968471750617, - -0.0004748335632029921, - 0.014601646922528744, - -0.005917093250900507, - 0.00830896943807602, - -0.0054327878169715405, - -0.007663229014724493, - 0.037663813680410385, - -0.009053547866642475, - 0.02352341078221798, - 0.014759787358343601, - -0.03850723057985306, - 0.016433442011475563, - -0.028386233374476433, - 0.01478614378720522, - 0.02577691525220871, - 0.006157598923891783, - 0.020545097067952156, - -0.0011531084310263395, - 0.010733791626989841, - -0.007939974777400494, - -0.011544262059032917, - -0.011676046065986156, - 0.021823400631546974, - -0.0008392981835640967, - 0.01859469711780548, - 0.0053636012598872185, - -0.024182330816984177, - -0.007373304571956396, - 0.0013680807314813137, - 0.03813823685050011, - -0.0021596073638647795, - -0.006358569022268057, - -0.03584519773721695, - -0.024090081453323364, - -0.006813223473727703, - 0.004566309042274952, - 0.0020097033120691776, - 0.0037591333966702223, - -0.011623332276940346, - 0.004289563279598951, - -0.022666815668344498, - -0.0011877015931531787, - 0.005172514822334051, - 0.010430688969790936, - -0.0440157949924469, - 0.010153942741453648, - 0.02000478282570839, - -0.002970077795907855, - 0.004767279606312513, - 0.0022666817530989647, - 0.007650050334632397, - 0.006846169475466013, - -0.0002238265733467415, - -0.02161254547536373, - 0.009883786551654339, - 0.020294707268476486, - 0.010588829405605793, - -0.0014949226751923561, - 0.012407446280121803, - -0.010239602997899055, - -0.015379171818494797, - 0.033130452036857605, - -0.013046598061919212, - -0.02386604994535446, - -0.004042468499392271, - 0.0006337977829389274, - -0.0013252509525045753, - -0.013850479386746883, - -0.01189348939806223, - 0.02513117343187332, - -0.008506645448505878, - 0.008071758784353733, - -0.008196953684091568, - -0.01809391751885414, - 0.02677847072482109, - 0.003358840011060238, - 0.0008199424482882023, - 0.024959854781627655, - -0.029967639595270157, - 0.0037261873949319124, - 0.029387790709733963, - -0.011926434934139252, - 0.000878833350725472, - -0.032392460852861404, - -0.008592304773628712, - -0.01673654466867447, - 0.03044206090271473, - -0.026106374338269234, - 0.019675323739647865, - -0.00848028901964426, - -0.029993996024131775, - -0.012354732491075993, - 0.0054327878169715405, - 0.00785431545227766, - -0.017303215339779854, - 0.0009241339867003262, - -0.0035779306199401617, - -0.002149723470211029, - 0.008355094119906425, - -0.01477296557277441, - -0.004233554936945438, - -0.012473338283598423, - -0.02376062236726284, - -0.012796208262443542, - 0.007722531445324421, - -0.007841137237846851, - 0.024050546810030937, - 0.0032352926209568977, - -0.019398577511310577, - 0.009185331873595715, - -0.011557440273463726, - -0.04825923219323158, - -0.012671014294028282, - -0.00375583884306252, - 0.008776802569627762, - 0.009218278340995312, - 0.03146997466683388, - -0.009541148319840431, - 0.015524134039878845, - 0.016301658004522324, - 0.018686944618821144, - -0.03418472036719322, - -0.025328850373625755, - 0.018014848232269287, - -0.015537312254309654, - 0.023299379274249077, - 0.004282974172383547, - -0.04649332910776138, - -0.011478370055556297, - 0.030494775623083115, - 0.018634231761097908, - -0.004922125488519669, - 0.013152024708688259, - 0.0019322802545502782, - -0.020571453496813774, - -0.003446146845817566, - -0.005511858034878969, - -0.021441226825118065, - 0.01056906208395958, - 0.0058413175866007805, - -0.012348143383860588, - 0.007907029241323471, - 0.007538034114986658, - -0.007781834341585636, - -0.02915058098733425, - -0.03718939423561096, - 0.008170596323907375, - -0.0006445051985792816, - 0.011491549201309681, - 0.015497776679694653, - -0.0004896592581644654, - -0.00038443811354227364, - -0.030362991616129875, - -0.0008829515427350998, - 0.00994308851659298, - -0.021190837025642395, - 0.015682274475693703, - 0.02124355174601078, - 0.017883064225316048, - -0.005571160931140184, - -0.005011079832911491, - -0.037690170109272, - -0.0001090305158868432, - 0.023813335224986076, - -0.012124110944569111, - 0.01711871847510338, - -0.00861866120249033, - -0.013290397822856903, - -0.015194674022495747, - -0.004731039050966501, - -0.026752114295959473, - 0.007320590782910585, - 0.007781834341585636, - 0.018924156203866005, - 0.02538156323134899, - -0.010483402758836746, - 0.015418706461787224, - -0.0214939396828413, - 0.021968362852931023, - -0.004806814715266228, - -0.008836104534566402, - -0.007221753243356943, - -0.012124110944569111, - 0.004177547059953213, - -0.006355274468660355, - -0.0005423727561719716, - 0.0037163037341088057, - 0.015115603804588318, - 0.007663229014724493, - -0.007887260988354683, - 0.006513414904475212, - 0.19082295894622803, - -0.004546541720628738, - 0.0011531084310263395, - 0.022943561896681786, - -0.003587814513593912, - -0.015128782019019127, - 0.015774521976709366, - 0.0103054940700531, - 0.01609080471098423, - 0.03774288669228554, - -0.009277580305933952, - 0.0011366354301571846, - -0.005969807039946318, - -0.008190364576876163, - 0.0052944147028028965, - -0.014245830476284027, - -0.043462302535772324, - -0.014100868254899979, - -0.023984653875231743, - 0.045465417206287384, - 0.03320952132344246, - -0.024933498352766037, - 0.02449861168861389, - -0.033262234181165695, - -0.0042434390634298325, - 0.013224505819380283, - -0.025078460574150085, - 0.015036533586680889, - -0.0021414870861917734, - -0.0039040956180542707, - -0.021401692181825638, - -0.001144871930591762, - 0.010279137641191483, - 0.0015945842023938894, - -0.006529888138175011, - 0.003969987388700247, - -0.002694979077205062, - -0.025974590331315994, - 0.00695159612223506, - 0.015207852236926556, - -0.006599074695259333, - -0.004698093049228191, - -0.023180773481726646, - -0.017698567360639572, - -0.004450998269021511, - 0.02225828729569912, - -0.019438112154603004, - -0.0005658467416651547, - 0.023444341495633125, - -0.02188929170370102, - -0.01659158244729042, - 0.013125668279826641, - 0.012183413840830326, - 0.03521263599395752, - -0.0006877467967569828, - 0.02426140010356903, - 0.004829877056181431, - -0.011840775609016418, - -0.01006169430911541, - 0.011959381401538849, - -0.020452847704291344, - 0.030863769352436066, - -0.012064808048307896, - 0.022073788568377495, - 0.0015797584783285856, - -0.0012939523439854383, - 0.009422542527318, - 0.00754462368786335, - -0.003887622617185116, - -0.024933498352766037, - 0.005814960692077875, - -0.03183896839618683, - -0.02501256763935089, - 0.0212699081748724, - -0.01661793887615204, - -0.02928236313164234, - 0.014535754919052124, - 0.01263147871941328, - 0.019938891753554344, - 0.03563434258103371, - -0.004902358166873455, - 0.017632674425840378, - -0.008697732351720333, - -0.015893127769231796, - 0.013863657601177692, - -0.03133819252252579, - 0.04211810603737831, - 0.018673766404390335, - -0.008071758784353733, - -0.012348143383860588, - -0.005511858034878969, - -0.024063725024461746, - -0.007439196575433016, - -0.008058580569922924, - 0.012914814054965973, - 0.030152136459946632, - 0.03131183609366417, - 0.018845085054636, - -0.010430688969790936, - 0.0055250367149710655, - -0.014390792697668076, - 0.08987656235694885, - 0.034395575523376465, - -0.007762067019939423, - -0.012941170483827591, - -0.0016950693679973483, - 0.0014100868720561266, - 0.0022502087522298098, - 0.019187724217772484, - -0.024669930338859558, - -0.016565226018428802, - -0.013586911372840405, - 0.022192394360899925, - 0.007768656127154827, - -0.007346947677433491, - 0.013507841154932976, - 0.0034164953976869583, - -0.023931941017508507, - 0.020031139254570007, - -0.012157057411968708, - -0.003979871049523354, - 0.0003502566833049059, - 0.0003792902862187475, - 0.016552047803997993, - -0.016657473519444466, - -0.023444341495633125, - -0.010905111208558083, - -0.0025318965781480074, - 0.013250863179564476, - -0.010483402758836746, - 0.01395590603351593, - -0.01759313978254795, - 0.013626446947455406, - -0.03284052759408951, - 0.008381450548768044, - 0.014996998012065887, - 0.0031183345708996058, - 0.0034000223968178034, - -0.007887260988354683, - 0.007538034114986658, - 0.02162572368979454, - 0.001527868676930666, - -0.010806272737681866, - -0.003396727843210101, - -0.010094640776515007, - -0.016512511298060417, - 0.010819450952112675, - -0.0024314115289598703, - -0.01786988601088524, - -0.011596975848078728, - 0.0013516077306121588, - 0.00034634434268809855, - -0.018331129103899002, - -0.030204851180315018, - 0.03057384490966797, - 0.008144239895045757, - -0.011148910969495773, - -0.013705517165362835, - -0.014628003351390362, - -0.018317950889468193, - -0.028359876945614815, - -0.023470697924494743, - 0.008249666541814804, - -0.01396908424794674, - -0.022297821938991547, - 0.023549767211079597, - -0.1682615727186203, - 0.004717860836535692, - 0.019069118425250053, - -0.026989325881004333, - 0.012987295165657997, - -0.0076829963363707066, - 0.015879949554800987, - -0.014588468708097935, - -0.020716415718197823, - 0.0052944147028028965, - 0.029229650273919106, - 0.004411463160067797, - -0.012730316258966923, - -0.024722643196582794, - 0.005900620482861996, - 0.005067087709903717, - -0.04952435940504074, - 0.026593973860144615, - 0.022706352174282074, - -0.006688028573989868, - 0.0005526683526113629, - -0.029888570308685303, - -0.0016744781751185656, - -0.016051268205046654, - 0.002968430519104004, - 0.01722414419054985, - -0.017803993076086044, - 0.02589551918208599, - -0.0040358793921768665, - -0.005340539384633303, - -0.00035561039112508297, - 0.0106349540874362, - 0.026132730767130852, - 0.021032696589827538, - 0.009798126295208931, - -0.008539590984582901, - -0.007472142577171326, - -0.009679521434009075, - -0.008987655863165855, - 0.007030666805803776, - 0.0029651359654963017, - 0.007907029241323471, - -0.010022159665822983, - -0.012150468304753304, - -0.03771652653813362, - 0.01408769004046917, - 0.011491549201309681, - 0.001400203094817698, - -0.005416315048933029, - -0.02100634016096592, - 0.021454405039548874, - -0.03671497106552124, - -0.010470224544405937, - 0.0066221365705132484, - 0.015642739832401276, - 0.0033901387359946966, - 0.0022782126907259226, - 0.0017313099233433604, - -0.0011934671783819795, - 0.015814058482646942, - -0.002694979077205062, - -0.030152136459946632, - -0.007057023234665394, - -0.0025714316871017218, - -0.025486990809440613, - -0.006546360906213522, - 0.0106349540874362, - 0.008025634102523327, - -0.02224510908126831, - 0.017948955297470093, - 0.007551212795078754, - -0.01570863090455532, - 0.0032847116235643625, - -0.029519574716687202, - -0.005544804036617279, - -0.005571160931140184, - -0.02049238421022892, - 0.001066625234670937, - 0.027226535603404045, - -0.02515752986073494, - 0.0002030294417636469, - 0.04965614154934883, - 0.016921041533350945, - -0.023483876138925552, - -0.0025055399164557457, - 0.008276023901998997, - 0.0015064537292346358, - 0.014048154465854168, - 0.011992326937615871, - -0.0022633869666606188, - 0.009949678555130959, - -0.02957228757441044, - -0.022587746381759644, - -0.009758591651916504, - 0.013494662940502167, - 0.01082604005932808, - -0.002676858799532056, - 0.004470766056329012, - -0.012618300504982471, - -0.01682879403233528, - 0.024195509031414986, - 0.014285366050899029, - -0.03805916756391525, - 0.019912535324692726, - 0.01900322549045086, - 0.005330655258148909, - 0.012605122290551662, - 0.012348143383860588, - 0.04024677723646164, - -0.004918830934911966, - -0.015352814458310604, - 0.010410921648144722, - -0.003307773731648922, - 0.03674132749438286, - 0.021151302382349968, - 0.02476217970252037, - 0.00962021853774786, - -0.0054459660314023495, - 0.020545097067952156, - 0.005357012152671814, - 0.059302717447280884, - -0.003348956350237131, - -0.04275067150592804, - 0.006813223473727703, - -0.0072481101378798485, - -0.008974477648735046, - -0.061411257833242416, - -0.015655918046832085, - 0.03220796585083008, - 0.03244517743587494, - 0.01837066374719143, - 0.04051034525036812, - -0.0060620554722845554, - -0.004128127824515104, - -0.004052352160215378, - 0.02767460234463215, - -0.012097754515707493, - -0.035397134721279144, - -0.03220796585083008, - -0.018041204661130905, - 0.030152136459946632, - -0.02087455615401268, - -0.005330655258148909, - -0.013211327604949474, - -0.009949678555130959, - 0.018568338826298714, - 0.004609139170497656, - 0.0036405278369784355, - 0.008440753445029259, - -0.026435833424329758, - -0.03971964120864868, - 0.02111176773905754, - -0.016183052211999893, - 0.009811305440962315, - 0.02828080765902996, - -0.01570863090455532, - 0.008757034316658974, - -0.014377614483237267, - 0.021573010832071304, - -0.03869172930717468, - 0.010536116547882557, - 0.003105156123638153, - -0.02299627661705017, - -0.036504115909338, - 0.010845808312296867, - 0.0100089805200696, - 0.010720613412559032, - -0.0003603463701438159, - -0.007228342350572348, - -0.03998320922255516, - -0.018805550411343575, - -0.0059105041436851025, - -0.0037789009511470795, - -0.012743495404720306, - 0.011788062751293182, - -0.030073067173361778, - -0.009303937666118145, - 0.00029568994068540633, - 0.005478912033140659, - -0.005584339145570993, - 0.020835021510720253, - 0.007847726345062256, - -0.005501974374055862, - -0.003446146845817566, - -0.008677964098751545, - 0.008697732351720333, - -0.01081286184489727, - -0.007234931457787752, - -0.007610515225678682, - 0.017777636647224426, - -6.079558079363778e-05, - -0.017131896689534187, - -0.044200293719768524, - -0.024419540539383888, - 0.004958366043865681, - -0.015563668683171272, - -0.004839760717004538, - 0.000439416675362736, - -0.00855935923755169, - 0.01686832867562771, - -0.026106374338269234, - -0.007781834341585636, - -0.028570732101798058, - -0.02513117343187332, - 0.027990883216261864, - 0.006678144913166761, - -0.02112494595348835, - -0.03241881728172302, - 0.0002435941423755139, - -0.004783752374351025, - 0.024999389424920082, - 0.025961412116885185, - -0.009587273001670837, - -0.01757996156811714, - 0.019635789096355438, - -0.01682879403233528, - 0.021414870396256447, - 0.029756786301732063, - 0.03573977202177048, - -0.016538869589567184, - -0.00424014450982213, - 0.012987295165657997, - -0.02714746631681919, - -0.00021167776139918715, - -0.0041215387172997, - 0.006533182691782713, - -0.02239007130265236, - -0.017250502482056618, - -0.06589190661907196, - 0.009653165005147457, - 0.010213245637714863, - -0.005577750038355589, - -0.014588468708097935, - 0.04491192474961281, - 0.001666241674683988, - 0.005696355365216732, - 0.009626807644963264, - -0.009086494334042072, - -0.013481484726071358, - -0.018159810453653336, - -0.018041204661130905, - 0.0017000111984089017, - -0.006618842016905546, - -0.014865214936435223, - 0.01947764866054058, - 0.031021909788250923, - 0.025579238310456276, - 0.013329933397471905, - -0.0027394560165703297, - -0.022574568167328835, - 0.014403970912098885, - 0.014496220275759697, - -0.003123276401311159, - 0.0056765880435705185, - -0.01634119264781475, - 0.00509015005081892, - 0.006335507147014141, - -0.000219708337681368, - 0.009369829669594765, - 0.005376779939979315, - -0.0018021436408162117, - 0.010015569627285004, - 0.011728759855031967, - 0.009778358973562717, - 0.0063190339133143425, - 0.03128547966480255, - 0.0027180411852896214, - 0.05395229533314705, - -0.021533476188778877, - -0.014852035790681839, - 0.023958297446370125, - -0.03031027689576149, - -0.01634119264781475, - 0.0006786866579204798, - 0.0035219225101172924, - -0.010226423852145672, - 0.00955432653427124, - -0.01846291311085224, - 0.0036998307332396507, - 0.001159697538241744, - -0.019688501954078674, - -0.015365992672741413, - -0.0014043212868273258, - -0.0372421070933342, - 0.00754462368786335, - -0.004862823057919741, - 0.01464118156582117, - -0.04422665014863014, - 0.05068405717611313, - -0.0058281393721699715, - 0.009191920980811119, - 0.014944285154342651, - -0.007063612341880798, - -0.0034725035075098276, - 0.0014759787591174245, - 0.004773868713527918, - 0.0001243709702976048, - -0.001212411094456911, - -0.03057384490966797, - -0.015392350032925606, - 0.0008409454603679478, - 0.019899357110261917, - 0.01924043707549572, - -0.008908585645258427, - -0.0014290307881310582, - 0.005208755377680063, - -0.005669998936355114, - 0.010292315855622292, - 0.035133566707372665, - 0.02402419038116932, - -0.01636754907667637, - -0.0009126029326580465, - 0.02677847072482109, - 0.0232598427683115, - -0.03877079859375954, - -0.0013499604538083076, - -0.0018943923059850931, - 0.01313884649425745, - -0.012591944076120853, - 0.015431884676218033, - 0.008500056341290474, - -0.007195396348834038, - -0.002746045356616378, - -0.010002391412854195, - 0.023114880546927452, - -0.018252057954669, - 0.009817894548177719, - 0.013745051808655262, - -0.002558253239840269, - 0.019319508224725723, - 0.010806272737681866, - -0.0034000223968178034, - -0.022706352174282074, - 0.0004727744380943477, - -0.017039647325873375, - -0.022851314395666122, - -0.003821730613708496, - 0.014733430929481983, - -0.012433802708983421, - -0.012572175823152065, - -0.01256558671593666, - 0.006806633900851011, - -0.02679165080189705, - 0.0006325623253360391, - -0.011781473644077778, - -0.00955432653427124, - -0.025961412116885185, - 0.01810709573328495, - -0.010694256983697414, - 0.01934586465358734, - -0.011260926723480225, - -0.0059072095900774, - 0.027753671631217003, - -0.0019833464175462723, - 0.006286087911576033, - -0.008875640109181404, - 0.011069840751588345, - 0.00161188084166497, - -0.006579306907951832, - 0.012980706058442593, - 0.012591944076120853, - -0.03479092940688133, - -0.02477535791695118, - -0.03270874172449112, - 0.012295430526137352, - -0.001153932069428265, - 0.021045874804258347, - 0.09298665821552277, - 0.024999389424920082, - -0.012875278480350971, - 0.011728759855031967, - 4.393651761347428e-05, - 0.011702402494847775, - 0.005791898816823959, - -0.012150468304753304, - -0.0028415885753929615, - -0.035897910594940186, - 0.018304772675037384, - -0.01572180911898613, - -0.003923863172531128, - -0.02012338861823082, - -0.016407085582613945, - -0.01257876493036747, - -0.007300823461264372, - -0.010404332540929317, - -0.023365270346403122, - 0.02615908719599247, - 0.01873965933918953, - 0.008526412770152092, - 0.020531918853521347, - 0.041564617305994034, - -0.03183896839618683, - -0.014733430929481983, - 0.010391154326498508, - 0.00015649327542632818, - 0.011781473644077778, - -0.0063882204703986645, - -0.00420719850808382, - 0.0012972468975931406, - -0.06931828707456589, - -0.036635901778936386, - 0.00747873168438673, - -0.004388401284813881, - -0.016420263797044754, - -0.015300100669264793, - 0.015484598465263844, - 0.0031315130181610584, - 0.008190364576876163, - 0.029993996024131775, - -0.025987768545746803, - -0.028465304523706436, - -0.03579248487949371, - -0.004770574159920216, - -0.010397743433713913, - -0.02025517262518406, - -0.009613629430532455 - ], - "sparse": "SparseEmbedding(values=array([1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722,\n 1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722]), indices=array([ 166009383, 1810453357, 1390492901, 505521151, 548655887,\n 1836140557, 1577199653, 47951928, 2063746700, 19522071]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 15, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 11 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000016.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000016.json deleted file mode 100644 index ae2ef29779ff2ff4eb589cfa9e536db795b5e1cb..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000016.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000016", - "content": "Arbeitspaket 2: Partizipative Softwaregestaltung und partizipative Evaluation ................ 2 Arbeitspaket 4: Transfer zur Stadtplanung ......................................................................... 2 Arbeitspaket 5: Pointcloud-Server ....................................................................................... 3 Arbeitspaket 6: AR-App ........................................................................................................ 4 Arbeitspaket 8: Stadtmodell-Server ..................................................................................... 7 Arbeitspaket 9: ELSI in der App-basierten Stadtplanung .................................................... 8 Arbeitspaket 11: Projektmanagement ................................................................................. 9 Wichtige Positionen des zahlenm\u00e4\u00dfigen Nachweises ................................................................ 9 11.2 Notwendigkeit und Angemessenheit der geleisteten Arbeit ....................................................... 9 Voraussichtlicher Nutzen, insb. Verwertbarkeit der Ergebnisse .............................................. 10 Bekannt gewordene Fortschritte bei anderen Stellen .............................................................. 10 Erfolgte Ver\u00f6ffentlichungen der Ergebnisse ............................................................................. 11 11.7 Geplante Ver\u00f6ffentlichungen der Ergebnisse............................................................................ 12", - "embedding": { - "dense": [ - 0.023905592039227486, - 0.007679095026105642, - 0.007502720225602388, - -0.026266304776072502, - -0.0139743248000741, - 0.028437072411179543, - -0.027419524267315865, - 0.0006855729152448475, - 0.002531998325139284, - -0.03318563103675842, - 0.0033138145226985216, - 0.003234106581658125, - -0.006678506266325712, - 0.021395640447735786, - -0.02185693010687828, - -0.00273381220176816, - 0.034515224397182465, - -0.011376186273992062, - 0.0018909432692453265, - 0.01297712791711092, - -0.004823177121579647, - 0.010813143104314804, - 0.026496948674321175, - -0.0139743248000741, - 0.0010014367289841175, - 0.01903492957353592, - 0.03155755251646042, - -0.020920785143971443, - -0.0017433988396078348, - 0.0043720644898712635, - 0.020391659811139107, - -0.005891602486371994, - -0.004243175033479929, - 0.0018061476293951273, - -0.0183429978787899, - -0.011552561074495316, - -0.0060713691636919975, - 0.0026201859582215548, - -0.0008521964191459119, - 0.0036903072614222765, - 0.007339912466704845, - 0.0051148743368685246, - -0.008445647545158863, - -0.01811235398054123, - 0.00892728753387928, - 0.022304650396108627, - 0.0005270050605759025, - -0.004412766080349684, - -0.024760333821177483, - 0.012312330305576324, - 0.007482368964701891, - 0.00723815755918622, - -0.018750015646219254, - -0.004324578680098057, - -0.01576520875096321, - 0.003639429807662964, - -0.023824188858270645, - 0.023715650662779808, - -0.0015042750164866447, - -0.012624378316104412, - 0.00396504532545805, - -2.6525141947786324e-05, - -0.026334140449762344, - 0.007841902785003185, - -0.02201973646879196, - -0.013920055702328682, - -0.024909572675824165, - -0.00026668235659599304, - -0.003859898541122675, - 0.0074348836205899715, - 0.0500362254679203, - 0.03277860954403877, - 0.03063497692346573, - -0.02554723620414734, - 0.03619757294654846, - -0.0014915557112544775, - 0.004154987167567015, - -0.03199170529842377, - -0.01769176684319973, - 0.020825814455747604, - 0.0028186077252030373, - -0.004477210808545351, - -0.023240795359015465, - 0.006637804210186005, - 0.01676918938755989, - 0.018872123211622238, - 0.005498150829225779, - 0.0074348836205899715, - -0.023267928510904312, - 0.006125638727098703, - -0.0016865857178345323, - 0.023417169228196144, - 0.0052132373675704, - 0.025574371218681335, - -0.011532209813594818, - 0.017339017242193222, - 0.005640607327222824, - 0.012841454707086086, - 0.0018366740550845861, - -0.015493863262236118, - 0.002713461173698306, - 0.009144363924860954, - -0.030336495488882065, - 0.0015085148625075817, - -0.016796324402093887, - -0.020812246948480606, - -0.007021080702543259, - -0.00946997944265604, - 0.01552099734544754, - 0.008323541842401028, - -0.032344456762075424, - 0.04398520663380623, - -0.004477210808545351, - -0.006369850132614374, - 0.012359815649688244, - -0.04165162891149521, - 0.02260313183069229, - -0.005318383686244488, - -0.010094075463712215, - -0.007957224734127522, - 0.02386489138007164, - 0.001430502743460238, - 0.030417898669838905, - -0.010575714521110058, - 0.015005440451204777, - 0.01845153607428074, - -0.0009361440897919238, - 0.0022114708553999662, - -0.02402769774198532, - -0.025004545226693153, - -0.02862701565027237, - 0.014503450132906437, - 0.026184899732470512, - 0.004032881464809179, - -0.01828872784972191, - -0.010786008089780807, - -0.012916075065732002, - -0.017311882227659225, - -0.038178399205207825, - -0.027812976390123367, - 0.016307901591062546, - 0.016402872279286385, - -0.015317488461732864, - -0.01860077679157257, - 0.023552842438220978, - 0.019252005964517593, - 0.021639851853251457, - 0.0341896116733551, - 0.002040183637291193, - -0.029603861272335052, - -0.01343163289129734, - -0.01879071816802025, - 9.036037954501808e-05, - 0.003040772397071123, - -0.017162641510367393, - -0.015995852649211884, - -0.010209397412836552, - 0.004124460741877556, - -0.018058083951473236, - -0.028437072411179543, - 0.0028728770557790995, - 0.0008254857384599745, - 0.0056372154504060745, - -0.0013202684931457043, - 0.01785457506775856, - 0.010982734151184559, - 0.013133152388036251, - -0.009836296550929546, - 0.013044964522123337, - 0.006912542507052422, - -0.023485006764531136, - 0.015059709548950195, - -0.024814601987600327, - 0.02018815092742443, - -0.0057389703579247, - 0.003159486223012209, - -0.0014271109830588102, - 0.004032881464809179, - -0.0325615331530571, - -0.024394014850258827, - -0.0034410078078508377, - 0.0009073135443031788, - 0.02093435265123844, - 0.03153041750192642, - -0.022182544693350792, - 0.00048079140833579004, - 0.020228853449225426, - 0.015493863262236118, - 0.004724814090877771, - 0.004921540152281523, - 0.037527166306972504, - 0.010202613659203053, - 0.01685059443116188, - -0.019645458087325096, - -0.6217082142829895, - 0.00035720173036679626, - 0.021422775462269783, - -0.026985371485352516, - 0.0003249793662689626, - 0.01660638302564621, - 0.024516122415661812, - -0.0008912024204619229, - -0.006820962764322758, - 0.03598049655556679, - -0.005440489389002323, - 0.0013253561919555068, - 0.0028067363891750574, - 0.001506818924099207, - -0.020215285941958427, - -0.015344622544944286, - 0.018410833552479744, - -0.014299940317869186, - 0.019319843500852585, - 0.01443561352789402, - -0.03513932228088379, - 0.012515839189291, - 0.005399787798523903, - -0.02093435265123844, - 0.011240513063967228, - 0.02159915119409561, - 0.002569308504462242, - -0.01576520875096321, - 0.005908561870455742, - 0.006929501425474882, - -0.016402872279286385, - 0.031503282487392426, - -0.035274993628263474, - 0.025479400530457497, - 0.04474497586488724, - 0.03161182254552841, - -0.01720334403216839, - 0.01201384887099266, - 0.01869574747979641, - 0.012366599403321743, - -0.024678928777575493, - 0.0041719465516507626, - -0.002803344512358308, - 0.015982287004590034, - 0.018153054639697075, - 0.0016433398704975843, - 0.05022616684436798, - 0.011064138263463974, - -0.02527588978409767, - -0.01273291651159525, - 0.012780401855707169, - -0.009090094827115536, - -0.011837474070489407, - -0.00310860900208354, - 0.022833775728940964, - 0.01548029575496912, - 0.014557719230651855, - -0.022304650396108627, - -0.025492968037724495, - -0.0033341653179377317, - -0.003629254177212715, - -0.007991143502295017, - -0.02577788010239601, - -0.02435331419110298, - -0.0275416299700737, - 0.015819478780031204, - -0.012258061207830906, - -0.020920785143971443, - 0.0089747728779912, - -0.011640748009085655, - -0.015154680237174034, - 0.030852053314447403, - -0.0062206098809838295, - -0.02144991047680378, - 0.009958402253687382, - 0.0007941113435663283, - -0.002031703945249319, - -0.011749287135899067, - -0.011837474070489407, - 0.015371757559478283, - 0.014991872943937778, - -0.023756353184580803, - -0.0014152395306155086, - 0.013214555568993092, - 0.02911543846130371, - -0.024339746683835983, - -0.017718901857733727, - -0.025669341906905174, - -0.0005426922580227256, - 0.008961205370724201, - 0.03695734217762947, - 0.01812591962516308, - -0.022643832489848137, - -0.011946012265980244, - -0.015955151990056038, - 0.036604590713977814, - 0.0032595451921224594, - 0.030580706894397736, - -0.01077244058251381, - -0.038938168436288834, - -0.03532926365733147, - -0.008601672016084194, - 0.02386489138007164, - 0.0035885523539036512, - 0.025221621617674828, - 0.0001462725194869563, - -0.010317935608327389, - 0.003040772397071123, - 0.040267761796712875, - -0.00651230663061142, - -0.02595425583422184, - -0.010053373873233795, - -0.008167518302798271, - -0.005084347911179066, - 0.015738075599074364, - -0.03562774509191513, - 0.00347153446637094, - -0.024014132097363472, - -0.0031136965844780207, - 0.0058373333886265755, - -0.010813143104314804, - -0.01626719906926155, - 0.021897630766034126, - -0.034515224397182465, - -0.015086843632161617, - 0.03304995596408844, - 0.012142738327383995, - -0.012631162069737911, - -0.015317488461732864, - -0.009415710344910622, - -0.011525426059961319, - -0.0026049227453768253, - 0.012509056366980076, - 0.00423299940302968, - 0.027840111404657364, - -0.010643551126122475, - 0.029061168432235718, - -0.017908843234181404, - 0.0020486630965024233, - -0.024665361270308495, - -0.016674218699336052, - -0.001237168675288558, - 0.0018315862398594618, - -0.045097723603248596, - 0.0029305380303412676, - -0.017040535807609558, - -0.01322133932262659, - -0.003106913063675165, - 0.001838369877077639, - 0.01934697851538658, - -0.03207311034202576, - -0.0150190070271492, - -0.006502131465822458, - 0.01811235398054123, - 0.026388410478830338, - -0.02143634296953678, - -0.007394181564450264, - -0.021992603316903114, - -0.0023471438325941563, - -0.03863968700170517, - 0.019672593101859093, - 0.007787633687257767, - -0.03139474615454674, - -0.020893650129437447, - -0.02412267029285431, - -0.009022258222103119, - 0.019089199602603912, - 0.017813872545957565, - -0.004975809250026941, - -0.022983016446232796, - 0.007278859615325928, - 0.0012337769148871303, - -0.020161015912890434, - 0.010745306499302387, - -0.02870841883122921, - 0.025818582624197006, - -0.01761036366224289, - -0.02602209337055683, - -0.008167518302798271, - 0.0013575785560533404, - -0.0015059709548950195, - 0.00018390058539807796, - -0.013112801127135754, - 0.01143045537173748, - 0.01701340079307556, - 0.0021249791607260704, - 0.005956047214567661, - 0.017311882227659225, - -0.030417898669838905, - 0.015385325066745281, - 0.007902955636382103, - 0.04222145676612854, - 0.00875769555568695, - 0.0033646917436271906, - -0.011464373208582401, - 0.019292708486318588, - -0.020161015912890434, - 0.009157931432127953, - 0.013892920687794685, - 0.017135506495833397, - 0.035844821482896805, - -0.005908561870455742, - 0.017081238329410553, - 0.005321775563061237, - 0.027338121086359024, - -0.03972507268190384, - -0.004097326193004847, - -0.013295959681272507, - 0.021327804774045944, - 0.012156305834650993, - 0.02078511193394661, - -0.013363796286284924, - -0.030445033684372902, - -0.0015102106845006347, - 0.005138617008924484, - 0.016755621880292892, - -0.018153054639697075, - 0.0005778824561275542, - -0.022969448938965797, - 0.014530584216117859, - 0.008845883421599865, - -0.006770085543394089, - 0.03497651591897011, - -0.007197455503046513, - -0.00030590035021305084, - 0.0024200682528316975, - 0.006882015615701675, - 0.03153041750192642, - 0.02938678488135338, - 0.007787633687257767, - -0.0071024843491613865, - 0.005976398009806871, - 0.019428381696343422, - 0.0028118242044001818, - 0.020011775195598602, - 0.00324428197927773, - 0.02310512214899063, - -0.0055999052710831165, - 0.02729741856455803, - 0.016877727583050728, - 0.005515109747648239, - 0.02187049761414528, - -0.0006126486696302891, - -0.0020198326092213392, - 0.017664631828665733, - -0.011701800860464573, - 0.04232999309897423, - 0.05198991671204567, - -0.007658744230866432, - 0.02135493978857994, - -0.014449181035161018, - 0.00036949708010070026, - -0.021639851853251457, - -0.005789847578853369, - 0.009537816047668457, - -0.030933456495404243, - 0.0225217267870903, - 0.0004969025612808764, - 0.014883334748446941, - 0.029413918033242226, - 0.0073602632619440556, - 0.017501823604106903, - 0.023769918829202652, - 0.0013109409483149648, - -0.005481191445142031, - -0.00946997944265604, - -0.025805015116930008, - -0.02619846723973751, - -0.009992321021854877, - -0.010840277187526226, - 0.013960757292807102, - -0.018980661407113075, - -0.018980661407113075, - 0.019143467769026756, - -0.007692662533372641, - -0.005474407691508532, - -0.011817123740911484, - -0.003388434648513794, - 0.005545636173337698, - -0.0050199031829833984, - -0.017746035009622574, - 0.0019757389090955257, - -0.01443561352789402, - 0.02629343792796135, - 0.006156165152788162, - 0.005854292307049036, - 0.0043347543105483055, - 0.0034443996846675873, - -0.01619936339557171, - -0.00968027301132679, - -0.013546954840421677, - 0.0065428330563008785, - -0.008140383288264275, - 0.029088303446769714, - -0.0054540568962693214, - -0.004046448972076178, - 0.019428381696343422, - -0.009958402253687382, - -0.011491508223116398, - -0.002838958753272891, - -0.0003832763759419322, - -0.011891743168234825, - -0.006820962764322758, - -0.036007627844810486, - 0.03665886074304581, - -0.005196277983486652, - -0.00881196465343237, - -0.02135493978857994, - -0.019672593101859093, - -0.014815498143434525, - 0.01895352639257908, - -0.005766104906797409, - 0.025723611935973167, - 0.00575932115316391, - -0.006590318866074085, - -0.0017637497512623668, - -0.021178564056754112, - -0.022046871483325958, - 0.06051018461585045, - 0.0035580259282141924, - -0.014327075332403183, - -0.03147615119814873, - 0.00892728753387928, - 0.02554723620414734, - 0.031096264719963074, - 0.030390765517950058, - 0.012312330305576324, - 0.012142738327383995, - -0.011946012265980244, - -0.01268543116748333, - -0.02637484297156334, - -0.02402769774198532, - 0.006583535112440586, - -0.002062230370938778, - 0.00847278255969286, - -0.020228853449225426, - 0.019916804507374763, - -0.02678186073899269, - 0.03432528302073479, - 0.001857024966739118, - 0.017311882227659225, - -0.0035953361075371504, - 0.008906936272978783, - 0.004178730305284262, - 0.0007462018402293324, - -0.011335483752191067, - 0.004175338428467512, - 0.035682015120983124, - 0.013546954840421677, - -0.0028745729941874743, - 0.054269224405288696, - 0.02636127546429634, - -0.005104698706418276, - -0.026171332225203514, - 0.007299210410565138, - 0.025682909414172173, - 0.008330325596034527, - 0.0342438779771328, - -0.03429814800620079, - 0.029983745887875557, - 0.016307901591062546, - 0.00967348925769329, - 0.025411562994122505, - 0.014788363128900528, - 0.0019960899371653795, - 0.009707407094538212, - 0.003330773673951626, - -0.00917149893939495, - 0.007889388129115105, - 0.004273701459169388, - 0.0026337532326579094, - 0.015208949334919453, - -0.007658744230866432, - -0.03215451538562775, - 0.00024018371186684817, - 0.01447631511837244, - -0.011450805701315403, - -0.008615239523351192, - 0.013051748275756836, - -0.018926391378045082, - -0.004901189357042313, - 0.0009988929377868772, - 0.0017501824768260121, - -0.026754727587103844, - -0.03771711140871048, - -0.01514111366122961, - -0.01918417029082775, - -0.018872123211622238, - -0.011213378049433231, - -0.01097595039755106, - -0.0019112941808998585, - -0.00200456939637661, - -0.021341372281312943, - 0.005382828414440155, - 0.00851348415017128, - -0.013234906829893589, - -0.022060438990592957, - -0.01568380557000637, - 0.014883334748446941, - 0.012495488859713078, - 0.0061968667432665825, - -0.0027592508122324944, - -0.018560074269771576, - 0.005002943798899651, - -0.0034325283486396074, - -0.028355669230222702, - -0.0019095982424914837, - -0.03180176392197609, - -0.013845435343682766, - -0.0029424093663692474, - -0.040511973202228546, - -0.004361888859421015, - 0.01077244058251381, - 0.008113249205052853, - 2.190112900279928e-05, - -0.0076994458213448524, - -0.005898386240005493, - -0.011464373208582401, - -0.0016594510525465012, - 0.023661380633711815, - -0.0104264747351408, - 0.01243443600833416, - 0.01735258474946022, - -0.020717276260256767, - -0.008025061339139938, - 0.004829960875213146, - 0.004887621849775314, - -0.019577622413635254, - -3.0181956390151754e-05, - 0.01911633461713791, - -0.013370580039918423, - 0.0042601339519023895, - -0.011423671618103981, - 0.007841902785003185, - 0.017230479046702385, - -0.010358638130128384, - 0.014422046020627022, - 0.003900600364431739, - 0.027134612202644348, - 0.04683433845639229, - -0.004670544993132353, - 0.01100986823439598, - 0.041271742433309555, - 0.0052132373675704, - 0.015887314453721046, - -0.03440668806433678, - 0.0283828042447567, - 0.012875373475253582, - 0.0009166410891339183, - 0.015358190052211285, - 0.0027490754146128893, - 0.002408196683973074, - -0.015615968964993954, - 0.011030219495296478, - -0.011986714787781239, - 0.015724508091807365, - -0.0027355081401765347, - 0.013675844296813011, - -0.010372205637395382, - 0.005538852419704199, - 0.00573557848110795, - 0.018302295356988907, - -0.016579248011112213, - 0.0041142855770885944, - 0.007394181564450264, - -0.005542244296520948, - 0.014340641908347607, - 0.01609082520008087, - 0.005939088296145201, - -0.03519359230995178, - -0.024475419893860817, - 0.023267928510904312, - -0.029088303446769714, - 0.035763416439294815, - 0.003792061936110258, - -0.004178730305284262, - -0.02679542824625969, - 0.007122835610061884, - -0.006084936670958996, - -0.013458766974508762, - 0.009592085145413876, - -0.028409937396645546, - 0.0037242253310978413, - 0.03112339973449707, - 0.017257612198591232, - 0.002820303663611412, - 0.006193474866449833, - 0.0075095035135746, - 0.009029041975736618, - 0.005810198839753866, - 0.016172228381037712, - -0.013336661271750927, - -0.024556823074817657, - 0.024583958089351654, - 0.0017069366294890642, - 0.02352570742368698, - 0.003234106581658125, - -0.0003156518505420536, - 0.015656670555472374, - 0.03079778328537941, - -0.025669341906905174, - -0.022060438990592957, - -0.01853293925523758, - -0.021761957556009293, - -0.015127546153962612, - 0.020825814455747604, - -0.011030219495296478, - 0.01659281551837921, - -0.02419050596654415, - 0.009341089986264706, - 0.010284017771482468, - -0.004816393367946148, - 0.000755529326852411, - 0.015208949334919453, - 0.0179495457559824, - 0.0008411729359067976, - 0.03961653262376785, - 0.02827426604926586, - 0.009815945290029049, - -0.011566128581762314, - -0.009707407094538212, - -0.044934917241334915, - -0.002360711107030511, - 0.04431081935763359, - 0.008038628846406937, - 0.018885688856244087, - -0.015656670555472374, - -0.006664938759058714, - -0.011674666777253151, - 0.0070142969489097595, - -0.01268543116748333, - -0.01097595039755106, - -0.00014097278472036123, - -0.0158601813018322, - 0.010847060941159725, - -0.009076527319848537, - -0.0009624307276681066, - -0.004375455901026726, - 0.027690870687365532, - 0.0007462018402293324, - -0.010229748673737049, - 0.0183701328933239, - -0.009157931432127953, - -0.02109716087579727, - 0.01911633461713791, - -0.0158601813018322, - 0.04140741750597954, - 0.017705334350466728, - 0.038585416972637177, - 0.025913553312420845, - -0.01828872784972191, - -0.035682015120983124, - -0.05600583925843239, - -0.003578376956284046, - 0.008384594693779945, - 0.022426756098866463, - 0.023403601720929146, - 0.009754892438650131, - -0.021572016179561615, - 0.01297712791711092, - 0.010711387731134892, - -0.024719631299376488, - -0.02310512214899063, - 0.026686890050768852, - 0.02077154442667961, - 0.014720526523888111, - -0.014557719230651855, - 0.006044234614819288, - -0.012848238460719585, - 0.017908843234181404, - 0.008798398077487946, - -0.00274229166097939, - 0.02069014124572277, - 0.009090094827115536, - 0.009273253381252289, - 0.03405393660068512, - -0.015398891642689705, - 0.03332130238413811, - 0.0283828042447567, - -0.012251277454197407, - 0.01419140212237835, - -0.028057187795639038, - -0.002649016445502639, - 0.016796324402093887, - 0.004124460741877556, - 0.023227227851748466, - -0.0005995053215883672, - -0.0038836412131786346, - -0.005555811803787947, - 0.0016153573524206877, - 0.009809162467718124, - 0.020581603050231934, - 0.023077987134456635, - 0.02229108288884163, - -0.014842632226645947, - -0.0254658330231905, - -0.019821833819150925, - -0.005881426855921745, - 0.019292708486318588, - -0.006658155471086502, - -0.011817123740911484, - -0.028816957026720047, - -0.003434224287047982, - -0.005247155670076609, - 0.007869037799537182, - -0.003554634051397443, - -0.0021605934016406536, - -0.007224590517580509, - 0.011959579773247242, - -0.007116051856428385, - 0.016755621880292892, - -0.005681309383362532, - 0.011735719628632069, - -0.03104199469089508, - -0.002416676376014948, - 0.01297034416347742, - 0.005793239455670118, - 0.01984896883368492, - 0.013750464655458927, - 0.006051018368452787, - -0.00041952653555199504, - -0.0006016251863911748, - -0.03144901618361473, - 0.020228853449225426, - 0.03478657081723213, - -0.009164715185761452, - -0.013065315783023834, - 0.016904862597584724, - -0.01619936339557171, - -0.005162359680980444, - 0.029983745887875557, - -0.0034121773205697536, - -0.024678928777575493, - 0.013594440184533596, - 0.006118854973465204, - 0.019740430638194084, - -0.020473064854741096, - 0.008906936272978783, - 0.03361978381872177, - -0.015426026657223701, - 0.006685290019959211, - 0.005783064290881157, - -0.013641925528645515, - 0.01463912334293127, - 0.011165892705321312, - 0.0014093038626015186, - 0.0308791883289814, - -0.021911198273301125, - 0.015656670555472374, - -0.0052030617371201515, - 0.006546224933117628, - -0.01326882466673851, - -0.02987520769238472, - -0.017474690452218056, - 0.007428099866956472, - 0.008900152519345284, - -0.02060873806476593, - 0.0035071484744548798, - 0.0072517250664532185, - -0.03606189787387848, - -0.00496224220842123, - 0.013601223938167095, - -0.007136402651667595, - -0.0012549757957458496, - 0.009626002982258797, - 0.0035274995025247335, - -0.016050122678279877, - 0.012821104377508163, - -0.006647979840636253, - -0.01393362320959568, - 8.696854638401419e-05, - -0.0013974325265735388, - -0.02930537983775139, - 0.0029203626327216625, - -0.018560074269771576, - 0.022223247215151787, - 0.011376186273992062, - -0.044446494430303574, - -0.018234459683299065, - -0.03739149495959282, - -0.0375543013215065, - -0.020730843767523766, - -0.006495347712188959, - -0.003376563312485814, - 0.0058882106095552444, - 0.016809891909360886, - 0.0074348836205899715, - 0.03220878541469574, - 0.010908113792538643, - 0.007801200728863478, - -0.03410820662975311, - -0.040674783289432526, - -0.0002953008806798607, - -0.019414814189076424, - 0.023566409945487976, - 0.0013889529509469867, - -0.04808253049850464, - -0.009124012663960457, - 0.022128276526927948, - 0.016307901591062546, - 0.002464161952957511, - -0.006878624204546213, - -0.025587938725948334, - -0.01761036366224289, - 0.00173576723318547, - 0.01447631511837244, - -0.01302461326122284, - 0.014109998010098934, - 0.016484277322888374, - -0.02895263023674488, - 0.00601031631231308, - 0.00193503696937114, - -0.006848097778856754, - -0.03595336154103279, - -0.02362067997455597, - 0.013947190716862679, - -0.011837474070489407, - 0.012827887199819088, - 0.02485530450940132, - -0.02245389111340046, - -0.010704603977501392, - -0.01769176684319973, - 0.004168554674834013, - 0.015670238062739372, - -0.002840654691681266, - 0.005026686936616898, - 0.002031703945249319, - 0.004636626690626144, - -0.011898526921868324, - -0.006824354641139507, - -0.03804272413253784, - 0.005284465383738279, - 0.024271909147500992, - -0.012624378316104412, - 0.01413713302463293, - -0.008099681697785854, - -0.016728488728404045, - -0.015534564852714539, - 0.00373440096154809, - -0.0048435283824801445, - -0.02120569907128811, - -0.008547402918338776, - 0.00521662924438715, - 0.026578351855278015, - -0.0021894238889217377, - 0.013648709282279015, - -0.013295959681272507, - -0.0016730184433981776, - -0.018261592835187912, - -0.02345787174999714, - -0.003251065732911229, - -0.014652689918875694, - 0.012380166910588741, - -0.007848686538636684, - -0.016294334083795547, - 0.002158897463232279, - 0.008527051657438278, - -0.008031845092773438, - -0.015751641243696213, - 0.03313136100769043, - 0.1902678906917572, - 0.006776869297027588, - -0.003887033089995384, - 0.015032574534416199, - -0.010005887597799301, - 0.004060016479343176, - 0.02778584137558937, - 0.018641477450728416, - 0.005369261372834444, - 0.01611795835196972, - -0.00453147990629077, - -0.0002021316613536328, - -0.008879801258444786, - 0.003261241130530834, - 0.009856647811830044, - -0.04138028249144554, - -0.04962920397520065, - -0.01443561352789402, - 0.003554634051397443, - 0.040349166840314865, - 0.029169706627726555, - -0.03269720822572708, - -0.01761036366224289, - -0.013357012532651424, - 0.015385325066745281, - -0.0015475208638235927, - -0.029658131301403046, - 7.605111022712663e-05, - 0.016294334083795547, - 0.003775102784857154, - -0.004324578680098057, - -0.015113978646695614, - -0.0007182192639447749, - -0.013126368634402752, - -0.011661099269986153, - -0.009707407094538212, - 0.02577788010239601, - 0.000611376715824008, - 0.026171332225203514, - 0.012922858819365501, - -0.016877727583050728, - -0.017244044691324234, - -0.023050852119922638, - -0.03432528302073479, - -0.004572181962430477, - 0.02603565901517868, - -0.023254362866282463, - 0.015466728247702122, - 0.0056745256297290325, - -0.021002190187573433, - -0.019835401326417923, - -0.01611795835196972, - 0.008350676856935024, - 0.029902342706918716, - -0.008574537001550198, - 0.008554186671972275, - -0.0015568482922390103, - -0.01643000729382038, - -0.019143467769026756, - 0.027351688593626022, - 0.00031459188903681934, - 0.006776869297027588, - -0.009157931432127953, - 0.016755621880292892, - -0.015792343765497208, - -0.002069014124572277, - -0.015222516842186451, - 0.00044475324102677405, - 0.010562147945165634, - -0.034271012991666794, - -0.0035274995025247335, - -0.019971074536442757, - -0.009313954971730709, - 0.02629343792796135, - -0.0005486279260367155, - -0.026089929044246674, - 0.018397266045212746, - 0.030852053314447403, - 0.010955599136650562, - 0.04648159071803093, - -0.016674218699336052, - 0.006536049768328667, - -0.02012031525373459, - -0.0254522655159235, - -0.005376045126467943, - -0.04531479999423027, - 0.04498918727040291, - 0.002452290616929531, - -0.0017340712947770953, - -0.011776421219110489, - -0.037744246423244476, - -0.019048497080802917, - 0.0009124013013206422, - -0.030146554112434387, - 0.006773477420210838, - 0.015046142041683197, - 0.010100859217345715, - 0.0139743248000741, - -0.018424401059746742, - 0.0006923565524630249, - -0.009442844428122044, - 0.08645087480545044, - 0.022250382229685783, - -0.019930372014641762, - -0.011654315516352654, - -0.006403768435120583, - -0.0037581436336040497, - 0.013119584880769253, - 0.013838651590049267, - -0.007116051856428385, - -0.00017054527415893972, - -0.029006900265812874, - 0.008323541842401028, - -0.019984642043709755, - 0.0029881990049034357, - 0.020486632362008095, - 0.006634412333369255, - -0.02143634296953678, - 0.02370208315551281, - -0.013567306101322174, - -0.002715157112106681, - -0.016565680503845215, - -0.0016458837781101465, - 0.018220892176032066, - 0.001972347032278776, - -0.018560074269771576, - -0.027582332491874695, - -0.007733364123851061, - -0.018885688856244087, - -0.013865786604583263, - 0.015575267374515533, - -0.02269810251891613, - 0.01376403123140335, - -0.003591944230720401, - 0.001035355031490326, - 0.0003574137226678431, - -0.0008996819378808141, - -0.016959132626652718, - -0.010616417042911053, - 0.005437097977846861, - 0.01447631511837244, - 0.010562147945165634, - -0.00033430688199587166, - 0.0037615355104207993, - -0.005016511306166649, - 0.008106465451419353, - 0.00261849001981318, - -0.0016450358089059591, - -0.03313136100769043, - -0.019740430638194084, - 0.0052539389580488205, - -0.014761229045689106, - 0.008133599534630775, - -0.032018840312957764, - 0.044853512197732925, - 0.0058746435679495335, - -0.020079612731933594, - -0.01736615225672722, - 0.0063087972812354565, - -0.004161770921200514, - -0.026171332225203514, - -0.029522458091378212, - 0.023498574271798134, - -0.0073602632619440556, - -0.01618579588830471, - -0.00951746478676796, - -0.17322735488414764, - 0.008208219893276691, - 0.017881708219647408, - -0.045613281428813934, - 0.01759679615497589, - -0.002194511704146862, - 0.01592801697552204, - 0.0011786597315222025, - -0.025845717638731003, - -0.003876857692375779, - 0.017990248277783394, - -0.0036903072614222765, - -0.023810621351003647, - -0.01548029575496912, - 0.005348910111933947, - 0.011335483752191067, - -0.019713295623660088, - 0.039426591247320175, - 0.019835401326417923, - 0.010657118633389473, - 0.01423210371285677, - -0.01644357480108738, - 0.002983111422508955, - 0.0023335765581578016, - 0.006044234614819288, - 0.013295959681272507, - -0.025085948407649994, - 0.008133599534630775, - -0.006892191246151924, - -0.0030933457892388105, - 0.018261592835187912, - 0.003149310825392604, - 0.03929091617465019, - 0.014801930636167526, - -0.006132422015070915, - -0.02210114151239395, - 0.0005812742747366428, - 0.0001584618876222521, - -0.012570109218358994, - 0.027500929310917854, - 0.009809162467718124, - 0.015358190052211285, - -0.01603655517101288, - -0.004796042572706938, - -0.03193743899464607, - 0.016375737264752388, - 0.027419524267315865, - -0.012203791178762913, - -0.0059255207888782024, - -0.01447631511837244, - 0.004640018567442894, - -0.017298314720392227, - -0.014055728912353516, - -0.0073602632619440556, - 0.014991872943937778, - 0.007936873473227024, - -0.0016721704741939902, - 0.019591189920902252, - 0.019808266311883926, - 0.0009700623340904713, - -0.006098503712564707, - -0.0012600634945556521, - 0.007631609681993723, - 0.006373242009431124, - -0.010412907227873802, - -0.03907383978366852, - 0.010643551126122475, - 0.015643103048205376, - -0.018234459683299065, - 0.0029610644560307264, - 0.010406123474240303, - -0.008669508621096611, - 0.0114711569622159, - -0.010833493433892727, - 0.007285643368959427, - 0.0028643973637372255, - -0.022996583953499794, - 0.022304650396108627, - 0.029739534482359886, - -0.00774014787748456, - -0.00473498972132802, - 0.05877356976270676, - 0.011104839853942394, - -0.016145093366503716, - 0.006980378646403551, - -0.0183701328933239, - -0.006600494030863047, - 0.014544151723384857, - 0.01143723912537098, - -0.005833941511809826, - 0.01172893587499857, - -0.02195190079510212, - -0.026401976123452187, - -0.004813001491129398, - 0.004602708388119936, - 0.0054031796753406525, - -0.007428099866956472, - -0.007095701061189175, - -0.017569661140441895, - -0.019740430638194084, - 0.02436688169836998, - -0.0036936989054083824, - -0.034759435802698135, - 0.018153054639697075, - 0.025343727320432663, - 0.007380614522844553, - 0.014829065650701523, - 0.010372205637395382, - 0.03511218726634979, - -0.005382828414440155, - -0.03486797586083412, - -0.0067802611738443375, - 0.007529854774475098, - 0.010955599136650562, - 0.010609633289277554, - 0.018315862864255905, - 0.009782027453184128, - -0.005447273142635822, - 0.008859450928866863, - 0.011586478911340237, - 0.05131154879927635, - -0.023986997082829475, - -0.019753996282815933, - 0.004490778315812349, - 0.0042974441312253475, - -0.013309527188539505, - -0.07733364403247833, - -0.006478388328105211, - 0.019129900261759758, - 0.03570915013551712, - 0.0036258625332266092, - 0.0350579172372818, - 0.00011956188245676458, - 0.011579695157706738, - 0.006553008686751127, - 0.023729218170046806, - -0.020228853449225426, - -0.02120569907128811, - -0.011057354509830475, - -0.0032832880970090628, - -0.0004909668932668865, - -0.016240065917372704, - -0.017583228647708893, - -0.012882157228887081, - -0.0100126713514328, - 0.04770264774560928, - -0.002703285776078701, - -0.005002943798899651, - 0.011695017106831074, - -0.013065315783023834, - -0.019143467769026756, - 0.006013708189129829, - -0.019591189920902252, - 0.018166622146964073, - 0.002677846932783723, - -0.004144812002778053, - 0.01918417029082775, - -0.03994214907288551, - 0.02368851564824581, - -0.0350307822227478, - 0.013825085014104843, - -0.01443561352789402, - -0.02012031525373459, - -0.024746766313910484, - 0.02379705384373665, - -0.016959132626652718, - 0.017990248277783394, - -0.007875820621848106, - 0.005613472778350115, - -0.03706587851047516, - -0.004646802321076393, - -0.022141842171549797, - -0.012563325464725494, - -0.006536049768328667, - 0.009639570489525795, - -0.03378259018063545, - -0.025859285145998, - -0.024841737002134323, - 0.009110446088016033, - 0.0011930749751627445, - -0.006820962764322758, - -0.0016916734166443348, - -0.01176285371184349, - -0.0035376749001443386, - -0.010324719361960888, - -0.0033256858587265015, - -0.02070370875298977, - 0.002223342191427946, - 0.0021928157657384872, - 0.011837474070489407, - 0.00850670039653778, - -0.009700623340904713, - -0.0283828042447567, - -0.01861434429883957, - -0.010650334879755974, - -0.00951746478676796, - -0.023986997082829475, - 0.009056176990270615, - -0.009076527319848537, - -0.005878035444766283, - -0.01853293925523758, - -0.01659281551837921, - -0.024665361270308495, - -0.010819925926625729, - 0.03630610927939415, - -0.009951618500053883, - -0.025859285145998, - -0.026808995753526688, - 0.018220892176032066, - 0.002933929907158017, - 0.04108180105686188, - 0.015466728247702122, - -0.0015568482922390103, - -0.03646891936659813, - 0.01126086339354515, - -0.016009420156478882, - 0.02245389111340046, - 0.008208219893276691, - 0.010114426724612713, - -0.016728488728404045, - 0.008527051657438278, - -0.0022487810347229242, - -0.005335343070328236, - -0.017501823604106903, - 0.0016848897794261575, - 0.008913720026612282, - -0.024516122415661812, - -0.017067670822143555, - -0.06485172361135483, - 0.02237248793244362, - 0.011552561074495316, - -0.024516122415661812, - -0.026890400797128677, - 0.030607841908931732, - -0.004999552387744188, - 0.020663006231188774, - 0.0012931338278576732, - -0.009096878580749035, - -0.023091554641723633, - -0.007563773076981306, - 0.012393733486533165, - 0.0020673181861639023, - -0.0014364385278895497, - 0.009117229841649532, - 0.016145093366503716, - 0.0183565653860569, - 0.02554723620414734, - -0.0021249791607260704, - -0.01762392930686474, - 0.009239335544407368, - 0.002676150994375348, - 0.004344929475337267, - -0.02012031525373459, - 0.010080507956445217, - -0.011152325198054314, - -0.01728474721312523, - 0.004751948639750481, - -0.002163985278457403, - -0.0037208336871117353, - -0.003059427486732602, - -0.013635142706334591, - 0.011281214654445648, - -0.004066799767315388, - -0.013567306101322174, - 0.007027864456176758, - 0.036333244293928146, - -0.004626451060175896, - 0.06376633793115616, - -0.03313136100769043, - -0.015710940584540367, - 0.024651793763041496, - -0.04195011034607887, - 0.025031678378582, - -0.017040535807609558, - 0.02627987042069435, - 0.004914756398648024, - 0.0031340476125478745, - -0.011654315516352654, - 0.03546493873000145, - 0.012637944892048836, - -0.015548132359981537, - -0.01736615225672722, - 0.016484277322888374, - -0.03443382307887077, - 0.009748109616339207, - 0.0021809444297105074, - -0.008452431298792362, - -0.026591919362545013, - 0.037744246423244476, - -0.006162948440760374, - 0.010663902387022972, - 0.0035749850794672966, - 0.0023522316478192806, - 0.007977575995028019, - -0.021884065121412277, - 0.008092897944152355, - 0.014924036338925362, - -0.004331362433731556, - -0.03313136100769043, - -0.017461122944951057, - 0.03207311034202576, - 0.04523339867591858, - 0.0020639263093471527, - 0.0038090210873633623, - 0.015710940584540367, - -0.007753715384751558, - 0.01634860411286354, - 0.02102932333946228, - 0.03153041750192642, - 0.018058083951473236, - -0.03546493873000145, - 0.015290353447198868, - 0.02153131365776062, - 0.012088469229638577, - -0.030417898669838905, - -0.006288446020334959, - -0.03405393660068512, - 0.0012397125829011202, - 0.012549757957458496, - 0.0074348836205899715, - 0.0012897419510409236, - -0.006420727353543043, - 0.0009132492705248296, - 0.012651512399315834, - 0.005630431696772575, - -0.009246119298040867, - 0.006335931830108166, - 0.04232999309897423, - -0.004609492141753435, - 0.00721780676394701, - -0.00033027908648364246, - -0.017800305038690567, - -0.021178564056754112, - 0.008981556631624699, - -0.02903403341770172, - -0.02995661087334156, - -0.016877727583050728, - 0.009157931432127953, - 0.011077704839408398, - 0.020649438723921776, - 0.005301424767822027, - -0.004341538064181805, - -0.012990695424377918, - 0.015331055968999863, - -0.003405393799766898, - -0.007211023010313511, - -0.029902342706918716, - 0.0114711569622159, - 0.0003188316768500954, - 0.009103662334382534, - 0.008547402918338776, - -0.005033470224589109, - 0.03543780371546745, - -0.014096430502831936, - 0.016986267641186714, - -0.021409207955002785, - 0.0015076668933033943, - -0.004331362433731556, - -0.013092449866235256, - 0.011708584614098072, - 7.684606680413708e-05, - -0.010568930767476559, - -0.004480602685362101, - -0.012285195291042328, - 0.010691037401556969, - -0.003437616163864732, - 0.01767819933593273, - 0.10880979150533676, - 0.030255092307925224, - 0.0074348836205899715, - 0.011708584614098072, - 0.0032459779176861048, - -0.003944694064557552, - -0.0027015898376703262, - 0.017244044691324234, - 0.00045280883205123246, - -0.050606049597263336, - 0.003907383885234594, - 0.0025574371684342623, - 0.02435331419110298, - -0.024271909147500992, - -0.0015348014421761036, - -0.014951171353459358, - -0.0158466137945652, - 0.029088303446769714, - -0.03815126419067383, - 0.01318742148578167, - 0.024597525596618652, - 0.012719349004328251, - 0.005701660178601742, - 0.03193743899464607, - -0.038096994161605835, - -0.019170602783560753, - 0.018587209284305573, - -0.0070889173075556755, - 0.01352660357952118, - -0.034081071615219116, - -0.008282840251922607, - 0.011349051259458065, - -0.06723956763744354, - -0.017895275726914406, - 0.0005660110618919134, - -0.022413188591599464, - 0.010629983618855476, - -0.031828898936510086, - 0.017339017242193222, - -0.00500972755253315, - 0.020296689122915268, - 0.0012541278265416622, - -0.02887122705578804, - -0.02303728461265564, - -0.013241690583527088, - -0.007414532825350761, - -0.02429904416203499, - -0.009551383554935455, - -0.029441053047776222 - ], - "sparse": "SparseEmbedding(values=array([2.02944507, 1.91792951, 1.69996982, 1.38514511, 1.69996982,\n 1.38514511, 1.69996982, 1.38514511, 1.38514511, 1.69996982,\n 1.38514511, 1.38514511, 1.69996982, 1.38514511, 1.38514511,\n 1.38514511, 1.69996982, 1.69996982, 1.38514511, 1.69996982,\n 1.91792951, 1.38514511, 1.96840487, 1.38514511, 1.91792951,\n 1.38514511, 1.38514511, 1.38514511, 1.38514511, 1.38514511,\n 1.38514511, 1.38514511, 1.38514511, 1.38514511, 1.38514511,\n 1.38514511, 1.38514511, 1.38514511, 1.38514511, 1.83932071,\n 1.69996982, 1.38514511, 1.38514511, 1.38514511, 1.38514511,\n 1.38514511, 1.38514511, 1.38514511, 1.69996982, 1.38514511,\n 1.38514511]), indices=array([ 166009383, 19522071, 229152442, 1534085769, 164058840,\n 56078255, 516830072, 390564119, 338063690, 1535770478,\n 1394226660, 1975552773, 548955463, 264741300, 670727360,\n 1675878461, 2039377815, 1114505193, 1171521091, 602572328,\n 613148321, 1500014195, 408270109, 1936606604, 1734550606,\n 35048659, 236167652, 1126764900, 47951928, 1044231549,\n 1138998334, 2017479794, 841476869, 1324669717, 1692320747,\n 198710382, 205475750, 2135442072, 977389904, 134490412,\n 2031875777, 189842624, 937843609, 1403477227, 1793743868,\n 1827422926, 2067298431, 675675403, 766128961, 1081081954,\n 103616747]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 16, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 89 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000017.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000017.json deleted file mode 100644 index db74e8cca3604da5e0953ae7323a6fbc5216a0d7..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000017.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000017", - "content": "Anhang 1: Liste der verwendeten Fachliteratur, Informations- und Datenquellen ............................... 13", - "embedding": { - "dense": [ - 0.006468300707638264, - 0.002162857446819544, - -0.0011211929377168417, - -0.03727537766098976, - -0.0009340675314888358, - 0.01788918673992157, - -0.01906183920800686, - 0.004575215745717287, - 0.0007422640337608755, - -0.011264948174357414, - 0.0035522636026144028, - 0.002091126050800085, - 0.008289654739201069, - 0.019710540771484375, - -0.0007414843421429396, - 0.008008966222405434, - 0.021444568410515785, - -0.012331563048064709, - 0.005457823630422354, - -0.004830953665077686, - -0.013996978290379047, - -0.003745626425370574, - 0.0022158764768391848, - 0.00078085862332955, - -0.010079820640385151, - 0.005910043139010668, - 0.0153817068785429, - -0.04481029137969017, - -0.02672150544822216, - 0.0015936845447868109, - 0.000266068906057626, - -0.002073972951620817, - -0.001570293796248734, - -0.018999464809894562, - -0.029665611684322357, - -0.007141951937228441, - -0.020097266882658005, - 0.011477023363113403, - 0.005395448766648769, - -0.017988987267017365, - -0.0015063593164086342, - 0.005460942629724741, - -0.004871497396379709, - -0.0025573803577572107, - -0.002920715371146798, - 0.014583304524421692, - 0.011445836164057255, - -3.3039326808648184e-05, - -0.005295648239552975, - 0.011882461607456207, - 0.004079333506524563, - 0.020533891394734383, - 0.0010627162409946322, - -0.03385721892118454, - -0.025087276473641396, - 0.004288290161639452, - -0.031811315566301346, - 0.029166609048843384, - 0.00654315110296011, - -0.0007325179176405072, - -0.018201062455773354, - -0.017065834254026413, - -0.03872247785329819, - -0.001313776127062738, - -0.010790897533297539, - -0.009038155898451805, - -0.003022074932232499, - -0.0013473028084263206, - 0.020658642053604126, - 0.002151941880583763, - 0.03480532020330429, - 0.0062219188548624516, - 0.03206081688404083, - 0.020147167146205902, - 0.030114712193608284, - -0.0120383994653821, - 0.014358754269778728, - -0.011327323503792286, - -0.004384971689432859, - -0.004437990486621857, - 0.010984259657561779, - -0.011208810843527317, - -0.0327095165848732, - 0.009655670262873173, - 0.026422103866934776, - 0.02136971801519394, - 0.010479021817445755, - 0.0220932699739933, - -0.009948832914233208, - -0.013622728176414967, - 0.01963569037616253, - 0.0240767989307642, - 0.0074226404540240765, - 0.00047210176126100123, - -0.006524438504129648, - 0.0010712927905842662, - -0.0032435066532343626, - 0.019872715696692467, - -0.019523415714502335, - -0.03942108154296875, - -0.009599532000720501, - -0.0024529017973691225, - -0.0064121633768081665, - 0.008520442061126232, - -0.0327594168484211, - -0.009612007066607475, - 0.03348296880722046, - 0.0019289507763460279, - 0.0019492227584123611, - -0.033757418394088745, - -0.008919643238186836, - 0.04099293425679207, - -0.014308854006230831, - -0.0259480532258749, - 0.007428877521306276, - -0.005947468336671591, - 0.035079773515462875, - -0.019136689603328705, - -0.0030626188963651657, - -0.00764719070866704, - 0.005741630680859089, - -0.0015687344130128622, - 0.011770186945796013, - -0.01212572492659092, - 0.029291359707713127, - 0.010784659534692764, - 0.004456703085452318, - 0.006618001032620668, - -0.010348034091293812, - -3.3721553336363286e-05, - -0.021831294521689415, - 0.015256956219673157, - 0.024700550362467766, - 0.01867511309683323, - -0.0220807958394289, - 0.019910139963030815, - -0.039745431393384933, - -0.0012007212499156594, - -0.006549388635903597, - -0.02018459141254425, - 0.025236977264285088, - 0.01944856531918049, - -0.020483991131186485, - -0.04880230128765106, - 0.013585302978754044, - 0.02097051776945591, - 0.015132206492125988, - 0.009381218813359737, - -0.0003241557569708675, - -0.0011243117041885853, - -0.0017932849004864693, - -0.025523902848362923, - 0.005273817107081413, - 0.007952828891575336, - -0.027045855298638344, - -0.019523415714502335, - -0.01453340519219637, - 0.0029425467364490032, - 0.024189075455069542, - -0.010479021817445755, - -0.0001587641891092062, - -0.015880707651376724, - 0.018038887530565262, - 0.008963305503129959, - 0.0230413731187582, - 0.016579309478402138, - -0.009817845188081264, - -0.02347799763083458, - 0.022280395030975342, - -0.003979532979428768, - -0.009543394669890404, - 0.006340431980788708, - 0.010086058638989925, - 0.001919594593346119, - 0.001585107995197177, - -0.004494127817451954, - 0.020845767110586166, - 0.000808537588454783, - -0.039121679961681366, - -0.017589785158634186, - -0.03555382415652275, - 0.00998625811189413, - 0.003418157109990716, - 0.017390185967087746, - -0.03802387788891792, - -7.319331780308858e-05, - 0.01559378206729889, - -0.0039421082474291325, - -0.006624238565564156, - -0.0134605523198843, - 0.024463525041937828, - 0.005024316720664501, - 0.01808878779411316, - -0.017552360892295837, - -0.6558869481086731, - -0.021831294521689415, - -0.023166121914982796, - -0.006699088960886002, - 0.003280931618064642, - 0.03495502099394798, - 0.03171151503920555, - -0.006309244316071272, - -0.00254802405834198, - 0.02846800908446312, - -0.0018821695121005177, - -0.005174017045646906, - 0.021631693467497826, - -6.669996537311818e-07, - -0.031611714512109756, - -0.0029175966046750546, - -0.010847034864127636, - 0.0031109594274312258, - 0.016878709197044373, - 0.00035241947625763714, - 0.010142195969820023, - 0.005211441777646542, - 0.010896935127675533, - -0.007154427003115416, - -0.008108766749501228, - 0.006836314219981432, - 0.013784903101623058, - -0.03118756413459778, - 0.03333326801657677, - 0.007759465835988522, - -0.030064811930060387, - 0.003627113765105605, - 0.0074226404540240765, - 0.011414648033678532, - 0.02881730906665325, - 0.014545880258083344, - -0.029890161007642746, - 0.017365235835313797, - 0.026796355843544006, - 0.009287656284868717, - -0.027993956580758095, - -0.011377223767340183, - 0.004297646228224039, - 0.017801862210035324, - -0.0005578675772994757, - 0.008015204221010208, - 0.04695599526166916, - -0.012075824663043022, - -0.0036707762628793716, - 0.0058850934728980064, - 0.010061108507215977, - -0.011757711879909039, - 0.004316358827054501, - -0.006873738951981068, - 0.00663671363145113, - 0.021781394258141518, - 0.002588567789644003, - -0.028343258425593376, - -0.0010572584578767419, - 0.011483261361718178, - 0.0013488621916621923, - 0.017564836889505386, - -0.005869499407708645, - -0.03041411191225052, - -0.021481994539499283, - 0.02541162632405758, - -0.02712070569396019, - -0.01450845506042242, - 0.025286877527832985, - -0.02559875324368477, - -0.004413040354847908, - 0.011813849210739136, - -0.013211051933467388, - -0.003418157109990716, - 0.022030895575881004, - -0.001358998124487698, - 0.021469518542289734, - 0.011901174671947956, - -0.020696068182587624, - -0.00991764571517706, - -0.00312187522649765, - -0.007503727916628122, - -0.0007508405833505094, - 0.005819599609822035, - 0.029740460216999054, - -0.028193557634949684, - -0.026821304112672806, - -0.019174113869667053, - -0.015718532726168633, - 0.011707811616361141, - 0.009312606416642666, - 0.00854539219290018, - -0.022230494767427444, - 0.03206081688404083, - -0.007241752464324236, - 0.044710490852594376, - 0.006873738951981068, - 0.012200575321912766, - -0.00663671363145113, - -0.034905120730400085, - 0.0004069977148901671, - 0.00422591483220458, - 0.010790897533297539, - -0.015169630758464336, - 0.008782418444752693, - 0.005130354315042496, - -0.006162662524729967, - 0.010135957971215248, - 0.027544856071472168, - -0.008239754475653172, - -0.009549631737172604, - -0.0035553823690861464, - -0.004453584086149931, - 0.012238000519573689, - -0.007048389408737421, - -0.03285921737551689, - 0.01652940921485424, - 0.015319331549108028, - 0.006312362849712372, - -0.0053642611019313335, - 0.0006943131447769701, - 0.0044317529536783695, - 0.010647434741258621, - -0.04925139993429184, - 0.0012950636446475983, - 0.02170654386281967, - -0.006150187458842993, - -0.00826470460742712, - -0.00567301781848073, - -0.020483991131186485, - 0.008551630191504955, - -0.01019833330065012, - 0.02131981961429119, - -0.002572973957285285, - 0.006761463824659586, - -0.006162662524729967, - 0.02094556763768196, - -0.014570829458534718, - -0.0009761707624420524, - 0.0025745334569364786, - -0.023976998403668404, - -0.0037986452225595713, - 0.023203548043966293, - -0.043937038630247116, - -0.01125871017575264, - -0.024887675419449806, - 0.00953715667128563, - 0.0025308707263320684, - -5.642999894917011e-05, - 0.03692607581615448, - -0.011982262134552002, - -0.022205544635653496, - -0.0012786901788786054, - 0.017153160646557808, - 0.044136639684438705, - -0.010691097006201744, - -0.015668632462620735, - -0.012287899851799011, - 0.002728911815211177, - -0.005651186686009169, - 0.004952585324645042, - 0.011963549070060253, - -0.015843283385038376, - 0.0035522636026144028, - -0.0035397885367274284, - -0.015855757519602776, - 0.011545635759830475, - 0.009013205766677856, - -0.0134605523198843, - -0.027245456352829933, - 0.02018459141254425, - 0.010809609666466713, - -0.021045368164777756, - 0.02367759868502617, - -0.012755713425576687, - 0.01375995296984911, - -0.017190584912896156, - -0.005507723893970251, - -0.0035086008720099926, - 0.0036863700952380896, - 0.004746747203171253, - -0.014733005315065384, - 0.004581453278660774, - 0.019174113869667053, - 0.01981034129858017, - 0.017352759838104248, - -0.00036508942139334977, - 0.005024316720664501, - 0.008121241815388203, - -0.02270454727113247, - -0.008002729155123234, - 0.0518961064517498, - -0.001079869456589222, - -0.0014977827668190002, - -0.019660640507936478, - 0.019149163737893105, - -0.0067427512258291245, - -0.010117245838046074, - 0.018924614414572716, - 0.006387213245034218, - 0.04099293425679207, - 0.00040153987356461585, - 0.01978539116680622, - -0.010503971949219704, - 0.016017932444810867, - -0.026621704921126366, - 0.014845280908048153, - -0.005217679310590029, - 0.022218020632863045, - 0.012749476358294487, - 0.028567807748913765, - -0.0008280298206955194, - -0.016105258837342262, - -0.00892588123679161, - 0.005105404183268547, - 0.024912625551223755, - -0.011657911352813244, - 0.005844549275934696, - -0.0059349932707846165, - -0.007765703368932009, - 0.012088299728929996, - -0.0025433457922190428, - 0.02383977361023426, - 0.010628721676766872, - -0.009524681605398655, - 0.009456069208681583, - 0.01201344933360815, - 0.0035959261003881693, - 0.009599532000720501, - 0.014321329072117805, - 0.0006167340907268226, - -0.018537888303399086, - -0.004774815868586302, - 0.02597300335764885, - 0.012874226085841656, - 0.031012913212180138, - 0.01807631179690361, - -0.035329271107912064, - 0.03597797453403473, - 0.027445055544376373, - -0.012262949720025063, - 0.021631693467497826, - 0.011969787068665028, - 0.015706056728959084, - 0.015718532726168633, - -0.01094683539122343, - 0.01520705595612526, - 0.028942059725522995, - -0.02018459141254425, - 0.011595536023378372, - -0.03236021474003792, - 0.0034306319430470467, - -0.0010159348603338003, - -0.012113249860703945, - 0.008969543501734734, - -0.006443350575864315, - 0.02749495580792427, - -0.012050874531269073, - 0.0002715267182793468, - 0.001024511526338756, - 0.012899176217615604, - -0.005747868213802576, - 0.002477851929143071, - -0.000299010775052011, - 0.015818333253264427, - -0.006692851427942514, - -0.02075844258069992, - -0.008769943378865719, - -0.01173899881541729, - -0.0034056820441037416, - -0.015618732199072838, - 0.009873982518911362, - -0.007160664536058903, - -0.0016669753240421414, - 0.0033433069474995136, - -0.02170654386281967, - 0.0008147751213982701, - -0.003443107008934021, - 0.0269211046397686, - 0.003020515665411949, - -0.006271819118410349, - -0.019199064001441002, - -0.00809005368500948, - 0.03360771760344505, - 0.009169143624603748, - -0.007946590892970562, - -0.002315676538273692, - 0.03749992698431015, - -0.021457044407725334, - 0.012961551547050476, - -0.0034399882424622774, - 0.009593294933438301, - 0.01191988680511713, - -0.01579338312149048, - 0.02617260441184044, - -0.0036707762628793716, - 0.017203060910105705, - -0.03752487525343895, - 0.020122217014431953, - 0.003577213501557708, - -0.003458700841292739, - -0.030888162553310394, - -0.014358754269778728, - -0.0063341944478452206, - 0.049126651138067245, - 0.00022162662935443223, - -0.006748988758772612, - 0.02233029529452324, - 0.02826840803027153, - -0.026222504675388336, - 0.0202220156788826, - 0.019311340525746346, - -0.0031483846250921488, - 0.016816334798932076, - 0.015119731426239014, - -0.011133960448205471, - -0.016192583367228508, - 0.014583304524421692, - 0.023203548043966293, - -0.006986014544963837, - 0.0056075239554047585, - -0.0480288490653038, - -0.004965060390532017, - 0.004952585324645042, - 0.02522450126707554, - 0.022342771291732788, - -0.01067862194031477, - 0.015269431285560131, - -0.00760352797806263, - -0.023976998403668404, - -0.013747477903962135, - -0.0288422591984272, - 0.005339310970157385, - -0.007497490383684635, - 0.005701086483895779, - -0.014159154146909714, - 0.021656643599271774, - -0.010853271931409836, - 0.022255444899201393, - -0.015905657783150673, - -0.0012997416779398918, - -0.018575312569737434, - 0.009306369349360466, - -0.02383977361023426, - -0.01269957609474659, - 0.009468544274568558, - -0.007235514931380749, - 0.034505922347307205, - 0.018026411533355713, - -0.04368754103779793, - 0.03572847321629524, - 0.01747751049697399, - 0.0029659373685717583, - -0.00845182966440916, - -0.0054921298287808895, - 0.004101164638996124, - 0.0036239949986338615, - 0.04266458749771118, - -0.025648653507232666, - 0.02654685452580452, - -0.010079820640385151, - -0.004122995771467686, - 0.03959573060274124, - 0.012724526226520538, - -0.004113639704883099, - -0.0101110078394413, - 0.005816480610519648, - -0.017664635553956032, - 0.009749232791364193, - -0.021781394258141518, - -0.00884479284286499, - 0.02078339271247387, - 0.001468154601752758, - -0.02559875324368477, - -0.0020942448172718287, - 0.027420105412602425, - -0.0017964036669582129, - -0.008826080709695816, - 0.005953705869615078, - -0.03001491166651249, - -0.003464938374236226, - 0.010117245838046074, - 0.009069344028830528, - -0.01615515723824501, - -0.012431362643837929, - -0.0182883869856596, - 0.0023421861696988344, - -0.025898152962327003, - -0.017015933990478516, - -0.012655913829803467, - -0.017976511269807816, - -0.014383704401552677, - -0.03310871869325638, - 0.00764719070866704, - 0.015518931671977043, - -0.009636957198381424, - -0.002717996248975396, - 0.003255981719121337, - 0.021694069728255272, - 0.01748998649418354, - 0.007703328505158424, - 0.02059626765549183, - -0.010422883555293083, - 0.013323327526450157, - -0.017727011814713478, - -0.04136718437075615, - -0.006384094245731831, - -0.029291359707713127, - -0.013947078958153725, - 0.017614735290408134, - -0.030339261516928673, - -0.0005746308597736061, - 0.0025573803577572107, - 0.020122217014431953, - -0.013011451810598373, - -0.007191852200776339, - -0.012294137850403786, - -0.016828808933496475, - 0.005501486361026764, - 0.014520930126309395, - -0.0022844891063869, - 0.005916280671954155, - 0.017926611006259918, - -0.007054626941680908, - 0.0075099654495716095, - -0.002276692073792219, - -0.004684372339397669, - -0.0021800107788294554, - 0.019149163737893105, - 0.005386092234402895, - -0.002604161622002721, - 0.014957555569708347, - 0.015244481153786182, - 0.010528921149671078, - 0.018575312569737434, - -0.008788655512034893, - -0.011239998042583466, - 0.00505238538607955, - -0.016990985721349716, - 0.019199064001441002, - -0.006237512920051813, - 0.0032653380185365677, - 0.02035924233496189, - -0.028418108820915222, - 0.0045190779492259026, - -0.01598050817847252, - 0.0249750018119812, - 0.03350791707634926, - -0.023003946989774704, - 0.033532869070768356, - -0.01240017544478178, - 0.008539155125617981, - -0.029515910893678665, - -0.011851274408400059, - -0.007959065958857536, - 0.015880707651376724, - -0.012824326753616333, - -0.011545635759830475, - -0.022242970764636993, - 0.03635222464799881, - -0.013098777271807194, - 0.014358754269778728, - 0.004057501908391714, - -0.0058944495394825935, - 0.01906183920800686, - -0.004974416457116604, - 0.011458311229944229, - -0.005922518204897642, - -0.015319331549108028, - -0.022841772064566612, - -0.02115764282643795, - 0.010709809139370918, - 0.0064121633768081665, - 0.01807631179690361, - -0.0020802104845643044, - 0.0031249939929693937, - -0.0019320695428177714, - 0.013772428035736084, - 0.004384971689432859, - -0.013310852460563183, - 0.004026314709335566, - -0.017252961173653603, - 0.008682617917656898, - 0.003577213501557708, - 0.012225525453686714, - 0.008595292456448078, - 0.02344057336449623, - 0.010117245838046074, - -0.0064620631746947765, - 0.015531406737864017, - -0.004007602110505104, - 0.005591930355876684, - -0.034106720238924026, - 0.012874226085841656, - -0.0003966668155044317, - 0.008389454334974289, - 0.009362506680190563, - 0.010840796865522861, - 0.03620252385735512, - 0.01094683539122343, - -0.0008553189691156149, - 0.003071974962949753, - 0.008888456039130688, - -0.0012389259645715356, - 0.012094537727534771, - 0.010410408489406109, - 0.01808878779411316, - 0.016105258837342262, - -0.028792358934879303, - 0.016616733744740486, - 0.0202220156788826, - -0.016217533499002457, - -0.00904439389705658, - -0.007578577846288681, - 0.031237464398145676, - -0.005866380874067545, - 0.023353246971964836, - 0.006692851427942514, - -0.008214804343879223, - -0.022854246199131012, - 0.012537401169538498, - -0.028193557634949684, - -0.01593060791492462, - 0.029391160234808922, - -0.0006771599873900414, - -0.013622728176414967, - 0.001018273993395269, - -0.021032894030213356, - 0.00615642499178648, - -0.003146825125440955, - 0.0231162216514349, - -0.020833292976021767, - -0.009593294933438301, - -0.022043369710445404, - -0.01790166087448597, - -0.015469031408429146, - -0.01463320478796959, - 0.012674625962972641, - 0.04960070177912712, - -0.0034150383435189724, - -0.014558354392647743, - 0.0518961064517498, - -0.02094556763768196, - 0.005414160899817944, - 0.025673601776361465, - -0.007129477337002754, - 0.047205496579408646, - 0.004288290161639452, - 0.025461526587605476, - 0.03829832747578621, - -0.020733492448925972, - -0.03398197144269943, - -0.02344057336449623, - -0.008713805116713047, - -0.007616003043949604, - 0.03540412336587906, - 0.01182632427662611, - 0.0006323278648778796, - -0.019673114642500877, - 0.004375615157186985, - 0.024176599457859993, - 0.013236002065241337, - -0.007684615906327963, - 0.028418108820915222, - 0.021606745198369026, - 0.005314360838383436, - -0.008127478882670403, - 0.009911407716572285, - -0.031012913212180138, - 0.01847551204264164, - 0.02078339271247387, - 0.005476536229252815, - 0.016579309478402138, - 0.0042290338315069675, - 0.024313824251294136, - 0.016966035589575768, - -0.015232006087899208, - 0.018512938171625137, - -0.005361142102628946, - -0.023889673873782158, - 0.0018119974993169308, - -0.03041411191225052, - -0.012294137850403786, - -0.0049245161935687065, - -0.036252424120903015, - 0.030089762061834335, - 0.01278690155595541, - -0.022055845707654953, - 0.0011399054201319814, - -0.007485015317797661, - -0.008832317776978016, - 0.002206520177423954, - 0.023802349343895912, - 0.016092782840132713, - 0.011470786295831203, - -0.01691613532602787, - -0.027270406484603882, - 0.025324301794171333, - 0.013747477903962135, - -0.011077823117375374, - 0.009761707857251167, - 0.005305004771798849, - 0.012094537727534771, - -0.024950051680207253, - 0.009568344801664352, - 0.010740997269749641, - -0.0027367088478058577, - -0.015144680626690388, - -0.003443107008934021, - -0.019960040226578712, - -0.00338696944527328, - -0.011133960448205471, - 0.022267920896410942, - -0.02672150544822216, - 0.0006011403165757656, - 0.013023926876485348, - 0.01712821051478386, - 0.014358754269778728, - 0.007085814606398344, - -0.05044900253415108, - 0.00835826713591814, - 0.018974514678120613, - -0.023378197103738785, - 0.009443594142794609, - 0.03193606436252594, - -0.0050367917865514755, - -0.004609521944075823, - 0.004073095973581076, - -0.0005099166883155704, - -0.019086789339780807, - 0.007129477337002754, - 0.004584571812301874, - -0.032784368842840195, - 0.010223283432424068, - -0.014870230108499527, - 0.01594308204948902, - -0.009169143624603748, - -0.01460825465619564, - 0.022554846480488777, - -0.00606598099693656, - 0.006487013306468725, - 3.177233156748116e-05, - -0.018038887530565262, - 0.03348296880722046, - 4.210321276332252e-05, - 0.008252229541540146, - 0.00953091960400343, - -0.031611714512109756, - 0.018388187512755394, - 0.010834559798240662, - 0.004491009283810854, - -0.01752741076052189, - -0.03211071714758873, - -0.04283923655748367, - -0.012156912125647068, - 0.006580575834959745, - -0.014832805842161179, - -0.00606598099693656, - -0.008963305503129959, - -0.016092782840132713, - -0.002364017302170396, - 0.018013937398791313, - -0.0007578578079119325, - 0.0022486234083771706, - 0.005981774535030127, - 0.009287656284868717, - 0.013036401942372322, - 0.007865503430366516, - -0.012911651283502579, - 0.0020318697206676006, - 0.013036401942372322, - -0.014870230108499527, - -0.017939087003469467, - 0.025274401530623436, - 0.0026977243833243847, - 0.01162048615515232, - 0.013710052706301212, - -0.013423127122223377, - -0.029715510085225105, - 0.004341308958828449, - -0.019523415714502335, - -0.0041916086338460445, - -0.003677013795822859, - 0.007297889795154333, - 0.007266702596098185, - 0.03445602208375931, - 0.005963062401860952, - 0.02094556763768196, - 0.012319087982177734, - -0.01306135207414627, - -0.03328336775302887, - -0.01787671074271202, - 0.007123239804059267, - 0.009449832141399384, - 0.013597778044641018, - -0.006755226291716099, - -0.02749495580792427, - -0.015506456606090069, - 0.014945080503821373, - -0.0058944495394825935, - -0.005473417695611715, - -0.0032435066532343626, - -0.018937088549137115, - -0.011115247383713722, - -0.0061345938593149185, - 0.024713026359677315, - -0.026222504675388336, - 0.012350275181233883, - 0.02019706554710865, - -0.015144680626690388, - 0.009487257339060307, - -0.005510842427611351, - 0.02233029529452324, - -0.014945080503821373, - 0.008489254862070084, - 0.014670629985630512, - 0.0015149358659982681, - -0.007959065958857536, - 0.02869255840778351, - -0.012481262907385826, - -0.012356513179838657, - -0.015718532726168633, - 0.010572584345936775, - -0.012761951424181461, - -0.024887675419449806, - 0.007372740190476179, - -0.030713513493537903, - -0.01943608932197094, - -0.005741630680859089, - 0.003464938374236226, - -0.030888162553310394, - -0.007665903307497501, - 0.008645192719995975, - -0.015918131917715073, - 0.01258106343448162, - -0.022030895575881004, - -0.011221285909414291, - 0.0010440037585794926, - 0.026197554543614388, - -0.015893181785941124, - -0.015681106597185135, - -0.022055845707654953, - 0.019510939717292786, - 0.013423127122223377, - -0.011389697901904583, - 0.00281311827711761, - -0.003020515665411949, - 0.018126212060451508, - -0.0027008431497961283, - -0.04119253531098366, - -0.0365767739713192, - -0.025648653507232666, - 0.01251245103776455, - -0.0182883869856596, - -0.02482530102133751, - 0.003938989248126745, - -0.005485892295837402, - -0.01029189582914114, - -0.04056878387928009, - -0.0018681350629776716, - 0.18423117697238922, - -0.01785176247358322, - -0.0005609862855635583, - 0.02906681038439274, - -0.024900151416659355, - 0.006449588108807802, - 0.00774075323715806, - -0.010503971949219704, - 0.009162906557321548, - 0.010167146101593971, - -0.014845280908048153, - -0.01134603563696146, - -0.001490765600465238, - 0.011414648033678532, - 0.02077091671526432, - -0.00571979908272624, - -0.06372243165969849, - -0.02269207127392292, - -0.006861263886094093, - 0.027844257652759552, - -0.011370985768735409, - -0.006265581585466862, - 0.0021238732151687145, - -0.0192489642649889, - 0.014109253883361816, - -0.008682617917656898, - -0.02480035088956356, - 0.0240643247961998, - 0.027969006448984146, - -0.003246625419706106, - -0.01191988680511713, - 0.007559865713119507, - -0.010853271931409836, - 0.004048145841807127, - -0.03148696571588516, - -0.002703961683437228, - 0.011233760975301266, - -0.0031686564907431602, - 0.009749232791364193, - -0.0031920471228659153, - -0.0007715023821219802, - -0.011383460834622383, - -0.014296378940343857, - -0.021007943898439407, - -0.01637970842421055, - 0.03927138075232506, - 0.009861507453024387, - 0.0028006432112306356, - -0.017789386212825775, - -0.0006245309486985207, - -0.027644656598567963, - 0.0024123580660670996, - -0.0051147607155144215, - 0.03769952803850174, - -0.028492959216237068, - 0.010747234337031841, - 0.014645679853856564, - 0.005504604894667864, - -0.013884703628718853, - 0.007890453562140465, - 0.017926611006259918, - 0.023502947762608528, - 0.0029160373378545046, - 0.025997953489422798, - -0.0023125577718019485, - 0.013335802592337132, - -0.04885220155119896, - -0.005838311742991209, - -0.00404502684250474, - -0.04136718437075615, - -0.010691097006201744, - -0.009967545047402382, - -0.008551630191504955, - 0.02652190439403057, - -0.019747965037822723, - -0.025673601776361465, - -0.0008818283677101135, - -0.0011866868007928133, - -0.00021363481937441975, - 0.018787387758493423, - -0.010073583573102951, - -0.005635592620819807, - -0.005501486361026764, - 0.0010003411443904042, - -0.012799376621842384, - -0.042614687234163284, - -0.01240641251206398, - 0.007915403693914413, - 0.014970030635595322, - -0.026472004130482674, - -0.0020537010859698057, - -0.005726036615669727, - -0.0025449052918702364, - -0.017539886757731438, - 0.011096535250544548, - 0.02924145944416523, - -0.0043974462896585464, - 0.020908143371343613, - -0.004980653990060091, - -0.0015562594635412097, - -0.017801862210035324, - 0.0999000072479248, - 0.013423127122223377, - -0.004263340029865503, - -0.011483261361718178, - 0.012138199992477894, - -0.01423400454223156, - 0.015344281680881977, - -0.012949076481163502, - -0.0030672969296574593, - -0.008620242588222027, - -0.026821304112672806, - 0.008333317004144192, - -0.0091441934928298, - -0.0032746943179517984, - 0.002775693079456687, - -0.00558257382363081, - -0.010323083959519863, - 0.026496954262256622, - -0.012537401169538498, - -0.014795380644500256, - -0.03148696571588516, - 0.026671605184674263, - 0.013560352846980095, - -0.006053506396710873, - -0.01251245103776455, - -0.025848252698779106, - 0.008632717654109001, - 0.010990497656166553, - -0.011327323503792286, - 0.03018956258893013, - -0.020109741017222404, - -0.000730568659491837, - 0.006359144113957882, - 0.008146191947162151, - 0.02151941880583763, - -0.018986988812685013, - 0.00019687149324454367, - 0.002752302447333932, - 0.004428633954375982, - 0.02247999608516693, - -0.003402563277631998, - 0.018026411533355713, - 0.0057291556149721146, - 0.015706056728959084, - -0.008801130577921867, - 0.010634959675371647, - -0.02309127151966095, - -0.032410115003585815, - -0.03118756413459778, - -0.013236002065241337, - -0.003480532206594944, - -0.005835193209350109, - 0.003156181424856186, - 0.042340237647295, - -0.00827094167470932, - -0.0024684956297278404, - -0.027195556089282036, - -0.007042151875793934, - 0.014446079730987549, - -0.005389211233705282, - -0.025074802339076996, - 0.0070671020075678825, - -0.01904936321079731, - 0.009880220517516136, - -0.002122313715517521, - -0.1556883156299591, - -0.000567613635212183, - 0.021419618278741837, - -0.014820330776274204, - 0.01125871017575264, - 0.003583451034501195, - 0.0124937379732728, - 0.02554885298013687, - 0.020483991131186485, - -0.003767457790672779, - 0.0026228742208331823, - 0.016616733744740486, - -0.011196335777640343, - -0.011863749474287033, - -0.002869255840778351, - -0.004035670775920153, - -0.025698551908135414, - 0.026422103866934776, - 0.03113766387104988, - 0.023752449080348015, - 0.007921641692519188, - 0.01047278381884098, - -0.0009964426280930638, - -0.008058866485953331, - 0.01472053024917841, - 0.013048877008259296, - -0.028118707239627838, - 0.021469518542289734, - -0.013335802592337132, - 0.009612007066607475, - -0.02151941880583763, - 0.020434092730283737, - 0.03557877242565155, - -0.007110764738172293, - 0.008607767522335052, - -0.007017201744019985, - -0.014695580117404461, - 0.0025620583910495043, - -0.02944106049835682, - 0.016966035589575768, - 0.005411042366176844, - 0.022642171010375023, - 0.00808381661772728, - 0.013373227789998055, - -0.011676623485982418, - 0.011420886032283306, - 0.01997251622378826, - -0.024925101548433304, - -0.022829296067357063, - -0.03248496726155281, - 0.00923151895403862, - -0.037400126457214355, - -0.012899176217615604, - -0.0018634569132700562, - 0.0059349932707846165, - 0.017964037135243416, - 0.015269431285560131, - 0.003564738668501377, - 0.007466302718967199, - 0.0054048048332333565, - -0.006034793797880411, - -0.014209054410457611, - -0.01049773395061493, - -0.023141171783208847, - 0.006359144113957882, - -0.02079586684703827, - -0.024176599457859993, - 0.012163150124251842, - -0.02425144985318184, - 0.021407144144177437, - -0.007541153114289045, - -0.03385721892118454, - 0.0002424833073746413, - -0.005906924605369568, - -0.029665611684322357, - -0.021294869482517242, - -0.016591783612966537, - 0.012337800115346909, - 0.019099263474345207, - -0.007247989997267723, - -0.0020084790885448456, - 0.03540412336587906, - -0.005177135579288006, - -0.0015133765991777182, - 0.003333950648084283, - 0.009942595846951008, - -0.011926124803721905, - 0.020434092730283737, - 0.03206081688404083, - 0.001065055257640779, - 0.022642171010375023, - -0.014545880258083344, - -0.03700092434883118, - -0.027070805430412292, - 0.007297889795154333, - 0.02247999608516693, - -0.017614735290408134, - -0.0021410263143479824, - -0.0055326740257442, - 0.018001461401581764, - 0.02383977361023426, - -0.016055358573794365, - -0.021843770518898964, - 0.009661907330155373, - 0.018986988812685013, - -0.01845056191086769, - -0.0007660445407964289, - 0.011127722449600697, - 0.05883222073316574, - 0.0036239949986338615, - -0.022342771291732788, - -0.01747751049697399, - 0.011196335777640343, - -0.0019850884564220905, - 0.004771697334945202, - 0.03333326801657677, - -0.014595779590308666, - -0.03093806281685829, - -0.002516836393624544, - 0.016042882576584816, - 0.05868251994252205, - 0.00787797849625349, - -0.025236977264285088, - -0.00019492227875161916, - -0.021581795066595078, - -0.008888456039130688, - -0.05039910227060318, - 0.008146191947162151, - 0.03537917137145996, - 0.013098777271807194, - -0.0034836509730666876, - 0.04678134620189667, - 0.0003734710917342454, - -0.009187856689095497, - 0.014745480380952358, - 0.015518931671977043, - -0.014308854006230831, - -0.01901193894445896, - -0.0016061594942584634, - -0.026097754016518593, - 0.03320851922035217, - -0.0027538619469851255, - -0.018887188285589218, - -0.009767944924533367, - -0.017402660101652145, - 0.01902441494166851, - 0.02538667619228363, - 0.01155811082571745, - -0.012256712652742863, - -0.027744457125663757, - -0.017539886757731438, - -0.012175625190138817, - -0.018700063228607178, - 0.023390673100948334, - 0.029166609048843384, - -0.022829296067357063, - -0.008221041411161423, - -0.024950051680207253, - 0.009293894283473492, - -0.026846254244446754, - -0.0032216752879321575, - 0.0012030602665618062, - -0.017240485176444054, - -0.010479021817445755, - 0.012724526226520538, - -0.008295891806483269, - 0.0062437504529953, - 0.009256469085812569, - -0.00799649115651846, - -0.03692607581615448, - 0.013448077253997326, - -0.02097051776945591, - -0.013298377394676208, - 0.017614735290408134, - -0.003262219252064824, - -0.008015204221010208, - -0.004375615157186985, - -0.016205057501792908, - 0.004453584086149931, - 0.011420886032283306, - 0.020658642053604126, - -0.0064620631746947765, - -0.009063106030225754, - -0.012924126349389553, - -0.016454558819532394, - 0.014196579344570637, - -0.03809872642159462, - -6.01335232204292e-05, - -0.03380731865763664, - 0.025037376210093498, - -0.010622484609484673, - 0.028592757880687714, - -0.005351786036044359, - -0.0033214755821973085, - -0.015905657783150673, - 0.002775693079456687, - 0.0034399882424622774, - -0.009568344801664352, - -0.03096301294863224, - 0.007042151875793934, - -0.019510939717292786, - -0.011994737200438976, - -0.03156181424856186, - -0.0008163345046341419, - 0.008252229541540146, - -0.0041947271674871445, - -0.018325813114643097, - -0.0307634137570858, - -0.002834949642419815, - -0.003443107008934021, - 0.01297402661293745, - 0.020159641280770302, - 0.010360509157180786, - -0.0030813312623649836, - -0.016816334798932076, - -0.02557380311191082, - 0.022355245426297188, - 0.017240485176444054, - 0.017814336344599724, - -0.005445348564535379, - 0.02347799763083458, - 0.014246479608118534, - 0.009605769999325275, - -0.0057291556149721146, - -0.006215681321918964, - 0.013123726472258568, - -0.015731006860733032, - 0.009456069208681583, - -0.0749000534415245, - 0.02040914259850979, - -0.0064121633768081665, - -0.014221529476344585, - -0.003745626425370574, - 0.010004970245063305, - 0.011308610439300537, - 0.004603284411132336, - 0.01028565876185894, - 0.017228011041879654, - -0.04079333320260048, - -0.0023749331012368202, - -0.0010011207778006792, - 0.0011718727182596922, - -0.017402660101652145, - -0.015506456606090069, - 0.0003405292227398604, - 0.017839286476373672, - 0.0039920080453157425, - 0.01094683539122343, - -0.004734272137284279, - 0.014782905578613281, - 0.014957555569708347, - 0.0021238732151687145, - -0.03250991553068161, - 0.004668778274208307, - 0.012737001292407513, - -0.02366512268781662, - -0.01788918673992157, - 0.03056381270289421, - 0.026971004903316498, - 0.0027226742822676897, - -0.03113766387104988, - -0.005283173173666, - -0.02019706554710865, - -0.018749963492155075, - -0.01790166087448597, - 0.03690112382173538, - 0.006661663763225079, - 0.044685542583465576, - -0.0007738414569757879, - -0.0028614590410143137, - 0.027170605957508087, - -0.027170605957508087, - 0.007884216494858265, - 0.002409239299595356, - 0.01805136166512966, - 0.004347546491771936, - 0.022966522723436356, - -0.02039666660130024, - 0.02173149399459362, - 0.021868720650672913, - -0.008826080709695816, - -0.01786423660814762, - 0.02924145944416523, - 0.007809366099536419, - 0.01907431334257126, - -0.0012919448781758547, - -0.0012365869479253888, - -0.007204327266663313, - 0.044560790061950684, - 0.004291408695280552, - 0.009817845188081264, - 0.0012552994303405285, - 0.00044598215026780963, - -0.00847054272890091, - -0.010279420763254166, - 0.0018057599663734436, - 0.00866390485316515, - -0.034156620502471924, - -0.02597300335764885, - -0.012418887577950954, - 0.013298377394676208, - 0.033932071179151535, - 0.009555869735777378, - -0.0046718972735106945, - 0.007223039865493774, - 0.03977038338780403, - 0.0002639247686602175, - 0.006128356326371431, - 0.037949029356241226, - 0.02669655531644821, - -0.03133726492524147, - -0.010928122326731682, - 0.011115247383713722, - 0.00895706843584776, - -0.019760441035032272, - 0.012537401169538498, - 0.0033433069474995136, - -0.006830076687037945, - -0.01963569037616253, - 0.013335802592337132, - 0.01807631179690361, - -0.01578090712428093, - -0.009019443765282631, - -0.009374981746077538, - -0.012450075708329678, - -0.009150431491434574, - -0.004765459802001715, - 0.024139175191521645, - 0.001609278260730207, - 0.009262706153094769, - 0.02191861905157566, - -0.004416158888489008, - -0.022267920896410942, - 0.010547634214162827, - -0.015394181944429874, - -0.04131728410720825, - -0.02984026074409485, - 0.004547146614640951, - -0.011109010316431522, - 0.014957555569708347, - 0.025249451398849487, - 0.013497977517545223, - -0.033358220010995865, - 0.01270581316202879, - -0.017988987267017365, - 0.00883855577558279, - -0.020346766337752342, - 0.03188616409897804, - 0.009300131350755692, - 0.01574348285794258, - -0.007297889795154333, - -0.011707811616361141, - 0.02074596844613552, - -0.02290414646267891, - 0.02538667619228363, - -0.039720483124256134, - 0.015444081276655197, - -0.005841430742293596, - -0.010996734723448753, - 0.009468544274568558, - -0.013959554024040699, - -0.01689118519425392, - 0.00024774621124379337, - -0.01982281543314457, - 0.023702548816800117, - 0.025536376982927322, - 0.0020412260200828314, - 0.08712557703256607, - 0.02151941880583763, - -0.017365235835313797, - 0.012774426490068436, - -0.0034056820441037416, - -0.0010276301763951778, - 0.008183617144823074, - -0.007460065186023712, - -0.0538422092795372, - -0.02732030674815178, - 0.017252961173653603, - -0.009967545047402382, - -0.003312119282782078, - -0.04246498644351959, - 0.003271575551480055, - 0.003160859690979123, - 0.0035148384049534798, - -0.005878855939954519, - -0.0045565031468868256, - 0.019086789339780807, - -0.00518649211153388, - 0.0013270308263599873, - 0.0022876078728586435, - 0.012874226085841656, - -0.019897665828466415, - -0.0020708541851490736, - 0.026671605184674263, - -0.02019706554710865, - 0.008695092983543873, - -0.028917109593749046, - 0.01750246062874794, - -0.008133716881275177, - -0.032385166734457016, - -0.026197554543614388, - 0.029391160234808922, - -0.030314311385154724, - -0.0004919838393107057, - -0.016217533499002457, - 0.020621217787265778, - 0.009830320253968239, - -0.013784903101623058, - 0.013884703628718853, - -0.02458827570080757, - -0.01791413687169552, - -0.006574338302016258, - -0.00523639190942049, - -0.011657911352813244, - -0.014396179467439651, - -0.03405681997537613 - ], - "sparse": "SparseEmbedding(values=array([1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722,\n 1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722]), indices=array([ 381716141, 1810453357, 917314569, 408270109, 1818780009,\n 706241563, 647566671, 164058840, 1373052463, 1219669695]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 17, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 11 - } -} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000018.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000018.json deleted file mode 100644 index 5b97fe0eb5a5b4845a129ee63e784bdec559d9cd..0000000000000000000000000000000000000000 --- a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000018.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "2b86db2d-408b-1992-e1b5-8a9f00000018", - "content": "Abbildungsverzeichnis Abbildung 4: Integration des Algorithmus in ein Unity Projekt - z.B. die AR-App. Der blaue Kasten erstellt Abbildung 5: Matching Algorithmic Speed Test \u2013 Vergleich der Verarbeitungszeiten verschiedener Abbildung 1: Punktwolke von Fellbach. ....................................................................................................... 4 Abbildung 2: Ablaufdiagram des PC Matching-Verfahrens. ........................................................................ 4 Abbildung 3: Optimierung der Matching-Parameter. ................................................................................... 5 im wesentlichen Abbildung 2 dar. ................................................................................................... 5 Matching-Schritte f\u00fcr zwei Datens\u00e4tze.. ........................................................................................ 6 Abbildung 6: Match-Point-Wolken ............................................................................................................... 6", - "embedding": { - "dense": [ - -0.028690945357084274, - 0.010465582832694054, - 0.017881233245134354, - -0.028475021943449974, - -0.01073548849672079, - 0.015668010339140892, - -0.0022452757693827152, - -0.021457480266690254, - -0.007402156013995409, - -0.038434531539678574, - 0.01533062756061554, - 0.019527656957507133, - 0.008400806225836277, - 0.0027277315966784954, - -0.016342774033546448, - 0.0024392702616751194, - 0.03157893568277359, - -0.008852898143231869, - -0.011113355867564678, - -0.0036201064940541983, - -0.010229415260255337, - 0.01647772639989853, - 0.015425094403326511, - -0.020958155393600464, - -0.019878534600138664, - 0.011167336255311966, - 0.024439936503767967, - -0.015006741508841515, - 0.015209170058369637, - -0.011855595745146275, - 0.01174763310700655, - -0.02098514698445797, - -0.008083667606115341, - -0.0016759439604356885, - -0.03279350697994232, - -0.00035910072620026767, - 0.008286096155643463, - 0.0028221984393894672, - 0.035924412310123444, - 0.018515512347221375, - 0.01214574370533228, - -0.015546551905572414, - -0.004041833803057671, - -0.02213224396109581, - -0.004382589366286993, - 0.01882590353488922, - -0.007489875424653292, - 0.008549254387617111, - -0.028555992990732193, - 0.030634265393018723, - 0.0066430470906198025, - 0.02025640197098255, - -0.018083663657307625, - -0.002540484769269824, - 0.000345605454640463, - -7.902113429736346e-05, - -0.011504718102514744, - 0.00988528598099947, - -0.0014136296231299639, - 0.012516863644123077, - -0.02384614385664463, - 0.009109308011829853, - -0.0018353568157181144, - -0.016126848757267, - -0.032253697514534, - -0.03022940643131733, - -0.016207819804549217, - 0.004230767488479614, - 0.01074898336082697, - -0.003836030839011073, - 0.03284749016165733, - 0.03557353466749191, - -0.013751680962741375, - -0.002079958561807871, - 0.029986491426825523, - -0.020647764205932617, - 0.006093114614486694, - -0.010924422182142735, - 0.0008417675271630287, - 0.010323882102966309, - 0.007031036075204611, - 0.00021571347315330058, - -0.0033974344842135906, - 0.017031032592058182, - 0.0031258421950042248, - 0.014912274666130543, - -0.008245610632002354, - 0.02190282568335533, - -0.025033727288246155, - 0.0032591079361736774, - 0.009466932155191898, - 0.03886638209223747, - -0.00022562405501957983, - -0.005236165132373571, - -0.004274627193808556, - 0.0003318993258289993, - 0.018380559980869293, - 0.025371110066771507, - -0.012908226810395718, - -0.0372469462454319, - -0.013475027866661549, - 0.0017729412065818906, - -0.014709845185279846, - -0.0048245592042803764, - -0.017651814967393875, - -0.026666656136512756, - -0.003883264260366559, - 0.013886634260416031, - 0.010647769086062908, - -0.01210525818169117, - -0.025330623611807823, - 0.023670705035328865, - -0.01582995243370533, - -0.005013493355363607, - 0.003311402164399624, - -0.032064761966466904, - 0.03014843538403511, - -0.03036435879766941, - -0.008832654915750027, - -0.006457487121224403, - 0.022253701463341713, - 0.02326584793627262, - 0.02427799254655838, - 0.0017155862879008055, - 0.02979755774140358, - 0.02398109622299671, - -0.007557351607829332, - -0.011018889024853706, - -0.0020580287091434, - -0.03014843538403511, - 0.015789467841386795, - 0.014439939521253109, - 0.006794868968427181, - 0.012186229228973389, - -0.01349527109414339, - -0.00998650025576353, - -0.020107952877879143, - 0.0036808352451771498, - -0.029608624055981636, - -0.024237506091594696, - 0.012368415482342243, - 0.014143044129014015, - 0.007995948195457458, - -0.0422401987016201, - -0.013265850953757763, - 0.04647771269083023, - 0.011956810019910336, - 0.009089064784348011, - 0.005134950391948223, - -0.02564101479947567, - -0.01747637614607811, - -0.03317137435078621, - 0.007834005169570446, - 0.0068859620951116085, - -0.018812406808137894, - -0.020580288022756577, - -0.001068656798452139, - -0.0011074556969106197, - -0.010593787766993046, - -0.01661267876625061, - -0.010438592173159122, - 0.011167336255311966, - -0.012442640028893948, - -0.009865042753517628, - 0.02384614385664463, - 0.01091767381876707, - 0.01568150520324707, - -0.010047229006886482, - -0.0033738177735358477, - -0.020607279613614082, - -0.019568143412470818, - 0.01581645756959915, - -0.038569483906030655, - 0.04170038551092148, - -0.008900131098926067, - -0.015870438888669014, - -0.003488527610898018, - -0.0005119768320582807, - -0.029095804318785667, - -0.017354918643832207, - -0.005148445721715689, - 0.007645071018487215, - 0.024885280057787895, - 0.0005343283992260695, - -0.007449389435350895, - 0.010762478224933147, - 0.0020968278404325247, - 0.011025636456906796, - 0.008549254387617111, - 0.006605935283005238, - 0.01734142377972603, - 0.013421046547591686, - 0.0025927789974957705, - -0.009871791116893291, - -0.6184073090553284, - -0.0019095808966085315, - 0.006238189060240984, - -0.022618073970079422, - 0.00812415312975645, - 0.03654519468545914, - 0.02572198584675789, - -0.011147093959152699, - -0.0009370778570882976, - 0.03730092942714691, - 0.007894733920693398, - 0.003849525935947895, - -9.11985116545111e-05, - -0.00894736498594284, - 0.002982454840093851, - -0.024804307147860527, - 0.026599179953336716, - -0.02950066141784191, - -0.003647096920758486, - 0.03373817726969719, - -0.02542509138584137, - 0.0033164627384394407, - 0.02376517280936241, - -0.010182182304561138, - -0.015236160717904568, - 0.004372467752546072, - 0.004959512036293745, - -0.003825909225270152, - -0.007604585029184818, - -0.0027108625508844852, - -0.02070174552500248, - 0.017597833648324013, - 0.004224019590765238, - 0.036140333861112595, - 0.04045882076025009, - 0.008657216094434261, - -0.031120095402002335, - 0.005229417700320482, - 0.02326584793627262, - -0.00035193137591704726, - -0.025978395715355873, - -0.008846149779856205, - -0.0017257077852264047, - -0.002213224535807967, - -0.010445339605212212, - 0.013623476028442383, - 0.016315782442688942, - -0.020161934196949005, - -0.004821185488253832, - -0.0262078158557415, - 0.010654516518115997, - 0.008292843587696552, - 0.0017982448916882277, - 0.015236160717904568, - 0.010634273290634155, - -0.00032030182774178684, - 0.023522257804870605, - -0.020823203027248383, - -0.011511466465890408, - 0.0042105247266590595, - -0.008468282409012318, - -0.012665311805903912, - -0.007091764826327562, - -0.035924412310123444, - -0.040863681584596634, - 0.028906870633363724, - -0.020863689482212067, - -0.006599187385290861, - 0.023792162537574768, - -0.024804307147860527, - 0.004426449071615934, - 0.0013883260544389486, - 0.001889337901957333, - 0.00130229361820966, - 0.028097154572606087, - 0.01535761822015047, - 0.030337369069457054, - -0.013063422404229641, - 0.0015249656280502677, - -0.007827256806194782, - -0.0033502010628581047, - -0.005728742573410273, - 0.002734479261562228, - -0.009068822488188744, - 0.011221317574381828, - -0.002847502240911126, - -0.023940609768033028, - -0.006015516817569733, - 0.009237512946128845, - 0.018650464713573456, - 0.036356259137392044, - 0.03044533170759678, - -0.03001348301768303, - -0.036356259137392044, - -0.009615380316972733, - 0.034277986735105515, - -0.008697702549397945, - 0.029905520379543304, - 0.020148439332842827, - -0.057543836534023285, - 0.003286098362877965, - -0.013778671622276306, - 0.020026981830596924, - 0.007726042531430721, - 0.03252360224723816, - -0.010175433941185474, - -0.04577595740556717, - 0.01618083007633686, - 0.05093115195631981, - -0.013340075500309467, - -0.02758433297276497, - -0.014075567945837975, - -0.014372463338077068, - -0.009291494265198708, - 0.013846147805452347, - -0.025951405987143517, - 0.007921723648905754, - -0.014952760189771652, - 0.022820502519607544, - -0.011342775076627731, - 0.017597833648324013, - -0.013657214120030403, - 0.021039128303527832, - -0.018245605751872063, - -0.011470980010926723, - 0.010485825128853321, - -0.0022081637289375067, - -0.01067475974559784, - 0.01840754970908165, - -0.013387308456003666, - -0.005013493355363607, - -0.008981103077530861, - 0.023184875026345253, - 0.001970309531316161, - 0.014520911499857903, - -0.005037109833210707, - 0.023508762940764427, - 0.0025506061501801014, - -0.002491564489901066, - -0.05147096514701843, - -0.01253035943955183, - 0.00032304305932484567, - 0.006406879983842373, - -0.02171389013528824, - -0.023508762940764427, - -0.012557349167764187, - -0.021430490538477898, - 0.006012143101543188, - 0.0030043846927583218, - 0.010323882102966309, - 0.011801614426076412, - -0.005958162248134613, - -5.021189645049162e-05, - 0.023441284894943237, - 0.018232110887765884, - -0.006494598928838968, - -0.016585687175393105, - -0.04210524633526802, - -0.013738186098635197, - -0.04261806607246399, - 0.003102225484326482, - 0.027962202206254005, - -0.043157875537872314, - -0.02085019275546074, - -0.007105260156095028, - -0.022604579105973244, - -0.0021271919831633568, - 0.02605936862528324, - -0.04218621551990509, - -0.022618073970079422, - 0.017138993367552757, - -0.014669359661638737, - 0.003112346865236759, - 0.02906881272792816, - -0.026815103366971016, - 0.011592437513172626, - -0.021754376590251923, - -0.025519557297229767, - 0.003569499123841524, - -0.017368413507938385, - 0.00569163030013442, - 0.025978395715355873, - 0.017516862601041794, - -0.01632927730679512, - 0.010195677168667316, - 0.0019804309122264385, - 0.012807012535631657, - -0.010668011382222176, - -0.02147097699344158, - -0.008832654915750027, - -0.0062516843900084496, - 0.036059364676475525, - -0.015951409935951233, - 0.013407551683485508, - -0.02758433297276497, - 0.013454785570502281, - -0.016801612451672554, - 0.0033889999613165855, - 0.005748985335230827, - 0.02105262316763401, - 0.03287447988986969, - 0.013448037207126617, - 0.0029166655149310827, - 0.016491221264004707, - 0.015883933752775192, - -0.03228068724274635, - 0.005823209416121244, - -0.02226719632744789, - 0.020296888425946236, - 0.004193655680865049, - 0.002137313596904278, - -0.025870434939861298, - -0.02018892578780651, - -0.013562747277319431, - 0.041511453688144684, - -0.001921389251947403, - -0.0029790811240673065, - 0.010715245269238949, - 0.012854245491325855, - 0.019460180774331093, - 0.0030988515354692936, - 0.0030195668805390596, - 0.04294195398688316, - -0.005381239112466574, - 0.01307016983628273, - -0.009757081046700478, - 0.02562751993536949, - 0.029743576422333717, - 0.02278001792728901, - -0.019878534600138664, - -0.0022958829067647457, - -0.0011285420041531324, - -0.008184881880879402, - 0.010303639806807041, - 0.033684197813272476, - 0.022361664101481438, - 0.029176775366067886, - -0.018677454441785812, - 0.024898774921894073, - 0.012024286203086376, - 0.0028087033424526453, - 0.026963550597429276, - 0.0021524957846850157, - 0.0029554644133895636, - 0.02449391596019268, - 0.005627527832984924, - 0.0443994402885437, - 0.03344128280878067, - -0.009588389657437801, - -0.0038528998848050833, - -0.01483130268752575, - -0.007780023850500584, - -0.03425099700689316, - 0.017854243516921997, - 0.016342774033546448, - -0.005195679143071175, - 0.016950059682130814, - 0.0012947025243192911, - 0.01431848295032978, - 0.03802967444062233, - 0.017705796286463737, - 0.022375158965587616, - -0.004264505580067635, - 0.0035627514589577913, - 0.003923750016838312, - -0.03252360224723816, - -0.009014841169118881, - -0.031821850687265396, - -0.016558697447180748, - -0.011160588823258877, - 0.020013486966490746, - -0.010668011382222176, - -0.00941295176744461, - -0.012449387460947037, - 0.01940619945526123, - -0.009136298671364784, - 0.022010786458849907, - 0.013252356089651585, - 0.0431038960814476, - -0.004524289630353451, - -0.036842089146375656, - -0.027462877333164215, - -0.0001592020271345973, - 0.03622130677103996, - -0.003626854158937931, - -0.020512811839580536, - -0.017287442460656166, - 0.02299594134092331, - -0.017152490094304085, - -0.019392704591155052, - -0.001825235434807837, - -0.0010804651537910104, - 0.0040215905755758286, - -0.014682854525744915, - -0.0022469626273959875, - 0.004753709305077791, - 0.03265855461359024, - -0.003721321001648903, - 0.0042543839663267136, - -0.009595138020813465, - 0.007651818450540304, - 0.0162483062595129, - -0.00902833603322506, - -0.02542509138584137, - 0.05341428145766258, - -0.001528339460492134, - -0.012240210548043251, - -0.022024281322956085, - 0.0024004713632166386, - -0.023873133584856987, - -0.00213900045491755, - -0.012780021876096725, - -0.00802293885499239, - 0.013819157145917416, - 0.0019247629679739475, - 0.010485825128853321, - -0.007348175160586834, - -0.007928472012281418, - 0.03122805617749691, - 0.020958155393600464, - -0.007935219444334507, - -0.02385963872075081, - 0.008812411688268185, - 0.004149795975536108, - 0.01827259734272957, - 0.02715248428285122, - -0.008502020500600338, - 0.00938596110790968, - -0.03608635440468788, - -0.011072869412600994, - -0.026882579550147057, - -0.04763830825686455, - 0.027881229296326637, - 0.014156538993120193, - -0.02105262316763401, - 0.010404854081571102, - 0.04550605267286301, - -0.013690952211618423, - 0.006815111730247736, - 0.015236160717904568, - 0.023117398843169212, - 0.006862345151603222, - 0.03381915017962456, - 0.025748977437615395, - 0.0003664809628389776, - -0.0057658543810248375, - 0.004551280289888382, - 0.023090409114956856, - 0.00937921367585659, - -0.013704448007047176, - 0.03557353466749191, - 0.018434539437294006, - -0.004763830453157425, - -0.03924424946308136, - 0.004186907783150673, - 0.035060714930295944, - 0.01654520258307457, - 0.029095804318785667, - 0.002629891037940979, - 0.02815113589167595, - -0.008711197413504124, - 0.0077530331909656525, - 0.026099853217601776, - -0.0082321148365736, - 0.025384604930877686, - 0.0043016173876821995, - 0.0019905525259673595, - -0.005307015497237444, - 0.014116053469479084, - 0.0016810046508908272, - -0.0016691962955519557, - 0.014750330708920956, - -0.00010485192615306005, - -0.019163284450769424, - -0.0008253201376646757, - -0.01174088567495346, - -0.022159235551953316, - -0.01039135828614235, - -0.008002695627510548, - 0.0029638989362865686, - -0.02950066141784191, - 0.0010239536641165614, - -0.0012795203365385532, - -0.027111999690532684, - -0.028690945357084274, - 0.007186231669038534, - 0.00533737987279892, - -0.0363832488656044, - -0.007834005169570446, - -0.013245608657598495, - -0.01862347312271595, - -0.029311727732419968, - -0.009547904133796692, - -0.0007882081554271281, - -0.0040890672244131565, - -0.0037078256718814373, - -0.008893383666872978, - -0.00802293885499239, - -0.0036201064940541983, - 0.01314439345151186, - 0.030985143035650253, - -0.024156535044312477, - -0.016383258625864983, - 0.00012166830128990114, - -0.01034412533044815, - -0.013286094181239605, - 0.011336027644574642, - -0.018677454441785812, - -0.021511461585760117, - -0.007975704967975616, - -0.010364368557929993, - -0.010978402569890022, - -0.0030904170125722885, - 0.031255047768354416, - -0.023576239123940468, - 0.015236160717904568, - 0.0024949382059276104, - 0.022213216871023178, - 0.022726036608219147, - 0.020445335656404495, - -0.023900125175714493, - 0.02535761334002018, - 0.011221317574381828, - -0.021538453176617622, - 0.014574892818927765, - -0.024156535044312477, - 0.006676785182207823, - -0.010593787766993046, - -0.008448039181530476, - 0.007078269496560097, - -0.021875834092497826, - 0.005937919020652771, - -0.0058333310298621655, - -0.012935217469930649, - 0.011956810019910336, - -0.004095814656466246, - -0.003216935321688652, - -0.012510116212069988, - 0.025546547025442123, - 0.029311727732419968, - 0.007516866084188223, - 0.006798242684453726, - 0.04377865791320801, - -0.009446689859032631, - -0.006413627415895462, - -0.02384614385664463, - 0.026909571141004562, - 0.015560047701001167, - -0.004615382757037878, - 0.020499316975474358, - -0.02041834406554699, - 0.005455463193356991, - -0.006015516817569733, - 0.008670711889863014, - -0.005043857730925083, - 0.006015516817569733, - -0.007908228784799576, - 0.002395410556346178, - -0.018636969849467278, - -0.009649118408560753, - 0.01206477265805006, - 0.017813757061958313, - -0.012908226810395718, - 0.012887983582913876, - 0.007941966876387596, - 0.0171120036393404, - 0.021727386862039566, - 0.014129548333585262, - 0.008819159120321274, - -0.02842104062438011, - -0.035627514123916626, - 0.026464225724339485, - -0.0190553218126297, - 0.03533061966300011, - 0.013400804251432419, - -0.011734138242900372, - -0.033198367804288864, - 0.008974355645477772, - -0.012381911277770996, - -0.014736835844814777, - -0.009804314002394676, - -0.005350874736905098, - 0.030526302754878998, - 0.0046761115081608295, - 0.039999984204769135, - 0.009561399929225445, - 0.022213216871023178, - -0.01604587770998478, - -0.005823209416121244, - 0.005134950391948223, - 0.01805667206645012, - -0.014372463338077068, - -0.01647772639989853, - 0.001157219521701336, - 0.009858295321464539, - 0.009696352295577526, - 0.03373817726969719, - 0.017719291150569916, - 0.02585694007575512, - 0.04542508348822594, - -0.03279350697994232, - 0.0007405530195683241, - -0.00992577150464058, - -0.018636969849467278, - -0.008900131098926067, - 0.009183531627058983, - 0.006831980776041746, - 0.0009429820347577333, - -0.0217678714543581, - 0.020593782886862755, - 0.033765166997909546, - 0.013873138464987278, - 0.02076922170817852, - 0.014642369002103806, - 0.022577587515115738, - -0.022402150556445122, - 0.025114698335528374, - 0.006626178044825792, - -0.00402496475726366, - -0.016140343621373177, - 0.0043016173876821995, - -0.026261797174811363, - 0.005894059780985117, - 0.036356259137392044, - 0.011133598163723946, - 0.01067475974559784, - 0.0277192872017622, - 0.0023852891754359007, - 0.003038122784346342, - 0.007867743261158466, - -0.0011361330980435014, - -0.029608624055981636, - 0.003947366960346699, - -0.008407553657889366, - -0.005104586016386747, - -0.012854245491325855, - -0.01754385232925415, - -0.00612347899004817, - -0.016059372574090958, - 0.007179484236985445, - -0.0017830627039074898, - 0.026666656136512756, - 0.0036943303421139717, - -0.021875834092497826, - 0.010634273290634155, - -0.010661263950169086, - 0.04091766104102135, - -0.005438594147562981, - 0.039919011294841766, - 0.03600538149476051, - -0.001752698328346014, - -0.024966251105070114, - -0.06898782402276993, - 0.0034986489918082952, - 0.0018589735263958573, - 0.02141699567437172, - 0.041862331330776215, - -0.03611334413290024, - 0.0061403485015034676, - 0.021403498947620392, - -0.027395399287343025, - -0.01073548849672079, - -0.02592441625893116, - 0.014709845185279846, - 0.011761128902435303, - 0.0011918011587113142, - -0.012780021876096725, - -0.0002943655999843031, - -0.034628864377737045, - 0.006393384654074907, - 0.002171051688492298, - 0.006518215872347355, - 0.004251010250300169, - 0.0009556338773109019, - -0.019176779314875603, - 0.03886638209223747, - -0.00022963047376833856, - 0.03784073889255524, - 0.0078070140443742275, - -0.02120107039809227, - 0.018421044573187828, - -0.005479080136865377, - -0.021012136712670326, - 0.004173412453383207, - 0.008407553657889366, - 0.02406206727027893, - -0.0033620093017816544, - -0.011018889024853706, - 0.008144396357238293, - -0.00866396352648735, - -0.005715247243642807, - -0.005627527832984924, - 0.006295544095337391, - 0.02429148741066456, - -0.010290144011378288, - -0.017813757061958313, - -0.017219966277480125, - -0.00213900045491755, - 0.023940609768033028, - 0.00019399452139623463, - -0.0003964235947933048, - -0.010080967098474503, - -0.004659242462366819, - 0.013582990504801273, - 0.019743582233786583, - -0.011403503827750683, - 0.004642373416572809, - -0.02120107039809227, - 0.005037109833210707, - -0.018164634704589844, - 0.0033974344842135906, - 0.00985154788941145, - 0.01350201852619648, - -0.06877189874649048, - -0.0012314434861764312, - 0.011302289552986622, - -0.009635623544454575, - 0.01210525818169117, - 0.0047233449295163155, - -0.01489877887070179, - -0.003836030839011073, - -0.0017105255974456668, - -0.035141684114933014, - 0.017354918643832207, - 0.04547906294465065, - -0.012746283784508705, - -0.017773272469639778, - 0.0006136131123639643, - -0.01784074865281582, - -0.017489871010184288, - 0.04091766104102135, - -0.02198379673063755, - -0.020067468285560608, - 0.0021170706022530794, - -0.027341419830918312, - 0.01128204632550478, - -0.00406545028090477, - -0.02163291908800602, - -0.0015308697475120425, - 0.0015578602906316519, - -0.0020698371808975935, - -0.012112005613744259, - -0.025897424668073654, - -0.02118757553398609, - -0.004959512036293745, - -0.013083665631711483, - 0.032685548067092896, - -0.01712549850344658, - 0.015924420207738876, - 0.010047229006886482, - -0.009102560579776764, - -0.008434544317424297, - -0.045937903225421906, - -0.038704436272382736, - -0.0025759099517017603, - 0.01609985902905464, - -0.0068758404813706875, - 0.006025638431310654, - -0.013279346749186516, - -0.017570842057466507, - -0.012388658709824085, - -0.006562075577676296, - -0.0014498981181532145, - 0.003947366960346699, - 0.02665315940976143, - -0.002154182642698288, - -0.02190282568335533, - 0.020377859473228455, - -0.014331977814435959, - -0.019676104187965393, - -0.004446691833436489, - -0.006761130876839161, - -0.017638318240642548, - 0.0022402149625122547, - -0.019878534600138664, - 0.011423747055232525, - 0.03954114392399788, - -0.030283387750387192, - -0.016882583498954773, - 0.0077530331909656525, - -0.022469626739621162, - -0.026977047324180603, - -0.013630223460495472, - 0.0031410243827849627, - -0.0031140337232500315, - 0.0027041148860007524, - -0.0011951749911531806, - 0.045371100306510925, - 0.011835352517664433, - 0.014372463338077068, - -0.0277192872017622, - -0.023819154128432274, - 1.9913431970053352e-05, - 0.004139674361795187, - 0.008245610632002354, - 0.0009362344280816615, - -0.03160592541098595, - -0.009183531627058983, - 0.001189270755276084, - -0.015492571517825127, - 0.01168015692383051, - 0.017422394827008247, - -0.0023279341403394938, - -0.024251002818346024, - -0.0012609644327312708, - -0.0007607958978042006, - -0.0071187554858624935, - -0.003623480210080743, - -0.008933869190514088, - -0.03535760939121246, - 0.01574898138642311, - -0.007024288643151522, - -0.00445681344717741, - -0.024912269786000252, - 0.01039135828614235, - 0.01174763310700655, - -0.006180834025144577, - -0.012847498059272766, - -0.0018404176225885749, - -0.0040890672244131565, - -0.017233461141586304, - -0.012476378120481968, - 0.03743588179349899, - 0.007820509374141693, - -0.015182179398834705, - 0.011538457125425339, - 0.0010349185904487967, - 0.004011469427496195, - 0.0012263827957212925, - 0.017381908372044563, - -0.04512818530201912, - -0.017854243516921997, - 0.0010754043469205499, - -0.02105262316763401, - 0.0008219463634304702, - -0.022361664101481438, - -0.002839067718014121, - -0.008178134448826313, - 0.0017830627039074898, - 0.003933871630579233, - -0.014412949793040752, - -0.023535752668976784, - 0.023468276485800743, - 0.008906878530979156, - -0.020863689482212067, - 0.023441284894943237, - -0.008684206753969193, - 0.008873140439391136, - -0.01360323280096054, - -0.010904178954660892, - 0.004396084696054459, - 0.010371115989983082, - -0.005668013822287321, - -0.012665311805903912, - -0.007557351607829332, - 0.0058198357000947, - 0.0029706466011703014, - -0.001116733648814261, - -0.00583670474588871, - -0.008778673596680164, - 0.17770573496818542, - -0.0019838048610836267, - -0.0012516863644123077, - 0.016869088634848595, - 0.0003915737324859947, - -0.02721996232867241, - 0.023940609768033028, - 5.677502485923469e-05, - 0.014048577286303043, - 0.021578937768936157, - -0.005745611619204283, - -0.0010264840675517917, - 0.0012095136335119605, - 0.005050605162978172, - 0.00946018472313881, - -0.01431848295032978, - -0.010411601513624191, - -0.01596490480005741, - 0.014669359661638737, - 0.017004041001200676, - 0.019149789586663246, - -0.028043173253536224, - -0.0051788100972771645, - -0.017273947596549988, - 0.016153838485479355, - -0.00453103706240654, - -0.010951412841677666, - 0.000707658298779279, - 0.03260457515716553, - -0.0018404176225885749, - -0.018353568390011787, - 0.017031032592058182, - -0.008407553657889366, - 0.0024207141250371933, - -0.012887983582913876, - -0.0094196991994977, - 0.015033732168376446, - 0.00028234635828994215, - 0.03773277625441551, - 0.00906207412481308, - -0.00692982180044055, - -0.013994595967233181, - -0.00453103706240654, - -0.027881229296326637, - 0.002661942271515727, - 0.01882590353488922, - 0.0011715581640601158, - -0.015371114015579224, - 0.013016188517212868, - -0.01496625505387783, - -0.017233461141586304, - -0.02514168992638588, - 0.015492571517825127, - 0.026882579550147057, - -0.011167336255311966, - -0.005151819903403521, - 0.006761130876839161, - 0.011329280212521553, - 0.01349527109414339, - 0.04696354269981384, - -0.027233457192778587, - 0.0014245945494621992, - 0.0018353568157181144, - 0.013009441085159779, - -0.017813757061958313, - 0.0005727055831812322, - -0.031551942229270935, - -0.0014178468845784664, - 0.009601885452866554, - -0.002591092139482498, - 0.006808364298194647, - -0.01975707709789276, - -0.018002690747380257, - 0.016734136268496513, - -0.02248312160372734, - -0.03338729962706566, - 0.016005391255021095, - 0.018421044573187828, - 0.0038967595901340246, - 0.029311727732419968, - 0.0019736834801733494, - 0.0015477389097213745, - -0.0017813757294788957, - -0.025614025071263313, - -0.008340077474713326, - -0.0013916997704654932, - 0.02665315940976143, - -0.005273276939988136, - -0.006116731557995081, - -0.020040476694703102, - -0.04431847110390663, - -0.005151819903403521, - 0.0038528998848050833, - -0.0090958122164011, - 0.006811738014221191, - 0.012044529430568218, - 0.01782725378870964, - 0.019298236817121506, - -0.010715245269238949, - -0.008846149779856205, - -0.022793512791395187, - 0.04369768872857094, - 0.04089067131280899, - -0.002658568322658539, - -0.008286096155643463, - -0.002844128292053938, - -0.026450730860233307, - -0.0006460861186496913, - 0.018636969849467278, - -0.001158062950707972, - 0.0078070140443742275, - -0.03576246649026871, - 0.012280697003006935, - -0.01690957508981228, - -0.015303636901080608, - 0.023400800302624702, - -0.005307015497237444, - 1.515582152933348e-05, - -0.0046558682806789875, - 0.008717944845557213, - 0.012118753045797348, - -0.002268892480060458, - -0.006292169913649559, - 0.03022940643131733, - -0.0099595095962286, - -0.015654513612389565, - -0.024439936503767967, - -0.02893386036157608, - -0.014089062809944153, - -0.020728737115859985, - 0.00987853854894638, - -0.016869088634848595, - 0.026950055733323097, - 0.004062076564878225, - -0.0031528326217085123, - 0.004500672686845064, - 0.00587044283747673, - -0.03236166015267372, - -0.023333324119448662, - -0.005006745457649231, - 0.009291494265198708, - 0.022672055289149284, - -0.010863693431019783, - 0.009048579260706902, - -0.003832656890153885, - -0.005340753588825464, - 0.012786769308149815, - 0.015425094403326511, - -0.020971650257706642, - -0.015128199011087418, - -0.015937915071845055, - 0.007449389435350895, - 0.008974355645477772, - -0.01925775222480297, - 0.030418340116739273, - 0.007577594835311174, - -0.018205121159553528, - -0.021538453176617622, - 0.004912278614938259, - -0.021390004083514214, - -0.021943310275673866, - -0.010337377898395061, - 0.020823203027248383, - -0.0018437913386151195, - 0.010269900783896446, - 0.006906204856932163, - -0.17144392430782318, - -0.002823885530233383, - 0.014048577286303043, - -0.03848851099610329, - 0.018461531028151512, - 0.004969633650034666, - 0.01847502589225769, - 0.015060722827911377, - -0.013549252413213253, - 0.010573544539511204, - -0.0031309027690440416, - 0.005705125629901886, - -0.000851888966280967, - -0.013623476028442383, - -0.0045445323921740055, - 0.016342774033546448, - -0.016369763761758804, - 0.029770568013191223, - 0.036140333861112595, - 0.02871793694794178, - 0.025087708607316017, - -0.040431831032037735, - 0.019095808267593384, - 0.019676104187965393, - -0.0027715913020074368, - -0.0005107116885483265, - -0.003076921682804823, - 0.026963550597429276, - -0.005988526623696089, - -0.016504716128110886, - 0.008367068134248257, - -0.007152493577450514, - 0.01582995243370533, - 0.004736840259283781, - -0.019595133140683174, - 0.00043606595136225224, - -0.00852226372808218, - -0.00078778644092381, - 0.005384613294154406, - 0.017854243516921997, - 0.01446693018078804, - 0.02356274239718914, - -0.012854245491325855, - 0.01181510929018259, - -0.006578944623470306, - 0.03711199387907982, - 0.018731435760855675, - -0.046288780868053436, - -0.015074217692017555, - -0.005475706420838833, - 0.004628878086805344, - -0.025600528344511986, - -0.004574896767735481, - -0.002950403606519103, - 0.019230760633945465, - 0.014331977814435959, - 0.0023009437136352062, - 0.008502020500600338, - 0.010337377898395061, - -0.0023110650945454836, - 0.005708499811589718, - -0.00024312574532814324, - 0.016059372574090958, - -0.008690954186022282, - -0.005536434706300497, - -0.02234816923737526, - 0.011288793757557869, - 0.030256398022174835, - -0.018232110887765884, - -0.0036842089612036943, - -0.0005035423091612756, - -0.02291497029364109, - -0.007402156013995409, - -0.018515512347221375, - -0.02319836989045143, - 0.026896074414253235, - -0.015789467841386795, - 0.03630227968096733, - 0.033414289355278015, - -0.005215922370553017, - 0.002177799353376031, - 0.04404856264591217, - 0.014952760189771652, - -0.015560047701001167, - 0.0060661244206130505, - -0.0009674422326497734, - -0.0063528986647725105, - 0.017017535865306854, - -0.011619428172707558, - -0.003552630078047514, - 0.008731440640985966, - -0.027246952056884766, - -0.026194320991635323, - 0.0045445323921740055, - 0.024588383734226227, - 0.014062072150409222, - -0.013744933530688286, - -0.016788117587566376, - 0.0021255051251500845, - -0.026113349944353104, - 0.02313089370727539, - -0.0019888656679540873, - -0.01121457014232874, - 0.02842104062438011, - 0.026464225724339485, - -0.002677124459296465, - 0.0014136296231299639, - 0.0034750322811305523, - 0.01582995243370533, - 0.020823203027248383, - -0.032982442528009415, - -0.0010315447580069304, - 0.009790819138288498, - 0.01257084496319294, - -0.0038731428794562817, - 0.023738181218504906, - 0.016639668494462967, - -0.031066114082932472, - -0.008650468662381172, - -0.011619428172707558, - 0.0775168389081955, - -0.007483127526938915, - -0.025897424668073654, - 0.00899459794163704, - -0.012597835622727871, - -0.004149795975536108, - -0.0814574584364891, - -0.01311065535992384, - 0.018434539437294006, - 0.03184884041547775, - -0.004439943935722113, - 0.02234816923737526, - -0.009190279990434647, - 0.022672055289149284, - 0.0034851536620408297, - 0.03282050043344498, - -0.011902828700840473, - -0.03149796277284622, - -0.026626169681549072, - -0.005610658787190914, - -0.009750333614647388, - -0.01127529889345169, - -0.023036427795886993, - -0.009804314002394676, - -0.00941295176744461, - 0.026977047324180603, - -0.004247636534273624, - -2.0677813154179603e-05, - 0.003001010976731777, - -0.01775977574288845, - -0.013529009185731411, - -0.014520911499857903, - -0.03565450757741928, - 0.009736837819218636, - 0.011491223238408566, - 0.02321186661720276, - 0.019730085507035255, - -0.019595133140683174, - 0.011909577064216137, - -0.04148446395993233, - -0.0026012135203927755, - -0.002555666957050562, - -0.03049931302666664, - -0.025452081114053726, - 0.03066125512123108, - -0.022604579105973244, - -0.009183531627058983, - -0.012665311805903912, - 0.01080971211194992, - -0.022240206599235535, - 0.017746280878782272, - 0.010863693431019783, - -0.014763826504349709, - -0.002781712682917714, - 0.00013959170610178262, - -0.009365717880427837, - -0.014224015176296234, - -0.014696350321173668, - -0.019149789586663246, - 0.0026568814646452665, - 0.022213216871023178, - 0.008819159120321274, - 0.0008101380080915987, - -0.02048582211136818, - -0.01941969431936741, - 0.006815111730247736, - 0.014304987154901028, - 0.009763828478753567, - -0.02578946202993393, - 0.011916324496269226, - 0.0035897421184927225, - 0.004382589366286993, - -0.027530353516340256, - 0.0027192970737814903, - -0.0074628847651183605, - -0.0012634947197511792, - -0.017031032592058182, - -0.003335018875077367, - -0.01589742861688137, - 0.012004043906927109, - -0.008846149779856205, - 0.021147089079022408, - -0.04016192629933357, - -0.024170029908418655, - 0.023333324119448662, - -0.016990546137094498, - -0.016207819804549217, - -0.016423745080828667, - -0.004976381082087755, - 0.0026551946066319942, - 0.019311733543872833, - 0.013798914849758148, - -0.02199729159474373, - -0.011133598163723946, - 0.001020579831674695, - -0.030742228031158447, - 0.022010786458849907, - -0.0016885957447811961, - 0.020080963149666786, - -0.0405128039419651, - -0.013407551683485508, - -0.00424426281824708, - -0.016126848757267, - -0.015924420207738876, - 0.005232791416347027, - 0.015546551905572414, - -0.024669354781508446, - -0.010087715461850166, - -0.057543836534023285, - 0.026801608502864838, - 0.0028255723882466555, - -0.004396084696054459, - -0.015465580858290195, - 0.015182179398834705, - 0.010755730792880058, - -0.0013486836105585098, - 0.002501685870811343, - -0.019392704591155052, - -0.00898785050958395, - 0.015506066381931305, - -0.009170036762952805, - -0.005877190735191107, - -0.011801614426076412, - 0.002437583403661847, - 0.024318479001522064, - 0.0012398780090734363, - 0.019959505647420883, - -0.0032675424590706825, - 0.006842102389782667, - -0.01985154300928116, - -0.012348173186182976, - 0.014507416635751724, - -0.012469630688428879, - -0.0067746262066066265, - -0.02278001792728901, - 0.00469298055395484, - -0.02112009935081005, - -0.0025927789974957705, - 0.013454785570502281, - 0.0008383936947211623, - -0.007604585029184818, - 0.027058018371462822, - -0.013481775298714638, - -0.005964909680187702, - 0.000755313434638083, - 0.03300943225622177, - 0.018529007211327553, - 0.04496624320745468, - -0.023157885298132896, - -0.027260446920990944, - 0.009473680518567562, - -0.02499324269592762, - -0.011268551461398602, - -0.009035083465278149, - 0.02299594134092331, - -0.0052429125644266605, - 0.0022047897800803185, - -0.0021255051251500845, - 0.023306332528591156, - 0.009757081046700478, - -0.022955456748604774, - -0.039001334458589554, - 0.024750327691435814, - -0.026518207043409348, - 0.0027361661195755005, - -0.0061774603091180325, - 0.017314432188868523, - -0.03352225199341774, - 0.05357622727751732, - 0.006697028409689665, - 0.0026163957081735134, - -0.0047975690104067326, - 0.0173279270529747, - -0.0009919024305418134, - -0.018164634704589844, - 0.009244260378181934, - 0.0017813757294788957, - -0.020742231979966164, - -0.009433194063603878, - 0.0016017199959605932, - -0.012294191867113113, - 0.029419690370559692, - 0.00813090056180954, - 0.011848848313093185, - -0.01224695798009634, - 0.027179475873708725, - 0.003970983438193798, - 0.01574898138642311, - 0.012058024294674397, - 0.04269903898239136, - -0.014669359661638737, - 0.007381913252174854, - 0.030310379341244698, - 0.01253710687160492, - 0.009372465312480927, - 0.03282050043344498, - -0.010357620194554329, - 0.010580291971564293, - 0.010249658487737179, - -0.0006503033800981939, - 0.009156540967524052, - 0.004919026046991348, - -0.014480425976216793, - 0.015195675194263458, - -0.0019028332317247987, - -0.002852562814950943, - 0.02091767080128193, - 0.015627523884177208, - -0.00520917447283864, - -0.0003955801366828382, - -0.015627523884177208, - -0.024372458457946777, - -0.024251002818346024, - 0.015506066381931305, - -0.015910925343632698, - -0.0398380383849144, - -0.013616728596389294, - 0.03066125512123108, - 0.0009784071007743478, - 0.014021586626768112, - -0.020944660529494286, - 0.0003030110092367977, - -0.025452081114053726, - 0.002115383744239807, - -0.02183534763753414, - -0.011889333836734295, - -0.036491211503744125, - 0.03473682701587677, - 0.02462887018918991, - 0.01171389501541853, - 0.02356274239718914, - 0.003301280550658703, - 0.03192980960011482, - 0.011734138242900372, - 0.008225367404520512, - -0.04477730765938759, - 0.012827254831790924, - -0.004224019590765238, - 0.0008502020500600338, - -0.003157893428578973, - -0.017935214564204216, - -0.007044531404972076, - -0.031066114082932472, - -0.027746276929974556, - 0.008974355645477772, - 0.009507418610155582, - 0.011261804029345512, - 0.1364641785621643, - 0.024831298738718033, - -0.006916326470673084, - -0.005921049974858761, - -0.0066531687043607235, - -0.006329282186925411, - 0.018529007211327553, - -0.01689607836306095, - -0.01264506857842207, - -0.03503372520208359, - 0.019811058416962624, - -0.015425094403326511, - 0.0027952080126851797, - -0.01890687458217144, - 0.022334672510623932, - -0.013306337408721447, - -0.03044533170759678, - 0.02971658669412136, - -0.03773277625441551, - 0.002402158221229911, - 0.02570849098265171, - -0.027908220887184143, - 0.008805664256215096, - 0.04045882076025009, - -0.0021491218358278275, - -0.015654513612389565, - -0.00036120935692451894, - 0.000333375355694443, - 0.0007182014524005353, - -0.007793519180268049, - 0.01346828043460846, - 0.009082317352294922, - -0.06202426552772522, - -0.03703102469444275, - 0.03503372520208359, - -0.005829956848174334, - -2.8104166176490253e-06, - 0.011133598163723946, - 0.009149793535470963, - 0.019892029464244843, - -0.005630902014672756, - 0.01834007352590561, - -0.010769226588308811, - -0.0001837676391005516, - -0.0008143552695401013, - -0.018798911944031715, - 0.0049797547981143, - -0.022793512791395187, - -0.014439939521253109 - ], - "sparse": "SparseEmbedding(values=array([1.43271432, 2.0436473 , 1.86675505, 1.43271432, 1.73532584,\n 1.43271432, 1.43271432, 1.43271432, 1.43271432, 1.43271432,\n 1.43271432, 1.43271432, 1.43271432, 1.43271432, 1.86675505,\n 1.43271432, 1.43271432, 1.43271432, 1.86675505, 1.98715687,\n 1.43271432, 1.43271432, 1.43271432, 1.43271432, 1.43271432,\n 1.43271432, 1.43271432, 1.43271432, 1.43271432, 1.43271432,\n 1.73532584, 1.43271432, 1.43271432, 1.43271432, 1.43271432,\n 1.43271432, 1.43271432, 1.43271432, 1.43271432, 1.43271432,\n 1.43271432, 1.43271432, 1.43271432, 1.43271432, 1.86675505,\n 1.43271432, 1.43271432]), indices=array([ 337416142, 2077811411, 516830072, 1836140557, 47951928,\n 1153951961, 1047604504, 1633188342, 993732989, 1040803305,\n 1780580861, 1109731834, 1675878461, 2039377815, 408270109,\n 1285142779, 781398386, 1038749708, 1394226660, 1778032728,\n 287978520, 997512866, 1167338989, 984697402, 185684970,\n 1167073666, 1810453357, 48069021, 1638510030, 834718839,\n 19522071, 1507114423, 519984025, 1271910523, 264741300,\n 296072752, 1028984916, 1515684580, 299846390, 151305406,\n 540387554, 2124172637, 2002512088, 335636706, 670727360,\n 648501015, 1541370494]))" - }, - "metadata": { - "source": "INSPIRER_Schlussbericht.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 5, - "has_images": true, - "image_count": 29, - "detection_class_prob": 0.6591171622276306, - "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", - "links": [], - "last_modified": "2025-05-05T22:58:03", - "_known_field_names": "frozenset({'coordinates', 'detection_class_prob', 'parent_id', 'links', 'image_path', 'image_base64', 'orig_elements', 'sent_from', 'attached_to_filename', 'emphasized_text_tags', 'detection_origin', 'page_number', 'link_texts', 'filename', 'bcc_recipient', 'cc_recipient', 'key_value_pairs', 'header_footer_type', 'link_start_indexes', 'category_depth', 'link_urls', 'page_name', 'filetype', 'text_as_html', 'is_continuation', 'image_mime_type', 'file_directory', 'sent_to', 'url', 'subject', 'emphasized_text_contents', 'last_modified', 'data_source', 'signature', 'languages', 'email_message_id', 'table_as_cells'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "INSPIRER_Schlussbericht.pdf", - "parent_id": "1c51aaba3295e535d31a83c2392f0391", - "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", - "id": "41cb3300-eadf-4f9f-95b0-9c9fcb4ec1be", - "processing_timestamp": "2025-05-14T23:14:58.594393", - "chunk_number": 18, - "total_chunks": 35, - "chunking_strategy": "semantic", - "word_count": 69 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000000.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000000.json deleted file mode 100644 index 726bd836ed358159e09c5ca291f9ca44012e220e..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000000.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000000", - "content": "Hochschule II) rur Technilk Stuttgart", - "embedding": { - "dense": [ - 0.005859805271029472, - -0.008646704256534576, - -0.010209762491285801, - -0.011506767943501472, - -0.017293408513069153, - 0.023479128256440163, - -0.020459432154893875, - 0.0038311551325023174, - 0.0022381662856787443, - -0.02206904999911785, - -0.0025906856171786785, - -0.0076357051730155945, - 0.024130957201123238, - -0.010455860756337643, - 0.01634892262518406, - -0.011699656024575233, - 0.023106655105948448, - -0.0016960843931883574, - 0.027722664177417755, - 0.02105805091559887, - -0.019328709691762924, - 0.034480396658182144, - 0.01457967422902584, - 0.00941825658082962, - -0.00645509734749794, - -0.0026139651890844107, - 0.004782292526215315, - -0.028467612341046333, - -0.012903543189167976, - 0.002336272969841957, - 0.018743393942713737, - -0.011227413080632687, - -0.037140920758247375, - -0.02338601090013981, - -0.022042445838451385, - -0.01612277887761593, - -0.02252133935689926, - 0.004456378519535065, - 0.016322318464517593, - 0.014805818907916546, - 0.008812987245619297, - 0.017772303894162178, - 0.013941148295998573, - -0.021989233791828156, - -0.007542586885392666, - 0.01288358960300684, - -0.011759517714381218, - 0.0006098420708440244, - -0.014845726080238819, - 0.02915934845805168, - 0.011845985427498817, - 0.02854742668569088, - -0.007881803438067436, - -0.02184290625154972, - -0.03128776699304581, - 0.0031560470815747976, - -0.016082869842648506, - 0.02934558503329754, - 0.003581731114536524, - 0.0023678666912019253, - -0.0006023593596182764, - -0.015111778862774372, - -0.04235554859042168, - 0.010961361229419708, - -0.018397526815533638, - -0.005327700171619654, - -0.027775876224040985, - 0.014207200147211552, - -0.02700432389974594, - 0.014087476767599583, - 0.009005875326693058, - 0.00908569060266018, - -0.010854939930140972, - -0.0017359922640025616, - 0.01577690988779068, - 0.02417086437344551, - 0.0016661534318700433, - -0.001424212008714676, - 0.013216155581176281, - -0.019248895347118378, - 0.011559979058802128, - -0.02548782341182232, - -0.007542586885392666, - 0.012757214717566967, - 0.03376205638051033, - 0.008713217452168465, - 0.0048088980838656425, - 0.01018315739929676, - -0.019501645117998123, - -0.0009694286272861063, - 0.01328266877681017, - 0.03136758506298065, - -0.016668185591697693, - 0.01928880251944065, - -0.008753125555813313, - -0.00646839989349246, - -0.007961619645357132, - 0.022148866206407547, - -0.00944486167281866, - -0.02905292622745037, - -0.012058827094733715, - 0.0088196387514472, - -0.004975180607289076, - -0.0022098980844020844, - -0.05188022553920746, - -0.013927845284342766, - 0.012198504991829395, - 0.007116903085261583, - 0.014859029091894627, - 0.0006904892507009208, - -0.0011066119186580181, - 0.020512644201517105, - 0.01044255867600441, - -0.026472218334674835, - 0.02774927020072937, - -0.034081317484378815, - 0.02020668238401413, - 0.004918644670397043, - 0.003614987712353468, - -0.034826263785362244, - 0.018517250195145607, - 0.004403167869895697, - 0.021470433101058006, - -0.022787392139434814, - 0.024955719709396362, - 0.02127089351415634, - -0.01577690988779068, - -0.009637749753892422, - -0.007216672413051128, - -0.00040593784069642425, - -0.006305443122982979, - -0.026591941714286804, - 0.005673568230122328, - 0.012617536820471287, - 0.011865939013659954, - -0.010595538653433323, - -0.013455602340400219, - 0.014686094596982002, - -0.0556049607694149, - -0.04232894256711006, - 0.008068040013313293, - 0.007156810723245144, - -0.01765258051455021, - -0.002645558910444379, - -0.00984394084662199, - 0.009571236558258533, - 0.008999223820865154, - 0.026591941714286804, - 0.020073657855391502, - 0.005184696987271309, - -0.015071870759129524, - -0.05209307000041008, - 0.011985662393271923, - -0.014885634183883667, - -0.0026123025454580784, - 0.0121186887845397, - 0.0024260657373815775, - 0.005321049131453037, - -0.018357619643211365, - -0.003023020923137665, - -0.0018590415129438043, - 0.0088196387514472, - 0.007176764775067568, - -0.008207717910408974, - 0.040599603205919266, - 0.011047828011214733, - 0.013256062753498554, - 0.02298693172633648, - -0.0076357051730155945, - 0.011227413080632687, - -0.0067078471183776855, - 0.031128136441111565, - -0.01923559233546257, - 0.008866197429597378, - 0.0054341210052371025, - 6.334334466373548e-05, - -0.0020652320235967636, - 0.004918644670397043, - -0.02468966692686081, - -0.009923756122589111, - -0.009863894432783127, - 0.0056635914370417595, - 0.015524160116910934, - 0.0403069444000721, - -0.02338601090013981, - 0.019448433071374893, - 0.018517250195145607, - 0.0317932665348053, - 0.01805165782570839, - -0.0036648723762482405, - 0.020791998133063316, - 0.006192370783537626, - -0.01787872426211834, - -0.002352901268750429, - -0.6666210293769836, - 0.0005142294685356319, - -0.0033389581367373466, - 0.002288050949573517, - 0.0029581706039607525, - 0.03349600359797478, - 0.015909936279058456, - -0.01049576885998249, - 0.035491395741701126, - 0.017293408513069153, - 0.015510858036577702, - -0.007788685150444508, - 0.00788845494389534, - -0.015364528633654118, - -0.012537721544504166, - -0.025301586836576462, - 0.00105755846016109, - -0.018969539552927017, - 0.013043221086263657, - 0.00470912829041481, - -0.027057534083724022, - 0.030010715126991272, - -0.005530565045773983, - -0.006897409446537495, - 0.008267579600214958, - 0.01571039669215679, - 0.005221279338002205, - 0.0037313855718821287, - -0.005750058684498072, - -0.01680121198296547, - -0.026937810704112053, - 0.012664096429944038, - -0.022654365748167038, - 0.0039009940810501575, - 0.05214627832174301, - 0.012098735198378563, - -0.027616243809461594, - 0.04033355042338371, - 0.015484252013266087, - 0.0033073644153773785, - -0.012324879877269268, - -0.025514429435133934, - -0.010429255664348602, - 0.0056436373852193356, - 0.011254018172621727, - 0.02253464236855507, - 0.008733171969652176, - -0.020286498591303825, - -0.0092519735917449, - -0.03224555775523186, - 0.008493724279105663, - -0.02127089351415634, - 0.00546072656288743, - 0.008374000899493694, - 0.027988716959953308, - -0.0017110498156398535, - 0.01866357959806919, - 0.008294184692203999, - -0.01152007095515728, - 0.011693005450069904, - -0.011979011818766594, - 0.018676882609725, - 0.0007906745886430144, - 0.003422099631279707, - -0.010209762491285801, - 0.009611144661903381, - -0.027217164635658264, - -0.009577888064086437, - 0.017280105501413345, - -0.002120105316862464, - -0.0013942810473963618, - 0.027163954451680183, - 0.006647985428571701, - 0.020738787949085236, - 0.02178969606757164, - 0.0061491369269788265, - 0.02809513919055462, - -0.009724216535687447, - 0.010050131008028984, - 0.017785606905817986, - -0.015231502242386341, - -0.0003406718315090984, - 0.017719093710184097, - -0.003791247261688113, - 0.005833199713379145, - -0.04576101899147034, - -0.02151034027338028, - -0.012464556843042374, - -0.0005994494422338903, - 0.007083646487444639, - 0.0170273557305336, - -0.0179851446300745, - -0.019208986312150955, - 0.01018315739929676, - 0.00027436658274382353, - 0.04147757589817047, - -3.8245038012973964e-05, - 0.02439700998365879, - 0.0035185436718165874, - -0.03477305546402931, - -0.011174202896654606, - 0.002672164235264063, - 0.01257097814232111, - 0.01012994721531868, - 0.012810424901545048, - -0.0033140156883746386, - -0.008919408544898033, - -0.01793193444609642, - 0.013914543204009533, - -0.012610886245965958, - 0.0005753384320996702, - 0.0032824219670146704, - -0.018543856218457222, - -0.009571236558258533, - 0.012072130106389523, - -0.019953932613134384, - 0.03706110641360283, - -0.009624447673559189, - 0.02543461322784424, - -0.018809907138347626, - 0.008181112818419933, - -0.01240469515323639, - 0.015856726095080376, - -0.014952147379517555, - -0.013555372133851051, - 0.02655203454196453, - -0.0037047802470624447, - -0.004479657858610153, - -0.02288050949573517, - -0.0009843939915299416, - 0.015045265667140484, - -0.0019122519297525287, - 0.02168327383697033, - -0.0009153867140412331, - 0.025567639619112015, - -0.010795078240334988, - 0.020845208317041397, - -0.00023861578665673733, - -0.006391909904778004, - -0.010369393974542618, - -0.012018918991088867, - 0.0002483848948031664, - 0.019794302061200142, - -0.035039108246564865, - 0.009990269318223, - -0.024197470396757126, - -0.009125598706305027, - 0.013056524097919464, - 0.003096185391768813, - 0.009744171053171158, - -0.030542820692062378, - -0.009005875326693058, - -0.017945237457752228, - -0.0018972865073010325, - 0.015138383954763412, - -0.00611588079482317, - 0.005660265684127808, - 0.0048088980838656425, - -0.0042335595935583115, - -0.017838817089796066, - 0.0012853658990934491, - 0.0022431546822190285, - -0.02163006365299225, - 0.006471725646406412, - -0.000890444265678525, - 0.004034020006656647, - 0.00713685667142272, - 0.019488342106342316, - -0.044297732412815094, - -0.027962112799286842, - -0.009624447673559189, - 0.014180595055222511, - 0.030010715126991272, - 0.021696576848626137, - -0.010815031826496124, - -0.010010222904384136, - -0.009032480418682098, - 0.0004323352186474949, - -0.008979270234704018, - 0.00728983711451292, - 0.0008646704372949898, - 0.003804550040513277, - 0.002507544355466962, - -0.0007565866690129042, - 0.005317723378539085, - 0.012191853486001492, - 0.012032222002744675, - -0.0027935507241636515, - -0.002919925609603524, - -0.004519565962255001, - -0.029425401240587234, - 0.012178550474345684, - -0.011214111000299454, - 0.00996366422623396, - -0.011054479517042637, - -0.005071624647825956, - -0.011939103715121746, - -0.01316959597170353, - 0.007256580516695976, - 0.02870705910027027, - 0.0352785550057888, - -0.008207717910408974, - 0.03485286980867386, - -0.014832423999905586, - 0.01612277887761593, - -0.029079532250761986, - -0.008480421267449856, - 0.00893936213105917, - 0.049166493117809296, - 0.008839592337608337, - 0.012963405810296535, - -0.024822693318128586, - -0.016468646004796028, - -0.024663060903549194, - 0.006139160133898258, - 0.04246196895837784, - 0.0016694790683686733, - 0.007642356678843498, - 0.004343306180089712, - -0.004193651489913464, - 0.010622143745422363, - -0.0013701701536774635, - 0.02582038938999176, - -0.009504723362624645, - 0.004712454043328762, - 0.011154248379170895, - 0.007855198346078396, - 0.012956754304468632, - 0.004845479968935251, - 0.004150418099015951, - -0.0160695668309927, - 0.0003791247436311096, - -0.0007619908428750932, - -0.010768473148345947, - 0.0027802479453384876, - 0.013715003617107868, - -0.006704521831125021, - -0.028520822525024414, - 0.032884083688259125, - 0.022281892597675323, - 0.010642098262906075, - 0.03546478971838951, - 0.013901240192353725, - -0.003237525699660182, - 0.029771268367767334, - -0.015138383954763412, - 0.026126349344849586, - 0.005633660592138767, - -0.0152048971503973, - 0.019488342106342316, - -0.0021433851215988398, - 0.024530036374926567, - -0.015790212899446487, - -0.009577888064086437, - 0.026538731530308723, - -0.015470949932932854, - 0.038497790694236755, - -0.0006040221778675914, - 0.007848546840250492, - 0.01692093536257744, - -0.012557675130665302, - 0.029877688735723495, - 0.023226378485560417, - -0.022494735196232796, - -0.0018972865073010325, - 0.0037081059999763966, - -0.008121251128613949, - -0.0042136055417358875, - -0.011367090977728367, - -0.00913225021213293, - 0.006508307997137308, - -0.005640311632305384, - 0.012644142843782902, - -0.010362742468714714, - 0.015617278404533863, - -0.009185460396111012, - 0.043712418526411057, - 0.002371192444115877, - 0.010455860756337643, - 0.03546478971838951, - -0.02123098447918892, - -0.040040891617536545, - -0.004629312548786402, - 0.02208235301077366, - -0.004496286157518625, - -0.024756180122494698, - -0.007755429018288851, - -0.01092145312577486, - -0.017000751569867134, - -0.006218975875526667, - 0.005959574598819017, - 0.010974663309752941, - 0.011360439471900463, - 0.005227930378168821, - -0.014366831630468369, - -0.009464816190302372, - 0.027908900752663612, - -0.019847512245178223, - -0.002715397858992219, - -0.011979011818766594, - 0.0009677657508291304, - -0.007363001350313425, - -0.0095579344779253, - -0.007961619645357132, - 0.027563033625483513, - -0.006618054583668709, - 0.00046268184087239206, - 0.006461748853325844, - 0.0003970001416746527, - -0.0027420029509812593, - 0.03365563601255417, - -0.025780482217669487, - -0.0011382056400179863, - 0.00682424521073699, - -0.015737002715468407, - 0.01475260779261589, - 0.009611144661903381, - -0.011313879862427711, - 0.04568120464682579, - 0.0007657321984879673, - 0.015098475851118565, - -0.006248906720429659, - -0.0019172404427081347, - -0.00395753001794219, - 0.04381883889436722, - 0.012151945382356644, - 0.0044264476746320724, - 0.0019205660792067647, - -0.005906364414840937, - -0.03264463692903519, - -0.00967765785753727, - -0.04642615094780922, - -0.011899195611476898, - -0.024144260212779045, - 0.01610947586596012, - -0.009717565961182117, - 0.01370170060545206, - 0.008746474049985409, - 0.005949597805738449, - -0.006671265233308077, - 0.015391133725643158, - -0.0029881014488637447, - 0.015989752486348152, - 0.005726778879761696, - 0.001635391148738563, - -0.01004347950220108, - -0.0032990502659231424, - 0.020047051832079887, - 0.02889329567551613, - 0.0026488846633583307, - 0.017559461295604706, - 0.010628795251250267, - 0.005197999533265829, - -0.040892262011766434, - 0.016535159200429916, - 0.0022464804351329803, - -0.002319644670933485, - 0.008141204714775085, - -0.012491161935031414, - 0.017160382121801376, - -0.014859029091894627, - 0.000553721678443253, - 0.0026056510396301746, - -0.01199896540492773, - 0.02531488984823227, - 0.024330496788024902, - 0.017120474949479103, - -0.019980538636446, - 0.002861726563423872, - -0.01873009279370308, - 0.005028391256928444, - 0.025501126423478127, - 0.003914296627044678, - -0.008081343024969101, - 0.002855075290426612, - 0.027775876224040985, - -0.011147597804665565, - -0.02218877337872982, - -0.0029182627331465483, - -0.013901240192353725, - 0.0070570409297943115, - -0.024649759754538536, - -0.02769606001675129, - 0.015337923541665077, - -0.01958145946264267, - -0.03775284066796303, - 0.009484769776463509, - -0.022547945380210876, - -0.015550765208899975, - -0.004539520014077425, - -0.021018143743276596, - -0.014406739734113216, - -0.017040658742189407, - 0.01165974885225296, - 0.013435648754239082, - -0.005430795717984438, - -0.029877688735723495, - -0.0015206560492515564, - -0.0032857477199286222, - -0.011619840748608112, - 0.0060659958980977535, - -0.011766169220209122, - -0.015284713357686996, - 0.026246074587106705, - -0.015444344840943813, - -0.017053961753845215, - -0.004782292526215315, - -0.022574549540877342, - -0.004915318917483091, - -0.003412122605368495, - -0.009218716993927956, - 0.0057001737877726555, - 0.011107689701020718, - 0.012923497706651688, - 0.014632884413003922, - -0.006924015004187822, - 0.008467119187116623, - -0.012151945382356644, - 0.0037180830258876085, - -0.017413131892681122, - 0.04443075880408287, - -0.0017160383285954595, - 0.004100533202290535, - -0.007090297527611256, - 0.010941406711935997, - -0.01753285527229309, - 0.0014882308896631002, - -0.008946013636887074, - 0.04126473516225815, - 0.031021716073155403, - 0.00038972526090219617, - 0.009797381237149239, - -0.004283444490283728, - 0.018809907138347626, - 0.04166381433606148, - 0.003614987712353468, - 0.011047828011214733, - -0.009371696971356869, - -0.022893812507390976, - 0.03450700268149376, - -0.03437397629022598, - -0.009298533201217651, - 0.03315013647079468, - -0.002494241576641798, - 0.0214571300894022, - -0.024875903502106667, - 0.030622636899352074, - 0.007529284339398146, - 0.0013793156249448657, - 0.012823727913200855, - -0.005337676964700222, - -0.015258107334375381, - -0.015111778862774372, - -0.012750563211739063, - 0.0008804672979749739, - -0.004895364865660667, - 0.012684050016105175, - -0.018078263849020004, - -0.029984110966324806, - -0.020871814340353012, - -0.021749787032604218, - -0.008879500441253185, - -0.0036948034539818764, - -0.012364787049591541, - -0.01845073699951172, - -0.004280118737369776, - -0.012564326636493206, - 0.00941825658082962, - -0.018025053665041924, - -0.014765910804271698, - -0.017293408513069153, - 0.0029348910320550203, - 0.0142471082508564, - 0.03341618552803993, - 0.005101555492728949, - 0.015351226553320885, - -0.016322318464517593, - 0.0024493453092873096, - -0.009345091879367828, - -0.04634633660316467, - -0.013182898983359337, - -0.01934201270341873, - 0.010163203813135624, - 0.04794264957308769, - 0.02121768333017826, - -0.0008189426735043526, - 0.017173685133457184, - 0.020007144659757614, - -0.0010409301612526178, - 0.004293421283364296, - 0.014007661491632462, - 0.00910564512014389, - -0.036981288343667984, - 0.021417221054434776, - 0.022375009953975677, - 0.006697870325297117, - 0.01030288077890873, - 0.008952665142714977, - -0.0005204650806263089, - 0.02468966692686081, - 0.0021250939462333918, - -0.00578664056956768, - -0.015111778862774372, - -0.027097441256046295, - -0.03019695170223713, - -0.0035384974908083677, - 0.015111778862774372, - 0.013515464030206203, - -0.00899257231503725, - 0.007229975424706936, - -0.006877455860376358, - -0.01197236031293869, - -0.011160899884998798, - 0.015803515911102295, - 0.027150651440024376, - -0.012590931728482246, - 0.016774605959653854, - -0.005430795717984438, - -0.013927845284342766, - -0.003614987712353468, - -0.012777168303728104, - -0.006631357129663229, - -0.00865335576236248, - 0.028414400294423103, - 0.010449210181832314, - -0.0113803930580616, - 0.00395753001794219, - -0.019953932613134384, - 0.0033306439872831106, - 0.0006784337456338108, - -0.019315406680107117, - -0.021922722458839417, - -0.0013676758389919996, - 0.0015264758840203285, - -0.002525835298001766, - -0.017679184675216675, - 0.005906364414840937, - -0.027775876224040985, - 0.005913015455007553, - 0.009072388522326946, - -0.04216931387782097, - 0.027483217418193817, - -0.01629571244120598, - -0.006864153314381838, - 0.009325138293206692, - -0.03251161053776741, - 0.033682238310575485, - -0.0019322058651596308, - 0.021776393055915833, - 0.02825476974248886, - -0.00042256611050106585, - -0.004862108267843723, - -0.045707810670137405, - 0.0069373175501823425, - -0.017280105501413345, - 0.018237894400954247, - 0.02178969606757164, - 0.004865434020757675, - -0.024303890764713287, - 0.014153989963233471, - 0.006661287974566221, - -0.0022913767024874687, - -0.024596547707915306, - 0.018357619643211365, - 0.005207976792007685, - -0.004423121921718121, - -0.024782786145806313, - 0.022627759724855423, - -0.029292374849319458, - 0.0109480582177639, - -0.0040938821621239185, - -0.001962136710062623, - -0.02507544308900833, - 0.0036482440773397684, - -0.010083387605845928, - 0.042701415717601776, - -0.000265013164607808, - 0.009790729731321335, - 0.006122531834989786, - -0.013409043662250042, - -0.00322754867374897, - -0.03376205638051033, - 0.01004347950220108, - 0.012557675130665302, - -0.0038644117303192616, - 0.0470912829041481, - -0.007210021372884512, - -0.004506263416260481, - -0.001975439488887787, - -0.018091566860675812, - -0.0034819613210856915, - 0.0019288802286610007, - 0.0067078471183776855, - 0.020898420363664627, - -0.030729057267308235, - -0.01571039669215679, - -0.009710914455354214, - 0.02053924836218357, - 0.0022298521362245083, - -0.004283444490283728, - 0.0023745179641991854, - -0.002728700404986739, - -0.035544607788324356, - 0.003595033660531044, - -0.011839333921670914, - 0.020672274753451347, - 0.00498183211311698, - -0.0036748494021594524, - -0.012318228371441364, - -0.03280426561832428, - -0.014020963571965694, - 0.004689174238592386, - 0.005843176972121, - -0.04171702265739441, - -0.012970056384801865, - -0.0042701419442892075, - 0.0030745684634894133, - -0.016694791615009308, - -0.022680971771478653, - -0.006751080974936485, - 0.014180595055222511, - 0.04155739024281502, - -0.03272445127367973, - 0.015870029106736183, - 0.021643366664648056, - 0.008167809806764126, - 0.005098230205476284, - 0.0291061382740736, - -0.004572776611894369, - -0.020406221970915794, - 0.03525194898247719, - -0.01605626568198204, - -0.00984394084662199, - 0.002740340307354927, - -0.020446131005883217, - -0.017745697870850563, - -0.007369652856141329, - -0.018543856218457222, - 0.03559781610965729, - -0.0025657431688159704, - 0.009830637834966183, - -0.0021433851215988398, - 0.0024576594587415457, - 0.0067444294691085815, - 0.01871678978204727, - 0.023851601406931877, - 0.011167551390826702, - -0.021324103698134422, - 0.014859029091894627, - 0.02463645674288273, - 0.010801729746162891, - -0.005088252946734428, - -0.02025989443063736, - -0.018410829827189445, - 0.010063434019684792, - 0.02758963778614998, - -0.02502223290503025, - 0.0078618498519063, - -0.01930210553109646, - 0.024423614144325256, - -0.0038876913022249937, - 0.00477896723896265, - -0.0058930618688464165, - -0.015431041829288006, - -0.004140441305935383, - -0.010389347560703754, - 0.0008418065845035017, - 0.02524837665259838, - -0.021869510412216187, - -0.011819380335509777, - -0.0031560470815747976, - -0.010422604158520699, - -0.014499858021736145, - 0.016096172854304314, - -0.005653614643961191, - 0.04206289350986481, - -0.013355832546949387, - -0.0085136778652668, - -0.012437951751053333, - 0.013861332088708878, - -0.03330976516008377, - -0.029026322066783905, - -0.011533373966813087, - -0.0054707033559679985, - 0.0088196387514472, - 0.022547945380210876, - 0.005360956769436598, - -0.01622919924557209, - -0.009178809821605682, - 0.01565718650817871, - 0.00011411155719542876, - -0.001432526158168912, - 0.002740340307354927, - -0.006857501808553934, - 0.02502223290503025, - -0.000134792979224585, - -0.03115474060177803, - -0.010788426734507084, - 0.03392168506979942, - 0.007283185608685017, - -0.001061715534888208, - 0.01288358960300684, - -0.009996920824050903, - -0.002472624881193042, - 0.016215896233916283, - 0.004356608726084232, - 0.004725756589323282, - 0.021763090044260025, - 0.022095656022429466, - -0.05259856954216957, - 0.00454284530133009, - -0.007841896265745163, - -0.009784079156816006, - -0.015870029106736183, - -0.0014724340289831161, - 0.0012171899434179068, - 0.0033190043177455664, - 0.0006576483719982207, - 0.002853412413969636, - 0.009125598706305027, - -0.017665881663560867, - 0.006022762041538954, - -0.0025923484936356544, - -0.006747755222022533, - -0.017439737915992737, - -0.018291106447577477, - 0.022614458575844765, - 0.013322575949132442, - 0.0014034266350790858, - 0.005264512728899717, - -0.031021716073155403, - -0.015510858036577702, - 0.007030435837805271, - -0.025846995413303375, - 0.03025016374886036, - -0.013781516812741756, - -0.005098230205476284, - -0.01213864330202341, - 0.016082869842648506, - -0.011992313899099827, - -0.016694791615009308, - -0.005134812090545893, - 0.0069373175501823425, - -0.003907645121216774, - -0.003571754088625312, - 0.0018640299094840884, - -0.018424130976200104, - -0.004519565962255001, - 0.007921711541712284, - -0.008221020922064781, - -0.0003747598093468696, - -0.006285489071160555, - -0.014925542287528515, - -0.000545823248103261, - 0.0032175718806684017, - -0.00285174953751266, - 0.0013294308446347713, - -0.0002918262907769531, - -0.02304014191031456, - 0.0009893825044855475, - 0.1987943947315216, - -0.005058322101831436, - -0.012464556843042374, - 0.022202076390385628, - -0.007070343941450119, - -0.010548979043960571, - 0.026485521346330643, - -0.001441671745851636, - 0.004413145128637552, - 0.018916329368948936, - -0.03690147399902344, - 0.019036052748560905, - -0.008686612360179424, - -0.011679702438414097, - 0.013887938112020493, - 0.007356350310146809, - -0.03807210549712181, - -0.013209504075348377, - -0.01348220743238926, - 0.01940852589905262, - 0.024210773408412933, - -0.01951494626700878, - -0.007070343941450119, - -0.025115350261330605, - 0.03950878977775574, - 0.004512914456427097, - -0.030941899865865707, - 0.004043997265398502, - 0.03142079338431358, - 0.01137374248355627, - -0.007748777512460947, - 0.02234840579330921, - 0.019275499507784843, - 0.0029365539085119963, - 0.010841636918485165, - 0.0007794505218043923, - 0.005287792533636093, - 0.011872590519487858, - 0.025008929893374443, - 0.007549237925559282, - 0.004858782980591059, - 0.011845985427498817, - -0.027988716959953308, - -0.04001428931951523, - -0.0029847759287804365, - 0.015085173770785332, - -0.015537463128566742, - 0.00834074430167675, - -0.011819380335509777, - 0.005437446758151054, - -0.011739564128220081, - -0.0020718835294246674, - 0.017107171937823296, - 0.03690147399902344, - 0.007176764775067568, - -0.0013992695603519678, - 0.005227930378168821, - 0.015351226553320885, - 0.006667939480394125, - 0.003781270468607545, - -0.03304371237754822, - 0.029372189193964005, - -0.01628240942955017, - 0.020286498591303825, - -0.013322575949132442, - -8.870146848494187e-05, - -0.006917363498359919, - 0.01826450042426586, - -0.015737002715468407, - -0.011619840748608112, - -0.009804032742977142, - -0.02764284983277321, - -0.005560495890676975, - 0.002562417648732662, - -0.037539999932050705, - -0.02133740670979023, - 0.010223065502941608, - 0.02684469148516655, - 0.004386539570987225, - 0.022215379402041435, - -0.007529284339398146, - -0.01472600270062685, - 0.0015214873710647225, - -0.01845073699951172, - -0.003398820059373975, - -0.004117161501199007, - 0.01225836668163538, - 0.032378584146499634, - -0.004689174238592386, - -0.01090149860829115, - -0.00033402052940800786, - -0.0015996403526514769, - -0.008759777061641216, - -0.008646704256534576, - 0.0142471082508564, - 0.023705272004008293, - 0.0022564572282135487, - 0.02406444400548935, - 0.0026123025454580784, - 0.021763090044260025, - -0.03416113555431366, - 0.04834172874689102, - 0.017120474949479103, - 0.009345091879367828, - -0.009158855304121971, - 0.01364849042147398, - -0.010502420365810394, - 0.01213864330202341, - 0.012557675130665302, - -0.012165248394012451, - -0.016827818006277084, - -0.027829086408019066, - 0.01243130024522543, - 0.005493983160704374, - 0.004343306180089712, - 0.009165506809949875, - -0.0040040891617536545, - -0.0093384413048625, - 0.009511374868452549, - -0.022840602323412895, - 0.011633142828941345, - -0.0050017861649394035, - -0.002860063686966896, - 0.008526980876922607, - 0.002329621696844697, - -0.021709879860281944, - -0.03059603087604046, - -0.007895106449723244, - -0.016442041844129562, - -0.011566629633307457, - 0.026206165552139282, - -0.002738677430897951, - 0.018597066402435303, - -0.019541552290320396, - 0.023904811590909958, - 0.005886410363018513, - 0.02343922108411789, - -0.019089262932538986, - -0.00015069376968313009, - 0.003907645121216774, - 0.032272160053253174, - -0.008806335739791393, - -0.01214529387652874, - 0.005583775695413351, - -0.004842154681682587, - -0.0058198971673846245, - 0.00683754775673151, - -0.011393696069717407, - -0.026472218334674835, - -0.024037837982177734, - 4.7754336264915764e-05, - -0.04216931387782097, - -0.010529025457799435, - -0.03557121381163597, - 0.028574032709002495, - 0.008779730647802353, - -0.04067941755056381, - -0.019049355760216713, - -0.024729574099183083, - 0.00439651682972908, - -0.017612671479582787, - -0.0043000727891922, - 0.03150060772895813, - 0.004349957685917616, - -0.029212558642029762, - -0.004366585984826088, - -0.17186987400054932, - 0.024157561361789703, - 0.01350216194987297, - -0.031074926257133484, - 0.0042501878924667835, - 0.010036828927695751, - -0.001802505343221128, - 0.0014865680132061243, - 0.0011648108484223485, - 0.013349181041121483, - 0.006508307997137308, - -0.015457646921277046, - -0.03711431473493576, - -0.006574821192771196, - 0.00046268184087239206, - 0.015271410346031189, - 0.005879758857190609, - 0.008234323002398014, - 0.010489117354154587, - -0.0027952136006206274, - 0.018942933529615402, - -0.01271065603941679, - 0.017612671479582787, - -0.00805473793298006, - 0.005537216551601887, - 0.0007291499641723931, - -0.027110744267702103, - 0.0058930618688464165, - 0.004017391707748175, - -0.011200807988643646, - -0.0019604740664362907, - 0.019475039094686508, - 0.030622636899352074, - -0.0017792257713153958, - 0.011280623264610767, - -0.01472600270062685, - -0.014686094596982002, - -0.013462253846228123, - -0.01291019469499588, - 0.025660758838057518, - 0.010376045480370522, - 0.017958540469408035, - 0.025846995413303375, - -0.015244805254042149, - -0.03389508277177811, - 0.023705272004008293, - 0.013548720628023148, - 0.008221020922064781, - 0.017067264765501022, - -0.015191595070064068, - 0.028627242892980576, - -0.010176505893468857, - 0.0004660074773710221, - 0.009983617812395096, - 0.010987966321408749, - 0.020446131005883217, - -0.007755429018288851, - 0.010622143745422363, - -0.011081084609031677, - 0.005823222920298576, - -0.005201325286179781, - -0.005750058684498072, - 0.017692487686872482, - -0.013941148295998573, - -0.02463645674288273, - -0.02059245854616165, - 0.006634682882577181, - -0.006139160133898258, - -0.011254018172621727, - 0.021856209263205528, - -0.013994358479976654, - -0.018370920792222023, - 0.010103341192007065, - -0.01560397632420063, - -0.005883084610104561, - -0.014446647837758064, - 0.006548215635120869, - -0.0019022750202566385, - -0.01060884166508913, - -0.011174202896654606, - -0.015218200162053108, - 0.04929951950907707, - -0.00393092492595315, - -0.012131991796195507, - -0.0152048971503973, - 0.020579157397150993, - 0.00033381266985088587, - -0.0031593728344887495, - 0.011480162851512432, - 0.002870040712878108, - 0.014872332103550434, - -0.04115831479430199, - -0.016082869842648506, - -0.006924015004187822, - 0.007462771143764257, - 0.01243130024522543, - -0.016415435820817947, - 0.00326911942102015, - -0.0142471082508564, - -0.02712404727935791, - 0.025461219251155853, - 0.0046359640546143055, - -0.03325655683875084, - -0.0022082352079451084, - 0.022029142826795578, - 0.01935531571507454, - 0.0011024548439309, - 0.02915934845805168, - 0.034134529531002045, - 0.018690183758735657, - -0.007762080058455467, - 0.009092342108488083, - 0.001805830979719758, - -0.013415694236755371, - 0.007309791166335344, - 0.017492948099970818, - 0.006102577783167362, - -0.021922722458839417, - 0.019488342106342316, - -0.013981056399643421, - 0.02621946856379509, - 0.01650855503976345, - -0.012863636016845703, - 0.004363260231912136, - 0.004586079157888889, - -0.018769999966025352, - -0.04818209633231163, - -0.024303890764713287, - 0.034533608704805374, - 0.02411765418946743, - -0.007436166051775217, - 0.01708056777715683, - -0.011101038195192814, - 0.019421828910708427, - -0.016934238374233246, - 0.0257139690220356, - -0.006265535019338131, - -0.03626294806599617, - -0.019767696037888527, - -0.009697611443698406, - 0.019820908084511757, - 0.006830896716564894, - 0.0015688780695199966, - 0.009890499524772167, - -0.01883651316165924, - 0.011074433103203773, - -0.016096172854304314, - 0.00046060330350883305, - 0.004043997265398502, - -0.011254018172621727, - -0.02507544308900833, - 0.005284466780722141, - -0.04717109724879265, - 0.01900944672524929, - 0.03325655683875084, - -0.00783524475991726, - -0.007409560494124889, - -0.005131486337631941, - 0.02333279885351658, - -0.02639240212738514, - 0.006248906720429659, - 0.018091566860675812, - -0.02621946856379509, - -0.014326924458146095, - 0.047304123640060425, - -0.021922722458839417, - -0.0023761808406561613, - 0.0016711419448256493, - 0.013409043662250042, - -0.03014374151825905, - -0.02582038938999176, - -0.0023928091395646334, - -0.007722172420471907, - -0.013402392156422138, - 0.019248895347118378, - -0.013269365765154362, - -0.02173648402094841, - -0.0036748494021594524, - -0.010555630549788475, - 0.002131745219230652, - 0.027563033625483513, - -0.02785569056868553, - 0.003004729747772217, - -0.01299666240811348, - -0.011553327552974224, - 0.01753285527229309, - 0.008766427636146545, - 0.012005616910755634, - -0.02700432389974594, - 0.01379481889307499, - -0.003212583251297474, - -0.0029648218769580126, - -0.01650855503976345, - -0.005547193344682455, - 0.014978752471506596, - -0.003071242943406105, - 0.014805818907916546, - 0.0031227904837578535, - -0.015404436737298965, - 0.024782786145806313, - -0.025408009067177773, - 0.013103082776069641, - -0.03902989253401756, - -0.006830896716564894, - 0.015444344840943813, - -0.02304014191031456, - -0.006218975875526667, - -0.02616625837981701, - 0.03136758506298065, - -0.011101038195192814, - -0.008852895349264145, - 0.012817076407372952, - -0.009098993614315987, - -0.013488858938217163, - 0.004872085526585579, - -0.02121768333017826, - 0.025634152814745903, - 0.025008929893374443, - 0.03264463692903519, - -0.024822693318128586, - 0.0038311551325023174, - 0.009045783430337906, - -0.017665881663560867, - 0.010768473148345947, - 0.008839592337608337, - 0.002677152631804347, - -0.022667668759822845, - -0.03296389803290367, - -0.08130563050508499, - 0.011506767943501472, - 0.021071353927254677, - -0.01930210553109646, - -0.01583012007176876, - 0.008866197429597378, - 0.008081343024969101, - 0.008620099164545536, - 0.0024343798868358135, - -0.015909936279058456, - -0.019900722429156303, - -0.025301586836576462, - -0.0029797872994095087, - 0.019195683300495148, - -0.009451513178646564, - -0.009737519547343254, - 0.004429773427546024, - -0.006651311181485653, - 0.016721395775675774, - -0.010695308446884155, - 0.0018889723578467965, - -0.01407417468726635, - 0.0031344303861260414, - 0.009744171053171158, - -0.017386527732014656, - -0.007742126006633043, - -0.014459950849413872, - 0.0088196387514472, - 0.005370933562517166, - -0.012803774327039719, - 0.014140687882900238, - -0.009484769776463509, - -0.010036828927695751, - 0.03456021100282669, - -0.003087871242314577, - -0.02745661325752735, - 0.0029348910320550203, - 0.03948218375444412, - 0.0022664342541247606, - 0.06076638028025627, - -0.010548979043960571, - -0.02055255137383938, - 0.005407515913248062, - 0.020752090960741043, - -0.0045461710542440414, - -0.005656939931213856, - 0.006674590520560741, - 0.012464556843042374, - -0.0012155270669609308, - -0.012677399441599846, - 0.009617796167731285, - 0.01348220743238926, - -0.006408538203686476, - -0.013176247477531433, - -0.0038577604573220015, - -0.006877455860376358, - -0.023931417614221573, - -0.009637749753892422, - -0.0031676869839429855, - -0.010003572329878807, - 0.027829086408019066, - 0.012777168303728104, - 0.007096949033439159, - 0.010282927192747593, - 0.016867725178599358, - -0.012704004533588886, - -0.006830896716564894, - -0.006877455860376358, - 0.01333587896078825, - -0.012178550474345684, - -0.01180607732385397, - 0.0007358012953773141, - 0.006864153314381838, - 0.030569426715373993, - -0.024197470396757126, - -0.007715520914644003, - -0.009923756122589111, - 0.002337935846298933, - -0.013688398525118828, - 0.026578638702630997, - 0.003611661959439516, - 0.00322089740075171, - -0.01737322472035885, - 0.007256580516695976, - 0.018517250195145607, - 0.01861036941409111, - -0.0030097183771431446, - -0.00529444357380271, - 0.02286720834672451, - 0.02456994354724884, - 0.0032990502659231424, - 0.014819120988249779, - 0.005570473149418831, - -0.011273972690105438, - -0.015470949932932854, - -0.007243277970701456, - -0.008107948116958141, - -0.01952824927866459, - -0.00466922065243125, - 0.012238412164151669, - -0.012524418532848358, - -0.003977484069764614, - 0.005962900351732969, - -0.020246591418981552, - -0.02252133935689926, - 0.0036382672842592, - -0.018344316631555557, - -0.01690763235092163, - -0.01928880251944065, - 0.012504464946687222, - 0.009770776145160198, - 0.016375528648495674, - -0.006548215635120869, - 0.0025008930824697018, - -0.023465825244784355, - 0.014393437653779984, - -0.021310800686478615, - -0.012644142843782902, - -0.014885634183883667, - 0.009032480418682098, - 0.0027686082758009434, - 0.02587359957396984, - 0.009458164684474468, - -0.0059096901677548885, - -0.005025065504014492, - -0.00922536849975586, - -0.0024476824328303337, - -0.013901240192353725, - -0.004672545939683914, - 0.004975180607289076, - -0.034533608704805374, - 0.016708092764019966, - -0.00529444357380271, - -0.019727788865566254, - -0.005400864873081446, - -0.006990528199821711, - -0.012085432186722755, - 0.008859546855092049, - 0.0025507777463644743, - 0.10195129364728928, - 0.02292041853070259, - -0.008014829829335213, - 0.0055272397585213184, - -0.016082869842648506, - 0.009404953569173813, - 0.002346249995753169, - 0.007369652856141329, - -0.024423614144325256, - -0.03599689528346062, - 0.017386527732014656, - -0.017732394859194756, - 0.03650239482522011, - -0.014606279321014881, - -0.018996143713593483, - 0.0007295656832866371, - -0.01799844764173031, - 0.0031427445355802774, - -0.0066912188194692135, - 0.012670747935771942, - 0.00756254093721509, - 0.013887938112020493, - 0.008154507726430893, - 0.029718058183789253, - -0.015364528633654118, - -0.020219985395669937, - 0.026525428518652916, - 0.00536428252235055, - 0.00621232483536005, - -0.02286720834672451, - -0.017320014536380768, - -0.0011174202663823962, - -0.06709842383861542, - -0.014300319366157055, - 0.02820155955851078, - -0.014313621446490288, - -0.03432076424360275, - -0.005224605090916157, - 0.006355328019708395, - -0.005071624647825956, - -0.0092519735917449, - 0.013941148295998573, - -0.034985896199941635, - -0.03030337393283844, - -0.0067444294691085815, - -0.01817138120532036, - -0.024130957201123238, - 0.0020502666011452675, - 0.015643883496522903 - ], - "sparse": "SparseEmbedding(values=array([1.66973021, 1.66973021, 1.66973021, 1.66973021, 1.66973021]), indices=array([ 685289368, 524783164, 848184993, 1089106512, 908425398]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 0, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 5 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000001.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000001.json deleted file mode 100644 index 28ce11eba555d25762d792a70abe304d5522d6a2..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000001.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000001", - "content": "FAKULT\u00c4T F\u00dcR BAUINGENIEURWESEN, BAUPHYSIK UND WIRTSCHAFT BACHELORSTUDIENGANG INFRASTRUKTURMANAGEMENT", - "embedding": { - "dense": [ - -0.0007785356137901545, - -0.021442588418722153, - -0.0016868944512680173, - -0.008708632551133633, - -0.013108105398714542, - 0.011676019057631493, - -0.045388102531433105, - -0.013920910656452179, - 0.02434546686708927, - -0.032796066254377365, - -5.825914195156656e-05, - 0.0014272481203079224, - 0.005802529864013195, - 0.01767529919743538, - 0.00944402813911438, - -0.01566263660788536, - 0.025119567289948463, - 0.0035447359550744295, - -0.0038511508610099554, - -0.002780311740934849, - -0.006289568264037371, - 0.01241141464561224, - -0.0051284171640872955, - -0.022513428702950478, - -0.011276066303253174, - -0.0018804195569828153, - 0.004809100646525621, - -0.025945274159312248, - -0.002333590993657708, - 0.011540550738573074, - -0.005783177446573973, - -0.01715923100709915, - -0.016359327360987663, - -0.009972997009754181, - -0.018823549151420593, - -0.015894867479801178, - -0.024306761100888252, - -0.020294340327382088, - 0.010218129493296146, - 0.027222540229558945, - 0.010237481445074081, - -0.0006229091668501496, - 0.014243452809751034, - -0.008792493492364883, - -0.015069159679114819, - 0.010211678221821785, - 0.002157805720344186, - 0.011417984962463379, - -0.04154340177774429, - 0.020087912678718567, - 0.02336493879556656, - 0.02450028620660305, - -0.005796079058200121, - -0.019042877480387688, - 0.013933812268078327, - 0.008424796164035797, - -0.013237121514976025, - 0.033441148698329926, - -0.026938704773783684, - -0.030086712911725044, - 0.005534819792956114, - -0.02373908832669258, - -0.040872517973184586, - 0.01977827213704586, - -0.02639683336019516, - 0.027377361431717873, - -0.013050047680735588, - -0.0005555785028263927, - -0.017972037196159363, - 0.007657146081328392, - 0.02882234938442707, - 0.004767170175909996, - -0.005305815022438765, - -0.016204508021473885, - 0.0457751527428627, - 0.019791174679994583, - 0.0006636300822719932, - -0.016927001997828484, - -0.007412014063447714, - -0.0022803714964538813, - 0.014785323292016983, - -0.03310570493340492, - -0.021003931760787964, - -0.003893081331625581, - 0.015030454844236374, - 0.008747337386012077, - 0.00263355509378016, - 0.012895227409899235, - -0.006508896593004465, - -0.01973956823348999, - -0.009953645057976246, - 0.02252632938325405, - 0.027790214866399765, - 0.023468151688575745, - 0.006483093369752169, - -0.006196030881255865, - -0.02776441164314747, - 0.03209937363862991, - 0.029802875593304634, - -0.013791893608868122, - -0.00779906427487731, - -0.0005168734933249652, - -0.004670407623052597, - -0.005983153358101845, - -0.024435779079794884, - -0.01581745781004429, - 0.004812325816601515, - -0.01444987952709198, - 0.034576497972011566, - -0.022900478914380074, - -0.019713765010237694, - 0.042523931711912155, - -0.025209879502654076, - 0.015611030161380768, - 0.014333764091134071, - -0.02095232531428337, - 0.01792043074965477, - -0.01695280522108078, - -0.0007684562006033957, - -0.010605179704725742, - 0.0035769902169704437, - 0.006715323310345411, - 0.03775031119585037, - 0.008095802739262581, - 0.03390561044216156, - 0.018617121502757072, - -0.011611510068178177, - -0.002670647343620658, - -0.006889495998620987, - -0.0018933212850242853, - -0.0018401017878204584, - 0.0003636660403572023, - 0.005099388305097818, - 0.019429927691817284, - 0.0024851858615875244, - -0.005154220387339592, - -0.012430766597390175, - -0.005838009528815746, - -0.041517600417137146, - -0.026371030136942863, - 0.00803129468113184, - 0.012514627538621426, - -0.024848632514476776, - -0.017223739996552467, - -0.012701702304184437, - 0.005979927722364664, - 0.001478854799643159, - 0.00952788908034563, - 0.014307960867881775, - -0.01196630671620369, - -0.0013708033366128802, - -0.027016114443540573, - 0.007560383528470993, - -0.005554172210395336, - -0.018552612513303757, - 0.009011821821331978, - 0.0036898800171911716, - 0.014307960867881775, - -0.006179903633892536, - -0.020410453900694847, - -0.01452728919684887, - -0.02357136644423008, - 0.011901797726750374, - -0.011476042680442333, - 0.014824028126895428, - 0.004638153128325939, - 0.004441402852535248, - -0.000509616278577596, - 0.00018515923875384033, - -0.021416785195469856, - 0.007205587346106768, - 0.02184254117310047, - -0.04156920686364174, - 0.01267589908093214, - -0.01416604220867157, - 0.02969966270029545, - -0.024964747950434685, - 0.006979807745665312, - -0.03269285336136818, - -0.017326952889561653, - -0.007463620975613594, - 0.0020158872939646244, - 0.010418104939162731, - 0.03171232342720032, - -0.01784302107989788, - 0.03862762451171875, - 0.010031054727733135, - 0.021803835406899452, - 0.008715083822607994, - 0.0012458183337002993, - 0.015507817268371582, - 0.002880299696698785, - 0.0070572178810834885, - 0.018681630492210388, - -0.6386846899986267, - -0.0058509111404418945, - 0.0030576977878808975, - -0.009050527587532997, - 0.006247637793421745, - 0.03411203622817993, - 0.01194695383310318, - 0.008469951339066029, - 0.02889975905418396, - 0.026525849476456642, - -0.0020239506848156452, - 0.01115995179861784, - 0.003938237205147743, - -0.013508057221770287, - -0.005325167439877987, - -0.01710762456059456, - 0.006350851152092218, - -0.03233160451054573, - 0.027583787217736244, - -0.013637073338031769, - -0.015004651620984077, - 0.03026733733713627, - -0.011456689797341824, - 0.012953285127878189, - 0.013069399632513523, - -0.0041672419756650925, - 0.027067720890045166, - -0.008205466903746128, - 0.00022698889370076358, - -0.007031414657831192, - -0.01267589908093214, - 0.018862253054976463, - -0.005567074287682772, - 0.013056498020887375, - 0.06342464685440063, - 0.03135107830166817, - -0.030086712911725044, - 0.02328752912580967, - 0.02389390766620636, - 0.004651054739952087, - 0.007599088363349438, - -0.01852680929005146, - 0.01860421895980835, - 0.025687241926789284, - 0.0026416184846311808, - 0.03785352408885956, - 0.029493236914277077, - -0.01788172498345375, - -0.0032673499081283808, - -0.008231271058321, - 0.004338189493864775, - -0.01776561141014099, - -0.0055961026810109615, - 0.017546283081173897, - 0.034886136651039124, - 0.007979688234627247, - 0.024280957877635956, - -0.016036786139011383, - -0.02397131733596325, - 0.018759040161967278, - -0.006915299687534571, - 0.021300669759511948, - -0.02034594677388668, - -0.02619040571153164, - -0.01437246985733509, - -0.004763944540172815, - -0.010527769103646278, - 0.015649735927581787, - 0.02275856025516987, - 0.003738261293619871, - 0.012895227409899235, - 0.02042335644364357, - 0.008482852950692177, - -0.013204867951571941, - 0.013069399632513523, - 0.004022098146378994, - 0.02010081522166729, - -0.023635873571038246, - -0.010785803198814392, - 0.009850431233644485, - -0.007334603928029537, - -0.014359567314386368, - 0.009779471904039383, - 0.0060057309456169605, - 0.0059638009406626225, - -0.04644604027271271, - -0.04894896596670151, - -0.02482282929122448, - -0.012508177198469639, - -0.009927840903401375, - 0.033363740891218185, - 0.011250263080000877, - -0.00783131830394268, - -0.00926340464502573, - 0.004709112457931042, - 0.02789342775940895, - 0.006486318539828062, - 0.031015634536743164, - 0.00636697793379426, - -0.03627951815724373, - -0.0028819122817367315, - 0.0045026857405900955, - 0.010282637551426888, - -0.011798584833741188, - 0.009218249469995499, - 0.0046155755408108234, - 0.00041325687197968364, - 0.006941102910786867, - 0.04144018888473511, - -0.01932671293616295, - 0.011721174232661724, - 0.0005047781742177904, - 0.013224219903349876, - -0.008973116986453533, - -0.0008305455558001995, - -0.02889975905418396, - 0.007528129033744335, - -0.011882445774972439, - 0.028151461854577065, - -0.005112289916723967, - 0.013314532116055489, - 0.005554172210395336, - 0.014836929738521576, - 0.0012958123115822673, - -0.01330163050442934, - 0.03274445980787277, - 0.010560023598372936, - -0.0071539804339408875, - -0.022513428702950478, - 0.01402412448078394, - 0.0031254314817488194, - -0.006405683234333992, - 0.04118215665221214, - -0.01776561141014099, - 0.031093044206500053, - 0.009056977927684784, - 0.02368748188018799, - -0.010811606422066689, - -0.0021529674995690584, - -0.009308560751378536, - -0.022229591384530067, - -0.014295059256255627, - 0.02776441164314747, - -0.008927960880100727, - -0.01844939962029457, - -0.03491194173693657, - -0.02151999995112419, - 0.0397113636136055, - 0.005315491463989019, - 0.012991989962756634, - -0.01294038351625204, - -0.002849658252671361, - -0.010908368974924088, - 0.0038737289141863585, - 0.013546762056648731, - -0.032228391617536545, - 0.01651414856314659, - -0.028125658631324768, - -0.015443308278918266, - -0.024371270090341568, - -0.00035398980253376067, - 0.013127457350492477, - -0.041801437735557556, - 0.02030724100768566, - 0.012804915197193623, - -0.0012716216733679175, - 0.02522278018295765, - -0.0001570376189192757, - -0.014114435762166977, - -0.029648056253790855, - 0.020810406655073166, - 0.006463740952312946, - -0.00793453212827444, - -0.004238201305270195, - -0.00485425628721714, - -0.018991271033883095, - 0.015120767056941986, - -0.011288967914879322, - -0.005392901599407196, - -0.018578415736556053, - 0.007282997481524944, - 0.024358367547392845, - -0.026448439806699753, - -0.004612349905073643, - 0.005979927722364664, - 0.026422636583447456, - -0.017972037196159363, - -0.004709112457931042, - -0.010560023598372936, - -0.0006092010880820453, - 0.0008353836601600051, - 0.028022445738315582, - 0.008205466903746128, - 0.012301750481128693, - -0.0017304376233369112, - 0.03160911053419113, - -0.029286809265613556, - 0.017146330326795578, - -0.005109064746648073, - 0.009953645057976246, - 0.016010982915759087, - 0.013204867951571941, - 0.028951365500688553, - 0.004563968628644943, - 0.02046206220984459, - -0.03547961637377739, - -0.006676618475466967, - -0.006463740952312946, - 0.06770800799131393, - -0.0029093283228576183, - 0.014153140597045422, - -0.009585946798324585, - -0.031222060322761536, - -0.00867637898772955, - 0.016372229903936386, - 0.02087491564452648, - -0.027712805196642876, - 0.016965705901384354, - -0.015198176726698875, - -0.008424796164035797, - 0.01687539555132389, - -0.004915539175271988, - 0.010734195820987225, - -0.0018449400085955858, - 0.004957469645887613, - 0.013469352386891842, - 0.004412373993545771, - 0.021249063313007355, - 0.016075490042567253, - 0.008669927716255188, - -0.005257433746010065, - 0.024809926748275757, - -0.007315251510590315, - 0.00917954370379448, - -0.004325287416577339, - 0.018397793173789978, - -0.008992469869554043, - -0.025803355500102043, - 0.04015002399682999, - 0.010656786151230335, - 0.013598368503153324, - 0.019481534138321877, - -0.004709112457931042, - 0.005234855692833662, - 0.040743499994277954, - -0.020694291219115257, - 0.029957696795463562, - 0.013430646620690823, - 0.011914699338376522, - -0.0016191606409847736, - -0.010540670715272427, - -0.00032173559884540737, - -0.00855381228029728, - -0.01913318783044815, - 0.031170453876256943, - -0.002293273340910673, - 0.024758320301771164, - 6.37020348221995e-05, - 0.02946743369102478, - 0.02216508239507675, - 0.02095232531428337, - 0.03367337957024574, - 0.017868824303150177, - -0.0008603806491009891, - 0.014720814302563667, - 0.013727385550737381, - 0.012275946326553822, - -0.02114585041999817, - -0.011663117446005344, - -0.004396246746182442, - 0.0033802397083491087, - -0.0017659171717241406, - 0.0045768702402710915, - -0.02114585041999817, - 0.003312505781650543, - -0.019262205809354782, - 0.025132469832897186, - 0.008244172669947147, - 0.013314532116055489, - 0.0004697017138823867, - 0.0004184981808066368, - -0.03584086149930954, - 0.00024916365509852767, - 0.021816737949848175, - 0.0033189565874636173, - -0.024397073313593864, - 0.00867637898772955, - 0.0011901798425242305, - -0.027583787217736244, - -0.026100095361471176, - -0.00988913606852293, - -0.008528009057044983, - -0.01362417172640562, - -0.010721294209361076, - -0.009792373515665531, - -0.01319841668009758, - 0.02954484336078167, - -0.015185275115072727, - -0.00016782261081971228, - 0.0060670142993330956, - 0.006257313769310713, - -0.005331618711352348, - -0.00618635443970561, - -0.01710762456059456, - -0.014759520068764687, - 0.003143171314150095, - -0.0012095323763787746, - 0.007108824793249369, - 0.012714603915810585, - 0.0028883630875498056, - 0.003396366722881794, - 0.009985898621380329, - 0.0025561449583619833, - -0.005460635293275118, - -0.01523688156157732, - -0.005976702552288771, - 0.0016885071527212858, - -0.032873474061489105, - 0.05336134135723114, - -0.012398513033986092, - 0.00229649874381721, - -0.015198176726698875, - -0.021932853385806084, - 0.029235202819108963, - 0.05016172304749489, - 0.018591318279504776, - -0.009611750021576881, - 0.006092817522585392, - -0.007947433739900589, - -0.02861592173576355, - -0.0024416425731033087, - -0.0461622029542923, - -0.023751989006996155, - -0.04925860837101936, - 0.008424796164035797, - 0.010818056762218475, - 0.030938224866986275, - -0.0073539563454687595, - 0.0006962874322198331, - 0.00027456384850665927, - 0.007611989974975586, - -0.024964747950434685, - 0.002433578949421644, - -0.0007886150851845741, - -0.005605779122561216, - -0.025119567289948463, - 0.01463050302118063, - 0.024022923782467842, - 0.03664076700806618, - 0.003902757540345192, - 0.0036769781727343798, - 0.034447479993104935, - 0.00717333285138011, - -0.03367337957024574, - 0.02619040571153164, - -0.003722134046256542, - 0.023622972890734673, - 0.03026733733713627, - -0.02275856025516987, - 0.0009248890564776957, - 0.01585616171360016, - -0.0011627636849880219, - 0.020397553220391273, - 0.0074894241988658905, - 0.021055538207292557, - 0.02373908832669258, - 0.01194695383310318, - 0.002117487834766507, - 0.013998320326209068, - -0.022010263055562973, - -0.003735035890713334, - 0.013817696832120419, - -0.0026883871760219336, - -0.03189294785261154, - 0.03684719279408455, - 0.012688800692558289, - -0.02321011945605278, - -0.02150709740817547, - 0.01581745781004429, - -0.01710762456059456, - 0.0013458062894642353, - 0.0025593703612685204, - -0.001353869796730578, - -0.008947313763201237, - -0.021378081291913986, - -0.039866186678409576, - 0.0055380454286932945, - -0.011379280127584934, - -0.0042865825816988945, - -0.011953405104577541, - -0.03393141180276871, - -0.008166762068867683, - -0.02622911147773266, - -0.008244172669947147, - 0.010011701844632626, - -0.021907050162553787, - -0.02228119783103466, - 0.020603980869054794, - 0.02284887246787548, - -0.0052832369692623615, - 0.00845704972743988, - -0.00566061120480299, - -0.0033576616551727057, - 0.028125658631324768, - -0.022784363478422165, - -0.02579045481979847, - 0.00034008017973974347, - -0.023661676794290543, - -0.01257268525660038, - 0.024513188749551773, - -0.021016834303736687, - -0.023339135572314262, - -0.0035447359550744295, - 0.006908848416060209, - 4.404713399708271e-05, - -0.0007926468388177454, - 0.025764651596546173, - -0.009089232422411442, - -0.012630742974579334, - 0.005647709593176842, - 0.021210359409451485, - 0.006250862963497639, - 0.028151461854577065, - -0.005899292416870594, - 0.010114915668964386, - -0.008308680728077888, - -0.00981172639876604, - 0.0022852097172290087, - 0.03331213444471359, - 0.02732575498521328, - -0.03313151001930237, - 0.00999234989285469, - -0.024126138538122177, - 0.009037625975906849, - 0.024409975856542587, - -0.018294580280780792, - -0.0010522931115701795, - -0.0016256114467978477, - -0.015546522103250027, - 0.03413784131407738, - -0.012379160150885582, - 0.0055380454286932945, - 0.022152181714773178, - -0.012153380550444126, - -0.0072507429867982864, - -0.010934172198176384, - 0.021261965855956078, - 0.010372948832809925, - -0.005176798440515995, - 0.0026609711349010468, - 0.0014345053350552917, - 0.016694771125912666, - -0.02804824896156788, - 0.003506031120195985, - -0.018991271033883095, - 0.012082421220839024, - 0.019971797242760658, - -0.03248642385005951, - -0.02595817670226097, - -0.029648056253790855, - -0.018346186727285385, - 0.007940982468426228, - -0.02397131733596325, - -0.027222540229558945, - -0.017623692750930786, - 8.496964437654242e-05, - 0.011127697303891182, - 0.01434666570276022, - -0.00047333032125607133, - -0.03083501011133194, - -0.009637553244829178, - 0.0011095443041995168, - 0.005557397846132517, - 0.03354436159133911, - 0.0009644004167057574, - 0.028409495949745178, - 0.006625011563301086, - 0.005102613475173712, - -0.023145610466599464, - -0.05016172304749489, - -0.01945573091506958, - -0.03277026116847992, - 0.009605299681425095, - 0.016075490042567253, - 0.019881486892700195, - 0.006683069281280041, - 0.02256503514945507, - 0.026861293241381645, - -0.01585616171360016, - 0.00856026355177164, - 0.013611270114779472, - 0.002211024984717369, - -0.03627951815724373, - 0.019881486892700195, - 0.03535059839487076, - 0.021778032183647156, - 0.01650124602019787, - -0.014604699797928333, - -0.013224219903349876, - 0.032150980085134506, - -0.02211347594857216, - -0.0161012951284647, - -0.005460635293275118, - 0.008805395103991032, - -0.015043356455862522, - -0.007889376021921635, - 0.004138213116675615, - 0.005676738452166319, - -0.03246062248945236, - 9.1672467533499e-05, - -0.006928201299160719, - 0.014656306244432926, - 0.016036786139011383, - 0.006492769345641136, - 0.010792253538966179, - -0.0350409559905529, - 0.007115275599062443, - -0.01241141464561224, - 0.016720574349164963, - 0.011746978387236595, - 0.0056348079815506935, - -0.01281781680881977, - -0.0055154673755168915, - 0.025816258043050766, - -0.004476882517337799, - -0.008308680728077888, - -0.001273234374821186, - -0.015494915656745434, - -0.0010740647558122873, - 0.0015965827042236924, - -0.005857361946254969, - -0.00396404042840004, - -0.010889016091823578, - -0.02114585041999817, - -0.016359327360987663, - -0.021158752962946892, - -0.01231465209275484, - -0.015172373503446579, - 0.03455069288611412, - 0.013572565279901028, - -0.016204508021473885, - 0.0354280099272728, - -0.006618560757488012, - 0.012643644586205482, - -0.0014022511895745993, - -0.02804824896156788, - 0.03385400399565697, - 0.008160311728715897, - 0.03176392987370491, - 0.019687959924340248, - -0.008347385562956333, - -0.01158570684492588, - -0.009682709351181984, - 0.014333764091134071, - -0.003509256523102522, - 0.01695280522108078, - 0.010934172198176384, - 0.005721894092857838, - -0.04113055020570755, - 0.02410033531486988, - 0.02034594677388668, - 0.002943195402622223, - -0.014114435762166977, - 0.043323833495378494, - 0.008831198327243328, - 0.007360407151281834, - 0.011959855444729328, - 0.019997600466012955, - -0.005392901599407196, - 0.0061186207458376884, - 0.0018401017878204584, - 0.016462542116642, - -0.024564795196056366, - -0.0031302697025239468, - -0.007166882045567036, - 0.036589160561561584, - -0.018501006066799164, - 0.01545621082186699, - 0.0013651588233187795, - -0.01795913651585579, - 0.017817217856645584, - -0.013050047680735588, - -0.023881006985902786, - 0.027274146676063538, - -0.01961055025458336, - 0.03212517872452736, - -0.00464137876406312, - -0.0022803714964538813, - 0.004909088369458914, - 0.004834903869777918, - -0.01150184590369463, - 0.009902037680149078, - -0.0033641124609857798, - 0.017688199877738953, - 0.0009458542917855084, - -0.017365658655762672, - -0.016888296231627464, - 0.007844219915568829, - 0.014643404632806778, - 0.00396404042840004, - 0.023261725902557373, - -0.023261725902557373, - -0.03173812851309776, - -0.014462781138718128, - -0.013314532116055489, - 0.005496114958077669, - 0.006576630286872387, - -0.00030984185286797583, - -0.008128057233989239, - -0.032589640468358994, - 0.015082061290740967, - -0.014965946786105633, - -0.0051864744164049625, - -0.04564613848924637, - -0.021416785195469856, - -0.002077170182019472, - -0.00013526603288482875, - 0.0008765077800489962, - -0.0018739687511697412, - -0.015301390551030636, - 0.002077170182019472, - 0.010398752987384796, - -0.037801917642354965, - -0.0007741007138974965, - 0.028512708842754364, - -0.006895946804434061, - 0.0055961026810109615, - 0.02740316465497017, - -0.0027319302316755056, - -0.019236402586102486, - 0.006908848416060209, - 0.011611510068178177, - 0.0020868463907390833, - 0.00821191817522049, - 0.0011538938852027059, - 0.008121605962514877, - -0.002849658252671361, - -0.04125956818461418, - 0.056612562388181686, - -0.015894867479801178, - 0.019597649574279785, - -0.02377779223024845, - -0.007089471910148859, - 0.009224699810147285, - 0.027712805196642876, - -0.009373068809509277, - 0.03633112460374832, - -0.011430886574089527, - -0.002067493973299861, - 0.03653755411505699, - -0.0027416066732257605, - 0.01808815263211727, - -0.018746137619018555, - -0.01755918376147747, - 0.009063429199159145, - 0.023339135572314262, - -0.00865702610462904, - -0.017688199877738953, - -0.002693225396797061, - -0.02397131733596325, - -0.015185275115072727, - -0.008179663680493832, - -0.011779231950640678, - -0.012630742974579334, - 0.01884935237467289, - -0.002520665293559432, - -0.008773141540586948, - 0.022835969924926758, - -0.01077935192734003, - -0.02184254117310047, - -0.019752468913793564, - -0.010192325338721275, - -0.01752047799527645, - 0.003954364452511072, - -0.014656306244432926, - 0.04056287556886673, - -0.005102613475173712, - 0.0028254676144570112, - -0.0025448559317737818, - -0.009902037680149078, - -0.029673859477043152, - -0.012437217868864536, - 0.016217408701777458, - 0.004557517822831869, - 0.015378800220787525, - 0.022732757031917572, - 0.0037898679729551077, - 0.011953405104577541, - -0.003622146090492606, - 0.023390742018818855, - -0.009631102904677391, - 0.010489064268767834, - 0.006637913174927235, - 0.004538165405392647, - 0.023197216913104057, - -0.006189580075442791, - -0.022500526160001755, - -0.01291457936167717, - 0.011353476904332638, - -0.007921630516648293, - 0.02639683336019516, - 0.01937832124531269, - 0.0020787829998880625, - -0.01844939962029457, - 0.01455309335142374, - 0.005002625752240419, - -0.01913318783044815, - 0.02571304515004158, - 0.04907798394560814, - -0.02248762547969818, - 0.009456929750740528, - -0.0008982793660834432, - 0.009850431233644485, - 0.0030077036935836077, - -0.01824297197163105, - 0.002823854796588421, - 0.001291780499741435, - 0.008650574833154678, - 0.003928560763597488, - -0.005015527363866568, - -0.007134628016501665, - 0.0045607429929077625, - 0.022668248042464256, - 0.011811486445367336, - 0.004618800710886717, - -0.0017997841350734234, - 0.0041156355291605, - -0.0029673860408365726, - -0.019804075360298157, - -0.0023400417994707823, - -0.03269285336136818, - -0.004976822528988123, - 0.005054232198745012, - -0.021261965855956078, - 0.01913318783044815, - -0.0161012951284647, - -0.00918599497526884, - 0.00023404450621455908, - 0.01712052710354328, - -0.03111884742975235, - 0.003986618481576443, - -0.005318716634064913, - 0.002704514190554619, - 0.004573645070195198, - -0.008644124493002892, - -0.0038608270697295666, - -0.009392421692609787, - 0.01487563457340002, - -0.008986018598079681, - -0.023906810209155083, - 0.005773501005023718, - -0.025016354396939278, - -0.016539951786398888, - 0.01106318924576044, - -0.019726665690541267, - 0.024242253974080086, - -0.004180143587291241, - 0.0063185966573655605, - 0.0018384890863671899, - 0.011353476904332638, - 0.21086502075195312, - -0.0036285968963056803, - 0.019081581383943558, - 0.035582829266786575, - 0.0033012169878929853, - -0.007418464869260788, - 0.01776561141014099, - 0.019997600466012955, - -0.012701702304184437, - 0.03153170272707939, - 0.003980167675763369, - 0.005373548716306686, - -0.007024963852018118, - -0.0031980033963918686, - 5.6848020903998986e-05, - -0.03018992766737938, - -0.02817726507782936, - -0.020087912678718567, - -0.014540190808475018, - 0.017249543219804764, - 0.016965705901384354, - -0.018423596397042274, - -0.012843620963394642, - -0.03413784131407738, - -0.002599688246846199, - 0.011218009516596794, - -0.016320623457431793, - 0.01877194084227085, - 0.04494944587349892, - 0.009437577798962593, - 0.010482613928616047, - 0.0005434831837192178, - 0.0029383571818470955, - -0.006683069281280041, - -0.011714723892509937, - 0.004241426475346088, - 0.00521550327539444, - -0.042678751051425934, - 0.005834783893078566, - 0.025196976959705353, - -0.005496114958077669, - -0.0067669302225112915, - 0.003931786399334669, - -0.006708872504532337, - -0.013108105398714542, - 0.010418104939162731, - -0.015043356455862522, - -0.01079870481044054, - 0.006837889552116394, - 0.00446075526997447, - -0.015959376469254494, - -0.0005531594506464899, - 0.019675059244036674, - 0.02789342775940895, - 0.0077797118574380875, - 0.013127457350492477, - 0.012669447809457779, - 0.0031447841320186853, - 0.01366287749260664, - 0.005547721404582262, - -0.013404843397438526, - 0.019081581383943558, - -0.01095997542142868, - 0.02062978409230709, - -0.01239206176251173, - 0.008244172669947147, - -0.012475922703742981, - 0.02442287653684616, - -0.007760359439998865, - -0.03963395580649376, - -0.02522278018295765, - -0.032073572278022766, - -0.010689040645956993, - 0.005454184487462044, - -0.026706473901867867, - -0.023442348465323448, - 0.02926100604236126, - 0.014617601409554482, - 0.014256354421377182, - 0.0314800962805748, - -0.027377361431717873, - -0.002041690517216921, - -0.009205346927046776, - -0.011663117446005344, - -0.0074507188983261585, - -0.016939902678132057, - 0.031015634536743164, - 0.019752468913793564, - -0.006486318539828062, - -0.05248402804136276, - 0.012643644586205482, - -0.018797745928168297, - -0.0015490077203139663, - -0.0005499340477399528, - 0.01384350098669529, - 0.03785352408885956, - 0.012759760022163391, - 0.002943195402622223, - -0.01820426806807518, - 0.03599568083882332, - -0.021623212844133377, - 0.04342705011367798, - 0.03455069288611412, - -0.006947553716599941, - -0.028306281194090843, - -0.011269615963101387, - -0.004425275605171919, - 0.026861293241381645, - 0.031376879662275314, - -0.009721414186060429, - -0.017339855432510376, - -0.025209879502654076, - -0.01223079115152359, - 0.0027948259375989437, - 0.008269975893199444, - 0.005360647104680538, - -0.008753788657486439, - -0.016539951786398888, - 0.0018433273071423173, - -0.026087192818522453, - -0.019687959924340248, - -0.01570134237408638, - 0.024242253974080086, - 0.006257313769310713, - 0.006083141081035137, - -0.002793213352560997, - -0.02724834345281124, - 0.020849112421274185, - 0.005054232198745012, - -0.009424676187336445, - 0.02482282929122448, - -0.0034641006495803595, - 0.014101534150540829, - -0.015120767056941986, - 0.01634642668068409, - 0.01142443623393774, - 0.00699270935729146, - -0.01820426806807518, - -0.022990791127085686, - 0.02506796084344387, - 0.0031592983286827803, - -0.030783403664827347, - 0.006408908404409885, - -0.0036318222992122173, - -0.010721294209361076, - -0.0019352517556399107, - 0.0011111570056527853, - -0.010398752987384796, - -0.02518407627940178, - -0.033441148698329926, - -0.01695280522108078, - -0.04056287556886673, - -0.0025545323733240366, - -0.02603558637201786, - 0.03449908643960953, - -0.015791654586791992, - -0.03418944776058197, - -0.04598158225417137, - -0.007024963852018118, - 0.025777552276849747, - -0.012237241491675377, - -0.021171653643250465, - 0.025945274159312248, - -0.001266783569008112, - -0.01330163050442934, - 0.009902037680149078, - -0.16338685154914856, - 0.029364218935370445, - 0.004005970899015665, - 0.005750922951847315, - 0.023764891549944878, - -0.014282157644629478, - 0.012759760022163391, - -0.019597649574279785, - -0.003609244478866458, - -0.00033141186577267945, - -0.008128057233989239, - -0.004002745728939772, - -0.03168652206659317, - -0.008018393069505692, - 0.007992589846253395, - 0.00025117953191511333, - -0.02846110239624977, - -0.002617427846416831, - 0.021300669759511948, - -0.008579615503549576, - 0.0032238068524748087, - -0.008018393069505692, - 0.00232068938203156, - 0.007334603928029537, - 0.004312385804951191, - -0.002236828440800309, - -0.02982868067920208, - 0.008108704350888729, - -0.004751042928546667, - -0.003928560763597488, - -0.00273999385535717, - 0.00039491229108534753, - 0.025235682725906372, - -0.00908278115093708, - 0.0015215916791930795, - -0.009540790691971779, - -0.0047768461517989635, - -0.026345226913690567, - -0.01666896790266037, - 0.01552071887999773, - 0.02417774498462677, - 0.009056977927684784, - 0.015804555267095566, - -0.00839254166930914, - -0.01953314058482647, - 0.02372618578374386, - 0.026293620467185974, - 0.008444148115813732, - 0.016772180795669556, - -0.025300191715359688, - 0.00597347691655159, - -0.021249063313007355, - -0.012804915197193623, - 0.0032850897405296564, - 0.009489184245467186, - 0.02768700197339058, - 1.5963307305355556e-05, - 0.007979688234627247, - -0.0166302639991045, - 0.001807847642339766, - -0.01348225399851799, - 0.014256354421377182, - 0.023339135572314262, - -0.006844340357929468, - -0.029725465923547745, - -0.02433256432414055, - -0.00020763638895004988, - -0.0010660011321306229, - 0.011327673681080341, - -0.00045236508594825864, - -0.008063549175858498, - -0.04089831933379173, - 0.010366498492658138, - -0.021494194865226746, - -0.0016868944512680173, - -0.0028577216435223818, - 0.014475682750344276, - 0.002370683243498206, - -0.0027351558674126863, - -0.014824028126895428, - -0.026409735903143883, - 0.04693630337715149, - -0.020642684772610664, - -0.011617961339652538, - -0.00458977185189724, - 0.0044801076874136925, - -0.013327433727681637, - 0.008502205833792686, - 0.027016114443540573, - 0.0005596103146672249, - 0.020191125571727753, - -0.01674637757241726, - -0.04887155815958977, - -0.012340455316007137, - 0.009695610962808132, - 0.011314772069454193, - -0.008463500998914242, - 0.007992589846253395, - -0.008347385562956333, - -0.016191605478525162, - 0.022048968821763992, - -0.013288728892803192, - -0.03769870474934578, - -0.007231390569359064, - 0.019713765010237694, - 0.02188124693930149, - -0.0008418345241807401, - 0.01150184590369463, - 0.04172402620315552, - -0.0009232763550244272, - -0.009998800233006477, - 0.0016933452570810914, - 0.01205016765743494, - 0.014475682750344276, - 0.009856882505118847, - -0.0015248170820996165, - 0.0008369963616132736, - -0.011979208327829838, - 0.0037769663613289595, - 0.0008410281152464449, - 0.03230580314993858, - 0.024951845407485962, - -0.02425515465438366, - 0.021623212844133377, - 0.0002590414951555431, - -0.010192325338721275, - -0.05057457834482193, - -0.017443068325519562, - 0.005280011799186468, - 0.026912899687886238, - 0.0019288008334115148, - 0.030576977878808975, - -0.004215623252093792, - -0.014604699797928333, - -0.00740556325763464, - 0.02461640164256096, - 0.001601420808583498, - -0.046110596507787704, - -0.0040930574759840965, - -0.016243211925029755, - 0.029286809265613556, - 0.004199496004730463, - 0.004660731181502342, - -0.006134747993201017, - -0.011185755021870136, - 0.018346186727285385, - 0.01362417172640562, - 0.009502085857093334, - -0.018294580280780792, - -0.009534340351819992, - -0.017933333292603493, - -0.0065734051167964935, - -0.02038465067744255, - 0.02825467474758625, - 0.015972277149558067, - -0.01505625806748867, - -0.0009168254910036922, - -0.018113955855369568, - 0.02542920783162117, - -0.009882685728371143, - 0.0063185966573655605, - 0.010927720926702023, - 0.001207113265991211, - -0.01505625806748867, - 0.015920670703053474, - -0.014411174692213535, - 0.00169495795853436, - -0.0028157911729067564, - 0.0020529795438051224, - -0.033518560230731964, - -0.004473656881600618, - -0.02615170180797577, - -0.002933518961071968, - -0.0021191006526350975, - -0.0060670142993330956, - -0.029441628605127335, - -0.01932671293616295, - -0.024693811312317848, - -0.016398033127188683, - -0.0002646859793458134, - 0.017223739996552467, - -0.016617361456155777, - -0.011637313291430473, - 0.0013933812733739614, - -0.0004757493734359741, - 0.007263644598424435, - 0.0159077700227499, - 0.012327553704380989, - -0.007373309228569269, - 0.03718263655900955, - 0.0002792003797367215, - 0.0009748830343596637, - -0.039298512041568756, - -0.016127098351716995, - 0.021378081291913986, - -0.035582829266786575, - 0.0006934651755727828, - 0.021739328280091286, - -0.006889495998620987, - 0.010160071775317192, - -0.029931893572211266, - 0.003831798443570733, - -0.019971797242760658, - -0.015623931773006916, - -9.923204925144091e-05, - -0.028435299172997475, - -0.005796079058200121, - -0.0407693013548851, - 0.01053422037512064, - 0.009940743446350098, - 0.00440914835780859, - 0.03202196583151817, - -0.00021348246082197875, - -0.014604699797928333, - -0.0034415225964039564, - -0.004744592122733593, - 0.025816258043050766, - 0.0071991365402936935, - 0.02753218077123165, - -0.012301750481128693, - -0.01408863253891468, - -0.006167002022266388, - 0.007024963852018118, - -0.016398033127188683, - 0.0020658811554312706, - 0.02002340368926525, - -0.02619040571153164, - -0.022216688841581345, - -0.07044316083192825, - 0.02086201310157776, - 0.009121485985815525, - -0.015830358490347862, - 0.0005515467491932213, - 0.012243692763149738, - 0.01455309335142374, - 0.004238201305270195, - 0.00763779366388917, - -0.01780431531369686, - -0.028848152607679367, - -0.01848810538649559, - -0.007573285140097141, - 0.0044801076874136925, - -0.01949443481862545, - -0.011114795692265034, - 0.010366498492658138, - 0.005438057240098715, - 0.014191846363246441, - 0.012043716385960579, - -0.00954724196344614, - 0.0020884592086076736, - 0.008450599387288094, - -0.0026529075112193823, - -0.04174983128905296, - 0.0001366771466564387, - -0.019933093339204788, - 0.01767529919743538, - -0.012282397598028183, - -0.018694531172513962, - 0.019404124468564987, - -0.022371510043740273, - -0.010669687762856483, - 0.0036737527698278427, - -0.00793453212827444, - -0.03535059839487076, - 0.011198656633496284, - 0.024680910632014275, - 0.004034999758005142, - 0.05950253829360008, - -0.01491434033960104, - -0.027016114443540573, - 0.01966215670108795, - -0.016862493008375168, - -0.00401564734056592, - -0.010360047221183777, - 0.0050832610577344894, - 0.0025851738173514605, - 0.01799784041941166, - -0.021365178748965263, - 0.011843740940093994, - 0.018784843385219574, - -0.00677983183413744, - -0.015714243054389954, - 0.0036769781727343798, - -0.005644483957439661, - 0.004438177216798067, - 0.005954124499112368, - -0.002470671432092786, - -0.012804915197193623, - 0.02724834345281124, - 0.0025319543201476336, - 0.003428620984777808, - 0.010198776610195637, - 0.009598848409950733, - -0.011430886574089527, - -0.01312100701034069, - 0.007728105410933495, - 0.013250023126602173, - -0.00307866302318871, - -0.02199736051261425, - -0.00047615254879929125, - 0.0022029615938663483, - 0.026048488914966583, - -0.0044639804400503635, - 0.00521550327539444, - 0.0033737889025360346, - 0.001636094064451754, - -0.014204747974872589, - 0.037079423666000366, - 0.025442108511924744, - 0.018178464844822884, - -0.036795586347579956, - 0.009308560751378536, - -0.0016933452570810914, - -0.0053380695171654224, - -0.015030454844236374, - -0.01426925603300333, - 0.02357136644423008, - 0.015004651620984077, - -0.011553452350199223, - 0.014475682750344276, - -0.011992109939455986, - -0.004209172446280718, - -0.012108225375413895, - 0.0034447479993104935, - 0.008095802739262581, - -0.02332623489201069, - 0.007811965886503458, - 0.02624201402068138, - 0.013714483939111233, - -0.0010716456454247236, - 0.008095802739262581, - -0.01981697790324688, - -0.019726665690541267, - 0.026009783148765564, - -0.021171653643250465, - -0.0386534258723259, - 0.0028093403670936823, - 0.016462542116642, - -0.005160671193152666, - 0.017533380538225174, - 0.012927481904625893, - 0.0008563488954678178, - -0.03821476921439171, - 0.020036306232213974, - -0.0016627038130536675, - -0.012166282162070274, - -0.028951365500688553, - 0.025209879502654076, - -0.01294038351625204, - 0.029777072370052338, - 0.00017810364079196006, - 0.011005131527781487, - -0.006508896593004465, - -0.010211678221821785, - -0.012198536656796932, - -0.029157793149352074, - -0.01043745782226324, - -0.0018933212850242853, - -0.006921750493347645, - 0.010198776610195637, - -0.009508537128567696, - -0.035015154629945755, - -0.024035826325416565, - -0.022900478914380074, - 0.013004891574382782, - 0.02385520376265049, - 0.0049929493106901646, - 0.08262234926223755, - 0.01860421895980835, - 0.007715203333646059, - 0.0009031174704432487, - 0.0025609831791371107, - 0.00010482613288331777, - -0.019107384607195854, - 0.00450913654640317, - -0.00970851257443428, - -0.05594167485833168, - 0.007960335351526737, - -0.004334963858127594, - 0.013637073338031769, - -0.013417745009064674, - -0.020010503008961678, - 0.011379280127584934, - -0.02171352505683899, - 0.005750922951847315, - -0.00881829671561718, - -0.008450599387288094, - -0.01792043074965477, - 0.009450479410588741, - 0.014411174692213535, - 0.028074052184820175, - -0.025274386629462242, - -0.0022287648171186447, - 0.020616881549358368, - 0.010863212868571281, - -0.012585586868226528, - -0.01884935237467289, - -0.014978848397731781, - 0.0029948020819574594, - -0.037518080323934555, - -0.007528129033744335, - 0.03434426710009575, - -0.019429927691817284, - -0.01390800904482603, - -0.00042373948963359, - 0.026254914700984955, - 0.007805515080690384, - 0.002999640069901943, - 0.03284767270088196, - -0.016475442796945572, - -0.033647578209638596, - -0.007328153122216463, - -0.022139279171824455, - -0.01949443481862545, - 0.0019288008334115148, - -0.0015715856570750475 - ], - "sparse": "SparseEmbedding(values=array([1.65647059, 1.65647059, 1.65647059, 1.65647059, 1.65647059,\n 1.65647059, 1.65647059, 1.65647059]), indices=array([1103487616, 2124172637, 519436211, 90893168, 164058840,\n 2098979715, 1892097428, 718069143]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 1, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 8 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000002.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000002.json deleted file mode 100644 index 7d2033871440643e0aa8b1bd92177b5ac9cd6113..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000002.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000002", - "content": "BACHELORARBEIT zur Erlangung des akademischen Grades BACHELOR OF ENGINEERING (B. ENG.) Analyse der Wechselwirkungen zwischen Mobilit\u00e4t, Stadtgr\u00fcn und thermischen Geb\u00e4udeenergiebedarf anhand zweier Fallbeispiele Vorgelegt von Marieke Kreye", - "embedding": { - "dense": [ - 0.017141016200184822, - -0.012643489986658096, - 0.017618630081415176, - -0.027011696249246597, - -0.01412939839065075, - 0.0018490938236936927, - -0.02905482053756714, - -0.007781119551509619, - -0.007190736010670662, - -0.02447769045829773, - -0.005538989789783955, - 0.0043814401142299175, - 0.005505822133272886, - 0.022341696545481682, - 0.01529689785093069, - 0.006567185278981924, - 0.03385748714208603, - -0.004839153029024601, - -0.0025273712817579508, - -0.004663364961743355, - -0.021160930395126343, - 0.015190761536359787, - 0.006679954938590527, - -0.021240532398223877, - -0.01286239642649889, - -0.0091277239844203, - 0.03295532986521721, - -0.044683393090963364, - -0.005127711221575737, - -0.01334000937640667, - 0.013114470057189465, - -0.012437851168215275, - -0.03351254388689995, - -0.023257123306393623, - -0.016477664932608604, - -0.026162603870034218, - -0.016464397311210632, - 0.0021210680715739727, - 0.033379875123500824, - 0.008842483162879944, - 0.008026559837162495, - -0.0008615284459665418, - 0.012955265119671822, - -0.015602040104568005, - -0.010514129884541035, - 0.0002072975185001269, - -0.003920410759747028, - -0.02809959277510643, - -0.012371515855193138, - 0.03194703534245491, - 0.011091246269643307, - 0.023509196937084198, - -0.010587099008262157, - -0.0023980175610631704, - -0.031177546828985214, - 0.008145962841808796, - -0.017313487827777863, - 0.03834174945950508, - -0.03138981759548187, - -0.019476016983389854, - -0.016305193305015564, - -0.017910504713654518, - -0.031628627330064774, - -0.00012883541057817638, - -0.018918801099061966, - -0.012079641222953796, - -0.023031583055853844, - 0.0015630233101546764, - -0.005034842062741518, - -0.0024361603427678347, - 0.03290226310491562, - 0.001519076176919043, - 0.016636868938803673, - 0.0023698252625763416, - 0.030381523072719574, - 0.007741318549960852, - 0.0034361635334789753, - 0.008026559837162495, - -0.014806017279624939, - 0.0024311852175742388, - 0.005704827606678009, - -0.012570520862936974, - -0.012391416355967522, - 0.01787070371210575, - 0.002276955870911479, - 0.026308542117476463, - -0.0011119438568130136, - 0.011741330847144127, - -0.011893901973962784, - -0.01566837541759014, - -0.0032172573264688253, - 0.023933742195367813, - 0.016371527686715126, - 0.010587099008262157, - -0.0136252511292696, - -0.015137693844735622, - -0.011217283084988594, - 0.01826871559023857, - 0.002031515585258603, - -0.01610618829727173, - -0.007270338479429483, - 0.007893889211118221, - -0.01342624519020319, - -0.003046444384381175, - -0.048026688396930695, - 0.007674983236938715, - -0.008955252356827259, - -0.005293549504131079, - 0.021227264776825905, - -0.017207352444529533, - -0.030487660318613052, - 0.05466020852327347, - -0.01028859056532383, - -0.016981812193989754, - -0.003910460509359837, - -0.030328456312417984, - 0.019210675731301308, - -0.021612009033560753, - -0.012059739790856838, - -0.01844118721783161, - 0.019290277734398842, - -0.006719756405800581, - 0.007330039981752634, - -0.02628200873732567, - 0.007548946421593428, - 0.00873634684830904, - -0.02255396917462349, - -0.013903859071433544, - -0.018016641959547997, - -0.007801020052284002, - -0.02312445268034935, - -0.014195733703672886, - 0.008344968780875206, - 0.017724767327308655, - -0.02211615815758705, - -0.0009361555567011237, - -0.004713116213679314, - -0.007767852395772934, - -0.024743031710386276, - -0.03149595484137535, - -0.017114482820034027, - 0.023376526311039925, - -0.028471069410443306, - -0.017764568328857422, - -0.0010986768174916506, - 0.008869016543030739, - 0.0074030086398124695, - 0.00596353504806757, - -0.009207325987517834, - -0.004975140560418367, - -0.022487634792923927, - -0.02256723679602146, - 0.029983513057231903, - 0.011263717897236347, - -0.0011409654980525374, - -0.002512445906177163, - -0.013665052130818367, - 0.017087949439883232, - -0.016822608187794685, - -0.009512468241155148, - 0.01577451080083847, - -0.0225009024143219, - 0.016371527686715126, - -0.016650136560201645, - 0.002565514063462615, - 0.010082950815558434, - -0.0008557241526432335, - 0.004756234120577574, - 0.01691547781229019, - -0.016437863931059837, - -0.00930019561201334, - 0.04009299725294113, - -0.02995697781443596, - 0.02277950942516327, - 0.004640147555619478, - 0.01377118844538927, - -0.00602323655039072, - 0.004769501276314259, - -0.014394739642739296, - -0.022089622914791107, - 0.00024544025654904544, - -0.0040995157323777676, - 0.021134397014975548, - 0.030832603573799133, - -0.020391441881656647, - 0.018388118594884872, - 0.012769526802003384, - 0.013379810377955437, - 0.0034693311899900436, - 0.001791050541214645, - 0.0182554479688406, - 0.014912153594195843, - 0.018136044964194298, - 0.019648486748337746, - -0.6465824842453003, - -0.011403021402657032, - 0.004122733138501644, - -0.0028441220056265593, - -0.0021691611036658287, - 0.014912153594195843, - 0.02950589917600155, - -0.001553902169689536, - 0.004275303799659014, - 0.030620330944657326, - -0.004102832637727261, - -0.007615281734615564, - 0.0005443632835522294, - -0.004185751546174288, - -0.003555567003786564, - -0.0037578893825411797, - 0.020033231005072594, - -0.031522490084171295, - 0.04595702886581421, - 0.014713148586452007, - -0.020935390144586563, - 0.007330039981752634, - 0.002434502122923732, - -0.002207303885370493, - 0.02709129825234413, - 0.002582097891718149, - 0.013890591450035572, - -0.01996689662337303, - 0.014341671019792557, - 0.024504223838448524, - -0.01020235475152731, - 0.036431293934583664, - -0.004374806769192219, - 0.013930393382906914, - 0.052378278225660324, - 0.02780771814286709, - -0.015920449048280716, - 0.016610335558652878, - 0.016305193305015564, - 0.018812663853168488, - -0.01695527881383896, - -0.021519141271710396, - 0.0003146776289213449, - 0.03396362438797951, - -0.0005443632835522294, - 0.02759544551372528, - 0.03128368407487869, - 0.006839159410446882, - -0.010633532889187336, - 0.002106142695993185, - -0.0030613697599619627, - -0.003099512541666627, - 0.004474309738725424, - 0.015747977420687675, - 0.01008958462625742, - 0.00541295250877738, - 0.02572479285299778, - -0.005854081828147173, - -0.02691882662475109, - 0.004199018236249685, - -0.008517440408468246, - 0.013021600432693958, - -0.022527435794472694, - -0.022434566169977188, - -0.002320073777809739, - -0.0017363239312544465, - -0.015124427154660225, - -0.007668349891901016, - -0.003568833926692605, - -0.008716446347534657, - -0.002464352874085307, - 0.007701517082750797, - 0.003432846860960126, - 0.023708201944828033, - 0.031071409583091736, - 0.011681629344820976, - 0.012285280041396618, - -0.0053930520080029964, - -0.021187463775277138, - 0.010467695072293282, - 0.006407980807125568, - -0.0059370007365942, - -0.004723066464066505, - -0.012822595424950123, - 0.02815266139805317, - -0.04869003966450691, - -0.042374927550554276, - -0.01606638729572296, - -0.001422890112735331, - -0.0017927088774740696, - 0.035767942667007446, - 0.012742992490530014, - -0.03261038661003113, - -0.012895563617348671, - 0.00423881970345974, - 0.050627026706933975, - 0.00757548026740551, - 0.03266345337033272, - 0.02341632731258869, - -0.034680046141147614, - -0.015482637099921703, - 0.013665052130818367, - 0.03913776949048042, - -0.016199057921767235, - -0.0024112847167998552, - -0.007708150893449783, - -0.01246438454836607, - 0.019807692617177963, - 0.04980447143316269, - -0.01379772275686264, - 0.010421260260045528, - -0.007469343952834606, - 0.0008640160667710006, - -0.0007346624042838812, - -0.02340305969119072, - -0.03404322639107704, - 0.021452805027365685, - -0.028816012665629387, - 0.018786130473017693, - -0.005257064942270517, - 0.02153240703046322, - 0.006905494723469019, - 0.007913789711892605, - -0.012563887983560562, - 0.011562226340174675, - 0.02628200873732567, - 0.004998357500880957, - -0.010268690064549446, - -0.029426297172904015, - 0.014607012271881104, - 0.022991782054305077, - 0.008145962841808796, - 0.017658431082963943, - -0.009598704054951668, - 0.021160930395126343, - 0.01116421539336443, - 0.00862357672303915, - -0.022301895543932915, - -0.003021568525582552, - -0.010626900009810925, - -0.009068022482097149, - -0.013810989446938038, - 0.003807640867307782, - -0.027728116139769554, - -0.013837523758411407, - -0.01691547781229019, - -0.01979442499577999, - 0.023668400943279266, - 0.002880606334656477, - 0.038023337721824646, - -0.015164228156208992, - 0.0033300272189080715, - 0.002915432211011648, - 0.00640134746208787, - 0.028285332024097443, - -0.015044824220240116, - -0.008902184665203094, - -0.0017844169633463025, - -0.007442810107022524, - -0.019024936482310295, - 0.0075953807681798935, - 0.018812663853168488, - -0.05211293697357178, - 0.020616982132196426, - -0.015442836098372936, - -0.008543974719941616, - 0.023150986060500145, - 0.007913789711892605, - -0.015694908797740936, - -0.04224225878715515, - 0.0018905533943325281, - -0.01802990958094597, - -0.011993405409157276, - -0.0023714834824204445, - -0.018361585214734077, - -0.018865732476115227, - -0.015097892843186855, - -0.004023230168968439, - -0.0007122742827050388, - -0.011522425338625908, - 0.014514142647385597, - 0.0075622135773301125, - -0.018958602100610733, - -0.010885607451200485, - -0.0033300272189080715, - 0.02905482053756714, - -0.005276965443044901, - 0.015734709799289703, - -0.015243830159306526, - -0.0014220610028132796, - 0.0033996792044490576, - 0.047734811902046204, - -0.006335012149065733, - 0.02232843078672886, - -0.00845110509544611, - 0.01091214083135128, - -0.011555592529475689, - 0.021678345277905464, - -0.012238845229148865, - 0.016490932554006577, - 0.03916430473327637, - -0.004447775427252054, - 0.025074707344174385, - -0.005754578858613968, - 0.010414627380669117, - -0.043622031807899475, - 0.0011641827877610922, - 0.023442860692739487, - 0.05784429982304573, - 0.016703205183148384, - 0.0073167732916772366, - -0.019860761240124702, - -0.03138981759548187, - -0.021505873650312424, - -0.001252076937817037, - 0.024345019832253456, - -0.012656756676733494, - 0.007150935009121895, - -0.0153765007853508, - -0.029240557923913002, - 0.008464371785521507, - -0.00017475181084591895, - 0.030461126938462257, - 0.004845786839723587, - 0.008099528960883617, - 0.025419650599360466, - -0.002998351352289319, - 0.024729764088988304, - 0.009738008491694927, - 0.0032172573264688253, - 0.0014875669730827212, - 0.02142627164721489, - 0.015588773414492607, - -0.010494229383766651, - 0.02341632731258869, - 0.03144288808107376, - 0.005114444065839052, - -0.021399736404418945, - 0.024888968095183372, - 0.012039839290082455, - 0.012079641222953796, - 0.03144288808107376, - -0.012597055174410343, - -0.01096520945429802, - 0.022063089534640312, - -0.007044798694550991, - 0.013638517819344997, - 0.020086299628019333, - 0.022527435794472694, - 0.023482661694288254, - -0.02679942362010479, - 0.019144339486956596, - -0.0069253952242434025, - -0.00596353504806757, - 0.031628627330064774, - -0.018786130473017693, - 0.018507521599531174, - 0.0104345278814435, - 0.029240557923913002, - 0.02328365668654442, - -0.0075953807681798935, - 0.03279612585902214, - 0.0006488412036560476, - -0.0033515861723572016, - -0.005900516640394926, - 0.0021476021502166986, - -0.005694877356290817, - -0.01893206685781479, - -0.012325081042945385, - -0.009406331926584244, - 0.00043822693987749517, - -0.021572208032011986, - -0.005376468412578106, - -0.0013242164859548211, - 0.01164182834327221, - -0.022315163165330887, - 0.016981812193989754, - -0.006381446495652199, - 0.01565510779619217, - 0.013412978500127792, - -0.008205665275454521, - -0.010308491066098213, - -0.012530719861388206, - 0.012119442224502563, - -0.0004369831585790962, - -0.018693260848522186, - 0.005068009719252586, - 0.018640192225575447, - -0.014408006332814693, - -0.015190761536359787, - 0.005844131577759981, - -0.0076020145788788795, - -0.0034096294548362494, - 0.0035124490968883038, - -0.011708163656294346, - -0.005691560450941324, - 0.0218773502856493, - -0.022540703415870667, - 0.013154271058738232, - 0.004786084871739149, - 0.019197408109903336, - -0.013525748625397682, - -0.008139329962432384, - -0.0020514163188636303, - 0.02577786147594452, - 0.0036981876473873854, - -0.017738033086061478, - -0.019038204103708267, - 0.005950267892330885, - -0.006155907176434994, - 0.006281943991780281, - -0.0007873159484006464, - -0.00349254859611392, - -0.00935989711433649, - -0.024398088455200195, - -0.001665842835791409, - 0.003598684910684824, - -0.0019237209344282746, - 0.05320083349943161, - -0.00033623658237047493, - 0.006298527587205172, - -0.01283586211502552, - -0.007522412110120058, - 0.03014271706342697, - 0.051767993718385696, - 0.004666681867092848, - -0.0006372325588017702, - -0.0005849935696460307, - -0.0029884008690714836, - -0.0207496527582407, - -0.007330039981752634, - -0.038527488708496094, - -0.012855762615799904, - -0.008915451355278492, - 0.008762880228459835, - 0.00146269123069942, - 0.016862409189343452, - -0.002789395395666361, - 0.007051432505249977, - 0.0022222292609512806, - 0.009068022482097149, - -0.014660079963505268, - 0.010142653249204159, - -0.004142633639276028, - 0.013784455135464668, - -0.019980164244771004, - -0.004626880399882793, - 0.01600005105137825, - 0.015044824220240116, - 0.0006791066844016314, - 0.014806017279624939, - 0.03356561437249184, - -0.0042487699538469315, - -0.023893941193819046, - -0.00015588772657793015, - 0.00017226423369720578, - 0.021054793149232864, - 0.015628574416041374, - -0.023774538189172745, - 0.03141635283827782, - 0.013890591450035572, - 0.0029436247423291206, - 0.01849425584077835, - -0.004733016714453697, - 0.022354964166879654, - 0.01606638729572296, - 0.010394726879894733, - -0.011794399470090866, - 0.029638569802045822, - -0.007814287208020687, - 0.005708144512027502, - 0.0390051007270813, - 0.001676622312515974, - -0.0071244011633098125, - 0.031018340960144997, - 0.0023101235274225473, - -0.021612009033560753, - -0.009777809493243694, - 0.008019926026463509, - -0.003192381700500846, - 0.016291925683617592, - -0.021054793149232864, - 0.018560590222477913, - -0.0022835894487798214, - -0.013353276997804642, - -0.030514193698763847, - 0.0031757978722453117, - -0.0034958652686327696, - -0.01125045120716095, - -0.003747939132153988, - -0.03391055762767792, - -0.02272644080221653, - -0.030567262321710587, - 0.010958575643599033, - -0.004338322207331657, - -0.03250424936413765, - -0.034520842134952545, - -0.0074096424505114555, - 0.008716446347534657, - 0.017313487827777863, - 0.01116421539336443, - -0.015509170480072498, - -0.017910504713654518, - 0.005651759449392557, - -0.026865758001804352, - -0.0005422902759164572, - -0.0015704859979450703, - -0.03409629687666893, - -0.025260446593165398, - -0.0058772992342710495, - -0.012908831238746643, - -0.024119479581713676, - -0.0024776197969913483, - 0.018308516591787338, - 0.015111159533262253, - -0.010361558757722378, - 0.008457738906145096, - 0.002179111586883664, - -0.019542351365089417, - 0.011655095033347607, - -0.00024523294996470213, - 0.013943660072982311, - 0.015456102788448334, - -0.021439537405967712, - -0.0003086659999098629, - 0.0006181611679494381, - 0.012238845229148865, - -0.0020696583669632673, - 0.01639806292951107, - 0.020139368250966072, - -0.013704853132367134, - 0.015920449048280716, - -0.009850777685642242, - 0.013280307874083519, - 0.022368231788277626, - -0.0201261006295681, - 0.005917100235819817, - -0.005907149985432625, - 0.011237183585762978, - 0.023442860692739487, - -0.013141004368662834, - 0.008106161840260029, - 0.02640141174197197, - -0.00013888932880945504, - 0.00038785365177318454, - -0.019714822992682457, - 0.03921737149357796, - 0.031071409583091736, - 0.002063024789094925, - 0.014540676958858967, - -0.006205658428370953, - 0.017485959455370903, - -0.016888942569494247, - -0.010898874141275883, - 0.012510819360613823, - 0.0031359968706965446, - -0.003956894855946302, - -0.04035833850502968, - -0.03958884999155998, - -0.023097917437553406, - -0.029612034559249878, - 0.01255062036216259, - -0.008829215541481972, - -0.009399698115885258, - -0.028126126155257225, - 2.9462158636306413e-05, - 0.004646780900657177, - 0.02239476516842842, - 0.014580477960407734, - -0.03303493186831474, - -0.008218931965529919, - 0.0003731355245690793, - -0.028019990772008896, - 0.032875727862119675, - -0.012563887983560562, - 0.004232185892760754, - -0.015230563469231129, - -0.009751275181770325, - -0.017114482820034027, - -0.037996806204319, - -0.008809315040707588, - -0.014408006332814693, - 0.010885607451200485, - 0.0282587967813015, - 0.027515843510627747, - 0.005767846014350653, - 0.031867433339357376, - 0.009074656292796135, - -0.002824221272021532, - 0.006872327066957951, - -0.0001473885349696502, - 0.000995857291854918, - -0.03316760063171387, - 0.029214024543762207, - 0.03759879246354103, - 0.01300833374261856, - 0.012218944728374481, - 0.005502505227923393, - -0.02300504967570305, - 0.03306146711111069, - -0.021280333399772644, - -0.02255396917462349, - 0.002630190923810005, - -0.0010472669964656234, - -0.021638544276356697, - 0.010136019438505173, - 0.004902171436697245, - 0.003545616753399372, - -0.015031557530164719, - -0.0038474418688565493, - 0.018308516591787338, - 0.0005957730463705957, - -0.0024577192962169647, - -0.0007495878380723298, - 0.011097880080342293, - -0.021864082664251328, - 0.031628627330064774, - 0.007781119551509619, - -0.012351615354418755, - 0.011104512959718704, - -0.011184115894138813, - -0.015602040104568005, - -0.032424647361040115, - 0.022752976045012474, - -0.002578780986368656, - -0.005598691292107105, - -0.01397019438445568, - -0.01020235475152731, - -0.0015472687082365155, - -0.006517434027045965, - 0.01452741026878357, - -0.004855737090110779, - -0.005830864422023296, - -0.02045777626335621, - 0.007681616581976414, - -0.019940363243222237, - 0.006905494723469019, - -0.02431848645210266, - 0.022991782054305077, - -0.0014005020493641496, - -0.004281937610358, - 0.03879282623529434, - -0.009512468241155148, - 0.01397019438445568, - 0.007283605635166168, - -0.004928705748170614, - 0.013519114814698696, - 0.007648448925465345, - 0.0427464060485363, - 0.01939641311764717, - -0.013877324759960175, - -0.02709129825234413, - -0.024849167093634605, - 0.002998351352289319, - -0.03030192106962204, - 0.02865680865943432, - 0.010414627380669117, - -0.01316753774881363, - -0.025485984981060028, - -0.008053094148635864, - 0.023429594933986664, - 0.006713122595101595, - -0.008059727028012276, - 0.047522541135549545, - 0.013134370557963848, - -0.0202455036342144, - -0.009286928921937943, - 0.014036529697477818, - -0.017684966325759888, - 0.020325107499957085, - -0.01325377356261015, - 0.008855749852955341, - -0.007204003166407347, - 0.005548940040171146, - 0.005004991311579943, - 0.043675098568201065, - 0.0060663544572889805, - 0.014620278961956501, - 0.00034515035804361105, - -0.022010020911693573, - 0.01181429997086525, - -0.013048134744167328, - -0.001882261480204761, - 0.04216265678405762, - -0.006500849965959787, - 0.033379875123500824, - 0.005150928627699614, - -0.015044824220240116, - -0.012364882044494152, - -0.0030630279798060656, - -0.012762892991304398, - 0.0063515957444906235, - 0.00624545942991972, - 0.021306868642568588, - -0.0029386496171355247, - -0.011475990526378155, - -0.005976801738142967, - -0.004079615231603384, - 0.04760214313864708, - -0.005432853475213051, - -0.0007587089203298092, - -0.03154902160167694, - -0.022766241803765297, - -0.0109983766451478, - 0.0012114467099308968, - 0.004043130669742823, - -0.014076330699026585, - -0.016212323680520058, - -0.011044811457395554, - -0.008995053358376026, - 0.011356587521731853, - -0.007588747423142195, - -0.0061658574268221855, - -0.034733112901449203, - -0.01076620351523161, - -0.00910118967294693, - 0.006169173866510391, - 0.019940363243222237, - 0.007349940482527018, - -0.013837523758411407, - 0.004908805247396231, - 0.017791101709008217, - -0.02995697781443596, - 0.005651759449392557, - 0.022182492539286613, - -0.013054768554866314, - 0.004132683388888836, - 0.0025671725161373615, - -0.020723117515444756, - -0.023164253681898117, - 0.019701555371284485, - -0.0018109510419890285, - 0.00423881970345974, - -0.001650088233873248, - -0.018335049971938133, - 0.013665052130818367, - -0.009028221480548382, - -0.020908856764435768, - 0.02045777626335621, - -0.022686639800667763, - 0.014885620214045048, - -0.02606973610818386, - 0.002807637443765998, - 0.013074669055640697, - -0.006152590271085501, - 0.0024892285000532866, - 0.03059379570186138, - -0.019874026998877525, - 0.0022354964166879654, - 0.010971843264997005, - -0.0023018314968794584, - -0.026759620755910873, - -0.01268992479890585, - -0.0006670834263786674, - -0.021956952288746834, - 0.015164228156208992, - -0.01927701011300087, - -0.0020497578661888838, - -0.008351602591574192, - -0.016185790300369263, - -0.0035887346602976322, - 0.02735663764178753, - 0.0043449560180306435, - -0.016490932554006577, - 0.008092895150184631, - 0.001473470707423985, - -0.0004011206910945475, - 0.032530784606933594, - 1.0403744454379193e-05, - -0.0003146776289213449, - -0.013532381504774094, - -0.0033565612975507975, - -0.04683265462517738, - 0.0058706654235720634, - -0.008490906096994877, - 0.03884589672088623, - 0.004053080920130014, - -0.022991782054305077, - -0.0031840899027884007, - -0.00766171608120203, - -0.046328507363796234, - -0.023548997938632965, - -0.0037247217260301113, - 0.005840814672410488, - 0.0035787844099104404, - 0.006583768874406815, - -0.009724740870296955, - 0.0200066976249218, - -0.0025621973909437656, - -0.004043130669742823, - -0.0172471534460783, - -0.020882323384284973, - 0.01690221019089222, - -0.007091233506798744, - 0.02260703779757023, - 0.008968519978225231, - -0.03239811584353447, - -0.02329692430794239, - 0.02815266139805317, - 0.0018159262835979462, - -0.01365178544074297, - 0.018348317593336105, - -0.011668362654745579, - 0.003737988881766796, - 0.01348594669252634, - -0.0064510987140238285, - -0.006119422614574432, - 0.016875676810741425, - 0.040570612996816635, - -0.0352637954056263, - -0.000985077815130353, - 0.017048148438334465, - -0.00678609125316143, - -0.03399015963077545, - -0.0029403080698102713, - 0.0012512478278949857, - 0.00034618686186149716, - 0.012869029305875301, - -0.0010646800510585308, - -0.0051476117223501205, - -0.0016218957025557756, - -0.01730022206902504, - 0.010991743765771389, - 0.0016807682113721967, - 0.0008781122742220759, - -0.011044811457395554, - 0.004875637590885162, - 0.009684939868748188, - -0.013585450127720833, - 0.012995067052543163, - -0.0425076000392437, - 0.005645126104354858, - 0.002281930996105075, - -0.018985135480761528, - 0.031681694090366364, - -0.021293601021170616, - 0.006361545994877815, - -0.0076550827361643314, - 0.009651772677898407, - -0.023840872570872307, - -0.012928731739521027, - -0.003222232684493065, - 0.012112808413803577, - 0.023270389065146446, - 0.003126046620309353, - -0.017313487827777863, - 0.0053930520080029964, - -0.01651746593415737, - -0.014102865010499954, - -0.022540703415870667, - 0.002303489949554205, - -0.027104564011096954, - -0.024862434715032578, - 0.013499214313924313, - -0.0031111210118979216, - -0.0029485998675227165, - 0.002714768284931779, - 0.005602008197456598, - -0.01990056224167347, - 0.004829202778637409, - 0.1925313025712967, - -0.010951942764222622, - 0.012583788484334946, - 0.02232843078672886, - -0.005615274887531996, - -0.016185790300369263, - 0.002645116299390793, - -0.005658392794430256, - -0.000473882129881531, - 0.03181436285376549, - 0.0004048520349897444, - 0.013638517819344997, - -0.018786130473017693, - -0.010932041332125664, - 0.002474303124472499, - -0.011509157717227936, - -0.03409629687666893, - -0.01718081720173359, - 0.0017363239312544465, - 0.012305180542171001, - 0.013346643187105656, - -0.009883945807814598, - -0.015628574416041374, - -0.02227536216378212, - 0.03178783133625984, - -0.005535672884434462, - -0.0010422918712720275, - 0.020311839878559113, - 0.03136328607797623, - -0.004199018236249685, - -0.009658405557274818, - 0.0004684923915192485, - 0.0069320290349423885, - -0.0014427907299250364, - -0.0040563978254795074, - 0.011674996465444565, - 0.021452805027365685, - -0.04006646201014519, - 0.028338398784399033, - 0.02239476516842842, - -0.017260421067476273, - -0.03141635283827782, - 0.012975165620446205, - -0.02454402670264244, - 1.5625049854861572e-05, - 0.04574475809931755, - -0.0008499198011122644, - 0.0013474338920786977, - -0.009320096112787724, - -0.006268676836043596, - -0.04035833850502968, - -0.0073167732916772366, - 0.04123396426439285, - 0.02645448036491871, - 0.009114457294344902, - 0.016875676810741425, - 0.0244909580796957, - 0.0039602117612957954, - 0.012597055174410343, - 0.0024792782496660948, - -0.017393089830875397, - 0.01922394149005413, - -0.015469369478523731, - 0.03239811584353447, - 0.011316785588860512, - 0.004182434640824795, - -0.010182454250752926, - 0.009280295111238956, - 0.006577135529369116, - -0.005578790791332722, - -0.01667666994035244, - -0.03444124013185501, - -0.006096205208450556, - 0.005645126104354858, - -0.02052411250770092, - -0.02510124072432518, - 0.03231851011514664, - 0.009751275181770325, - 0.0008847457938827574, - 0.010155919939279556, - -0.014394739642739296, - -0.007648448925465345, - -0.01102491095662117, - -0.035529136657714844, - -0.025340048596262932, - -0.03603328391909599, - 0.004013279918581247, - 0.0015704859979450703, - -0.01866672746837139, - -0.0028175879269838333, - -0.0113101527094841, - -0.009990082122385502, - 0.0005091226776130497, - -0.0009635188616812229, - 0.021466072648763657, - 0.021227264776825905, - -0.0031509222462773323, - 0.014991756528615952, - -0.019807692617177963, - 0.022580504417419434, - -0.027834251523017883, - 0.038925498723983765, - 0.03303493186831474, - -0.007190736010670662, - -0.024835901334881783, - 0.008444471284747124, - -0.007190736010670662, - 0.011801033280789852, - 0.016942011192440987, - -0.018454454839229584, - -0.0101227518171072, - -0.01605311967432499, - 0.016265392303466797, - -0.0014403031673282385, - -0.003651753067970276, - 0.02595033124089241, - -0.006699855905026197, - -0.008935351856052876, - 0.016636868938803673, - -0.025141041725873947, - -0.018507521599531174, - -0.011980137787759304, - 0.007051432505249977, - -0.0010149286827072501, - 0.006278627086430788, - -0.003419579705223441, - -0.031230613589286804, - 0.01201330590993166, - -0.005031525157392025, - 0.00408293167129159, - 0.01893206685781479, - -0.01196023728698492, - 0.025286979973316193, - 0.014832551591098309, - -0.00859704241156578, - 0.0034295301884412766, - 0.0038507585413753986, - -0.029771240428090096, - -0.01769823208451271, - 0.01532343216240406, - -0.0006053087417967618, - -0.028736410662531853, - 0.00543948682025075, - 0.009830877184867859, - 0.007880622521042824, - -0.010872339829802513, - 0.01967502199113369, - -0.0007404666976071894, - -0.04643464460968971, - -0.022474367171525955, - 4.5164946641307324e-05, - -0.01719408482313156, - 0.006391397211700678, - -0.025764593854546547, - 0.032371580600738525, - 0.011422921903431416, - -0.01497848890721798, - -0.04075634852051735, - 0.007449443452060223, - 0.022514168173074722, - -0.020311839878559113, - -0.00023341699852608144, - 0.013718120753765106, - -0.013346643187105656, - 0.0025091292336583138, - 0.010189087130129337, - -0.16981811821460724, - 0.007940324023365974, - 0.01877286285161972, - -0.032716523855924606, - 0.019197408109903336, - 0.01889226585626602, - 0.011058079078793526, - -0.005253748036921024, - -0.013983461074531078, - -0.004623563960194588, - 0.014262069016695023, - -0.013127736747264862, - -0.03229197859764099, - -0.003059711307287216, - 0.0012877321569249034, - 0.01336654368788004, - -0.008928718976676464, - 0.010308491066098213, - 0.009154258295893669, - 0.0026384827215224504, - 0.005854081828147173, - -0.004869004245847464, - 0.019993430003523827, - -0.0017180817667394876, - 0.002159210853278637, - 0.005903833080083132, - -0.018388118594884872, - 0.012165876105427742, - -0.005160878878086805, - -0.007827553898096085, - 0.0038275413680821657, - -0.0003723063273355365, - 0.019595419988036156, - 0.007608647923916578, - 0.008305167779326439, - 0.012172509916126728, - -0.01484581921249628, - -0.0049187554977834225, - -0.0020066399592906237, - 0.017087949439883232, - 0.030726466327905655, - 0.019078005105257034, - -0.00598011864349246, - -0.01764516532421112, - -0.019940363243222237, - 0.008179130963981152, - 0.0282587967813015, - 0.013353276997804642, - 0.014036529697477818, - -0.007436176296323538, - 0.02385414019227028, - -0.024517491459846497, - -0.013313475996255875, - -0.004175801295787096, - 0.026268741115927696, - 0.02476956509053707, - 0.00921395979821682, - 0.019316811114549637, - 0.0052437977865338326, - 0.004540644586086273, - -0.014593744650483131, - 0.008616942912340164, - 0.01764516532421112, - 0.00010706916509661824, - -0.02679942362010479, - -0.0008880625828169286, - 0.014938687905669212, - 0.017857437953352928, - 0.00017910505994223058, - 0.010441161692142487, - -0.011980137787759304, - -0.03263692185282707, - 0.015681643038988113, - -0.01257715467363596, - -0.002671650378033519, - 0.005552256479859352, - -0.007263705134391785, - 0.0006417931290343404, - 0.003681603819131851, - -0.018520789220929146, - -0.0020497578661888838, - 0.04489566758275032, - -0.0202455036342144, - -0.010699868202209473, - -0.016543999314308167, - -0.007383108139038086, - 0.011608661152422428, - -0.002378117060288787, - 0.017061414197087288, - -0.008179130963981152, - 0.012716459110379219, - -0.038023337721824646, - -0.03608635067939758, - -0.03804987296462059, - 0.006053087301552296, - 0.004461042582988739, - -0.0014552285429090261, - -0.003213940653949976, - -0.005665026605129242, - -0.00640134746208787, - 0.017565561458468437, - -0.028418002650141716, - -0.0226203054189682, - 0.011993405409157276, - 0.024743031710386276, - 0.01802990958094597, - -0.004388073924928904, - -0.0054958718828856945, - 0.031177546828985214, - -0.02498183771967888, - -0.016238858923316002, - -0.005890566390007734, - 0.01054729800671339, - 0.03353907912969589, - 0.004855737090110779, - -0.0033598782029002905, - -0.009054755792021751, - -0.009711474180221558, - 0.011807666160166264, - 0.0037943737115710974, - 0.029983513057231903, - 0.01927701011300087, - -0.02645448036491871, - 0.014580477960407734, - 0.008524074219167233, - -0.004076298326253891, - -0.06469009071588516, - -0.0072504379786551, - 0.004746283870190382, - -0.0018159262835979462, - 0.01723388582468033, - 0.007230537477880716, - 0.0030663448851555586, - 0.010872339829802513, - 0.002966842148452997, - 0.033220671117305756, - -0.02657388336956501, - -0.024583827704191208, - 0.00012209823762532324, - -0.020948657765984535, - 0.006467682309448719, - -0.02170487865805626, - -0.0004303496389184147, - -0.01933007873594761, - -0.004981773905456066, - 0.02673308737576008, - 0.00862357672303915, - 0.006082938052713871, - -0.009751275181770325, - -4.472443833947182e-05, - -0.013001699931919575, - 0.02171814627945423, - -0.030116183683276176, - 0.021293601021170616, - 0.027966922149062157, - -0.014076330699026585, - -0.0003538568562362343, - -0.02539311721920967, - 0.01984749361872673, - -0.03579447790980339, - 0.0067396569065749645, - -0.0071177673526108265, - 0.0047197500243783, - -0.02735663764178753, - 0.008471005596220493, - -0.015535704791545868, - -0.002779445145279169, - 0.005442803725600243, - 0.036617033183574677, - -0.04195038229227066, - -0.0172471534460783, - -0.009379797615110874, - -0.03733345493674278, - -0.0034560642670840025, - 0.00023175861861091107, - -0.029585501179099083, - -0.022129423916339874, - -0.004951923154294491, - 0.0045340112410485744, - -0.009810976684093475, - 0.04319748654961586, - -0.006839159410446882, - -0.005034842062741518, - -0.0050116246566176414, - -0.00040899799205362797, - 0.002373141935095191, - 0.016477664932608604, - -0.005462704226374626, - -0.0207496527582407, - 0.024225616827607155, - 0.005472654476761818, - -0.010713135823607445, - -0.04165850952267647, - -0.017061414197087288, - 0.0026733088307082653, - -0.024119479581713676, - -0.012882296927273273, - 0.03014271706342697, - -0.006603669840842485, - 0.019714822992682457, - -0.032424647361040115, - -0.00336319487541914, - -0.028869081288576126, - -0.013983461074531078, - 0.003867342369630933, - -0.009432866238057613, - -0.018507521599531174, - -0.043728165328502655, - 0.020961925387382507, - 0.005648442544043064, - 0.022262094542384148, - 0.022368231788277626, - -0.009565536864101887, - 0.005240481346845627, - 0.02108132839202881, - -0.010872339829802513, - 0.006520750466734171, - 0.009638505056500435, - 0.013917125761508942, - -0.0236285999417305, - -0.01915760710835457, - -0.01382425706833601, - 0.0009975156281143427, - -0.0057777962647378445, - 0.0030315187759697437, - 0.016411330550909042, - -0.021227264776825905, - 0.005349934101104736, - -0.07588747143745422, - 0.010049783624708652, - 0.017008347436785698, - -0.006238826084882021, - -0.0018905533943325281, - -0.0016567216953262687, - 0.028630275279283524, - 0.024437889456748962, - -0.0012653439771384, - -0.010275322943925858, - -0.0013499214546754956, - -0.0005721411434933543, - 0.0036617033183574677, - -0.0047297002747654915, - -0.00545607041567564, - -0.015456102788448334, - 0.01927701011300087, - 0.023880673572421074, - 0.02029857225716114, - 0.01615925505757332, - -0.014540676958858967, - -0.016437863931059837, - 0.014991756528615952, - 0.010136019438505173, - -0.04070328176021576, - 0.01775130070745945, - -0.004242136143147945, - -0.011475990526378155, - -0.00678609125316143, - -0.02023223787546158, - -0.0013117786729708314, - -0.014885620214045048, - 0.009028221480548382, - -0.003883926197886467, - -0.008305167779326439, - -0.006013286300003529, - 0.016079653054475784, - 0.03669663518667221, - 0.014898886904120445, - 0.06580452620983124, - -0.01775130070745945, - -0.031018340960144997, - 0.027436241507530212, - -0.015854114666581154, - 0.01023552194237709, - 0.0004921242943964899, - -0.0031376550905406475, - 0.003737988881766796, - 0.012477652169764042, - -0.011887269094586372, - 0.026481013745069504, - 0.008577141910791397, - -0.0017794418381527066, - -0.01320733968168497, - 0.025870729237794876, - -0.020590446889400482, - 0.0029850841965526342, - 0.000558044936042279, - -0.006623570341616869, - -0.0188790000975132, - 0.03335333988070488, - -0.002306806854903698, - 0.0048258863389492035, - 0.009399698115885258, - 0.02606973610818386, - -0.008941985666751862, - -0.016238858923316002, - 0.008875650353729725, - 0.0075953807681798935, - -0.030487660318613052, - -0.009903846308588982, - -0.005320083349943161, - 0.008132696151733398, - 0.03335333988070488, - -0.02465016208589077, - -0.002893873257562518, - 0.007058065850287676, - 0.013877324759960175, - -0.0029369911644607782, - 0.013638517819344997, - 0.012484285980463028, - 0.021850816905498505, - -0.006517434027045965, - 0.013021600432693958, - 0.01781763695180416, - 0.008199031464755535, - -0.03454737365245819, - -0.01240468304604292, - 0.00742290960624814, - 0.012192410416901112, - 0.0005103664589114487, - 0.012298546731472015, - -0.004600346554070711, - 0.003983429167419672, - 0.004328371956944466, - 0.003068003337830305, - 0.008683278225362301, - -0.02277950942516327, - 0.016238858923316002, - 0.025260446593165398, - -0.006175807677209377, - 0.013028234243392944, - 0.0048623704351484776, - -0.036219023168087006, - -0.020961925387382507, - 0.018905533477663994, - -0.004689898807555437, - -0.038076408207416534, - -0.01763189770281315, - 0.008258732967078686, - -0.00323052448220551, - 0.02052411250770092, - -0.009691573679447174, - -0.0008325068047270179, - -0.031628627330064774, - 0.01723388582468033, - -0.015071358531713486, - -0.03916430473327637, - -0.009014954790472984, - 0.017724767327308655, - 0.01207300741225481, - 0.013757921755313873, - -0.010361558757722378, - 0.010414627380669117, - 0.01365178544074297, - 0.0053399838507175446, - 0.0012993408599868417, - -0.00803319364786148, - -0.0030812702607363462, - -0.02430521883070469, - 0.0027910538483411074, - -0.004484259989112616, - -0.011177482083439827, - -0.02494203671813011, - -0.02177121490240097, - -0.019078005105257034, - -0.007456076797097921, - 0.024331752210855484, - 0.010109485127031803, - 0.1154763251543045, - 0.03138981759548187, - -0.005041475407779217, - 0.0012645148672163486, - -0.01023552194237709, - 0.006142640020698309, - 0.013353276997804642, - 0.021306868642568588, - -0.005121077876538038, - -0.03741305693984032, - -0.009479301050305367, - -0.008232198655605316, - 0.006172490771859884, - -0.03566180542111397, - -0.01300833374261856, - 0.016013318672776222, - -0.028126126155257225, - 0.012597055174410343, - 0.0040563978254795074, - 0.01588064804673195, - 0.010295223444700241, - 0.0013955269241705537, - 0.017459426075220108, - 0.035714875906705856, - -0.027887320145964622, - -0.01464681327342987, - 0.02583092823624611, - -0.01091214083135128, - 0.003396362531930208, - -0.014235534705221653, - -0.02114766277372837, - -0.007701517082750797, - -0.04945952817797661, - -0.00031011708779260516, - 0.03608635067939758, - -0.019874026998877525, - -0.01633172668516636, - -0.011356587521731853, - 0.02674635499715805, - 0.0041890679858624935, - 0.010786104016005993, - 0.011827566660940647, - -0.018467720597982407, - -0.019210675731301308, - -0.023190787062048912, - -0.0003254571056459099, - -0.0307530015707016, - -0.002490886952728033, - -0.017990106716752052 - ], - "sparse": "SparseEmbedding(values=array([1.58113419, 1.58113419, 1.58113419, 1.58113419, 1.58113419,\n 1.58113419, 1.58113419, 1.58113419, 1.58113419, 1.58113419,\n 1.58113419, 1.58113419, 1.58113419, 1.58113419, 1.58113419,\n 1.58113419, 1.58113419, 1.58113419, 1.58113419, 1.58113419,\n 1.58113419, 1.58113419, 1.58113419, 1.58113419, 1.58113419,\n 1.58113419]), indices=array([ 7751124, 338063690, 1170226268, 47951928, 1692360901,\n 1961614270, 1775354856, 856081220, 1780580861, 840747077,\n 2124672130, 408270109, 496086325, 1095274335, 649860119,\n 860787312, 164058840, 1187567306, 502919461, 1610378824,\n 2051679129, 537812508, 1316803677, 1638510030, 1952505410,\n 2046665588]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 2, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 27 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000003.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000003.json deleted file mode 100644 index ef434d8a74270c9ae23cf2f5e38a6280116d1823..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000003.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000003", - "content": "Matrikelnummer Matrikelnummer 1002127", - "embedding": { - "dense": [ - -0.006193830631673336, - -0.010807368904352188, - -0.002814487088471651, - -0.025114890187978745, - -0.009514402598142624, - -0.00511309364810586, - -0.016638778150081635, - -0.0016439608298242092, - -0.023338694125413895, - -0.014758099801838398, - 0.004855153616517782, - 0.017879502847790718, - 0.0018610877450555563, - 0.0018594552529975772, - -0.010089054703712463, - 0.003155686426907778, - 0.007894930429756641, - -0.005364503711462021, - 0.009455631487071514, - -0.0007277016411535442, - -0.009449101984500885, - 0.018023164942860603, - -0.004793117288500071, - 0.009018112905323505, - -0.014431593008339405, - -0.006213421002030373, - 0.011414671316742897, - -0.01825825124979019, - 0.01520214881747961, - -0.017513815313577652, - 0.005579998251050711, - -0.023900285363197327, - -0.032729022204875946, - -0.031814806163311005, - -0.004228260833770037, - -0.004378453828394413, - 0.0029483549296855927, - -0.01342595275491476, - 0.012701108120381832, - 0.013321470469236374, - 0.019028805196285248, - 0.01661265641450882, - 0.007725146599113941, - -0.0050314669497311115, - -0.01695222407579422, - 0.0136610371991992, - 0.0016096776816993952, - 0.028131810948252678, - -0.016795501112937927, - 0.047513242810964584, - 0.0119697330519557, - 0.025245491415262222, - 0.026538457721471786, - -0.005282877013087273, - -0.010559224523603916, - 0.0014162224251776934, - -0.004290297161787748, - -0.00327159627340734, - -0.02881094440817833, - -0.013870001770555973, - 0.0014358129119500518, - -0.02124905027449131, - -0.019890783354640007, - 0.01031107921153307, - -0.027295954525470734, - -0.012452962808310986, - -0.033982809633016586, - 0.0024324744008481503, - -0.017605237662792206, - 0.004430694971233606, - 0.019459795206785202, - 0.014875642023980618, - 0.02708698995411396, - -0.016965284943580627, - 0.010879200883209705, - -0.012322359718382359, - 0.01740933395922184, - 0.019603457301855087, - 0.00648442143574357, - -0.009808259084820747, - 0.007862279191613197, - -0.024135369807481766, - -0.015554775483906269, - -0.010911851190030575, - 0.03638589754700661, - 0.016913043335080147, - 0.0200475063174963, - 0.018976565450429916, - -0.0003501783648971468, - 0.003663404379040003, - 0.012577035464346409, - 0.04066966474056244, - 0.03280738741159439, - 0.003273228881880641, - -0.0082475570961833, - 0.00575631158426404, - -0.005452660843729973, - -0.00020916831272188574, - 0.017213428393006325, - -0.03293798863887787, - -0.005204515531659126, - -0.0050477925688028336, - -0.005002081394195557, - -0.013726338744163513, - -0.04061742499470711, - -0.03001248836517334, - -0.012753348797559738, - -0.00555387744680047, - 0.02646009624004364, - -0.004734346177428961, - -0.017148127779364586, - 0.019316131249070168, - 2.867136208806187e-05, - -0.03184092417359352, - 0.020778881385922432, - -0.001370511599816382, - -0.003307512030005455, - -0.009155245497822762, - -0.012622745707631111, - -0.016129426658153534, - 0.04354292154312134, - 0.01986466348171234, - 0.02204572781920433, - -0.013099445961415768, - 0.005338383372873068, - 0.017213428393006325, - -0.005162069573998451, - -0.02234611287713051, - -0.010853080078959465, - 0.010931441560387611, - 0.016991404816508293, - 0.001370511599816382, - 0.010676766745746136, - 0.01953815668821335, - 0.011382021009922028, - 0.022816283628344536, - -0.01569843851029873, - 0.019720999523997307, - -0.03029981441795826, - -0.037091150879859924, - 0.009951922111213207, - 0.027792243286967278, - 0.007783917710185051, - -0.0037058501038700342, - 0.007202736102044582, - -0.011819539591670036, - 0.008665486238896847, - -0.007320278324186802, - 0.009971512481570244, - -0.002883053384721279, - -0.002280648797750473, - -0.0263947956264019, - 0.006863169372081757, - 0.009756017476320267, - 0.007953701540827751, - -0.0034283194690942764, - 0.021235991269350052, - 0.02514101006090641, - -0.01678244024515152, - -0.030796105042099953, - -0.004381719045341015, - 0.004698430188000202, - 0.004176019690930843, - -0.007157025393098593, - 0.015541715547442436, - 0.025454455986618996, - -0.023456236347556114, - -0.01317127700895071, - 0.0027704087551683187, - 0.01581598073244095, - 0.02205878682434559, - 0.03194540739059448, - -0.015345810912549496, - -0.0033956689294427633, - -0.004956370685249567, - 0.01774889975786209, - -0.013184337876737118, - 0.005070647690445185, - -0.027165351435542107, - -0.018911262974143028, - -0.030508778989315033, - 0.014784219674766064, - 0.00034385229810141027, - 0.03972932696342468, - -0.01217216718941927, - 0.028601979836821556, - 0.005462456028908491, - 0.011532213538885117, - 0.004881273955106735, - -0.009396860376000404, - 0.03225885331630707, - 0.020125867798924446, - 0.007006831932812929, - -0.009912741370499134, - -0.6603270173072815, - 0.0001247867476195097, - 0.027635520324110985, - -0.0010138030629605055, - 0.012387661263346672, - 0.020413193851709366, - 0.030090849846601486, - 0.0005350627470761538, - -0.007209266070276499, - -0.00821490678936243, - -0.015567835420370102, - 0.010879200883209705, - -0.011760768480598927, - -0.017448514699935913, - -0.03225885331630707, - -0.02943783812224865, - -0.005485311150550842, - -0.018584756180644035, - 0.028889305889606476, - -0.004055212251842022, - -0.020125867798924446, - 0.00827367790043354, - 0.007085193879902363, - 0.01769665814936161, - 0.007666375488042831, - -0.012864360585808754, - 0.042289137840270996, - 0.006017517298460007, - -0.0230121873319149, - 0.006066493224352598, - -0.006327698472887278, - 0.007555363234132528, - 0.007352929096668959, - -0.0017892563482746482, - 0.04461386427283287, - 0.014718919061124325, - -0.035027630627155304, - 0.04539748281240463, - 0.018010105937719345, - 0.004019296728074551, - -0.027243712916970253, - -0.021288231015205383, - 0.0002612053067423403, - -0.0013582675019279122, - 0.019512034952640533, - 0.0010529839200899005, - 0.031762562692165375, - -0.023181971162557602, - -0.012048094533383846, - 0.00704601313918829, - -0.0063832043670117855, - -0.00798635184764862, - -0.0059358906000852585, - 0.00576937198638916, - -0.005844468716531992, - -0.014131207019090652, - 0.013896121643483639, - 0.0016913042636588216, - -0.002670824294909835, - -0.01119264680892229, - -0.009266258217394352, - -0.001283171004615724, - -0.008097364567220211, - -0.010448211804032326, - -0.012910071760416031, - -0.00576937198638916, - -0.029934126883745193, - 0.03178868442773819, - 0.010115175507962704, - 0.016403693705797195, - 0.025676481425762177, - 0.01913328841328621, - 0.005211045499891043, - 0.01598576456308365, - 0.009037703275680542, - -0.003060999559238553, - 0.016129426658153534, - -0.012289709411561489, - -0.0008081038831733167, - 0.009645005688071251, - -0.007849219255149364, - -0.017095886170864105, - -0.02222857065498829, - 0.025336913764476776, - 0.005181659944355488, - -0.03659486398100853, - -0.0015117257134988904, - -0.008260617963969707, - 0.027348194271326065, - 0.00882220920175314, - 0.008691606111824512, - -0.015829041600227356, - 0.029568439349532127, - -0.002171269152313471, - 0.0029352945275604725, - 0.025924626737833023, - -0.023900285363197327, - 0.0003446685441303998, - 0.002984270453453064, - -0.024083128198981285, - -0.012648866511881351, - -0.006895819678902626, - 0.014483833685517311, - 0.0010840019676834345, - -0.008939751423895359, - -0.006249336991459131, - -0.020478496327996254, - 0.006402794737368822, - 0.026773544028401375, - -0.012106865644454956, - -0.008293268270790577, - 0.0036111632362008095, - -0.009050763212144375, - -0.004009501542896032, - 0.015045424923300743, - -0.029803523793816566, - 0.030613260343670845, - 0.01110775489360094, - -0.0003130382392555475, - -0.014797280542552471, - 0.011937081813812256, - 0.009194426238536835, - 0.014379351399838924, - 0.005034732166677713, - 0.008828738704323769, - -0.007659845519810915, - -0.006559518165886402, - -0.012276649475097656, - -0.012877421453595161, - 0.003242210717871785, - 0.01543723326176405, - -0.009240137413144112, - 0.03487090766429901, - -0.014666677452623844, - 0.030221452936530113, - 0.0065236021764576435, - -0.005135949235409498, - -0.017435453832149506, - 0.02222857065498829, - 0.014078965410590172, - -0.02370438165962696, - -0.012459492310881615, - 0.0021141304168850183, - -0.02003444731235504, - -0.017056705430150032, - -0.016299210488796234, - -0.005135949235409498, - 0.022489776834845543, - 0.005713866092264652, - -0.003967055585235357, - 0.0030005958396941423, - 0.01661265641450882, - -0.002920601749792695, - 0.0006370960618369281, - -0.020413193851709366, - -0.01969487965106964, - 0.0017304851207882166, - -0.02302524633705616, - -0.009377270005643368, - -0.004734346177428961, - 0.029072150588035583, - 0.011075104586780071, - -0.023691320791840553, - 0.009122595191001892, - 0.006784807424992323, - 0.013354120776057243, - -0.00999110285192728, - 0.03252005949616432, - -0.004672309849411249, - -0.025924626737833023, - -0.010918381623923779, - 0.012910071760416031, - 0.0101086450740695, - 0.00281285447999835, - -0.0009305438725277781, - -0.010951031930744648, - -0.02789672650396824, - 0.023573778569698334, - -0.009155245497822762, - -0.01837579347193241, - 0.01133630983531475, - -0.004917189944535494, - -0.009455631487071514, - 0.005390624515712261, - 0.013791639357805252, - 0.020974785089492798, - 0.00045629299711436033, - 0.0019818951841443777, - -0.017030585557222366, - -0.0031491564586758614, - -0.023390933871269226, - 0.00045710927224718034, - -0.00798635184764862, - 0.019172469154000282, - 0.01514990720897913, - 0.007026422768831253, - 0.0005044527351856232, - -0.014797280542552471, - -0.0011354268062859774, - 0.026133589446544647, - 0.029594561085104942, - 0.0067064459435641766, - 0.028157930821180344, - 0.00016549804422538728, - 0.02102702669799328, - -0.03351264074444771, - 0.007738207001239061, - 0.005700805690139532, - 0.029803523793816566, - 0.009207487106323242, - 0.0015215208986774087, - -0.006719506345689297, - -0.03168420121073723, - 0.0002628378279041499, - 0.010898791253566742, - -0.00019539380446076393, - -0.024762261658906937, - 0.01045474223792553, - 0.017082827165722847, - 0.01053963415324688, - 0.0035360667388886213, - -0.017722779884934425, - 0.06232358515262604, - -0.010853080078959465, - 0.0017615032847970724, - -0.013582675717771053, - 0.017095886170864105, - 0.0065562529489398, - 0.0034805606119334698, - 0.004140104167163372, - -0.024357393383979797, - -0.004042151849716902, - -0.006533397361636162, - 0.017905622720718384, - 0.015476414002478123, - 0.013674097135663033, - 0.0214841365814209, - -0.017683599144220352, - 0.029620680958032608, - 0.01363491639494896, - 0.008143074810504913, - 0.0263947956264019, - 0.02737431600689888, - -0.00947522185742855, - 0.030561020597815514, - -0.013791639357805252, - -0.012681516818702221, - 0.008711196482181549, - 0.01764441840350628, - 0.01957733742892742, - -0.0052175759337842464, - -0.001532948575913906, - -0.021392714232206345, - 0.00011682815238600597, - 0.023848043754696846, - 0.0003173236327711493, - 0.018297431990504265, - 0.018245190382003784, - 0.0003991543489973992, - 0.02875870279967785, - 0.0013394934358075261, - 0.020021386444568634, - 0.012368070892989635, - 0.0013109240680932999, - 0.018859023228287697, - 0.00031956835300661623, - 0.00681745819747448, - -0.025976866483688354, - 0.009684186428785324, - -0.03142299875617027, - 0.006948060821741819, - 0.003996441140770912, - 0.009318498894572258, - -0.0031932347919791937, - 0.0019051661947742105, - -0.033591002225875854, - 0.014287929981946945, - -0.006928470451384783, - 0.04168836399912834, - -0.001709262141957879, - -0.01671713963150978, - -0.02358683943748474, - -0.0012056257110089064, - 0.025101829320192337, - 0.007999412715435028, - -0.0011403243988752365, - 0.010696357116103172, - 0.009638475254178047, - -0.029620680958032608, - -0.014366291463375092, - -0.0018006840255111456, - 0.010043343529105186, - -0.0007077031186781824, - 0.0015174394939094782, - -0.008743847720324993, - -0.021575557067990303, - 0.0028014269191771746, - -0.016651837155222893, - -0.016064126044511795, - 0.0005517961690202355, - 0.015071545727550983, - -0.003745031077414751, - 0.0004509872815106064, - -0.020883362740278244, - 0.041897330433130264, - -0.02726983278989792, - -0.009507873095571995, - -0.00674562668427825, - -0.010624525137245655, - -0.0134912533685565, - 0.020582977682352066, - 0.00798635184764862, - -0.021732280030846596, - 0.016677958890795708, - -0.03568064421415329, - 0.015228268690407276, - 0.02152331732213497, - -0.013791639357805252, - 0.029254993423819542, - -0.0010399236343801022, - 0.004107453394681215, - -0.00654319254681468, - -0.009057293646037579, - 0.029359474778175354, - 0.06373409181833267, - 0.004900864325463772, - -0.007209266070276499, - 0.020073628053069115, - -0.014523014426231384, - -0.012570505030453205, - -0.01313862670212984, - -0.020948665216565132, - 0.004179284907877445, - -0.010715947486460209, - -0.010722477920353413, - 0.0029467223212122917, - 0.025271613150835037, - 0.0014513219939544797, - 0.010983683168888092, - -0.0023377875331789255, - 0.001035026041790843, - 0.0070329527370631695, - 0.009886620566248894, - 0.0025728722102940083, - 0.01179341971874237, - -0.007816568948328495, - 0.0008840166847221553, - 0.011022863909602165, - 0.014562195166945457, - -0.007535772863775492, - 0.01740933395922184, - 0.026368675753474236, - 0.0009966614888980985, - -0.022646499797701836, - 0.00910953525453806, - 0.00996498204767704, - 0.023691320791840553, - 0.017487695440649986, - 0.0052436962723731995, - -0.0010995110496878624, - -0.0018806781154125929, - -0.005739986430853605, - -7.861667108954862e-05, - -0.0006485237972810864, - 0.03821433708071709, - 0.0011933817295357585, - 0.008319389075040817, - -0.0020847448613494635, - 0.01752687618136406, - -0.004917189944535494, - -0.005289407446980476, - 0.00491065951064229, - 0.03675158694386482, - -0.03460970148444176, - 0.011290598660707474, - 0.010840020142495632, - -0.0006452586967498064, - -0.012981903739273548, - -0.0198777224868536, - 0.00967765599489212, - 0.006317903287708759, - 0.011414671316742897, - -0.0014366290997713804, - -0.007672905456274748, - -0.022999126464128494, - -0.02588544599711895, - 0.011865250766277313, - 0.01022618729621172, - 0.003660139162093401, - -0.01491482276469469, - -0.029411716386675835, - -0.025898505002260208, - -0.016364511102437973, - 0.007712086662650108, - 0.020831122994422913, - -0.038449421525001526, - -0.028027327731251717, - 0.010467802174389362, - -0.009429511614143848, - 0.019172469154000282, - 0.02444881573319435, - -0.011257948353886604, - -0.032781265676021576, - 0.03547167778015137, - -0.020073628053069115, - -0.01520214881747961, - -0.0007779020234011114, - -0.010298019275069237, - -0.01896350458264351, - 0.04119207710027695, - 0.0134912533685565, - -0.01908104680478573, - 0.0018039491260424256, - 0.01654735580086708, - -0.002004750771448016, - -0.012962313368916512, - 0.0032487409189343452, - -0.005785697605460882, - 0.003418524283915758, - 0.00982131902128458, - 0.012818650342524052, - 0.017030585557222366, - -0.005282877013087273, - 0.009148715995252132, - 0.006089348345994949, - -0.04244586080312729, - -0.014078965410590172, - -0.004505791235715151, - 0.014444652944803238, - 0.024096189066767693, - -0.014614436775445938, - 0.012655396945774555, - -0.02674742229282856, - 0.020765820518136024, - 0.018349671736359596, - 0.0013811229728162289, - 0.010010693222284317, - 0.00022733023797627538, - -0.0134912533685565, - 0.017030585557222366, - 0.002778571331873536, - 0.012531324289739132, - 0.0029238667339086533, - -0.03591572865843773, - 0.013791639357805252, - -0.009331559762358665, - 0.019773241132497787, - 0.01147997286170721, - -0.008384689688682556, - 0.012302769348025322, - -0.0035034159664064646, - -0.01998220570385456, - -0.004603743553161621, - 0.005544082261621952, - -0.006810928229242563, - 0.019107168540358543, - -0.02181064337491989, - -0.040460702031850815, - -0.0456848070025444, - -0.007137435022741556, - -0.03144911676645279, - 0.009442571550607681, - 0.0003983380738645792, - 0.001355002517811954, - -0.024775322526693344, - -0.010487392544746399, - -0.009612355381250381, - -0.0040748026221990585, - -0.013223518617451191, - -0.01780114136636257, - -0.010709417052567005, - -0.032389458268880844, - -0.0024765527341514826, - 0.05056934431195259, - 0.003989911172538996, - 0.03173644468188286, - 0.0032552711199969053, - -0.01541111245751381, - -0.007359459530562162, - -0.019041866064071655, - -0.02852361835539341, - -0.0226726196706295, - 0.028314653784036636, - 0.01752687618136406, - 0.03641201928257942, - -0.0023981912527233362, - 0.02542833611369133, - -0.010813899338245392, - -0.011976262554526329, - -0.005550612695515156, - -0.006334228441119194, - 0.009436041116714478, - -0.03262454271316528, - 0.020217290148139, - 0.026029108092188835, - 0.009018112905323505, - 0.021235991269350052, - 0.005237166304141283, - -0.0010733904782682657, - 0.019433673471212387, - -0.006726036313921213, - -0.004698430188000202, - 0.009266258217394352, - -0.011786889284849167, - -0.007888399995863438, - -0.005890179425477982, - 0.0009982939809560776, - -0.005730191245675087, - -0.028601979836821556, - -0.012178696691989899, - 0.010820429772138596, - 0.0009305438725277781, - 0.011427732184529305, - 0.014418532140552998, - -0.009507873095571995, - -0.03923303633928299, - 0.02531079389154911, - -0.014327110722661018, - -0.00864589586853981, - -0.018179887905716896, - 0.007372519467025995, - -0.00342178950086236, - -0.00829979870468378, - 0.01592046208679676, - -0.010474332608282566, - 0.008691606111824512, - 0.008123484440147877, - -0.0036503439769148827, - -0.02617277018725872, - 0.01505848579108715, - 0.001603147480636835, - -0.022777102887630463, - -0.0014031622558832169, - -0.014483833685517311, - -0.007574953604489565, - -0.01001722365617752, - -0.019916903227567673, - -0.018480274826288223, - 0.01308638509362936, - 0.012237467803061008, - -0.02595074661076069, - 0.011101225391030312, - -0.01592046208679676, - -0.0004775159468408674, - -0.011519153602421284, - -0.013647977262735367, - 0.04140103980898857, - 0.005351443774998188, - 0.028654221445322037, - 0.02170616015791893, - -0.024945106357336044, - -0.02485368400812149, - 0.007039482705295086, - -0.013674097135663033, - -0.02084418199956417, - 0.02439657412469387, - 0.020517677068710327, - -0.01394836325198412, - -0.028497498482465744, - 0.025637300685048103, - 0.0230121873319149, - -0.021510256454348564, - -0.02629031427204609, - -0.004675575066357851, - 0.027583278715610504, - 0.0006730117602273822, - -0.006445240695029497, - 0.022319993004202843, - -0.04445714130997658, - 0.007973291911184788, - -0.01581598073244095, - -0.0019410818349570036, - -0.039650965481996536, - 0.00506738293915987, - 0.0025516492314636707, - 0.003820127574726939, - -0.03040429763495922, - 0.02187594398856163, - 0.01906798593699932, - -0.0205568578094244, - 0.007738207001239061, - -0.02268568053841591, - -0.00575631158426404, - 0.005517961923032999, - -0.010604934766888618, - 0.01923776976764202, - -0.003663404379040003, - -0.005282877013087273, - -0.014614436775445938, - 0.0069872415624558926, - -0.020138928666710854, - -0.007731677033007145, - -0.010937971994280815, - 0.02251589670777321, - -0.007914520800113678, - -0.032729022204875946, - 0.023612959310412407, - 0.023795802146196365, - 0.015215208753943443, - 0.010676766745746136, - 0.007294157985597849, - 0.005730191245675087, - -0.023691320791840553, - -0.02657763846218586, - 0.0008505497826263309, - 0.0020847448613494635, - 0.012864360585808754, - -0.012198287062346935, - -0.009129125624895096, - -0.053808290511369705, - -0.00518492516130209, - -0.02886318601667881, - -0.00105216761585325, - -0.03356488049030304, - -0.018859023228287697, - -0.009520933032035828, - 0.0025451190304011106, - 0.024265972897410393, - -0.015398052521049976, - 0.0028601980302482843, - 0.004809442441910505, - 0.007078663446009159, - -0.018924323841929436, - 0.018140707165002823, - 0.017030585557222366, - -0.007607604376971722, - -0.011995852924883366, - 0.012557445093989372, - -0.000532205798663199, - -0.02175840176641941, - 0.014496894553303719, - -0.009899680502712727, - 0.0012064420152455568, - -0.0012292974861338735, - 0.002074949676170945, - -0.00684357900172472, - -0.014784219674766064, - -0.027060868218541145, - 0.014470773749053478, - 0.0007358642760664225, - 0.00476699648424983, - -0.0004946575500071049, - -0.029307235032320023, - 0.029019908979535103, - -0.0102784289047122, - 0.00850223284214735, - -0.03317307308316231, - -0.01002375315874815, - 0.02583320438861847, - -0.01008252426981926, - -0.007163555361330509, - 0.005093503277748823, - -0.042419739067554474, - -0.026590699329972267, - 0.021614737808704376, - 0.03228497505187988, - -0.02561117894947529, - 0.0032911868765950203, - -0.012106865644454956, - -0.006552987731993198, - 0.001495400327257812, - 0.01918553002178669, - -0.011584455147385597, - -0.003839717945083976, - 0.019838541746139526, - 0.0064256503246724606, - 0.01529357023537159, - 0.030561020597815514, - -0.017252609133720398, - -0.029228873550891876, - -0.033068589866161346, - -0.025585059076547623, - 0.004025826696306467, - 0.0019165938720107079, - 0.0003009983047377318, - 0.022489776834845543, - -0.00669991597533226, - 0.003950729966163635, - -0.01002375315874815, - 0.024487996473908424, - -0.03348651900887489, - -0.03160583972930908, - -0.010232717730104923, - 0.009292378090322018, - 0.016743259504437447, - 0.020060567185282707, - -0.009612355381250381, - 0.006363613996654749, - -0.014235688373446465, - -0.0006619921769015491, - -0.028549740090966225, - -0.020687459036707878, - -0.0024536973796784878, - -0.027766123414039612, - 0.018859023228287697, - -0.016651837155222893, - -0.02891542576253414, - -0.015097666531801224, - 0.022659558802843094, - 0.01020006649196148, - 0.0016349819488823414, - 0.02713922969996929, - -0.00592609541490674, - 0.00603057723492384, - 0.0087960883975029, - -0.007183145731687546, - -0.007764327339828014, - -0.011701997369527817, - 0.031579721719026566, - -0.010911851190030575, - -0.0009207486873492599, - -0.029516199603676796, - -0.019681818783283234, - 0.026303373277187347, - -0.016586536541581154, - 0.02152331732213497, - 0.001125631621107459, - 0.016769379377365112, - -0.021431894972920418, - 0.0008187153725884855, - -0.01033720001578331, - 0.022437535226345062, - -0.003238945733755827, - 0.012701108120381832, - -0.02285546436905861, - -0.018297431990504265, - 0.016455933451652527, - 0.005704070907086134, - -0.006530132610350847, - 0.0087960883975029, - -0.025284672155976295, - -0.025101829320192337, - 0.012165636755526066, - -0.007881869561970234, - 0.00433927308768034, - -0.024370454251766205, - -0.02623807266354561, - -0.010702887549996376, - -0.026721302419900894, - -0.004930249880999327, - 0.0006068942020647228, - -0.014692798256874084, - 0.0015558040468022227, - -0.014523014426231384, - -0.034113410860300064, - -0.005011876579374075, - 0.0018937384011223912, - 0.0017468103906139731, - -0.009540523402392864, - -0.0061448547057807446, - 0.0031409936491400003, - -0.021405775099992752, - -0.004162959288805723, - 0.019485915079712868, - -0.007026422768831253, - 0.034688062965869904, - -0.009403390809893608, - -0.0032160901464521885, - 0.014614436775445938, - 0.0020178109407424927, - 0.2229648381471634, - 0.006161179859191179, - 0.003918079659342766, - 0.02205878682434559, - 0.009658065624535084, - 0.00011907288717338815, - 0.018989624455571175, - -0.01563313789665699, - -0.006823988631367683, - 0.007281097583472729, - 0.00691541051492095, - 0.005129419267177582, - -0.0007823915220797062, - -0.003957260400056839, - 0.01185219082981348, - 0.004381719045341015, - -0.036803826689720154, - -0.031814806163311005, - 0.008848329074680805, - 0.0031818069983273745, - -0.009756017476320267, - 0.009971512481570244, - -0.01059840526431799, - -0.01998220570385456, - 0.017030585557222366, - -0.005406949669122696, - -0.008077774196863174, - 0.0358634889125824, - 0.01558089628815651, - 0.017997045069932938, - -0.0035164763685315847, - 0.01969487965106964, - -0.002208817284554243, - -0.0016570211155340075, - -0.0265645794570446, - -0.01202850416302681, - 0.01569843851029873, - 0.0170044656842947, - 0.034165654331445694, - 0.017396273091435432, - 0.0019263890571892262, - 0.0038593083154410124, - 0.00294998730532825, - -0.021510256454348564, - 0.001355002517811954, - 0.0016382469329982996, - -0.0009738060180097818, - -0.024723080918192863, - -0.0011288966052234173, - 0.013883061707019806, - -0.013817760162055492, - 0.014013663865625858, - 0.0026855170726776123, - 0.009488282725214958, - 0.020465435460209846, - 0.013223518617451191, - 0.025506697595119476, - -0.0007370887324213982, - -0.022999126464128494, - -0.004273971542716026, - -0.003067529760301113, - 0.003745031077414751, - 0.0072419168427586555, - 0.031475238502025604, - -0.012877421453595161, - 0.018937384709715843, - -0.022868523374199867, - -0.0011901166290044785, - -0.027818365022540092, - -0.02412230893969536, - -0.007431290578097105, - 0.0012684782268479466, - -0.01014129538089037, - 0.012897011823952198, - -0.018819842487573624, - -0.022999126464128494, - 0.011055514216423035, - 0.020125867798924446, - 0.001885575708001852, - 0.021562498062849045, - -0.009187896735966206, - -0.004100923426449299, - -0.01503236498683691, - -0.007000301964581013, - -0.013700217939913273, - -0.02713922969996929, - 0.0031050778925418854, - 0.00988009013235569, - -0.007143964990973473, - -0.010800839401781559, - 0.0027132700197398663, - -0.005700805690139532, - 0.015998825430870056, - -0.0114212017506361, - 0.021732280030846596, - 0.017840322107076645, - 0.008267147466540337, - 0.015528654679656029, - -0.013439012691378593, - -0.0005587344639934599, - -0.045737046748399734, - 0.04552808403968811, - 0.014392412267625332, - -0.0048225028440356255, - -0.012185227125883102, - 0.004701695404946804, - 0.030665501952171326, - -0.0019378168508410454, - 0.001301945187151432, - -0.005462456028908491, - -0.008149605244398117, - -0.0333297960460186, - -0.0008734051953069866, - -0.00426744157448411, - 0.0070329527370631695, - 0.014640556648373604, - 0.016116367653012276, - -0.013647977262735367, - 0.002954884897917509, - -0.0005546531174331903, - 0.007836159318685532, - -0.022711800411343575, - 0.006321168038994074, - 0.020543796941637993, - 0.008756907656788826, - -0.024030888453125954, - -0.019890783354640007, - 0.005909769795835018, - 0.013974483124911785, - -0.026956386864185333, - 0.007921050302684307, - 0.01701752468943596, - 0.025702601298689842, - -0.02073970064520836, - -0.0365426205098629, - -0.003918079659342766, - 0.016064126044511795, - -0.004375188611447811, - -0.010435151867568493, - -0.0028406076598912477, - 0.027478797361254692, - -0.030456537380814552, - 0.0010766555787995458, - -0.01832355186343193, - -0.0329902283847332, - -0.003379343543201685, - 0.012152576819062233, - 0.005214310716837645, - -0.008077774196863174, - -0.03677770495414734, - 0.004678839817643166, - -0.04260258376598358, - 0.003813597373664379, - -0.00668685557320714, - 0.02954231947660446, - 0.0005987315089441836, - -0.04336008056998253, - -0.029594561085104942, - 0.00047057768097147346, - -0.002132088178768754, - -0.006435445509850979, - 0.005772637203335762, - 0.01764441840350628, - -0.030325936153531075, - -0.016299210488796234, - 0.016299210488796234, - -0.16727587580680847, - 0.01491482276469469, - 0.02434433437883854, - -0.013961423188447952, - -0.0029712102841585875, - 0.005521227139979601, - 0.008221437223255634, - -0.016116367653012276, - -0.003820127574726939, - 0.003379343543201685, - 0.014405472204089165, - -0.014444652944803238, - -0.02532385289669037, - 0.003165481612086296, - 0.0014447917928919196, - -0.006520337425172329, - -0.029751284047961235, - 0.012159106321632862, - 0.01764441840350628, - 0.018872082233428955, - 0.03338203579187393, - -0.014235688373446465, - 0.008580594323575497, - -0.010565754026174545, - 0.00413683895021677, - -0.006334228441119194, - -0.011519153602421284, - 0.04260258376598358, - -0.002602257765829563, - 0.0069350008852779865, - -0.004975961055606604, - -0.0008570798672735691, - 0.012792529538273811, - -0.018715359270572662, - 0.009031172841787338, - -0.012361540459096432, - -0.011989323422312737, - -0.0032226203475147486, - 0.00677174748852849, - 0.005628974176943302, - 0.02147107571363449, - 0.021392714232206345, - 0.003777681617066264, - -0.010180476121604443, - -0.007490062154829502, - 0.013158217072486877, - 0.036229174584150314, - 0.000346505141351372, - 0.019290011376142502, - -0.027295954525470734, - 0.018911262974143028, - -0.03818821534514427, - 0.017226489260792732, - -0.007300687953829765, - 0.02314279042184353, - 0.012674987316131592, - 0.009364210069179535, - -0.022372234612703323, - 0.014287929981946945, - -0.005478781182318926, - -0.017278730869293213, - 0.011447322554886341, - -0.00024202303029596806, - -0.0020063831470906734, - -0.0029826380778104067, - -0.0035360667388886213, - -0.005501636769622564, - 0.004081332590430975, - -0.011440792120993137, - -0.00045792554738000035, - -0.009377270005643368, - -0.05064770579338074, - 0.014314050786197186, - -0.010291488841176033, - 0.009638475254178047, - -0.002776938723400235, - -0.011042454279959202, - 0.027844484895467758, - -0.006024047266691923, - -0.0065954336896538734, - -0.002352480310946703, - 0.05631586164236069, - -0.016129426658153534, - -0.004802912473678589, - -0.012132986448705196, - 0.009769078344106674, - 0.007633724715560675, - 0.010298019275069237, - 0.01786644198000431, - -0.0030805899295955896, - 0.008848329074680805, - -0.04411757364869118, - -0.005978336092084646, - -0.03223273530602455, - 0.03659486398100853, - -0.00844999123364687, - -0.014562195166945457, - 0.003549126908183098, - 0.003767886431887746, - -0.0066117593087255955, - 0.00018049693608190864, - -0.012537854723632336, - -0.012119925580918789, - 0.0006399530102498829, - 0.02016504853963852, - 0.023273391649127007, - -0.004019296728074551, - 0.025232432410120964, - 0.022777102887630463, - 0.020635219290852547, - -0.023325633257627487, - 0.0036078982520848513, - -0.012642336077988148, - 0.002989168046042323, - -0.0022137148771435022, - 0.01637757197022438, - -0.04100923240184784, - -0.03865838423371315, - -0.00196067220531404, - 0.01564619690179825, - 0.02933335490524769, - 0.029124390333890915, - -0.0011525683803483844, - 0.021105388179421425, - 0.014274870045483112, - 0.00413683895021677, - -0.05777861177921295, - -0.007588014006614685, - 0.03040429763495922, - 0.03223273530602455, - -0.022150209173560143, - 0.018989624455571175, - -0.029646800830960274, - 0.019825482740998268, - -0.007157025393098593, - 0.016286149621009827, - -0.012243998236954212, - -0.03440073877573013, - -0.025467516854405403, - 0.0031132407020777464, - 0.034844785928726196, - -0.006432180292904377, - -0.009716836735606194, - -0.024775322526693344, - -0.005207780748605728, - 0.005642034579068422, - -0.0055669378489255905, - 0.01131018903106451, - 0.002350847702473402, - -0.0006815826054662466, - -0.023208091035485268, - -0.004244585987180471, - -0.023325633257627487, - 0.017370153218507767, - 0.01620778813958168, - -0.0026120529510080814, - 0.0019753649830818176, - -0.00455476762726903, - 0.014314050786197186, - -0.005439600441604853, - -0.011434261687099934, - -0.015724558383226395, - -0.03850166127085686, - -0.01969487965106964, - 0.00953399296849966, - -0.009383800439536572, - 0.016743259504437447, - -0.002925499342381954, - 0.021379653364419937, - -0.032781265676021576, - -0.006177505478262901, - -0.009808259084820747, - -0.021288231015205383, - 0.01001722365617752, - 0.0027198002208024263, - -0.018689239397644997, - -0.009527463465929031, - -0.027348194271326065, - -0.027060868218541145, - -0.010781249031424522, - 0.017396273091435432, - -0.014993184246122837, - 0.021549437195062637, - 0.006546457763761282, - 0.002267588395625353, - -0.0017386478139087558, - 0.016351452097296715, - 0.032781265676021576, - -0.013726338744163513, - -0.002393293660134077, - -0.003519741352647543, - 0.014731978997588158, - -0.024840623140335083, - -0.009148715995252132, - 0.023521536961197853, - 0.004228260833770037, - 0.008835269138216972, - 0.02514101006090641, - -0.0177619606256485, - 0.015907403081655502, - -0.017566056922078133, - 0.01500624418258667, - -0.046651266515254974, - 0.006164445076137781, - -0.0015435600653290749, - -0.03609857335686684, - 0.010487392544746399, - -0.019459795206785202, - -0.01942061446607113, - 0.024540238082408905, - 0.0017712984699755907, - 0.022463655099272728, - -0.016521235927939415, - 0.002530426252633333, - 0.0099388612434268, - -0.010696357116103172, - -0.014379351399838924, - 0.032206613570451736, - 0.009853970259428024, - -0.01380470022559166, - -0.013360651209950447, - -0.012381130829453468, - 0.018519455567002296, - -0.013047204352915287, - 0.009318498894572258, - 0.016051065176725388, - -0.03638589754700661, - -0.0019443469354882836, - -0.08572757989168167, - 0.025219371542334557, - 0.015084605664014816, - 0.004685370251536369, - -0.008867919445037842, - -0.010069464333355427, - 0.02302524633705616, - -0.005501636769622564, - 0.006366879213601351, - -0.008789557963609695, - -0.012041564099490643, - 0.007685965858399868, - 0.0031295660883188248, - 0.01688692346215248, - -0.019446734338998795, - -0.02463166043162346, - 0.022293873131275177, - 0.001996587961912155, - 0.01208727527409792, - 0.03144911676645279, - 0.014196507632732391, - -0.01855863630771637, - 0.01486258115619421, - 0.0029679453000426292, - -0.0020439315121620893, - 0.019276950508356094, - -0.018702300265431404, - 0.002989168046042323, - -0.028419137001037598, - 0.02595074661076069, - 0.011486503295600414, - -0.03847553953528404, - -0.0055832634679973125, - 0.03351264074444771, - -0.020530736073851585, - -0.02881094440817833, - 0.0021663715597242117, - 0.012838240712881088, - -0.00784268882125616, - 0.009697246365249157, - -0.01409202627837658, - -0.012080744840204716, - 0.018885143101215363, - -0.015136847272515297, - -0.009227077476680279, - 0.02737431600689888, - 0.00970377679914236, - 0.007672905456274748, - 0.01999526657164097, - 0.003523006569594145, - 0.002422679215669632, - -0.010422090999782085, - -0.0028993787709623575, - -0.018114587292075157, - 0.01740933395922184, - -0.011290598660707474, - -0.008077774196863174, - 0.006053432822227478, - 0.010324139147996902, - -0.026904145255684853, - 0.03379996493458748, - 0.006086083594709635, - 0.01377857942134142, - -0.0069611212238669395, - 0.006921940483152866, - 0.006458301097154617, - 0.018741481006145477, - 0.04113983362913132, - -0.006233011372387409, - -0.028027327731251717, - -0.006020782049745321, - -0.0020129133481532335, - 0.022777102887630463, - 0.021666979417204857, - 0.0015272346790879965, - 0.000799124944023788, - -0.0030789575539529324, - -0.010572284460067749, - -0.00033630183315835893, - 0.0297774039208889, - 0.03560228273272514, - 0.023390933871269226, - -0.008691606111824512, - -0.016821620985865593, - 0.018179887905716896, - 0.012975373305380344, - -0.023325633257627487, - -0.0011778726475313306, - 0.02040013298392296, - 0.0006636247271671891, - -0.009756017476320267, - 0.018924323841929436, - -0.004247851204127073, - -0.04800953343510628, - -0.01564619690179825, - 0.008632835000753403, - 0.027740003541111946, - -0.0016325331525877118, - 0.028941547498106956, - 0.021549437195062637, - 0.009553584270179272, - 0.0022969741839915514, - -0.00976254791021347, - -0.01925083063542843, - -0.03630753606557846, - 0.011610575951635838, - -0.004770261701196432, - -0.018336612731218338, - -0.0006203625816851854, - 0.017657477408647537, - 0.0058477334678173065, - -0.007503122091293335, - -0.026368675753474236, - 0.021444955840706825, - -0.006797867827117443, - 0.0214841365814209, - 0.016364511102437973, - -0.013909182511270046, - -0.03649038076400757, - 0.02542833611369133, - -0.022946884855628014, - 0.023325633257627487, - 0.00816266518086195, - 0.0022545282263308764, - 0.008802618831396103, - -0.002128823194652796, - -0.011865250766277313, - 0.005508166737854481, - -0.004358863458037376, - -0.01168240699917078, - -0.01563313789665699, - 0.008436931297183037, - -0.009220547042787075, - -0.009625415317714214, - -0.009364210069179535, - 0.008665486238896847, - 0.00704601313918829, - 0.032781265676021576, - -0.003214457770809531, - 0.06321167945861816, - 0.016390632838010788, - -0.009514402598142624, - 0.0067064459435641766, - -0.00196067220531404, - 0.0015362136764451861, - 0.010702887549996376, - -0.013608796522021294, - -0.04375188797712326, - -0.014144266955554485, - -0.0026593965012580156, - -0.02578096278011799, - -0.006308108102530241, - 0.0015958010917529464, - -0.005586528219282627, - -0.014692798256874084, - -0.03850166127085686, - 0.027295954525470734, - -0.028262414038181305, - -0.005060852505266666, - 0.017709719017148018, - -0.023403994739055634, - 0.014993184246122837, - 0.009089943952858448, - -0.021627798676490784, - 0.01627309061586857, - 0.02153637632727623, - -0.006791337858885527, - 0.0007705556345172226, - -0.004659249447286129, - -0.00027018424589186907, - -0.029307235032320023, - -0.0052600218914449215, - -0.021000906825065613, - 0.0016162077663466334, - -0.006791337858885527, - 0.0034740304108709097, - 0.013752458617091179, - 0.03957260400056839, - 0.015424173325300217, - -0.024252912029623985, - 0.03672546520829201, - -0.024305153638124466, - -0.003696054918691516, - -0.009253197349607944, - -0.008972401730716228, - -0.016299210488796234, - -0.0036078982520848513, - -0.020765820518136024 - ], - "sparse": "SparseEmbedding(values=array([1.90431107, 1.67868852]), indices=array([1272139279, 31074409]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 3, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 3 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000004.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000004.json deleted file mode 100644 index c270d639f4a2e2938b746f347d6cfd19ea51db00..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000004.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000004", - "content": "Betreuer Zweitbetreuer", - "embedding": { - "dense": [ - 0.01160386297851801, - -0.008580228313803673, - 0.016696302220225334, - -0.024772590026259422, - -0.0018383834976702929, - 0.052595339715480804, - 0.0034811589866876602, - 0.00877252034842968, - -0.014468359760940075, - -0.014163344167172909, - 0.003438058774918318, - 0.013831804506480694, - -0.002446757396683097, - 0.018818151205778122, - 0.003242450999096036, - -0.011942032724618912, - 0.0340556800365448, - 0.014614236541092396, - 0.019428182393312454, - 0.013520157895982265, - -0.023804496973752975, - 0.008878612890839577, - 0.005556592717766762, - -0.0007078356575220823, - -0.012445972301065922, - -0.013128941878676414, - 0.003438058774918318, - -0.015767991542816162, - 0.009654413908720016, - -0.009210151620209217, - 0.026045700535178185, - -0.02559480629861355, - -0.006677194498479366, - -0.016152577474713326, - -0.008341520093381405, - -0.013593097217381, - 0.002514722989872098, - 0.018102027475833893, - 0.03509008139371872, - 0.019136428833007812, - 0.020024951547384262, - 0.011743109673261642, - -0.0007625395664945245, - -0.0039320518262684345, - -0.02453388273715973, - 0.01219400204718113, - -0.014282697811722755, - -0.007035256363451481, - -0.025700898841023445, - 0.028353210538625717, - 0.0013104076497256756, - 0.017438948154449463, - -0.003031923668459058, - 0.0025545076932758093, - 0.00333362421952188, - -0.003991729114204645, - -0.037238456308841705, - 0.015012083575129509, - -0.013619620352983475, - -0.013281450606882572, - -0.0019361875019967556, - -0.013818543404340744, - -0.008076288737356663, - 0.014070512726902962, - -0.022796617820858955, - -0.007691703736782074, - 0.010721969418227673, - 0.006014116574078798, - -0.013765497133135796, - 0.001234153751283884, - 0.03869722783565521, - -0.007559088058769703, - 0.02674856223165989, - -0.006402017083019018, - 0.029361089691519737, - -0.024600189179182053, - -0.01055620051920414, - 0.017598086968064308, - -0.007081672083586454, - 0.0029788773972541094, - 0.022040709853172302, - -0.020263660699129105, - -0.036601901054382324, - 0.009263197891414165, - 0.022133540362119675, - 0.012094540521502495, - 0.0043033757247030735, - 0.0007563232211396098, - -0.00043514487333595753, - -0.00025487056700512767, - 0.0246267132461071, - 0.02962632104754448, - 0.012266941368579865, - 0.018659012392163277, - 0.005460446700453758, - 0.001898060436360538, - -0.0012515594717115164, - 0.019521012902259827, - -0.010204768739640713, - -0.014919253066182137, - -0.013831804506480694, - 0.007598872762173414, - -0.013400804251432419, - 0.009932907298207283, - -0.02278335578739643, - -0.014985560439527035, - -0.012419449165463448, - 0.005705785471946001, - 0.001142151653766632, - 0.002716961782425642, - -0.011749740689992905, - 0.03408220410346985, - 0.002546219155192375, - -0.0289101954549551, - 0.01108666229993105, - -0.022597694769501686, - 0.002486542100086808, - -0.005036076530814171, - -0.005347723141312599, - -0.020780861377716064, - 0.020953262224793434, - 0.013951159082353115, - 0.024149296805262566, - -0.033233463764190674, - 0.015303838066756725, - 0.006329078692942858, - 0.006378809455782175, - 0.010781646706163883, - -0.016298454254865646, - 0.008155858144164085, - 0.011192754842340946, - 0.014746852219104767, - 0.015436453744769096, - 0.009601367637515068, - -0.028698012232780457, - 0.018738580867648125, - -0.01044347696006298, - -0.010940785519778728, - -0.021550031378865242, - -0.024931728839874268, - 0.01783679611980915, - 0.009402444586157799, - -0.001828437321819365, - -0.009694199077785015, - 0.0015731522580608726, - 0.02269052527844906, - -0.0056394776329398155, - 0.0018499873112887144, - -0.01249901857227087, - -0.005523439031094313, - -0.01031086128205061, - -0.02182852476835251, - 0.016152577474713326, - -0.05957091972231865, - 0.021709170192480087, - 0.009395813569426537, - -0.008082919754087925, - 0.003915474750101566, - -0.03954596444964409, - -0.0010493207955732942, - 0.002514722989872098, - 0.003908844199031591, - 0.003234162461012602, - -0.02507760562002659, - 0.031456414610147476, - 0.01921599730849266, - 0.008381304331123829, - 0.015370145440101624, - -0.010655662044882774, - 0.004794053267687559, - 0.0010692131472751498, - 0.02096652239561081, - -0.003036896698176861, - 0.01294328086078167, - -0.012121063657104969, - 0.0063025555573403835, - -0.006756763905286789, - 0.005142169073224068, - -0.03885636478662491, - -0.018831411376595497, - -0.02792884036898613, - -0.001921268180012703, - 0.019030336290597916, - 0.017293071374297142, - -0.011139708571135998, - -0.023260772228240967, - 0.0041707600466907024, - 0.04156172275543213, - 0.0014952406054362655, - 0.009249936789274216, - 0.019255781546235085, - 0.01849987357854843, - 0.01546297688037157, - -0.007035256363451481, - -0.6709287166595459, - -0.01070207729935646, - 0.001864906633272767, - -0.022743571549654007, - 0.0031661968678236008, - 0.020674768835306168, - 0.011252432130277157, - 0.012233787216246128, - -0.02856539562344551, - 0.03225211054086685, - 0.021006308495998383, - 0.015250791795551777, - -0.003670136211439967, - 0.0212848000228405, - 0.0001898060436360538, - -0.012857080437242985, - -0.008732736110687256, - -0.009561583399772644, - 0.022915972396731377, - -0.019123166799545288, - -0.00799671933054924, - 0.024520620703697205, - -0.015051867812871933, - 0.005457131192088127, - 0.011212646961212158, - 0.01275761891156435, - 0.005049338098615408, - -0.005616270005702972, - -0.004210544750094414, - 0.009501906111836433, - -0.010423584841191769, - 0.014773375354707241, - -0.0037530208937823772, - -0.009985953569412231, - 0.058403901755809784, - 0.033896543085575104, - -0.011955294758081436, - 0.010615876875817776, - -0.015569069422781467, - 0.015317099168896675, - -0.0033369394950568676, - -0.021868309006094933, - 0.019282305613160133, - -0.00638544000685215, - 0.007691703736782074, - -0.004621652886271477, - 0.008653166703879833, - 0.015887346118688583, - -0.005944493226706982, - 0.0064418017864227295, - 0.006756763905286789, - -0.006329078692942858, - 0.0029788773972541094, - -0.018247904255986214, - 0.015250791795551777, - -0.0005433094338513911, - 0.006232932209968567, - -0.009833444841206074, - -0.0050957538187503815, - 0.009442228823900223, - -0.011424832046031952, - 0.011530924588441849, - -0.004548714496195316, - -0.014335744082927704, - 0.0039221057668328285, - 0.02925499714910984, - -0.030183305963873863, - 0.014733591116964817, - 0.008580228313803673, - -0.004654807038605213, - -0.006484901998192072, - 0.028512349352240562, - 0.01751851849257946, - 0.023605573922395706, - 0.014468359760940075, - -0.007227548863738775, - 0.008613381534814835, - -0.030899429693818092, - -0.0009382552234455943, - 0.008898505009710789, - -0.03975814953446388, - -0.012837188318371773, - -0.008288473822176456, - 0.010416953824460506, - 0.020926738157868385, - -0.014083774760365486, - -0.020157568156719208, - -0.015860823914408684, - -0.007704965304583311, - 0.012545433826744556, - 0.023247510194778442, - 0.004860361106693745, - -0.016417808830738068, - 0.01639128476381302, - 0.004240382928401232, - 0.0579795315861702, - -0.01832747273147106, - 0.011252432130277157, - 0.03811371698975563, - -0.056388143450021744, - 0.010072153061628342, - 0.008785782381892204, - 0.01546297688037157, - -0.006876117549836636, - 0.006143416743725538, - 0.026324192062020302, - -0.029493704438209534, - 0.013659404590725899, - 0.030740290880203247, - -0.016736086457967758, - 0.010218030773103237, - -0.011484509333968163, - -0.0025860038585960865, - 0.0006303384434431791, - 0.021099139004945755, - -0.02925499714910984, - 0.006435170769691467, - 0.014972299337387085, - 0.018102027475833893, - -0.023897327482700348, - 0.020038213580846786, - 0.0049863457679748535, - 0.02396363578736782, - 0.0038856365717947483, - 0.020701291039586067, - 0.029865028336644173, - -0.005457131192088127, - -0.013082526624202728, - -0.013281450606882572, - -0.005603008437901735, - 0.00629260903224349, - -0.01141820102930069, - 0.011975186876952648, - -0.00064525764901191, - 0.0034148511476814747, - 0.006760078947991133, - 0.02212027832865715, - 0.002861181041225791, - 0.0033319664653390646, - -0.0031114930752664804, - -0.013235034421086311, - 0.008228796534240246, - -0.0009249936556443572, - -0.007718226872384548, - 0.004820576403290033, - -0.0373445488512516, - -0.008533812128007412, - 0.0014156713150441647, - -0.021417416632175446, - 0.016324978321790695, - -0.000310817762510851, - -0.005327831022441387, - -0.019255781546235085, - 0.012034864164888859, - 0.02861844189465046, - -0.021443938836455345, - -0.02064824476838112, - -0.01347374264150858, - -0.027716655284166336, - -0.04604412987828255, - 0.018685534596443176, - 0.005785354413092136, - -0.02660268545150757, - -0.013513527810573578, - -0.016789132729172707, - -0.010516415350139141, - 0.024746067821979523, - 0.024003420025110245, - -0.01884467341005802, - -0.019839290529489517, - -0.010834692977368832, - -0.01283055730164051, - -0.01129221636801958, - 0.008401197381317616, - 0.02758404053747654, - 0.0003215927863493562, - 0.0045752376317977905, - -0.004207229241728783, - -0.008480765856802464, - 0.003164539346471429, - 0.007134718354791403, - 7.951754378154874e-05, - -0.0022776725236326456, - -0.017120670527219772, - 0.024414528161287308, - -0.020436061546206474, - 0.004936615005135536, - 0.004150867462158203, - -0.008785782381892204, - -0.002141741570085287, - -0.01639128476381302, - 0.04721114784479141, - 0.004502298776060343, - 0.024639975279569626, - 0.004369683563709259, - 0.005732308607548475, - -0.014587713405489922, - 0.00805639661848545, - 0.0012523883488029242, - 0.016815654933452606, - 0.03742411732673645, - 0.0003988828102592379, - 0.04044775292277336, - -0.02312815748155117, - 0.019826028496026993, - -0.05469066649675369, - 0.011756370775401592, - -0.0021666069515049458, - 0.040315136313438416, - -0.014799898490309715, - -0.011577339842915535, - -0.02062172256410122, - -0.01121927797794342, - -0.00199917983263731, - 0.020290182903409004, - 0.03991729021072388, - -0.018247904255986214, - 0.022969018667936325, - 0.01088773924857378, - -0.019693413749337196, - 0.004896830301731825, - -0.014150082133710384, - 0.01090100035071373, - -0.011444724164903164, - 0.02487868256866932, - 0.016550423577427864, - 0.0026125269941985607, - -0.011471247300505638, - 0.0041840216144919395, - 0.009568214416503906, - 0.003196035511791706, - 0.0067236097529530525, - -0.011358524672687054, - 0.01944144442677498, - 0.01720024086534977, - 0.0004877766768913716, - 0.015741469338536263, - -0.031854260712862015, - 0.022213108837604523, - 0.00819564238190651, - -0.007784534711390734, - 0.026801608502864838, - 0.008043134585022926, - -0.00503276102244854, - 0.025753945112228394, - 0.010761754587292671, - 0.01481316052377224, - 0.02327403426170349, - -0.0029639583081007004, - 0.013593097217381, - -0.003670136211439967, - 0.007771273143589497, - -0.005593061912804842, - -0.017704179510474205, - 0.0123266177251935, - 0.0011131420033052564, - 0.01604648493230343, - -0.008447612635791302, - 0.005208476912230253, - 0.02448083646595478, - 0.01749199442565441, - 0.02896324172616005, - 0.004223806317895651, - -0.00832825805991888, - 0.013871589675545692, - -0.012518910691142082, - -0.010576092638075352, - -0.014561190269887447, - 0.007187764160335064, - -0.03890940919518471, - 0.011683432385325432, - 0.01184920221567154, - -0.017253287136554718, - 0.005530069582164288, - 0.017651133239269257, - 0.003234162461012602, - -0.017306333407759666, - -0.0024268650449812412, - -0.009084166958928108, - 0.009070905856788158, - -0.012353140860795975, - -0.017810272052884102, - 0.008925028145313263, - 0.012419449165463448, - -0.012399557046592236, - -0.00557316979393363, - -0.018460089340806007, - 0.024586929008364677, - -0.009714091196656227, - 0.0037231824826449156, - 0.0008479108801111579, - -0.006282662972807884, - -0.007081672083586454, - -0.015661899000406265, - 0.008679689839482307, - 0.008354781195521355, - 0.0005789498682133853, - -0.01070207729935646, - 0.01737264171242714, - -0.023738188669085503, - 0.0061699398793280125, - -0.02027692273259163, - -0.009296352043747902, - -0.017730703577399254, - 0.033525217324495316, - 0.0043332139030098915, - -0.0390685498714447, - 0.0033236779272556305, - -0.018539657816290855, - -0.016431070864200592, - -0.006392071023583412, - -0.012333248741924763, - -0.0030650775879621506, - -0.012392926029860973, - 0.00531456945464015, - -0.021682647988200188, - -0.017425687983632088, - 0.005261523183435202, - 0.03596534579992294, - -0.01875184290111065, - -0.018048981204628944, - -0.019348613917827606, - -0.02502455934882164, - 0.021682647988200188, - 0.04124344512820244, - 0.03715888410806656, - 0.0038491671439260244, - 0.02241203375160694, - 0.0023141419515013695, - -0.0051255919970571995, - -0.015012083575129509, - -0.04821902513504028, - -0.007340272422879934, - -0.008387935347855091, - -0.005291361827403307, - -0.02013104408979416, - 0.009714091196656227, - -0.0069822100922465324, - 0.029042812064290047, - 0.021165447309613228, - -0.020383015275001526, - -0.025356099009513855, - 0.024719543755054474, - -0.004084559623152018, - 0.017067624256014824, - -0.0010741861769929528, - 0.02241203375160694, - 0.01668304018676281, - 0.003537520533427596, - -0.01648411713540554, - 0.01596691645681858, - 0.036310143768787384, - -0.003381697228178382, - -0.030395491048693657, - 0.007194395177066326, - 0.02649659290909767, - -0.00012588119716383517, - 0.014866206794977188, - -0.017425687983632088, - -0.00825531966984272, - -0.029042812064290047, - 0.006173255387693644, - 0.042728740721940994, - 0.005642792675644159, - 0.005791985429823399, - 0.003540836041793227, - 0.0006009143544360995, - -0.02229267917573452, - 0.019680151715874672, - -0.00824205856770277, - 0.0026141845155507326, - 0.019719935953617096, - 0.0038126979488879442, - -0.023831019178032875, - 0.02310163341462612, - 0.017425687983632088, - 0.01284381840378046, - -0.013884850777685642, - 0.003451320342719555, - -0.02082064561545849, - -0.024666497483849525, - -0.017903102561831474, - -0.009846706874668598, - -0.01005226094275713, - -0.02588656172156334, - -0.012041494250297546, - 0.004101136699318886, - -0.008978074416518211, - 0.018115287646651268, - -0.025104129686951637, - -0.02522348240017891, - -0.013712450861930847, - -0.005433923564851284, - -0.017412425950169563, - 0.004101136699318886, - -0.008407827466726303, - -0.0016610100865364075, - -0.005894762463867664, - -0.015635376796126366, - 0.01481316052377224, - 0.02223963290452957, - 0.0031380162108689547, - -0.007943673059344292, - 0.0025263268034905195, - -0.007559088058769703, - -0.012346510775387287, - -0.0065744174644351006, - -0.012704572640359402, - -0.010277707129716873, - 0.007612134329974651, - -0.020329969003796577, - -0.019136428833007812, - 0.0023323765490204096, - 0.024056466296315193, - -0.0065711019560694695, - -0.004227121360599995, - 0.0019196105422452092, - -0.017757225781679153, - 0.013049373403191566, - -0.0069755795411765575, - 0.011610493995249271, - 0.02349948137998581, - -0.0037928055971860886, - 0.0018814834766089916, - 0.011656909249722958, - -0.006687140557914972, - -0.029679367318749428, - -0.016497377306222916, - 0.024029942229390144, - 0.013685927726328373, - 0.0011031958274543285, - 0.0051056998781859875, - -0.007214287295937538, - -0.01662999391555786, - 0.025104129686951637, - -0.002145057078450918, - 0.005307938437908888, - -0.004754268564283848, - -0.018168333917856216, - 0.012717833742499352, - 0.00557316979393363, - 0.010582723654806614, - 0.015436453744769096, - -0.019308827817440033, - 0.006014116574078798, - -0.01956079714000225, - 0.048908624798059464, - 0.011577339842915535, - -0.010602615773677826, - -0.014097035862505436, - 0.005543331149965525, - -0.008653166703879833, - 0.013062634505331516, - 0.006690456066280603, - 0.015529284253716469, - -0.005251577123999596, - 5.667243749485351e-05, - -0.012717833742499352, - -0.05004911869764328, - -0.00040882895700633526, - -0.0005549133056774735, - 0.005410715471953154, - 0.0005723190843127668, - 0.004001675173640251, - -0.019971907138824463, - -0.016285192221403122, - 0.006630778778344393, - -0.005599692929536104, - -0.0004256131360307336, - -0.02559480629861355, - -0.014057251624763012, - 0.003593882080167532, - 0.005881500896066427, - 0.04798031598329544, - -0.027796225622296333, - -0.004850414581596851, - -0.03495746850967407, - 0.022650741040706635, - -0.006150047294795513, - -0.016431070864200592, - -0.002118533942848444, - 0.0024716227781027555, - 0.0039055286906659603, - 0.019812768325209618, - 0.009044382721185684, - 0.012154217809438705, - -0.020436061546206474, - -0.007075041066855192, - 0.008805674500763416, - 0.0016245408914983273, - -0.01843356527388096, - 0.015131437219679356, - -0.015887346118688583, - 0.0408455990254879, - -0.0007824319181963801, - 0.0161127932369709, - 0.041004735976457596, - 0.012353140860795975, - 0.01734611764550209, - -0.004011621233075857, - -0.006103632040321827, - -0.03169512376189232, - -0.0006411134381778538, - -0.03551445156335831, - 0.001658523571677506, - -0.010390430688858032, - -0.005145484581589699, - -0.0036104591563344, - -0.010721969418227673, - -0.005990908946841955, - 0.00451556034386158, - 0.002012441400438547, - 0.00793704204261303, - 0.029811982065439224, - -0.0006904298788867891, - -0.02761056274175644, - 0.014707067981362343, - 0.006816440727561712, - 0.0065943095833063126, - -0.008991336449980736, - -0.005085807293653488, - -0.0022627534344792366, - -0.017293071374297142, - 0.000934939831495285, - 0.025806991383433342, - 0.013433958403766155, - 0.0023058534134179354, - -0.014547929167747498, - 0.006786602083593607, - 0.02056867629289627, - -0.01333449687808752, - -0.009528429247438908, - 0.007532564923167229, - -0.022531386464834213, - -0.0038392210844904184, - -0.028034932911396027, - -0.011099924333393574, - -0.0028860466554760933, - 0.009952799417078495, - -0.004392891190946102, - -0.015118176117539406, - 0.029732413589954376, - 0.01411029789596796, - -0.014879467897117138, - -0.017293071374297142, - -0.015383407473564148, - 0.04622979089617729, - 0.011259062215685844, - 0.01941492035984993, - 0.03808719292283058, - -0.00875925924628973, - -0.0006929163937456906, - -0.05235663056373596, - 0.01547623798251152, - 0.004336529411375523, - 0.004910091869533062, - 0.02094000019133091, - -0.004780791699886322, - -0.011192754842340946, - 0.03161555528640747, - 0.012558694928884506, - -0.010881108231842518, - -0.023950373753905296, - 0.013321234844624996, - -0.0027799541130661964, - 0.009859967976808548, - 0.009707460179924965, - 0.009223413653671741, - 0.0006829702178947628, - 0.011570708826184273, - -0.014892729930579662, - -0.015224268659949303, - -0.012034864164888859, - -0.022199848666787148, - -0.01800919510424137, - 0.018738580867648125, - -0.025501975789666176, - 0.01798267289996147, - 0.014083774760365486, - -0.0009249936556443572, - 0.0016286850441247225, - -0.007021994795650244, - 0.00442272936925292, - 0.0040547214448452, - -0.012764249928295612, - 0.027849271893501282, - 0.005347723141312599, - 0.010987200774252415, - -0.020515630021691322, - -0.0075259339064359665, - -0.0424635075032711, - 0.0007745578768663108, - -0.0037430748343467712, - 0.02318120375275612, - -0.01909664273262024, - -0.0008578570559620857, - -0.010708708316087723, - 0.008301734924316406, - 0.0034347434993833303, - 0.02660268545150757, - 0.00477416068315506, - 0.0028247118461877108, - -0.013195250183343887, - 0.001552431145682931, - 0.016271932050585747, - -0.0059312316589057446, - -0.03325998783111572, - -0.009501906111836433, - 0.00016649471945129335, - -0.004615022335201502, - -0.0018814834766089916, - -0.0023572419304400682, - 0.0033833549823611975, - -0.032543864101171494, - -0.013128941878676414, - 0.004893514793366194, - 0.012896864674985409, - 0.010595984756946564, - -0.020144306123256683, - -0.009859967976808548, - 0.0005254892166703939, - 0.016921747475862503, - -0.02410951256752014, - 0.01944144442677498, - -0.0037099209148436785, - 0.008905136026442051, - -0.02200092375278473, - 0.014786637388169765, - 0.007724857423454523, - 0.0017389217391610146, - 0.019799506291747093, - -0.023380126804113388, - -0.0010203111451119184, - -0.010562830604612827, - -0.00857359729707241, - -0.00997932255268097, - 0.002164949430152774, - 0.002796530956402421, - -0.008600120432674885, - 0.001533367671072483, - 0.011252432130277157, - -0.029016287997364998, - -0.00731374928727746, - 0.0028910196851938963, - -0.005662685260176659, - -0.012976434081792831, - 0.014786637388169765, - -0.011066770181059837, - 0.005079176742583513, - -0.001271451823413372, - 0.013818543404340744, - 0.014242913573980331, - -0.050500012934207916, - -0.015608853660523891, - 0.00799671933054924, - 0.02076759934425354, - -0.032570384442806244, - -0.019162951037287712, - 0.008799043484032154, - 0.0010667265160009265, - 0.004316637292504311, - 0.01717371679842472, - 0.009773768484592438, - 0.000810612749774009, - -0.0007090789149515331, - -0.015250791795551777, - -0.005002922844141722, - 0.0186987966299057, - -0.001404896262101829, - -0.00043555928277783096, - 0.008825566619634628, - -0.0056494236923754215, - -0.007718226872384548, - -0.002169922459870577, - -0.029175426810979843, - 0.018367256969213486, - 0.0028031617403030396, - -0.032809093594551086, - 0.003716551698744297, - -0.008560335263609886, - -0.024666497483849525, - -0.003769597737118602, - 0.009409075602889061, - 0.005762146785855293, - -0.003454635851085186, - 0.0238442812114954, - 0.0028197388164699078, - 0.023910589516162872, - 0.00731374928727746, - 0.027981886640191078, - -0.03516964986920357, - -0.027743179351091385, - 0.008215535432100296, - -0.01045673806220293, - 0.02079412341117859, - -0.01926904357969761, - -0.04296744614839554, - -0.006869486998766661, - 0.026682253926992416, - -0.006770025473088026, - 0.010841323994100094, - 0.005894762463867664, - -0.013268188573420048, - -0.029440658167004585, - 0.011365154758095741, - 0.025501975789666176, - 0.0017787064425647259, - -0.007492780219763517, - 0.0324377715587616, - -0.015542546287178993, - 0.024666497483849525, - -0.00204559531994164, - 0.0005623729666694999, - -0.03166859969496727, - -0.023459695279598236, - 0.0408455990254879, - -0.012525541707873344, - 0.01975972205400467, - -0.011769632808864117, - 0.003081654431298375, - -0.021682647988200188, - 0.006206409074366093, - 0.007559088058769703, - 0.0036502438597381115, - 0.017558302730321884, - -0.0011893960181623697, - 0.012465864419937134, - -0.0019975220784544945, - -0.006660617422312498, - 0.0069954716600477695, - -0.03742411732673645, - -0.021165447309613228, - 0.020688030868768692, - -0.002745142439380288, - 0.017253287136554718, - -0.022226370871067047, - -0.011670171283185482, - -0.02361883409321308, - 0.020847169682383537, - 0.0009846707107499242, - -0.015038606710731983, - -0.013115680776536465, - 0.010430214926600456, - 0.011385047808289528, - -0.025236744433641434, - -0.00025259124231524765, - -0.002247834112495184, - 0.005612954497337341, - -0.012333248741924763, - -0.025382621213793755, - -0.015356884337961674, - -0.0033319664653390646, - 0.0003794048971030861, - -0.010390430688858032, - -0.011411570943892002, - -0.005042707547545433, - -0.00531456945464015, - 0.00032034949981607497, - -0.00868632085621357, - 0.021682647988200188, - 0.20953261852264404, - -0.03821980953216553, - -0.0003856212424580008, - 0.022650741040706635, - -0.025090867653489113, - -0.013632881455123425, - 0.020754337310791016, - 0.0021085876505821943, - 0.019083382561802864, - 0.002877758117392659, - -0.013646143488585949, - 0.005394138861447573, - -0.004296744707971811, - 0.008082919754087925, - 0.002690438646823168, - -0.028830626979470253, - -0.033206939697265625, - -0.015012083575129509, - 0.014733591116964817, - -0.002579373074695468, - 0.010416953824460506, - -0.018910981714725494, - 0.01840704306960106, - -0.005072545725852251, - 0.025263268500566483, - 0.03206644579768181, - -0.02997112087905407, - 0.0016477485187351704, - 0.020157568156719208, - 0.0047045378014445305, - -0.0021997608710080385, - -0.00612683966755867, - -0.0034148511476814747, - 0.0018035718239843845, - 0.0014504828723147511, - 0.010164984501898289, - 0.014163344167172909, - -0.017253287136554718, - 0.03095247596502304, - 0.03196035325527191, - 0.018910981714725494, - 0.018645750358700752, - -0.015449714846909046, - -0.009588106535375118, - 0.0056394776329398155, - 0.03938682749867439, - -0.010489892214536667, - -0.003146304516121745, - 0.0056394776329398155, - -0.005599692929536104, - -0.027743179351091385, - -0.02315467968583107, - 0.003809382440522313, - 0.023950373753905296, - -0.007837580516934395, - 0.017359379678964615, - 0.007293856702744961, - -0.006896010134369135, - -0.03551445156335831, - 0.005201845895498991, - -0.011026985011994839, - 0.0009879861027002335, - -0.010390430688858032, - 0.028379734605550766, - -0.006445117294788361, - 0.01045673806220293, - 0.003680082270875573, - -0.0019826029893010855, - 0.022226370871067047, - -0.03264995664358139, - -0.004077929072082043, - -0.01749199442565441, - -0.008089550770819187, - 0.004121029283851385, - -0.0008744339575059712, - -0.018712058663368225, - 0.011842571198940277, - 0.015370145440101624, - 0.016324978321790695, - 0.027477947995066643, - -0.01380528137087822, - 0.003729813266545534, - 0.005947808735072613, - -0.011491140350699425, - 0.005264838691800833, - -0.03546140715479851, - 0.012505648657679558, - 0.010483261197805405, - -0.0030054005328565836, - -0.0029324619099497795, - -0.0032159278634935617, - -0.030156781896948814, - 0.0029954544734209776, - 0.016762608662247658, - 0.013447219505906105, - 0.015980176627635956, - -0.0030567890498787165, - 0.021152185276150703, - -0.013400804251432419, - -0.004290114156901836, - -0.0186987966299057, - 0.06593646854162216, - 0.017240025103092194, - -0.016789132729172707, - -0.008818935602903366, - -0.0018599334871396422, - 0.009389182552695274, - 0.022823141887784004, - 0.00884545873850584, - -0.0035773052368313074, - -0.0356735922396183, - -0.035885777324438095, - 0.012227156199514866, - -0.008043134585022926, - -0.014136821031570435, - 0.0065810480155050755, - 8.770241402089596e-05, - 0.0016701275017112494, - -0.0055267540737986565, - -0.0407925508916378, - 0.020409537479281425, - -0.02450735867023468, - -0.002100299345329404, - 0.009581475518643856, - -0.008613381534814835, - -0.027133148163557053, - -0.01714719459414482, - -0.014600975438952446, - -0.0034015895798802376, - 0.006929163821041584, - 0.019003812223672867, - -0.03882984071969986, - 0.034851375967264175, - -0.01071533840149641, - -0.00629260903224349, - -0.0008702897466719151, - 0.01995864510536194, - 3.907885911758058e-06, - -0.014985560439527035, - 0.00012971460819244385, - 0.032888662070035934, - -0.023048587143421173, - -0.025303052738308907, - 0.0004542083479464054, - 0.005483654327690601, - -0.01887119747698307, - 0.017730703577399254, - -0.007532564923167229, - 0.0018582758493721485, - -0.02761056274175644, - -0.019030336290597916, - -0.0018085449701175094, - -0.015184483490884304, - -0.015303838066756725, - 0.020528892055153847, - -0.01464075967669487, - -0.023976895958185196, - -0.03543488308787346, - 0.00013023264182265848, - 0.0015458003617823124, - -0.0021516878623515368, - 0.0023240880109369755, - -0.0059411777183413506, - -0.035832729190588, - -0.007426472380757332, - 0.010854585096240044, - -0.17123323678970337, - 0.005341092590242624, - 0.01193540170788765, - -0.009621260687708855, - 0.004959822632372379, - -0.0024517304264009, - 0.015264052897691727, - 0.007784534711390734, - -0.010038998909294605, - 0.012644895352423191, - 0.01731959544122219, - -0.011424832046031952, - -0.042383939027786255, - -0.016378024592995644, - 0.017332855612039566, - -0.0014720329781994224, - -0.021523509174585342, - 0.00596107030287385, - 0.03951944410800934, - 0.0019660259131342173, - 0.0162188857793808, - -0.013235034421086311, - 0.012121063657104969, - -0.000778287707362324, - 0.02133784629404545, - 0.01668304018676281, - -0.027769701555371284, - 0.024891944602131844, - 0.004094506148248911, - -0.0013410750543698668, - -0.001990891294553876, - 0.011908878572285175, - 0.02583351545035839, - 0.01820811815559864, - -0.01258521806448698, - -0.014256174676120281, - -0.00599753949791193, - -0.007559088058769703, - 0.0035806207451969385, - 0.02054215408861637, - 0.025555022060871124, - 0.024096250534057617, - -0.004200598690658808, - 0.01038379967212677, - -0.03570011258125305, - 0.02514391392469406, - -0.0007065924000926316, - -0.021351108327507973, - -0.00832825805991888, - -0.0064418017864227295, - -0.01769091747701168, - -0.0069623179733753204, - 0.02108587697148323, - 0.0069822100922465324, - 0.005599692929536104, - -0.020661506801843643, - 0.02369840443134308, - -0.011378416791558266, - 0.00747951865196228, - 0.03681408613920212, - 0.0008926686132326722, - -0.022942494601011276, - 0.010224660858511925, - 0.008321627974510193, - -0.018420303240418434, - -0.029493704438209534, - -0.006504794117063284, - 0.002786584896966815, - -0.017770487815141678, - 0.007731488440185785, - -0.0014007521094754338, - -0.000750521314330399, - 0.014600975438952446, - -0.0203962754458189, - 0.012445972301065922, - 0.006730240769684315, - -0.014720329083502293, - 0.004681330174207687, - 0.00818238127976656, - 0.00211024540476501, - -0.012134325690567493, - 0.05713079124689102, - 0.0008371358271688223, - -0.025939607992768288, - -0.012923387810587883, - 0.008726105093955994, - -0.00236884574405849, - 0.010151722468435764, - 0.020555414259433746, - -0.010993831790983677, - 0.005864923819899559, - -0.02266400307416916, - -0.02859191969037056, - -0.013447219505906105, - -0.013162096031010151, - 0.005082492250949144, - -0.00017405794642399997, - -0.005062599666416645, - 0.0072540719993412495, - 0.001755498698912561, - 0.0025395883712917566, - -0.0022130224388092756, - -0.031217707321047783, - 0.00019664403225760907, - 0.02330055646598339, - 0.007002102676779032, - 0.015025344677269459, - 0.01353341992944479, - 0.02091347612440586, - -0.01601996272802353, - 0.001285542268306017, - 0.0027020424604415894, - -0.004482406657189131, - 0.01604648493230343, - 0.008155858144164085, - 0.024414528161287308, - -0.02401668205857277, - -0.01342069637030363, - 0.013241665437817574, - -0.00868632085621357, - 0.07776577770709991, - 0.010947415605187416, - -0.0018499873112887144, - -0.020754337310791016, - -0.011908878572285175, - 0.0033402550034224987, - -0.06906619668006897, - -0.006024062633514404, - 0.017385901883244514, - 0.019998429343104362, - 0.005791985429823399, - -0.0023323765490204096, - 0.0043232678435742855, - -0.00030377256916835904, - 0.0037364440504461527, - 0.0005478680832311511, - -0.0170013178139925, - -0.019083382561802864, - -0.0178898423910141, - -0.018605966120958328, - 0.002145057078450918, - -0.008076288737356663, - 0.004568606615066528, - -0.02113892324268818, - -0.01514469925314188, - 0.0035308897495269775, - 0.021152185276150703, - 0.014362267218530178, - 0.01616583950817585, - -0.00946212187409401, - -0.006935794837772846, - -0.016789132729172707, - -0.03782196342945099, - 0.0030203198548406363, - 0.010264446027576923, - 0.005062599666416645, - -0.0017588140908628702, - -0.023459695279598236, - 0.026775086298584938, - -0.026165053248405457, - -0.002705357735976577, - 0.00392542127519846, - -0.02792884036898613, - -0.03498398885130882, - 0.029732413589954376, - -0.026801608502864838, - 0.005211792420595884, - -0.015118176117539406, - 0.003376724198460579, - -0.033153895288705826, - -0.004399521742016077, - 0.01685544103384018, - 0.020011691376566887, - -0.006617517210543156, - 0.009515168145298958, - -0.007784534711390734, - -0.027822747826576233, - -0.018102027475833893, - -0.012804034166038036, - -0.005801931489259005, - 0.02689443901181221, - -0.011013723909854889, - 0.012651526369154453, - 0.014680544845759869, - -0.013964420184493065, - 0.0013021192280575633, - 0.021470462903380394, - -0.004492352716624737, - -0.022597694769501686, - 0.009700829163193703, - 0.011186123825609684, - -0.0067965486086905, - -0.010450107976794243, - -0.0004011621349491179, - 0.014508143998682499, - 0.0144418366253376, - -0.020860429853200912, - 0.015542546287178993, - -0.004104452207684517, - 0.012704572640359402, - -0.0323316790163517, - -0.002648996189236641, - -0.027186194434762, - -0.03092595376074314, - 0.02637723833322525, - -0.02410951256752014, - -0.015913870185613632, - -0.020462583750486374, - 0.03570011258125305, - -0.010058891959488392, - -0.012359771877527237, - -0.009070905856788158, - -0.001220892183482647, - 0.017425687983632088, - 0.005642792675644159, - -0.007008733227849007, - 0.005344407632946968, - 0.007784534711390734, - 0.0022080494090914726, - -0.038962457329034805, - -0.010330753400921822, - 0.0020091261249035597, - -0.008036504499614239, - -0.011351893655955791, - 0.021510247141122818, - 0.0008603435708209872, - 0.008043134585022926, - -0.0323316790163517, - -0.0612153522670269, - 0.020462583750486374, - 0.0006411134381778538, - -0.004144236911088228, - -0.012578587979078293, - 0.011318739503622055, - 0.030713768675923347, - -0.012678049504756927, - -0.008971444331109524, - 0.0052383155561983585, - -0.001768760266713798, - 0.01670956239104271, - 0.027371855452656746, - -0.0186987966299057, - -0.010032368823885918, - -0.01494577620178461, - 0.011285585351288319, - -0.0014007521094754338, - 0.0015880715800449252, - -0.0028296848759055138, - 0.001008707215078175, - 0.02761056274175644, - 0.007956935092806816, - 0.011988447979092598, - 0.0021864993032068014, - 0.01751851849257946, - -0.003036896698176861, - 0.0023290610406547785, - -0.010874477215111256, - 0.021364370360970497, - 0.0036005128640681505, - 0.013261557556688786, - -0.019401658326387405, - 0.012266941368579865, - -0.021324584260582924, - -0.007870734669268131, - 0.01547623798251152, - 0.015635376796126366, - 0.004223806317895651, - 0.0578203909099102, - -0.009143844246864319, - -0.012804034166038036, - 0.013447219505906105, - -0.018619228154420853, - -0.025183698162436485, - 0.011491140350699425, - 0.001630342798307538, - 0.009077535942196846, - 0.019083382561802864, - -0.014189867302775383, - 0.0011736478190869093, - 0.004475775640457869, - 0.006567786447703838, - 0.00564610818400979, - 0.008288473822176456, - -0.02853887341916561, - 0.008102811872959137, - -0.019375136122107506, - -0.015516023151576519, - -0.025727422907948494, - 0.02482563629746437, - 0.013725712895393372, - -0.007744750007987022, - 0.004399521742016077, - 0.01604648493230343, - -0.011225908994674683, - 0.010423584841191769, - -0.005563223734498024, - -0.0013394173001870513, - -0.020462583750486374, - -0.013964420184493065, - 0.011013723909854889, - -0.01766439527273178, - 0.022743571549654007, - -0.007393318694084883, - -0.016417808830738068, - 0.016669778153300285, - 0.014561190269887447, - -0.03259690850973129, - 0.01857944205403328, - 0.025899821892380714, - 0.007678442168980837, - -0.029042812064290047, - -0.011497770436108112, - 0.009521798230707645, - 0.02157655544579029, - -0.01275761891156435, - -0.008447612635791302, - 0.017956148833036423, - -0.005457131192088127, - 0.0024102882016450167, - 0.022385509684681892, - 0.019507750868797302, - -0.008228796534240246, - 0.01786331832408905, - 0.0229557566344738, - 0.007187764160335064, - -0.02027692273259163, - 0.013221773318946362, - 0.019865814596414566, - -0.0001483636733610183, - 0.006325763184577227, - 0.004240382928401232, - -0.017067624256014824, - -0.021443938836455345, - -0.007466257084161043, - -0.01216747984290123, - -0.01774396374821663, - 0.004223806317895651, - 0.02436148189008236, - 0.010615876875817776, - -0.006143416743725538, - 0.0007981800008565187, - 0.01636476255953312, - -0.02962632104754448, - 0.024600189179182053, - -0.019176213070750237, - -0.0375567302107811, - -0.030475059524178505, - -0.01731959544122219, - 0.016842179000377655, - 0.00178699498064816, - -3.499289960018359e-05, - -0.009243305772542953, - 0.013042742386460304, - 0.002902623498812318, - -0.01088773924857378, - -0.03230515494942665, - 0.004777476191520691, - -0.00857359729707241, - 0.0024583612103015184, - -0.004830522462725639, - -0.017651133239269257, - -0.027292286977171898, - -0.01746547222137451, - -0.01029760017991066, - 0.0037762285210192204, - 0.03161555528640747, - -0.006209724582731724, - 0.09070905297994614, - -0.008765889331698418, - -0.0016759294085204601, - 0.010794907808303833, - -0.003068392863497138, - -0.01944144442677498, - 8.122704457491636e-05, - 0.02608548477292061, - -0.021364370360970497, - -0.021178707480430603, - -0.0021566608920693398, - -0.04116387665271759, - 0.013884850777685642, - 0.003842536360025406, - -0.024891944602131844, - -0.010045629926025867, - -0.014720329083502293, - -0.0061599938198924065, - -0.015237529762089252, - 0.005894762463867664, - 0.01918947510421276, - 0.006352286320179701, - 0.019839290529489517, - 0.02160307765007019, - -0.00934939831495285, - -0.003653559135273099, - 0.015953654423356056, - -0.027345333248376846, - -0.014269436709582806, - -0.0015234214952215552, - -0.016935009509325027, - -0.014932514168322086, - -0.06699739396572113, - -0.019666889682412148, - 0.01360635831952095, - -0.038272857666015625, - 0.005085807293653488, - -0.0013385885395109653, - 0.021191969513893127, - 0.0069623179733753204, - -0.0003367192402947694, - 0.023605573922395706, - -0.013493634760379791, - -0.014521406032145023, - 0.010881108231842518, - -0.015383407473564148, - -0.007731488440185785, - -0.0040414598770439625, - 0.0030750236473977566 - ], - "sparse": "SparseEmbedding(values=array([1.68320383, 1.68320383]), indices=array([ 317632012, 1325932282]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 4, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 2 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000005.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000005.json deleted file mode 100644 index 3e6543d8c026af7904dd1eed98da7af3884c1efd..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000005.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000005", - "content": "Zweitbetreuer Herr Prof. Dr. Bastian Schr\u00f6ter", - "embedding": { - "dense": [ - 0.009621581993997097, - -0.00382972857914865, - 0.0017307114321738482, - -0.019868958741426468, - 0.005928745958954096, - 0.026987364515662193, - 3.587824176065624e-05, - 0.005935264751315117, - -0.006851139944046736, - 0.011388146318495274, - -0.002354875672608614, - 0.005654960870742798, - 0.0012149203103035688, - 0.012568028643727303, - 0.00891756359487772, - -0.01468008290976286, - 0.04284081235527992, - -0.0012597362510859966, - 0.016935549676418304, - 0.014458447694778442, - -0.009843217208981514, - 0.00806361623108387, - 0.019803771749138832, - 0.011088286526501179, - -0.0003444718604441732, - -0.016739988699555397, - 0.006740322336554527, - -0.022645918652415276, - -0.0039014341309666634, - -0.012385505251586437, - 0.012548472732305527, - -0.008663334883749485, - -0.028995119035243988, - -0.01555358711630106, - -0.01567092351615429, - -0.027378486469388008, - -0.01260062213987112, - 0.022267835214734077, - 0.01954302377998829, - 0.018356623128056526, - -0.006062379106879234, - 0.016140269115567207, - 0.013963027857244015, - -0.0050682793371379375, - -0.016153305768966675, - -0.009119642898440361, - 0.002900815801694989, - -0.010436417534947395, - -0.015123354271054268, - 0.02603563666343689, - 0.017900314182043076, - 0.03178511932492256, - -0.007248779758810997, - -0.01925620064139366, - -0.021250920370221138, - -0.015996858477592468, - -0.006645801477134228, - 0.0076790135353803635, - -0.012568028643727303, - -0.020703349262475967, - -0.00037075032014399767, - -0.012861369177699089, - -0.01747008040547371, - 0.006316607818007469, - -0.01709199696779251, - 0.0013371456880122423, - -0.01283529493957758, - 0.0318894162774086, - -0.023141339421272278, - 0.015931671485304832, - 0.028186803683638573, - -0.010651534423232079, - -7.924278907012194e-05, - -0.019934145733714104, - 0.038825299590826035, - -0.00632312661036849, - -0.011877047829329967, - 0.030377082526683807, - -0.015749147161841393, - 0.004181737545877695, - 0.018121950328350067, - -0.022841479629278183, - -0.03460118919610977, - 0.019868958741426468, - 0.029412316158413887, - 0.010084409266710281, - -0.01426288764923811, - 0.001079657580703497, - -0.030585680156946182, - -0.0021071655210107565, - 0.02685699053108692, - 0.03452296555042267, - 0.01121866051107645, - 0.01117302943021059, - -0.017861202359199524, - -0.010912282392382622, - -0.020077556371688843, - 0.02419736608862877, - 0.00494116498157382, - -0.01709199696779251, - -0.008761115372180939, - -0.010286488570272923, - -0.0159447081387043, - 0.005149762611836195, - -0.033114928752183914, - -0.0019164939876645803, - -0.0030491158831864595, - -0.0030637828167527914, - 0.002105535939335823, - 0.006420906633138657, - -0.03694791719317436, - 0.029516614973545074, - -0.016101157292723656, - -0.030012035742402077, - 0.018304472789168358, - -0.016570502892136574, - 0.02732633613049984, - 0.005485475063323975, - -0.01866951957345009, - -0.011003543622791767, - 0.030716054141521454, - 0.005756000522524118, - 0.018734706565737724, - -0.020403491333127022, - 0.02059905044734478, - 0.0011187696363776922, - -0.019047603011131287, - 0.0032935666386038065, - -0.012476767413318157, - 0.004550043493509293, - -0.009549876675009727, - 0.008467774838209152, - 0.007379153743386269, - 0.004070919938385487, - -0.008428662084043026, - 0.022280871868133545, - -0.035409506410360336, - 0.003357123816385865, - -0.01967339776456356, - -0.01816106215119362, - 0.0011554373195394874, - 0.01576218567788601, - -0.0013860358158126473, - -0.0280564296990633, - -0.005589774344116449, - 0.0194387249648571, - 0.007750718854367733, - 0.012378986924886703, - 0.0003298048104625195, - 0.01170104369521141, - -0.012594103813171387, - -0.036608945578336716, - 0.01244417391717434, - -0.02727418579161167, - 0.0011212141253054142, - -0.0035526843275874853, - -0.0021788710728287697, - 0.02183760143816471, - -0.01876078173518181, - -0.015488400124013424, - -0.0037286889273673296, - -0.014249850064516068, - 0.012176907621324062, - -0.025735776871442795, - 0.019086714833974838, - 0.02534465491771698, - -0.016609614714980125, - 0.01829143613576889, - -0.0062025305815041065, - 0.011023099534213543, - 0.0023842097725719213, - 0.019138865172863007, - -0.014132513664662838, - 0.019686434417963028, - -0.024497225880622864, - 0.0198168084025383, - -0.0073661161586642265, - 0.011903122067451477, - -0.02865614742040634, - -0.0219419002532959, - -0.01912582851946354, - -0.00023324677022174, - 0.02091194875538349, - 0.018995454534888268, - -0.007594270631670952, - 0.021224845200777054, - 0.01952998712658882, - 0.01718325912952423, - 0.014158587902784348, - 0.001821973011828959, - 0.021133583039045334, - 0.008545998483896255, - -0.0050780572928488255, - 0.013819616287946701, - -0.6608384251594543, - -0.006818546447902918, - 0.0007520935032516718, - 0.004791235085576773, - -0.007516046054661274, - 0.028186803683638573, - 0.012333355844020844, - 0.01105569303035736, - 0.004357742145657539, - 0.034262217581272125, - 0.013963027857244015, - -0.011414220556616783, - -0.005935264751315117, - -0.0024086548946797848, - -0.027352411299943924, - -0.01838269829750061, - -0.01585344597697258, - 0.0005842373357154429, - 0.022541619837284088, - 0.002894297009333968, - -0.023897506296634674, - 0.020703349262475967, - 0.0036113525275141, - 0.009439058601856232, - 0.0024836198426783085, - 0.010279969312250614, - 0.0043381862342357635, - -0.009856254793703556, - 0.0010266932658851147, - 0.014810456894338131, - -0.027769606560468674, - 0.009784549474716187, - -0.008167915046215057, - 0.00021002395078539848, - 0.05027211457490921, - 0.034861937165260315, - -0.01756134256720543, - 0.0055474028922617435, - 0.01967339776456356, - 0.02709166333079338, - -0.003140377579256892, - -0.03248913586139679, - 0.02203316241502762, - 0.002431470202282071, - -0.023297786712646484, - 0.029281942173838615, - 0.011329477652907372, - -0.002478730631992221, - -0.019243163987994194, - -0.002056645695120096, - 0.006114528514444828, - -0.004028548486530781, - 0.01852610893547535, - -0.005782075226306915, - 0.01907367818057537, - -0.0018121949397027493, - 0.014901718124747276, - -0.016831250861287117, - -0.030298857018351555, - 0.011322959326207638, - -0.016648726537823677, - 0.036895766854286194, - -0.0018301213858649135, - -0.016231531277298927, - 0.020807649940252304, - -0.009347797371447086, - -0.0466216504573822, - -0.0015229282435029745, - 0.02598348632454872, - 0.005087835248559713, - -0.006577355321496725, - 0.019973257556557655, - 0.010866651311516762, - 0.02285451628267765, - 0.03741726279258728, - 0.00663602352142334, - -0.003117562038823962, - -0.013832653872668743, - -0.00797235406935215, - 0.006329644937068224, - -0.01885204203426838, - -0.0020810908172279596, - 0.0007981317467056215, - 0.00014697601727675647, - 0.016387978568673134, - -0.031446147710084915, - -0.037678010761737823, - -0.013493682257831097, - -0.006818546447902918, - -0.006306829862296581, - 0.004070919938385487, - 0.016244567930698395, - 0.0040969946421682835, - 0.017991576343774796, - 0.010599385015666485, - 0.049698468297719955, - 0.0008987640030682087, - 0.013910878449678421, - 0.009504245594143867, - -0.038721002638339996, - 0.010455974377691746, - 0.016257604584097862, - 0.02925586700439453, - -0.017978539690375328, - -0.002340208739042282, - -0.004061141982674599, - -0.02912549301981926, - 0.0015921893063932657, - 0.038955673575401306, - -0.017626529559493065, - 0.01590559631586075, - -0.0036374274641275406, - -0.012131276540458202, - 0.006023266818374395, - 0.012294244021177292, - -0.02105535939335823, - 0.019569098949432373, - 0.01728755794465542, - 0.007431303150951862, - -0.005130206700414419, - 0.01907367818057537, - -0.01232683751732111, - 0.011420739814639091, - -0.00040028811781667173, - 0.004680417478084564, - 0.011225178837776184, - 0.00040049184462986887, - -0.012867888435721397, - -0.023571573197841644, - 0.0029334090650081635, - 0.01903456635773182, - -0.015227653086185455, - 0.030898576602339745, - -0.02234605886042118, - 0.025514140725135803, - -0.0017649345099925995, - 0.025057833641767502, - -0.014745269902050495, - -0.0030605236534029245, - -0.005019389092922211, - -0.021211808547377586, - 0.00552784651517868, - -0.0020599050913006067, - -0.0048173097893595695, - -0.017613492906093597, - -0.03950324282050133, - -0.02483619749546051, - 0.0053127300925552845, - -0.007731162942945957, - 0.03838203102350235, - -0.0050324262119829655, - -0.004178478382527828, - -0.005364879500120878, - 0.02230694703757763, - 0.03457511588931084, - -0.022176573053002357, - 0.004527227953076363, - -0.017404895275831223, - -0.039659690111875534, - -0.03405361995100975, - 0.02507087029516697, - 0.012750552035868168, - -0.029516614973545074, - 0.01861737109720707, - -0.003986177034676075, - -0.008748077787458897, - 0.004093735478818417, - 0.018539145588874817, - -0.017352744936943054, - -0.020220967009663582, - 0.0034614228643476963, - -0.011766229756176472, - -0.007907167077064514, - -0.008422143757343292, - 0.012965668924152851, - -0.028238952159881592, - -0.022046199068427086, - 0.005358360707759857, - -0.014588821679353714, - 0.0021120544988662004, - 0.007437821943312883, - 0.012528916820883751, - -0.001936050015501678, - 0.000742315489333123, - 0.006701210048049688, - 0.00397313991561532, - 0.00011295662261545658, - -0.009973591193556786, - -0.024966571480035782, - -0.0011880306992679834, - 0.006759878247976303, - 0.03428829461336136, - -0.006864177528768778, - 0.00884585827589035, - 0.007652938365936279, - 0.01677910052239895, - -0.00942602101713419, - 0.02110750786960125, - 0.0009118013549596071, - 0.01645316556096077, - 0.041406698524951935, - 0.007568195462226868, - 0.02816072851419449, - -0.012952631339430809, - 0.0176917165517807, - -0.04763856530189514, - 0.008624223060905933, - -0.0012874406529590487, - 0.018643444404006004, - -0.010677609592676163, - 0.0009362464188598096, - -0.03212409093976021, - -0.0245624128729105, - -0.0006078675505705178, - 0.005358360707759857, - 0.028995119035243988, - -0.02552717924118042, - 0.009484689682722092, - 0.009308685548603535, - 0.009510764852166176, - -0.0014292221749201417, - -0.014132513664662838, - 0.013193822465837002, - -0.015110316686332226, - -0.0018741225358098745, - 0.013963027857244015, - 0.00859814789146185, - 0.02332386188209057, - 0.0074182660318911076, - 0.01736578159034252, - -0.01456274650990963, - 0.00028234062483534217, - -0.009901885874569416, - -0.0034842381719499826, - 0.017626529559493065, - 0.004279518034309149, - -0.019503911957144737, - -0.016049006953835487, - 0.03022063337266445, - 0.01645316556096077, - -0.006401350721716881, - 0.01912582851946354, - 0.010423380881547928, - 0.013493682257831097, - 0.007105368655174971, - -0.007822424173355103, - 0.0019050863338634372, - 0.01696162298321724, - 0.014940830878913403, - 0.026022598147392273, - -0.004501153249293566, - 0.0057234070263803005, - -0.006825065240263939, - -0.035957079380750656, - 0.03256735950708389, - -0.030898576602339745, - 0.009830179624259472, - 0.0020305709913372993, - -0.0006058304570615292, - 0.023558534681797028, - 0.006596911232918501, - 0.032410912215709686, - 0.011388146318495274, - -0.007131443824619055, - -0.0011041025863960385, - 0.0031305993907153606, - -0.010325600393116474, - 0.001498483237810433, - 0.009334759786725044, - -0.027482785284519196, - 0.007118406239897013, - 0.008004947565495968, - 0.008650297299027443, - -0.019047603011131287, - 0.01477134507149458, - -0.006505649536848068, - 0.016140269115567207, - -0.014301999472081661, - -0.01310907956212759, - -0.0017600455321371555, - -0.01276358962059021, - -0.02907334454357624, - -0.007815905846655369, - 0.016296718269586563, - -0.010658053681254387, - -0.02225479669868946, - -0.007607307750731707, - -0.0014813715824857354, - -0.025057833641767502, - -0.0007325374754145741, - 0.0028747410979121923, - 0.013858729042112827, - -0.0017062663100659847, - -0.01792638935148716, - 0.0025911780539900064, - -0.007131443824619055, - 0.00307682016864419, - -0.01870863139629364, - 0.012026977725327015, - -0.018330547958612442, - 0.020572977140545845, - -0.016713913530111313, - -0.009386909194290638, - -0.008924082852900028, - 0.028447549790143967, - 0.012470248155295849, - -0.03926857188344002, - 0.010514642111957073, - 0.0017991575878113508, - -0.009588988497853279, - 0.0062481616623699665, - -0.03415792062878609, - -0.022776292636990547, - -0.0004774938279297203, - 0.003285418264567852, - 0.006147122010588646, - 0.0005760889616794884, - -0.010957912541925907, - 0.03337567672133446, - 0.0062025305815041065, - -0.010410343296825886, - -0.0059971921145915985, - -0.023050077259540558, - 0.0017828609561547637, - 0.07347863912582397, - 0.04208464175462723, - 0.004432707093656063, - 0.015071204863488674, - 0.01902152970433235, - -0.012196463532745838, - -0.0052899145521223545, - -0.06576051563024521, - 0.006365498062223196, - -0.04576118290424347, - 0.0029757805168628693, - 0.008676372468471527, - -0.010671090334653854, - 0.0055474028922617435, - 0.017665641382336617, - -0.0020696830470114946, - 0.006701210048049688, - -0.004214331042021513, - 0.012079127132892609, - -8.418273500865325e-05, - 0.007209667935967445, - -0.0015131501713767648, - 0.01322641596198082, - 0.02797820419073105, - 0.017248446121811867, - -0.04125025123357773, - -0.010279969312250614, - 0.01627064310014248, - 0.011811860837042332, - -0.018004612997174263, - 0.00564518291503191, - 0.01893026754260063, - 0.009940997697412968, - 0.013845691457390785, - -0.02123788185417652, - 0.007203149143606424, - -0.04797753691673279, - -0.0002521917049307376, - 0.01378050446510315, - 0.002359764650464058, - 0.006502390373498201, - 0.024210402742028236, - 0.01865648292005062, - -0.008356956765055656, - 0.019191015511751175, - -0.012574546970427036, - -0.007111887447535992, - 0.023336900398135185, - -0.0028731112834066153, - -0.012907000258564949, - 0.010768870823085308, - 0.01654442772269249, - -0.0006840547430329025, - 0.0033261601347476244, - -0.010651534423232079, - -0.011766229756176472, - -0.002675920957699418, - -0.016713913530111313, - -0.008611185476183891, - 0.035279132425785065, - -0.01816106215119362, - -0.0236889086663723, - 0.0043610017746686935, - -0.005756000522524118, - -0.009497727267444134, - -0.0027166628278791904, - -0.03543558344244957, - -0.021642040461301804, - -0.032045867294073105, - -0.0008963194559328258, - 0.023532459512352943, - -0.021185733377933502, - -0.0163619052618742, - 0.009243498556315899, - 0.014862606301903725, - 0.001563669997267425, - 0.015592698939144611, - 0.006486093625426292, - -0.02105535939335823, - 0.0013835913268849254, - -0.016792137175798416, - -0.018447883427143097, - -0.001370553974993527, - -0.017313633114099503, - -0.00040008442010730505, - 0.0010022481437772512, - -0.002812813501805067, - -0.0343925915658474, - 0.0017307114321738482, - 0.016739988699555397, - 0.012613659724593163, - -0.0055115497671067715, - -0.0008604666800238192, - -0.012437654659152031, - -0.010671090334653854, - -0.005651701707392931, - 0.022828441113233566, - 0.017261482775211334, - 0.005071538500487804, - -0.009217423386871815, - 0.016283679753541946, - -0.009484689682722092, - -0.0067272852174937725, - 0.0003271565947216004, - 0.026322457939386368, - 0.021772414445877075, - 0.0015995228895917535, - 0.0016443388303741813, - 0.010162632912397385, - 0.018969379365444183, - 0.021863676607608795, - 0.0033375676721334457, - -0.0012581065529957414, - -0.029464464634656906, - -0.005358360707759857, - 0.02677876688539982, - 0.002938298275694251, - 0.006838102824985981, - 0.009699806571006775, - -0.005280136596411467, - 0.004690195433795452, - -0.022776292636990547, - 0.03027278184890747, - 0.007313966751098633, - 0.007985391654074192, - 0.013676205649971962, - 0.021407367661595345, - -0.006117787677794695, - -0.009171792306005955, - -0.008545998483896255, - 0.0010552124585956335, - -0.000425751757575199, - -0.015149428509175777, - -0.025123020634055138, - -0.046569500118494034, - -0.0036732801236212254, - -0.020990172401070595, - 0.01728755794465542, - 0.0020713128615170717, - -0.007242261432111263, - -0.02188975177705288, - -0.009484689682722092, - -0.006929364521056414, - 0.004057882819324732, - -0.011003543622791767, - -0.023258674889802933, - -0.02336297370493412, - -0.002343467902392149, - 0.00125892146024853, - 0.009373871609568596, - -0.016427092254161835, - 0.008852376602590084, - -0.025787925347685814, - 0.014667046256363392, - 0.001740489387884736, - -0.036374274641275406, - -0.0052670990116894245, - -0.012072608806192875, - 0.02142040617763996, - 0.03694791719317436, - 0.000744759978260845, - 0.008545998483896255, - -0.0018138246377930045, - 0.002377691213041544, - -0.006427425425499678, - 0.0024005065206438303, - -0.015605736523866653, - 0.0014552968787029386, - -0.02447115071117878, - 0.041406698524951935, - 0.007965835742652416, - 0.0008629111689515412, - 0.01705288514494896, - 0.0034190514124929905, - 0.007998429238796234, - 0.00040660309605300426, - -0.011622819118201733, - -0.026296382769942284, - 0.006974995136260986, - -0.02410610392689705, - -0.023949656635522842, - -0.00804405938833952, - 0.014888681471347809, - -0.00566799845546484, - -0.006362238433212042, - -0.003529869019985199, - 0.0006567577365785837, - -0.008083172142505646, - 0.012457210570573807, - 0.010775390081107616, - 0.01732666976749897, - -0.025501104071736336, - 0.013858729042112827, - -0.00857207365334034, - -0.011140435934066772, - -0.01585344597697258, - -0.010312562808394432, - -0.008167915046215057, - 0.0005251617403700948, - 0.015514475293457508, - 0.013350270688533783, - -0.0024819900281727314, - 0.0020550161134451628, - -0.010638496838510036, - 0.00663602352142334, - -0.0016150047304108739, - -0.0025390286464244127, - -0.014875643886625767, - 0.0074117472395300865, - -0.005257321055978537, - 0.008748077787458897, - -0.006851139944046736, - -0.010723239742219448, - -0.01952998712658882, - 0.030246708542108536, - 0.007548639550805092, - -0.02967306412756443, - 0.013265527784824371, - -0.00031595260952599347, - -0.0019572358578443527, - -0.0025911780539900064, - -0.010319081135094166, - 0.03441866859793663, - -0.0009729140438139439, - 0.01778297871351242, - 0.016596578061580658, - -0.010149595327675343, - 0.0003937694418709725, - -0.04205856844782829, - 0.0037091330159455538, - -0.007796349469572306, - 0.0233108252286911, - 0.0076464200392365456, - -0.007085812743753195, - -0.037078291177749634, - 0.0017307114321738482, - 0.03381894901394844, - -0.005733185447752476, - -0.010012703016400337, - 0.012496323324739933, - 0.00395032437518239, - -0.003464682260528207, - -0.005407250951975584, - 0.013754429295659065, - -0.014223774895071983, - 0.0016272272914648056, - -0.01327204704284668, - -0.006098231766372919, - -0.027587084099650383, - -0.0014316666638478637, - -0.022020123898983, - 0.004980276804417372, - -0.024757973849773407, - 0.02580096386373043, - 0.003555943723767996, - 0.003161563305184245, - 0.007483452558517456, - -0.01696162298321724, - -0.0013860358158126473, - 0.00307682016864419, - -0.004569599404931068, - 0.036009225994348526, - -0.0022114645689725876, - 0.011837936006486416, - -0.014523634687066078, - 0.020077556371688843, - -0.019660359248518944, - -0.00324793579056859, - -0.00891756359487772, - 0.017157183960080147, - -0.017118072137236595, - -0.010749314911663532, - -0.02414521761238575, - 0.02745671011507511, - 0.030298857018351555, - 0.014067326672375202, - 0.005097613204270601, - -0.013174266554415226, - -0.015631811693310738, - -0.008819783106446266, - 0.023767132312059402, - -0.0010405454086139798, - -0.014432373456656933, - -0.001293959328904748, - -0.004194775130599737, - -0.015723073855042458, - -0.007111887447535992, - 0.002832369413226843, - -0.008083172142505646, - -0.03885137289762497, - 0.005870077759027481, - 0.007535602431744337, - 0.012724476866424084, - -0.008656816557049751, - 0.00951728317886591, - -0.00864377897232771, - 0.0066881729289889336, - 0.013376345857977867, - -0.026830915361642838, - 0.008735040202736855, - -0.0006437203264795244, - 0.00939994677901268, - -0.02396269328892231, - 0.014745269902050495, - 0.011042655445635319, - -0.011446814052760601, - 0.017065921798348427, - -0.0019409391097724438, - -0.005834225099533796, - -0.009543357416987419, - -0.011824898421764374, - -0.005407250951975584, - 0.015240690670907497, - -0.012607140466570854, - 0.02179848961532116, - 0.007535602431744337, - 0.013043892569839954, - -0.029646988958120346, - -0.02400180511176586, - 0.00746389664709568, - 0.01078190840780735, - -0.009634619578719139, - -0.020677275955677032, - -0.016596578061580658, - 0.01230728067457676, - 0.021668115630745888, - -0.011570669710636139, - 0.03543558344244957, - -0.03235876187682152, - -0.008650297299027443, - 0.017952464520931244, - 0.014315037056803703, - -0.01426288764923811, - -0.01727452129125595, - -0.02134218066930771, - -0.00042289981502108276, - 0.009986628778278828, - 0.010586347430944443, - -0.013871765695512295, - 0.010332118719816208, - -0.004977017641067505, - 0.003666761564090848, - -0.004279518034309149, - 0.022372134029865265, - -0.005459400359541178, - 0.005342063959687948, - -0.01027345098555088, - 0.0046217492781579494, - -0.010677609592676163, - -0.001384406117722392, - -0.012561510317027569, - 0.01741793192923069, - 0.008715484291315079, - -0.03134184703230858, - 0.003409273223951459, - 0.00884585827589035, - -0.0168182123452425, - -8.031226025195792e-05, - -0.00469997338950634, - 0.013741392642259598, - -0.004312111530452967, - 0.03014240972697735, - -0.005009611137211323, - 0.01129036583006382, - -0.00979106780141592, - 0.02185063809156418, - -0.025461992248892784, - -0.02050779014825821, - 0.015371063724160194, - 0.004116551019251347, - 0.03165474534034729, - -0.0033636426087468863, - -0.03215016424655914, - -0.005482215899974108, - 0.04005081206560135, - 0.009334759786725044, - 0.002392358146607876, - 0.012053051963448524, - -0.01654442772269249, - -0.009914922527968884, - 0.015644848346710205, - 0.024666711688041687, - 0.002226131735369563, - 0.025605402886867523, - 0.0288908202201128, - -0.023245638236403465, - 0.013317677192389965, - -0.009843217208981514, - -0.00010918801126535982, - -0.03201979026198387, - -0.015605736523866653, - 0.007685531862080097, - -0.01805676333606243, - 0.0013974435860291123, - -0.004947683308273554, - -0.0023516162764281034, - 0.009960553608834743, - 0.004233887419104576, - 0.004801013041287661, - -0.008787190541625023, - -0.0005125317838974297, - -0.0071835932321846485, - 0.008989269845187664, - -0.0024005065206438303, - -0.012998262420296669, - 0.005896152462810278, - -0.04093735292553902, - -0.008428662084043026, - 0.010266931727528572, - -0.0171962957829237, - 0.029699137434363365, - -0.006548020988702774, - -0.019151901826262474, - -0.010677609592676163, - 0.026426756754517555, - -0.02367587201297283, - -0.028082503005862236, - -0.02552717924118042, - 0.015331951901316643, - 0.024171290919184685, - -0.014406298287212849, - -0.009667213074862957, - -0.006287273485213518, - -0.016283679753541946, - -0.004106773063540459, - -0.026113860309123993, - -0.007894130423665047, - -0.018773818388581276, - -0.014719195663928986, - -0.005671257618814707, - -0.012809219770133495, - -0.014249850064516068, - 8.509942563250661e-05, - 0.00046893805847503245, - -0.01876078173518181, - 0.022828441113233566, - 0.22236545383930206, - -0.039842214435338974, - 0.002719922224059701, - 0.02299792878329754, - 0.0051008728332817554, - -0.013571906834840775, - 0.016505315899848938, - -0.003650464816018939, - 0.010749314911663532, - -0.002235909691080451, - -0.005928745958954096, - 0.006443722173571587, - -0.0027704420499503613, - -0.0020908687729388475, - 0.02248946949839592, - -0.0005720147746615112, - -0.03572240471839905, - -0.006818546447902918, - 0.006662098225206137, - -0.0017796015599742532, - 0.019803771749138832, - -0.005276876967400312, - 0.008976232260465622, - -0.016831250861287117, - 0.034262217581272125, - 0.00595807982608676, - -0.038355953991413116, - 0.007353079039603472, - 0.015540549531579018, - 0.011153473518788815, - -0.019099753350019455, - 0.00726833613589406, - 0.014210737310349941, - -0.00790064875036478, - -0.009491208009421825, - -0.006336163729429245, - 0.004165440797805786, - 0.008695928379893303, - 0.009888848289847374, - 0.030064184218645096, - -0.005162800196558237, - 0.009510764852166176, - -0.012730996124446392, - -0.018460921943187714, - 0.004184997174888849, - 0.022424282506108284, - -0.001354257226921618, - 0.0015946337953209877, - 0.022450357675552368, - 0.008076652884483337, - -0.014093401841819286, - -0.009588988497853279, - 0.011753193102777004, - 0.03908604755997658, - -0.01921708881855011, - -0.01426288764923811, - 0.01847395859658718, - 0.0206903126090765, - -0.022593770176172256, - 0.012972187250852585, - -0.032098013907670975, - 0.025357693433761597, - -0.0030425970908254385, - 0.02272414229810238, - 0.00824613869190216, - 0.03400147333741188, - -0.014667046256363392, - 0.019386574625968933, - 0.010123521089553833, - -0.021185733377933502, - 0.00351357227191329, - -0.029047269374132156, - -0.005596292670816183, - -0.004859681241214275, - -0.025631478056311607, - -0.030768202617764473, - 0.019008491188287735, - 0.001291514839977026, - 0.017769940197467804, - 0.02709166333079338, - -0.019373537972569466, - 0.009041419252753258, - 0.010051815770566463, - -0.013245971873402596, - -0.012515879236161709, - -0.0378866083920002, - 0.01366316806524992, - 0.016022933647036552, - -0.01630975492298603, - -0.009530320763587952, - -0.02857792377471924, - -0.02396269328892231, - 0.012900481931865215, - 0.00148951995652169, - 0.027169886976480484, - 0.02252858318388462, - -0.006587133277207613, - 0.03686969354748726, - -0.02732633613049984, - 0.00891756359487772, - -0.020064517855644226, - 0.07285284996032715, - -0.0017551564378663898, - -0.023662833496928215, - -0.018134986981749535, - 0.007066256832331419, - -0.012098683044314384, - 0.022176573053002357, - 0.0233108252286911, - 0.013441532850265503, - -0.0153189143165946, - -0.014158587902784348, - 0.015605736523866653, - -0.0023581350687891245, - 0.003780838567763567, - 0.02852577529847622, - 0.0014992980286478996, - 0.014966905117034912, - 0.019842883571982384, - -0.03501838818192482, - 0.0066588385961949825, - -0.017861202359199524, - 0.003432088764384389, - 0.024432038888335228, - 0.006896771024912596, - -0.0064763156697154045, - -0.023610685020685196, - -0.025461992248892784, - -9.19236754270969e-06, - 0.008004947565495968, - 0.005661479663103819, - -0.017822090536355972, - 0.011446814052760601, - -0.015683960169553757, - 0.012059571221470833, - -0.009621581993997097, - 0.011459851637482643, - -0.011440295726060867, - -0.001517224358394742, - 0.002715033246204257, - 0.0328020341694355, - -0.021303068846464157, - -0.013232934288680553, - -0.005257321055978537, - -0.006270976737141609, - -0.009654175490140915, - 0.006574095692485571, - -0.0076594571582973, - 0.002675920957699418, - -0.028551848605275154, - -0.004862940404564142, - -0.013402420096099377, - -0.017822090536355972, - -0.023884469643235207, - 0.009556395001709461, - 0.002941557439044118, - -0.013923915103077888, - -0.03379287198185921, - -0.00327075133100152, - -0.007379153743386269, - 0.004093735478818417, - 0.005019389092922211, - 0.005899411626160145, - -0.01754830591380596, - 0.000739871000405401, - 0.01089924480766058, - -0.16729559004306793, - 0.013050411827862263, - 0.014236812479794025, - -0.01916494034230709, - 0.003930768463760614, - -0.0033049744088202715, - 0.006701210048049688, - 0.01925620064139366, - -0.0036732801236212254, - 0.014523634687066078, - 0.006798990536481142, - 0.011877047829329967, - -0.028004279360175133, - -0.015579662285745144, - 0.006942401640117168, - 0.01334375236183405, - -0.018304472789168358, - -0.006994551047682762, - 0.02774353139102459, - 0.00986277312040329, - 0.016114193946123123, - -0.02009059302508831, - 0.015240690670907497, - -0.0036895768716931343, - 0.013454570434987545, - -0.007503008935600519, - -0.033245302736759186, - 0.033062782138586044, - -0.012874406762421131, - -0.017861202359199524, - -0.00852644257247448, - 0.017261482775211334, - 0.027300260961055756, - 0.00630031106993556, - 0.002307615242898464, - -0.01029952522367239, - 0.0021299810614436865, - -0.01754830591380596, - -0.019934145733714104, - 0.019803771749138832, - 0.01954302377998829, - 0.025005683302879333, - -0.005935264751315117, - -0.012268168851733208, - -0.022450357675552368, - 0.013871765695512295, - 0.023571573197841644, - 0.0010918800253421068, - 0.025044795125722885, - -0.01741793192923069, - 0.010716721415519714, - -0.010951394215226173, - 0.01140770222991705, - 0.017078960314393044, - 0.014745269902050495, - -0.0004135291965212673, - 0.02985558658838272, - 0.01276358962059021, - 0.006173196714371443, - 0.023480311036109924, - -0.013024336658418179, - 0.001712784986011684, - 0.023480311036109924, - 0.0023157636169344187, - -0.017939426004886627, - -0.008070134557783604, - -0.0030491158831864595, - -0.00045060424599796534, - -0.02943839132785797, - 0.026700541377067566, - -0.00903489999473095, - -0.011094805784523487, - 0.0045891557820141315, - -0.01432807371020317, - -0.002675920957699418, - 0.0016321162693202496, - -0.0043707797303795815, - 0.026335496455430984, - -0.00998010952025652, - -0.00525406189262867, - 0.000531680416315794, - 0.03994651511311531, - -0.0025928078684955835, - -0.0318894162774086, - -0.023376012220978737, - -0.00010541939263930544, - 0.009308685548603535, - 0.009712843224406242, - 0.01649227738380432, - -0.006994551047682762, - 0.0015408546896651387, - -0.0343925915658474, - -0.04018118605017662, - 0.008239620365202427, - -0.00848081149160862, - -0.00163537566550076, - -0.01870863139629364, - 0.022867554798722267, - -0.00797235406935215, - -0.002284799702465534, - -0.002824221272021532, - -0.004540265537798405, - -0.03673931956291199, - 0.004409891553223133, - 0.01073627732694149, - 0.028603998944163322, - -0.01354583166539669, - 0.02179848961532116, - 0.015279802493751049, - -0.011981346644461155, - -0.011779267340898514, - -0.007307447958737612, - 0.008989269845187664, - 0.006818546447902918, - 0.01567092351615429, - 0.021785452961921692, - -0.020703349262475967, - -0.017352744936943054, - 0.007796349469572306, - -0.025631478056311607, - 0.059241827577352524, - 0.00995403528213501, - -0.012248612940311432, - 0.008226582780480385, - 0.012411580421030521, - 0.002659624209627509, - -0.05814668908715248, - -0.0380430594086647, - 0.028864746913313866, - 0.017352744936943054, - -0.00038276915438473225, - 0.02114662155508995, - 3.608195038395934e-05, - 0.010997025296092033, - -0.0074182660318911076, - 0.023167414590716362, - 0.004628267604857683, - -0.0413024015724659, - 0.00038928783033043146, - -0.015097279101610184, - 0.0064926124177873135, - 0.010319081135094166, - 0.004484856501221657, - 0.0013159599620848894, - -0.01552751287817955, - 0.010540717281401157, - 0.003497275523841381, - 0.011472889222204685, - 0.01039078738540411, - -0.015501437708735466, - -0.013324196450412273, - 0.003145266557112336, - -0.02525339275598526, - 0.03082035295665264, - 0.017848165705800056, - 0.0041263289749622345, - 0.01105569303035736, - -0.012502841651439667, - 0.031263623386621475, - -0.030950726941227913, - 0.00135670171584934, - 0.006740322336554527, - -0.018734706565737724, - -0.022880591452121735, - 0.010240857489407063, - -0.03293240815401077, - 0.0011089916806668043, - -0.017809053882956505, - 0.015175503678619862, - -0.021029284223914146, - -0.0388774499297142, - 0.010214782319962978, - -0.008578591980040073, - 0.012665809132158756, - 0.034027546644210815, - -0.004106773063540459, - -0.02428862825036049, - -0.010364712215960026, - 0.003888396779075265, - 0.0033962358720600605, - 0.02907334454357624, - -0.040572308003902435, - 0.004491375293582678, - -0.0033766799606382847, - -0.038408104330301285, - -0.014575784094631672, - 0.024158254265785217, - 0.01690947450697422, - -0.01930835098028183, - 0.009243498556315899, - 0.005293173715472221, - 0.015384101308882236, - -0.018395734950900078, - -0.0053062113001942635, - 0.013637092895805836, - 0.000460789684439078, - -0.004100254271179438, - 0.025057833641767502, - -0.02220264822244644, - 0.015149428509175777, - -0.028421474620699883, - -0.009986628778278828, - -0.03731296584010124, - -0.011342515237629414, - 0.024405963718891144, - -0.03465333953499794, - -0.020703349262475967, - -0.030012035742402077, - 0.014588821679353714, - -0.0033408270683139563, - 0.000773686682805419, - 0.011081768199801445, - -0.008937119506299496, - 0.015110316686332226, - 0.002284799702465534, - -0.014432373456656933, - 0.019686434417963028, - 0.017809053882956505, - 0.011929197236895561, - -0.018786856904625893, - -0.006857658736407757, - 0.01041686162352562, - -0.010957912541925907, - -0.0029676323756575584, - 0.005687554366886616, - -0.008369994349777699, - -0.013467607088387012, - -0.021785452961921692, - -0.08787190169095993, - 0.01428896188735962, - 0.010697165504097939, - -0.02792605571448803, - -0.017170222476124763, - 0.02138129435479641, - 0.03230661153793335, - 0.003966621123254299, - 0.014693120494484901, - -0.004113291390240192, - -0.002535769250243902, - -0.017952464520931244, - 0.013689243234694004, - 0.009523801505565643, - -0.03611352667212486, - -0.027039512991905212, - 0.018969379365444183, - -0.01765260472893715, - 0.01728755794465542, - -0.0009118013549596071, - 0.009178311564028263, - 0.010547235608100891, - 0.011205622926354408, - 0.03092465177178383, - 0.0018138246377930045, - 0.005338804796338081, - -0.002941557439044118, - 0.007248779758810997, - -0.025331618264317513, - 0.008663334883749485, - 0.00022632066975347698, - -0.004595674574375153, - -0.023297786712646484, - 0.004074179567396641, - -0.029803436249494553, - -0.011668450199067593, - 0.003143636742606759, - 0.020338304340839386, - -0.009152236394584179, - 0.06602126359939575, - -0.02709166333079338, - -0.008630741387605667, - 0.025370730087161064, - -0.016283679753541946, - 0.002789997961372137, - 0.019986294209957123, - -0.01603597030043602, - 0.010612422600388527, - 0.01492779329419136, - -0.028630074113607407, - -0.0016508575063198805, - 0.006238383706659079, - 0.0016883399803191423, - -0.0035233504604548216, - 0.017522230744361877, - -0.016753025352954865, - -0.009738918393850327, - -0.009810623712837696, - -0.007372634951025248, - -0.034262217581272125, - 0.009028381668031216, - -0.005211690440773964, - 0.010794945992529392, - 0.019647322595119476, - 0.02041652798652649, - 0.004742344841361046, - 0.005188874900341034, - -0.007007588632404804, - 0.00932824146002531, - -0.016922511160373688, - -0.030585680156946182, - 0.003986177034676075, - 0.007613826543092728, - 0.029620913788676262, - 0.005123687908053398, - -0.016466204077005386, - -0.00857207365334034, - -0.0020142742432653904, - -0.015344989486038685, - 0.02745671011507511, - 0.021694190800189972, - 0.025787925347685814, - -0.02557932771742344, - -0.01590559631586075, - 0.01402821484953165, - 0.02576185204088688, - -0.01700073666870594, - 0.003643946023657918, - 0.006156899966299534, - 0.004155662842094898, - 0.0031729708425700665, - 0.021185733377933502, - 0.007594270631670952, - -0.01852610893547535, - 0.008220064453780651, - 0.004057882819324732, - 0.0057527413591742516, - -0.0012923297472298145, - 0.029803436249494553, - 0.017665641382336617, - 0.0050226482562720776, - -0.002974150935187936, - 0.008031022734940052, - -0.004778197500854731, - -0.031185397878289223, - 0.002682439750060439, - -0.008513404987752438, - -0.017078960314393044, - -0.006548020988702774, - 0.01645316556096077, - 0.001535965595394373, - 0.015253727324306965, - -0.021394331008195877, - 0.01576218567788601, - -0.037625860422849655, - 0.02308918908238411, - -0.006694691721349955, - -0.024575449526309967, - -0.02745671011507511, - 0.0013770726509392262, - 0.02132914401590824, - -0.01705288514494896, - -0.008487330749630928, - 0.001156252110376954, - 0.01754830591380596, - -0.014667046256363392, - -0.0006665357504971325, - -0.03345390036702156, - 0.014106438495218754, - 0.008506886661052704, - -0.0048401253297924995, - 0.004328408278524876, - -0.020377416163682938, - -0.03215016424655914, - 0.008474293164908886, - 0.01211823895573616, - 0.017978539690375328, - 0.026100823655724525, - -0.006805509328842163, - 0.10815805196762085, - -0.0035885372199118137, - -0.005485475063323975, - 9.31459289859049e-05, - -0.001319219241850078, - -0.012392024509608746, - 0.017404895275831223, - 0.013689243234694004, - -0.01616634428501129, - -0.019373537972569466, - 0.006531724240630865, - -0.023428160697221756, - 0.012411580421030521, - 0.005257321055978537, - -0.005697332322597504, - 0.0016533019952476025, - -0.011824898421764374, - 0.005182356107980013, - -0.01456274650990963, - 0.024340776726603508, - 0.012972187250852585, - 0.006192752625793219, - -7.2112976340577e-05, - 0.022333022207021713, - -0.004230627790093422, - 0.0020810908172279596, - 0.005772297270596027, - -0.016753025352954865, - 0.003034448716789484, - -0.03809520602226257, - -0.024249516427516937, - -0.0053127300925552845, - -0.07655546069145203, - -0.01603597030043602, - 0.008519924245774746, - -0.018682556226849556, - -0.010403824970126152, - -0.006316607818007469, - 0.022658955305814743, - 0.017222370952367783, - -0.019608210772275925, - 0.019373537972569466, - -0.009021862410008907, - -0.028317175805568695, - 0.0020745722576975822, - -0.008806746453046799, - -0.008519924245774746, - -0.00979106780141592, - -0.0014430743176490068 - ], - "sparse": "SparseEmbedding(values=array([1.66528681, 1.66528681, 1.66528681, 1.66528681, 1.66528681,\n 1.66528681]), indices=array([1325932282, 1236158132, 1156470180, 1273013281, 375001398,\n 1917625032]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 5, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 6 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000006.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000006.json deleted file mode 100644 index 7f4c594875c756d9573cfed8e16437bced1d9823..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000006.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000006", - "content": "Herr Mario Flammann Abgabedatum 20.06.2024 Gender Disclaimer", - "embedding": { - "dense": [ - -0.019370581954717636, - -0.026307523250579834, - -0.0022594607435166836, - -0.02303064428269863, - -0.00564204528927803, - -0.00028429069789126515, - -0.03144746646285057, - -0.006969973910599947, - -0.01337838638573885, - -0.025210825726389885, - 0.02999401092529297, - 0.0039342367090284824, - -0.002181833144277334, - 0.01843244396150112, - -0.008760365657508373, - 0.023281695321202278, - 0.030760377645492554, - -0.003022524295374751, - 0.015803012996912003, - -0.026373589411377907, - 0.009883489459753036, - 4.3355881643947214e-05, - -0.003547749947756529, - 0.012327935546636581, - -0.007339944131672382, - -0.006223427131772041, - 0.005080483388155699, - -0.03665347397327423, - 0.007452256511896849, - -0.002094295574352145, - 0.0021438451949507, - -0.002077779034152627, - -0.00023928318114485592, - -0.023678092285990715, - -0.014560969546437263, - 0.007505109533667564, - -0.008780185133218765, - -0.013503911904990673, - -0.009394600056111813, - 0.001990241464227438, - 0.010933940298855305, - 0.008760365657508373, - 0.0029201218858361244, - -0.02028229460120201, - -0.001504655578173697, - 0.026228243485093117, - -0.006124327890574932, - -0.006352256052196026, - -0.01605406403541565, - 0.016331540420651436, - 0.018723133951425552, - 0.02435196563601494, - -0.007339944131672382, - -0.014098506420850754, - 0.013305713422596455, - 0.007472076453268528, - 0.017666077241301537, - -0.00687748147174716, - -0.03189671412110329, - 0.014825234189629555, - 0.004736939910799265, - 0.001194144831970334, - -0.023162776604294777, - 0.005807210691273212, - -0.011343549937009811, - -0.020691903308033943, - -0.029571188613772392, - -0.0022776289843022823, - -0.00013182252587284893, - -6.013047823216766e-05, - 0.01785106211900711, - -0.011363370344042778, - 0.01316036842763424, - -0.01297538261860609, - 0.02435196563601494, - -0.014257065020501614, - -0.013926735147833824, - 0.010418624617159367, - -0.012387394905090332, - -0.017401812598109245, - 0.01663544587790966, - -0.027087103575468063, - -0.002406457904726267, - 0.013365172781050205, - 0.02461623027920723, - 0.046246275305747986, - -0.0028177194762974977, - 0.006448051892220974, - -0.013768176548182964, - -0.014521329663693905, - -0.020850462839007378, - 0.038661886006593704, - 0.015644453465938568, - 0.013094302266836166, - -0.015300909988582134, - -0.00771652115508914, - -0.015300909988582134, - 0.02363845333456993, - 0.01851172186434269, - -0.011515322141349316, - 0.010775381699204445, - -0.0007956836489029229, - -0.008033638820052147, - -0.0053084115497767925, - -0.01868349500000477, - -0.01374175027012825, - -0.010200606659054756, - -0.023308122530579567, - -0.0007172301411628723, - -0.01006847433745861, - 0.001382433227263391, - 0.03086608462035656, - -0.0019175687339156866, - -0.04185948520898819, - -0.018472082912921906, - 0.00230405549518764, - 0.010881087742745876, - -0.0019605117850005627, - 0.0006734613562002778, - -0.0033132152166217566, - 0.01048469077795744, - 0.02490692213177681, - 0.001321322051808238, - -0.012268475256860256, - 0.013114121742546558, - 0.015974784269928932, - -7.1872696025820915e-06, - 0.005694898311048746, - -0.014481689780950546, - 0.010127933695912361, - 0.005896399728953838, - -0.018498510122299194, - 0.02386307716369629, - -0.0009653909364715219, - 0.0008695950964465737, - 0.02320241555571556, - -0.02780061773955822, - -0.0010925681563094258, - -0.02166968211531639, - -0.020229442045092583, - 0.009857063181698322, - 0.03934897109866142, - -0.028355572372674942, - -0.012618626467883587, - -0.021881094202399254, - -0.00041621646960265934, - 0.001759010017849505, - -0.004862465430051088, - 0.006765169091522694, - 0.011911719106137753, - 0.015300909988582134, - -0.02745707333087921, - 0.015697306022047997, - -0.03274236246943474, - 0.015393402427434921, - 0.004978081211447716, - -0.00980420969426632, - 0.018353164196014404, - -0.0024873889051377773, - -0.016622232273221016, - 0.008251656778156757, - 0.006778382230550051, - 0.00979099702090025, - -0.008311116136610508, - 0.02181502804160118, - 0.039877500385046005, - -0.00508378678932786, - 0.007412617094814777, - 0.008073277771472931, - -0.005744447931647301, - 0.0006490994710475206, - 0.04130452871322632, - -0.011059465818107128, - 0.01822103187441826, - -0.03638920933008194, - 0.020387999713420868, - 0.0038285308983176947, - 0.0059723760932683945, - -0.0274835005402565, - -0.006362165790051222, - -0.03401083126664162, - 0.02843485213816166, - 0.0042942967265844345, - 0.014930939301848412, - -0.011799406260251999, - 0.01637118123471737, - 0.004092795308679342, - -0.011548355221748352, - -0.00023185073223430663, - -0.006910514552146196, - 0.0073333377949893475, - 0.035569991916418076, - 0.019304515793919563, - -0.015869079157710075, - -0.659604012966156, - -0.009665471501648426, - -0.00964565109461546, - -0.026201818138360977, - -0.003080332186073065, - 0.04148951545357704, - 0.0014476735377684236, - -0.0038087109569460154, - -0.006028532050549984, - 0.024061275646090508, - -0.0066693732514977455, - 0.039560385048389435, - 0.010682889260351658, - -0.007901506498456001, - -0.011330337263643742, - 0.005708111450076103, - 0.003775677876546979, - -0.01712433435022831, - 0.02079761028289795, - 0.04175378009676933, - -0.003105106996372342, - 0.01686006970703602, - 0.00369970197789371, - 0.002034835983067751, - 0.019634846597909927, - -0.0008687693043611944, - 0.02215857245028019, - -0.0031612631864845753, - 0.0016912922728806734, - 0.0006098727462813258, - -0.013100909069180489, - 0.026717133820056915, - -0.018934546038508415, - 0.009711717255413532, - 0.04862465336918831, - -0.003481683786958456, - -0.013953161425888538, - 0.0032355873845517635, - 0.02091652899980545, - 0.025792207568883896, - -0.030178997665643692, - -0.00016908794350456446, - 0.0022858872544020414, - 0.00392762990668416, - -0.0004327329806983471, - 0.016278687864542007, - 0.03060181997716427, - -0.014124933630228043, - -0.012512920424342155, - 0.014349558390676975, - -0.005374477710574865, - -0.017031840980052948, - 0.02126007340848446, - -0.013807816430926323, - -0.008813218213617802, - -0.0032570590265095234, - 0.016305115073919296, - -0.0021289801225066185, - 0.006936940830200911, - 0.003907809965312481, - -0.014878086745738983, - 0.014666675589978695, - -0.013100909069180489, - -0.0070888930931687355, - -0.021220432594418526, - 0.020903315395116806, - -0.024166980758309364, - 0.01756037026643753, - 0.028197012841701508, - 0.0008481236291117966, - -0.013979587703943253, - 0.01926487684249878, - -0.012420427985489368, - 0.005622225347906351, - 0.03327089175581932, - 0.012664872221648693, - -0.004839342087507248, - -0.005546249449253082, - -0.01497057918459177, - 0.019278088584542274, - -0.005760964471846819, - -0.0013394902925938368, - 0.011654061265289783, - 0.016120130196213722, - 0.02363845333456993, - -0.012334541417658329, - -0.027298513799905777, - -0.018709920346736908, - -0.01312072854489088, - -0.0001440034684492275, - 0.040828853845596313, - 0.020876890048384666, - 0.01671472378075123, - 0.005440543871372938, - 0.019145958125591278, - 0.02196037396788597, - -0.017322532832622528, - 0.011000006459653378, - -0.01880241371691227, - -0.05443847179412842, - -0.009196401573717594, - 0.014574183151125908, - 0.025237252935767174, - 0.008053458295762539, - 0.006963367573916912, - 0.014600609429180622, - -0.031632449477910995, - 0.005268771667033434, - 0.019423434510827065, - -0.03446007892489433, - 0.004978081211447716, - -0.0023552565835416317, - 0.000279955129371956, - -0.012645052745938301, - -0.003603906137868762, - -0.034724343568086624, - 0.03337659686803818, - -0.003266968997195363, - -0.005542946048080921, - -0.000920796359423548, - 0.012552560307085514, - 0.02568650245666504, - 0.020176587626338005, - -0.004251353908330202, - -0.01906667836010456, - 0.019463075324892998, - -0.006091294810175896, - -0.00901141669601202, - -0.002787989564239979, - 0.0028771788347512484, - 0.04468711465597153, - -0.0062498534098267555, - 0.013398205861449242, - -0.017401812598109245, - 0.012499706819653511, - 0.004644447006285191, - 0.007868473418056965, - -0.008291295729577541, - 0.02928049862384796, - -0.01349730510264635, - -0.007875079289078712, - 0.005235739052295685, - -0.012367574498057365, - 0.006712316069751978, - -0.003167869755998254, - -0.014547755941748619, - 0.0031315332744270563, - 0.006444748491048813, - 0.0032438456546515226, - 0.007987392134964466, - -0.03081323206424713, - -0.01938379555940628, - 0.012671479023993015, - 0.02120721898972988, - 0.020203014835715294, - -0.021735748276114464, - -0.010570576414465904, - -0.006851055193692446, - -0.022290704771876335, - -0.02478800341486931, - 0.016503313556313515, - 0.026162177324295044, - -0.008727332577109337, - -0.017943553626537323, - -0.004499101545661688, - -0.018273884430527687, - 0.025527942925691605, - 0.001427853712812066, - -0.001119820517487824, - -0.021445058286190033, - 0.008872677572071552, - -0.022396409884095192, - -0.012770578265190125, - -0.0032306325156241655, - -0.017309319227933884, - -0.014521329663693905, - 0.008555560372769833, - -0.003762464737519622, - -0.004489191807806492, - -0.0047039068304002285, - -0.004991294350475073, - 0.0029448966961354017, - 0.006173877511173487, - 0.0005103606381453574, - 0.0491267554461956, - 0.014019227586686611, - 0.008720725774765015, - 0.018062472343444824, - -0.007141746114939451, - 0.006124327890574932, - -0.018234245479106903, - 0.0198198314756155, - -0.006636340171098709, - 0.0016698208637535572, - -0.014111720025539398, - 0.00901141669601202, - 0.004892195109277964, - 0.017454665154218674, - 0.018115326762199402, - 0.006272976752370596, - 0.029201218858361244, - 0.007894899696111679, - 0.019648060202598572, - 0.0009191446588374674, - -0.00915676262229681, - -0.02935977652668953, - 0.014006013981997967, - -0.010121326893568039, - 0.04769972711801529, - 0.009771176613867283, - 0.012955563142895699, - -0.010412017814815044, - -0.021458270028233528, - -0.002191743114963174, - 0.00747868325561285, - -0.020929742604494095, - -0.009189794771373272, - -0.017718929797410965, - 0.006018622312694788, - 0.003871473716571927, - 0.002578229643404484, - 0.0026872388552874327, - -0.006884088274091482, - -0.010002408176660538, - 0.005258861929178238, - 0.00440330570563674, - -0.02013694867491722, - -0.007009613793343306, - 0.0018630641279742122, - -0.03694416582584381, - -0.00026736126164905727, - 0.011112319305539131, - -0.005714718252420425, - 0.007313517853617668, - 0.025184398517012596, - 0.005509912967681885, - 0.006623127032071352, - -0.027694910764694214, - 0.022290704771876335, - 0.012446854263544083, - 0.005622225347906351, - 0.03126247972249985, - 0.03815978392958641, - 0.008866071701049805, - 0.00963243842124939, - -0.02933335117995739, - 0.010497904382646084, - 0.03443365544080734, - 0.0006111114635132253, - 0.016106916591525078, - -0.03144746646285057, - -0.01744145154953003, - -0.025237252935767174, - 0.010022228583693504, - 0.045109935104846954, - -0.0011693700216710567, - 0.0013295803219079971, - -0.01481202058494091, - 0.012763971462845802, - 0.03239881619811058, - 0.020374786108732224, - 0.0019522533984854817, - 0.014574183151125908, - -0.007055860012769699, - 0.014006013981997967, - 0.004261263646185398, - -0.003085287055000663, - -0.022224638611078262, - 0.008443248458206654, - -0.0019803314935415983, - -0.013649256899952888, - -0.012968776747584343, - -0.026809625327587128, - -0.023453466594219208, - -0.012678085826337337, - -0.024603016674518585, - 0.0020876890048384666, - -0.002738439943641424, - 0.010682889260351658, - 0.017983194440603256, - -0.018709920346736908, - -0.022528542205691338, - 0.009936342015862465, - 0.04526849463582039, - 0.018868479877710342, - -0.027139956131577492, - 0.0034849869552999735, - 0.026109324768185616, - -0.02196037396788597, - -0.014323131181299686, - 0.00755796255543828, - 0.026677493005990982, - 0.019370581954717636, - 0.018723133951425552, - -0.013180187903344631, - -0.004730333108454943, - 0.02721923589706421, - -0.05385708808898926, - 0.006213517393916845, - -0.0007205334841273725, - 0.011363370344042778, - -0.005516519770026207, - -0.0036666688974946737, - -0.02617539092898369, - 0.003996999468654394, - 0.003337990026921034, - -0.023876290768384933, - -0.0036633654963225126, - 0.014349558390676975, - -0.0018135146237909794, - 0.01275736466050148, - -0.01296216994524002, - -0.03517359495162964, - 0.0031744763255119324, - 0.0019010521937161684, - 0.012955563142895699, - -0.0009926431812345982, - -0.021326139569282532, - 0.004231533966958523, - -0.005338141229003668, - -0.027377793565392494, - -0.004832735750824213, - -0.019925536587834358, - 0.009288894012570381, - 0.07510394603013992, - 0.014177786186337471, - 0.00815916433930397, - 0.008786791935563087, - 0.007980785332620144, - 0.005784087348729372, - -0.0065768808126449585, - 0.0030836353544145823, - 0.013140548020601273, - -0.0036336358170956373, - 0.012275082059204578, - 0.019714126363396645, - -0.009890096262097359, - -0.009883489459753036, - -0.002239641034975648, - -0.026637854054570198, - 0.014323131181299686, - 0.003508110297843814, - 0.008456461131572723, - 0.006375378929078579, - -0.02264746092259884, - 0.016239048913121223, - 0.002720271935686469, - 0.0425729975104332, - 0.0043867891654372215, - -0.00969189777970314, - 0.008027032017707825, - 0.00817237701267004, - 0.0024642657954245806, - -0.010438445024192333, - -0.0083309356123209, - 0.0024791306350380182, - 0.0038384406361728907, - 0.04481924697756767, - -0.003153004916384816, - 0.025435449555516243, - 0.014402410946786404, - -0.022436048835515976, - 0.009275681339204311, - 0.006345649249851704, - 0.036257077008485794, - 0.007941145449876785, - 0.0022743255831301212, - -0.004928531590849161, - 0.0009298804216086864, - -0.0061573609709739685, - -0.03028470277786255, - 0.029491908848285675, - -0.013953161425888538, - -0.019132744520902634, - 0.033482301980257034, - -0.021788600832223892, - -0.010438445024192333, - -0.008872677572071552, - 0.0007064944365993142, - -0.005975679028779268, - -0.0044561587274074554, - -0.012876284308731556, - -0.003990392666310072, - -0.0010595351923257113, - -0.01683364436030388, - -0.020837249234318733, - -0.02334776148200035, - -0.001366742537356913, - -0.0020975987426936626, - 0.0142306387424469, - -0.031368188560009, - -0.0008563818992115557, - -0.00043190715950913727, - -0.019806617870926857, - 0.015248057432472706, - -0.02143184468150139, - -0.01668829843401909, - 0.010015621781349182, - 0.01802283339202404, - 0.002168620005249977, - 0.018353164196014404, - -0.014930939301848412, - 0.009612618014216423, - 0.012090097181499004, - -0.019780192524194717, - -0.04368291050195694, - -0.01843244396150112, - -0.017639650031924248, - -0.015023432672023773, - 0.020229442045092583, - -0.011211417615413666, - -0.01375496294349432, - -0.013087695464491844, - 0.04804327338933945, - 0.00880661141127348, - -0.004059762228280306, - -0.001727628638036549, - 0.011469075456261635, - -0.01663544587790966, - 0.0053810840472579, - -0.00012356425577308983, - 0.021299712359905243, - 0.0018481992883607745, - 0.008700906299054623, - 0.00937478058040142, - -0.028276292607188225, - -0.0384240485727787, - -0.01602763682603836, - -0.01054415013641119, - 0.007769374176859856, - 0.0165429525077343, - -0.00089932483388111, - 0.0049714744091033936, - 0.008198803290724754, - -0.000359440891770646, - -0.004033335950225592, - 0.008502707816660404, - -0.00784204714000225, - 0.009711717255413532, - 0.013781389221549034, - -0.0021273286547511816, - 0.020546559244394302, - 0.00763724185526371, - -0.01391352154314518, - 0.01144264917820692, - -0.035015035420656204, - 0.04518921673297882, - 0.031315334141254425, - -0.003067118814215064, - 0.04193876311182976, - -0.004697300028055906, - -0.006950154434889555, - -0.013873881660401821, - -0.004452855326235294, - 0.03372013941407204, - 0.019172383472323418, - 0.0029515032656490803, - -0.022806018590927124, - -0.025448663160204887, - -0.005569372791796923, - -0.03971894085407257, - 0.011819226667284966, - -0.006950154434889555, - 0.004231533966958523, - 0.0021636649034917355, - 0.0006131760310381651, - -0.0034519541077315807, - 0.017824634909629822, - -0.0018960972083732486, - -0.028487704694271088, - -0.011792799457907677, - -0.011138745583593845, - -0.0013204963179305196, - 0.024774789810180664, - -0.022687099874019623, - -0.010669675655663013, - -0.018789200112223625, - 0.011218024417757988, - 0.01585586555302143, - -0.006051655393093824, - 0.009018023498356342, - -0.03998320549726486, - 0.04027389734983444, - 0.0039573595859110355, - 0.025316530838608742, - 0.005351354368031025, - 0.011257664300501347, - -0.003996999468654394, - 0.005833636969327927, - 0.002669070614501834, - 0.007868473418056965, - 0.015327336266636848, - -0.011046253144741058, - 0.017520731315016747, - 0.0009959465824067593, - 0.030654672533273697, - 0.014362771064043045, - 0.012202410027384758, - 0.0237177312374115, - -0.006824628449976444, - -0.005315018352121115, - 0.010200606659054756, - -0.008595200255513191, - -0.012869677506387234, - -0.010240246541798115, - -0.02439160645008087, - 0.020295508205890656, - -0.007055860012769699, - -0.0156840942800045, - -0.013299106620252132, - 0.036204226315021515, - -0.008918924257159233, - 0.015961570665240288, - 0.0166618712246418, - -0.02137899212539196, - -0.026637854054570198, - 0.03142103925347328, - 0.021709322929382324, - 0.004779882729053497, - 0.00650090491399169, - 0.006864268332719803, - 0.02028229460120201, - -0.014006013981997967, - 0.023849863559007645, - -0.021920733153820038, - 0.018670281395316124, - -0.024431245401501656, - -0.002489040605723858, - 0.005651955492794514, - 0.016357967630028725, - -0.007908112369477749, - 0.004139041528105736, - 0.00018704966350924224, - -0.019978391006588936, - -0.02867268957197666, - -0.009718324057757854, - -0.004604807589203119, - -0.02490692213177681, - 0.0113699771463871, - -0.0018795806681737304, - -0.013239647261798382, - 0.03142103925347328, - -0.008482888340950012, - -0.030073290690779686, - -0.015353762544691563, - -0.009843849577009678, - 0.03353515639901161, - 0.015248057432472706, - 0.004994597751647234, - 0.01770571619272232, - -0.023321334272623062, - -0.03337659686803818, - -0.028936954215168953, - 0.006685889791697264, - -0.009209615178406239, - 0.024774789810180664, - 0.02111472748219967, - -0.004327329806983471, - -0.013517125509679317, - 0.02536938525736332, - 0.021048661321401596, - 0.001968769822269678, - -0.03361443430185318, - 0.0016508267726749182, - 0.023334547877311707, - -0.0106432493776083, - -0.014508116990327835, - 0.017203614115715027, - -0.03586068004369736, - 0.005447150208055973, - -0.028884101659059525, - -0.0025831847451627254, - -0.006804808974266052, - -0.015353762544691563, - -0.02082403562963009, - 0.01132373046129942, - -0.021365778520703316, - 0.01512913778424263, - 0.03609852120280266, - -0.027034251019358635, - 0.008958564139902592, - -0.029148366302251816, - -0.008813218213617802, - -0.0014625383773818612, - 0.0008204584592022002, - 0.045030657202005386, - 0.012783790938556194, - -0.0009604360093362629, - 0.011673880741000175, - -0.0040267291478812695, - -0.02724566124379635, - -0.004670873750001192, - 0.007267271634191275, - 0.01975376531481743, - -0.020176587626338005, - -0.006963367573916912, - -0.006121024489402771, - 0.0003003943129442632, - 0.006015318911522627, - 0.013193401508033276, - 0.004178680945187807, - -0.020718330517411232, - -0.012777185067534447, - -0.012664872221648693, - -0.0030241759959608316, - -0.005876580253243446, - -0.013821029104292393, - -0.024074489250779152, - -0.013371779583394527, - -0.020269080996513367, - -0.00022503767104353756, - -0.02785347029566765, - 0.005916219670325518, - -0.026954971253871918, - -0.002677328884601593, - -0.004700603429228067, - 0.002094295574352145, - 0.02013694867491722, - 0.00964565109461546, - -0.0016004514181986451, - 0.011475682258605957, - 0.012658265419304371, - -0.026677493005990982, - 0.014878086745738983, - 0.038080502301454544, - -0.009553158655762672, - -0.002016667975112796, - -0.0010892648715525866, - -0.0035411431454122066, - -0.03023185022175312, - 0.01212313026189804, - -0.01122463122010231, - -0.005113516468554735, - 0.0002968845656141639, - -0.007604208774864674, - 0.005001204088330269, - 0.00658018421381712, - -0.026307523250579834, - 0.005305108148604631, - 0.02458980493247509, - 0.028910527005791664, - -0.014944152906537056, - -0.002764866454526782, - 0.0036336358170956373, - 0.008766972459852695, - -0.01190511230379343, - -0.00558258593082428, - -0.00526546873152256, - 0.017137547954916954, - 0.00164009106811136, - 0.0006173051660880446, - -0.01689971052110195, - -0.030760377645492554, - -0.011885291896760464, - 0.006778382230550051, - -0.0007552181486971676, - 0.006015318911522627, - -0.013609617948532104, - -0.0357549749314785, - -0.002505557145923376, - -0.011436042375862598, - 0.026043258607387543, - -0.01142943650484085, - -0.003775677876546979, - 0.0014080338878557086, - 0.020520132035017014, - 0.016912922263145447, - 0.029809026047587395, - 0.012592199258506298, - -0.011614421382546425, - 0.0033181700855493546, - 0.0122816888615489, - -0.026254670694470406, - -0.017322532832622528, - -0.021920733153820038, - 0.027034251019358635, - 0.0030588607769459486, - 0.0015806315932422876, - -0.017824634909629822, - -0.0044495523907244205, - -0.0065768808126449585, - -0.022977791726589203, - -0.01892133243381977, - 0.01268469262868166, - -0.007974178530275822, - 0.022991005331277847, - -0.008132737129926682, - 0.013821029104292393, - -0.003385887946933508, - -0.005021024029701948, - -0.010616823099553585, - -0.002931683324277401, - 0.028963379561901093, - 0.006223427131772041, - 0.027747763320803642, - -0.009995801374316216, - -0.029756173491477966, - -0.0034585606772452593, - 0.007914719171822071, - 0.007960965856909752, - -0.00043768793693743646, - 0.010801807977259159, - -0.013398205861449242, - -0.017745355144143105, - -0.005285288207232952, - 0.0027136653661727905, - -0.0026657674461603165, - 0.007571175694465637, - 0.02149791084229946, - -0.02967689372599125, - 0.007868473418056965, - -0.003990392666310072, - 0.004495798610150814, - -0.008225230500102043, - -0.003351203165948391, - 0.015499108470976353, - -0.018709920346736908, - -0.004145647864788771, - 0.019951963797211647, - -0.011554962024092674, - -0.006824628449976444, - -0.026307523250579834, - 0.017163973301649094, - 0.015829438343644142, - -0.0073531572706997395, - -0.01359640434384346, - 0.00516306608915329, - -0.011403009295463562, - 0.007663668133318424, - -0.0012247004779055715, - 0.009282288141548634, - -0.005817120429128408, - -0.005932736210525036, - -0.004783186130225658, - 0.015803012996912003, - -0.036838460713624954, - -0.003897900227457285, - -0.0044594621285796165, - 0.0007064944365993142, - -0.02247568964958191, - -0.03054896742105484, - -0.015776585787534714, - 0.009837242774665356, - -0.01819460466504097, - -0.010081687942147255, - -0.008046851493418217, - 0.009572979062795639, - 0.009434239938855171, - -0.0026839354541152716, - -0.013966375030577183, - 0.0037294316571205854, - -0.008436641655862331, - 0.005311714950948954, - 0.02074475772678852, - -0.02629430964589119, - -0.0019506016978994012, - 0.02478800341486931, - -0.008859464898705482, - -0.0214054174721241, - 0.006570274010300636, - 0.21172864735126495, - -0.01828709803521633, - 0.014587395824491978, - 0.01290271058678627, - -0.032504525035619736, - -0.000269219366600737, - 0.014362771064043045, - -0.0073333377949893475, - 0.012308115139603615, - 0.012942349538207054, - -0.01868349500000477, - 0.0013287545880302787, - 0.010841447860002518, - 0.0023469983134418726, - 0.010755562223494053, - -0.010180787183344364, - -0.032821640372276306, - -0.021511124446988106, - -0.03184386342763901, - -0.01631832867860794, - -0.007016220595687628, - -0.01602763682603836, - -0.0068312352523207664, - -0.01438919734209776, - 0.010174180381000042, - -0.0261489637196064, - -0.012460067868232727, - 0.0010818324517458677, - 0.007809013593941927, - 0.01836637780070305, - -0.004079582169651985, - -0.010815021581947803, - 0.0016673433128744364, - -0.0002475414366926998, - -0.01972733810544014, - -0.014627035707235336, - -0.001393169048242271, - -0.0022066079545766115, - 0.017652863636612892, - 0.010537543334066868, - -0.006672676652669907, - -0.0021355869248509407, - 0.023942356929183006, - -0.026056472212076187, - -0.004099401645362377, - 0.02996758557856083, - -0.008892497979104519, - -0.015195203945040703, - -0.01721682772040367, - -0.022343557327985764, - -0.019515927881002426, - -0.00953333918005228, - 0.011614421382546425, - 0.030654672533273697, - 0.025937553495168686, - -0.0029250767547637224, - 0.01138318981975317, - -0.020004816353321075, - -0.03020542301237583, - -0.012830037623643875, - 0.007980785332620144, - -0.00288213393650949, - -0.028857674449682236, - 0.016873283311724663, - -0.03329731523990631, - 0.015089498832821846, - -0.01000901497900486, - 0.009321927092969418, - 0.01814175210893154, - -0.0190931037068367, - -0.013768176548182964, - -0.030918937176465988, - -0.0005929432809352875, - 0.0030506025068461895, - -0.01544625498354435, - -0.00450570834800601, - 0.014362771064043045, - 0.01836637780070305, - 0.016014423221349716, - 0.024682296440005302, - 0.0006544673815369606, - -0.006306009832769632, - -0.017573583871126175, - -0.023585598915815353, - -0.01799640618264675, - -0.025356171652674675, - 0.004333936609327793, - 0.01651652716100216, - 0.0016764274332672358, - -0.01955556683242321, - -0.022462476044893265, - -0.008053458295762539, - -0.001488964888267219, - 0.009857063181698322, - 0.001465015928260982, - 0.01259880606085062, - 0.0021587100345641375, - 0.02745707333087921, - -0.009368173778057098, - 0.006008712109178305, - -0.0016062321374192834, - 0.05169012024998665, - 0.008786791935563087, - -0.04896819591522217, - -0.022290704771876335, - -0.0008935440564528108, - -0.008800005540251732, - 0.028646262362599373, - 0.00969189777970314, - -0.016239048913121223, - -0.010299705900251865, - -0.0035708730574697256, - 0.0018515025731176138, - -0.018842052668333054, - 0.0113699771463871, - 0.025448663160204887, - -0.008780185133218765, - 0.0016252262284979224, - 0.0012114872224628925, - -0.010828234255313873, - 0.00642162561416626, - -0.0036666688974946737, - 0.014428837224841118, - 0.008905710652470589, - 0.0020084097050130367, - -0.04373576119542122, - -0.01238078810274601, - -0.01853814907371998, - -0.009817423298954964, - -0.007300304714590311, - 0.01802283339202404, - -0.014270278625190258, - 0.03398440405726433, - -0.02806488238275051, - -0.0029944463167339563, - 0.01799640618264675, - 0.006474478170275688, - -0.005566069390624762, - -0.011786193586885929, - -0.010801807977259159, - 0.008033638820052147, - -0.017177186906337738, - 0.007643848191946745, - -0.00771652115508914, - 0.0022429442033171654, - -0.0008671176037751138, - 0.022171784192323685, - 0.009916522540152073, - 0.00015091976092662662, - -0.014627035707235336, - -0.03979822248220444, - -0.03723485767841339, - -0.002680632285773754, - 0.00107192259747535, - 0.014124933630228043, - 0.016820430755615234, - -0.02548830397427082, - -0.03728770837187767, - -0.016873283311724663, - 0.005506610032171011, - -0.03517359495162964, - -0.006527331192046404, - 0.029861878603696823, - -0.009004809893667698, - 0.0028887405060231686, - -0.008826431818306446, - -0.1695520579814911, - 0.020295508205890656, - 0.010696102865040302, - -0.02264746092259884, - 0.03522644564509392, - -0.008733939379453659, - 0.015459468588232994, - -0.013153761625289917, - -0.0008254133863374591, - 0.0025749264750629663, - 0.027906322851777077, - 0.0121627701446414, - -0.03152674436569214, - 0.001740841893479228, - 0.00040692591574043036, - 0.002411412773653865, - -0.012314721941947937, - 0.005698201712220907, - 0.013675684109330177, - 0.019938750192523003, - 0.025303319096565247, - -0.025356171652674675, - 2.8361971999402158e-05, - 0.003719521686434746, - -0.02996758557856083, - -0.0009307062719017267, - -0.009975981898605824, - 0.03845047205686569, - -0.018379589542746544, - 0.023004217073321342, - -0.01839280314743519, - -0.005017720628529787, - 0.026532147079706192, - 0.018260670825839043, - -0.0018333344487473369, - -0.007670274935662746, - -0.023929143324494362, - -0.013728536665439606, - -0.017969980835914612, - 0.013569978065788746, - 0.005853456910699606, - 0.010669675655663013, - -0.010874480940401554, - 0.008245049975812435, - -0.023004217073321342, - 0.02050691843032837, - 0.02441803179681301, - -0.004581684246659279, - -0.0044594621285796165, - -0.02320241555571556, - 0.024603016674518585, - -0.04003605991601944, - 0.01390030886977911, - 0.016120130196213722, - 0.011792799457907677, - -0.007042646873742342, - -0.0005850979359820485, - 0.0060747782699763775, - 0.005869973450899124, - 0.02198679931461811, - -0.032293111085891724, - -0.025039054453372955, - 0.025329744443297386, - 0.015010219067335129, - -0.00938799325376749, - 0.003696398576721549, - 0.007498502731323242, - 0.01576337218284607, - -0.016595805063843727, - 0.0061573609709739685, - -0.0005888141458854079, - -0.03237239271402359, - 0.009084089659154415, - -0.019634846597909927, - 0.016476886346936226, - -0.03298019990324974, - -0.009764570742845535, - -0.01117838453501463, - 0.0227399542927742, - 0.005704808048903942, - -0.020559770986437798, - 0.030707525089383125, - -0.024457672610878944, - -0.023902716115117073, - 0.014415624551475048, - -0.0059129162691533566, - 0.002160361735150218, - -0.006444748491048813, - -0.01433634478598833, - -0.018524935469031334, - -0.0016153162578120828, - -0.013768176548182964, - -0.021630043163895607, - -0.01822103187441826, - 0.0212864987552166, - -0.005229132249951363, - 0.005599102471023798, - -0.023466680198907852, - 0.006884088274091482, - -0.007690094411373138, - 0.003970572724938393, - -0.01259880606085062, - -0.02811773493885994, - 0.011118925176560879, - 0.029782600700855255, - -0.013239647261798382, - -0.03734056279063225, - -0.0035279300063848495, - 0.039877500385046005, - 0.006989793851971626, - -0.01032613217830658, - 0.005341444630175829, - 0.003337990026921034, - 0.022581394761800766, - 0.020784396678209305, - -0.004099401645362377, - -0.012149556539952755, - -0.045083511620759964, - 0.04302224889397621, - 0.006071474868804216, - 0.07040004432201385, - -0.006930334493517876, - 0.008529134094715118, - 0.009407813660800457, - 0.005836940370500088, - 0.011118925176560879, - -0.07378262281417847, - -0.023730944842100143, - 0.015578387305140495, - 0.023625239729881287, - 0.013992801308631897, - 0.01952914148569107, - 0.00703604007139802, - 0.03950753062963486, - -0.002411412773653865, - 0.002327178604900837, - -0.007709914352744818, - -0.0274835005402565, - -0.004532134626060724, - -0.015102711506187916, - 0.021709322929382324, - 0.00980420969426632, - -0.012413821183145046, - 0.009652257896959782, - -0.002375076524913311, - 0.02750992588698864, - -0.0024659172631800175, - -0.007531535811722279, - -0.006626430433243513, - -0.004651053808629513, - -0.02585827372968197, - -0.0059129162691533566, - -0.03369371220469475, - 0.012149556539952755, - 0.025580795481801033, - -0.010160966776311398, - 0.0024791306350380182, - -0.02103544771671295, - 0.02595076523721218, - -0.013147154822945595, - -0.009354960173368454, - -0.017428237944841385, - -0.026624640449881554, - -0.024312326684594154, - 0.013114121742546558, - -0.03057539276778698, - 0.005384387448430061, - -0.011350156739354134, - 0.010808414779603481, - -0.0122816888615489, - 0.02351953275501728, - -0.007742947433143854, - 0.009308714419603348, - 0.001403904752805829, - 0.017428237944841385, - -0.026201818138360977, - -0.025091907009482384, - -0.03525287285447121, - -0.017282893881201744, - 0.007861866615712643, - 0.03173815831542015, - -0.008833038620650768, - -0.00921622198075056, - 0.0014774033334106207, - -0.024061275646090508, - -0.00969189777970314, - -0.0033214734867215157, - -0.0036105127073824406, - -0.024219833314418793, - 0.006408412009477615, - 0.0019572083838284016, - -0.002247899305075407, - -0.014151359908282757, - -0.029544761404395103, - 0.017045054584741592, - -0.008370575495064259, - 0.0029515032656490803, - 0.023598812520503998, - 0.002236337633803487, - -0.004859162028878927, - -0.03525287285447121, - -0.0021801814436912537, - -0.022607821971178055, - -0.036494918167591095, - 0.010636642575263977, - -0.006593397352844477, - -0.0004434687434695661, - -0.022383196279406548, - 0.0012106613721698523, - 0.004096098709851503, - 0.01686006970703602, - 0.03876759111881256, - 0.007042646873742342, - 0.014098506420850754, - 0.03179100900888443, - -0.008304509334266186, - 0.016212621703743935, - 0.025382596999406815, - 0.007703308016061783, - -0.025527942925691605, - -0.012552560307085514, - 0.009044449776411057, - -0.00021368256420828402, - 0.0010578834917396307, - 0.019687699154019356, - -0.010431838221848011, - -0.01975376531481743, - -0.006216820329427719, - -0.08704870194196701, - 0.04471353814005852, - 0.0037162185180932283, - -0.009526732377707958, - -0.015618027187883854, - -0.008786791935563087, - 0.01972733810544014, - 0.029756173491477966, - 0.009467273019254208, - 0.00288213393650949, - -0.016767578199505806, - 0.015023432672023773, - -0.008879284374415874, - 0.010623429901897907, - -0.03276878967881203, - -0.006154057569801807, - 0.016410820186138153, - 0.03350872918963432, - 0.02004445716738701, - 0.005985589232295752, - -0.016186196357011795, - -0.007921325974166393, - 0.02279280684888363, - -0.010841447860002518, - -0.01816817931830883, - 0.01244024746119976, - -0.01421742606908083, - -0.02143184468150139, - -0.01190511230379343, - -0.015948357060551643, - 0.006035138852894306, - 0.008562167175114155, - -0.02875196933746338, - 0.012050457298755646, - -0.009090696461498737, - 0.004413215909153223, - -0.0033660680055618286, - 0.00024114128609653562, - -0.01285646390169859, - 0.015195203945040703, - -0.011422829702496529, - -0.02994115836918354, - 0.002200001385062933, - -0.022951364517211914, - 0.014904513023793697, - 0.015485894866287708, - 0.002825977746397257, - -0.00024774789926595986, - 0.0227399542927742, - 0.015895504504442215, - 0.006021925713866949, - 0.008522527292370796, - -0.010980186983942986, - -0.036812033504247665, - 0.026373589411377907, - -0.007102106232196093, - 0.012618626467883587, - -0.00377898127771914, - -0.0032388907857239246, - 0.005450453609228134, - 0.039824649691581726, - 0.004353756550699472, - -0.004634537268429995, - -0.01790391467511654, - 0.012493100017309189, - 0.011607814580202103, - -0.0064843883737921715, - -0.0013370128581300378, - 0.004859162028878927, - -0.014019227586686611, - -0.01819460466504097, - 0.003412314224988222, - 0.007531535811722279, - 0.012374181300401688, - 0.004228230565786362, - 0.0035708730574697256, - -0.000997598166577518, - 0.01300180982798338, - -0.0018151662079617381, - 0.03567569702863693, - 0.018868479877710342, - -0.00847628153860569, - -0.04740903526544571, - 0.006428231950849295, - 0.00524234538897872, - 0.023149562999606133, - -0.008595200255513191, - -0.014679888263344765, - 0.0027698215562850237, - 0.023968782275915146, - -0.01853814907371998, - 0.008925531059503555, - -0.0014526285231113434, - -0.0042018042877316475, - 0.01281682401895523, - 0.0010463219368830323, - 0.00392762990668416, - -0.005926129408180714, - 0.021828241646289825, - 0.029148366302251816, - 0.022673888131976128, - 0.0016904664225876331, - -0.03023185022175312, - -0.008007211610674858, - 0.01880241371691227, - 0.003481683786958456, - -0.022092506289482117, - -0.03171173110604286, - 0.026743559166789055, - 0.026360375806689262, - 0.021339351311326027, - 0.021735748276114464, - -0.00947387982159853, - 0.009037842974066734, - -0.019793404266238213, - 0.029571188613772392, - -0.020691903308033943, - -0.02303064428269863, - -0.018207818269729614, - 0.028514130041003227, - -0.004400002770125866, - 0.010458264499902725, - 0.0022594607435166836, - -0.011033039540052414, - 0.00864805281162262, - 0.012552560307085514, - 0.005427330732345581, - -0.039824649691581726, - 0.014759168028831482, - -0.026743559166789055, - 0.010279885493218899, - 0.008595200255513191, - -0.018908118829131126, - -0.021735748276114464, - -0.01337838638573885, - 0.0048756785690784454, - 0.00825826358050108, - 0.024457672610878944, - 0.006005409173667431, - 0.08593878895044327, - 0.021907519549131393, - -0.017058268189430237, - 0.014243852347135544, - 0.007524929475039244, - 0.002953154966235161, - -0.013299106620252132, - -0.008410215377807617, - -0.0228588730096817, - -0.014745954424142838, - -0.017401812598109245, - -0.0032306325156241655, - 0.004063065629452467, - -0.01222222950309515, - -0.022726740688085556, - -0.009559765458106995, - -0.01391352154314518, - 0.027668485417962074, - -0.017309319227933884, - -0.0017177187837660313, - 0.024365179240703583, - -0.010775381699204445, - 0.005334837827831507, - 0.03889972344040871, - -0.022079292684793472, - 0.00263273436576128, - 0.028329145163297653, - 0.008998203091323376, - 0.013523731380701065, - -0.008991597220301628, - -0.00847628153860569, - -0.006563667673617601, - -0.02638680301606655, - -0.0009777783416211605, - 0.018128538504242897, - -0.0004164229321759194, - 0.015895504504442215, - 0.008119524456560612, - 0.023651665076613426, - 0.011779586784541607, - -0.021973585709929466, - 0.039560385048389435, - -0.005701504647731781, - 0.01967448554933071, - -0.0021438451949507, - -0.0022726741153746843, - -0.012057064101099968, - 0.010253459215164185, - -0.022211425006389618 - ], - "sparse": "SparseEmbedding(values=array([1.65209739, 1.65209739, 1.65209739, 1.65209739, 1.65209739,\n 1.65209739, 1.65209739, 1.65209739, 1.65209739]), indices=array([1236158132, 1477441465, 202860822, 2042518486, 163077544,\n 402908866, 1555540962, 1616874354, 1918475883]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 6, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 7 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000007.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000007.json deleted file mode 100644 index 22eab8c7df69a47ded5122d111d3b27e0ca746cf..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000007.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000007", - "content": "Gender Disclaimer Hinweis zur Verwendung geschlechtsneutraler Formulierungen. Aus Gr\u00fcnden der besseren Lesbarkeit wird auf die Verwendung von geschlechtsspezifischen Doppelnennungen und Kurzformen verzichtet. Werden Personengruppen in der vorliegenden Arbeit genannt, wird stellvertretend die m\u00e4nnliche Form f\u00fcr alle Geschlechter verwendet. Hierdurch werden Frauen, M\u00e4nner und Diverse im Rahmen der Ausarbeitung gleicherma\u00dfen ber\u00fccksichtigt.", - "embedding": { - "dense": [ - -0.01608867570757866, - 0.001697856467217207, - -0.0027933514211326838, - -0.04579875245690346, - 0.006656496785581112, - 0.006624370813369751, - -0.0087960846722126, - 0.005217254161834717, - 0.00659224484115839, - -0.04939686134457588, - 0.00964421033859253, - 0.00731829134747386, - 0.0024528163485229015, - 0.000283511501038447, - -0.008731832727789879, - 0.019519727677106857, - 0.05132441595196724, - -0.006585819646716118, - 0.009804840199649334, - -0.017720673233270645, - -0.000498755369335413, - 0.020534906536340714, - 0.015600360929965973, - 0.0005132120568305254, - -0.037214700132608414, - -0.01303671021014452, - 0.017605019733309746, - -0.02020079642534256, - 0.00306481565348804, - -0.009226572699844837, - -0.01896716095507145, - -0.005756970029324293, - 0.00492490828037262, - -0.021601488813757896, - -0.022205457091331482, - 0.01649988815188408, - -0.018800105899572372, - -0.0019082814687862992, - -0.004642199724912643, - -0.008995265699923038, - 0.011783798225224018, - 0.003896877635270357, - 0.004716089460998774, - -0.01443097647279501, - -6.289658631430939e-05, - 0.025379499420523643, - -0.015985872596502304, - 0.002520280657336116, - -0.003983617760241032, - 0.0177078228443861, - -0.002693760907277465, - 0.03194604441523552, - -0.021177425980567932, - -0.022501016035676003, - -0.004944183863699436, - -0.005846922751516104, - 0.004417317919433117, - 0.006836402229964733, - -0.01896716095507145, - -0.007607425097376108, - -0.019571129232645035, - 0.0019853836856782436, - -0.01990523934364319, - 0.003392500337213278, - -0.03631517291069031, - -0.01846599578857422, - -0.015574660152196884, - 0.005082325078547001, - 0.0033443113788962364, - 0.011327610351145267, - 0.023272037506103516, - -0.002293792786076665, - 0.023387691006064415, - -0.01306883618235588, - 0.02586781419813633, - -0.01885150745511055, - -0.012060081586241722, - -0.013223040848970413, - 0.0029539810493588448, - -0.007337566930800676, - 0.013531450182199478, - -0.03233155608177185, - -0.030558204278349876, - 0.011925152502954006, - 0.01688539981842041, - 0.021897047758102417, - -0.00419886177405715, - 0.004703239072114229, - -0.013582851737737656, - -0.01700105331838131, - -0.01170027069747448, - -0.006062166765332222, - -0.008012211881577969, - 0.012272113002836704, - 0.016435636207461357, - 0.012329939752817154, - -0.0032688153441995382, - 0.015266251750290394, - 0.0045747351832687855, - -0.020560607314109802, - -0.017823476344347, - 0.025186745449900627, - -0.0034117759205400944, - 0.010595138184726238, - -0.03497873246669769, - 0.013737056404352188, - 0.0022857612930238247, - -0.005760182626545429, - 0.0027242805808782578, - -0.009226572699844837, - -0.006049316376447678, - 0.018581649288535118, - -0.008648306131362915, - -0.013351544737815857, - 0.03174043819308281, - -0.03135492652654648, - 0.018401743844151497, - -0.015638912096619606, - 0.009432178921997547, - -0.0005393144092522562, - 0.03464462608098984, - -0.004895994905382395, - 0.020650560036301613, - -0.006656496785581112, - 0.02061200886964798, - 0.021421583369374275, - -0.005583490245044231, - 0.014161118306219578, - -0.020277898758649826, - -0.004687176086008549, - 0.00400931853801012, - -0.001832785434089601, - 0.022886525839567184, - 0.014495228417217731, - -0.008879612199962139, - 0.0068171266466379166, - -0.023439092561602592, - -0.005156214814633131, - -0.017309462651610374, - -0.016217179596424103, - 0.010023295879364014, - 0.014276771806180477, - -0.009188021533191204, - -0.017193809151649475, - 0.005683080293238163, - 0.01779777556657791, - 0.022038402035832405, - 0.002794957719743252, - 0.0002606217749416828, - 0.014482378028333187, - -0.009053092449903488, - -0.00787085760384798, - 0.04919125512242317, - -0.023143533617258072, - 0.01443097647279501, - -0.016602691262960434, - -0.01112842932343483, - 0.0007923062075860798, - 0.0008842667448334396, - -0.002835115185007453, - 0.016011573374271393, - -0.0013806127244606614, - 0.014970692805945873, - -0.018915759399533272, - 0.024621328338980675, - 0.01958397962152958, - -0.004025381524115801, - 0.001697856467217207, - -0.002705004997551441, - -0.0023789266124367714, - -0.008416999131441116, - 0.016576990485191345, - -0.02232111059129238, - 0.00022528322006110102, - -0.018594499677419662, - 0.006389851216226816, - 0.03914225846529007, - 0.005773033015429974, - -0.03523574024438858, - -0.004060720093548298, - -0.023593297228217125, - 0.007164086680859327, - 0.005153002217411995, - 0.008770383894443512, - -0.035158637911081314, - 0.03281987085938454, - 0.0027805010322481394, - 0.019211318343877792, - 0.0013388489605858922, - 0.0008011408499442041, - 0.027499813586473465, - 0.015716014429926872, - 0.02945307083427906, - 0.00373303540982306, - -0.6546497344970703, - 0.006560118868947029, - -0.005278293509036303, - -0.002221509348601103, - 0.014071165584027767, - 0.04060719907283783, - -0.008198542520403862, - 0.025289548560976982, - 0.00100232963450253, - 0.06142481416463852, - -0.01928842067718506, - 0.024968288838863373, - -0.006479803938418627, - -0.007980085909366608, - -0.01734801195561886, - -0.009541407227516174, - -0.011764522641897202, - 0.0019468325190246105, - 0.009779139421880245, - 0.0035338543821126223, - 0.018838657066226006, - 0.0037747991736978292, - -0.014328173361718655, - 0.008667581714689732, - 0.005824434570968151, - 0.012966033071279526, - 0.024068761616945267, - 0.0049538216553628445, - 0.0076202754862606525, - 0.0068171266466379166, - -0.02798812836408615, - 0.014623732306063175, - -0.017784925177693367, - 0.0021171001717448235, - 0.047674909234046936, - 0.021884197369217873, - -0.01303671021014452, - 0.022128354758024216, - 0.011558916419744492, - 0.023117832839488983, - -0.04019598662853241, - 0.0026182648725807667, - -0.017193809151649475, - -0.020740512758493423, - 0.02698579803109169, - 0.025559404864907265, - 0.014045464806258678, - -0.0211388748139143, - 0.0027869262266904116, - 0.01791342906653881, - -0.013454347848892212, - -0.01896716095507145, - 0.02460847795009613, - -0.024968288838863373, - 0.012901781126856804, - 0.022835124284029007, - -0.0028142333030700684, - -0.01944262534379959, - -0.01846599578857422, - 0.008095739409327507, - -0.008584054186940193, - -0.006804276257753372, - -0.004757853224873543, - -0.029812881723046303, - -0.0083977235481143, - 0.032228752970695496, - -0.03089231252670288, - -0.01267047505825758, - 0.02063770964741707, - -0.016718344762921333, - -0.0028463590424507856, - 0.025919215753674507, - 0.004616498947143555, - 0.001799053163267672, - 0.0134800486266613, - 0.019802436232566833, - 0.007556023541837931, - -0.022513866424560547, - -0.010485909879207611, - -0.009522131644189358, - -0.002221509348601103, - -0.008159991353750229, - 0.02801382914185524, - -0.0169111005961895, - 0.03646937757730484, - -0.038037125021219254, - 0.011282633990049362, - -0.0044012549333274364, - -0.0007047630497254431, - 0.010485909879207611, - 0.027654018253087997, - 0.016461336985230446, - -0.0036752086598426104, - 0.006213158834725618, - 0.016692643985152245, - 0.022205457091331482, - 0.002295399084687233, - 0.005715206265449524, - -0.0023885644041001797, - -0.03497873246669769, - -0.01779777556657791, - -0.0106272641569376, - 0.04507913440465927, - 0.007678101770579815, - -0.011803073808550835, - 0.022835124284029007, - -0.0254823025316, - 0.030326897278428078, - 0.029530173167586327, - -0.028193732723593712, - -0.0036077441181987524, - -0.027756821364164352, - -0.0010432902490720153, - -0.002692154608666897, - -0.004076783079653978, - -0.027962427586317062, - 0.017656421288847923, - -0.000382298807380721, - 0.017309462651610374, - -0.028090929612517357, - 0.0047482154332101345, - 0.02490403689444065, - 0.00618745805695653, - -0.024878336116671562, - 0.011668144725263119, - 0.01481648813933134, - -0.003225445281714201, - 0.03048110194504261, - -0.020444953814148903, - -0.010318854823708534, - 0.0313035249710083, - -0.008404148742556572, - 0.022886525839567184, - -0.0006983378552831709, - 0.026908695697784424, - 0.01700105331838131, - 0.0068171266466379166, - 0.0012930694501847029, - 0.028502142056822777, - -0.009862666949629784, - -0.021832795813679695, - 0.008423424325883389, - 0.015266251750290394, - -0.03138062730431557, - -0.00845555029809475, - -0.03582685813307762, - -0.01917276717722416, - 0.010126098990440369, - -0.0030182329937815666, - 0.013023859821259975, - 0.005259017925709486, - -0.01112842932343483, - 0.009952619671821594, - 0.03310257941484451, - 0.009804840199649334, - -0.017425114288926125, - -0.0078001804649829865, - -0.015587510541081429, - 0.00848767627030611, - -0.014161118306219578, - 0.01761787012219429, - 0.010897122323513031, - -0.021164575591683388, - -0.026728790253400803, - -0.036777786910533905, - -0.02463417872786522, - 0.0074789212085306644, - 0.006701473146677017, - -0.00013643488637171686, - -0.027037199586629868, - 0.01887720823287964, - -0.026625987142324448, - -0.012439168058335781, - -0.011295484378933907, - -0.00299895741045475, - 0.008937438949942589, - -0.015124897472560406, - 0.009072368033230305, - -0.021280229091644287, - -0.009547832421958447, - 0.008641880936920643, - -0.014366724528372288, - -0.034721724689006805, - 0.003360374365001917, - 0.024557076394557953, - 0.00787085760384798, - 0.017630720511078835, - 0.01576741598546505, - 0.0018841869896277785, - 0.0010489122942090034, - -0.006058954168111086, - -0.0007461251807399094, - -0.02325918711721897, - 0.0002535942185204476, - 0.004857443738728762, - 0.015613211318850517, - 0.008866761811077595, - 0.007433944847434759, - -0.0017717460868880153, - 0.015420455485582352, - 0.04245765507221222, - 0.006033253390341997, - 0.022539567202329636, - -0.0011131641222164035, - 0.03485022857785225, - -0.02513534389436245, - 0.01493214163929224, - -0.00644446536898613, - 0.04058149829506874, - -0.007138385903090239, - 0.026201924309134483, - -0.007568873930722475, - -0.04114691540598869, - -0.021164575591683388, - -0.01149466447532177, - -0.000931652553845197, - -0.016435636207461357, - -0.00011645656923064962, - -0.002557225525379181, - 0.003466390073299408, - 0.01896716095507145, - -0.008012211881577969, - 0.0032366893719881773, - 0.010293154045939445, - -0.017463665455579758, - 0.011668144725263119, - 0.006714323535561562, - -0.0033378861844539642, - 0.004340215586125851, - -0.016846848651766777, - -0.013814158737659454, - 0.02492973767220974, - -0.02337484061717987, - 0.015407605096697807, - -0.010768618434667587, - 0.021974150091409683, - 0.016101526096463203, - -0.01682114787399769, - 0.02968437783420086, - -0.011661719530820847, - 0.0029861070215702057, - -0.0036752086598426104, - 0.019044263288378716, - -0.0028415401466190815, - 0.026420380920171738, - -0.021370181813836098, - 0.02325918711721897, - 0.006036465987563133, - -0.006042891182005405, - 0.008237093687057495, - -0.002831902587786317, - 0.01709100604057312, - -0.02026504836976528, - -0.01083287037909031, - 0.04271466284990311, - -0.00979198981076479, - 0.022835124284029007, - 0.002333950251340866, - 0.01955827884376049, - 0.01814473606646061, - 0.011764522641897202, - 0.0017717460868880153, - 0.02022649720311165, - -0.00911734439432621, - 0.010588712990283966, - -0.0023468006402254105, - -0.01350574940443039, - -0.01083287037909031, - -0.015690313652157784, - -0.004340215586125851, - -0.0026118396781384945, - 0.005326482467353344, - -0.015176299028098583, - 0.018221838399767876, - 0.00532969506457448, - -0.013647103682160378, - 0.0066757723689079285, - 0.0004063932574354112, - 0.017669271677732468, - 0.022179756313562393, - -0.011250508017838001, - -0.009194446727633476, - -0.016525588929653168, - 0.054280005395412445, - -0.0023468006402254105, - -0.010678665712475777, - -0.010408807545900345, - 0.025944916531443596, - -0.013261592015624046, - 0.005679867696017027, - 0.014546629972755909, - -0.0022423912305384874, - 0.008834635838866234, - 0.015189149416983128, - 0.011109153740108013, - 0.005165852606296539, - 0.00867400597780943, - -0.008410573936998844, - 0.00867400597780943, - 0.010164650157094002, - 0.005432498175650835, - -0.02043210342526436, - 0.007022732403129339, - -0.014482378028333187, - 0.025148194283246994, - -0.004349853377789259, - -0.02721710503101349, - -0.002897760597988963, - 0.005336120259016752, - -0.02234681136906147, - -0.003164406167343259, - -0.02801382914185524, - -0.007845156826078892, - 0.010138949379324913, - -0.006932780146598816, - -0.007369692903012037, - -0.01720665954053402, - -0.0036398700904101133, - 0.03603246435523033, - -0.012509845197200775, - -0.025083942338824272, - -0.03132922574877739, - -0.007684526965022087, - 0.014546629972755909, - 0.03464462608098984, - 0.029607275500893593, - -0.0179391298443079, - 0.014289622195065022, - 0.004703239072114229, - 0.00347281526774168, - -0.0075495983473956585, - -0.024441422894597054, - 0.01484218891710043, - -0.012593372724950314, - -0.012754001654684544, - 0.004388404544442892, - 0.005117663647979498, - -0.017450815066695213, - 0.026523184031248093, - 0.006701473146677017, - -0.009811265394091606, - -0.015690313652157784, - 0.010710791684687138, - -0.003803712548688054, - -0.006177820265293121, - -0.005959363654255867, - 0.011957278475165367, - -0.0010191957699134946, - 0.023040730506181717, - -0.013235891237854958, - 0.01800338178873062, - 0.023323439061641693, - -0.024351470172405243, - -0.017900578677654266, - 0.002194202272221446, - 0.013261592015624046, - 0.005355395842343569, - 0.016731195151805878, - -0.022655220702290535, - 0.0335908941924572, - -0.006001127418130636, - -0.00807646382600069, - 0.032639965415000916, - -0.012387766502797604, - 0.010113248601555824, - 0.018710153177380562, - 0.0037587361875921488, - -0.00612963130697608, - 0.019571129232645035, - -0.015330503694713116, - 0.002031966345384717, - 0.019249869510531425, - 0.026124821975827217, - -0.01565176248550415, - 0.0014079198008403182, - -0.016422785818576813, - -0.019095664843916893, - -0.004722514655441046, - -0.006881378591060638, - -0.025919215753674507, - -0.0055160257034003735, - -0.0071705118753015995, - -0.010563012212514877, - 0.011051326990127563, - -0.0164484865963459, - -0.014533779583871365, - -0.012066506780683994, - -0.009188021533191204, - -0.0019098877673968673, - -0.004561884794384241, - -0.006454103160649538, - 0.01525340136140585, - -0.02325918711721897, - 0.012079357169568539, - 0.01116055529564619, - -0.02211550436913967, - 0.00905951764434576, - 0.002393383299931884, - 0.006785000674426556, - 0.017026754096150398, - -0.006977756507694721, - -0.020097993314266205, - 0.009162320755422115, - 0.008230668492615223, - -0.014045464806258678, - -0.022822273895144463, - -0.021922748535871506, - -0.03073810786008835, - -0.013827009126543999, - 0.008718982338905334, - -0.03600676357746124, - 0.0055192383006215096, - -0.020277898758649826, - 0.033488091081380844, - -0.005445348564535379, - -0.005927237682044506, - -0.008121440187096596, - -0.007459645625203848, - -0.02589351497590542, - 0.03377079963684082, - 0.00266484753228724, - -0.00830777082592249, - 0.004060720093548298, - -0.00842984952032566, - -0.011957278475165367, - -0.026857294142246246, - -0.00979198981076479, - -0.03364229574799538, - -0.00804433785378933, - 0.017682122066617012, - -0.0051016006618738174, - 0.029530173167586327, - 0.014713685028254986, - 0.001035258756019175, - 0.005580277647823095, - -0.01738656312227249, - 0.016127226874232292, - -0.004250263329595327, - 0.0013765969779342413, - -0.005686292890459299, - 0.00033491302747279406, - 0.034310515969991684, - 0.03240865841507912, - -0.020856166258454323, - 0.0003403342852834612, - -0.033282484859228134, - 0.042123544961214066, - 0.020560607314109802, - -0.00653441809117794, - 0.022925077006220818, - -0.005365033634006977, - -0.0062870485708117485, - -0.028579244390130043, - 0.0030776660423725843, - 0.018337491899728775, - 0.014173968695104122, - 0.008931013755500317, - -0.011944428086280823, - -0.025006840005517006, - -0.00967633631080389, - -0.02589351497590542, - 0.002101037185639143, - -0.011815924197435379, - 0.0025524066295474768, - -0.008500526659190655, - 0.00399325555190444, - -0.019725333899259567, - 0.009098068810999393, - 0.0017717460868880153, - -0.03392500430345535, - -0.02716570347547531, - -0.010762193240225315, - -0.015754565596580505, - 0.020444953814148903, - -0.03934786468744278, - 0.01658984087407589, - -0.015754565596580505, - 0.02358044683933258, - -4.0985683881444857e-05, - 0.0012063294416293502, - 0.0030198392923921347, - -0.009624934755265713, - 0.0197638850659132, - 0.010261028073728085, - 0.015613211318850517, - -0.0007886920939199626, - 0.015394754707813263, - 0.031611934304237366, - -0.006264560390263796, - -0.0004770703671965748, - 0.005037348717451096, - -0.0026038081850856543, - -0.023773202672600746, - 0.03006988950073719, - -0.0018102972535416484, - 0.03664928302168846, - 0.013659954071044922, - -0.006338449660688639, - 0.033822201192379, - 0.0018215413438156247, - -0.017566468566656113, - -0.017810625955462456, - -0.01978958584368229, - -0.04019598662853241, - 0.012490569613873959, - -0.00740824406966567, - 0.006193883251398802, - -0.00018241515499539673, - -0.01862020045518875, - -0.022680921480059624, - 0.027474112808704376, - 0.0033057602122426033, - 0.0018440295243635774, - -0.013113812543451786, - 0.029761480167508125, - -0.001166975125670433, - -0.013672804459929466, - 0.021678591147065163, - 0.00015591125702485442, - -0.019982341676950455, - 0.007125535514205694, - -0.007459645625203848, - 0.0009702036622911692, - 0.017129557207226753, - -0.01431532297283411, - 0.019455475732684135, - 0.010299579240381718, - -0.03194604441523552, - 0.012304238975048065, - 0.009759863838553429, - -0.003402138128876686, - -0.0039450665935873985, - 0.007511047180742025, - -0.02367039956152439, - -0.015664612874388695, - -0.008519802242517471, - -0.017129557207226753, - -0.018633050844073296, - 0.01750221662223339, - -0.012047231197357178, - -0.008526227436959743, - 0.01946832612156868, - -0.0019757458940148354, - -0.02202555164694786, - -0.034721724689006805, - -0.029196063056588173, - 0.02047065459191799, - -0.006267772987484932, - 0.04862583801150322, - 0.024981139227747917, - -0.01629428192973137, - -0.026240475475788116, - -0.045644547790288925, - 0.02778252214193344, - 0.011738821864128113, - 0.013081686571240425, - 0.005400372203439474, - 0.00393542880192399, - -0.021511536091566086, - -0.010344555601477623, - -0.00022207062283996493, - -0.012805403210222721, - -0.01303671021014452, - 0.019686782732605934, - 0.005246167536824942, - -0.0059400880709290504, - -0.0033218231983482838, - 0.022192606702446938, - -0.02038070186972618, - -0.009188021533191204, - 0.003501728642731905, - -0.00848767627030611, - 0.0022439975291490555, - 0.003222232684493065, - 0.00100232963450253, - 0.016718344762921333, - -0.023233486339449883, - 0.01923701912164688, - 0.014790787361562252, - -0.004163523204624653, - 0.0014103292487561703, - -0.024261517450213432, - -0.013557150959968567, - 0.025880664587020874, - -0.00810216460376978, - 0.021100323647260666, - -0.0034246263094246387, - 0.006579394452273846, - -0.005214041564613581, - 0.0007794558769091964, - -0.013749906793236732, - 0.009425753727555275, - 0.0018359980313107371, - 0.02038070186972618, - 0.0035434921737760305, - 0.002692154608666897, - -0.008815360255539417, - -0.002197414869442582, - 0.012754001654684544, - 0.009721312671899796, - -0.00559312803670764, - -0.037420306354761124, - -0.0008031487232074142, - -0.013415796682238579, - 0.008031487464904785, - -0.008738257922232151, - -0.0038840272463858128, - -0.033256784081459045, - -0.004015743732452393, - -0.026677388697862625, - 0.0103959571570158, - -0.018016232177615166, - 0.03125212341547012, - -0.017283761873841286, - -0.0026455719489604235, - 0.008526227436959743, - 0.005252592731267214, - 0.02216690592467785, - -0.01608867570757866, - -0.040710002183914185, - 0.004157098010182381, - 0.01576741598546505, - -0.02501969039440155, - 0.033693697303533554, - 0.0030166266951709986, - -0.02264237031340599, - -0.027731120586395264, - 0.0022134778555482626, - 0.015895919874310493, - -0.022603819146752357, - 0.009104494005441666, - -0.0031724374275654554, - -0.003302547615021467, - -0.0033732247538864613, - 0.002197414869442582, - 0.007331141736358404, - -0.023323439061641693, - -0.0011830381117761135, - -0.015433305874466896, - -0.015536108985543251, - 0.029735779389739037, - 0.0004525743133854121, - -0.033899303525686264, - 0.00920729711651802, - -0.022937927395105362, - -0.023413391783833504, - 0.018902909010648727, - -0.01750221662223339, - 0.014418126083910465, - -0.020740512758493423, - 0.005120876245200634, - -0.01368565484881401, - -0.025675058364868164, - -0.007080559153109789, - -0.005525663495063782, - -0.008442699909210205, - -0.006785000674426556, - 0.008063613437116146, - -0.009046667255461216, - -0.018183287233114243, - -0.026022018864750862, - 0.03341098874807358, - 0.011796648614108562, - 0.01685969904065132, - 0.005454986356198788, - 0.0061135683208703995, - 0.015420455485582352, - 0.008333471603691578, - 0.029787180945277214, - -0.02052205614745617, - 0.02545660175383091, - -0.0070998347364366055, - -0.02401736006140709, - -0.01205365639179945, - 0.0008513376815244555, - 0.029298866167664528, - 0.029170362278819084, - -0.027114301919937134, - -0.011115578934550285, - 0.0007083772215992212, - -0.02390170656144619, - -0.01268332451581955, - 0.015844518318772316, - 0.012272113002836704, - -0.004388404544442892, - 0.0134800486266613, - -0.011687420308589935, - 0.01741226390004158, - 0.005638104397803545, - 0.01237491611391306, - -0.0317661389708519, - -0.022809423506259918, - 0.01133403554558754, - 0.0058019463904201984, - 0.019391223788261414, - 0.003964342176914215, - -0.03981047868728638, - -0.006036465987563133, - 0.006245284806936979, - -0.01711670681834221, - -0.009682761505246162, - 0.021511536091566086, - 0.011295484378933907, - -0.007363267708569765, - -0.030763808637857437, - 0.036803487688302994, - 0.004806042183190584, - -0.011880176141858101, - 0.019481176510453224, - -0.0284507405012846, - -4.949404319631867e-05, - -0.003964342176914215, - -0.00900169089436531, - -0.03688059002161026, - 0.0164484865963459, - -0.001927556935697794, - -0.00810216460376978, - -0.010093973018229008, - 0.016988202929496765, - 0.001133242854848504, - -0.004690388683229685, - -0.011835199780762196, - 0.0027194616850465536, - 0.012869655154645443, - -0.008346321992576122, - 0.01083287037909031, - 0.0031724374275654554, - 0.006656496785581112, - 0.00166251789778471, - 0.004828530363738537, - -0.028527842834591866, - -0.006560118868947029, - 0.00525580532848835, - -0.007748778909444809, - 0.02378605306148529, - -0.028964756056666374, - 0.003223838983103633, - -0.0021444072481244802, - 0.0058051589876413345, - -0.030789509415626526, - -0.016898250207304955, - -0.010074697434902191, - 0.014944992028176785, - -0.014867889694869518, - -0.01743796467781067, - 0.01814473606646061, - 0.0021267379634082317, - 0.019596830010414124, - -0.006033253390341997, - -0.030018487945199013, - 0.00033149964292533696, - -0.019069964066147804, - 0.0007561645470559597, - 0.007382543291896582, - -0.01588306948542595, - 0.0033218231983482838, - 0.006862103007733822, - -0.003627019701525569, - -0.0023917770013213158, - 0.023824604228138924, - 0.1866903156042099, - -0.03477312624454498, - 0.026651687920093536, - 0.009091643616557121, - -0.028939055278897285, - -0.007164086680859327, - 0.04734079912304878, - -0.02175569348037243, - 0.011269783601164818, - 0.013454347848892212, - -0.012953182682394981, - 0.0012071325909346342, - -0.02047065459191799, - 0.011687420308589935, - 0.034053508192300797, - -0.034104909747838974, - -0.054074399173259735, - -0.027037199586629868, - -0.006971331313252449, - -0.004520121030509472, - 0.02278372272849083, - 0.0008192117093130946, - -0.01617862842977047, - -0.014084015972912312, - 0.032434359192848206, - 0.006804276257753372, - 0.0006802669959142804, - 0.0038229881320148706, - 0.00039514919626526535, - 0.016808297485113144, - -0.00923299789428711, - -0.02340054139494896, - 0.010929248295724392, - -0.02008514292538166, - -0.009534982033073902, - -0.010415232740342617, - 0.004504058044403791, - -0.016127226874232292, - 0.006360937841236591, - 0.02072766236960888, - -0.008070038631558418, - 0.007305440958589315, - -0.003363586962223053, - -0.021164575591683388, - 0.005795521195977926, - 0.06070519611239433, - -0.003858326468616724, - 0.006605095230042934, - 0.0029893196187913418, - -0.010036146268248558, - 0.0014569117920473218, - -0.0016079037450253963, - 0.025816412642598152, - 0.03831983357667923, - -0.016512738540768623, - 0.010755768045783043, - -0.0065729692578315735, - -0.009740588255226612, - -0.025032540783286095, - 0.012150034308433533, - 0.013402946293354034, - 0.003334673587232828, - -0.019391223788261414, - 0.03785721957683563, - -0.010286728851497173, - 0.015497557818889618, - -0.004089633468538523, - -0.005265443120151758, - -0.00033531460212543607, - -0.016319982707500458, - -0.0035499173682183027, - -0.01862020045518875, - -0.011738821864128113, - 0.03443901985883713, - -0.005846922751516104, - -0.013531450182199478, - 0.037780117243528366, - 0.023965958505868912, - -0.0006621961365453899, - 0.04063289985060692, - -0.014071165584027767, - 0.0039097280241549015, - 0.0012191798305138946, - -0.027037199586629868, - 0.002038391539826989, - 0.0034439018927514553, - 0.00452975882217288, - 0.014276771806180477, - 0.013775607571005821, - -0.02252671681344509, - -0.02783392369747162, - -0.02005944214761257, - 0.008584054186940193, - -0.01001044549047947, - 0.005628466606140137, - 0.027885325253009796, - 0.035724055022001266, - -0.003986830357462168, - -0.004414105322211981, - 0.01720665954053402, - -0.02193559892475605, - 0.07180792093276978, - 0.00824994407594204, - -0.00029475559131242335, - -0.021357331424951553, - 0.012811828404664993, - 0.00016223604325205088, - 0.011770947836339474, - -0.01640993542969227, - -0.009194446727633476, - 0.00030178314773365855, - -0.020355001091957092, - 0.015369053930044174, - -0.010203201323747635, - -0.010203201323747635, - 0.0020913993939757347, - -0.014379574917256832, - -0.004166735801845789, - 0.0020576671231538057, - -0.011019201017916203, - -0.0037908621598035097, - -0.010948523879051208, - 0.01030600443482399, - 0.008494101464748383, - -0.000934062001761049, - -0.020239347591996193, - -0.02088186703622341, - -0.007266889791935682, - -0.013055985793471336, - 0.011880176141858101, - 0.009400052949786186, - -0.0443338118493557, - 0.03192034363746643, - -0.020714811980724335, - -0.0033121854066848755, - -0.003000563709065318, - 0.012432742863893509, - -0.009914068505167961, - -0.029118960723280907, - 0.00046823572483845055, - 0.0034149885177612305, - -0.02660028636455536, - -0.0007023536018095911, - -0.004995585419237614, - 0.028887653723359108, - -0.03503013402223587, - -0.0038133503403514624, - -0.003530641784891486, - 0.0022359660360962152, - -0.010974224656820297, - -0.03323108330368996, - -0.026420380920171738, - 0.015343353152275085, - -0.012150034308433533, - 0.02865634672343731, - 0.004022168926894665, - -0.006209946237504482, - -0.021794244647026062, - -0.008950289338827133, - 0.00505019910633564, - -0.0030214455910027027, - -0.013839859515428543, - 0.03269136697053909, - -0.003223838983103633, - -0.0011115578236058354, - -0.003357161767780781, - -0.1618119776248932, - 0.03813992813229561, - 0.0010609595337882638, - -0.027268506586551666, - 0.013929812237620354, - -0.010235327295958996, - 0.0302754957228899, - 0.0075174723751842976, - 0.007530322764068842, - -0.004417317919433117, - 0.010126098990440369, - -0.002769256941974163, - -0.015510408207774162, - -0.006617945618927479, - 3.915349952876568e-05, - 0.003463177476078272, - -0.02739701047539711, - 0.03682918846607208, - 0.034927330911159515, - 0.018980011343955994, - 0.01867160201072693, - -0.023143533617258072, - -0.002957193646579981, - -0.0042213499546051025, - -0.011173405684530735, - 0.004414105322211981, - -0.00421492476016283, - 0.03670068457722664, - -0.03646937757730484, - -0.01400691457092762, - 0.00685567781329155, - 0.0059754266403615475, - 0.0333595871925354, - 0.022333960980176926, - -0.015754565596580505, - 0.009502856060862541, - -0.028579244390130043, - -0.008198542520403862, - -0.017810625955462456, - 0.014071165584027767, - 0.010434508323669434, - 0.01525340136140585, - -0.0060782297514379025, - -0.0013268017210066319, - -0.00798651110380888, - -0.003996468149125576, - 0.0134800486266613, - -0.008269219659268856, - 0.00807646382600069, - -0.008577628992497921, - 0.012323514558374882, - -0.01853024773299694, - 0.02084331586956978, - 0.004002893343567848, - 0.024826934561133385, - 0.016551289707422256, - 0.0011918727541342378, - 0.01994379051029682, - -0.009599233977496624, - 0.006344874855130911, - -0.01080716960132122, - -0.029375968500971794, - 0.012901781126856804, - 0.020804764702916145, - -0.0013741875300183892, - -0.004343428183346987, - -0.008346321992576122, - -0.019185617566108704, - -0.02011084370315075, - -0.005326482467353344, - -0.0010593532351776958, - 0.0028784850146621466, - 0.007042007986456156, - -0.01350574940443039, - 0.014649433083832264, - -0.012998159043490887, - -0.012329939752817154, - -0.009104494005441666, - 0.0179391298443079, - -0.001566943246871233, - -0.019802436232566833, - 0.035364244133234024, - -0.0317661389708519, - -0.030763808637857437, - -0.0036205945070832968, - -0.007414669264107943, - -0.013235891237854958, - -0.0058726235292851925, - 0.0076973773539066315, - -0.008828210644423962, - 0.008834635838866234, - -0.016641242429614067, - -0.04220064729452133, - -0.012908206321299076, - -0.005091962870210409, - -0.015009243972599506, - -0.0008609754731878638, - -0.023863155394792557, - -0.01700105331838131, - -0.009271549060940742, - 0.00207051751203835, - -0.02346479333937168, - -0.020869016647338867, - 0.009091643616557121, - 0.02143443375825882, - -0.013942662626504898, - -0.025739310309290886, - -0.007029157597571611, - 0.03857684135437012, - 0.0023194935638457537, - -0.02061200886964798, - -0.00207051751203835, - -0.007048433180898428, - 0.026934396475553513, - 0.01261264830827713, - 0.009933344088494778, - -0.018196137621998787, - -0.01978958584368229, - 0.022976478561758995, - 0.010935673490166664, - 0.07216773182153702, - 0.0027467687614262104, - 0.014238220639526844, - -0.01116055529564619, - 0.000333708303514868, - -0.020457804203033447, - -0.08414428681135178, - 0.008449125103652477, - 0.0010593532351776958, - 0.039450667798519135, - 0.00911734439432621, - 0.01894146017730236, - 0.004671113099902868, - 0.0007497393526136875, - -0.0032832720316946507, - 0.01318448968231678, - -0.005644529592245817, - -0.0057023558765649796, - -0.02122882753610611, - -0.007967235520482063, - -0.004433380905538797, - -0.017283761873841286, - -0.023426242172718048, - -0.008924588561058044, - -0.023117832839488983, - 0.028065228834748268, - 0.003829413326457143, - 0.0021749266888946295, - -0.013338694348931313, - -0.02595776692032814, - -0.029555873945355415, - 0.02022649720311165, - -0.03089231252670288, - 0.006193883251398802, - 0.02492973767220974, - 5.4363132221624255e-05, - -0.0302754957228899, - -0.024004509672522545, - -0.0012039199937134981, - -0.011957278475165367, - 0.004147460218518972, - -0.01894146017730236, - -0.021794244647026062, - -0.009856241755187511, - 0.015908770263195038, - -0.015034944750368595, - -0.00984981656074524, - 0.009554257616400719, - 0.0022054463624954224, - -0.02172999270260334, - 0.018774405121803284, - 0.024878336116671562, - -0.0029459495563060045, - 0.0028094144072383642, - 0.005464624147862196, - -0.0038454760797321796, - -0.04695528745651245, - -0.0141097167506814, - -0.016332833096385002, - -0.014032614417374134, - 0.018016232177615166, - 0.02675449103116989, - -0.0034599648788571358, - 0.0005951332277618349, - -0.02437717095017433, - 0.00506626209244132, - -0.01116055529564619, - 0.018800105899572372, - -0.019609680399298668, - 0.028090929612517357, - -0.010389531962573528, - 0.006103930529206991, - -0.018517397344112396, - -0.0006453300011344254, - -0.013737056404352188, - -0.01277327723801136, - -0.01996949128806591, - 0.008121440187096596, - 0.005779458209872246, - -0.011044901795685291, - -0.020984670147299767, - -0.003771586576476693, - -0.02504539117217064, - -0.0019837773870676756, - 0.03644367679953575, - -0.020779063925147057, - 0.0019821710884571075, - -0.029093259945511818, - 0.027525514364242554, - 0.011655294336378574, - -0.005538513883948326, - 0.016165778040885925, - 0.023361990228295326, - -0.016332833096385002, - 0.02296362817287445, - -0.019866688176989555, - -0.0035434921737760305, - 0.018067633733153343, - -0.007658826652914286, - -0.026266176253557205, - -0.017489366233348846, - 0.018723003566265106, - -0.004105696454644203, - -0.024801233783364296, - 0.01811903528869152, - -0.005827647168189287, - 0.021241677924990654, - -0.0012762033147737384, - -0.0505019947886467, - 0.021036071702837944, - -0.020444953814148903, - -0.006695047952234745, - -0.036777786910533905, - 0.004481569863855839, - 0.026034869253635406, - 0.019005712121725082, - -0.004073570482432842, - -0.006662921980023384, - -0.009592808783054352, - 0.019339822232723236, - 0.00273070577532053, - -0.002761225448921323, - -0.034284815192222595, - -0.0207919143140316, - 0.04053009673953056, - 0.03024979494512081, - 0.01401976402848959, - 0.018581649288535118, - -0.017926279455423355, - 0.0046100737527012825, - 0.008789659477770329, - -0.004745002835988998, - -0.024390021339058876, - 0.010023295879364014, - -0.0021781392861157656, - -0.03713759779930115, - -0.01481648813933134, - -0.008166416548192501, - -0.011250508017838001, - -0.004362703766673803, - 0.0010754162212833762, - -2.710627086344175e-05, - -0.012567671947181225, - 0.006136056501418352, - 0.03919366002082825, - 0.03526144102215767, - 0.014546629972755909, - 0.05875193700194359, - -0.0269600972533226, - -0.04004178196191788, - 0.03156053274869919, - 0.005011647939682007, - -0.026703089475631714, - -0.0002600194129627198, - 0.017399413511157036, - 0.020920418202877045, - 0.03559555113315582, - -0.01060156337916851, - 0.03150913119316101, - 0.013017434626817703, - -0.01208578236401081, - 0.007440370041877031, - 0.019404074177145958, - -0.011077027767896652, - -0.012664049863815308, - 0.0023403754457831383, - 0.01184805016964674, - -0.0029363117646425962, - 0.05371458828449249, - 0.015433305874466896, - -0.012419892475008965, - -0.006396276410669088, - 0.0037844369653612375, - -0.011809499002993107, - -0.01231708936393261, - 0.002891335403546691, - -0.005969001445919275, - -0.034310515969991684, - -0.02351619489490986, - -0.005397159606218338, - 0.013544300571084023, - 0.017373712733387947, - 0.023297738283872604, - 0.013145938515663147, - 0.02351619489490986, - 0.0025732885114848614, - -0.01629428192973137, - 0.024415722116827965, - 0.010151799768209457, - 0.006932780146598816, - -0.04248335584998131, - -0.01565176248550415, - 0.00772307813167572, - 0.03192034363746643, - -0.0180547833442688, - 0.0018938247812911868, - -0.005320057272911072, - 0.01885150745511055, - 0.008757533505558968, - 0.015728864818811417, - -0.010518035851418972, - 0.016024423763155937, - 0.014765086583793163, - -0.006662921980023384, - -0.0013276048703119159, - 0.01452092919498682, - 0.03438761830329895, - 0.032665666192770004, - 0.02305358089506626, - 0.007254039403051138, - -0.00041442475048825145, - -0.0035691929515451193, - -0.014983543194830418, - -0.00923299789428711, - -0.023361990228295326, - -0.02202555164694786, - 0.00016143289394676685, - 0.0282194335013628, - -0.006521567702293396, - 0.0051048132590949535, - -0.0023532258346676826, - -0.0005923222051933408, - -0.027037199586629868, - 0.006245284806936979, - -0.007029157597571611, - -0.035158637911081314, - -0.01896716095507145, - 0.03006988950073719, - 0.002187777077779174, - 0.012818253599107265, - 0.0238760057836771, - -0.008808935061097145, - 0.034284815192222595, - -0.004722514655441046, - 0.009310100227594376, - -0.027037199586629868, - -0.0029491621535271406, - 0.0075495983473956585, - 0.00876395870000124, - 0.004478357266634703, - 0.009515706449747086, - 0.0005361018120311201, - -0.009657060727477074, - 0.009862666949629784, - 0.013852709904313087, - 0.02483978495001793, - 0.022809423506259918, - 0.09992455691099167, - 0.017142407596111298, - -0.029530173167586327, - 0.03826843202114105, - 0.0029523747507482767, - -0.005599553231149912, - 0.008230668492615223, - 0.0033378861844539642, - -0.01926271989941597, - -0.023503344506025314, - 0.0012842348078265786, - -0.018106184899806976, - -0.013197340071201324, - -0.006695047952234745, - -0.00012067309580743313, - 0.0019371947273612022, - -0.025700759142637253, - 0.00923299789428711, - -0.022269709035754204, - -0.011449688114225864, - 0.03875674679875374, - -0.007498196791857481, - 0.002854390535503626, - 0.017425114288926125, - -0.025880664587020874, - -0.0051369392313063145, - -0.003726610215380788, - 0.007254039403051138, - 0.003906515426933765, - 0.01994379051029682, - 0.004282389301806688, - -0.0015581086045131087, - -0.042766064405441284, - -0.008198542520403862, - 0.009053092449903488, - -0.012484144419431686, - 0.027679719030857086, - 0.0003104170027654618, - 0.0209075678139925, - -0.004761065822094679, - -0.0007063693483360112, - 0.01045378390699625, - 0.002666453830897808, - -0.008333471603691578, - 0.006065379362553358, - -0.013312993571162224, - -0.01021605171263218, - 0.010331705212593079, - -0.003101760521531105 - ], - "sparse": "SparseEmbedding(values=array([1.49429557, 1.49429557, 1.49429557, 1.49429557, 1.77974404,\n 1.49429557, 1.49429557, 1.49429557, 1.49429557, 1.90077624,\n 1.49429557, 1.49429557, 1.77974404, 1.49429557, 1.77974404,\n 1.49429557, 1.49429557, 1.49429557, 1.77974404, 1.49429557,\n 1.49429557, 1.77974404, 1.49429557, 1.49429557, 1.49429557,\n 1.49429557, 1.49429557, 1.49429557, 1.49429557, 1.49429557,\n 1.49429557, 1.49429557, 1.49429557, 1.49429557, 1.49429557,\n 1.49429557, 1.49429557, 1.49429557, 1.49429557, 1.49429557,\n 1.49429557, 1.49429557]), indices=array([1616874354, 1918475883, 38701520, 338063690, 762622902,\n 1513008207, 556006164, 176244452, 1843285268, 408270109,\n 51855221, 864372134, 1286817522, 2103309648, 1109731834,\n 1638510030, 1974375909, 1118292127, 164058840, 382375572,\n 1805214845, 915344176, 172556172, 1497566411, 1692320747,\n 86872825, 651620528, 1117013441, 14784032, 2124172637,\n 192819851, 1614473270, 677983129, 1375589168, 2096066318,\n 48174616, 760321374, 1515684580, 728497482, 1862284984,\n 1060986471, 100619008]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 7, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 50 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000008.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000008.json deleted file mode 100644 index b0ea03ca4312d401b18784423f8669e33c82f82f..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000008.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000008", - "content": "I Zusammenfassung", - "embedding": { - "dense": [ - -0.013902418315410614, - -0.0004635201476048678, - -0.0006160357734188437, - -0.02999660186469555, - -0.018260464072227478, - 0.008002491667866707, - -0.02422410435974598, - -0.010882370173931122, - -0.006046468857675791, - -0.006438310723751783, - 0.010570170357823372, - 0.01845160499215126, - 0.004080888815224171, - 0.005603655707091093, - 0.009882058016955853, - -0.01515121478587389, - 0.04416662082076073, - -0.029512375593185425, - 0.0029404060915112495, - -0.0010297793196514249, - -0.008059835061430931, - 0.0008450083550997078, - -0.007677549961954355, - -0.011283768340945244, - 0.007989749312400818, - -0.002747670980170369, - 0.011570482514798641, - -0.021458912640810013, - 0.012851135805249214, - -0.004721215460449457, - -0.0017314308788627386, - -0.004351673647761345, - -0.01483264472335577, - -0.026887353509664536, - 0.00397894624620676, - 0.0038706320337951183, - -0.0045651160180568695, - -0.019050518050789833, - 0.010512827895581722, - -0.011232797056436539, - 0.01021974254399538, - 0.0033577335998415947, - -0.002067522844299674, - -0.024389760568737984, - 0.0005148896598257124, - 0.00385470362380147, - 0.03618961200118065, - 0.005342428106814623, - -0.020719828084111214, - 0.012819278985261917, - 0.014998300932347775, - 0.015367843210697174, - -0.011009798385202885, - -0.020006230100989342, - -0.00259634992107749, - -0.0019034589640796185, - -0.009984000585973263, - 0.018400633707642555, - -0.011449425481259823, - -0.011920909397304058, - 0.0014192317612469196, - 0.00547622749581933, - -0.017687035724520683, - 0.01791640743613243, - -0.012233109213411808, - 0.00024848501197993755, - -0.031500253826379776, - 0.0089199747890234, - -0.01782720722258091, - 0.004536444321274757, - 0.04872855171561241, - 0.03364104777574539, - 0.021548110991716385, - -0.025715013965964317, - 0.028136150911450386, - -0.004042660351842642, - -0.005520827602595091, - 0.004641572944819927, - 0.006970323622226715, - 0.009193945676088333, - 0.02790677919983864, - -0.023561477661132812, - 0.010519199073314667, - 0.025421928614377975, - 0.023650677874684334, - 0.020299315452575684, - -0.014705216512084007, - 0.010156028904020786, - -0.024351531639695168, - -0.01625983975827694, - 0.0032064125407487154, - 0.03142379969358444, - -0.008824404329061508, - 0.01804383471608162, - 0.004421758931130171, - -0.005323313642293215, - -0.02421136200428009, - 0.017062637954950333, - 6.963752821320668e-05, - -0.015609956346452236, - 0.00653069606050849, - 0.014870872721076012, - -0.009219431318342686, - -0.0029802273493260145, - -0.019955258816480637, - -0.010754941962659359, - 0.012768307700753212, - 0.010990683920681477, - 0.01069122739136219, - 0.015558985061943531, - 0.0011715431464836001, - 0.005195885431021452, - -0.029537860304117203, - -0.029945630580186844, - 0.01316333469003439, - -0.021624568849802017, - 0.009467916563153267, - -0.01483264472335577, - 0.026275698095560074, - -0.008219120092689991, - 0.025090616196393967, - 0.016017727553844452, - 0.0023207864724099636, - -0.022503823041915894, - 0.013609333895146847, - 0.002110529923811555, - 0.002199729671701789, - 4.571985118673183e-05, - -0.018209492787718773, - -0.020363029092550278, - -0.0009079260635189712, - 0.019547488540410995, - 0.013016792014241219, - 0.0029340346809476614, - -0.005243671126663685, - 0.005148099735379219, - -0.01373676210641861, - -0.0019114232854917645, - -0.03320779278874397, - -0.03845783695578575, - 0.005788426846265793, - 0.006753695663064718, - -0.031117970123887062, - -0.03438013419508934, - 0.012640879489481449, - 0.013074135407805443, - 0.015125729143619537, - 0.02359970659017563, - 0.003059870097786188, - -0.011806224472820759, - 0.00653069606050849, - -0.025447415187954903, - 0.040088918060064316, - -0.006352296564728022, - -0.006457424722611904, - 0.003153848461806774, - -0.0077476357109844685, - 0.003548875916749239, - -0.025511128827929497, - -0.005887183826416731, - 0.025613071396946907, - -0.0037814322859048843, - 0.016960695385932922, - -0.017992863431572914, - 0.008569547906517982, - 0.03180608153343201, - 0.017776235938072205, - -0.012264966033399105, - 0.01613241247832775, - -0.021637311205267906, - -0.001925758901052177, - 0.0364699549973011, - -0.027218667790293694, - 0.03575635701417923, - -0.016489211469888687, - 0.009385088458657265, - 0.012067452073097229, - 0.012583536095917225, - -0.03524664416909218, - -0.009385088458657265, - -0.019687660038471222, - 0.0057661267928779125, - 0.0029324418865144253, - 0.0006048858049325645, - -0.01615789718925953, - -0.0030662415083497763, - 0.02023559994995594, - 0.010480971075594425, - -0.005657813046127558, - 0.013825961388647556, - 0.007703035604208708, - 0.028467463329434395, - 0.008983689360320568, - -0.01503652986139059, - -0.6744520664215088, - -0.021012913435697556, - -0.00762657867744565, - -0.026989296078681946, - 0.026887353509664536, - 0.02065611444413662, - 0.011736138723790646, - -0.004450430627912283, - 0.017139095813035965, - 0.03881463408470154, - 0.002065930049866438, - 0.007231551222503185, - 0.009531630203127861, - -0.006721838377416134, - -0.014119046740233898, - 0.008008863776922226, - -0.021025655791163445, - -0.03134734183549881, - -0.0031602198723703623, - 0.007556493394076824, - -0.029283003881573677, - 0.03152574226260185, - -0.003399147652089596, - -0.016744067892432213, - 0.01634903997182846, - 0.0025788284838199615, - -0.005568613298237324, - -0.011513139121234417, - 0.0009174831793643534, - -0.006740952841937542, - -0.02821260690689087, - 0.002140793949365616, - -0.01216939464211464, - 0.002926070475950837, - 0.043962735682725906, - -0.0011165897594764829, - -0.003959831781685352, - 0.014705216512084007, - 0.010391770862042904, - 0.0419238843023777, - -0.012335051782429218, - -0.003450118936598301, - 0.013966132886707783, - -0.016298068687319756, - 0.008448490872979164, - 0.007652064319700003, - 0.03547601401805878, - -0.0013587033608928323, - 0.01603046990931034, - -0.009206688962876797, - -0.0036189614329487085, - -0.0026839568745344877, - 0.004055403172969818, - -0.01383870467543602, - -0.010742198675870895, - -0.0015848884359002113, - 0.01563544198870659, - -0.012781050056219101, - -0.007492779288440943, - 0.003504276042804122, - -0.012978564016520977, - 0.0026823640801012516, - -0.005256413947790861, - -0.016718581318855286, - -0.008021606132388115, - 0.0391969196498394, - -0.002242736518383026, - -0.0005276324809528887, - 0.03404881805181503, - -0.005227742716670036, - -0.015011044219136238, - 0.011513139121234417, - -0.014883616007864475, - -0.019534746184945107, - 0.027193181216716766, - -0.005610027350485325, - 0.012628136202692986, - -0.011487653478980064, - -0.021051140502095222, - 0.015291386283934116, - -0.0011452611070126295, - -0.014909101650118828, - -0.003494718810543418, - -0.006651753094047308, - 0.024147646501660347, - -0.029206547886133194, - -0.019713144749403, - 0.004080888815224171, - -0.008250976912677288, - 0.015163958072662354, - 0.030888600274920464, - 0.029843688011169434, - -0.033182308077812195, - 0.0008306726813316345, - -0.001930537517182529, - 0.025192558765411377, - -0.020834513008594513, - 0.0352211594581604, - 0.025218043476343155, - -0.04855015128850937, - -0.0033003909047693014, - -0.000899961800314486, - 0.013481905683875084, - -0.010410885326564312, - -0.014679730869829655, - 0.004093631636351347, - -0.021841196343302727, - -0.0016231168992817402, - 0.039579205214977264, - -0.02515432983636856, - 0.006282211281359196, - -0.014322931878268719, - 0.006384153850376606, - -0.021841196343302727, - -0.009187574498355389, - -0.024198617786169052, - 0.03081214241683483, - 0.0084357475861907, - 0.021548110991716385, - -0.008512204512953758, - 0.0033003909047693014, - -0.02181571163237095, - 0.028645863756537437, - -0.004568301606923342, - 0.005613212939351797, - -0.005947711877524853, - -0.014921844005584717, - -0.009206688962876797, - -0.019853316247463226, - 0.0004089649301022291, - -0.0012671143049374223, - 0.003131548408418894, - 0.019968001171946526, - 0.011646939441561699, - 0.007683921605348587, - -0.006460610777139664, - 0.023854563012719154, - -0.008314691483974457, - 0.012589908204972744, - -0.025829698890447617, - 0.005243671126663685, - 0.0012607428943738341, - 0.011793481186032295, - -0.014654245227575302, - -0.004925100598484278, - -0.01990428753197193, - -0.010474598966538906, - -0.017215551808476448, - -0.022771421819925308, - 0.034966301172971725, - -0.012984935194253922, - -0.0025804212782531977, - -0.004437687806785107, - 0.0084357475861907, - 0.03183156996965408, - 0.014972815290093422, - -0.013016792014241219, - -0.003309947904199362, - -0.01769977994263172, - -0.023446792736649513, - 0.028671348467469215, - 0.02085999958217144, - -0.009187574498355389, - -0.007135980296880007, - -0.02548564411699772, - 4.5346525439526886e-05, - 0.01990428753197193, - 0.01095245499163866, - -0.008531318977475166, - -0.04574672877788544, - 0.03407430648803711, - -0.008078948594629765, - -0.02421136200428009, - 0.0023574219085276127, - -0.0034310047049075365, - 0.01251982245594263, - -0.019560230895876884, - -0.012220365926623344, - 0.007964263670146465, - -0.013583848252892494, - 0.01012417208403349, - 0.0019353160168975592, - -0.0041095600463449955, - -0.001753730815835297, - 0.009200316853821278, - 0.013978875242173672, - 0.018311435356736183, - 0.00279067805968225, - -0.026657983660697937, - 0.004351673647761345, - 0.014488588087260723, - 0.029639802873134613, - -0.0019815086852759123, - 0.0008760690107010305, - -0.008926346898078918, - -0.01016240008175373, - -0.0012671143049374223, - 0.01194639503955841, - 0.0009127046214416623, - 0.011761624366044998, - 0.027065753936767578, - -7.600893877679482e-05, - 0.019547488540410995, - -0.0156226996332407, - 0.005797984078526497, - -0.010251600295305252, - 0.014271960593760014, - -0.024275075644254684, - 0.033921390771865845, - 0.010047715157270432, - 0.025281758978962898, - -0.021344225853681564, - -0.03634252771735191, - 0.012124794535338879, - 0.001607984770089388, - 0.02423684671521187, - 0.0045874156057834625, - -0.0022937078028917313, - -0.012876621447503567, - -0.004705287050455809, - 0.01750863716006279, - -0.024593645706772804, - 0.019458288326859474, - -0.02619924210011959, - -6.421187572414055e-05, - -0.0034628617577254772, - -0.008372033946216106, - 0.00628858245909214, - 0.022401880472898483, - 0.01739395223557949, - -0.028747806325554848, - 0.014845387078821659, - 0.007027666084468365, - -0.0018142592161893845, - 0.019993487745523453, - -0.005998683162033558, - 0.03269807994365692, - -0.033921390771865845, - 0.03613864257931709, - 0.01273644994944334, - -0.018630005419254303, - 0.01952200196683407, - 0.010302571579813957, - -0.020834513008594513, - 0.0028113850858062506, - -0.00874794740229845, - 0.02650506980717182, - 0.02200685255229473, - -0.007964263670146465, - 0.010009486228227615, - 0.01614515483379364, - -0.0027890850324183702, - 0.0026775854639708996, - -0.006358668208122253, - 0.02619924210011959, - -0.016081441193819046, - 0.02841649204492569, - -0.0036508184857666492, - 0.01405533216893673, - 0.010965198278427124, - 0.005355170927941799, - 0.004166902508586645, - 0.0024115790147334337, - 0.0032127839513123035, - -0.010480971075594425, - -0.0066326386295259, - 0.0026345783844590187, - -0.01657841168344021, - -0.011098997667431831, - 0.011175454594194889, - 0.0010831397958099842, - -0.007454550825059414, - -0.006234425585716963, - -0.005227742716670036, - 0.009525259025394917, - -0.0042975167743861675, - 0.010939712636172771, - -0.0035807329695671797, - 0.01614515483379364, - 0.009467916563153267, - -0.028391007333993912, - -0.021955881267786026, - 0.009499773383140564, - 0.04194936901330948, - -0.008524947799742222, - -0.009416945278644562, - 0.003015270223841071, - 0.012851135805249214, - -0.01981508731842041, - 0.01708812452852726, - -0.004447244573384523, - -0.0045555587857961655, - -0.017534121870994568, - -0.0036094042006880045, - -0.0020770798437297344, - -0.01174888201057911, - 0.018821148201823235, - 0.0033449907787144184, - -0.00890723243355751, - 5.634716580971144e-05, - 0.0011930466862395406, - -0.01283839251846075, - 0.006237611174583435, - -0.01247522234916687, - 0.05104774236679077, - -0.00430070236325264, - -0.011761624366044998, - -0.008301948197185993, - -0.004740329459309578, - -0.015074757859110832, - 0.004456801805645227, - -0.013239791616797447, - -0.013227049261331558, - -0.017470408231019974, - -0.005062086042016745, - -0.0033736620098352432, - -0.0015562170883640647, - 0.029206547886133194, - 0.0364699549973011, - -0.0072124372236430645, - 0.009920286945998669, - -0.023306621238589287, - -0.01253256481140852, - 0.019254403188824654, - 0.025944385677576065, - 0.03805006667971611, - -0.00770940724760294, - 0.017687035724520683, - 0.01001585740596056, - -0.004998371936380863, - -0.028136150911450386, - -0.038024578243494034, - 0.007135980296880007, - 0.007040408905595541, - 0.005909483414143324, - -0.016833268105983734, - 0.017432179301977158, - -0.0016063919756561518, - 0.00019462668569758534, - -0.02358696237206459, - 0.01142393983900547, - -0.002513521583750844, - 0.018515320494771004, - 0.010054086335003376, - 0.004956957418471575, - 0.022045081481337547, - 0.0066581242717802525, - 0.006983066443353891, - 0.015278642997145653, - -0.028059693053364754, - 0.0006968730594962835, - 0.015431556850671768, - 0.0029021776281297207, - -0.049849919974803925, - -0.017330236732959747, - 0.015112986788153648, - -0.00279067805968225, - 0.019343603402376175, - -0.04299427941441536, - 0.02716769650578499, - 0.00033449908369220793, - 0.006932095158845186, - 0.029486889019608498, - -0.0068556382320821285, - -0.003969389013946056, - -0.002207693876698613, - 0.021255025640130043, - 0.004453616216778755, - 0.021509883925318718, - -0.011194569058716297, - -0.0008426191052421927, - 0.005839398130774498, - -0.002067522844299674, - -0.02818712219595909, - -0.001844523474574089, - -0.008696976117789745, - 0.004383530467748642, - -0.02179022505879402, - 0.00134914624504745, - -0.026810897514224052, - -0.01710086688399315, - -0.0052118138410151005, - 0.004740329459309578, - -0.00037929805694147944, - -0.01174250990152359, - -0.03861074894666672, - 0.006263096816837788, - -0.01698618195950985, - -0.009518887847661972, - -0.013647561892867088, - -0.005281899590045214, - -0.021777482703328133, - -0.014284702949225903, - -0.0028543921653181314, - 0.004170088563114405, - -0.008798918686807156, - -0.004233802668750286, - 0.012067452073097229, - 0.015304128639400005, - 0.008193634450435638, - 0.013622076250612736, - -0.006626267451792955, - -0.01633629761636257, - -0.0010871220147237182, - -0.018642747774720192, - -0.021624568849802017, - -0.012086566537618637, - -0.024708330631256104, - -0.015100243501365185, - -0.003816475160419941, - -0.01625983975827694, - 0.001884344732388854, - 0.023752620443701744, - 0.03218836709856987, - 0.009015546180307865, - 0.00519269984215498, - 0.010570170357823372, - 0.011513139121234417, - -0.004233802668750286, - 0.018107550218701363, - 0.007135980296880007, - 0.009378716349601746, - -0.004660686943680048, - 0.0017680665478110313, - 0.017674293369054794, - -0.03787166625261307, - -0.0019241661066189408, - 0.0009724365663714707, - 0.01483264472335577, - 0.0033354335464537144, - -0.012290451675653458, - 0.02294982224702835, - -0.016106925904750824, - 0.024912215769290924, - 0.01274282205849886, - -0.02136971242725849, - -0.0002508742909412831, - 0.003628518432378769, - -0.004157345741987228, - 0.026607012376189232, - -0.0013730390928685665, - 0.031117970123887062, - 0.016807781532406807, - -0.012723707593977451, - 0.008180891163647175, - -0.01836240664124489, - 0.030455343425273895, - 0.024772046133875847, - 0.006250353995710611, - -0.004150974098592997, - 0.019649431109428406, - 0.0033800334203988314, - -0.013558362610638142, - -0.02663249708712101, - -0.005151285789906979, - 0.013864190317690372, - 0.006951209157705307, - 0.00608469732105732, - -0.02693832479417324, - 0.01613241247832775, - -0.010621141642332077, - 0.02516707219183445, - -0.019878800958395004, - -0.013125106692314148, - -0.016476469114422798, - -0.008690604008734226, - -0.01085051242262125, - 0.009767373092472553, - -0.015979498624801636, - -0.02872231975197792, - -0.023867305368185043, - 0.00041135420906357467, - -0.008372033946216106, - 0.014068075455725193, - 0.001755323726683855, - -0.016705838963389397, - -0.018935833126306534, - 0.008990060538053513, - -0.0029372205026447773, - -0.02872231975197792, - 0.011691538617014885, - -0.010156028904020786, - 0.02862037718296051, - 0.026912840083241463, - 0.018260464072227478, - 0.007161465939134359, - -0.01231593731790781, - 0.0021726510021835566, - 0.0024848501197993755, - 0.007454550825059414, - 0.006196197122335434, - -0.014246474951505661, - -0.024287817999720573, - 0.013851447030901909, - 0.009041031822562218, - 0.003634889842942357, - 0.006702724378556013, - -0.004479101859033108, - 0.026352155953645706, - 0.007288894150406122, - -0.015788355842232704, - -0.015342357568442822, - -0.00876068975776434, - 0.005090757273137569, - -0.007072266191244125, - -0.0027620065957307816, - 0.0035138330422341824, - 0.017661551013588905, - -0.033921390771865845, - -0.001654973952099681, - 0.0038324035704135895, - 0.013354477472603321, - -0.007613835856318474, - -0.008518576622009277, - 0.016820523887872696, - -0.02946140430867672, - 0.030327916145324707, - 0.016540182754397392, - -0.03093957155942917, - -0.012411508709192276, - 0.02033754251897335, - -0.028492949903011322, - -0.00576294120401144, - 0.03007305972278118, - -0.007683921605348587, - 0.018056578934192657, - -0.007040408905595541, - -0.027014782652258873, - 0.0122139947488904, - 0.015431556850671768, - 0.027320610359311104, - -0.03195899724960327, - 0.011646939441561699, - -0.02097468450665474, - -0.016603896394371986, - -0.006989437621086836, - -0.009843830019235611, - -0.022287195548415184, - 0.02882426232099533, - -0.017432179301977158, - -0.0034692331682890654, - 0.018324177712202072, - 0.0007498353952541947, - -0.012914849445223808, - -0.01195276714861393, - -0.021828453987836838, - 0.01572464220225811, - 0.00874794740229845, - 0.04541541635990143, - 0.017139095813035965, - -0.013724018819630146, - -0.031219912692904472, - -0.07650790363550186, - -0.00854406226426363, - -0.008378405123949051, - 0.010181514546275139, - 0.004574672784656286, - -0.004976071882992983, - 0.01415727473795414, - -0.014666987583041191, - 0.013673047535121441, - 0.0001996043574763462, - -0.009193945676088333, - 0.016846010461449623, - 0.00537428492680192, - -0.007339865434914827, - -0.01970040239393711, - 0.004485473036766052, - -0.005307385232299566, - 0.02191765420138836, - -0.005269156768918037, - -0.020605143159627914, - -0.014960072934627533, - -0.001563384896144271, - -0.009455173276364803, - 0.027753865346312523, - 0.006804666947573423, - 0.022401880472898483, - -0.018846632912755013, - -0.03020048700273037, - -0.002734928159043193, - -0.03404881805181503, - -0.008104434236884117, - 0.010716713033616543, - -0.003149069845676422, - 0.03562892973423004, - -0.00250396435149014, - -0.02895169146358967, - -0.002323972061276436, - 0.0007271372596733272, - -0.013902418315410614, - 0.008818032220005989, - -0.003198448335751891, - 0.015138472430408001, - -0.0065689245238900185, - -0.008486718870699406, - 0.0019177946960553527, - 0.0062216827645897865, - 0.03384493291378021, - 0.0002506751916371286, - 0.01769977994263172, - -0.02650506980717182, - -0.00691935233771801, - 0.009531630203127861, - -0.012895735912024975, - -0.012481593526899815, - -0.012589908204972744, - -0.020923713222146034, - -0.0014112675562500954, - -0.009499773383140564, - -0.019318116828799248, - -0.01195276714861393, - -0.0021822082344442606, - -0.010659370571374893, - -0.014654245227575302, - -0.0026743996422737837, - 0.00691935233771801, - 0.02999660186469555, - -0.018069321289658546, - -0.005938155110925436, - 0.013673047535121441, - 0.03438013419508934, - -0.031168941408395767, - 0.008359290659427643, - 0.033921390771865845, - 0.0158520694822073, - -0.014794415794312954, - 0.01970040239393711, - 0.008939089253544807, - -0.026989296078681946, - 0.04725038260221481, - -0.02905363403260708, - -0.032239340245723724, - 0.010003115050494671, - -0.025243530049920082, - -0.0043676020577549934, - -3.218060373910703e-05, - -0.016693096607923508, - -0.004893243312835693, - 0.013016792014241219, - 0.0018126664217561483, - 0.0043771592900156975, - -0.012640879489481449, - -0.00014445182750932872, - -0.006314068101346493, - 0.000493784318678081, - 0.017674293369054794, - -0.028900720179080963, - 0.012424251064658165, - 0.028263578191399574, - 0.0013371998211368918, - -0.008767060935497284, - -0.02506512962281704, - -0.014310188591480255, - -0.012182137928903103, - -0.004173274151980877, - 0.007632950320839882, - 0.0033481763675808907, - 0.014131789095699787, - -0.03881463408470154, - -0.0032446410041302443, - 0.01665486767888069, - 0.014819901436567307, - -0.03257065266370773, - 0.002736520953476429, - 0.005883997771888971, - -0.019980743527412415, - 0.01106076966971159, - 0.003857889212667942, - 0.0013411820400506258, - 0.011315626092255116, - 0.0054093278013169765, - -0.018222235143184662, - 0.0019162017852067947, - -0.004049031529575586, - 0.016795039176940918, - 0.01940731704235077, - -0.01504927221685648, - -0.01929263211786747, - 0.010786798782646656, - -0.05114968493580818, - -0.0013316249242052436, - -0.030251458287239075, - 0.005380656570196152, - 0.0037878036964684725, - -0.0013770211953669786, - 0.021331483498215675, - 0.01908874697983265, - 0.011780738830566406, - 0.025855185464024544, - -0.021509883925318718, - -0.010901483707129955, - -0.006193011533468962, - 0.0007844799547456205, - 0.020923713222146034, - -0.004918728955090046, - -0.018222235143184662, - -0.01373676210641861, - 0.0384068638086319, - -0.01801835000514984, - -0.008818032220005989, - 0.007894177921116352, - 0.005141728557646275, - 0.004061774350702763, - -0.0033481763675808907, - 0.024096675217151642, - 0.001114996848627925, - 0.017049895599484444, - 0.032850995659828186, - 0.019458288326859474, - 0.00728252250701189, - 0.02640312723815441, - -0.0022188439033925533, - -0.034966301172971725, - 0.004469544626772404, - 0.004332559183239937, - 0.0019002732587978244, - 0.007499150466173887, - 0.004880500491708517, - -0.020095430314540863, - -0.021994110196828842, - -0.0004798468726221472, - -0.016960695385932922, - 0.012615393847227097, - 0.003587104380130768, - -0.006721838377416134, - 0.008677861653268337, - -0.027065753936767578, - -0.015240414999425411, - 0.025141587480902672, - -0.02222348190844059, - -0.005826655309647322, - 0.0006809445330873132, - -0.010684856213629246, - 0.010098686441779137, - -0.017661551013588905, - 0.01415727473795414, - -0.0007581979152746499, - 0.018515320494771004, - -0.006874752230942249, - -0.012092937715351582, - -0.014539559371769428, - 0.016094183549284935, - 0.016833268105983734, - 0.02098742686212063, - 0.003098098561167717, - 0.00021702618687413633, - -0.014845387078821659, - -0.010423627682030201, - -0.009544373489916325, - -0.008149034343659878, - -0.02895169146358967, - -0.0069257235154509544, - -0.005906297825276852, - -0.009117488749325275, - 0.015062015503644943, - -0.017585093155503273, - -0.030531801283359528, - -0.027702894061803818, - 0.016642125323414803, - 0.19970549643039703, - -0.034125275909900665, - -0.02024834416806698, - 0.023548735305666924, - -0.031602196395397186, - -0.004256102256476879, - 0.014781673438847065, - 0.004698915407061577, - 0.010175143368542194, - 0.013825961388647556, - -0.005705598276108503, - 0.0013188819866627455, - 0.022682223469018936, - 0.0018907161429524422, - 0.0068174097687006, - -0.029818203300237656, - -0.020490456372499466, - 0.007327122613787651, - -0.009404201991856098, - 0.002556528663262725, - 0.01074856985360384, - -0.01095882710069418, - 0.0035807329695671797, - -0.019968001171946526, - 0.024899473413825035, - -0.0040108030661940575, - -0.019891545176506042, - -0.005304199643433094, - 0.022478338330984116, - 0.011239169165492058, - -0.002190172439441085, - 0.0029021776281297207, - 0.012602650560438633, - 0.0048327152617275715, - -0.01493458729237318, - 0.011908167041838169, - 0.011659681797027588, - -0.005128985736519098, - 0.021102111786603928, - 0.01336721982806921, - 0.0029388132970780134, - 0.006505210418254137, - 0.006167525891214609, - -0.015062015503644943, - -0.002959520323202014, - 0.025944385677576065, - 0.007231551222503185, - 0.0039407177828252316, - -0.006435125134885311, - 0.01930537447333336, - -0.040420230478048325, - 0.012182137928903103, - 0.0073908367194235325, - 0.034023333340883255, - -0.006798295304179192, - -0.00963994488120079, - 0.010990683920681477, - 0.010812284424901009, - -0.006100625731050968, - -0.004236988257616758, - -0.021471654996275902, - 0.017865436151623726, - -0.0009310223977081478, - 0.011672425083816051, - -0.015801098197698593, - 0.026989296078681946, - -0.013889675959944725, - 0.022248966619372368, - 0.005963640753179789, - -0.014577788300812244, - -0.0035743615590035915, - -0.03659738227725029, - -0.030761171132326126, - -0.0014757780591025949, - -0.019471030682325363, - -0.02380359172821045, - 0.034456588327884674, - 0.030047573149204254, - 0.009340488351881504, - 0.012022851966321468, - -0.006772809661924839, - 0.011876310221850872, - -0.027218667790293694, - -0.01875743269920349, - -0.005106685683131218, - -0.021433426067233086, - 0.02317919209599495, - -0.0026202427688986063, - -0.015214929357171059, - -0.006416010670363903, - -0.0009517294820398092, - -0.0038037323392927647, - -0.0063013252802193165, - -0.005998683162033558, - 0.022720450535416603, - 0.009359602816402912, - 0.005641884170472622, - 0.02098742686212063, - -0.017559608444571495, - 0.012092937715351582, - -0.005657813046127558, - 0.05984029173851013, - 0.038738176226615906, - -0.01981508731842041, - -0.010754941962659359, - -0.008282833732664585, - -0.012787421233952045, - 0.012080195359885693, - 0.003494718810543418, - -0.028671348467469215, - -0.027932265773415565, - -0.009098374284803867, - 0.017139095813035965, - -0.0012854321394115686, - 0.0046766153536736965, - 0.012500707991421223, - 0.0029850059654563665, - 0.020210115239024162, - 0.008066206239163876, - -0.03407430648803711, - -0.011086255311965942, - -0.007824092172086239, - 0.006683609914034605, - 0.006715467199683189, - -0.0009788080351427197, - -0.009518887847661972, - -0.019012289121747017, - 0.014424874447286129, - 0.010774055495858192, - -0.01791640743613243, - 0.053214024752378464, - -0.009353230707347393, - 0.0265305545181036, - 0.0029961559921503067, - -0.003354547778144479, - 0.015992240980267525, - -0.01446310244500637, - -0.01142393983900547, - -0.0084357475861907, - 0.008403890766203403, - 0.02558758668601513, - -0.007664807140827179, - -0.00969728734344244, - 0.005027043167501688, - -0.027065753936767578, - -0.01791640743613243, - 0.019114231690764427, - 0.006938466336578131, - -0.02317919209599495, - -0.02632666938006878, - 0.0007358979783020914, - -0.010888741351664066, - -0.008416634052991867, - -0.01446310244500637, - 0.03519567474722862, - 0.022988051176071167, - -0.026059070602059364, - -0.01515121478587389, - -0.013494648039340973, - 0.008786175400018692, - 0.004759443923830986, - -0.012322308495640755, - -0.003918417729437351, - -0.037591323256492615, - 0.0008354512392543256, - -0.0047339582815766335, - -0.16208869218826294, - 0.019228918477892876, - 0.006537067703902721, - -0.016298068687319756, - 0.02546015754342079, - -0.018821148201823235, - 0.027932265773415565, - 0.016323555260896683, - 0.0013093248708173633, - 0.005804355256259441, - 0.011595968157052994, - -0.003950274549424648, - -0.03162768483161926, - -0.005380656570196152, - -0.00791329238563776, - -0.0017362094949930906, - -0.021255025640130043, - 0.021229540929198265, - 0.04556833207607269, - 0.02108936943113804, - 0.0025294499937444925, - -0.024147646501660347, - 0.01595401205122471, - -0.0044759162701666355, - 0.011194569058716297, - 0.014514073729515076, - -0.002680771052837372, - 0.008002491667866707, - 0.0011293325806036592, - 0.009321373887360096, - -0.009977629408240318, - 0.009862943552434444, - 0.010570170357823372, - -0.004068145994096994, - 0.005265971180051565, - -0.0016565668629482388, - -0.01011779997497797, - 0.005425256211310625, - -0.0008720868499949574, - 0.033819448202848434, - 0.014794415794312954, - 0.022784166038036346, - 0.00038467394188046455, - 0.004705287050455809, - -0.007760378532111645, - 0.019674915820360184, - 0.00817451998591423, - 0.0010640255641192198, - -0.00906651746481657, - -0.0112773971632123, - 0.00510987127199769, - -0.015979498624801636, - -0.010047715157270432, - 0.008735204115509987, - 0.02307724952697754, - 0.02724415250122547, - 0.013520133681595325, - -0.019216174259781837, - -0.0037559466436505318, - 0.012507079169154167, - 0.001123757567256689, - -0.00991391483694315, - -0.00636822497472167, - -0.008945460431277752, - 0.01623435504734516, - -0.03259613737463951, - -0.018094806000590324, - 0.0037495752330869436, - -0.0016772738890722394, - -0.001798330689780414, - 0.0066326386295259, - -0.008295577019453049, - 0.026861868798732758, - -0.020694341510534286, - 0.016960695385932922, - 0.004068145994096994, - -0.009722772985696793, - 0.0039407177828252316, - 0.007996120490133762, - -0.004249731078743935, - -0.02821260690689087, - 0.030429858714342117, - -0.02737158164381981, - -0.02892620489001274, - 0.005144914146512747, - 0.010512827895581722, - 0.0049219150096178055, - -0.0072124372236430645, - 0.005243671126663685, - -0.013507391326129436, - 0.017546866089105606, - -0.024975931271910667, - -0.03009854443371296, - -0.004472730215638876, - -0.005151285789906979, - 0.006466981954872608, - -0.005020671524107456, - 0.014373903162777424, - -0.0071232374757528305, - -0.0027779352385550737, - -0.012558050453662872, - -0.006639010272920132, - -0.03020048700273037, - -0.004096817225217819, - 0.02642861194908619, - -0.005549498833715916, - 0.008588661439716816, - 0.007932406850159168, - 0.03007305972278118, - -0.015265900641679764, - 0.003810103749856353, - 0.0030694270972162485, - -0.00628858245909214, - 0.034329161047935486, - -0.0008720868499949574, - 0.017253780737519264, - 0.008620519191026688, - -0.011449425481259823, - 0.0037814322859048843, - 0.004845458082854748, - 0.0818089172244072, - -0.010716713033616543, - -0.031117970123887062, - 0.022605765610933304, - -0.022924335673451424, - -0.027397066354751587, - -0.062133997678756714, - -0.006466981954872608, - 0.010105057619512081, - 0.021255025640130043, - 0.009563487954437733, - 0.004625644069164991, - -0.019432803615927696, - 0.012787421233952045, - 0.03483887389302254, - 0.018795661628246307, - -0.01592852734029293, - -0.014603273943066597, - -0.01939457468688488, - -0.006285396870225668, - 0.005970011930912733, - -0.02421136200428009, - -0.030429858714342117, - -0.011341111734509468, - -0.018821148201823235, - 0.032035455107688904, - 0.005998683162033558, - 0.0029356274753808975, - -0.013074135407805443, - -0.017381208017468452, - -0.01336721982806921, - 0.018948575481772423, - -0.020261086523532867, - 0.025077873840928078, - 0.013609333895146847, - 4.81340175610967e-05, - -0.010009486228227615, - 0.0012726893182843924, - 0.009423316456377506, - -0.03178059682250023, - 0.023421306163072586, - 0.004670244175940752, - -0.02201959677040577, - -0.024185875430703163, - 0.03550150245428085, - -0.020095430314540863, - -0.0018907161429524422, - 0.005364728160202503, - 0.007938778027892113, - -0.03167865425348282, - -0.0007721353322267532, - 0.00762657867744565, - -0.0066581242717802525, - -0.015864813700318336, - 0.018094806000590324, - -0.01836240664124489, - -0.03229030966758728, - -0.004635201301425695, - -0.006791924126446247, - 0.004552373196929693, - 0.011978252790868282, - 0.018184006214141846, - 0.007543750572949648, - -0.01907600462436676, - 0.0015410849591717124, - -0.0011245539644733071, - -0.0063013252802193165, - -0.004201945383101702, - -0.02622472681105137, - 0.03438013419508934, - 0.003233490977436304, - -0.012067452073097229, - -0.010761313140392303, - -0.007843206636607647, - 0.016489211469888687, - -0.03417624905705452, - -0.011468539945781231, - 0.01980234496295452, - 0.004412202164530754, - 0.019738631322979927, - -0.024071190506219864, - 0.002519892994314432, - -0.03190802410244942, - -0.015508013777434826, - 0.03172962740063667, - -0.014424874447286129, - -0.020515942946076393, - -0.012876621447503567, - -0.005616398528218269, - -0.009920286945998669, - 0.009289517067372799, - 0.03157671168446541, - 0.014870872721076012, - -0.016909724101424217, - -0.005036600399762392, - 0.018375148996710777, - 0.0037463896442204714, - 0.0005782055086456239, - 0.013864190317690372, - -0.01707538031041622, - -0.008149034343659878, - 0.016896981745958328, - -0.00691935233771801, - 0.0032048197463154793, - 0.006441496312618256, - 0.013889675959944725, - -0.01085688453167677, - 0.007059523370116949, - -0.0649883896112442, - 0.025218043476343155, - -0.01042999979108572, - -0.022325424477458, - -0.01866823434829712, - 0.015571728348731995, - 0.011933652684092522, - 0.0026568782050162554, - 0.009850201196968555, - 8.262923074653372e-06, - -0.018387891352176666, - -0.005705598276108503, - 0.012341422960162163, - -0.0029515561182051897, - -0.013851447030901909, - -0.022516565397381783, - 0.021331483498215675, - -0.0023876861669123173, - 0.013520133681595325, - 0.010296199470758438, - -0.01887211948633194, - 0.0002998545242007822, - 0.010149657726287842, - 0.01803109236061573, - -0.023332105949521065, - -0.009882058016955853, - -0.0060432832688093185, - 0.003539318684488535, - -0.01325253490358591, - -0.010614770464599133, - 0.005482599139213562, - -0.00026879389770329, - -0.005173585377633572, - 0.0002791474398691207, - -0.007065894547849894, - -0.0012671143049374223, - 0.006639010272920132, - 0.03529761731624603, - -0.006167525891214609, - 0.0634082779288292, - -0.02284787967801094, - -0.0009326152503490448, - 0.025090616196393967, - -0.010901483707129955, - -0.005148099735379219, - 0.004444058984518051, - 0.00028074029251001775, - 0.0017266523791477084, - 0.00896457489579916, - -0.009735515341162682, - 0.008633261546492577, - 0.024083932861685753, - -0.004074517171829939, - -0.009601715952157974, - 0.015380585566163063, - -0.0011157933622598648, - 0.02913009002804756, - -0.0048231580294668674, - 0.004969700239598751, - -0.027626438066363335, - 0.006639010272920132, - -0.0013395891292020679, - -0.019025033339858055, - 0.012462479993700981, - -0.0019576160702854395, - -0.004396273288875818, - -0.029741745442152023, - 0.006862009409815073, - -0.009761000983417034, - -0.028645863756537437, - -0.002742892364040017, - -0.008372033946216106, - -0.02129325456917286, - 0.012016480788588524, - 0.00510987127199769, - -0.024364275857806206, - 0.0009254474425688386, - 0.025562100112438202, - -0.009933029301464558, - 0.007868692278862, - 0.013507391326129436, - 0.017801722511649132, - -0.035807330161333084, - 0.010156028904020786, - 0.026275698095560074, - 0.028059693053364754, - -0.022618507966399193, - -0.0003404722665436566, - -0.006447867956012487, - 0.0024020217824727297, - -0.008238234557211399, - 0.022185252979397774, - 0.009200316853821278, - 0.025230787694454193, - 0.012793793343007565, - 0.014985558576881886, - 0.0018716019112616777, - -0.014717958867549896, - 0.0034915332216769457, - 0.02024834416806698, - -0.006626267451792955, - 0.011111740954220295, - 0.012341422960162163, - -0.010347170755267143, - -0.009308631531894207, - 0.014399388805031776, - -0.0014096746454015374, - -0.05984029173851013, - 0.008983689360320568, - 0.02348501980304718, - 0.009748258627951145, - 0.016731325536966324, - 0.0102261146530509, - -0.00024510020739398897, - -0.015062015503644943, - 0.027193181216716766, - -0.0009246509871445596, - -0.012379650957882404, - -0.02254205197095871, - 0.019063260406255722, - 0.006785552483052015, - 0.022491080686450005, - 0.007059523370116949, - -0.022045081481337547, - 0.010041343048214912, - -0.0008824404212646186, - -0.0009756222716532648, - -0.032443225383758545, - 0.01236053742468357, - -0.005074828863143921, - 0.009308631531894207, - 0.004839086439460516, - -0.004514144733548164, - -0.01504927221685648, - -0.009410574100911617, - -0.0019353160168975592, - 0.008078948594629765, - 0.037056125700473785, - 0.0016501954523846507, - 0.10856883972883224, - 0.004695729818195105, - -0.019560230895876884, - 0.005797984078526497, - -0.002680771052837372, - 0.009480658918619156, - -0.00024510020739398897, - 0.004354859236627817, - -0.038202978670597076, - -0.033692020922899246, - -0.0012049931101500988, - -0.008894489146769047, - -0.004819972440600395, - -0.02347227744758129, - -0.020923713222146034, - 0.005062086042016745, - -0.02223622426390648, - -0.003376847831532359, - -0.03114345669746399, - 0.010926969349384308, - 0.025511128827929497, - -0.019649431109428406, - 0.013698533177375793, - 0.016514696180820465, - -0.006543438881635666, - -0.01804383471608162, - 0.01707538031041622, - -0.0025613070465624332, - 0.010602027177810669, - -0.024377018213272095, - 0.0008951832423917949, - -0.002452993066981435, - -0.07594721764326096, - -0.01878291927278042, - 0.03239225223660469, - -0.025026902556419373, - 0.015597213990986347, - -0.015125729143619537, - -0.00031100449268706143, - -0.022185252979397774, - -0.006486096419394016, - 0.02989465929567814, - -0.0342017337679863, - -0.010340799577534199, - -0.004925100598484278, - -0.001306935679167509, - 0.01346916239708662, - 0.0048550148494541645, - -0.005696041509509087 - ], - "sparse": "SparseEmbedding(values=array([1.68774348]), indices=array([1163187370]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 8, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 2 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000009.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000009.json deleted file mode 100644 index 3fb65c7e66825976bcba88080bce5a07236d0b38..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000009.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000009", - "content": "Zusammenfassung Die thermische Belastung in urbanen Gebieten nimmt kontinuierlich zu. Um st\u00e4dtische R\u00e4ume an die prognostizierten klimatischen Ver\u00e4nderungen anzupassen, ist eine Verst\u00e4rkung der gr\u00fcnen Infrastruktur von entscheidender Bedeutung. Bei der Entwicklung und Implementierung von Anpassungsstrategien m\u00fcssen die vielf\u00e4ltigen Wechselwirkungen zwischen den verschiedenen urbanen Komponenten ber\u00fccksichtigt werden, um eine langfristig nachhaltige Stadtentwicklung zu gew\u00e4hrleisten. In dieser Arbeit werden insbesondere die Wechselwirkungen zwischen der Reduktion des motorisierten Individualverkehrs (MIV), der Erweiterung urbaner Gr\u00fcnfl\u00e4chen und dem thermischen Energiebedarf von Geb\u00e4uden untersucht. Diese Interaktionen wurden mittels Fallstudien an zwei Quartieren in S\u00fcddeutschland analysiert. Ein sich ver\u00e4nderndes Mobilit\u00e4tsverhalten f\u00fchrt im Idealfall zu einer Reduktion des MIV, wodurch unterschiedlich gro\u00dfe Fl\u00e4chenpotentiale f\u00fcr neue Pflanzungen freigesetzt werden. Die Ergebnisse der Analysen zeigen, dass ein zunehmender Anteil an Stadtgr\u00fcn Auswirkungen auf den thermischen Geb\u00e4udeenergiebedarf und das urbane Mikroklima hat. Die Simulationen des ver\u00e4nderten thermischen Geb\u00e4udeenergiebedarfs und die Auswirkungen auf die Evapotranspiration wurden mit dem Softwaretool SimStadt durchgef\u00fchrt. Bei einer Reduktion des MIV-Anteils im Modal Split um 20 % auf einem Gebiet von knapp 40 Hektar wird die Pflanzung von bis zu 500 neuen B\u00e4umen m\u00f6glich. Diese Erh\u00f6hung des Baumbestands um etwa 60 %, im Vergleich zum Status Quo, f\u00fchrt zu einer Reduktion des j\u00e4hrlichen K\u00fchlenergiebedarfs um fast 140 MWh. Dar\u00fcber hinaus tragen die zus\u00e4tzlichen 500 B\u00e4ume zu einer Temperaturabsenkung von bis zu 2,2 Kelvin bei.", - "embedding": { - "dense": [ - 0.018698008731007576, - -0.00830660667270422, - 0.018124690279364586, - -0.02762353979051113, - -0.0010643857531249523, - 0.01433296874165535, - -0.03171494975686073, - -0.008964620530605316, - -0.005361833143979311, - -0.027910199016332626, - 0.009120980277657509, - 0.005436755251139402, - 0.0026972040068358183, - 0.007290268782526255, - -0.0014577279798686504, - -0.004407387692481279, - 0.04344192519783974, - 0.00417284807190299, - 0.02643781155347824, - 0.0026255392003804445, - -0.006684374995529652, - 0.01885436847805977, - 0.011694398708641529, - -0.011095019988715649, - -0.002889396157115698, - 0.0146065978333354, - 0.01888042874634266, - -0.032366447150707245, - -0.009238249622285366, - -0.002799815032631159, - 0.028457457199692726, - -0.024392105638980865, - -0.026125092059373856, - -0.009010224603116512, - -0.008456450887024403, - -0.004426932893693447, - 0.003301468910649419, - 0.0022558136843144894, - 0.019792526960372925, - -0.00807206705212593, - 0.005599630065262318, - -0.016495943069458008, - 0.006567105650901794, - -0.012143933214247227, - 0.009075375273823738, - 0.022463670000433922, - 0.011668339371681213, - -0.0036842243280261755, - -0.015609905123710632, - 0.01839831843972206, - 0.0268938597291708, - 0.0342688225209713, - -0.005443270318210125, - 0.013538139872252941, - -0.02817079797387123, - 0.00916006974875927, - -0.023805757984519005, - 0.013590259477496147, - -0.002573419362306595, - -0.012156963348388672, - -0.02118673361837864, - -0.0028128449339419603, - -0.021486422047019005, - 0.009876717813313007, - -0.035154860466718674, - -0.009570513851940632, - -0.009394609369337559, - -5.1865394198102877e-05, - 0.02762353979051113, - -0.008397816680371761, - 0.041044410318136215, - 0.04651699587702751, - 0.02291972003877163, - -0.012072267942130566, - 0.019896766170859337, - -0.007765862625092268, - 0.0048178317956626415, - 0.00014302429917734116, - -0.014684777706861496, - 0.005195701029151678, - 0.003866643877699971, - -0.022085800766944885, - -0.029369555413722992, - 0.050139330327510834, - 0.009857173077762127, - 0.007264208979904652, - -0.007029669359326363, - 0.023232439532876015, - 0.008397816680371761, - 0.01833316870033741, - -0.002465922152623534, - 0.01031322218477726, - 0.0009813196957111359, - 0.026099031791090965, - -0.009687783196568489, - 0.00321188778616488, - -0.009746418334543705, - 0.0007154268678277731, - 0.015245066024363041, - -0.007062244229018688, - -0.015831414610147476, - -0.0010774157708510756, - -0.0042412555776536465, - -0.004397615324705839, - -0.04860179126262665, - 0.0041858782060444355, - -0.004759197123348713, - 0.014762957580387592, - 0.014254788868129253, - -0.02804049849510193, - -0.02642478235065937, - 0.03213191032409668, - -0.025343293324112892, - -0.02015736512839794, - 0.006514985579997301, - -0.018450438976287842, - 0.032913707196712494, - -4.2449202737770975e-05, - -0.01829407922923565, - -0.012854066677391529, - 0.016508974134922028, - -0.009238249622285366, - -0.0060556791722774506, - -0.012697706930339336, - 0.022802449762821198, - 0.018098630011081696, - 0.010775785893201828, - -0.0036744519602507353, - -0.03895961493253708, - -0.01716047152876854, - -0.031793128699064255, - -0.004645184613764286, - 0.0004377255972940475, - 0.009296884760260582, - -0.031871307641267776, - 0.034138523042201996, - -0.01898466795682907, - -0.0010839307215064764, - -0.034138523042201996, - -0.0413571298122406, - -0.027858078479766846, - 0.0049025267362594604, - -0.032418567687273026, - -0.024366045370697975, - -0.002394257113337517, - 0.02581237256526947, - 0.001557895913720131, - 0.017955299466848373, - 0.00485692173242569, - -0.023766666650772095, - -0.019127998501062393, - -0.02577328309416771, - 0.0029121986590325832, - 0.0009194273152388632, - -0.0023258498404175043, - 0.00544652808457613, - -0.023063048720359802, - -0.01029367744922638, - -0.034164585173130035, - 0.007166484370827675, - 0.02874411642551422, - -0.02573419362306595, - 0.013837829232215881, - -0.0015163628850132227, - 0.015492635779082775, - -0.0018942320020869374, - -2.633988333400339e-05, - 0.0029789770487695932, - 0.022763360291719437, - -0.018059540539979935, - 3.534888674039394e-05, - 0.027727779000997543, - -0.028353217989206314, - 0.017004111781716347, - 0.002283502370119095, - 0.01654806360602379, - -0.0012199310585856438, - 0.026568111032247543, - -0.002086424035951495, - -0.02341485768556595, - -0.02232034131884575, - 0.01028716191649437, - 0.015622935257852077, - 0.02063947357237339, - -0.018254989758133888, - 0.004733136855065823, - 0.03499850258231163, - 0.022007621824741364, - -0.0009365291916765273, - 0.003781949169933796, - 0.00886038038879633, - 0.009446728974580765, - 0.009023254737257957, - -0.00863235630095005, - -0.6433678269386292, - 0.026867801323533058, - -0.0010122659150511026, - -0.008814775384962559, - 0.007544353138655424, - 0.012521802447736263, - 0.04581337794661522, - 0.025017544627189636, - -0.011225320398807526, - 0.0297604538500309, - -0.0011588530614972115, - 0.009805053472518921, - -0.017434101551771164, - -0.009961413219571114, - 0.018580738455057144, - -0.02290668897330761, - -0.010450037196278572, - -0.016899872571229935, - 0.024483315646648407, - 0.01058685127645731, - -0.01727774180471897, - 0.012808461673557758, - -0.0020880529191344976, - 0.012658617459237576, - 0.012156963348388672, - 0.0117400037124753, - -0.006596422754228115, - -0.03674452006816864, - 0.008677960373461246, - 0.010919115506112576, - 0.004560490138828754, - 0.02117370255291462, - -0.004084895830601454, - 0.004097925964742899, - 0.05399620160460472, - 0.03041195310652256, - -0.0039252787828445435, - 0.020978253334760666, - 0.006335823331028223, - -0.00041390518890693784, - -0.018215900287032127, - 0.008723565377295017, - 0.013759649358689785, - 0.010645486414432526, - 0.0030066657345741987, - 0.0292131956666708, - 0.03849053382873535, - -0.02290668897330761, - -0.006931944750249386, - -0.018098630011081696, - 0.022633060812950134, - 0.011883333325386047, - -0.0067430101335048676, - 0.012964821420609951, - 0.021590663120150566, - 0.0031239355448633432, - 0.023323647677898407, - 0.0008302534697577357, - -0.01407236885279417, - 0.011108050122857094, - -0.004062093328684568, - -9.085350757231936e-05, - -0.004993736278265715, - -0.02406635694205761, - -0.01257392205297947, - 0.028874415904283524, - -0.02414453588426113, - -0.01663927361369133, - -0.007101334165781736, - -0.03968929126858711, - -0.013238450512290001, - 0.009283854626119137, - -0.003224917920306325, - -0.004391100257635117, - 0.026763560250401497, - 0.0025815630797296762, - 0.03512880206108093, - -0.00038031229632906616, - -0.012052723206579685, - 0.026607200503349304, - 0.008593265898525715, - -0.010222012177109718, - -0.0117400037124753, - -0.008391301147639751, - 0.019870705902576447, - -0.03557182103395462, - -0.017030172049999237, - -0.006094769109040499, - -0.011290470138192177, - 0.00923173502087593, - 0.02697204053401947, - 0.011525009758770466, - -0.014059338718652725, - -0.03254886716604233, - -0.010150347836315632, - 0.030750732868909836, - -0.011329559609293938, - 0.03885537385940552, - 0.01603989489376545, - -0.042217105627059937, - -0.015401425771415234, - -0.004091410897672176, - 0.03307006508111954, - -7.390436803689227e-05, - 0.019727377220988274, - -0.007127394434064627, - -0.01775985024869442, - 0.01144031435251236, - 0.03598878160119057, - 0.008723565377295017, - -0.00036239606561139226, - 0.0068798246793448925, - 0.01178560871630907, - -0.014424177818000317, - -0.0022134664468467236, - -0.017004111781716347, - 0.033044006675481796, - -0.01176606398075819, - 0.013459959998726845, - 0.008143732324242592, - 0.01653503254055977, - 0.0013038114411756396, - 0.016287464648485184, - -0.01885436847805977, - -0.004071866162121296, - 0.019232237711548805, - 0.009954897686839104, - -0.008104641921818256, - -0.022737300023436546, - -0.015805354341864586, - 0.008065552450716496, - 0.0298907533288002, - 0.04370252415537834, - -0.006671345327049494, - 0.0319494903087616, - 0.005661522503942251, - 0.03460760414600372, - -0.007563898339867592, - -0.00660945288836956, - -0.012586952187120914, - -0.01830711029469967, - -0.009238249622285366, - 0.010326252318918705, - -0.028405336663126945, - -0.009055829606950283, - -0.02123885229229927, - -0.01031322218477726, - 0.010665031149983406, - 0.002394257113337517, - -0.00574621744453907, - -0.02305001951754093, - -0.001427596202120185, - 0.003220031736418605, - -0.0026401979848742485, - 0.007498748600482941, - 0.0047363946214318275, - 0.0029268572106957436, - -0.013088606297969818, - 6.815285451011732e-05, - -0.026685381308197975, - -0.004423675127327442, - 0.013316630385816097, - -0.024496346712112427, - 0.01837226003408432, - -0.023180318996310234, - -0.0019398370059207082, - 0.005759247113019228, - 0.02071765437722206, - -0.024431195110082626, - -0.0320797897875309, - -0.00586022948846221, - -0.02353212796151638, - 0.006414003204554319, - 0.004905784036964178, - -0.01998797617852688, - -0.029082896187901497, - -0.019675256684422493, - -0.009896263480186462, - -0.000880337436683476, - -0.0024756945203989744, - 0.004257543012499809, - -0.006550818216055632, - -0.005352060776203871, - -0.010456551797688007, - 0.02697204053401947, - 0.014111458323895931, - 0.028874415904283524, - -0.0009853915544226766, - -0.01063897181302309, - 0.017577430233359337, - 0.016925932839512825, - 0.028900476172566414, - 0.003078330773860216, - 0.006521500647068024, - 0.007941767573356628, - -0.020183425396680832, - 0.0037689192686229944, - 0.02918713539838791, - -0.0134469298645854, - 0.002402400830760598, - 0.03455548360943794, - -0.011323045007884502, - 0.012215597555041313, - -0.001987070543691516, - 0.012971336022019386, - -0.02232034131884575, - 0.008756140246987343, - 0.00470707705244422, - 0.03484214469790459, - 0.004068608395755291, - 0.01886739768087864, - 0.0016018720343708992, - -0.03223614767193794, - -0.008717050775885582, - -0.005889547057449818, - 0.03322642669081688, - -0.015857474878430367, - -0.007192544173449278, - -0.010834421031177044, - -0.02418362721800804, - 0.019232237711548805, - -0.010326252318918705, - 0.02814473770558834, - -0.01179212424904108, - -0.014359028078615665, - 0.01517991628497839, - -0.009003710001707077, - 0.027388999238610268, - 0.006782100070267916, - -0.0014675004640594125, - -0.008417361415922642, - 0.007844042964279652, - 0.0015978001756593585, - 0.001985441893339157, - 0.014528417959809303, - 0.02181217260658741, - 0.012398017570376396, - -0.016522003337740898, - 0.0365881584584713, - 0.013551170006394386, - 0.024535436183214188, - 0.03275734931230545, - 0.01028716191649437, - -0.01713441126048565, - 0.038829315453767776, - 0.001447141170501709, - 0.028926536440849304, - 0.015688085928559303, - 0.003746116766706109, - 0.02757141925394535, - -0.023727577179670334, - 0.006384686101227999, - 0.009726873598992825, - -0.01319284550845623, - 0.012613012455403805, - -0.017681671306490898, - 0.023962117731571198, - -0.010945175774395466, - 0.041669849306344986, - 0.022789418697357178, - 0.0036483919247984886, - 0.013655410148203373, - 0.007967826910316944, - -0.0020733941346406937, - 0.0006661572842858732, - -0.0006315464270301163, - -0.014059338718652725, - -0.013205875642597675, - 0.0007085046963766217, - 0.0034627148415893316, - 0.007759348023682833, - -0.002993635833263397, - -0.024339986965060234, - -0.002614137949422002, - 0.010710636153817177, - -0.0017280998872593045, - -0.0009251279407180846, - 0.017642581835389137, - 0.0036190745886415243, - 0.0089059853926301, - 0.011277440004050732, - -0.01662624254822731, - -0.021434303373098373, - 0.025460563600063324, - -0.007902677170932293, - -0.02242458052933216, - -0.002035933081060648, - 0.013316630385816097, - -0.017916209995746613, - -0.00949884857982397, - -0.012463167309761047, - -0.0008982536382973194, - -0.01955798640847206, - 0.003970883786678314, - 0.010182922706007957, - -0.022216100245714188, - 0.019623136147856712, - -0.013088606297969818, - 0.004016488790512085, - 0.011459860019385815, - 0.005068658851087093, - -0.008866894990205765, - -0.014749927446246147, - -0.011954998597502708, - 0.030490132048726082, - 0.02179914154112339, - 0.0023633111268281937, - -0.01671745255589485, - -0.003019695868715644, - -0.010652001015841961, - -0.007192544173449278, - -0.0038536139763891697, - 0.007329358719289303, - 0.007290268782526255, - -0.015349306166172028, - 0.010274132713675499, - 0.008241456933319569, - -0.010195952840149403, - 0.05774883180856705, - 0.00100330775603652, - 0.0007443370996043086, - -0.03161070868372917, - -0.015258096158504486, - 0.00973338820040226, - 0.026529021561145782, - 0.007270724046975374, - 0.003821039106696844, - -0.0013526738621294498, - 0.009909292683005333, - -0.016235344111919403, - -0.00010597031359793618, - -0.039845652878284454, - 0.00028828810900449753, - -0.015388395637273788, - 0.004391100257635117, - -0.0045018550008535385, - 0.01142076961696148, - -0.02242458052933216, - 0.011570614762604237, - 0.01545354537665844, - -0.003687481861561537, - -0.019740406423807144, - -0.011042900383472443, - -0.003987171221524477, - -0.0028682223055511713, - -0.014802047051489353, - -0.0021483164746314287, - 0.04432796314358711, - 0.02183823101222515, - -5.643351869366597e-06, - 0.03460760414600372, - 0.01775985024869442, - 0.0070883044973015785, - -0.015271126292645931, - 0.0024642932694405317, - 0.009570513851940632, - 0.007889647968113422, - 0.028327157720923424, - -0.03450336307287216, - -0.010274132713675499, - -0.00015758122026454657, - -0.024353016167879105, - 0.0319494903087616, - 0.003521349746733904, - 0.010560791939496994, - 0.017577430233359337, - 0.0038601290434598923, - -0.00916006974875927, - 0.013876919634640217, - -0.012137418612837791, - -0.013056031428277493, - 0.026515990495681763, - -0.0007675467641092837, - -0.006795129738748074, - 0.01261952705681324, - -0.0046386695466935635, - -0.039220213890075684, - -0.011648794636130333, - 0.004094668664038181, - -0.012150447815656662, - 0.007186029106378555, - -0.020834924653172493, - -0.004495339933782816, - -0.015036586672067642, - -0.031297989189624786, - -0.026242362335324287, - 0.0025164131075143814, - -0.02358424849808216, - -0.013694499619305134, - 0.00329495407640934, - -0.010437007062137127, - -0.007368448656052351, - -0.027128400281071663, - 0.003566954517737031, - 0.02057432383298874, - -0.028301097452640533, - -0.023636367172002792, - 0.012189538218080997, - 0.004032776225358248, - 0.0051598683930933475, - 0.018059540539979935, - -0.01005913782864809, - -0.004469280131161213, - 0.005593114998191595, - -0.030672552064061165, - -0.009147039614617825, - 0.006925429683178663, - -0.013108151033520699, - -0.001775333541445434, - 0.006244613789021969, - -0.03455548360943794, - -0.011368650011718273, - -0.006951489485800266, - 0.026216302067041397, - -0.020939163863658905, - -0.004635412245988846, - 0.016404733061790466, - 0.006912399549037218, - -0.014932346530258656, - 0.001420266809873283, - 0.005322743207216263, - 0.007739802822470665, - 0.009902778081595898, - -0.04456249997019768, - 0.023427888751029968, - -0.0011531524360179901, - 0.008541146293282509, - -0.01723865233361721, - 0.0033324151299893856, - 0.00416307570412755, - -0.014593567699193954, - 0.007759348023682833, - -0.0068537648767232895, - -0.003465972375124693, - 0.025590863078832626, - -0.02284153923392296, - 0.02009221538901329, - -0.0016987824346870184, - -0.0016857525333762169, - 0.010599881410598755, - 0.005889547057449818, - 0.011674853973090649, - 0.016456853598356247, - -0.004019746091216803, - -0.013231935910880566, - -0.030828911811113358, - 0.038777194917201996, - 0.01773378998041153, - 0.015544755384325981, - -0.0021043403539806604, - -0.005488875322043896, - 0.031819190829992294, - -0.035311222076416016, - -0.003987171221524477, - -0.009166584350168705, - 0.011635764501988888, - 0.02118673361837864, - 0.000441390264313668, - -0.02923925593495369, - -0.021356122568249702, - 0.002974090864881873, - 0.004798287060111761, - -0.03390398621559143, - -0.003658164292573929, - -0.035154860466718674, - 0.00294803106226027, - -0.005234790965914726, - 0.026072971522808075, - 0.025512684136629105, - -0.022789418697357178, - -0.013082090765237808, - 0.004609352443367243, - 0.0019789268262684345, - 0.024796035140752792, - -0.019649196416139603, - -0.01199408806860447, - -0.026125092059373856, - 0.014775987714529037, - -0.030672552064061165, - -0.03796933591365814, - 0.011472889222204685, - -0.016196254640817642, - 0.01826801896095276, - 0.009036284871399403, - 0.03622331842780113, - 0.0019186632707715034, - 0.029968934133648872, - -0.00998747255653143, - -0.008495541289448738, - -0.007146939169615507, - 0.004234740510582924, - 0.011251379735767841, - -0.02113461308181286, - 0.020952193066477776, - 0.01770773157477379, - 0.011655309237539768, - 0.011987573467195034, - 0.013264510780572891, - 0.002443119650706649, - 0.04117470979690552, - -0.027988377958536148, - -0.02577328309416771, - -0.012808461673557758, - -0.016196254640817642, - -0.0027395514771342278, - 0.015219006687402725, - 0.004622382111847401, - -0.0010309964418411255, - -0.02913501486182213, - -0.007544353138655424, - 0.028379276394844055, - 0.0009805053705349565, - 0.005511677823960781, - 0.0037493743002414703, - -0.0076225330121815205, - -0.022633060812950134, - 0.004400872625410557, - 0.010853965766727924, - -0.011583643965423107, - 0.007355418521910906, - -0.012241657823324203, - -0.029369555413722992, - -0.04398918151855469, - 0.024405136704444885, - -0.013342690654098988, - -0.004889496602118015, - 0.007804952561855316, - 0.00629021879285574, - 0.0039513385854661465, - 0.007707227952778339, - 0.013420870527625084, - -0.014932346530258656, - 0.012437107041478157, - -0.004479052498936653, - -0.014593567699193954, - -0.004430190194398165, - 0.003912248648703098, - -0.02118673361837864, - 0.007817982695996761, - -0.010788816027343273, - 0.005495390389114618, - 0.034190643578767776, - -0.02289365977048874, - 0.03598878160119057, - 0.018489528447389603, - 0.006671345327049494, - 0.011270925402641296, - -0.0035083198454231024, - 0.042660124599933624, - 0.013407840393483639, - -0.011811668984591961, - -0.013316630385816097, - -0.04482310265302658, - 0.004778741858899593, - -0.01779893971979618, - 0.01725168153643608, - 0.00674952520057559, - -0.005029568914324045, - -0.030490132048726082, - 0.003280295291915536, - 0.013994188979268074, - 0.005922121927142143, - 0.001531835994683206, - 0.04028867185115814, - 0.027910199016332626, - -0.006358625832945108, - -0.02186429128050804, - -0.011687884107232094, - -0.019349507987499237, - 0.012130903080105782, - -0.002417059615254402, - -0.00702315429225564, - 0.008704020641744137, - -0.006912399549037218, - 0.005997044034302235, - 0.055299196392297745, - 0.011075475253164768, - 0.00804600678384304, - -0.015023556537926197, - -0.01722562126815319, - 0.014463268220424652, - -0.02819685824215412, - 0.005221760831773281, - 0.021421272307634354, - 0.006124086678028107, - 0.03254886716604233, - 0.023401828482747078, - -0.02301092818379402, - 0.015049616806209087, - -0.019049817696213722, - 0.0027151203248649836, - 0.0025603892281651497, - -0.002636940451338887, - 0.020235545933246613, - 0.016339583322405815, - -0.006202266085892916, - -0.01725168153643608, - 0.008130702190101147, - 0.036431800574064255, - 0.0061371163465082645, - -0.0025897067971527576, - -0.00919915921986103, - -0.008938560262322426, - -0.013212391175329685, - 0.0065117282792925835, - 0.005267365835607052, - -0.004355268087238073, - -0.009707328863441944, - -0.019935855641961098, - 0.0050165387801826, - -0.009961413219571114, - -0.018137719482183456, - 0.011915908195078373, - -0.026685381308197975, - 0.001386877498589456, - 0.002482209587469697, - -0.00828054640442133, - 0.028822295367717743, - -0.007277239114046097, - -0.015857474878430367, - -0.02581237256526947, - 0.02345394901931286, - -0.02877017669379711, - 0.03682269901037216, - 0.051338087767362595, - 0.008814775384962559, - 0.01324496604502201, - 0.008612810634076595, - -0.008756140246987343, - -0.010749726556241512, - 0.015323245897889137, - -0.007902677170932293, - -0.0320797897875309, - 0.009212189354002476, - -0.008495541289448738, - 0.009550969116389751, - -0.02286759950220585, - -0.008436906151473522, - 0.02011827565729618, - 0.003987171221524477, - -0.0068798246793448925, - -0.01656109280884266, - -0.01998797617852688, - 0.03432094305753708, - 0.00039191709947772324, - -0.004710334353148937, - 0.0514683872461319, - -0.03379974514245987, - 0.011251379735767841, - 0.007700712885707617, - 0.016196254640817642, - -0.0195188969373703, - -0.017381981015205383, - -0.009088404476642609, - -0.020535234361886978, - 0.00459306500852108, - -0.007648593280464411, - -0.0003864200843963772, - -0.004983963910490274, - -0.022124890238046646, - -0.02461361512541771, - 0.01093214564025402, - 0.01663927361369133, - 0.003133708145469427, - 0.00300992326810956, - 0.004915556404739618, - -0.01779893971979618, - 0.012828006409108639, - -0.010951690375804901, - -0.01598777435719967, - 0.002019645646214485, - -0.007427083794027567, - -0.05342288315296173, - -0.013310115784406662, - -0.010371857322752476, - 0.028874415904283524, - 0.009407639503479004, - -0.029551975429058075, - 0.0021189991384744644, - 0.005205473396927118, - -0.06025058776140213, - -0.032340388745069504, - 0.004097925964742899, - -0.012280748225748539, - -0.0009039542637765408, - -0.00017346149252261966, - -0.02013130486011505, - 0.03249674662947655, - -0.003179312916472554, - 0.022242160513997078, - -0.008489025756716728, - -0.009029770269989967, - -0.009818083606660366, - 0.003671194426715374, - 0.0343991257250309, - 0.0004817017470486462, - -0.01714744232594967, - -0.00971384346485138, - 0.027128400281071663, - -0.0059318942949175835, - 0.0024300895165652037, - 0.02577328309416771, - -0.0074857184663414955, - 0.004524657502770424, - -0.003521349746733904, - 0.0183592289686203, - 0.012156963348388672, - 0.01148591935634613, - 0.013459959998726845, - -0.02176005207002163, - -0.0035441522486507893, - 0.0356239415705204, - -0.008749625645577908, - -0.026711441576480865, - -0.001196314231492579, - -0.01093866117298603, - -0.0019935856107622385, - -0.014593567699193954, - 0.01430690847337246, - -0.023310618475079536, - -0.010873510502278805, - -0.03445124253630638, - 0.022607000544667244, - 0.01605292409658432, - -0.0006852950318716466, - 0.0027607250958681107, - 0.002899168524891138, - -0.0002667072112672031, - -0.020522205159068108, - 0.011016841046512127, - -0.022737300023436546, - 0.01088654063642025, - 0.01772076077759266, - -0.0033715050667524338, - 0.021642781794071198, - -0.011114565655589104, - 0.017512280493974686, - 0.0014675004640594125, - 0.013407840393483639, - -0.011088505387306213, - -0.010547761805355549, - -0.0031125342939049006, - 0.007440113462507725, - 0.013029971159994602, - -0.013837829232215881, - 0.001374661922454834, - 0.007218603976070881, - -0.011075475253164768, - -0.004759197123348713, - -0.014280848205089569, - 0.00244637718424201, - -0.03286158666014671, - -0.006023104302585125, - 0.018450438976287842, - -0.02114764228463173, - -0.005645235069096088, - 0.0008811518200673163, - 0.0055084205232560635, - -0.012743311934173107, - 0.03142828866839409, - 0.18742311000823975, - -0.004319435451179743, - -0.0041565606370568275, - 0.02002706564962864, - -0.014385088346898556, - -0.012489227578043938, - 0.030568312853574753, - -0.014841137453913689, - -0.02241155132651329, - 0.029108956456184387, - -0.013381780125200748, - 0.010365341790020466, - -0.0047624544240534306, - -0.00571038480848074, - 0.015870504081249237, - 0.0021401727572083473, - -0.031793128699064255, - -0.0013933925656601787, - -0.0009805053705349565, - 0.03739601746201515, - 0.02060038410127163, - -0.02467876486480236, - 0.007029669359326363, - -0.007668138016015291, - 0.01517991628497839, - 0.0004124800325371325, - 0.007401023525744677, - -0.001946351956576109, - 0.0292131956666708, - -0.0017818486085161567, - -6.680404851522326e-08, - 0.015075677074491978, - 0.017368951812386513, - -0.02462664619088173, - 0.01829407922923565, - 0.0005171269876882434, - 0.014528417959809303, - -0.026086002588272095, - 0.02751929871737957, - 0.023036988452076912, - -0.006472638342529535, - -0.013916009105741978, - -0.00828706193715334, - -0.01148591935634613, - -0.020548265427350998, - 0.021538542583584785, - -0.013114665634930134, - 0.002894282341003418, - -0.00646938057616353, - -0.013525109738111496, - -0.02291972003877163, - -0.01606595516204834, - 0.020248575136065483, - 0.04008018970489502, - -0.006866795010864735, - 0.0043650404550135136, - 0.005335773341357708, - -0.019818585366010666, - 0.018645888194441795, - 0.004537687636911869, - -0.03393004462122917, - 0.021981561556458473, - -0.023636367172002792, - 0.033017948269844055, - -0.009622633457183838, - -0.001418638159520924, - -0.028405336663126945, - 0.013166786171495914, - -0.002592964330688119, - -0.008997195400297642, - -0.01609201356768608, - -0.025082694366574287, - -0.028822295367717743, - 0.01884133741259575, - -0.01673048362135887, - -0.02413150668144226, - 0.02118673361837864, - 0.0058504571206867695, - 0.014619627967476845, - 0.0074596586637198925, - -0.009010224603116512, - 0.0031369654461741447, - 0.017342891544103622, - -0.030307712033391, - -0.002814473817124963, - -0.03601484000682831, - 0.02299789898097515, - 0.001169439870864153, - -0.004407387692481279, - -0.018724068999290466, - -0.00917961448431015, - 0.006886339746415615, - 0.00616969121620059, - -0.02117370255291462, - 0.02113461308181286, - 0.015805354341864586, - -0.002216723747551441, - -0.001715069985948503, - -0.00802646204829216, - 0.019792526960372925, - -0.014697807841002941, - 0.05092112720012665, - 0.03148040920495987, - -0.0166523028165102, - 0.0004271387297194451, - 0.015753235667943954, - -0.004687532316893339, - 0.009029770269989967, - 0.0018795733340084553, - -0.02000100538134575, - 0.0008001216920092702, - -0.02645084075629711, - 0.0061924937181174755, - 0.001990328077226877, - -0.005674552638083696, - 0.006866795010864735, - -0.0007911635912023485, - -0.0189716387540102, - 0.0018388546304777265, - -0.0009593316353857517, - -0.004029518458992243, - 0.003560439683496952, - 0.01150546409189701, - -0.0058765169233083725, - 0.010678061284124851, - -0.01713441126048565, - -0.045031581073999405, - 0.007094819098711014, - -0.012196052819490433, - 0.009772478602826595, - 0.02471785619854927, - -0.028952596709132195, - 0.002141801407560706, - 0.011453344486653805, - -0.0014324825024232268, - 0.018619827926158905, - 0.008000402711331844, - -0.04649093747138977, - 0.008150246925652027, - 0.012013633735477924, - 0.008202366530895233, - -0.019271327182650566, - -0.0008058222592808306, - -0.01430690847337246, - 0.013720559887588024, - -0.009876717813313007, - 0.013323145918548107, - 0.006264158524572849, - -0.024926334619522095, - -0.013616319745779037, - 0.008261001668870449, - -0.012222113087773323, - -0.003606044454500079, - -0.02117370255291462, - 0.03145435079932213, - 0.008919015526771545, - -0.011694398708641529, - -0.03098527155816555, - 0.006472638342529535, - 0.009655208326876163, - -0.009629148989915848, - 0.011753033846616745, - -0.01770773157477379, - -0.01208529807627201, - -0.01236544270068407, - 0.008423876017332077, - -0.16376067698001862, - 0.012384987436234951, - 0.010730180889368057, - -0.04180014878511429, - 0.009094920009374619, - -0.00702315429225564, - -0.013629349879920483, - -0.01234589796513319, - -0.019310416653752327, - -0.016300493851304054, - 0.0379432775080204, - -0.0027362939435988665, - -0.019271327182650566, - -0.01430690847337246, - -0.006905884947627783, - 0.01315375603735447, - -0.01257392205297947, - 0.02744111977517605, - 0.016456853598356247, - 0.015284156426787376, - 0.001522063510492444, - -0.02986469306051731, - 0.006355368532240391, - -0.023688487708568573, - 0.011577129364013672, - -0.002889396157115698, - -0.012788916938006878, - 0.014632657170295715, - 0.0022786161862313747, - -0.018072569742798805, - -0.006814674939960241, - 0.004729879554361105, - 0.0380735769867897, - 0.0031109056435525417, - 0.01172045897692442, - -0.014359028078615665, - 0.008775685913860798, - -0.006495440844446421, - -0.013049515895545483, - 0.035936661064624786, - 0.02585146203637123, - -0.016235344111919403, - -0.009635663591325283, - 0.009642179124057293, - -0.04172196611762047, - -0.0028845099732279778, - 0.018567709252238274, - 0.008593265898525715, - -0.01407236885279417, - 0.012482712045311928, - 0.005339030642062426, - -0.008677960373461246, - -0.008137216791510582, - 0.003355217631906271, - 0.0058765169233083725, - 0.026815680786967278, - 0.00047315083793364465, - 0.020287664607167244, - 0.0037949790712445974, - -0.004280345514416695, - 0.01084093563258648, - -0.0035083198454231024, - 0.01596171408891678, - 0.016170194372534752, - -0.003733086632564664, - -0.024835124611854553, - 0.019792526960372925, - 0.007700712885707617, - -0.014697807841002941, - 0.009401123970746994, - -0.0293434951454401, - -0.015049616806209087, - 0.028822295367717743, - 0.009844142943620682, - 0.005811367183923721, - 0.00888644065707922, - -0.009974443353712559, - 0.0068537648767232895, - -0.002873108722269535, - -0.014749927446246147, - -0.024783005937933922, - 0.04813271388411522, - -0.025708133354783058, - -0.00658990815281868, - -0.017447130754590034, - -0.003772176569327712, - 0.01890648901462555, - -0.01118622999638319, - 0.015427486039698124, - 0.007329358719289303, - 0.014854167588055134, - -0.04925329238176346, - -0.029473794624209404, - -0.017942270264029503, - -0.0006800016271881759, - -0.007863587699830532, - 0.03307006508111954, - 0.003716799197718501, - -0.005358575843274593, - -0.024366045370697975, - 0.012801947072148323, - -0.006254386156797409, - -0.02057432383298874, - -0.015258096158504486, - 0.0007243849686346948, - 0.01829407922923565, - -0.020808864384889603, - -0.000947930384427309, - 0.027128400281071663, - -0.001956124324351549, - -0.009980957955121994, - -0.01893254742026329, - 0.0151538560166955, - 0.010397916659712791, - -0.014189638197422028, - 0.0023795985616743565, - 0.024965424090623856, - -0.02466573566198349, - -0.01031322218477726, - -0.005632204934954643, - 0.03674452006816864, - -0.0028519348707050085, - -0.02066553384065628, - 0.013420870527625084, - 0.005182670895010233, - -0.018189840018749237, - -0.10382281243801117, - 0.0016873813001438975, - 0.02290668897330761, - 0.013525109738111496, - 0.02512178383767605, - 0.014111458323895931, - -0.006316278595477343, - 0.021668842062354088, - 0.0075704134069383144, - 0.008202366530895233, - -0.042712245136499405, - -0.01957101747393608, - 0.004723364487290382, - -0.007772377692162991, - 0.012521802447736263, - -0.015375366434454918, - -0.008677960373461246, - -0.010723666287958622, - -0.01615716516971588, - 0.024913305416703224, - 0.015036586672067642, - -0.022216100245714188, - -0.00657362025231123, - -0.0024756945203989744, - -0.003475744742900133, - 0.00402300339192152, - -0.027284760028123856, - 0.012424077838659286, - 0.01656109280884266, - -0.01058685127645731, - 0.016378674656152725, - -0.006348853465169668, - 0.025434503331780434, - -0.02751929871737957, - 0.011270925402641296, - 0.0089059853926301, - -0.0029235996771603823, - -0.026607200503349304, - 0.0149453766644001, - -0.020926132798194885, - -0.005915606860071421, - -0.005661522503942251, - 0.044380079954862595, - -0.023727577179670334, - 0.003892703913152218, - -0.030281653627753258, - -0.01261952705681324, - -0.00889946985989809, - -0.004778741858899593, - -0.036457858979701996, - -0.0333046056330204, - -0.01953192614018917, - 0.010977750644087791, - 0.011674853973090649, - 0.007694197818636894, - 0.01324496604502201, - 0.010176407173275948, - -0.010046107694506645, - -0.010280647315084934, - 0.0024040297139436007, - -0.01605292409658432, - 0.00028380905860103667, - -0.024939365684986115, - 0.034216705709695816, - 0.011902878992259502, - -0.02066553384065628, - -0.02458755485713482, - -0.008169791661202908, - 0.0038601290434598923, - -0.026607200503349304, - -0.021499453112483025, - -0.0059058344922959805, - -0.0015489378711208701, - -0.004286860581487417, - -0.04378070309758186, - -0.004951389040797949, - -0.029030775651335716, - -0.016417764127254486, - 0.0039936862885952, - -0.01615716516971588, - -0.029942873865365982, - -0.02694598026573658, - 0.02114764228463173, - 0.005668037571012974, - 0.021095523610711098, - 0.015896564349532127, - -0.0024235746823251247, - -0.011713944375514984, - -0.00124924851115793, - -0.005951439496129751, - 0.007778892759233713, - -0.0060133314691483974, - 0.013655410148203373, - -0.018489528447389603, - -0.009752933867275715, - 0.006365140900015831, - -0.0027362939435988665, - 0.00674952520057559, - 0.007791922893375158, - 0.009283854626119137, - -0.031167691573500633, - -0.015192946419119835, - -0.044458262622356415, - 0.013538139872252941, - 0.01490628719329834, - -0.019023757427930832, - -0.006277188658714294, - -0.003089732024818659, - 0.02527814358472824, - 0.015792325139045715, - -0.00034346189931966364, - -0.004140273202210665, - 0.002537586959078908, - 0.017538340762257576, - 0.014293878339231014, - -0.01606595516204834, - -0.009700813330709934, - -0.006283703725785017, - -0.005619175266474485, - 0.02648993209004402, - 0.02858775667846203, - 0.0004039290943183005, - -0.013459959998726845, - -0.006635512690991163, - -0.0035343796480447054, - 0.011518494226038456, - -0.023141229525208473, - 0.0031630254816263914, - -0.008482511155307293, - -0.0002720006450545043, - -0.007902677170932293, - -0.01005262229591608, - -0.0036255894228816032, - -0.013551170006394386, - -0.017642581835389137, - 0.008567205630242825, - -0.009837628342211246, - -0.004518142435699701, - 0.011355619877576828, - 0.028222916647791862, - 0.015010526403784752, - 0.049096930772066116, - -0.029525915160775185, - -0.02916107513010502, - 0.00615991884842515, - -0.0333046056330204, - -0.009381579235196114, - -0.006544303148984909, - 0.007941767573356628, - -0.00800691731274128, - 0.007133909035474062, - -0.015635965391993523, - 0.03148040920495987, - 0.0067690699361264706, - 0.0064563509076833725, - -0.020235545933246613, - 0.027128400281071663, - -0.01940162666141987, - -0.003895961446687579, - 0.00889946985989809, - -0.005909091793000698, - -0.017616521567106247, - 0.025616923347115517, - 0.011433799751102924, - 0.002202065195888281, - 0.0013494164450094104, - 0.033513084053993225, - -0.023167287930846214, - -0.02754535898566246, - 0.0006022289744578302, - 0.016860783100128174, - -0.022776389494538307, - -0.017043203115463257, - -0.006443320773541927, - 0.021082492545247078, - 0.026542050763964653, - -0.031897369772195816, - -0.000510204816237092, - 0.03830811381340027, - 0.008430391550064087, - 0.0064563509076833725, - 0.03669239953160286, - 0.00805252231657505, - 0.006257643457502127, - -0.024861184880137444, - -0.015271126292645931, - 0.026059942319989204, - 0.018489528447389603, - -0.013551170006394386, - -0.0005195700796321034, - -0.010072167962789536, - 8.459301898255944e-05, - 0.01602686382830143, - 0.007961312308907509, - 0.01725168153643608, - -0.007081789430230856, - 0.018541648983955383, - 0.010580336675047874, - 0.011029870249330997, - -0.029369555413722992, - 0.01721259206533432, - 0.036353617906570435, - 0.001991956727579236, - 0.002413802081719041, - -0.0005798336933366954, - -0.02533026412129402, - -0.016430793330073357, - 0.007557383272796869, - 0.003193971700966358, - -0.026099031791090965, - -0.01947980746626854, - 0.018645888194441795, - -0.021590663120150566, - 0.024209685623645782, - 0.007993887178599834, - -0.003410595003515482, - -0.026542050763964653, - 0.042712245136499405, - -0.01088654063642025, - -0.0036125595215708017, - -0.02284153923392296, - 0.005974241998046637, - 0.017408041283488274, - 0.005873259622603655, - 0.002781898947432637, - 0.015466575510799885, - 0.019206177443265915, - 0.031219810247421265, - -0.007329358719289303, - 9.192237484967336e-05, - -0.00249849702231586, - -0.0068537648767232895, - 0.015492635779082775, - -0.007257693912833929, - -0.025656012818217278, - -0.01890648901462555, - -0.023219408467411995, - -0.02063947357237339, - -0.0015074048424139619, - 0.025564802810549736, - 0.02351909875869751, - 0.11435102671384811, - 0.014775987714529037, - 0.004107698332518339, - -0.011687884107232094, - -0.004078380763530731, - 0.006782100070267916, - 0.01349905040115118, - 0.01772076077759266, - -0.0016417764127254486, - -0.053579241037368774, - -0.001160481828264892, - -0.01657412387430668, - 0.00828054640442133, - -0.03377368673682213, - -0.01833316870033741, - 0.016899872571229935, - -0.016274433583021164, - 0.0046126097440719604, - -0.0068798246793448925, - 0.023271529003977776, - 0.01998797617852688, - -0.01772076077759266, - 0.020834924653172493, - 0.01901072822511196, - -0.031297989189624786, - -0.015766264870762825, - 0.012215597555041313, - -0.005547509994357824, - -0.01373359002172947, - 0.018606798723340034, - -0.024796035140752792, - -0.004615867510437965, - -0.06342989951372147, - -0.016326554119586945, - 0.03038589283823967, - -0.009322944097220898, - -0.017447130754590034, - -0.02234639972448349, - 0.027258699759840965, - 0.002192292595282197, - 0.011368650011718273, - 0.02469179593026638, - -0.022098831832408905, - -0.02294577844440937, - -0.019714346155524254, - -0.006514985579997301, - -0.00027383299311622977, - -0.0251869335770607, - -0.04088804870843887 - ], - "sparse": "SparseEmbedding(values=array([1.0774823 , 1.99242933, 1.0774823 , 1.0774823 , 1.44651342,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.9149949 , 1.82065042,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.74540947, 1.0774823 , 1.82065042,\n 1.0774823 , 1.0774823 , 1.87452155, 1.0774823 , 1.0774823 ,\n 1.63293708, 1.0774823 , 1.74540947, 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.44651342, 1.44651342, 1.44651342,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.63293708, 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.74540947, 1.87452155, 1.0774823 , 1.0774823 ,\n 1.63293708, 1.0774823 , 1.44651342, 1.0774823 , 1.44651342,\n 1.63293708, 1.0774823 , 1.0774823 , 1.0774823 , 1.44651342,\n 1.0774823 , 1.44651342, 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.44651342, 1.63293708, 1.0774823 , 1.74540947,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.44651342, 1.0774823 ,\n 1.44651342, 1.63293708, 1.44651342, 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.44651342, 1.44651342,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 , 1.0774823 ,\n 1.0774823 , 1.0774823 , 1.44651342, 1.0774823 ]), indices=array([1163187370, 1109731834, 1751984035, 1505037308, 1362353402,\n 1717424474, 186844701, 615529936, 1174634009, 1079921207,\n 400876399, 1034760247, 1597771913, 28500618, 288125403,\n 444697724, 99212807, 1047604504, 269030623, 408270109,\n 1219188223, 160566303, 1638510030, 691794919, 1725631217,\n 1793743868, 1381219851, 164058840, 1183771120, 283813747,\n 997885597, 1980122787, 496086325, 1095274335, 651773314,\n 17485943, 1812441733, 100619008, 915344176, 1524118738,\n 1480001521, 1427900950, 1794747217, 812080723, 1692320747,\n 221927294, 190652800, 47951928, 1224124594, 421005081,\n 1661696679, 1608155039, 1894123915, 1782143793, 1505931685,\n 1187567306, 1214749696, 1778304801, 2137364627, 76479261,\n 1836572153, 1448994436, 643383837, 127773379, 2002512088,\n 2097108133, 1911860981, 2024811619, 717918380, 986559728,\n 2046399687, 1392079869, 1515684580, 1314765729, 147047731,\n 185427435, 101344405, 913546892, 939473796, 2124172637,\n 1692528561, 1288398484, 58688853, 134490412, 692927274,\n 1788297724, 912658635, 699825431, 764035188, 860787312,\n 108945121, 2103309648, 502919461, 1413554298, 2058927111,\n 1485265044, 2063317649, 1066675059, 482341621, 231980230,\n 1616560467, 391312375, 1550900382, 591898045, 1854958712,\n 163077544, 1354425271, 742036956, 612913483, 1784631546,\n 1976429592, 1286817522, 821190249, 1356962648, 102022374,\n 2094190344, 1946058775, 499733850, 1935340272, 221688199,\n 1081324513, 388471277, 984697402, 828667247, 900543307,\n 407244595, 635194225, 1648419564, 1935863057, 188603925,\n 1584587990, 1974581709, 843897557, 132109433, 694963343,\n 255174557, 1034452378, 19522071, 1597346809]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 9, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 217 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000010.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000010.json deleted file mode 100644 index b1889b219dc727611098403bfc3ad7b89fbeb94a..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000010.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000010", - "content": "Abstract The thermal stress in urban areas is continuously increasing. To adapt urban areas to the predicted climatic changes, it is crucial to strengthen the green infrastructure. When developing and implementing adaptation strategies, the diverse interactions between the various urban components must be considered in order to ensure long-term sustainable urban development. In this thesis, the interactions between the reduction of motorized individual transport (MIT), the expansion of urban green spaces and the thermal energy demand of buildings are examined. These interactions were analysed using two case study areas in Southern Germany. Ideally, changing mobility behaviour will lead to a reduction in motorized traffic, freeing up different amounts of space for new plantings. The results of the analyses show that increasing urban greenery has an impact on the thermal energy demand of buildings and the urban microclimate. The simulations of the changed thermal building energy demand and the effects on evapotranspiration were carried out using the SimStadt software tool. With a reduction of MIT in the modal split by 20% in an area of approximately 40 hectares, the planting of 500 new trees becomes feasible. This increase in urban greenery by about 60 % compared to the current state leads to a reduction in the annual cooling energy demand by almost 140 MWh. Additionally, the 500 new trees contribute to a temperature decrease of up to 2.2 Kelvin.", - "embedding": { - "dense": [ - 0.015216565690934658, - -0.0011082799173891544, - 0.017396125942468643, - -0.01591617800295353, - -0.0003474936820566654, - 0.014880213886499405, - -0.03406573459506035, - -0.010917986743152142, - -0.011906861327588558, - -0.030486946925520897, - 0.0037536886520683765, - -0.0007504854584112763, - 0.0010477364994585514, - 0.012068310752511024, - -0.015983447432518005, - -0.018916437402367592, - 0.032451242208480835, - 0.002707633888348937, - 0.01880880445241928, - 0.0003859639400616288, - -0.013319539837539196, - 0.022710489109158516, - 0.011604145169258118, - -0.005610351916402578, - 0.0020618378184735775, - 0.011631052941083908, - 0.009316951036453247, - -0.031240375712513924, - -0.02137853391468525, - -0.004823287948966026, - 0.023315921425819397, - -0.023732999339699745, - -0.02976042777299881, - -0.015700912103056908, - -0.007890818640589714, - -0.006817855406552553, - 0.004305305890738964, - 0.0035249690990895033, - 0.018485907465219498, - -0.010776719078421593, - 0.0017120317788794637, - -0.0259260144084692, - 0.004012679681181908, - -0.011274519376456738, - -0.0006840559071861207, - 0.029383713379502296, - 0.0014421093510463834, - -0.011631052941083908, - -0.015768183395266533, - 0.017974652349948883, - 0.017248131334781647, - 0.032639600336551666, - -0.01746339723467827, - 0.006646316032856703, - -0.025051498785614967, - 0.015095478855073452, - -0.0220646932721138, - 0.00912859383970499, - 0.0060677905566990376, - -0.006693405099213123, - -0.01922588236629963, - -0.0028186298441141844, - -0.026154734194278717, - 0.005277363117784262, - -0.025414759293198586, - -0.012377754785120487, - -0.00417749211192131, - 0.003709962824359536, - 0.032639600336551666, - -0.013965335674583912, - 0.03498061001300812, - 0.036810364574193954, - 0.018243733793497086, - -0.004285124596208334, - 0.01594308577477932, - -0.009612941183149815, - 0.003999225329607725, - -0.0032609328627586365, - -0.001854981412179768, - 0.00846934411674738, - 0.001670828671194613, - -0.03298940509557724, - -0.012774650007486343, - 0.029168447479605675, - -0.002917853882536292, - 0.003117983229458332, - -0.0028421746101230383, - 0.013326266780495644, - 0.010480728931725025, - 0.00983493309468031, - -0.009841660037636757, - 0.01610453426837921, - 0.0021291084121912718, - 0.023867540061473846, - -0.01966986618936062, - 0.001955887069925666, - -0.014422774314880371, - -0.007682280149310827, - 0.00252768537029624, - -0.00769573450088501, - -0.0040765865705907345, - -0.005378268659114838, - -0.012667017057538033, - -0.006350326351821423, - -0.04741217941045761, - -0.002917853882536292, - 0.010689266957342625, - 0.00799845065921545, - 0.013548259623348713, - -0.033554479479789734, - -0.022427953779697418, - 0.03175163269042969, - -0.03266650810837746, - -0.023598458617925644, - -0.0031987077090889215, - -0.01105925440788269, - 0.03742925450205803, - 0.0050587342120707035, - -0.010070379823446274, - -0.007473742123693228, - 0.02388099394738674, - -0.003454335266724229, - -0.003067530458793044, - -0.0219301525503397, - 0.026679443195462227, - 0.02074619196355343, - 0.0036460559349507093, - 0.0014051105827093124, - -0.03099820204079151, - -0.01194049697369337, - -0.031563274562358856, - -0.010036744177341461, - 0.011933770030736923, - 0.020167667418718338, - -0.037832874804735184, - 0.024230800569057465, - -0.0006920442683622241, - -0.005536354146897793, - -0.04316069185733795, - -0.044586822390556335, - -0.030486946925520897, - 0.007325747050344944, - -0.035734038800001144, - -0.012875555083155632, - 0.010736356489360332, - 0.03207452967762947, - 0.01067581307142973, - 0.02074619196355343, - 0.00019886813242919743, - -0.011563782580196857, - -0.010346188209950924, - -0.02542821317911148, - -0.010097287595272064, - 0.01746339723467827, - 0.002522640163078904, - 0.006928851827979088, - -0.018485907465219498, - -0.017059775069355965, - -0.04754672199487686, - 0.00819353573024273, - 0.027257967740297318, - -0.03215525299310684, - 0.002095472998917103, - 0.0018465726170688868, - 0.019508417695760727, - 0.005139458924531937, - -0.011657960712909698, - 0.00818008091300726, - 0.014274779707193375, - -0.023867540061473846, - -4.9007539928425103e-05, - 0.027540503069758415, - -0.021418897435069084, - 0.014086422510445118, - 0.005765073467046022, - 0.017503758892416954, - -0.010312552563846111, - 0.031509459018707275, - -0.0026538174133747816, - -0.03635292500257492, - -0.013084094040095806, - 0.005522900260984898, - 0.006743858102709055, - 0.026248911395668983, - -0.015041662380099297, - 0.006316691171377897, - 0.03320467099547386, - 0.022306866943836212, - 0.01180595625191927, - 0.005321089178323746, - 0.013057185336947441, - 0.00428176112473011, - 0.0006659770151600242, - -0.0052807265892624855, - -0.6488096117973328, - 0.01812264695763588, - 0.0072786579839885235, - -0.002056792611256242, - -0.0004935965989716351, - -0.0018667536787688732, - 0.044533006846904755, - 0.026168188080191612, - -0.01605071872472763, - 0.01699250377714634, - -0.004708928521722555, - 0.022898845374584198, - -0.010891078040003777, - -0.020571289584040642, - 0.011476331390440464, - -0.01853972300887108, - -0.006400778889656067, - -0.02132471837103367, - 0.026181641966104507, - 0.022253049537539482, - -0.0075342850759625435, - 0.012613200582563877, - -0.009545670822262764, - 0.0036426924634724855, - 0.019131703302264214, - 0.01239793561398983, - -0.007991723716259003, - -0.0377790592610836, - 0.0030877115204930305, - 0.021082544699311256, - -0.00606106361374259, - 0.027876855805516243, - -0.005657440982758999, - 0.017449943348765373, - 0.04437156021595001, - 0.008819149807095528, - -0.015512554906308651, - 0.024419156834483147, - 0.008455890230834484, - 0.012828466482460499, - -0.019320059567689896, - 0.005933249834924936, - 0.016911780461668968, - 0.011960677802562714, - 0.0037032358814030886, - 0.03713326156139374, - 0.04146547615528107, - -0.027796130627393723, - -0.01025873702019453, - -0.011933770030736923, - 0.014839851297438145, - -0.00038260043947957456, - -0.0067909471690654755, - -0.0006092176190577447, - 0.01765175350010395, - -0.004147220402956009, - 0.026800530031323433, - 0.000779916241299361, - -0.0014547224855050445, - 0.017786294221878052, - -0.005028462968766689, - -0.005321089178323746, - -0.014194055460393429, - -0.0231679268181324, - -0.005512809846550226, - 0.021782156080007553, - -0.0154452845454216, - -0.018297549337148666, - -0.01804192177951336, - -0.030164049938321114, - -0.01095162145793438, - 0.01535110641270876, - 0.001102393725886941, - -0.0013454080326482654, - 0.026235457509756088, - 0.003178526647388935, - 0.03212834522128105, - 0.003291204571723938, - -0.005300907883793116, - 0.025064952671527863, - 0.00383777660317719, - 0.0012394571676850319, - -0.009303497150540352, - -0.019589141011238098, - 0.022737396880984306, - -0.03769833594560623, - -0.024419156834483147, - 0.0014530407497659326, - -0.007776458747684956, - 0.013474262319505215, - 0.018082285299897194, - -0.00690194359049201, - -0.02314101904630661, - -0.041142579168081284, - -0.007837002165615559, - 0.01969677396118641, - -0.0044768452644348145, - 0.029948784038424492, - 0.02860337682068348, - -0.012640109285712242, - -0.018943345174193382, - -0.012983188033103943, - 0.027984488755464554, - 0.011987586505711079, - 0.02040984109044075, - -0.0049410113133490086, - -0.015404922887682915, - 0.011368698440492153, - 0.033689018338918686, - 0.01482639741152525, - 0.008213716559112072, - 0.018929891288280487, - -0.003773869713768363, - -0.0035081515088677406, - 0.006447868421673775, - -0.019212426617741585, - 0.029249172657728195, - -0.020813463255763054, - 0.007964815944433212, - -0.013844248838722706, - 0.008630792610347271, - 0.005993793252855539, - 0.01383079495280981, - -0.01983131468296051, - 0.010843989439308643, - 0.024836232885718346, - 0.00549599202349782, - -0.007877364754676819, - -0.013662619516253471, - -0.020234936848282814, - -0.006064427085220814, - 0.02148616686463356, - 0.04173455759882927, - -0.007621736731380224, - 0.03317776322364807, - 0.00774282356724143, - 0.028199752792716026, - -0.013702981173992157, - -0.0026185004971921444, - -0.018687717616558075, - -0.014516953378915787, - -0.01180595625191927, - 0.0017103500431403518, - -0.017988106235861778, - -0.009754208847880363, - -0.01925279013812542, - -0.01872808113694191, - 0.006683314684778452, - 0.004271670710295439, - -0.019158611074090004, - -0.011496512219309807, - 0.000630660040769726, - -0.005559898912906647, - -0.00958603248000145, - -0.008106083609163761, - 0.003057439811527729, - 0.0009518762235529721, - -0.02043674886226654, - 0.005189911928027868, - -0.020584743469953537, - -0.00860388483852148, - 0.024176983162760735, - -0.026679443195462227, - 0.01704632118344307, - -0.03086366131901741, - -0.00036347040440887213, - -0.012700652703642845, - 0.024486428126692772, - -0.024647876620292664, - -0.031132742762565613, - -0.007144116796553135, - -0.034657713025808334, - 0.00801190547645092, - 0.013454080559313297, - -0.021163269877433777, - -0.021553438156843185, - -0.0060913353227078915, - -0.013992244377732277, - -0.00996947381645441, - 0.006636225618422031, - -0.0019390693632885814, - -0.007467014715075493, - 0.0007437583990395069, - -0.014718764461576939, - 0.03202071413397789, - 0.01906443201005459, - 0.03070221282541752, - -0.008119537495076656, - 0.003429108764976263, - 0.012317211367189884, - 0.015741273760795593, - 0.029491344466805458, - -0.0035956031642854214, - 0.01053454540669918, - -0.007493922952562571, - -0.009397675283253193, - 0.010312552563846111, - 0.017893927171826363, - -0.017530666664242744, - 0.00994256604462862, - 0.02708306536078453, - -0.020557835698127747, - 0.024069350212812424, - -0.00472238240763545, - 0.016642697155475616, - -0.011657960712909698, - -0.0004023610963486135, - -0.006316691171377897, - 0.022629763931035995, - -0.0021576981525868177, - 0.013124455697834492, - -0.011752139776945114, - -0.0270292479544878, - -0.009431310929358006, - -0.014046060852706432, - 0.019844768568873405, - -0.018109193071722984, - 0.005465720314532518, - -0.01969677396118641, - -0.02518603950738907, - 0.01886262185871601, - -0.009323677979409695, - 0.030083324760198593, - -0.01426132582128048, - -0.023934809491038322, - 0.02371954545378685, - -0.012263394892215729, - 0.02027530036866665, - 0.009458218701183796, - -0.013252269476652145, - 7.473321602446958e-05, - 0.019656412303447723, - 0.0094447648152709, - 0.0006420119316317141, - 0.014207509346306324, - 0.018929891288280487, - 0.0002898933889809996, - -0.01652161218225956, - 0.037967417389154434, - 0.015028208494186401, - 0.025912560522556305, - 0.02713688090443611, - 0.0013782024616375566, - -0.028226662427186966, - 0.03947427496314049, - -0.0024604150094091892, - 0.026719804853200912, - 0.013218634761869907, - 0.011543601751327515, - 0.020571289584040642, - -0.020033126696944237, - 0.01274101436138153, - 0.010063652880489826, - -0.01836482062935829, - 0.022427953779697418, - -0.010568180121481419, - 0.021136360242962837, - -0.008119537495076656, - 0.05260545760393143, - 0.017382672056555748, - 0.009216045029461384, - 0.011543601751327515, - 0.010642178356647491, - -0.004409574903547764, - -0.009579305537045002, - 0.004335577599704266, - -0.001028396305628121, - 0.005321089178323746, - 0.009148774668574333, - -0.009572578594088554, - 0.003908410668373108, - -0.010393277741968632, - -0.022683581337332726, - -0.012323938310146332, - 0.006505047902464867, - 0.009390948340296745, - 0.013682800345122814, - 0.017342310398817062, - -0.0014412683667615056, - 0.016117988154292107, - -0.003302976954728365, - -0.01696559600532055, - -0.010823807679116726, - 0.022952662780880928, - -0.0017288493691012263, - -0.01985822431743145, - -0.01099198404699564, - 0.006589136086404324, - -0.016750330105423927, - -0.011415787972509861, - -0.008866239339113235, - -0.002364554675295949, - -0.013184999115765095, - 0.005169730633497238, - -5.96499303355813e-05, - -0.023383192718029022, - 0.017221223562955856, - -0.022427953779697418, - 0.008516433648765087, - 0.011146705597639084, - 0.01728849485516548, - -0.00016207962471526116, - -0.02211850881576538, - 7.92003920651041e-05, - 0.027459779754281044, - 0.033473752439022064, - -0.0011192113161087036, - -0.00983493309468031, - -0.008422254584729671, - -0.016750330105423927, - 0.007776458747684956, - -0.0027210877742618322, - 0.006868308410048485, - 0.008462617173790932, - -0.003030531806871295, - 0.0042548528872430325, - 0.0056069884449243546, - -0.009962746873497963, - 0.037025630474090576, - 3.397680848138407e-05, - 0.0023056932259351015, - -0.03323157876729965, - -0.027015794068574905, - 0.0019390693632885814, - 0.062426935881376266, - 0.011180341243743896, - 0.006387325003743172, - -4.990097659174353e-05, - 0.027796130627393723, - -0.0044970265589654446, - -0.013770251534879208, - -0.025804927572607994, - -0.005849161650985479, - -0.015552917495369911, - 0.01355498656630516, - -0.010305825620889664, - -0.0027732225134968758, - -0.014247871935367584, - 0.008119537495076656, - 0.0221992339938879, - -0.0032710235100239515, - -0.027015794068574905, - -0.014651494100689888, - -0.013534805737435818, - 0.013393537141382694, - -0.012626654468476772, - -0.005358087830245495, - 0.03546495735645294, - 0.02962588705122471, - 0.013729889877140522, - 0.02976042777299881, - 0.024150075390934944, - 0.010998710989952087, - -0.010393277741968632, - 0.007567920722067356, - 0.024459518492221832, - 0.009734027087688446, - 0.01596999354660511, - -0.03533041477203369, - -0.0032710235100239515, - 0.0022905573714524508, - -0.02708306536078453, - 0.021835973486304283, - -0.003282795660197735, - 0.005062098149210215, - 0.005734801758080721, - 0.015068570151925087, - -0.0113754253834486, - 0.009512035176157951, - -0.023544641211628914, - -0.013541532680392265, - 0.024809325113892555, - -0.011442695744335651, - -0.0007311452063731849, - 0.010695993900299072, - -0.009976200759410858, - -0.04060441628098488, - -0.006693405099213123, - 0.008839331567287445, - -0.002113972557708621, - 0.017974652349948883, - -0.020369477570056915, - -0.002139198826625943, - -0.01880880445241928, - -0.02077310159802437, - -0.02408280409872532, - 0.0030877115204930305, - -0.03635292500257492, - -0.011025619693100452, - -0.004564296919852495, - -0.006935578770935535, - -0.0070566656067967415, - -0.028872458264231682, - 0.004557569976896048, - 0.00623260298743844, - -0.03395809978246689, - -0.030567672103643417, - 0.021445805206894875, - 0.005082278978079557, - -0.008650974370539188, - 0.005078915506601334, - -0.009592759422957897, - 0.008906601928174496, - 0.004244762472808361, - -0.029518254101276398, - -0.006642952561378479, - 0.015256927348673344, - -0.017719024792313576, - -0.0079311802983284, - -0.0007307247724384069, - -0.01870117336511612, - -0.024069350212812424, - -0.010655632242560387, - 0.02739250846207142, - -0.013682800345122814, - -0.016979049891233444, - 0.008375165052711964, - -0.00358887598849833, - -0.014436229132115841, - 0.006404142361134291, - 0.0027143608313053846, - 0.008099356666207314, - 0.014153692871332169, - -0.031213467940688133, - 0.01482639741152525, - -0.0023191471118479967, - 0.0063301450572907925, - -0.02184942737221718, - 0.008765333332121372, - 0.0040934039279818535, - -0.017248131334781647, - 0.0032609328627586365, - -0.006343598943203688, - -0.010272190906107426, - 0.023410100489854813, - -0.0191720649600029, - 0.009121866896748543, - -0.0006474776309914887, - 0.006562227848917246, - 0.015337652526795864, - 0.011402333155274391, - 0.01699250377714634, - 0.006498320959508419, - 0.004382666666060686, - -0.007137389853596687, - -0.026154734194278717, - 0.028926273807883263, - 0.012135581113398075, - 0.014772580936551094, - -0.011321608908474445, - -0.001511061447672546, - 0.029948784038424492, - -0.03097129426896572, - -0.008301167748868465, - -0.02744632586836815, - 0.012451752088963985, - 0.01718086190521717, - -0.013743343763053417, - -0.027123427018523216, - -0.024419156834483147, - -0.005048643797636032, - 0.0032138435635715723, - -0.031078927218914032, - -0.000742497097235173, - -0.022871937602758408, - 0.004106858279556036, - 0.0010494183516129851, - 0.01492057554423809, - 0.027930671349167824, - -0.025522392243146896, - -0.00018583449127618223, - 0.009962746873497963, - 0.0003502265317365527, - 0.0307560283690691, - -0.019548779353499413, - -0.00835498422384262, - -0.025078406557440758, - 0.020261846482753754, - -0.03317776322364807, - -0.042218904942274094, - -0.00423467205837369, - -0.010050198063254356, - 0.01985822431743145, - 0.01591617800295353, - 0.03979717195034027, - -0.006202331278473139, - 0.02626236528158188, - 0.004103494808077812, - -0.018970254808664322, - -0.0013269087066873908, - -0.00103932770434767, - 0.02319483458995819, - -0.014422774314880371, - 0.027540503069758415, - 0.014759127050638199, - 0.0110323466360569, - 0.009438037872314453, - -3.8470261642942205e-05, - -0.014490044675767422, - 0.041330937296152115, - -0.015606733970344067, - -0.012633382342755795, - -0.0016733512748032808, - -0.021230539306998253, - -0.0072181145660579205, - 0.016508156433701515, - -0.01235757302492857, - 0.0019491600105538964, - -0.028818640857934952, - 0.0012032993836328387, - 0.026168188080191612, - 0.008711517788469791, - 0.017893927171826363, - -0.003017077688127756, - 0.00010532022861298174, - -0.022629763931035995, - 0.00767555320635438, - 0.007843729108572006, - 0.00041644583689048886, - 0.009808025322854519, - -0.01757103018462658, - -0.04041605815291405, - -0.03498061001300812, - 0.02474205568432808, - -0.01660233549773693, - -0.009841660037636757, - 0.01496093813329935, - 0.009565851651132107, - 0.008159900084137917, - 0.004133766517043114, - 0.012236486189067364, - -0.007393017411231995, - 0.007910999469459057, - -0.0060240644961595535, - -0.002389781177043915, - 0.0019609322771430016, - 0.008543341420590878, - -0.025643479079008102, - -0.0003750325122382492, - -0.007406471762806177, - -0.007123935967683792, - 0.024728599935770035, - -0.01720776967704296, - 0.03210143744945526, - 0.018512815237045288, - 0.01162432599812746, - 0.02203778363764286, - 0.0023965081200003624, - 0.027903763577342033, - -0.0025579570792615414, - -0.01050763763487339, - -0.006219149101525545, - -0.0011595735559239984, - 0.014490044675767422, - -0.012297029606997967, - 0.016790693625807762, - 0.0012394571676850319, - -0.007191206328570843, - -0.03298940509557724, - -0.013642437756061554, - 0.016696514561772346, - 0.018849167972803116, - 0.004039587918668985, - 0.03705253824591637, - 0.03207452967762947, - -0.004332214128226042, - -0.028899366036057472, - -0.013884611427783966, - -0.030433131381869316, - 0.012821739539504051, - -0.006057700142264366, - 0.005499355494976044, - 0.004251489415764809, - 0.001942432951182127, - 0.004564296919852495, - 0.04060441628098488, - 0.013043731451034546, - 0.01801501400768757, - -0.02760777436196804, - -0.0014412683667615056, - 0.005976975429803133, - -0.015256927348673344, - 0.007487196009606123, - 0.011415787972509861, - 0.015647096559405327, - 0.027271421626210213, - 0.018082285299897194, - -0.016588881611824036, - 0.014059514738619328, - -0.01439586654305458, - 0.006370507180690765, - -0.005458993371576071, - 0.0031734814401715994, - 0.029276080429553986, - 0.007043211255222559, - -0.011294701136648655, - -0.0016977367922663689, - 0.010938167572021484, - 0.027298329398036003, - -0.002499095629900694, - -0.005213456228375435, - -0.0026672715321183205, - -0.013003368861973286, - -0.017423035576939583, - 0.006878398824483156, - 0.01552600972354412, - -0.016171805560588837, - -0.007682280149310827, - -0.017449943348765373, - -0.0026168187614530325, - -0.013077367097139359, - -0.005593534093350172, - 0.01775938645005226, - -0.023100657388567924, - -0.008832603693008423, - 0.012909190729260445, - -0.009915657341480255, - 0.01836482062935829, - -0.008368438109755516, - -0.007292111869901419, - -0.025589661672711372, - 0.03288177400827408, - -0.02046365663409233, - 0.03317776322364807, - 0.030137140303850174, - 0.021217085421085358, - 0.011906861327588558, - 0.015310743823647499, - -0.005378268659114838, - -0.015364560298621655, - 0.010884351097047329, - -0.017934290692210197, - -0.0419229157269001, - 0.012323938310146332, - -0.0023578277323395014, - 0.004318759776651859, - -0.02043674886226654, - 0.0022586039267480373, - 0.01288228202611208, - 0.001585058867931366, - -0.002894309116527438, - -0.014274779707193375, - -0.02143235132098198, - 0.031401824206113815, - 0.0015497419517487288, - 0.0094447648152709, - 0.04399484395980835, - -0.04052369296550751, - 0.013884611427783966, - -0.01292264461517334, - 0.008805695921182632, - -0.012027948163449764, - -0.004500390030443668, - -0.004715655464679003, - -0.031159650534391403, - 0.01541837677359581, - -0.015082024969160557, - 7.415511208819225e-05, - 0.005462356843054295, - -0.00881242286413908, - -0.026047101244330406, - 0.006155242212116718, - 0.008711517788469791, - 0.008872966282069683, - 0.005462356843054295, - 0.0035249690990895033, - -0.011879953555762768, - 0.017934290692210197, - -0.014422774314880371, - -0.005506082437932491, - -0.014086422510445118, - -0.009518762119114399, - -0.05548463016748428, - -0.022279957309365273, - 0.005169730633497238, - 0.03212834522128105, - 0.01313118264079094, - -0.024230800569057465, - -0.003625874873250723, - 0.00507555203512311, - -0.0551617331802845, - -0.035572588443756104, - 0.011543601751327515, - -0.01773247867822647, - 0.009195864200592041, - 0.0115839634090662, - -0.02104218304157257, - 0.02080000936985016, - 0.0034980610944330692, - 0.015108932740986347, - -0.005112550687044859, - -0.010319280438125134, - 0.0003428688505664468, - -0.0016674651997163892, - 0.03632601723074913, - 0.001621216768398881, - -0.018983708694577217, - -0.010332734324038029, - 0.01977749913930893, - 0.0013378402218222618, - -0.0039050469640642405, - 0.025831835344433784, - -0.005361451301723719, - 0.008449162356555462, - 0.003057439811527729, - 0.008482798002660275, - -0.0020265209022909403, - 0.008428981527686119, - 0.018660809844732285, - -0.03164399787783623, - 0.00644114101305604, - 0.04493663087487221, - -0.004853559657931328, - -0.0022602856624871492, - -0.001189004397019744, - -0.0075948284938931465, - 0.007325747050344944, - -0.007379563525319099, - -0.009000780060887337, - -0.01696559600532055, - -0.002372963586822152, - -0.038101956248283386, - 0.03508824482560158, - 0.004638294223695993, - 0.00417749211192131, - 0.020369477570056915, - 0.007473742123693228, - 0.009505308233201504, - -0.01478603482246399, - 0.0016346708871424198, - -0.0064512318931519985, - 0.008186807855963707, - 0.028253570199012756, - -0.011503239162266254, - 0.016292892396450043, - -0.009673484601080418, - 0.013898065313696861, - -0.009673484601080418, - 0.009007507003843784, - -0.006787583697587252, - -0.01057490799576044, - 0.0040765865705907345, - -0.0028808549977838993, - 0.02595292218029499, - -0.020625105127692223, - -0.00656559132039547, - 0.005347996950149536, - -0.014315142296254635, - -0.010339461266994476, - -0.016723422333598137, - 0.004305305890738964, - -0.029975691810250282, - -0.0002486902812961489, - 0.013655892573297024, - -0.020732738077640533, - -0.010319280438125134, - -0.006780856754630804, - 0.012821739539504051, - -0.0270292479544878, - 0.023598458617925644, - 0.19287770986557007, - 0.0016834419220685959, - 0.00528745399788022, - 0.027876855805516243, - 0.0018583448836579919, - 0.006955759599804878, - 0.021862881258130074, - -0.01825718767940998, - -0.02413662150502205, - 0.03756379336118698, - -0.016777239739894867, - 0.011711777187883854, - -0.00987529568374157, - -0.002795085310935974, - 0.011839590966701508, - -0.0013462490169331431, - -0.03947427496314049, - -0.00994256604462862, - -0.007352655287832022, - 0.03942045569419861, - 0.010547999292612076, - -0.016427433118224144, - -0.0009829887421801686, - -0.00742665259167552, - 0.016306346282362938, - 0.0022871936671435833, - 0.00935058668255806, - -0.00560026103630662, - 0.036675825715065, - -0.005798708647489548, - -0.0051260050386190414, - 0.011563782580196857, - 0.02240104414522648, - -0.019091341644525528, - 0.022441407665610313, - 0.003215525299310684, - 0.010702721774578094, - -0.023786814883351326, - 0.013346448540687561, - 0.005660804454237223, - -0.013063912279903889, - -0.009841660037636757, - -0.012700652703642845, - -0.001485835062339902, - -0.015875816345214844, - 0.01327917817980051, - -0.024015534669160843, - 0.002786676399409771, - -0.002278784988448024, - -0.012061583809554577, - -0.025105314329266548, - -0.02553584612905979, - 0.03191307932138443, - 0.04310687631368637, - -0.004745927173644304, - 0.005610351916402578, - 0.02043674886226654, - -0.011577236466109753, - 0.029195355251431465, - 0.006484867073595524, - -0.03161709010601044, - 0.02380026876926422, - -0.01759793795645237, - 0.02863028459250927, - -0.013649164699018002, - 0.0024520063307136297, - -0.021755248308181763, - 0.019077885895967484, - 0.0006760675460100174, - 0.01183286402374506, - -0.029518254101276398, - -0.03401191532611847, - -0.013911519199609756, - 0.01478603482246399, - -0.02771540731191635, - -0.014342050068080425, - 0.027432870119810104, - -0.01342044584453106, - 0.017248131334781647, - 0.015512554906308651, - -0.011637779884040356, - 0.00011341369827277958, - 0.018405182287096977, - -0.027284875512123108, - -0.006077880971133709, - -0.03541114181280136, - 0.017315402626991272, - 0.003237388329580426, - -0.009007507003843784, - -0.007393017411231995, - -0.007796640042215586, - 0.002164425328373909, - 0.0029128084424883127, - -0.013104274868965149, - 0.018472453579306602, - -0.002031566109508276, - 0.009014233946800232, - -0.008550068363547325, - -0.015579825267195702, - 0.02474205568432808, - -0.024284616112709045, - 0.05107169225811958, - 0.01966986618936062, - -0.0004809834063053131, - -0.005815526470541954, - 0.007049938198179007, - -0.008200262673199177, - 0.00621242169290781, - -0.007709188386797905, - -0.01751721277832985, - 0.0022871936671435833, - -0.03481915965676308, - 0.008758606389164925, - -0.0011217340361326933, - -0.011597417294979095, - 0.013164818286895752, - 0.008960417471826077, - -0.027271421626210213, - 0.02104218304157257, - 0.0004860286717303097, - -0.0007769731455482543, - -0.0002356566401431337, - 0.01383079495280981, - -0.013346448540687561, - 0.010621996596455574, - -0.0039050469640642405, - -0.042380355298519135, - 0.002161061856895685, - -0.012303756549954414, - -0.0051630036905407906, - 0.012431570328772068, - -0.030164049938321114, - -0.0015060161240398884, - 0.012996641919016838, - -0.019266244024038315, - 0.013541532680392265, - 0.015606733970344067, - -0.04525952786207199, - 0.01166468858718872, - 0.02758086659014225, - 0.006313327234238386, - -0.0308905690908432, - 0.0020820191130042076, - -0.007789912633597851, - 0.012243214063346386, - -0.011725231073796749, - 0.007682280149310827, - 0.01017801184207201, - -0.02540130540728569, - -0.024513335898518562, - 0.011328335851430893, - 0.002483959775418043, - 0.0058861603029072285, - -0.019642958417534828, - 0.019400784745812416, - -0.010790172964334488, - -0.012512295506894588, - -0.029518254101276398, - 0.0025899105239659548, - 0.012613200582563877, - -0.0135146239772439, - 0.02573765628039837, - -0.005132731981575489, - -0.0018532996764406562, - -0.014516953378915787, - 0.0115839634090662, - -0.17092064023017883, - 0.021163269877433777, - 0.023315921425819397, - -0.03298940509557724, - 0.002636999823153019, - -0.0015631960704922676, - -0.013602076098322868, - -0.017167408019304276, - -0.012579565867781639, - -0.020006218925118446, - 0.0455017015337944, - 0.00583234429359436, - -0.023571548983454704, - -0.014019152149558067, - 0.006198967806994915, - 0.023598458617925644, - -0.010104014538228512, - 0.016871416941285133, - 0.009491854347288609, - 0.007924453355371952, - -0.002154334681108594, - -0.04649730399250984, - 0.007796640042215586, - -0.020073488354682922, - 0.007345928344875574, - -0.004423029255121946, - -0.01767866313457489, - -9.948662045644596e-05, - 0.008866239339113235, - -0.016979049891233444, - -0.01541837677359581, - 0.010931440629065037, - 0.037025630474090576, - 0.005421994719654322, - 0.014153692871332169, - 0.0005781050422228873, - 0.009525489062070847, - -0.01496093813329935, - -0.014436229132115841, - 0.03312394767999649, - 0.03183235600590706, - -0.012101945467293262, - -0.008772061206400394, - 0.009189137257635593, - -0.029033906757831573, - 0.0007837002049200237, - 0.013164818286895752, - 0.007298838812857866, - -0.0017725751968100667, - 0.008832603693008423, - 0.01348771620541811, - -0.00018951334641315043, - -0.015216565690934658, - 0.0035350597463548183, - 0.010884351097047329, - 0.014772580936551094, - -0.002860673936083913, - 0.01880880445241928, - 0.016763783991336823, - -0.004127039108425379, - 0.00029241605079732835, - -0.004631567280739546, - 0.016817601397633553, - 0.015620187856256962, - -0.014046060852706432, - -0.029356803745031357, - 0.00036220907350070775, - 0.00034076665178872645, - -0.01369625423103571, - 0.01980440691113472, - -0.045932233333587646, - -0.0019727046601474285, - 0.00937749445438385, - -0.0038646848406642675, - 0.01267374400049448, - 0.010709448717534542, - -0.01485330518335104, - 0.005751619581133127, - -0.011536874808371067, - -0.005778527818620205, - -0.02035602368414402, - 0.032505057752132416, - -0.025495482608675957, - 0.010561453178524971, - -0.003353429725393653, - 0.001595149515196681, - 0.023154472932219505, - -0.009673484601080418, - 0.009323677979409695, - 0.0135146239772439, - 0.02382717654109001, - -0.04200363904237747, - -0.00016165919078048319, - -0.027244513854384422, - 0.00644114101305604, - 9.113037958741188e-05, - 0.03995861858129501, - 0.007547739427536726, - 0.0033467025496065617, - -0.02272394299507141, - 0.011610872112214565, - -0.019320059567689896, - -0.018297549337148666, - -0.01922588236629963, - -0.0015943085309118032, - 0.025132223963737488, - -0.023289013653993607, - -0.0017238041618838906, - 0.01859354041516781, - 0.003672964172437787, - -0.019535325467586517, - -0.019024070352315903, - 0.017799749970436096, - 0.011725231073796749, - -0.011106343939900398, - 0.004160674288868904, - 0.04103494808077812, - -0.016804147511720657, - -0.008395346812903881, - -0.021284356713294983, - 0.01823027990758419, - 0.005374905187636614, - -0.017826657742261887, - 0.011637779884040356, - 0.01636016182601452, - -0.023786814883351326, - -0.12506914138793945, - -0.010030017234385014, - 0.014099876396358013, - 0.012720833532512188, - 0.020786555483937263, - -0.0002770699793472886, - -0.0025310490746051073, - 0.025562753900885582, - -0.007689007092267275, - 0.01980440691113472, - -0.04655111953616142, - -0.018351366743445396, - -0.004591205157339573, - -0.00656559132039547, - 0.01925279013812542, - -0.019158611074090004, - 0.0007273612427525222, - -0.00987529568374157, - -0.016804147511720657, - 0.026248911395668983, - 0.01991203986108303, - -0.019817860797047615, - -0.0007778140716254711, - -0.0033820196986198425, - -0.004907376132905483, - 0.0006457958952523768, - -0.02534748800098896, - 0.011261065490543842, - 0.010373095981776714, - -0.0021694705355912447, - 0.024567151442170143, - -0.008388619869947433, - 0.023369738832116127, - -0.030164049938321114, - 0.01439586654305458, - 0.001139392494224012, - 0.0056877126917243, - -0.019629504531621933, - 0.013205179944634438, - -0.012471932917833328, - -0.01298991497606039, - 0.0008547545876353979, - 0.04986082389950752, - -0.012162488885223866, - -0.007070119492709637, - -0.02573765628039837, - -0.01770557090640068, - -0.011274519376456738, - -0.009014233946800232, - -0.04856923222541809, - -0.03936664015054703, - -0.003176844911649823, - 0.01183286402374506, - 0.008112810552120209, - 0.01387115754187107, - 0.005701166577637196, - 0.02322174422442913, - -0.0005268113454803824, - -0.007668826263397932, - 0.006814491935074329, - -0.0007912681321613491, - 0.01428823359310627, - -0.007917726412415504, - 0.02187633514404297, - 0.015310743823647499, - -0.019764045253396034, - -0.03855939581990242, - -0.01662924326956272, - 0.009115139953792095, - -0.027096519246697426, - -0.02082691714167595, - -0.002214878099039197, - -0.008529887534677982, - -0.024809325113892555, - -0.0397164486348629, - 0.003181890118867159, - -0.02642381563782692, - -0.009276588447391987, - -0.0054421755485236645, - -0.0054859016090631485, - -0.02573765628039837, - -0.028388110920786858, - 0.015472193248569965, - -0.003824322484433651, - 0.01749030500650406, - 0.008718244731426239, - 0.0023477370850741863, - -0.0021072453819215298, - 0.00016954244347289205, - -0.0021257447078824043, - 0.005654077511280775, - 0.002576456405222416, - 0.006572318729013205, - -0.019373876973986626, - 0.001991203986108303, - 0.009976200759410858, - -0.010117468424141407, - 0.006821218878030777, - 0.01831100322306156, - 0.020948003977537155, - -0.04520571231842041, - -0.025064952671527863, - -0.03524969145655632, - 0.010843989439308643, - 0.011671415530145168, - -0.012014494277536869, - 0.0005789459100924432, - 0.0029043997637927532, - 0.012586292810738087, - 0.02209160104393959, - 0.002213196363300085, - 0.002161061856895685, - 0.0027883583679795265, - 0.008341530337929726, - 0.020571289584040642, - -0.02137853391468525, - -0.008442435413599014, - -0.009740754961967468, - 0.011785774491727352, - 0.018391728401184082, - 0.025885650888085365, - 0.011012164875864983, - -0.016588881611824036, - -0.008987326174974442, - 0.002761450130492449, - 0.016561973839998245, - -0.015700912103056908, - -0.006044245790690184, - -0.01825718767940998, - 0.010615269653499126, - -0.004349031485617161, - -0.011779047548770905, - 0.004473481792956591, - -0.01712704449892044, - -0.013689527288079262, - 0.0062460568733513355, - 0.0028186298441141844, - -0.018458999693393707, - 0.020113851875066757, - 0.026692897081375122, - 0.00916895642876625, - 0.032531969249248505, - -0.02474205568432808, - -0.02458060532808304, - 0.00417749211192131, - -0.025078406557440758, - -0.006508411839604378, - 0.004540752153843641, - -0.008321348577737808, - -0.013467535376548767, - 0.010440366342663765, - -3.7156387406867e-05, - 0.04106185585260391, - 0.008254078216850758, - -0.0013571804156526923, - -0.021809065714478493, - 0.01243829820305109, - -0.019266244024038315, - -0.004402847960591316, - 0.02371954545378685, - -0.005596897564828396, - -0.01668306067585945, - 0.021741794422268867, - 0.006982667837291956, - 0.010500909760594368, - 0.007769731804728508, - 0.0339311920106411, - -0.019185518845915794, - -0.033473752439022064, - 0.004914103075861931, - 0.00311630149371922, - -0.030675305053591728, - -0.020208029076457024, - -0.01886262185871601, - 0.03320467099547386, - 0.02957206964492798, - -0.01723467744886875, - -0.007399744354188442, - 0.031401824206113815, - 0.007803366985172033, - 0.0040934039279818535, - 0.02571074850857258, - 0.007803366985172033, - 0.009707119315862656, - -0.027352146804332733, - 0.0032727052457630634, - 0.027069611474871635, - 0.006353689823299646, - -0.0033197945449501276, - 0.021230539306998253, - -0.004446573555469513, - -0.0027934035751968622, - 0.0194411464035511, - -0.001162096275947988, - 0.001694373320788145, - -0.00881242286413908, - 0.015162749215960503, - 0.009821479208767414, - 0.0002579399442765862, - -0.029168447479605675, - 0.020315662026405334, - 0.03228979557752609, - 0.007890818640589714, - -0.004002589266747236, - 0.005273999646306038, - -0.02324865199625492, - -0.012223032303154469, - -0.0017927562585100532, - -0.012001040391623974, - -0.03269341588020325, - -0.016857963055372238, - 0.002053429139778018, - -0.009639848954975605, - 0.020073488354682922, - 0.0067337676882743835, - -0.002092109527438879, - -0.02603364735841751, - 0.03853248804807663, - -0.003918501082807779, - -0.012249941006302834, - -0.009007507003843784, - 0.005035189911723137, - 0.015283836051821709, - -0.0047190189361572266, - -0.0042380355298519135, - 0.011927043087780476, - 0.025778019800782204, - 0.03955499827861786, - 0.007628463674336672, - -0.0009417856344953179, - 0.001806210377253592, - -0.0031465732026845217, - 0.02655835635960102, - -0.006202331278473139, - -0.020060034468770027, - -0.022737396880984306, - -0.011846317909657955, - -0.01985822431743145, - -0.010070379823446274, - 0.02030220814049244, - 0.019602596759796143, - 0.08233897387981415, - 0.017476851120591164, - 0.006383961532264948, - -0.008274259977042675, - -0.007984996773302555, - 0.012868828140199184, - 0.01235757302492857, - 0.0297873355448246, - -0.011395606212317944, - -0.04442537575960159, - 0.0022972843144088984, - -0.011637779884040356, - 0.004984736908227205, - -0.03312394767999649, - -0.012761196121573448, - 0.011469603516161442, - -0.0266121719032526, - 0.016979049891233444, - -0.0076553719118237495, - 0.012619927525520325, - 0.022791212424635887, - -0.013063912279903889, - 0.02405589632689953, - 0.023544641211628914, - -0.028899366036057472, - -0.011456149630248547, - 0.011671415530145168, - 0.0017978015821427107, - -0.010648905299603939, - 0.00828771386295557, - -0.019212426617741585, - 0.005004918202757835, - -0.046954743564128876, - -0.016400525346398354, - 0.021526528522372246, - 0.0016380343586206436, - -0.016817601397633553, - -0.02132471837103367, - 0.02413662150502205, - 0.015795091167092323, - 0.015647096559405327, - 0.016198713332414627, - -0.029222263023257256, - -0.022993024438619614, - -0.033662110567092896, - -0.0008118696860037744, - -0.022966116666793823, - -0.020208029076457024, - -0.045797690749168396 - ], - "sparse": "SparseEmbedding(values=array([1.22514683, 1.83497597, 1.22514683, 2.00097704, 1.83497597,\n 1.22514683, 1.73880827, 1.57384379, 1.22514683, 1.22514683,\n 1.73880827, 1.22514683, 1.22514683, 1.57384379, 1.22514683,\n 1.57384379, 1.22514683, 1.22514683, 1.22514683, 1.73880827,\n 1.22514683, 1.22514683, 1.22514683, 1.22514683, 1.22514683,\n 1.22514683, 1.22514683, 1.22514683, 1.22514683, 1.22514683,\n 1.83497597, 1.57384379, 1.22514683, 1.22514683, 1.57384379,\n 1.22514683, 1.57384379, 1.83497597, 1.83497597, 1.73880827,\n 1.22514683, 1.57384379, 1.57384379, 1.22514683, 1.22514683,\n 1.22514683, 1.22514683, 1.22514683, 1.22514683, 1.22514683,\n 1.22514683, 1.57384379, 1.22514683, 1.22514683, 1.22514683,\n 1.22514683, 1.73880827, 1.57384379, 1.22514683, 1.22514683,\n 1.57384379, 1.22514683, 1.22514683, 1.22514683, 1.22514683,\n 1.22514683, 1.22514683, 1.22514683, 1.22514683, 1.22514683,\n 1.22514683, 1.22514683, 1.22514683, 1.22514683, 1.22514683,\n 1.22514683, 1.57384379, 1.57384379, 1.22514683, 1.22514683,\n 1.22514683, 1.22514683, 1.22514683, 1.22514683, 1.22514683,\n 1.22514683, 1.22514683, 1.22514683, 1.22514683, 1.22514683,\n 1.22514683, 1.22514683, 1.22514683, 1.57384379, 1.22514683]), indices=array([ 15051562, 563756080, 1425104078, 1894123915, 1214902428,\n 1354311854, 724849589, 540174517, 850708460, 1001381969,\n 617246313, 1070064657, 1051057357, 489905694, 1834696211,\n 659326392, 1399361890, 1332462848, 760321374, 1602970658,\n 2135545454, 933960751, 844849131, 301705055, 1526557164,\n 1364383302, 953824239, 754797265, 1264823322, 16796957,\n 105243925, 603497528, 1972103513, 867840984, 231980230,\n 1348219359, 2031641008, 1742567733, 1504846510, 2087367745,\n 1758470515, 2124672130, 640124220, 358389376, 580887246,\n 150760872, 1567334400, 1750300592, 1528601213, 94597757,\n 1018887719, 413897922, 1167048031, 1363043438, 327797310,\n 1235209082, 422208903, 1371333942, 442064690, 570652574,\n 1000349810, 939302382, 1429681416, 1125382419, 243669559,\n 482341621, 1523874731, 391312375, 1464642605, 1116117978,\n 591898045, 1854958712, 163077544, 270780933, 1784631546,\n 1728717026, 102022374, 696559717, 1473125286, 323149041,\n 388471277, 1661675969, 407983593, 722829366, 1960190313,\n 1243225570, 2144252429, 188603925, 1584587990, 1034183227,\n 1440261780, 37224978, 525896179, 19522071, 1597346809]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 10, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 228 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000011.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000011.json deleted file mode 100644 index 00f0de566aaf7e8985bc7bdba75a155723010f6f..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000011.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000011", - "content": "II Inhaltsverzeichnis", - "embedding": { - "dense": [ - -0.008899985812604427, - 0.009003324434161186, - -0.013227265328168869, - -0.028262944892048836, - -0.007776185404509306, - 0.021223044022917747, - -0.030588051304221153, - -0.020202580839395523, - -0.0027255399618297815, - -0.010740694589912891, - 0.015022763051092625, - 0.014351066201925278, - -0.014338148757815361, - 0.002664183033630252, - 0.012594319880008698, - -0.009894614107906818, - 0.03299066051840782, - -0.002761062467470765, - 0.014273562468588352, - -0.0014459247468039393, - -0.012607237324118614, - 0.00026096883811987936, - 0.0026867883279919624, - 0.011399473994970322, - -0.008803106844425201, - -0.009358548559248447, - 0.01873001456260681, - -0.029993856325745583, - 0.00487303314730525, - 0.007666388526558876, - 0.01451899018138647, - -0.01662450283765793, - -0.002867629751563072, - -0.022359762340784073, - -0.0012037263950333, - 0.008486634120345116, - -0.019027110189199448, - -0.018587924540042877, - 0.008396212942898273, - -0.00285148317925632, - 0.004149666987359524, - -0.0074661714024841785, - -0.0038913218304514885, - -0.021636396646499634, - -0.012051795609295368, - 0.0019278997788205743, - 0.017050771042704582, - 0.023083128035068512, - -0.010017327964305878, - 0.011916164308786392, - 0.020603016018867493, - 0.028340449556708336, - -0.0011334888404235244, - -0.011179881170392036, - -0.00214264914393425, - 0.018355414271354675, - -0.02823711186647415, - 0.008983948267996311, - 0.0036652700509876013, - -0.012820371426641941, - 0.0010220775147899985, - -0.00022766654728911817, - -0.03655581921339035, - 0.00017872228636406362, - -0.044125329703092575, - -0.02229517512023449, - -0.003452135482802987, - 0.016598667949438095, - -0.008538302965462208, - -0.010417763143777847, - 0.022979790344834328, - 0.032060615718364716, - -0.0010317654814571142, - -0.00877081323415041, - 0.020435091108083725, - -0.005586711224168539, - -0.02504654973745346, - -0.02097761631011963, - 0.007840771228075027, - -0.009423134848475456, - 0.025240309536457062, - -0.008693310432136059, - -0.023625653237104416, - 0.022191837430000305, - 0.031182244420051575, - 0.02084844373166561, - 0.027229566127061844, - 0.03311983123421669, - -0.038338400423526764, - -0.029270490631461143, - 0.011974291875958443, - 0.03438572213053703, - -0.011599691584706306, - 0.023909831419587135, - 0.014338148757815361, - 0.00038953585317358375, - -0.016043225303292274, - 0.0028062728233635426, - 0.009901072829961777, - -0.025821585208177567, - 0.007685764227062464, - 0.007537215948104858, - -0.017322033643722534, - -0.006878436077386141, - -0.02983885072171688, - -0.006578110158443451, - 0.011909705586731434, - 0.006620091386139393, - 0.014673997648060322, - 0.009681480005383492, - -0.0022895827423781157, - 0.013214347884058952, - 0.0007015682058408856, - -0.03063971921801567, - 0.01733495108783245, - -0.011696570552885532, - 0.022514767944812775, - -0.012710575014352798, - 0.0010269214399158955, - -0.026338275521993637, - 0.0014160536229610443, - 0.010902159847319126, - 0.010075455531477928, - -0.013446858152747154, - 0.006490918807685375, - -0.017360785976052284, - -0.005011893343180418, - -0.02456861175596714, - 0.0015000158455222845, - -0.0048827207647264, - 0.033223170787096024, - -0.010559853166341782, - -0.0003994256258010864, - -0.010450055822730064, - -0.00988815538585186, - 0.015126100741326809, - -0.021507224068045616, - 0.0106890257447958, - -0.02281186543405056, - -0.026635371148586273, - 0.018510421738028526, - 0.02520155720412731, - -0.019311290234327316, - -0.022798947989940643, - 0.007240119390189648, - 0.01422189362347126, - -0.011212173849344254, - 0.01649533025920391, - -0.005683590658009052, - -0.009093744680285454, - -0.031621430069208145, - -0.03712417930364609, - 0.030510546639561653, - -0.023496480658650398, - -0.002518863882869482, - -0.0023412518203258514, - -0.021700982004404068, - -0.008040988817811012, - 0.006019439082592726, - -0.021946409717202187, - 0.006665301509201527, - -0.003620059695094824, - 0.006274554878473282, - -0.012717033736407757, - 0.027229566127061844, - 0.014816086739301682, - 0.0196083877235651, - -0.010198169387876987, - 0.002833721926435828, - -0.010966746136546135, - -0.02648036554455757, - 0.019027110189199448, - -0.01901419460773468, - 0.016146564856171608, - -0.018549172207713127, - 0.009377924725413322, - 0.035496607422828674, - 0.006994691677391529, - -0.020835526287555695, - -0.0086868517100811, - -0.030872229486703873, - 0.004020494408905506, - 0.023677321150898933, - 0.004663127474486828, - -0.02660953812301159, - 0.013240182772278786, - 0.020202580839395523, - 0.021080954000353813, - 0.005308990366756916, - -0.018006648868322372, - 0.018626676872372627, - 0.004249775782227516, - 2.30466976063326e-05, - -0.002962894504889846, - -0.6712837219238281, - -0.0014620713191106915, - -0.008544761687517166, - -0.02185598947107792, - 0.012252013199031353, - 0.034824907779693604, - 0.010217545554041862, - 0.01710244081914425, - -0.0022427577059715986, - 0.03027803637087345, - 0.002607670146971941, - -0.014299397356808186, - 0.0008638411527499557, - 0.007065736223012209, - -3.2520187232876197e-05, - -0.00875143799930811, - -0.0032034784089773893, - -0.034411557018756866, - 0.004117373842746019, - 0.0055770231410861015, - 0.007601802237331867, - -0.003975283820182085, - 0.011444684118032455, - -0.005635150708258152, - 0.0118644954636693, - 0.022385595366358757, - 0.01721869595348835, - -0.03583245351910591, - 0.0017680487362667918, - 0.00475354865193367, - -0.02668704092502594, - 0.018032481893897057, - -0.028392117470502853, - 0.02560199238359928, - 0.045882076025009155, - 0.028986312448978424, - -0.01813582144677639, - 0.015500701032578945, - 0.02113262377679348, - 0.016159480437636375, - -0.030949734151363373, - -0.01062443945556879, - -0.005890266504138708, - 0.004424158483743668, - 6.59486249787733e-05, - 0.01180636789649725, - 0.03536743298172951, - 0.014428569935262203, - 0.01825207658112049, - 0.002339637139812112, - 0.006904270965605974, - -0.011715946719050407, - -0.0010656731901690364, - 0.003171185264363885, - 0.015255273319780827, - 0.01825207658112049, - 0.014325231313705444, - -0.008299333974719048, - 0.014958176761865616, - 0.021843072026968002, - -0.003817047690972686, - 0.006145382300019264, - -0.02653203345835209, - -0.027332903817296028, - -0.025756997987627983, - 0.0010785905178636312, - -0.02609284780919552, - 0.0038525701966136694, - 0.037692539393901825, - -0.005664214491844177, - -0.007537215948104858, - 0.03342984616756439, - -0.0024042234290391207, - -0.02340605854988098, - 0.029813015833497047, - 0.0014636859996244311, - 0.02168806456029415, - -0.0008339700289070606, - -0.011522187851369381, - 0.006981774233281612, - 0.0007278063567355275, - -0.003188946284353733, - -0.012943085283041, - -0.0008339700289070606, - 0.022359762340784073, - -0.03464406728744507, - -0.029709678143262863, - -0.003972054924815893, - -0.004201335832476616, - 0.010424221865832806, - 0.04019848629832268, - 0.0012045336188748479, - -0.020435091108083725, - 0.008060364983975887, - -0.01873001456260681, - 0.03138891980051994, - 0.006116318516433239, - 0.040250156074762344, - 0.01234243344515562, - -0.03296482563018799, - 0.008086198940873146, - 0.004905326291918755, - 0.004046328831464052, - 0.00035805004881694913, - 0.020163828507065773, - 0.018368331715464592, - -0.024594446644186974, - 0.0017083064885810018, - 0.02605409547686577, - -0.007976402528584003, - 0.007130322512239218, - -0.010437139309942722, - -0.0070269848220050335, - -0.0007657508249394596, - -0.001703462447039783, - -0.02405192144215107, - 0.0237289909273386, - 0.013201430439949036, - -0.005622233729809523, - -0.0009994723368436098, - 0.02517572231590748, - 0.009119579568505287, - 9.703075920697302e-05, - -0.016443660482764244, - -0.0033617145381867886, - 0.02560199238359928, - -0.010417763143777847, - -0.0019618074875324965, - -0.010844032280147076, - -0.011141128838062286, - 0.01654699817299843, - 0.0096298111602664, - 0.02481403946876526, - 0.009752525016665459, - 0.027229566127061844, - 0.00500543462112546, - 0.02660953812301159, - -0.0071690743789076805, - 0.0006155877490527928, - -0.017567461356520653, - -0.00458562420681119, - -0.006087254732847214, - 0.03131141513586044, - -0.03423071652650833, - 0.002078062854707241, - -0.026273688301444054, - -0.028314614668488503, - 0.01618531532585621, - -0.018148737028241158, - 0.02428443171083927, - -0.027694586664438248, - 0.0192983727902174, - -0.006794474087655544, - 0.00988815538585186, - 0.04541705548763275, - -0.009203541092574596, - -0.00540264043956995, - 0.007324081379920244, - -0.01733495108783245, - -0.020925946533679962, - 0.01469983160495758, - 0.025498654693365097, - -0.019517965614795685, - -0.018032481893897057, - -0.02057718113064766, - -0.005144295282661915, - 0.023883996531367302, - 0.028417952358722687, - -0.016327405348420143, - -0.04143854230642319, - 0.007634095381945372, - 0.004782612435519695, - -0.006258408073335886, - 0.009726690128445625, - -0.013356437906622887, - -0.013976465910673141, - 0.00038085709093138576, - -0.03185394033789635, - 0.017644966021180153, - 0.004956995137035847, - 6.993480201344937e-05, - 0.007388667669147253, - 0.006962398532778025, - 0.014932342804968357, - 0.010559853166341782, - 0.0009042075835168362, - 0.016689088195562363, - 0.01933712512254715, - 0.0034682820551097393, - 0.0057126544415950775, - 0.014157307334244251, - 0.018122904002666473, - 0.012310140766203403, - 0.007782643660902977, - -0.011664277873933315, - 0.000546157534699887, - -0.010269214399158955, - 0.002360627753660083, - 0.006716970819979906, - 0.008299333974719048, - 0.04970558360219002, - 0.009726690128445625, - 0.00817016139626503, - -0.012665364891290665, - 0.004349884111434221, - -0.03244813531637192, - -0.009758982807397842, - -0.004023723769932985, - 0.03448906168341637, - 0.003962366841733456, - 0.02065468393266201, - -0.014596493914723396, - -0.007705140393227339, - 0.004123832564800978, - 0.009248752146959305, - 0.021700982004404068, - 0.0020457697100937366, - -0.0025850648526102304, - -0.00829287525266409, - 0.006736346520483494, - 0.024581529200077057, - -0.022514767944812775, - 0.009119579568505287, - 0.006826767232269049, - -0.003077535191550851, - -0.009029158391058445, - 0.02053842879831791, - 0.013182055205106735, - 0.010850491002202034, - 0.004579165484756231, - -0.01981506310403347, - -0.008034530095756054, - -0.0030145635828375816, - 0.0012723492691293359, - 0.01702493615448475, - -0.004110915120691061, - 0.015914052724838257, - -0.026661206036806107, - 0.025756997987627983, - 0.014415652491152287, - -0.008635182864964008, - 0.030743056908249855, - 0.018587924540042877, - 0.012323057278990746, - 0.02748791128396988, - 0.010856949724256992, - 0.026234937831759453, - 0.029864685609936714, - -0.030536381527781487, - 0.014131472446024418, - 0.008221830241382122, - 0.002254060236737132, - -0.01107008382678032, - -0.014015217311680317, - 0.009881697595119476, - -0.002919298829510808, - 0.028495457023382187, - 0.011231550015509129, - 0.002867629751563072, - 0.022385595366358757, - 0.013563113287091255, - -0.011877412907779217, - -0.0020554575603455305, - 0.0012158362660557032, - 0.0030210220720618963, - -0.0024429750628769398, - -0.03663332387804985, - 0.010495266877114773, - -0.017825806513428688, - -0.0027901262510567904, - -0.005948394071310759, - -0.003955908119678497, - -0.010734235867857933, - 0.026506198570132256, - 0.015552370809018612, - -0.011754698120057583, - 0.01905294507741928, - -0.0011326815001666546, - 0.007614719681441784, - 0.03187977522611618, - -0.023858163505792618, - -0.030613886192440987, - 0.0009284274419769645, - 0.036736663430929184, - -0.0036039131227880716, - 0.0053412835113704205, - -0.02093886397778988, - 0.01761913113296032, - -0.012000126764178276, - -0.005938706453889608, - -0.008260582573711872, - 0.013795624487102032, - -0.00399465998634696, - -0.022501852363348007, - -0.0027158521115779877, - -0.0014370442368090153, - 0.03146642446517944, - -0.02049967832863331, - -0.012574943713843822, - 0.0037976717576384544, - 0.0236127357929945, - -0.01334352046251297, - -0.0033617145381867886, - 0.011431767605245113, - 0.05461413785815239, - 0.005153983365744352, - -0.013091634027659893, - 0.0010269214399158955, - 0.009132497012615204, - 0.0011116908863186836, - 0.01422189362347126, - -0.006071107927709818, - -0.006859060376882553, - -0.0020037884823977947, - 0.002163639524951577, - -0.006639467086642981, - -0.008893527090549469, - 0.006597485858947039, - 0.032422300428152084, - -0.015836549922823906, - 0.00986878015100956, - -0.022437265142798424, - -0.007588885258883238, - 0.03260314092040062, - 0.01300121285021305, - 0.03361068665981293, - 0.0022685921285301447, - 0.013795624487102032, - -0.00016570411389693618, - -0.01451899018138647, - -0.014867756515741348, - -0.04030182212591171, - 0.005447850562632084, - 0.0033197335433214903, - 0.001677628024481237, - -0.024142341688275337, - 0.012277847155928612, - -0.013240182772278786, - 0.0260024257004261, - -0.018600841984152794, - 0.015048597939312458, - -0.002543083857744932, - 0.007014067377895117, - 0.00782785378396511, - -0.008208912797272205, - 0.005302531644701958, - 0.003358485409989953, - 0.031053071841597557, - 0.004424158483743668, - -0.04867220297455788, - 0.003448906121775508, - 0.026738710701465607, - 0.006839684676378965, - -0.03774420917034149, - -0.007408043369650841, - -0.005328366067260504, - 0.017089523375034332, - 0.03092389926314354, - -0.04081851243972778, - 0.023083128035068512, - -0.0041948771104216576, - 0.014299397356808186, - 0.03544493764638901, - -0.015358611941337585, - -0.0055027492344379425, - 0.014376900158822536, - -0.0037879839073866606, - -0.012968920171260834, - 0.021235961467027664, - -0.002365471562370658, - 0.00024139112792909145, - 0.010211086831986904, - -0.0036426647566258907, - -0.012859123758971691, - 0.006658842787146568, - 0.013459775596857071, - -0.01392479706555605, - -0.026157433167099953, - -0.0023800034541636705, - -0.00840913038700819, - -0.009326254948973656, - 0.006167987361550331, - -0.001942431670613587, - -0.01997007057070732, - -0.0034553646109998226, - -0.03363652154803276, - 0.00886769313365221, - -0.017799971625208855, - -0.004314362071454525, - -0.027952931821346283, - -0.02536948211491108, - 0.005241174716502428, - -0.03226729482412338, - 0.006852601654827595, - 0.021713899448513985, - -0.014144389890134335, - -0.0018019565613940358, - -0.01981506310403347, - 0.02201099693775177, - 0.017270365729928017, - -0.0036814166232943535, - -0.00817016139626503, - -0.019311290234327316, - 0.011057167313992977, - -0.013898962177336216, - -0.03621997311711311, - -0.006303618662059307, - -0.038415905088186264, - -0.002300885273143649, - -0.004869803786277771, - -0.025033632293343544, - 0.005951623432338238, - 0.031983114778995514, - 0.01746412366628647, - -0.005047415848821402, - -0.01674075797200203, - 0.005183047149330378, - -0.012839747592806816, - 0.027229566127061844, - 0.014441486448049545, - 0.014053969644010067, - -0.007595343515276909, - 0.0025882942136377096, - -0.0033746319822967052, - 0.0031566533725708723, - -0.02424568124115467, - -0.008144326508045197, - -0.00035582989221438766, - 0.0138860447332263, - 0.007414502091705799, - -0.010366094298660755, - 0.02017674595117569, - -0.006184134166687727, - 0.011554481461644173, - 0.011722405441105366, - -0.0043305084109306335, - -0.0004448378458619118, - -0.00862872414290905, - -0.012452229857444763, - 0.03779587522149086, - 0.000678559357766062, - 0.007776185404509306, - 0.020383423194289207, - -0.015926970168948174, - 0.017515793442726135, - -0.024297349154949188, - 0.007685764227062464, - 0.021868906915187836, - -0.010695483535528183, - 0.013459775596857071, - 0.0013781092129647732, - -0.002677100244909525, - -0.011296136304736137, - -0.014777335338294506, - -0.006180904805660248, - -0.006167987361550331, - -0.012936627492308617, - 0.008983948267996311, - -0.02157180942595005, - -0.0017535168444737792, - -0.017244530841708183, - -0.0007035864982753992, - -0.009022699669003487, - -0.0020376963075250387, - -0.004663127474486828, - -0.013963548466563225, - -0.00047430532868020236, - 0.009771900251507759, - -0.009100203402340412, - -0.02865046262741089, - -0.029658008366823196, - 0.017347868531942368, - -0.008783730678260326, - 0.02529197745025158, - 0.007175533100962639, - 0.0054090991616249084, - -0.03611663356423378, - 0.00988815538585186, - -0.008318710140883923, - -0.02512405440211296, - 0.0007576775387860835, - -0.009029158391058445, - 0.01601739227771759, - 0.02117137424647808, - 0.011005498468875885, - 0.01701202057301998, - 0.01873001456260681, - -0.012910792604088783, - -0.006439249496906996, - 0.020383423194289207, - -0.0012093776604160666, - -0.008906444534659386, - -0.036736663430929184, - 0.023522313684225082, - -0.004956995137035847, - 0.010818198323249817, - 0.01565570756793022, - 0.007388667669147253, - 0.021946409717202187, - -0.005302531644701958, - -0.0012675052275881171, - -0.023703156039118767, - -0.006788015365600586, - -0.014906507916748524, - -0.011076542548835278, - -0.0029386745300143957, - 0.003082379000261426, - 0.005929018370807171, - -0.021197209134697914, - -0.006981774233281612, - 0.0011593232629820704, - 0.001571060623973608, - 0.0026012114249169827, - 0.01262661349028349, - 0.0280045997351408, - -0.038054220378398895, - 0.01476441789418459, - 0.005150754004716873, - -0.024465274065732956, - 0.005848285276442766, - 0.032293129712343216, - -0.017877476289868355, - -0.0067492639645934105, - 0.030019691213965416, - -0.008512468077242374, - 0.010792363435029984, - -0.003558702766895294, - -0.0024139112792909145, - -0.002150722313672304, - 0.0048859501257538795, - -0.002355783712118864, - -0.014028134755790234, - -0.011929081752896309, - 0.0027691356372088194, - -0.012116381898522377, - -0.002399379387497902, - -0.001960192807018757, - -0.0033778611104935408, - 0.026415778324007988, - -0.004046328831464052, - -0.019169200211763382, - 0.03342984616756439, - -0.023302720859646797, - -0.0053412835113704205, - 0.0021361904218792915, - -0.027100393548607826, - 0.04495203495025635, - -0.005422016140073538, - 0.027797924354672432, - 0.02090011164546013, - 0.0029951876495033503, - -0.02277311310172081, - -0.04766465723514557, - -0.015591122210025787, - 0.005467226728796959, - 0.025395315140485764, - 0.01476441789418459, - -0.004010806325823069, - -0.006025897804647684, - -0.009817111305892467, - 0.008635182864964008, - 0.018704179674386978, - -0.010101290419697762, - 0.0213005468249321, - 0.027436241507530212, - 0.010779445990920067, - -0.01582363247871399, - -0.001963422168046236, - -0.024839874356985092, - 0.024026086553931236, - 0.007259495090693235, - 0.009939825162291527, - -0.006445708218961954, - -0.0060388147830963135, - -0.005783698987215757, - 0.0118838706985116, - -0.012310140766203403, - 0.01689576543867588, - 0.005018352065235376, - -0.016921598464250565, - -0.015242356806993484, - -0.038131725043058395, - -0.03146642446517944, - 0.006193821784108877, - 0.0035748493392020464, - 0.044642020016908646, - -0.00399465998634696, - -0.02844378724694252, - -0.00376537861302495, - -0.011715946719050407, - -0.025098219513893127, - -0.0012868811609223485, - 0.003545785555616021, - 0.0171799436211586, - -0.010398386977612972, - -0.014712749049067497, - 0.0037912132684141397, - 0.014208976179361343, - 0.0019198264926671982, - 0.00014400716463569552, - 0.008673934265971184, - -0.008609347976744175, - -0.007885982282459736, - -0.0024268284905701876, - 0.013382271863520145, - 0.010353176854550838, - -0.00635205814614892, - -0.016430743038654327, - -3.7263242120388895e-05, - -0.010960287414491177, - -0.023922748863697052, - -0.0019392023095861077, - 0.009862321428954601, - -0.029709678143262863, - 0.0004323242465034127, - -0.013498527929186821, - 0.006565192714333534, - 0.01593988761305809, - -0.006736346520483494, - -0.007666388526558876, - 0.02101636677980423, - 0.04097352176904678, - -0.042523592710494995, - 0.02021549828350544, - 0.020796773955225945, - -0.0008190344669856131, - -0.0070076086558401585, - 0.02420692890882492, - -0.0025285519659519196, - -0.0033326507546007633, - 0.033662356436252594, - 0.0096298111602664, - -0.02508530206978321, - -0.01769663393497467, - -0.013098092749714851, - 0.0056932782754302025, - -0.0015500701265409589, - -0.0016663253773003817, - 0.004491974133998156, - 0.002701320219784975, - -0.0074661714024841785, - 0.0054833730682730675, - -0.0170636884868145, - 0.018742932006716728, - -0.00628101360052824, - -0.006197051145136356, - 0.014428569935262203, - -0.015177770517766476, - 0.018200406804680824, - 0.014867756515741348, - 0.00136599934194237, - -0.006387580651789904, - -0.016030307859182358, - -0.013408106751739979, - 0.006000063382089138, - 0.011386556550860405, - -0.012335974723100662, - -0.007214284967631102, - -0.006448937579989433, - -0.010146500542759895, - -0.007504922803491354, - 0.008971030823886395, - -0.005438162945210934, - 0.006345599424093962, - 0.0040527875535190105, - -0.0022944267839193344, - -0.009532931260764599, - 0.0006030741496942937, - -0.006206739228218794, - -0.013731038197875023, - 0.010301508009433746, - -0.009675021283328533, - -0.03004552610218525, - 0.0020893653854727745, - -0.006358516868203878, - 0.020628850907087326, - 0.03598746284842491, - -0.007840771228075027, - -0.026790378615260124, - -0.015190687030553818, - -0.02177848480641842, - -0.012155133299529552, - -0.016844095662236214, - -0.005929018370807171, - -0.005496290512382984, - 0.01821332424879074, - 0.016198232769966125, - 0.01922086998820305, - -0.001784195308573544, - 0.00220239139162004, - -0.01569445990025997, - -0.024697784334421158, - 0.0018923772731795907, - -0.006035585422068834, - 0.021959327161312103, - -0.010398386977612972, - -0.01451899018138647, - -0.01451899018138647, - 0.020745106041431427, - -0.0005562491132877767, - -0.005505978129804134, - 0.004030182491987944, - -0.004456451628357172, - -0.004682503640651703, - 0.002778823720291257, - -0.003474740544334054, - -0.007634095381945372, - 0.03255147114396095, - 0.003687875112518668, - -0.018277909606695175, - 0.00780847854912281, - -0.020473843440413475, - -0.01274286862462759, - -0.02924465574324131, - -0.007175533100962639, - -0.018846269696950912, - -0.007072194945067167, - -0.00458562420681119, - 0.0010382240870967507, - -0.030458878725767136, - -0.027591248974204063, - 3.582518911571242e-05, - 0.0066136326640844345, - -0.0017486729193478823, - -0.006093713454902172, - -0.001771278097294271, - -0.006968856789171696, - -0.007504922803491354, - -0.01582363247871399, - 0.02328980341553688, - -0.019905483350157738, - -0.018626676872372627, - 0.011018414981663227, - -0.02252768538892269, - 0.02393566630780697, - -0.010159417986869812, - 0.00570296635851264, - -0.024103591218590736, - 0.02002173848450184, - -0.004198106471449137, - -0.022269340232014656, - -0.009151872247457504, - 0.00875143799930811, - 0.018587924540042877, - -0.011870954185724258, - -0.018084151670336723, - -0.0118838706985116, - 0.014118555933237076, - -0.01849750429391861, - -0.017089523375034332, - -0.026583703234791756, - -0.007634095381945372, - -0.0075824265368282795, - -0.0009897843701764941, - -0.002617357997223735, - 0.01480317022651434, - -0.011858036741614342, - -0.027797924354672432, - -0.03123391419649124, - 0.020086325705051422, - 0.18476836383342743, - -0.021274711936712265, - 0.0006200280622579157, - 0.03562577813863754, - -0.00980419386178255, - -0.02265685796737671, - 0.029270490631461143, - -0.010256297886371613, - 0.01510026678442955, - 0.017864558845758438, - -0.006704053375869989, - -0.004078621976077557, - 0.003975283820182085, - 0.0007500079227611423, - 0.024516941979527473, - -0.03590995818376541, - -0.03311983123421669, - -0.009532931260764599, - -0.02332855574786663, - -0.00326160597614944, - 0.010282131843268871, - -0.0036523528397083282, - 0.0009776744991540909, - -0.005454309284687042, - 0.01742537133395672, - -0.012852665036916733, - -0.019065862521529198, - 0.011425308883190155, - 0.012529733590781689, - 0.0070334430783987045, - -0.005376806017011404, - 0.008279957808554173, - 0.00787306483834982, - 0.001856854883953929, - -0.020835526287555695, - 0.01034671813249588, - 0.007065736223012209, - -0.0015056671109050512, - 0.015319859609007835, - 0.026738710701465607, - -0.0086868517100811, - 0.0031776437535881996, - -0.007492005825042725, - -0.02872796729207039, - 0.0052056522108614445, - 0.029012145474553108, - 0.006025897804647684, - -0.007647012826055288, - -0.011470519006252289, - 0.006936564110219479, - -0.028211276978254318, - 0.015952805057168007, - 0.010663190856575966, - 0.029942188411951065, - -0.014635245315730572, - 0.00173252634704113, - 0.008099116384983063, - 0.008525385521352291, - -0.02617035061120987, - 0.0023073439951986074, - -0.006839684676378965, - 0.02911548502743244, - -0.015255273319780827, - 0.01985381543636322, - 0.0001690343488007784, - 0.031983114778995514, - -0.03071722388267517, - -0.005244404077529907, - -0.003274523187428713, - -0.04802633821964264, - 0.020357588306069374, - -0.023871080949902534, - -0.015268190763890743, - 0.013601865619421005, - -0.016882847994565964, - -0.014867756515741348, - 0.011735322885215282, - 0.008732061833143234, - 0.011961374431848526, - 0.02296687290072441, - -0.03562577813863754, - -0.014299397356808186, - -0.007039901800453663, - -0.016792425885796547, - -0.004827822558581829, - -0.02512405440211296, - 0.025614909827709198, - 0.018923772498965263, - -0.00024240028869826347, - -0.01849750429391861, - -0.00043514990829862654, - -0.010617980733513832, - -0.007718057371675968, - 0.012807454913854599, - 0.011095918715000153, - 0.012419937178492546, - 0.0021862448193132877, - 0.022321010008454323, - -0.0028159606736153364, - -0.00173252634704113, - -0.015526535920798779, - 0.0900590717792511, - 0.03446322679519653, - -0.02436193637549877, - -0.019647138193249702, - -0.002036081627011299, - -0.004207794554531574, - 0.0013635773211717606, - -0.007511381525546312, - -0.007885982282459736, - -0.013149761594831944, - -0.019195035099983215, - 0.015177770517766476, - 0.016353240236639977, - 0.008157243952155113, - -0.0011157275876030326, - -0.03738252446055412, - -0.011909705586731434, - 0.009093744680285454, - -0.01742537133395672, - 0.005851514637470245, - -0.014635245315730572, - 0.031776439398527145, - 0.021998079493641853, - -0.0059645408764481544, - -0.031776439398527145, - -0.028831304982304573, - 0.010456514544785023, - -0.005803075153380632, - -0.010850491002202034, - 0.03151809424161911, - -0.012549109756946564, - 0.03544493764638901, - 0.02548573724925518, - -0.004902096930891275, - 0.026816213503479958, - 0.007356374524533749, - 0.002265363000333309, - -0.01473858393728733, - 0.0005602857563644648, - 0.023263968527317047, - 0.0006599908228963614, - -0.0017002332024276257, - -0.01200658455491066, - 0.009461886249482632, - -0.007634095381945372, - 0.0054155574180185795, - -0.00148548383731395, - -0.009403758682310581, - -0.0384417399764061, - -0.017825806513428688, - -0.029296325519680977, - 0.0007161000976338983, - -0.015875302255153656, - 0.04531371593475342, - -0.000644247920718044, - -0.013291851617395878, - -0.032138120383024216, - -0.0075630503706634045, - 0.016831178218126297, - 0.0025156347546726465, - 0.007795561105012894, - -0.0023622422013431787, - -0.005648068152368069, - 0.0011682038893923163, - -0.01498401165008545, - -0.16513413190841675, - 0.012697657570242882, - 0.003282596357166767, - -0.022824782878160477, - 0.019040027633309364, - 5.903587589273229e-05, - 0.021119706332683563, - 0.00786660611629486, - 0.021985162049531937, - 0.013627699576318264, - 0.004653439857065678, - -0.002667412394657731, - -0.030588051304221153, - -0.017205778509378433, - -0.016805343329906464, - -0.013808541931211948, - -0.014144389890134335, - 0.006910729221999645, - 0.03802838921546936, - 0.0023913062177598476, - 0.012852665036916733, - 0.008983948267996311, - 0.02735873870551586, - -0.008144326508045197, - -0.0004101227386854589, - 0.015604039654135704, - -0.018846269696950912, - 0.021235961467027664, - 0.0037040216848254204, - -0.0026835589669644833, - 0.01893668994307518, - 0.003755690762773156, - 0.02513696998357773, - 0.00047349798842333257, - 0.00014612640370614827, - -0.013330603018403053, - -0.005673902574926615, - 0.0043983240611851215, - -0.00042626928188838065, - 0.0020586869213730097, - 0.006093713454902172, - 0.008919361978769302, - 0.01985381543636322, - -0.00299680233001709, - -0.01769663393497467, - 0.027746256440877914, - 0.0032163956202566624, - -0.0023364077787846327, - -0.002988728927448392, - -0.020344670861959457, - 0.01386021077632904, - -0.030665554106235504, - -0.004253005143254995, - 0.003955908119678497, - 0.017438288778066635, - 0.01476441789418459, - -0.0012844591401517391, - 0.002825648756697774, - 0.009003324434161186, - 0.026183268055319786, - -0.024865709245204926, - 0.0025882942136377096, - -0.008899985812604427, - -0.016999103128910065, - 0.010844032280147076, - -0.047638822346925735, - -0.023263968527317047, - 0.01076652854681015, - -0.01666325330734253, - 0.0171799436211586, - 0.0008263004128821194, - -0.009978576563298702, - 0.015177770517766476, - -0.02888297289609909, - 0.00970731396228075, - -0.021042201668024063, - -0.018148737028241158, - -0.006671760231256485, - 0.005606086924672127, - 0.014906507916748524, - -0.00844788271933794, - 0.027384571731090546, - -0.00992690771818161, - -0.019388794898986816, - -0.003981742542237043, - 0.017283281311392784, - 0.004320820327848196, - 0.01134780514985323, - 0.022682692855596542, - 0.012529733590781689, - 0.02317354828119278, - -0.0347474068403244, - -0.025860337540507317, - -0.006284242495894432, - 0.0038493408355861902, - 0.023909831419587135, - -0.0025673035997897387, - 0.012633071281015873, - 0.007918274961411953, - -0.007265953812748194, - 0.009726690128445625, - -0.004837510641664267, - -0.023961501196026802, - -0.008899985812604427, - 0.01742537133395672, - 0.005525354295969009, - 0.009442511014640331, - 0.011418850161135197, - 0.018432917073369026, - -0.008906444534659386, - -0.004159355070441961, - -0.0018600841285660863, - -0.006261637434363365, - 0.018432917073369026, - 0.00687197782099247, - 0.020344670861959457, - -0.025679495185613632, - -0.03487657755613327, - 0.019040027633309364, - 0.023276885971426964, - 0.04913722351193428, - 8.946205343818292e-05, - -0.026144515722990036, - 0.011722405441105366, - -0.021403884515166283, - -0.027513744309544563, - -0.06334619969129562, - -0.014570659026503563, - 0.040327657014131546, - 0.011367181316018105, - -0.005118460860103369, - 0.0237289909273386, - -0.004640522412955761, - 0.011722405441105366, - 0.015487784519791603, - 0.010779445990920067, - -0.032293129712343216, - -0.004821363836526871, - -0.011573856696486473, - -0.005183047149330378, - 0.015345694497227669, - 0.022682692855596542, - -0.004449992906302214, - -0.0036911044735461473, - -0.013278934173285961, - 0.031543929129838943, - -0.002740071853622794, - 0.012891416437923908, - -0.006087254732847214, - -0.039733465760946274, - -0.012097005732357502, - -0.005518895573914051, - -0.03149225935339928, - 0.014841921627521515, - 0.03203478455543518, - -0.019995905458927155, - -0.01630157046020031, - -0.0047923000529408455, - 0.004915013909339905, - -0.03361068665981293, - -0.0012796152150258422, - 0.016391992568969727, - -0.0149452593177557, - -0.002864400390535593, - 0.04035349190235138, - -0.02911548502743244, - 0.004572706762701273, - 0.004511349834501743, - -0.00581276323646307, - -0.026338275521993637, - 0.005118460860103369, - -0.008719144389033318, - -0.010262755677103996, - -0.010114207863807678, - 0.011470519006252289, - -0.023871080949902534, - -0.01933712512254715, - -0.015720294788479805, - -0.0035360974725335836, - 0.01480317022651434, - 0.023548148572444916, - -0.0041884188540279865, - 0.00338109047152102, - -0.0015823632711544633, - -0.004068933892995119, - 0.00010777831630548462, - -0.015526535920798779, - -0.0027287693228572607, - -0.028857139870524406, - 0.042084403336048126, - 0.005470456089824438, - -0.0003739947860594839, - -0.002171712927520275, - -0.007214284967631102, - 0.01697326824069023, - -0.025382397696375847, - -0.012962461449205875, - 0.015423198230564594, - -0.012032419443130493, - 0.017412453889846802, - -0.03311983123421669, - 0.009913990274071693, - -0.03939761593937874, - -0.008816024288535118, - 0.031259749084711075, - -0.003095296211540699, - -0.01488067302852869, - -0.03621997311711311, - 0.0067298877984285355, - -0.009371466003358364, - 0.011606150306761265, - 0.0299680233001709, - 0.002275050850585103, - 0.012323057278990746, - 0.0037233976181596518, - 0.001400714390911162, - 0.009423134848475456, - 0.0030500858556479216, - 0.034282386302948, - -0.019827980548143387, - 0.014247728511691093, - 0.007588885258883238, - -0.002882161643356085, - -0.0097654415294528, - 0.006319765001535416, - 0.026144515722990036, - -0.008028071373701096, - -0.007485547102987766, - -0.08540886640548706, - 0.01838124915957451, - -0.0108246561139822, - -0.03291315585374832, - -0.031182244420051575, - -0.006994691677391529, - 0.01821332424879074, - -0.015849467366933823, - -0.00499251764267683, - 0.011244467459619045, - -0.011554481461644173, - 0.013052882626652718, - 0.004779383074492216, - -0.003962366841733456, - -0.0032519178930670023, - -0.026079930365085602, - -0.003846111474558711, - 0.006826767232269049, - -0.02109387144446373, - 0.003487657755613327, - -0.003222854109480977, - 0.011573856696486473, - 0.013123927637934685, - -0.0008485019207000732, - -0.02903798036277294, - 0.01258140243589878, - 0.0008246857323683798, - 0.0086868517100811, - -0.011354263871908188, - 0.014493156224489212, - 0.01677950844168663, - -0.0057804700918495655, - -0.008099116384983063, - -0.0006801739800721407, - -0.017593296244740486, - -0.006652384530752897, - 0.005615775007754564, - 0.03810589015483856, - 0.001122186193242669, - 0.052831556648015976, - -0.01058568712323904, - -0.010185252875089645, - 0.03580661863088608, - -0.009791276417672634, - 0.01268474105745554, - -0.01570737734436989, - -0.0008969416376203299, - -0.006684677675366402, - 0.013059341348707676, - -0.016353240236639977, - 0.028107939288020134, - 0.014208976179361343, - 0.01004962157458067, - -0.012019501999020576, - 0.015810715034604073, - -0.011903246864676476, - 0.021959327161312103, - -0.007621178403496742, - 0.014015217311680317, - -0.039888471364974976, - 0.029658008366823196, - -0.004695420619100332, - 0.007388667669147253, - -0.00010636549268383533, - 0.006245491094887257, - -0.007511381525546312, - -0.017347868531942368, - 0.003145350608974695, - 0.0007576775387860835, - -0.0060646492056548595, - -0.0030969108920544386, - -0.002848253818228841, - -0.014131472446024418, - 0.0237289909273386, - -0.02301854081451893, - 0.0150615144520998, - -0.005657756235450506, - 0.02225642465054989, - 0.0010228848550468683, - 0.004362801555544138, - 0.03704667463898659, - 0.019763395190238953, - -0.03774420917034149, - 0.014338148757815361, - 0.02624785527586937, - 0.01721869595348835, - -0.024671949446201324, - 0.016327405348420143, - 0.0025931382551789284, - -0.006416644435375929, - -0.00317602907307446, - 0.017722468823194504, - 0.009061452001333237, - -0.006723429076373577, - 0.010249839164316654, - -0.007569509092718363, - -0.007408043369650841, - -0.021390967071056366, - 0.00740158511325717, - 0.02328980341553688, - -0.007259495090693235, - 0.0107084009796381, - 0.009061452001333237, - -0.016249902546405792, - -0.015113184228539467, - 0.014622327871620655, - -0.031259749084711075, - -0.04327279329299927, - 0.007614719681441784, - 0.012910792604088783, - -0.021623479202389717, - 0.004253005143254995, - 0.01662450283765793, - 0.008150785230100155, - -0.027152061462402344, - 0.0062002805061638355, - -0.02233392745256424, - 0.004178730770945549, - -0.020473843440413475, - 0.0298905186355114, - -0.008938738144934177, - 0.021080954000353813, - 0.027332903817296028, - -0.00952647253870964, - -0.0038719461299479008, - -0.019789228215813637, - 0.0017179944552481174, - -0.012639530003070831, - 0.0007378979935310781, - 0.009662103839218616, - -0.022682692855596542, - 0.024981964379549026, - -0.009713772684335709, - -0.015229439362883568, - 0.013033506460487843, - -0.01334352046251297, - -0.0068655190989375114, - 0.03247397020459175, - 0.020163828507065773, - 0.10085789859294891, - -0.01004962157458067, - -0.010760069824755192, - 0.010534018278121948, - 0.00888706836849451, - -0.004385406617075205, - -0.023961501196026802, - -0.004915013909339905, - -0.027332903817296028, - -0.029735513031482697, - -0.0003889303479809314, - -0.01573321223258972, - 0.004259463399648666, - -0.014144389890134335, - -0.02409067377448082, - 0.015358611941337585, - -0.011451142840087414, - 0.006736346520483494, - -0.014635245315730572, - 0.009636268950998783, - 0.0298905186355114, - 0.004391865339130163, - 0.006329453084617853, - 0.013408106751739979, - -0.02704872377216816, - 0.0022395283449441195, - 0.02369023859500885, - -0.027617083862423897, - -0.0036168303340673447, - -0.03619413822889328, - 0.004798758774995804, - -0.005102314054965973, - -0.06892645359039307, - -0.03027803637087345, - 0.013446858152747154, - -0.018704179674386978, - 0.008305792696774006, - -0.006962398532778025, - 0.015190687030553818, - 0.007569509092718363, - -0.027952931821346283, - 0.040766846388578415, - -0.038338400423526764, - -0.0018374789506196976, - -0.013769789598882198, - -0.018290827050805092, - -0.011212173849344254, - -0.0013611553004011512, - -0.01094736997038126 - ], - "sparse": "SparseEmbedding(values=array([1.68320383, 1.68320383]), indices=array([ 524783164, 1641614904]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 11, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 2 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000012.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000012.json deleted file mode 100644 index b179d7a458557157176ef8b02e0e6aa9c3e566da..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000012.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000012", - "content": "Inhaltsverzeichnis 2.1 Nachhaltige Stadtentwicklung ......................................................................... 3 2.1.1 Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene .. 3 2.1.2 Mehrwert nachhaltiger Stadtentwicklung .................................................. 5 2.2 Das Stadtklima ............................................................................................... 6 2.3 Gr\u00fcne Infrastruktur .......................................................................................... 7 2.3.1 K\u00fchlungseffekt durch Stadtb\u00e4ume ........................................................... 8 2.3.2 Mehrwert Stadtgr\u00fcn ............................................................................... 10 2.3.3 Herausforderung gr\u00fcner Infrastruktur im urbanen Raum ........................ 11 2.4 Mobilit\u00e4tsver\u00e4nderung .................................................................................. 12 2.5 Aktueller Stand der Forschung...................................................................... 13 3.1 Methodik ....................................................................................................... 15 3.2 Toolvorstellung ............................................................................................. 17 3.2.1 Funktionsweise Python-Skript ................................................................ 17 3.2.2 SimStadt ................................................................................................ 18 4.1 Quartiersarchetypen ..................................................................................... 20 4.2 Mobilit\u00e4tsverhalten in den Quartiersarchetypen ............................................ 21 4.3 Szenarien Mobilit\u00e4tsver\u00e4nderung .................................................................. 22 5.1 Datengrundlage ............................................................................................ 24 Gender Disclaimer ......................................................................................................... I Zusammenfassung ....................................................................................................... II Inhaltsverzeichnis ........................................................................................................ III Abk\u00fcrzungsverzeichnis ................................................................................................. V Abbildungsverzeichnis ................................................................................................. VI Tabellenverzeichnis ................................................................................................... VIII 1 Einleitung ............................................................................................................... 1 2 Theorieteil .............................................................................................................. 3 3 Methodik und Toolerl\u00e4uterung ............................................................................. 15 4 Modellhafte Analyse des Mobilit\u00e4tsverhaltens ...................................................... 20 5 Fallstudien ........................................................................................................... 24 5.2 Analyse der Quartiere ................................................................................... 25 5.2.1 Analyse Gromb\u00fchl ................................................................................. 25 5.2.2 Analyse Grafenb\u00fchl ............................................................................... 29 5.3 Aufstellung der Baumpflanzungsszenarien ................................................... 32", - "embedding": { - "dense": [ - 0.02615681290626526, - -0.00019036185403820127, - 0.023029932752251625, - -0.013792010024189949, - 0.0034317842219024897, - 0.012397239916026592, - -0.025002073496580124, - -0.004881696775555611, - -0.01821635290980339, - -0.031606148928403854, - 0.007233344949781895, - 0.010541870258748531, - -0.003379885805770755, - 0.018436919897794724, - -0.008219415321946144, - -0.021135639399290085, - 0.04045483469963074, - -0.006733822636306286, - 0.003284197999164462, - -0.007019263692200184, - -0.027454273775219917, - -0.0012374534271657467, - 0.024028977379202843, - -0.01476510614156723, - -0.004297839477658272, - 0.024041952565312386, - 0.011592813767492771, - -0.023730561137199402, - -0.015867948532104492, - 0.011508478783071041, - 0.0003908601065631956, - -0.0038664336316287518, - -0.00638350797817111, - 0.015712251886725426, - -0.015297064557671547, - -0.004307570401579142, - 0.0032971727196127176, - -0.01202746294438839, - 0.005251473281532526, - -0.01581604965031147, - -0.00576397031545639, - -0.012332366779446602, - 0.0012350206961855292, - -0.02459985949099064, - -0.016218261793255806, - 0.022277405485510826, - 0.009672571904957294, - 0.008115618489682674, - -0.01602364331483841, - 0.015154344029724598, - 0.018514767289161682, - 0.02005874738097191, - -0.015491683967411518, - 0.005086047109216452, - -0.009108176454901695, - 0.01045104768127203, - -0.028232751414179802, - 0.023834358900785446, - 0.003183644963428378, - -0.021343233063817024, - -0.02427549473941326, - 0.005647198762744665, - -0.030101094394922256, - 0.011177626438438892, - -0.032202981412410736, - -0.004022128880023956, - -0.027947308495640755, - 0.004265402909368277, - 0.018657488748431206, - 5.5851640354376286e-05, - 0.0414668507874012, - 0.04951111227273941, - 0.02048690803349018, - -0.0053650010377168655, - 0.0285181924700737, - 0.006831131875514984, - 0.003707494819536805, - -0.007920999079942703, - -0.011560377664864063, - 0.009387129917740822, - 0.005167138297110796, - -0.018644513562321663, - -0.019293244928121567, - 0.03915737196803093, - 0.029685907065868378, - 0.030178941786289215, - 0.009134124964475632, - 0.0259881429374218, - -0.009601211175322533, - 0.004145388025790453, - -0.0016177716897800565, - 0.027013137936592102, - 0.007726380135864019, - 0.04092191904783249, - -0.009497414343059063, - -0.002491125138476491, - -0.014310994185507298, - -0.008757861331105232, - 0.02662389911711216, - -0.020512858405709267, - -0.022770440205931664, - 0.0010890562552958727, - 0.017152434214949608, - -0.00770691828802228, - -0.040740273892879486, - 0.0044859712943434715, - 0.01137873250991106, - 0.01215720921754837, - 0.02127835899591446, - -0.00690897973254323, - -0.013389796949923038, - 0.027194781228899956, - -0.017256230115890503, - -0.0235489159822464, - 0.012358315289020538, - -0.03243652358651161, - 0.004232966341078281, - -0.004826555028557777, - 0.009166561998426914, - -0.01425909623503685, - 0.022134684026241302, - 0.003331230953335762, - 0.0117744579911232, - -0.032825764268636703, - 0.017385976389050484, - 0.0036491090431809425, - -0.004644910339266062, - -0.006986827123910189, - -0.01791793666779995, - -0.033708035945892334, - -0.029374515637755394, - 0.010736489668488503, - 0.010003424249589443, - 0.0024749068543314934, - -0.025624854490160942, - 0.01015911903232336, - -0.022316329181194305, - 0.01228046789765358, - -0.03456436097621918, - -0.03145045414566994, - -0.015387887135148048, - 0.011365758255124092, - -0.03285171091556549, - -0.02191411517560482, - 0.01072351448237896, - 0.01293568592518568, - -0.003850215347483754, - 0.02262771874666214, - 0.009186023846268654, - -0.015569531358778477, - -0.0038696774281561375, - -0.026014093309640884, - 0.011236011981964111, - 0.013973654247820377, - -0.0048914276994764805, - 0.010944083333015442, - -0.003319878363981843, - -0.004002667032182217, - -0.006042924243956804, - -0.0035290939267724752, - 0.009263871237635612, - -0.013013533316552639, - -0.0003943064948543906, - 0.010133170522749424, - 0.016036618500947952, - 0.0010444560321047902, - 0.02633845806121826, - -0.010652154684066772, - -0.011917179450392723, - -0.0019056458259001374, - -0.0215767752379179, - 0.0256118793040514, - -0.023561891168355942, - 0.025118844583630562, - -0.013279513455927372, - 0.019500838592648506, - 0.023354297503829002, - 0.004615717567503452, - -0.032618168741464615, - -0.022783415392041206, - -0.01889103092253208, - -0.0008360514184460044, - 0.007895049639046192, - 0.02510586939752102, - -0.022653669118881226, - 0.003632890759035945, - 0.030464382842183113, - 0.014920800924301147, - 0.016348008066415787, - 0.01335087325423956, - 0.019332168623805046, - 0.0248593520373106, - 0.01791793666779995, - -0.005037392023950815, - -0.6356520652770996, - 0.01466130930930376, - -0.0037788550835102797, - -0.01859261654317379, - 0.015426810830831528, - 0.017645468935370445, - 0.029971348121762276, - 0.01152145303785801, - -0.01112572755664587, - 0.03549853339791298, - -0.01331194955855608, - -0.008245364762842655, - -0.013454670086503029, - 0.002591678174212575, - -0.017801163718104362, - -0.016049591824412346, - 0.0068376194685697556, - -0.02347106859087944, - 0.02831059880554676, - 0.014181248843669891, - -0.0046903216280043125, - 0.02594921924173832, - 0.01665939949452877, - 0.005488259717822075, - 0.014518587850034237, - 0.02216063253581524, - -0.00508929044008255, - -0.04302380606532097, - 0.015673328191041946, - 0.01917647384107113, - -0.019838178530335426, - 0.03116501308977604, - -0.019539762288331985, - 0.028492242097854614, - 0.04092191904783249, - 0.02170652151107788, - -0.024327393621206284, - 0.017528697848320007, - 0.029971348121762276, - 0.011495504528284073, - -0.005566107574850321, - -0.017139459028840065, - 0.001032292377203703, - 0.020136594772338867, - 0.0071165733970701694, - -0.0005700719193555415, - 0.028336547315120697, - 0.002724668011069298, - -0.0013177337823435664, - -0.005008199252188206, - 0.001801848877221346, - -0.025936244055628777, - 0.005922909360378981, - 0.010905159637331963, - 0.020953994244337082, - 0.004923864267766476, - 0.025378337129950523, - -0.010444561019539833, - -0.004479484166949987, - 0.0036069415509700775, - 0.003730200231075287, - -0.0037885860074311495, - -0.005261204205453396, - -0.02965995855629444, - -0.02367866225540638, - 0.039598509669303894, - -0.022601770237088203, - -0.014946750365197659, - -0.01422017253935337, - -0.01859261654317379, - -0.019916025921702385, - 0.01594579592347145, - -0.015491683967411518, - -0.020551782101392746, - 0.02380840852856636, - 0.026481177657842636, - 0.022186582908034325, - -0.0140255531296134, - 0.00017535996448714286, - 0.008193465881049633, - 0.004031859803944826, - -0.0019153767498210073, - -0.006354315206408501, - -0.0016558845527470112, - 0.03209918364882469, - -0.03619915992021561, - -0.020979944616556168, - -0.01303948275744915, - -0.007298218086361885, - 0.010249941609799862, - 0.017178382724523544, - 0.009672571904957294, - -0.0057477522641420364, - -0.01972140744328499, - -0.009121150709688663, - 0.055375635623931885, - -0.004609229974448681, - 0.0448402501642704, - 0.004683834034949541, - -0.04343899339437485, - -0.03347449377179146, - 0.01466130930930376, - 0.03791180998086929, - -0.012676193378865719, - 0.018904006108641624, - -0.008569729514420033, - -0.030464382842183113, - 0.0029079343657940626, - 0.032747913151979446, - -0.016348008066415787, - -0.003293928923085332, - -0.01677617058157921, - -0.015128394588828087, - -0.01133332122117281, - -0.012286955490708351, - -0.01850179396569729, - 0.038456741720438004, - -0.011599301360547543, - 0.010801362805068493, - 0.009737445041537285, - 0.0021505416370928288, - 0.0030814697965979576, - 0.0049335951916873455, - -0.022017912939190865, - -0.008465932682156563, - 0.04214153066277504, - -0.005157407373189926, - 0.011307372711598873, - -0.03684789314866066, - -0.0065067666582763195, - -0.0005907501908950508, - 0.01577712595462799, - 0.03671814501285553, - -0.0035226065665483475, - 0.029296668246388435, - -0.004498946014791727, - 0.016140414401888847, - -0.011982051655650139, - -0.01429801993072033, - -0.012098823674023151, - -0.008355648256838322, - -0.004764925222843885, - 0.0005956156528554857, - -0.056673094630241394, - -0.01473915670067072, - -0.03368208557367325, - -0.01677617058157921, - 0.005176869221031666, - -0.0076485322788357735, - -0.00014900528185535222, - -0.02649415284395218, - 0.0036620835307985544, - -0.021083740517497063, - 0.01590687222778797, - 0.01482997927814722, - -0.00499522453173995, - 0.0061175283044576645, - -0.004713026806712151, - 0.0008806516416370869, - -0.01838502287864685, - 0.0014361271169036627, - 0.020214442163705826, - -0.030516281723976135, - 0.013506568968296051, - -0.015530607663094997, - 0.01913755014538765, - -0.00020678284636233002, - 0.02127835899591446, - -0.006357558537274599, - -0.030568180605769157, - -0.015167318284511566, - -0.010418611578643322, - -0.016257185488939285, - 0.009315770119428635, - -0.013571442104876041, - -0.018618565052747726, - -0.035939667373895645, - -0.02536536194384098, - -0.0012747554574161768, - 0.005994269624352455, - 0.005040635820478201, - -0.004249184858053923, - -0.014142324216663837, - 0.0041745807975530624, - 0.0072852433659136295, - -0.010301840491592884, - 0.009899627417325974, - 0.005825599655508995, - -0.006620294414460659, - 0.0061596957966685295, - 0.021485954523086548, - 0.02275746501982212, - -0.008154542185366154, - 0.0044438038021326065, - -0.025053970515727997, - 0.0098023172467947, - -0.015439785085618496, - 0.0077328672632575035, - -0.008161029778420925, - 0.005965076852589846, - 0.037366874516010284, - 0.011326834559440613, - -0.007719892542809248, - 0.010230479761958122, - 0.0050536105409264565, - -0.0375225730240345, - 0.0066267820075154305, - 0.011132215149700642, - 0.01913755014538765, - 0.004940082784742117, - 0.04273836314678192, - -0.003859946271404624, - -0.028699835762381554, - 0.005796406883746386, - -0.0030587641522288322, - 0.03440866619348526, - -0.018618565052747726, - 0.00046222045784816146, - -0.009581749327480793, - 0.0014782946091145277, - 0.02632548287510872, - 0.004489215090870857, - 0.01466130930930376, - -0.0017661687452346087, - -0.008582704700529575, - 0.0018764529377222061, - -0.014207197353243828, - 0.010898672044277191, - -0.002504099626094103, - -0.011171138845384121, - -0.01652965322136879, - -0.008219415321946144, - -0.0021197269670665264, - -0.0045443568378686905, - 0.010425099171698093, - 0.018605589866638184, - 0.023484043776988983, - -0.015504658222198486, - 0.0124296760186553, - 0.005429874174296856, - 0.022017912939190865, - 0.03368208557367325, - 0.004884940572082996, - -0.02515776827931404, - 0.030879570171236992, - 0.0008587570046074688, - 0.05257311835885048, - 0.030023247003555298, - -0.000982015742920339, - 0.025508083403110504, - -0.01624421216547489, - 0.0031771576032042503, - 0.003467464353889227, - -0.009860703721642494, - -0.0005210116505622864, - -0.01043158583343029, - 0.01463535986840725, - -0.0054006814025342464, - 0.021187538281083107, - 0.010736489668488503, - -0.002152163302525878, - 0.019033752381801605, - -0.007927486672997475, - 0.01085326075553894, - 0.006594345439225435, - 0.005452579818665981, - -0.021797344088554382, - -0.015323013998568058, - -0.01253347285091877, - 0.004988737404346466, - -0.00333771831355989, - -0.01507649663835764, - 0.0058872289955616, - -0.0016866992227733135, - 0.016711296513676643, - -0.011793919838964939, - -0.0022575820330530405, - 0.006902492139488459, - 0.01981222815811634, - 0.011372245848178864, - -0.0029906474519521, - -0.014881877228617668, - -0.009082227014005184, - 0.02750617265701294, - -0.006104554049670696, - -0.014414791017770767, - 0.0075901467353105545, - -0.004969275556504726, - -0.03305930644273758, - -0.010736489668488503, - -0.01348061952739954, - -0.018787235021591187, - -0.023951129987835884, - -0.02014956809580326, - 0.0001954300532815978, - -0.0038177790120244026, - 0.019526787102222443, - -0.01087272260338068, - 0.022108735516667366, - 0.0009933685651049018, - 0.01392175629734993, - -0.01283188909292221, - 0.004015641752630472, - -0.0008125349413603544, - 0.026182763278484344, - 0.00507955951616168, - -0.003071738872677088, - 0.0001651221828069538, - -0.0015820914413779974, - -0.021888166666030884, - -0.009296308271586895, - -0.024132773280143738, - -0.005199574865400791, - 0.0002629385853651911, - -0.002307858783751726, - 0.004119438584893942, - -3.0333218091982417e-05, - -0.021174563094973564, - 0.04605986550450325, - -0.006072117481380701, - 0.0009090335806831717, - -0.03897572681307793, - -0.004048078320920467, - 0.023561891168355942, - 0.05371488258242607, - 0.010970032773911953, - 0.009646622464060783, - 0.011767971329391003, - -0.006733822636306286, - -0.013571442104876041, - 0.006124015897512436, - -0.020642604678869247, - -0.001793739735148847, - -0.016296109184622765, - -0.0025073434226214886, - -0.020642604678869247, - 0.017087560147047043, - -0.019448939710855484, - 0.025936244055628777, - -0.007713405415415764, - 0.006785721052438021, - 0.0037756115198135376, - 0.019124574959278107, - 0.01093759573996067, - -0.00614023394882679, - -0.0026322240009903908, - 0.013934730552136898, - 0.05527183786034584, - 0.018826158717274666, - -0.006156452465802431, - 0.04003964737057686, - 0.020162543281912804, - 0.004787630867213011, - -0.023120755329728127, - 0.006484061013907194, - 0.034849800169467926, - 0.024418216198682785, - 0.03747067227959633, - -0.03183969110250473, - 0.027116933837532997, - 0.01771034300327301, - -0.013052457012236118, - 0.02696123905479908, - -0.004229722544550896, - 0.009036815725266933, - 0.01099598128348589, - 0.01112572755664587, - -0.010781900957226753, - 0.01026291586458683, - 0.00301821855828166, - -0.0019510568818077445, - 0.012150721624493599, - -0.004641666542738676, - -0.035939667373895645, - 0.017022687941789627, - -0.008504856377840042, - -0.03477195277810097, - -0.015089470893144608, - 0.010009911842644215, - -0.0128059396520257, - 0.032747913151979446, - -0.013260050676763058, - 0.0038372408598661423, - -0.025754600763320923, - -0.030931469053030014, - -0.028232751414179802, - -0.00690897973254323, - -0.026234660297632217, - -0.004482727497816086, - -0.019877102226018906, - -0.01072351448237896, - 0.019293244928121567, - -0.029893500730395317, - 0.0075901467353105545, - 0.03604346513748169, - -0.026364406570792198, - -0.015919845551252365, - -0.000601292063947767, - 0.009743931703269482, - 0.030594129115343094, - 0.01187825482338667, - -0.003723712870851159, - 0.0017207575729116797, - 0.0005948047619313002, - -0.01833312399685383, - -0.01787901297211647, - -0.006516497582197189, - -0.015335988253355026, - -0.010029373690485954, - -0.0037756115198135376, - -0.02309480495750904, - -0.015673328191041946, - -0.0054428488947451115, - 0.028128953650593758, - -0.01207287423312664, - -0.02309480495750904, - -0.0007813147967681289, - 0.0025268052704632282, - -0.019799254834651947, - 0.015465734526515007, - 0.01263726968318224, - -0.0010671616764739156, - 0.017347052693367004, - -0.022056836634874344, - 0.023445120081305504, - -0.007823689840734005, - 0.0052644480019807816, - 0.0008684879285283387, - -0.0015537095023319125, - -0.002847926924005151, - -0.01589389704167843, - 0.015569531358778477, - -0.0037139819469302893, - -0.009497414343059063, - 0.03225487843155861, - -0.012630782090127468, - 0.001029048697091639, - 0.0017353540752083063, - -0.005186600144952536, - 0.01268268097192049, - 0.01146306749433279, - 0.0029841603245586157, - 0.04105166345834732, - -0.01381795946508646, - 0.008414034731686115, - -0.0350833460688591, - 0.02557295560836792, - 0.02388625591993332, - 0.01316922903060913, - 0.00631863484159112, - -0.01497269980609417, - 0.03479790315032005, - -0.02771376632153988, - -0.009497414343059063, - 0.006792208179831505, - 0.024677706882357597, - 0.000495062442496419, - -0.008394572883844376, - 0.0029614546801894903, - -0.00314958649687469, - 0.010282378643751144, - 0.0018115799175575376, - -0.02818085253238678, - 0.00020049826707690954, - -0.0060753608122467995, - 0.0006227812846191227, - 0.0018910493236035109, - 0.024638783186674118, - 0.019046727567911148, - -0.026805544272065163, - -0.02090209536254406, - 0.0024165210779756308, - -0.010269403457641602, - 0.030127042904496193, - -0.004044834524393082, - -0.008868145756423473, - -0.021317284554243088, - 0.008323212154209614, - -0.01337682269513607, - -0.022173607721924782, - 0.023068856447935104, - -0.024885300546884537, - 0.0031706702429801226, - 0.007739354856312275, - 0.004700052551925182, - 0.01161227561533451, - 0.020512858405709267, - 0.00545582314953208, - -0.006870056036859751, - 0.004314057528972626, - -0.01244913786649704, - -0.0020775594748556614, - -0.02216063253581524, - 0.04042888432741165, - 0.0026127619203180075, - 0.0285181924700737, - -0.012604833580553532, - -0.0066689494997262955, - 0.002363000763580203, - 0.02675364539027214, - -0.024405241012573242, - -0.032877661287784576, - -0.01196907740086317, - -0.006441893521696329, - -0.015595480799674988, - 0.01972140744328499, - -0.0036912765353918076, - 0.007998846471309662, - -0.035654228180646896, - -0.0020937775261700153, - 0.01259834598749876, - 0.016010668128728867, - -0.01257239654660225, - 0.0038339970633387566, - 0.01282540149986744, - -0.020577730610966682, - 0.020772350952029228, - 0.01636098325252533, - -0.017256230115890503, - -0.0011514966608956456, - -0.0005299317417666316, - -0.04133710637688637, - -0.022562846541404724, - 0.01880021020770073, - -0.02110969088971615, - 0.01305894460529089, - 0.003454489866271615, - -0.014842953532934189, - 0.009756906889379025, - 0.006772746331989765, - 0.01429801993072033, - -0.016594525426626205, - 0.009594723582267761, - -0.009322256781160831, - 0.010172094218432903, - -0.007337141782045364, - -0.006535959430038929, - -0.03137260675430298, - 0.026234660297632217, - -0.0005165516631677747, - -0.008881120011210442, - 0.03422702103853226, - -0.011573351919651031, - -0.005283909849822521, - 0.01527111604809761, - -0.006007244344800711, - 0.032877661287784576, - -0.002925774548202753, - 0.044191520661115646, - 0.01876128651201725, - -0.03191753849387169, - -0.012059899978339672, - -0.034927647560834885, - -0.01234534103423357, - -0.022640693932771683, - 0.02229037880897522, - 0.004940082784742117, - -0.01761952042579651, - -0.014349917881190777, - 0.010541870258748531, - 0.013221126981079578, - -0.006934928707778454, - -0.009075739420950413, - 0.037963707000017166, - 0.04032508656382561, - -0.007667994126677513, - -0.022264430299401283, - -0.004158362280577421, - -0.010950570926070213, - 0.00571855902671814, - 0.01482997927814722, - 0.008109130896627903, - -0.0058742547407746315, - 0.018709387630224228, - 0.001660750014707446, - 0.03399347886443138, - -0.01259834598749876, - 0.020811274647712708, - 0.024327393621206284, - -0.01053538266569376, - -0.0040545654483139515, - -0.03259221836924553, - -0.011300885118544102, - 0.02127835899591446, - 0.0003233515890315175, - 0.03791180998086929, - 0.005682879127562046, - -0.026481177657842636, - 0.015673328191041946, - -0.0029971348121762276, - -0.005776945035904646, - 0.0039053575601428747, - 0.026273583993315697, - 0.019397040829062462, - 0.009581749327480793, - -0.022017912939190865, - -0.015491683967411518, - -0.0034901699982583523, - 0.005403924733400345, - -0.004294595681130886, - -0.005186600144952536, - -0.021096715703606606, - -0.01624421216547489, - -0.01099598128348589, - -0.0008182113524526358, - 0.018696412444114685, - 0.0009625538368709385, - -0.01808660663664341, - -0.008699475787580013, - -0.008433496579527855, - -0.013895806856453419, - -0.0025251833721995354, - 0.029556160792708397, - -0.032955508679151535, - -0.013571442104876041, - 0.011761483736336231, - -0.005663417279720306, - 0.021265385672450066, - -0.015919845551252365, - -0.005423387046903372, - -0.022147659212350845, - 0.023795433342456818, - -0.015335988253355026, - 0.011469555087387562, - 0.051716793328523636, - -0.0021245924290269613, - -0.02005874738097191, - 0.015556557103991508, - -0.015193267725408077, - -0.012144234962761402, - 0.03108716569840908, - 0.0069738528691232204, - -0.024586886167526245, - 0.015348963439464569, - -0.008907069452106953, - 0.01351954322308302, - -0.021563801914453506, - 0.01080784946680069, - -0.0016088515985757113, - 0.002054853830486536, - -0.004700052551925182, - -0.010353738442063332, - -0.0208242479711771, - 0.037704214453697205, - 0.0035323374904692173, - -0.01283188909292221, - 0.032955508679151535, - -0.020253365859389305, - 0.024236571043729782, - 0.022562846541404724, - -0.0019770062062889338, - -0.0054006814025342464, - -0.020266341045498848, - -0.022861262783408165, - -0.009244409389793873, - 0.023484043776988983, - -0.020006848499178886, - -0.008991404436528683, - 0.0028560359496623278, - -0.017061611637473106, - -0.01053538266569376, - 0.0037334440276026726, - -0.009186023846268654, - 0.008336186408996582, - 0.01007478404790163, - 0.027246680110692978, - -0.006688411347568035, - -0.0033993476536124945, - -0.001754815923050046, - -0.003454489866271615, - -0.012455625459551811, - -0.008186978287994862, - -0.04445101320743561, - 2.0272827327971754e-07, - -0.004871965851634741, - 0.034382715821266174, - 0.015660353004932404, - -0.038378894329071045, - -0.0009041681187227368, - 0.008809760212898254, - -0.045618727803230286, - -0.03570612519979477, - -0.005147676449269056, - -0.0212005116045475, - 0.01900780387222767, - 0.017217306420207024, - 0.006876543164253235, - 0.03645865246653557, - 0.005478528793901205, - 0.023704612627625465, - -0.022562846541404724, - -0.023574866354465485, - 0.004505433142185211, - -0.0022429856471717358, - 0.024236571043729782, - 0.004521651659160852, - -0.03407132625579834, - -0.0019494350999593735, - 0.013999603688716888, - 0.003509631846100092, - -0.0006065630004741251, - 0.010249941609799862, - -0.015232191421091557, - -0.014687257818877697, - -0.008141567930579185, - 0.012676193378865719, - 0.012559422291815281, - 0.0019834935665130615, - 0.007492837030440569, - -0.020681528374552727, - 0.008251851424574852, - 0.008251851424574852, - 0.005309858825057745, - -0.02615681290626526, - 0.0004837096785195172, - -0.007817202247679234, - -0.010710540227591991, - 0.003013353096321225, - 0.011742021888494492, - -0.03222893178462982, - -0.014518587850034237, - -0.017554646357893944, - 0.015335988253355026, - 0.020006848499178886, - 0.0017467067809775472, - 0.017995784059166908, - -0.008342674002051353, - -0.024405241012573242, - -0.01490782666951418, - 0.010950570926070213, - -0.020045772194862366, - -0.0018261763034388423, - 0.007914511486887932, - -0.009730957448482513, - 0.03487575054168701, - -0.029452364891767502, - -0.0010533761233091354, - -0.01405150257050991, - 0.01385688316076994, - -0.015699278563261032, - -0.02452201209962368, - -0.016892941668629646, - -0.009594723582267761, - 0.019020777195692062, - 0.00586776714771986, - -0.014583460986614227, - 0.0031236372888088226, - -0.006934928707778454, - 0.0026322240009903908, - -0.025962194427847862, - -0.007304705213755369, - -0.024924226105213165, - -0.022108735516667366, - -0.0006921143503859639, - 0.005987782496958971, - 0.0030457896646112204, - -0.009562287479639053, - -0.014505613595247269, - -0.023081829771399498, - 0.021460004150867462, - 0.1777002513408661, - 0.005945615004748106, - 0.008193465881049633, - 0.011832844465970993, - -0.009198998101055622, - -0.008731911890208721, - 0.04037698358297348, - -0.01551763340830803, - -0.0006665705586783588, - 0.01238426472991705, - -0.02818085253238678, - 0.01537491288036108, - 0.03028273954987526, - -0.000594399287365377, - 0.008835709653794765, - -0.03671814501285553, - -0.042167481034994125, - 8.81868036231026e-05, - 0.0014831600710749626, - 0.018372047692537308, - 0.00988665223121643, - -0.03420107066631317, - -0.008076694793999195, - -0.0054006814025342464, - 0.014959724619984627, - 0.0005875065689906478, - -0.013286000117659569, - 0.009834754280745983, - 0.011372245848178864, - -1.3278701771923807e-05, - 0.0028252212796360254, - -0.003772367723286152, - -0.010593769140541553, - -0.0060753608122467995, - -0.002573838224634528, - 0.006325122434645891, - 0.03861244022846222, - -0.02099291794002056, - 0.022952085360884666, - 0.02133025787770748, - -0.002191087231040001, - -0.010944083333015442, - -0.010256429202854633, - -0.03604346513748169, - -0.012728092260658741, - 0.01712648570537567, - -0.008712450042366982, - 0.005663417279720306, - 0.0005331753636710346, - -0.020772350952029228, - -0.0223293025046587, - -0.0037820986472070217, - 0.01564737968146801, - 0.01146306749433279, - -0.01568630337715149, - -0.0021781125105917454, - 0.0011239255545660853, - -0.001962409820407629, - -0.005303371697664261, - 0.011534428223967552, - -0.027999207377433777, - 0.02633845806121826, - -0.00684410659596324, - 0.02784351259469986, - -0.01274755410850048, - 0.0022300109267234802, - -0.02620871178805828, - -0.014881877228617668, - 0.0026597948744893074, - -0.017360027879476547, - -0.008212927728891373, - -0.036951687186956406, - -0.018579641357064247, - 0.03536878526210785, - -0.0027911628130823374, - -0.01989007741212845, - 0.01493377611041069, - -0.000295577832730487, - 0.01493377611041069, - 0.017814138904213905, - -0.007583659142255783, - 0.005303371697664261, - -0.00716198468580842, - -0.031113114207983017, - 0.00743445148691535, - -0.04172634333372116, - 0.028025157749652863, - 0.010256429202854633, - -0.023899231106042862, - -0.02309480495750904, - -0.016205286607146263, - 0.006211594212800264, - 0.008044257760047913, - -0.005170382093638182, - 0.019202422350645065, - 0.005734777543693781, - 0.018410971388220787, - 0.021265385672450066, - -0.012611320242285728, - 0.007869101129472256, - -0.005757483188062906, - 0.0647173523902893, - 0.0113981943577528, - -0.016049591824412346, - -0.002181356307119131, - -0.006639756727963686, - -0.012286955490708351, - 0.010087759234011173, - -0.0016072298167273402, - -0.023951129987835884, - 0.00021225650561973453, - -0.030594129115343094, - -0.0030003786087036133, - -0.010522408410906792, - -0.011677148751914501, - 0.030723875388503075, - 0.00524822948500514, - -0.01234534103423357, - 0.005637467838823795, - -0.018540717661380768, - -0.0015204621013253927, - 0.001967275282368064, - 0.013182203285396099, - -0.016918890178203583, - 0.007700430694967508, - -0.016270160675048828, - -0.020175518468022346, - -0.0009098445298150182, - -0.009834754280745983, - -0.02304290607571602, - 0.02696123905479908, - -0.030879570171236992, - -0.0023143459111452103, - 0.013766060583293438, - -0.010048835538327694, - 0.04042888432741165, - 0.005523940082639456, - -0.036406755447387695, - 0.005864523816853762, - -0.007466888055205345, - 0.005150920245796442, - -0.0012188024120405316, - -0.014648334123194218, - -0.019487863406538963, - 0.015426810830831528, - -0.011430631391704082, - 0.0020759375765919685, - 0.0019883590284734964, - -0.013999603688716888, - -0.028492242097854614, - 0.016542626544833183, - -0.009160074405372143, - 0.011780945584177971, - -0.017684392631053925, - 0.0343308188021183, - -0.007700430694967508, - -0.019111599773168564, - -0.0289852786809206, - 0.020629629492759705, - 0.013675238937139511, - 0.008141567930579185, - 0.017593570053577423, - -0.004103220533579588, - 0.002667904132977128, - -0.01972140744328499, - 0.0075058117508888245, - -0.1628572940826416, - 0.012676193378865719, - 0.019916025921702385, - -0.044269368052482605, - -0.004232966341078281, - 0.004281621426343918, - 0.01442776620388031, - 0.005478528793901205, - -0.001423152512870729, - 0.003973474260419607, - 0.03998774662613869, - -0.007745841983705759, - -0.02797325886785984, - -0.00508929044008255, - -0.011326834559440613, - -0.0024262520018965006, - -0.01221559476107359, - 0.04260861873626709, - 0.011073829606175423, - 0.0017450849991291761, - 0.014687257818877697, - -0.019150523468852043, - 0.019332168623805046, - -0.0009138990426436067, - 0.01833312399685383, - 0.0021927091293036938, - -0.012669706717133522, - 0.026805544272065163, - -0.00927684549242258, - -0.009782855398952961, - 0.011917179450392723, - -0.012650244869291782, - 0.034927647560834885, - -0.01236480288207531, - 0.008634602651000023, - 0.00594237120822072, - 0.01733407936990261, - -0.00578343216329813, - -0.006179157644510269, - 0.01463535986840725, - 0.029244769364595413, - -0.005666660610586405, - -0.0018732092576101422, - 0.007596633862704039, - -0.028284648433327675, - 0.0035258501302450895, - -0.004025372676551342, - 0.005228767637163401, - -0.005903447512537241, - -0.008907069452106953, - 0.019838178530335426, - -0.012235056608915329, - -0.011534428223967552, - 0.007071162108331919, - 0.014414791017770767, - 0.018138503655791283, - -0.0037399311549961567, - 0.01972140744328499, - 0.010185068473219872, - 0.003242030506953597, - -0.005433117970824242, - 0.0025527544785290956, - 0.01100246887654066, - 0.005296884570270777, - -0.007557710167020559, - -0.03235867619514465, - -0.001554520451463759, - 0.009932063519954681, - -0.0212005116045475, - 0.012033950537443161, - -0.012838376685976982, - -0.00699331471696496, - 0.0064905486069619656, - 0.004771412815898657, - 0.0005660173483192921, - 0.0032225686591118574, - -0.009224947541952133, - -0.0007914511952549219, - 0.019500838592648506, - -0.012273981235921383, - -0.03866433724761009, - 0.05662119761109352, - -0.01951381377875805, - 0.0022948840633034706, - -0.018099579960107803, - 0.004573550075292587, - -0.012922711670398712, - -0.0014150433707982302, - 0.026909340173006058, - 0.003885895712301135, - 0.014142324216663837, - -0.04112951457500458, - -0.02872578613460064, - -0.008310237899422646, - 0.002058097394183278, - -0.0046481541357934475, - 0.002218658337369561, - 0.00927684549242258, - 0.009730957448482513, - -0.020084695890545845, - 0.006941416300833225, - -0.005465554539114237, - -0.03318905085325241, - -0.00340259145013988, - 0.0071425228379666805, - 0.01527111604809761, - 0.0010112086310982704, - 0.015193267725408077, - 0.028128953650593758, - 0.0003008487692568451, - -0.025884347036480904, - -0.015232191421091557, - 0.01589389704167843, - -0.001964031485840678, - -0.009938551113009453, - 0.000257667648838833, - -0.0029079343657940626, - -0.012773503549396992, - 0.010185068473219872, - 0.015024597756564617, - 0.039183322340250015, - -0.01163173746317625, - -0.030775774270296097, - 0.01060025580227375, - 0.005358513910323381, - -0.02838844619691372, - -0.08101346343755722, - 0.010133170522749424, - 0.027999207377433777, - 0.016386931762099266, - 0.014453715644776821, - 0.02641630545258522, - 0.007823689840734005, - 0.02334132231771946, - 0.005660173483192921, - 0.012864325195550919, - -0.033967528492212296, - -0.028336547315120697, - 0.0049173771403729916, - 0.003279332537204027, - 0.015089470893144608, - -0.015595480799674988, - -0.015569531358778477, - -0.013467645272612572, - -0.027895411476492882, - 0.03355234116315842, - 0.011845818720757961, - -0.0057477522641420364, - -0.0037139819469302893, - -0.0048492602072656155, - -0.02831059880554676, - 0.01234534103423357, - -0.032747913151979446, - 0.017904961481690407, - 0.014674283564090729, - -3.24872053170111e-05, - 0.01707458682358265, - -0.019371092319488525, - 0.03482385352253914, - -0.033033356070518494, - 0.02296505868434906, - -0.00179536163341254, - -0.010217505507171154, - -0.02350999228656292, - 0.02393815480172634, - -0.026260610669851303, - -0.017385976389050484, - -0.01455751247704029, - 0.027324527502059937, - -0.025053970515727997, - -0.0047065396793186665, - -0.0052384985610842705, - -0.0037756115198135376, - -0.005991025827825069, - -0.011936641298234463, - -0.024288469925522804, - -0.04009154438972473, - 0.004070783965289593, - 0.0148689029738307, - -0.018397996202111244, - 0.005232011433690786, - 0.003963743336498737, - -0.0050179301761090755, - -0.015426810830831528, - -0.008232389576733112, - 0.02271854132413864, - -0.008511343970894814, - 0.007908024825155735, - -0.04037698358297348, - 0.02906312607228756, - 0.0038372408598661423, - 0.007291730493307114, - -0.03222893178462982, - -0.005374731961637735, - -0.003584235906600952, - -0.018618565052747726, - -0.01774926669895649, - -0.002494368702173233, - -0.00741498963907361, - 0.008718937635421753, - -0.03422702103853226, - 0.0009471465018577874, - -0.02110969088971615, - -0.00030976880225352943, - 0.013999603688716888, - -0.008109130896627903, - -0.020409060642123222, - -0.02825869992375374, - 0.023315373808145523, - -0.015439785085618496, - 0.018320148810744286, - 0.02107076533138752, - 0.00026151948259212077, - -0.008115618489682674, - 0.017930909991264343, - -0.01257239654660225, - 0.03145045414566994, - -0.004865478724241257, - 0.015323013998568058, - -0.004810336511582136, - 0.031139062717556953, - 0.004531382583081722, - 0.0036069415509700775, - 0.0019559224601835012, - 0.0017645469633862376, - 0.019397040829062462, - -0.023899231106042862, - -0.023367272689938545, - -0.0662224069237709, - 0.016179338097572327, - 0.019695457071065903, - -0.010574307292699814, - -0.024470113217830658, - 0.01316922903060913, - 0.0039961799047887325, - 0.003545312210917473, - -0.0010193177731707692, - -0.0003679518122226, - -0.00709711154922843, - 0.010626205243170261, - 0.027246680110692978, - -0.005277422722429037, - -0.00667543662711978, - 0.0007127926219254732, - -0.003113906364887953, - 0.02039608731865883, - 0.014207197353243828, - 0.01300055906176567, - -0.0062797111459076405, - -0.001113383681513369, - 0.0047324891202151775, - 0.004022128880023956, - -0.038430795073509216, - 0.008861658163368702, - -0.018852107226848602, - -0.00043262215331196785, - 0.005014686845242977, - -0.015673328191041946, - 0.0047487071715295315, - -0.01662047579884529, - -0.004210260696709156, - -0.002246229210868478, - -0.008783810772001743, - -0.009873677976429462, - 0.011242499575018883, - 0.03176184371113777, - 0.007324167061597109, - 0.08833114057779312, - -0.01863154023885727, - -0.015323013998568058, - 0.01470023300498724, - -0.04037698358297348, - 0.0009893139358609915, - -0.01099598128348589, - 0.01863154023885727, - -0.005598544143140316, - 0.021589750424027443, - -0.02947831340134144, - 0.0495370589196682, - 0.01527111604809761, - 0.0006053466349840164, - -0.02149892784655094, - 0.018008757382631302, - -0.033500440418720245, - 0.008193465881049633, - 0.026442253962159157, - -0.008576217107474804, - -0.028232751414179802, - 0.049355413764715195, - -0.01649072952568531, - 0.012604833580553532, - 0.008511343970894814, - 0.022186582908034325, - -0.033163104206323624, - -0.03477195277810097, - 0.009082227014005184, - 0.006883030291646719, - -0.027532121166586876, - 0.004972519353032112, - -0.027947308495640755, - -0.001273133559152484, - 0.030101094394922256, - -0.011424143798649311, - -0.007311192341148853, - 0.01602364331483841, - 0.0007825311622582376, - -0.0012115042190998793, - 0.021940065547823906, - 0.01741192676126957, - 0.0224201250821352, - -0.024197647348046303, - 0.006545690819621086, - 0.009348206222057343, - 0.01320815272629261, - -0.009432541206479073, - 0.01425909623503685, - -0.011287910863757133, - -0.007875587791204453, - -0.0014345053350552917, - 0.004541113507002592, - -0.001535869436338544, - -0.027324527502059937, - 0.018748311325907707, - 0.0037366875912994146, - 0.013402772136032581, - -0.01305894460529089, - 0.005092534236609936, - 0.03391563147306442, - -0.022173607721924782, - 0.018955904990434647, - 0.02536536194384098, - -0.01022399216890335, - -0.018320148810744286, - -5.0555365305626765e-05, - -0.020084695890545845, - -0.027194781228899956, - -0.023626763373613358, - 0.016049591824412346, - -0.021563801914453506, - 0.026130864396691322, - 0.007992359809577465, - -0.012150721624493599, - -0.01606256701052189, - 0.016672372817993164, - -0.01547870971262455, - 0.0026468203868716955, - -0.03495359793305397, - 0.02225145511329174, - 0.002891716081649065, - 0.017476798966526985, - 0.009231435135006905, - -0.015400861389935017, - 0.012163696810603142, - -0.0009203864028677344, - -0.01127493567764759, - 0.0068960050120949745, - 0.009503901936113834, - -0.0038761645555496216, - 0.005147676449269056, - -0.0019332168158143759, - -0.027013137936592102, - -0.015790099278092384, - -0.006344584282487631, - -0.04055862873792648, - 0.012254518456757069, - 0.008349161595106125, - 0.0326441191136837, - 0.1061842069029808, - 0.04003964737057686, - -0.004771412815898657, - 0.0071230605244636536, - -0.0053650010377168655, - 0.0044600218534469604, - 0.008044257760047913, - 0.01649072952568531, - -0.01188474241644144, - -0.03202133625745773, - -0.0007825311622582376, - -0.011424143798649311, - 0.005922909360378981, - -0.021213486790657043, - 0.01051592081785202, - 0.03495359793305397, - -0.030568180605769157, - 0.010405637323856354, - -0.0031317463144659996, - 0.039131421595811844, - 0.014570486731827259, - 0.001881318399682641, - 0.0065911016426980495, - 0.021810319274663925, - -0.03721117973327637, - -0.00028402230236679316, - 0.026805544272065163, - -0.027246680110692978, - 0.009958012960851192, - -0.01568630337715149, - 0.008894095197319984, - 0.005572594702243805, - -0.05926801636815071, - -0.036069415509700775, - 0.023172652348876, - 0.002236498286947608, - -0.0033766422420740128, - -0.020603680983185768, - 0.019448939710855484, - 0.007979384623467922, - 0.01453156303614378, - 0.022264430299401283, - -0.027869461104273796, - -0.030905520543456078, - -0.021693548187613487, - -0.0022721784189343452, - -0.00374966231174767, - -0.024547962471842766, - -0.032618168741464615 - ], - "sparse": "SparseEmbedding(values=array([1.53147519, 2.11954512, 2.05079654, 1.70408472, 1.70408472,\n 2.07899594, 1.17455683, 1.17455683, 1.53147519, 1.17455683,\n 1.17455683, 1.53147519, 1.98353511, 1.17455683, 1.17455683,\n 1.17455683, 1.17455683, 1.53147519, 1.17455683, 1.17455683,\n 1.17455683, 1.17455683, 1.17455683, 1.17455683, 1.17455683,\n 1.17455683, 1.17455683, 1.17455683, 1.17455683, 1.17455683,\n 1.17455683, 1.87296309, 1.53147519, 1.17455683, 1.17455683,\n 1.17455683, 1.70408472, 1.17455683, 1.17455683, 1.53147519,\n 1.53147519, 1.17455683, 1.53147519, 1.17455683, 1.17455683,\n 1.17455683, 1.17455683, 1.17455683, 1.53147519, 1.53147519,\n 1.53147519, 1.17455683, 1.17455683, 1.17455683, 1.17455683,\n 1.17455683, 1.53147519, 1.17455683, 1.17455683, 1.17455683,\n 1.17455683, 1.17455683, 1.17455683, 1.17455683, 1.17455683,\n 1.17455683, 1.17455683, 1.17455683, 1.17455683, 1.17455683,\n 1.17455683, 1.17455683, 1.8058517 , 1.17455683, 1.17455683,\n 1.17455683, 1.53147519, 1.17455683, 1.17455683, 1.17455683,\n 1.17455683, 1.17455683, 1.17455683]), indices=array([1641614904, 19522071, 1810453357, 1480001521, 1427900950,\n 264741300, 2103309648, 1340347458, 164058840, 1997030039,\n 651063971, 544882233, 1394226660, 1413554298, 1626154326,\n 670727360, 1618153130, 160566303, 602572328, 1041901940,\n 1147900472, 1475906442, 1114505193, 860787312, 2031875777,\n 636228984, 820459760, 1515684580, 1362353402, 1553747220,\n 1734550606, 516830072, 1102572110, 103616747, 1876705040,\n 1875908499, 408270109, 1533740972, 1219669695, 471957998,\n 697303812, 582901669, 1852771076, 120874358, 683459885,\n 456016094, 391312375, 987377478, 623812177, 163077544,\n 2046399687, 651773314, 1207234426, 394884850, 312050228,\n 230800482, 2075059736, 1616874354, 1918475883, 1163187370,\n 524783164, 591160358, 932042456, 1112552363, 337416142,\n 747690075, 1987903417, 1877620790, 1691249474, 1416371393,\n 1676350980, 205576681, 2124672130, 47951928, 127773379,\n 1918983413, 1246280156, 1841900287, 627407068, 1475817810,\n 1386751543, 52870164, 1247537923]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 12, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 165 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000013.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000013.json deleted file mode 100644 index a6d7aac5c178d420438e7c987be47802933b0767..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000013.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000013", - "content": "III Inhaltsverzeichnis 5.3.1 5.3.2 6.1 6.2 6.3 Baumpflanzungsszenarien Gromb\u00fchl .................................................... 33 Baumpflanzungsszenarien Grafenb\u00fchl .................................................. 35 6 Ergebnisse ........................................................................................................... 38 Zunahme des Gr\u00fcnanteils ............................................................................. 38 Auswirkungen auf den thermischen Geb\u00e4udeenergiebedarf ......................... 39 Auswirkungen auf die Evapotranspiration ..................................................... 43 7 Interpretation der Simulationsergebnisse ............................................................. 50 8 Kritische W\u00fcrdigung ............................................................................................. 52 9 Fazit ..................................................................................................................... 55 Literaturverzeichnis ..................................................................................................... 57 Anhang ....................................................................................................................... 61 Selbst\u00e4ndigkeitserkl\u00e4rung ........................................................................................... 85 Kognition: Erkl\u00e4rung zur Nutzung von generativen KI-Tools in Hochschulpr\u00fcfungen .. 86", - "embedding": { - "dense": [ - 0.013203277252614498, - -0.012918979860842228, - 0.006796679459512234, - -0.022307390347123146, - -0.0006747919251210988, - 0.027530519291758537, - -0.028032997623085976, - -0.0025553663726896048, - -0.02074706181883812, - -0.012383444234728813, - -0.005176848266273737, - 0.0019735493697226048, - -0.01970243640244007, - 0.015272693708539009, - 0.022836314514279366, - 0.008885931223630905, - 0.036178432404994965, - 0.0073652733117341995, - 0.02294209972023964, - 0.0029256134293973446, - -0.0008033040212467313, - 0.013077657669782639, - 0.014294183813035488, - 0.004168585874140263, - 0.005745442118495703, - 0.013256169855594635, - 0.023629700765013695, - -0.02599663846194744, - -0.020548716187477112, - 0.01853880286216736, - -0.0049189976416528225, - -0.016251204535365105, - -0.01881648786365986, - -0.0011157001135870814, - -0.012079312466084957, - -0.010876009240746498, - 0.0020429708529263735, - -0.00423470139503479, - 0.017295829951763153, - -0.0038446197286248207, - -0.0026561925187706947, - -0.007847917266190052, - -0.013170219026505947, - -0.02024458348751068, - 0.012945426627993584, - 0.012085923925042152, - 0.002599994419142604, - -0.0027272668667137623, - -0.02954043261706829, - 0.006621473468840122, - 0.02427763305604458, - 0.03083629719913006, - -0.007570231333374977, - 0.003771892748773098, - -0.01516690943390131, - 0.008899154141545296, - -0.013884267769753933, - 0.014849554747343063, - -0.007219818886369467, - -0.012469394132494926, - -0.009837995283305645, - -0.009203285910189152, - -0.019755329936742783, - 0.007629735395312309, - -0.033745381981134415, - -0.016436327248811722, - -0.008482626639306545, - 0.0001477269543102011, - 0.007603289093822241, - -0.030466049909591675, - 0.020694170147180557, - 0.037051159888505936, - -0.0019057809840887785, - -0.019993344321846962, - 0.02599663846194744, - -0.010697497054934502, - -0.008416511118412018, - -0.021104086190462112, - -0.008105767890810966, - 0.011385099031031132, - 0.017348723486065865, - -0.006836348678916693, - -0.031047865748405457, - 0.03853214904665947, - 0.024145402014255524, - 0.027953658252954483, - -0.007761966437101364, - 0.025560274720191956, - -0.025335481390357018, - -0.006142135243862867, - 0.024237964302301407, - 0.030254479497671127, - 0.0036826366558670998, - 0.03033381886780262, - 0.0008223122567869723, - -0.004952055402100086, - -0.016237981617450714, - 0.0016859467141330242, - 0.013910713605582714, - -0.039193302392959595, - -0.016753682866692543, - 0.0009909069631248713, - -0.004842964932322502, - -0.003659496083855629, - -0.020905740559101105, - -0.009328905493021011, - 0.006611555814743042, - 0.005130567587912083, - 0.020337145775556564, - -0.01856524869799614, - -0.03149745240807533, - 0.02842969074845314, - -0.015034678392112255, - -0.004456188529729843, - -0.0017768556717783213, - -0.027451179921627045, - 0.04316023737192154, - 0.010115680284798145, - -0.013057823292911053, - -0.015775172039866447, - 0.016859468072652817, - -0.016872690990567207, - 0.017666077241301537, - -0.02595696784555912, - 0.012509063817560673, - 0.007973536849021912, - 0.012879311107099056, - -0.0021752018947154284, - -0.032925549894571304, - -0.017692523077130318, - -0.014307406730949879, - 0.020138800144195557, - -0.001833053887821734, - 0.003366934834048152, - -0.024264410138130188, - 0.01912062056362629, - -0.021685903891921043, - -0.00504792295396328, - -0.03847925364971161, - -0.04122966155409813, - -0.011477661319077015, - 0.023352015763521194, - -0.03469744697213173, - -0.025560274720191956, - 0.014003274962306023, - 0.02569250576198101, - 0.0019437974551692605, - 0.03342802822589874, - -0.002737184055149555, - -0.02567928284406662, - -0.007457835134118795, - -0.005679326597601175, - 0.025071019306778908, - 0.007656181696802378, - 0.014148729853332043, - -0.02864125929772854, - -0.017401615157723427, - 0.006185110658407211, - -0.029646215960383415, - 0.0030413158237934113, - 0.012039643712341785, - 0.016475997865200043, - -0.002332226373255253, - 0.02376193180680275, - 0.00926940143108368, - 0.002638010773807764, - 0.005692549515515566, - -0.019530536606907845, - 0.006783456541597843, - -0.02245284430682659, - -0.008436345495283604, - 0.02048259973526001, - -0.024938788264989853, - 0.02481978014111519, - -0.015338810160756111, - 0.013507409021258354, - -0.002952059730887413, - 0.000318181118927896, - -0.005646268837153912, - -0.0177189689129591, - -0.040013134479522705, - 0.008449568413197994, - 0.007471058052033186, - 0.011781793087720871, - -0.029990017414093018, - -0.0017090871697291732, - 0.035913970321416855, - 0.018922273069620132, - 0.011080967262387276, - -0.003963627852499485, - 0.016766905784606934, - 0.015947073698043823, - 0.019186735153198242, - -0.007279322948306799, - -0.6342862248420715, - 0.015285917557775974, - -0.017388392239809036, - -0.01093551330268383, - 0.022518958896398544, - 0.022280942648649216, - 0.02017846889793873, - 0.011999974027276039, - -0.005094203632324934, - 0.014254514127969742, - 0.004009908530861139, - -0.0017966902814805508, - -0.00042851147009059787, - -0.012052866630256176, - 0.0018115662969648838, - -0.016224758699536324, - -0.005236352328211069, - -0.02263796702027321, - 0.008958658203482628, - 0.0021983422338962555, - -0.009877664968371391, - 0.01244955975562334, - -0.0013462781207635999, - 0.0008425601408816874, - 0.019464420154690742, - 0.02845613658428192, - -0.0031107370741665363, - -0.028773492202162743, - -7.376017310889438e-05, - -0.007332215551286936, - -0.008515683934092522, - 0.0275834109634161, - -0.01855202578008175, - 0.032396625727415085, - 0.04178503155708313, - 0.013348731212317944, - -0.03353381156921387, - 0.007682627998292446, - 0.006347093731164932, - 0.01745450682938099, - -0.03477678447961807, - -0.011927247047424316, - 0.004981807433068752, - 0.015484264120459557, - -0.0012487575877457857, - 0.024991681799292564, - 0.02188424952328205, - -0.013203277252614498, - -0.004971890244632959, - 0.002462804550305009, - 0.006370234303176403, - 0.008694196119904518, - 0.00031714807846583426, - 0.007563619874417782, - 0.015920625999569893, - 0.02513713575899601, - 0.02922307699918747, - -0.002697514835745096, - 0.002606605878099799, - 0.009461136534810066, - -0.0037156944163143635, - 0.010161961428821087, - -0.020654501393437386, - -0.022042928263545036, - -0.0303602647036314, - 0.027530519291758537, - -0.027477625757455826, - -0.014307406730949879, - 0.01725616119801998, - -0.02380160056054592, - -0.016052857041358948, - 0.00817849487066269, - -0.0031950343400239944, - -0.027186717838048935, - 0.023973502218723297, - 0.01639665849506855, - 0.015233024954795837, - 0.012244601733982563, - -0.021765241399407387, - 0.02266441285610199, - -0.004740485455840826, - -0.016211535781621933, - -0.0032875961624085903, - 0.0001979334483621642, - 0.02819167450070381, - -0.03720983490347862, - -0.0151801323518157, - -0.002783464966341853, - -0.022069374099373817, - 0.007894197478890419, - 0.02813878282904625, - 0.015471041202545166, - -0.020879292860627174, - -0.015642940998077393, - 0.004327263217419386, - 0.02704126387834549, - 0.009130558930337429, - 0.05159658193588257, - -0.0038380082696676254, - -0.030651172623038292, - -0.021725572645664215, - -0.0036925540771335363, - 0.019821444526314735, - 0.014704100787639618, - 0.01670078933238983, - 0.007477669510990381, - -0.02919663116335869, - -0.002952059730887413, - 0.04199660196900368, - -0.003527265042066574, - -0.00019628056907095015, - -0.004938832484185696, - 0.004697510506957769, - 0.004839658737182617, - 0.009619813412427902, - -0.02813878282904625, - 0.03935198113322258, - -0.014532200060784817, - -0.007358661852777004, - 0.004320651758462191, - 0.02239995077252388, - -0.0005735524464398623, - 0.0014066084986552596, - -0.010790059342980385, - 0.007292546331882477, - 0.023166891187429428, - -0.004833047278225422, - -0.016753682866692543, - -0.015550379641354084, - -0.012039643712341785, - -0.0019024752546101809, - -0.00011745842493837699, - 0.03504124656319618, - -0.0026628042105585337, - 0.03033381886780262, - -0.005438004620373249, - 0.03229083865880966, - 0.009414855390787125, - 0.00834378320723772, - -0.024674326181411743, - -0.019821444526314735, - -0.007642958778887987, - 0.020310699939727783, - -0.02893216907978058, - -0.011775180697441101, - 0.006343788001686335, - -0.02072061598300934, - 0.010016507469117641, - -0.005705772899091244, - -0.0034082571510225534, - -0.01254212111234665, - -0.004975195974111557, - 0.004247924778610468, - 0.004241313319653273, - 0.0016735501121729612, - -0.007471058052033186, - -0.005580153316259384, - -0.024727219715714455, - 0.004621477797627449, - -0.014307406730949879, - 0.029090845957398415, - 0.015947073698043823, - -0.028323905542492867, - 0.003712388686835766, - -0.005791722796857357, - -0.013818152248859406, - 0.00033305713441222906, - 0.016317319124937057, - 0.0015644594095647335, - -0.03160323575139046, - -0.011437991634011269, - -0.029619770124554634, - 0.005824780557304621, - 0.0016975170001387596, - -0.04241974279284477, - -0.021672680974006653, - -0.014796662144362926, - -0.009097500704228878, - -0.016859468072652817, - -0.0011264438508078456, - 0.007047918625175953, - 0.003937181551009417, - -0.014426414854824543, - -0.0026016472838819027, - 0.029275968670845032, - 0.023431353271007538, - 0.027213163673877716, - 0.01695202849805355, - 0.002315697493031621, - 0.006598332896828651, - 0.008323948830366135, - 0.04027760028839111, - 0.008727253414690495, - 0.01297848392277956, - -0.02402639389038086, - -0.0047272625379264355, - -0.018075993284583092, - 0.010366919450461864, - -0.023338792845606804, - 0.021910695359110832, - 0.03763297572731972, - 0.01863136515021324, - 0.027821427211165428, - -0.001809913432225585, - 0.013897490687668324, - -0.020839624106884003, - 0.01327600423246622, - -0.0032528855372220278, - 0.014624761417508125, - -0.00011601214646361768, - 0.02238672785460949, - -0.006115689408034086, - -0.029302416369318962, - -0.002846274757757783, - 0.002431399654597044, - 0.012846252880990505, - -0.01666112057864666, - -0.021223094314336777, - -0.0015776825603097677, - -0.005877673160284758, - 0.02079995535314083, - 0.009666094556450844, - 0.012145427986979485, - 0.001276856753975153, - -0.010829729028046131, - 0.012595013715326786, - -0.011537165381014347, - 0.0175074003636837, - 0.01856524869799614, - 0.003742140717804432, - -0.014955339021980762, - 0.005107427015900612, - 0.0028479276224970818, - -0.010029730387032032, - 0.0245949886739254, - 0.005689243786036968, - 0.036733806133270264, - -0.01613219641149044, - 0.03229083865880966, - 0.007510727737098932, - 0.011153695173561573, - 0.027371840551495552, - 0.009904110804200172, - -0.019768552854657173, - 0.038373470306396484, - 0.003054538741707802, - 0.017705745995044708, - 0.0257057286798954, - -0.00885948445647955, - 0.0043305689468979836, - -0.01859169453382492, - 0.0151801323518157, - 0.012601625174283981, - -0.010294192470610142, - 0.03771231323480606, - -0.01692558266222477, - 0.02126276306807995, - 0.010439646430313587, - 0.009652871638536453, - 0.025322258472442627, - 0.0008128081681206822, - 0.0204958226531744, - 0.00035888352431356907, - 0.008932212367653847, - -0.008264444768428802, - -0.006033044774085283, - -0.013963606208562851, - -0.003841313999146223, - -0.006548746023327112, - -0.00676362169906497, - 0.013633028604090214, - -0.0014479306992143393, - -0.006016515661031008, - 0.0011644603218883276, - -0.006730563938617706, - -0.006403292063623667, - 0.001295864931307733, - 0.002046276582404971, - 0.010366919450461864, - -0.004786766599863768, - -0.0036859423853456974, - -0.014677654020488262, - -0.0011363611556589603, - 0.03498835489153862, - 0.0005904946010559797, - -0.005414864514023066, - 0.012105759233236313, - 0.015259470790624619, - -0.020059460774064064, - -0.0012165262596681714, - -0.003421480068936944, - -0.0149024473503232, - -0.007682627998292446, - -0.006714034825563431, - 0.010611547157168388, - -0.01912062056362629, - 0.004254536237567663, - -0.009837995283305645, - 0.002581812674179673, - 0.00324957980774343, - 0.0075173391960561275, - -0.0032578441314399242, - -0.010942124761641026, - -0.019305743277072906, - 0.046042874455451965, - 0.008198329247534275, - -0.02600986137986183, - -0.006565275136381388, - 0.0009437996195629239, - -0.011338818818330765, - -0.010790059342980385, - -0.010446257889270782, - -0.019742105156183243, - 0.005947094410657883, - -0.014558645896613598, - 0.021223094314336777, - -0.004386767279356718, - -0.009765268303453922, - 0.0322379469871521, - -0.004267759155482054, - -0.0072132074274122715, - -0.021633010357618332, - -0.0024049533531069756, - 0.015021455474197865, - 0.02704126387834549, - 0.036522235721349716, - 0.015576825477182865, - 0.02455531805753708, - -0.0006789241451770067, - -0.017599962651729584, - -0.011252867989242077, - -0.03858504071831703, - -0.00208594580180943, - 0.0022578462958335876, - -0.0032479269430041313, - -0.009904110804200172, - 0.016727237030863762, - -0.026948701590299606, - 0.010042953304946423, - -0.00642643216997385, - 0.015973519533872604, - -0.020852847024798393, - -0.00235536671243608, - 0.001847929903306067, - -0.007312380708754063, - -0.008462791331112385, - -0.004489246290177107, - 0.050935424864292145, - -0.008396675810217857, - 0.0006776844966225326, - 0.02188424952328205, - 0.02017846889793873, - 0.006717341020703316, - -0.012211543507874012, - -0.015695834532380104, - 0.010181795805692673, - 0.027953658252954483, - 0.03221150115132332, - -0.03707760572433472, - -0.006271060556173325, - 0.02705448679625988, - -0.009573533199727535, - 0.025573497638106346, - -0.005097509827464819, - 0.0012743774568662047, - 0.010690885595977306, - 0.00834378320723772, - -0.00757684325799346, - 0.012218154966831207, - -0.0028247872833162546, - -0.011642949655652046, - 0.013064434751868248, - -0.0017322276253253222, - -0.02183135785162449, - 0.017401615157723427, - -0.007484281435608864, - -0.007570231333374977, - -0.014783439226448536, - 0.005411558318883181, - 0.0012884269235655665, - 0.005074369255453348, - -0.009520640596747398, - 0.018499134108424187, - -0.01941152848303318, - -0.03448587656021118, - -0.03969578072428703, - -0.012747080065310001, - -0.020033014938235283, - -0.01134543027728796, - -0.02267763763666153, - -0.01968921348452568, - -0.0072132074274122715, - -0.00929584726691246, - 0.011352041736245155, - 0.016185088083148003, - -0.01916028931736946, - -0.014042944647371769, - -0.021104086190462112, - 0.0226511899381876, - 0.012641294859349728, - 0.01159005705267191, - 0.007127257063984871, - -0.0027322254609316587, - -0.0018082605674862862, - -0.018684256821870804, - -0.048237912356853485, - -0.00033760257065296173, - -0.019993344321846962, - -0.007140480447560549, - 0.009765268303453922, - -0.022889206185936928, - -0.005752053577452898, - 0.013176830485463142, - 0.0072132074274122715, - -0.018948718905448914, - -0.014704100787639618, - -0.0019024752546101809, - 0.00036260252818465233, - -0.006433044094592333, - 0.0069421338848769665, - 0.0049586668610572815, - 0.003011563792824745, - 0.028218120336532593, - -0.02101152390241623, - 0.021910695359110832, - -0.018261117860674858, - 0.011067744344472885, - -0.016806574538350105, - 0.001986772520467639, - 0.003953710198402405, - -0.03231728449463844, - 0.01588095724582672, - -0.01296526100486517, - 0.0005347096011973917, - 0.032661087810993195, - -0.013685920275747776, - 0.013857821002602577, - -0.012581790797412395, - 0.0011388404527679086, - 0.02027103118598461, - -0.0008735518204048276, - 0.0005541310529224575, - 0.02760985679924488, - 0.008059486746788025, - 0.012125593610107899, - -0.024674326181411743, - 0.040330491960048676, - 0.007808247581124306, - 0.0029735472053289413, - 0.030228033661842346, - -0.0174412839114666, - 0.03197348490357399, - -0.029434647411108017, - 0.008826427161693573, - -0.01037353090941906, - 0.017824754118919373, - 0.01256195642054081, - -0.010254522785544395, - -0.014836331829428673, - -0.009937168098986149, - -0.017414838075637817, - 0.013328896835446358, - -0.025190027430653572, - 0.007246265187859535, - -0.032899100333452225, - 0.013725589960813522, - 0.015603272244334221, - 0.014439637772738934, - -0.005127261392772198, - -0.026895809918642044, - -0.016489220783114433, - 0.024489203467965126, - 0.013348731212317944, - 0.00875370018184185, - -0.016502443701028824, - -0.015695834532380104, - -0.03028092533349991, - 0.0033140424638986588, - -0.011999974027276039, - -0.018353678286075592, - 0.006770233158022165, - -0.008383452892303467, - 0.02706770971417427, - 0.0010611547622829676, - 0.013355342671275139, - 0.0014743770007044077, - 0.02325945347547531, - 0.009428078308701515, - -0.020350368693470955, - 0.01582806557416916, - -0.007609901018440723, - -0.006671059876680374, - -0.046889156103134155, - 0.022598298266530037, - -0.004343792330473661, - 0.011094191111624241, - 0.024118956178426743, - 0.01544459443539381, - 0.02214871160686016, - 0.02027103118598461, - -0.027371840551495552, - -0.012581790797412395, - -0.007246265187859535, - -0.010347085073590279, - -0.021963588893413544, - 0.010604935698211193, - -0.0031471005640923977, - 0.010148738510906696, - -0.004337180871516466, - 0.0012462782906368375, - 0.02463465742766857, - 0.005781805608421564, - -0.0016545418184250593, - 0.006823125761002302, - 0.011715676635503769, - -0.04350403696298599, - 0.022056151181459427, - 0.013348731212317944, - -0.008700807578861713, - -0.004502469673752785, - -0.005100815556943417, - -0.03311067074537277, - -0.03062472678720951, - 0.024952011182904243, - -0.033507365733385086, - 0.013937159441411495, - 0.016449550166726112, - -0.005153707694262266, - -0.0012933856341987848, - -0.011907411739230156, - 0.004618171602487564, - -0.02382804825901985, - 0.014188398607075214, - -0.015206578187644482, - -0.0227173063904047, - -0.00805287528783083, - 0.007682627998292446, - -0.010439646430313587, - 0.025507383048534393, - -0.001527269370853901, - -0.02620820701122284, - 0.03435364365577698, - -0.00846940279006958, - 0.02463465742766857, - 0.016079304739832878, - -0.011008240282535553, - 0.04747097194194794, - 0.01695202849805355, - 0.04781477153301239, - 0.02591729909181595, - -0.03205282241106033, - -0.021368548274040222, - -0.029672663658857346, - 0.012211543507874012, - -0.007398331072181463, - 0.005765276961028576, - 0.01422806829214096, - -0.013871043920516968, - -0.018075993284583092, - 0.0004896683385595679, - 0.02704126387834549, - -0.005269410088658333, - -0.014095837250351906, - 0.027504073455929756, - 0.03226439282298088, - 0.011808238923549652, - -0.006803290918469429, - 0.006403292063623667, - -0.03139166906476021, - -0.005229740869253874, - 0.0027421428821980953, - -0.004380155820399523, - 0.017348723486065865, - -0.01831400953233242, - -0.007847917266190052, - 0.03358670324087143, - 0.010168572887778282, - 0.027715642005205154, - -0.006525605451315641, - -0.014241291210055351, - 0.004092553164809942, - -0.009573533199727535, - -0.017586737871170044, - 0.030730511993169785, - 0.0017520623514428735, - 0.049295760691165924, - 0.028085889294743538, - -0.040066029876470566, - 0.0072132074274122715, - -0.008727253414690495, - -0.008528906852006912, - -0.013533854857087135, - -0.004856187850236893, - 0.028799938037991524, - -0.0021107392385601997, - -0.0013958647614344954, - -0.009190062992274761, - 0.01935863494873047, - 0.03197348490357399, - 0.004380155820399523, - -0.003229744965210557, - -0.012780137360095978, - 0.002652886789292097, - -0.009256178513169289, - 0.020932186394929886, - 0.003679330926388502, - -0.017930539324879646, - -0.009586756117641926, - -0.016581783071160316, - -0.0018644587835296988, - -0.013685920275747776, - -0.010433034971356392, - 0.006433044094592333, - -0.04175858572125435, - 0.012112370692193508, - 0.026102421805262566, - 0.011127248406410217, - 0.04178503155708313, - -0.005166931077837944, - -0.029725555330514908, - -0.013685920275747776, - 0.02239995077252388, - -0.024740442633628845, - 0.0050809807144105434, - 0.04617510735988617, - -0.007477669510990381, - 0.004072718322277069, - 0.01963632181286812, - -0.008694196119904518, - -0.010069400072097778, - 0.016290873289108276, - -0.0003555777366273105, - -0.023695817217230797, - 0.005137179046869278, - 0.0073652733117341995, - 0.021461110562086105, - -0.016304096207022667, - -0.005596681963652372, - 0.01282641850411892, - -0.014849554747343063, - 0.003811561968177557, - -0.012747080065310001, - -0.008780146017670631, - 0.012482617981731892, - 0.013646251522004604, - -0.014095837250351906, - 0.018499134108424187, - -0.029699109494686127, - 0.024436309933662415, - 0.011338818818330765, - 0.0041388338431715965, - -0.01970243640244007, - -0.02099830098450184, - -0.025071019306778908, - 0.005596681963652372, - 0.01828756369650364, - -0.0075173391960561275, - 0.005087592173367739, - -0.013090880587697029, - -0.02954043261706829, - -0.01584128849208355, - 0.012799972668290138, - -0.015761949121952057, - -0.00900493934750557, - -0.006191722117364407, - 0.020601607859134674, - -0.007993371225893497, - 0.012092535383999348, - -0.008271056227385998, - 0.0008326428360305727, - -0.0029851174913346767, - -0.027530519291758537, - -0.04448254778981209, - 0.00041384209180250764, - -0.007411553990095854, - 0.024237964302301407, - 0.014042944647371769, - -0.027186717838048935, - -0.03162968158721924, - -0.01379170548170805, - -0.03985445946455002, - -0.03467099741101265, - -0.0037388347554951906, - -0.013871043920516968, - 0.0016586740966886282, - 0.016766905784606934, - -0.007874363102018833, - 0.03739495947957039, - -0.0038545371498912573, - 0.003937181551009417, - -0.04374205321073532, - -0.016885913908481598, - 0.001917351270094514, - -0.015114016830921173, - 0.04175858572125435, - 0.0004938005586154759, - -0.023709040135145187, - -0.019517313688993454, - 0.007391719613224268, - -0.00044008169788867235, - -0.0033917282707989216, - 0.011828073300421238, - -0.01204625517129898, - 0.0034644552506506443, - 0.0007508248090744019, - 0.002183466451242566, - -0.004866105038672686, - 0.022280942648649216, - 0.003059497568756342, - -0.03004291094839573, - -0.009514029137790203, - 0.01885615661740303, - 0.006783456541597843, - -0.035411491990089417, - -0.015894180163741112, - 0.003152059391140938, - -0.008515683934092522, - 0.010942124761641026, - 0.010915678925812244, - -0.029857786372303963, - -0.006168581545352936, - -0.011008240282535553, - 0.028085889294743538, - 0.003264455823227763, - -0.006915687583386898, - 0.0014925587456673384, - 0.01543137151747942, - -0.010148738510906696, - -0.0220958199352026, - 0.006697506178170443, - -0.014995008707046509, - -0.006575192324817181, - 0.018419794738292694, - -0.00792725570499897, - 0.020905740559101105, - -0.03186769783496857, - 0.005467756651341915, - -0.012733856216073036, - 0.015695834532380104, - -0.008905765600502491, - -0.00221652421168983, - -0.01699169911444187, - 0.016171865165233612, - 0.03469744697213173, - -0.016806574538350105, - 0.0064363498240709305, - 0.0113255949690938, - -0.007570231333374977, - -0.010413200594484806, - -0.018261117860674858, - -0.01544459443539381, - -0.02948753908276558, - -0.008264444768428802, - -0.0014586745528504252, - -0.00437023863196373, - 0.015563602559268475, - 0.005229740869253874, - -0.015206578187644482, - -0.033190011978149414, - 0.02263796702027321, - 0.18184423446655273, - -0.011669396422803402, - -0.006112383212894201, - 0.027953658252954483, - 0.00656196940690279, - -0.015233024954795837, - 0.03229083865880966, - 0.008985104039311409, - 0.0026809859555214643, - 0.01336856558918953, - -0.0019437974551692605, - -0.006595027167350054, - -0.0014991703210398555, - -0.0015644594095647335, - 0.010287581011652946, - -0.014360299333930016, - -0.03628421947360039, - 0.0047173453494906425, - 0.002163631608709693, - 0.014598315581679344, - 0.0023636312689632177, - -0.04009247571229935, - -0.00504792295396328, - -0.012674353085458279, - 0.029117291793227196, - 0.008793368935585022, - -0.020641276612877846, - 0.012634683400392532, - 0.01613219641149044, - -0.0002801646769512445, - -0.0011214851401746273, - 8.011345926206559e-05, - 0.00805287528783083, - -0.016568558290600777, - -0.0053421370685100555, - 0.0038942063692957163, - 0.03316356614232063, - -0.005404946859925985, - 0.01717682182788849, - 0.01202641986310482, - -0.010327250696718693, - -0.011233033612370491, - -7.205562724266201e-05, - -0.026142092421650887, - -0.010029730387032032, - 0.029910678043961525, - 0.009309071116149426, - 0.008297502994537354, - -0.009520640596747398, - -0.014862777665257454, - -0.02872059866786003, - -0.002199995331466198, - 0.011365264654159546, - 0.03493546321988106, - -0.015114016830921173, - 0.012872699648141861, - 0.01859169453382492, - -0.032343730330467224, - 0.014571868814527988, - 0.023669369518756866, - -0.033454474061727524, - 0.04937509819865227, - -0.00463470071554184, - 0.019477643072605133, - -0.01446608453989029, - -0.0028975142631679773, - -0.041652802377939224, - 0.021712349727749825, - 0.009599979035556316, - -0.016846245154738426, - -0.019847890362143517, - -0.023629700765013695, - -0.01581484079360962, - 0.034300751984119415, - -0.012892534025013447, - -0.023616477847099304, - 0.005242963787168264, - 0.003090902464464307, - 0.02869415283203125, - 0.01746773160994053, - -0.005490897223353386, - 0.005540483631193638, - -0.013037987984716892, - -0.02321978472173214, - -0.011530553922057152, - -0.038109008222818375, - 0.016462774947285652, - 0.006347093731164932, - -0.0034181743394583464, - -0.02102474868297577, - -0.013937159441411495, - 0.02460821159183979, - 0.0051504019647836685, - -0.007292546331882477, - 0.018234672024846077, - 0.008528906852006912, - 0.00518676545470953, - 0.026036307215690613, - -0.011656173504889011, - 0.012251213192939758, - -0.014122283086180687, - 0.06230730190873146, - 0.03086274303495884, - -0.011517330072820187, - -0.014598315581679344, - 0.005514037795364857, - -0.011127248406410217, - 0.022188382223248482, - 0.0022363588213920593, - -0.009652871638536453, - 0.003659496083855629, - -0.02052227035164833, - 0.02263796702027321, - 0.0007826429209671915, - 0.0022033010609447956, - -0.0018611529376357794, - 0.007570231333374977, - -0.02537515200674534, - -0.0014933851780369878, - -0.011682619340717793, - -0.025309035554528236, - 0.007457835134118795, - 0.015656163915991783, - 0.025520605966448784, - -0.01053220871835947, - -0.023457800969481468, - -0.04070073738694191, - 0.004568585194647312, - -0.016727237030863762, - -0.006115689408034086, - 0.01745450682938099, - -0.023285899311304092, - 0.002476027701050043, - 0.010836340487003326, - 0.012945426627993584, - 0.008885931223630905, - -0.010049564763903618, - -0.026684239506721497, - -0.01516690943390131, - 0.007999982684850693, - 0.019742105156183243, - -0.012601625174283981, - -0.010723943822085857, - -0.01187435444444418, - 0.017811531201004982, - 0.005834698211401701, - 0.013071046210825443, - 0.0016297484980896115, - -0.020112352445721626, - -0.035385046154260635, - -0.011953692883253098, - -0.007722297217696905, - -0.007266100030392408, - -0.0015289223520085216, - 0.04503791779279709, - -0.019993344321846962, - -0.02573217637836933, - -0.043028004467487335, - -0.005851226858794689, - 0.026419777423143387, - -0.01831400953233242, - -0.0033884223084896803, - 0.005021476652473211, - -0.028085889294743538, - 0.0175074003636837, - 0.009837995283305645, - -0.16724592447280884, - 0.0006628084811381996, - 0.011695842258632183, - -0.038082562386989594, - 0.0229949913918972, - 0.006271060556173325, - 0.023008214309811592, - -0.019239626824855804, - 0.00045289157424122095, - 0.0021123921032994986, - 0.03361314907670021, - 0.03221150115132332, - -0.02624787762761116, - -0.013487573713064194, - 0.0012429725611582398, - 0.030545387417078018, - -0.017414838075637817, - 0.042472634464502335, - 0.028747044503688812, - 0.01258840225636959, - -0.015272693708539009, - -0.03419496864080429, - 0.015973519533872604, - 0.0010785100748762488, - -0.0024429699406027794, - -0.005183459725230932, - -0.01668756641447544, - 0.010664439760148525, - -0.0015677651390433311, - -0.013910713605582714, - -0.010333862155675888, - 0.01720326766371727, - 0.027821427211165428, - -0.023325569927692413, - 0.004532221704721451, - -0.01379170548170805, - 0.012251213192939758, - -0.012112370692193508, - -0.013765259645879269, - 0.013395012356340885, - 0.029328862205147743, - -0.0009157005115412176, - -0.0059702349826693535, - -7.392804036499001e-06, - -0.03147100657224655, - 0.015933848917484283, - 0.024515649303793907, - 0.005090897902846336, - -0.01040658913552761, - -0.016740459948778152, - 0.016555335372686386, - -0.024647880345582962, - -0.013355342671275139, - 0.015365255996584892, - 0.015775172039866447, - 0.029037954285740852, - 0.00998344924300909, - 0.015206578187644482, - -0.005094203632324934, - 0.016264427453279495, - -0.009626425802707672, - -0.004753708839416504, - 0.007312380708754063, - 0.0014322282513603568, - -0.0014123936416581273, - -0.03393050655722618, - -0.00490908045321703, - 0.010115680284798145, - -0.008985104039311409, - -0.002700820565223694, - -0.018922273069620132, - -0.01106113288551569, - 0.013884267769753933, - -0.008297502994537354, - -0.005309079308062792, - 0.001169418916106224, - 0.0031933814752846956, - -0.00175702094566077, - 0.016859468072652817, - 0.004816518630832434, - -0.01884293369948864, - 0.04540816694498062, - -0.03133877366781235, - -0.023854494094848633, - 0.007616512477397919, - 0.015312363393604755, - 0.005143790505826473, - 0.015761949121952057, - 0.028614813461899757, - 0.001971896504983306, - 0.013633028604090214, - -0.027371840551495552, - -0.017071036621928215, - -0.030201587826013565, - 0.003366934834048152, - -0.0021983422338962555, - 0.0031338774133473635, - -0.02020491473376751, - -0.007279322948306799, - -0.008799981325864792, - 0.0226511899381876, - 0.007933867163956165, - -0.04019825905561447, - -0.004826435819268227, - 0.01884293369948864, - 0.005785111337900162, - -0.0075570084154605865, - 0.006548746023327112, - 0.038399916142225266, - -0.01541814859956503, - -0.01720326766371727, - -0.004677675664424896, - 0.005718995817005634, - -0.009639648720622063, - -0.006271060556173325, - -0.002414870774373412, - 0.00803303997963667, - -0.032687533646821976, - -0.0007830561371520162, - -0.012991707772016525, - 0.026975147426128387, - 0.006548746023327112, - -0.032687533646821976, - 0.013335508294403553, - 0.0007326430641114712, - -0.0008194196852855384, - -0.09779813140630722, - -0.0007107422570697963, - 0.008251221850514412, - 0.02599663846194744, - 0.013441293500363827, - -0.001607434474863112, - -0.0023371849674731493, - 0.017877647653222084, - 0.006961968261748552, - 0.014175175689160824, - -0.0562775656580925, - -0.014717323705554008, - -0.02045615389943123, - -0.0040198261849582195, - 0.015206578187644482, - -0.0017603267915546894, - -0.020839624106884003, - -0.014942116104066372, - -0.011107414029538631, - 0.028350351378321648, - 0.020059460774064064, - 0.00037892480031587183, - -0.007623123936355114, - -0.032951995730400085, - 0.0015437982510775328, - -0.017137153074145317, - -0.020337145775556564, - 0.004284288268536329, - 0.037580084055662155, - 0.002224788535386324, - 0.008608246222138405, - -0.025758622214198112, - 0.040066029876470566, - -0.0309156347066164, - -0.0014975174563005567, - -0.004690899048000574, - -0.019583428278565407, - -0.028218120336532593, - 0.023457800969481468, - -0.024952011182904243, - -0.010737166740000248, - -0.010042953304946423, - 0.02924952283501625, - -0.03136521950364113, - 0.005603293422609568, - -0.017560292035341263, - -0.016304096207022667, - -0.004819824360311031, - -0.008747088722884655, - -0.032951995730400085, - -0.03313711658120155, - -0.0250842422246933, - -0.0013942118966951966, - 0.026882587000727654, - 0.021090863272547722, - 0.008482626639306545, - -0.0021256152540445328, - -0.004125610925257206, - -0.014928893186151981, - 0.00518676545470953, - -0.03607264906167984, - 0.017414838075637817, - -0.027768535539507866, - 0.01913384348154068, - 0.012343774549663067, - 0.006509076803922653, - -0.02025780640542507, - -0.011834684759378433, - -0.005877673160284758, - -0.018922273069620132, - -0.03009580262005329, - 0.014664431102573872, - -0.002715696580708027, - -0.0009999978356063366, - -0.03147100657224655, - -0.007438000291585922, - -0.036786697804927826, - -0.010426423512399197, - 0.02318011410534382, - -0.01217187475413084, - -0.020337145775556564, - -0.033771827816963196, - 0.03720983490347862, - -0.009342128410935402, - 0.029011506587266922, - 0.01804954744875431, - 0.003166935173794627, - -0.02489911951124668, - 0.030994974076747894, - -0.00409585889428854, - 0.008786757476627827, - 8.119817357510328e-05, - 0.009514029137790203, - -0.02052227035164833, - -0.009533863514661789, - 0.005520649254322052, - -0.0018760289531201124, - -0.01067105121910572, - 0.004102470353245735, - -0.0035702402237802744, - -0.04569907486438751, - 0.0025289200711995363, - -0.05897507816553116, - 0.022571852430701256, - 0.004436354152858257, - -0.012932203710079193, - -0.030677620321512222, - -0.0017074343049898744, - 0.009328905493021011, - 0.011550388298928738, - -0.001053716754540801, - 0.005649574566632509, - 0.005355360452085733, - 0.02380160056054592, - 0.009679317474365234, - -9.9948127171956e-05, - -0.004152057226747274, - -0.029011506587266922, - 0.017269384115934372, - 0.020033014938235283, - 0.02081317827105522, - 0.020575162023305893, - -0.017573514953255653, - 0.02679002471268177, - 0.003319001058116555, - -0.00409585889428854, - -0.031285881996154785, - -0.0069421338848769665, - -0.006876018363982439, - 0.0034082571510225534, - -0.014373522251844406, - -0.010591712780296803, - 0.0032330509275197983, - -0.0016677649691700935, - -0.01256195642054081, - -0.00012758237426169217, - -0.006766927428543568, - -0.009262789972126484, - 0.009474359452724457, - 0.02951398491859436, - 0.02373548597097397, - 0.058551937341690063, - -0.028879275545477867, - -0.004833047278225422, - 0.028271013870835304, - -0.03498835489153862, - 0.015603272244334221, - 0.018803264945745468, - 0.003590074833482504, - -0.0030925553292036057, - 0.019292520359158516, - -0.01606607995927334, - 0.04009247571229935, - 0.013434682041406631, - 0.012833029963076115, - -0.015656163915991783, - 0.022228050976991653, - -0.026961924508213997, - 0.005718995817005634, - 0.021514002233743668, - 0.009401632472872734, - -0.025309035554528236, - 0.02919663116335869, - -0.004082635976374149, - 0.026419777423143387, - 0.006601638626307249, - 0.023166891187429428, - -0.005067757796496153, - -0.030254479497671127, - 0.002431399654597044, - -0.0019586733542382717, - -0.021725572645664215, - -0.012780137360095978, - -0.00013739638961851597, - 0.00794047862291336, - 0.041943710297346115, - -0.017414838075637817, - 0.014082614332437515, - 0.004995030350983143, - 0.023880939930677414, - 0.008839650079607964, - 0.02731894887983799, - 0.022624744102358818, - 0.02046937681734562, - -0.016793351620435715, - 0.008449568413197994, - 0.010314026847481728, - 0.011021464131772518, - -0.018485911190509796, - 0.002180160488933325, - -0.005034700036048889, - 0.0009057831484824419, - -0.009771879762411118, - 0.016489220783114433, - 0.010975182987749577, - -0.0025024740025401115, - 0.011980139650404453, - 0.011014851741492748, - 0.0034016454592347145, - -0.018803264945745468, - 0.018803264945745468, - 0.030704066157341003, - -0.00403304910287261, - 0.023285899311304092, - 0.009011550806462765, - -0.0270280409604311, - -0.009745432995259762, - 0.008522295393049717, - 0.006228085607290268, - -0.046571798622608185, - -0.0004995857016183436, - 0.009077666327357292, - -0.017057813704013824, - 0.011239645071327686, - -0.00593717722222209, - -0.005401641130447388, - -0.019464420154690742, - 0.02813878282904625, - -0.03340157866477966, - -0.004337180871516466, - -0.020085906609892845, - 0.032661087810993195, - -0.0010966918198391795, - 0.009593367576599121, - 0.005338831339031458, - 0.008515683934092522, - 0.006357010919600725, - 0.007080976385623217, - 0.01889582723379135, - -0.014135506935417652, - 0.010902456007897854, - -0.01543137151747942, - 0.011153695173561573, - 0.010023118928074837, - -0.018366903066635132, - -0.019755329936742783, - -0.0036991655360907316, - -0.027477625757455826, - 0.01159005705267191, - 0.004469411913305521, - 0.021699126809835434, - 0.10467415302991867, - 0.025309035554528236, - 0.000935535179451108, - 0.007424777373671532, - -0.011894188821315765, - 0.020085906609892845, - -0.002195036504417658, - 0.00846940279006958, - -0.0008925600559450686, - -0.055642854422330856, - -0.004118999466300011, - -0.012204932048916817, - 0.008515683934092522, - -0.033454474061727524, - -0.01774541661143303, - 0.012885922566056252, - -0.01326278131455183, - 0.01889582723379135, - -0.01026774663478136, - 0.01913384348154068, - 0.03575529530644417, - -0.022611521184444427, - 0.02131565660238266, - 0.036522235721349716, - -0.03472389280796051, - -0.022029703482985497, - 0.005421475972980261, - -0.020667724311351776, - -0.010604935698211193, - -0.0006718993536196649, - -0.01106113288551569, - 0.004310734570026398, - -0.06251887232065201, - -0.019279297441244125, - 0.007285934407263994, - -0.012482617981731892, - -0.002852886449545622, - -0.0033173481933772564, - 0.0063636223785579205, - -0.010135515592992306, - -0.005520649254322052, - 0.03533215448260307, - -0.02106441743671894, - -0.017309052869677544, - 0.00417189160361886, - -0.0034247860312461853, - -0.007781801279634237, - -0.008013205602765083, - -0.025811513885855675 - ], - "sparse": "SparseEmbedding(values=array([1.43600204, 1.43600204, 1.73773527, 1.86861314, 1.73773527,\n 1.73773527, 1.94173418, 1.73773527, 1.43600204, 1.43600204,\n 1.43600204, 1.43600204, 1.43600204, 1.73773527, 1.43600204,\n 1.43600204, 1.43600204, 1.73773527, 1.73773527, 1.43600204,\n 1.43600204, 1.43600204, 1.43600204, 1.43600204, 1.43600204,\n 1.43600204, 1.43600204, 1.43600204, 1.43600204, 1.43600204,\n 1.43600204, 1.43600204, 1.43600204, 1.43600204, 1.43600204,\n 1.43600204, 1.43600204, 1.43600204, 1.43600204, 1.43600204,\n 1.43600204, 1.43600204, 1.43600204, 1.43600204, 1.43600204,\n 1.43600204, 1.43600204, 1.43600204, 1.43600204, 1.43600204,\n 1.43600204, 1.43600204, 1.43600204, 1.43600204]), indices=array([ 591160358, 1641614904, 1394226660, 264741300, 1810453357,\n 19522071, 670727360, 52870164, 1841900287, 1265401351,\n 627407068, 593539916, 134490412, 1351999665, 1587158528,\n 47951928, 1035540178, 108945121, 2103309648, 651773314,\n 1187567306, 502919461, 834769235, 1109731834, 482341621,\n 417110197, 602572328, 317520145, 408270109, 424222366,\n 118156056, 1114505193, 885207656, 1831819087, 1965198687,\n 613148321, 221770077, 1356719865, 1182311339, 1775728044,\n 381716141, 714226035, 585726195, 192365738, 1723223406,\n 1105577002, 338063690, 940461617, 1638510030, 547269399,\n 353228214, 1116117978, 880015190, 141951035]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 13, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 72 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000014.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000014.json deleted file mode 100644 index 38a4035fd728fb828dd8f50ea6173ec4ec3d6c71..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000014.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000014", - "content": "IV Abk\u00fcrzungsverzeichnis", - "embedding": { - "dense": [ - -0.018819663673639297, - 0.003224325831979513, - 0.01276414468884468, - -0.03743641823530197, - -0.025781923905014992, - 0.013556752353906631, - -0.003105434589087963, - 0.0015582655323669314, - 0.010589230805635452, - -0.008446021005511284, - 0.02498297579586506, - -0.0044259182177484035, - -0.0010795309208333492, - 0.01356943417340517, - -0.012263217009603977, - 0.005031469743698835, - 0.025185883045196533, - 0.009479581378400326, - 0.029396213591098785, - -0.003259200369939208, - 0.007196872495114803, - 0.010418027639389038, - -0.001621674164198339, - 0.006993965245783329, - 0.005247059278190136, - 0.003810855094343424, - -0.0070700556971132755, - -0.02855921909213066, - 0.002691693836823106, - -0.0035572207998484373, - 0.006014302838593721, - -0.0070003061555325985, - -0.0006182335782796144, - -0.022877812385559082, - -0.0077485269866883755, - 0.0003394339873921126, - -0.019314249977469444, - -0.025794606655836105, - 0.01064629852771759, - -0.0014710788382217288, - 0.01126136165112257, - 0.016879361122846603, - -0.005893826484680176, - -0.017982671037316322, - -0.0018864049343392253, - -0.011660835705697536, - 0.009244969114661217, - 0.0037252535112202168, - -0.009581035003066063, - 0.02466593310236931, - 0.004660530015826225, - 0.005529227200895548, - -0.010132689028978348, - 0.011717903427779675, - -0.0010684344451874495, - 0.01176863070577383, - -0.007659755181521177, - 0.019694700837135315, - -0.00821140967309475, - -0.0011215390404686332, - -0.037258874624967575, - -0.016536954790353775, - -0.0284577663987875, - 0.01460933405905962, - -0.030436113476753235, - -0.00379500281997025, - -0.003994740080088377, - 0.0029088680166751146, - 0.0021463800221681595, - 0.012136399745941162, - 0.026555508375167847, - 0.03720814734697342, - 0.006331345532089472, - 0.005900167394429445, - 0.030309295281767845, - -0.010475095361471176, - -0.008319204673171043, - 0.004574928432703018, - 0.000637652410659939, - 0.006061859428882599, - 0.015598507598042488, - -0.003214814467355609, - -0.019098661839962006, - 0.01835043914616108, - 0.03677697107195854, - 0.0030436113011091948, - 0.009701510891318321, - 0.01895916275680065, - -0.021267233416438103, - -0.022979265078902245, - 0.012472465634346008, - 0.02906648814678192, - -0.007095418870449066, - 0.02934548631310463, - 0.01684131659567356, - -0.00022212814656086266, - -0.0012245780089870095, - 0.032236915081739426, - 0.0078499810770154, - -0.03332754224538803, - -0.021330643445253372, - 0.015788733959197998, - 0.00289460108615458, - -0.003538198070600629, - -0.027392501011490822, - 0.0009503359324298799, - -0.0013878550380468369, - 0.010741411708295345, - 0.016765225678682327, - -0.00453371275216341, - -0.015801414847373962, - 0.021178461611270905, - -0.009625420905649662, - -0.0096824886277318, - 0.03903431445360184, - -0.018236303701996803, - 0.0163340475410223, - -0.021520867943763733, - -0.021191144362092018, - -0.006166483275592327, - 0.013455298729240894, - 0.01610577665269375, - 0.019859563559293747, - -0.004372020717710257, - 0.013290436007082462, - 0.014190837740898132, - -0.002472934313118458, - -0.025566335767507553, - -0.016448182985186577, - -0.01183203887194395, - 0.03857777267694473, - -0.004026444163173437, - 0.007196872495114803, - -0.01157840434461832, - -0.02110237255692482, - 0.019948335364460945, - -0.013746977783739567, - 0.0025585356634110212, - -0.015357555821537971, - -0.013011438772082329, - 0.026961322873830795, - 0.022471996024250984, - -0.007051032967865467, - -0.029370849952101707, - 0.013163618743419647, - 0.01116624940186739, - 0.0019244500435888767, - -0.000890097813680768, - 0.009447876363992691, - -0.006397924851626158, - -0.024095255881547928, - -0.025756560266017914, - 0.02779831737279892, - -0.01094431895762682, - -0.003430403536185622, - -0.006454992573708296, - -0.002918379381299019, - -0.009479581378400326, - -0.007710481993854046, - 0.007570983376353979, - -0.014203519560396671, - 0.0007735845283605158, - 0.016055049374699593, - -0.01671449840068817, - 0.027849042788147926, - 0.016346728429198265, - -0.01591555029153824, - -0.021115053445100784, - 0.009023039601743221, - -0.006765694357454777, - -0.010525822639465332, - 0.01737394742667675, - -0.021026281639933586, - 0.007526597008109093, - -0.018046079203486443, - 0.004714427050203085, - 0.017386630177497864, - 0.007444166112691164, - -0.022510042414069176, - 0.00816702377051115, - -0.041748203337192535, - 0.009086447767913342, - 0.01585214212536812, - 0.0028755785897374153, - -0.02830558456480503, - 0.020823374390602112, - 0.013544070534408092, - 0.0052565704099833965, - 0.014761514961719513, - -0.005364364944398403, - 0.005808224901556969, - 0.006740330718457699, - -0.003620629198849201, - -0.0018531153909862041, - -0.6671596169471741, - -0.009796624071896076, - 0.007025669328868389, - -0.006474014837294817, - 0.034418173134326935, - 0.04146920517086983, - -0.007767549715936184, - 0.0017389800632372499, - -0.00023659323051106185, - 0.03819732367992401, - -0.009283014573156834, - 0.012605623342096806, - -0.00998050905764103, - -0.01115356758236885, - 0.012662691064178944, - -0.01358211599290371, - -0.006676922552287579, - -0.021596958860754967, - 0.020354149863123894, - -0.006252084858715534, - 0.012675372883677483, - 0.007653414271771908, - 0.015877505764365196, - 0.008458702825009823, - 0.01790658012032509, - -0.002964350627735257, - 0.01781780831515789, - -0.034063082188367844, - -0.006435969844460487, - -0.007666096091270447, - -0.01951715722680092, - -0.007685118820518255, - 0.0013521877117455006, - -0.0006657899939455092, - 0.05544445291161537, - 0.038425594568252563, - -0.015674598515033722, - 0.011724244803190231, - 0.011717903427779675, - 0.03477326035499573, - -0.023296307772397995, - -0.014254245907068253, - -0.003072145162150264, - 0.00016714102821424603, - -0.016042368486523628, - 0.019276205450296402, - 0.020430240780115128, - 0.015978960320353508, - 0.01220614928752184, - -0.020798010751605034, - 0.019276205450296402, - -0.0127134183421731, - -0.010811161249876022, - 0.008002161048352718, - 0.02084873802959919, - 0.018248986452817917, - -9.649991989135742e-05, - -0.00821140967309475, - 0.011749607510864735, - 0.014343018643558025, - -0.007621710188686848, - 0.019631292670965195, - -0.0031593318562954664, - -0.01566191576421261, - -0.016879361122846603, - 0.00908010732382536, - -0.015560463070869446, - -0.0026060922536998987, - 0.02934548631310463, - -0.006512059830129147, - 0.004866607487201691, - 0.010811161249876022, - -0.00572579400613904, - -0.0009471654775552452, - 0.013518706895411015, - 0.01566191576421261, - 0.009644443169236183, - -0.004007421433925629, - -0.00608088169246912, - 0.005069515202194452, - -0.012973393313586712, - 0.003620629198849201, - -0.012865598313510418, - 0.00274400576017797, - 0.018997207283973694, - 0.0014124258887022734, - -0.03170428425073624, - 0.0023572135251015425, - -0.0008805865072645247, - 0.00428007822483778, - 0.028254859149456024, - -0.005687748547643423, - -0.02508443035185337, - 0.007399780210107565, - -0.01646086387336254, - 0.02833094820380211, - -0.016042368486523628, - 0.02186327427625656, - 0.015002467669546604, - -0.022814402356743813, - 0.014723469503223896, - 0.007634391542524099, - 0.0014377892948687077, - 0.003121286863461137, - -0.009092789143323898, - 0.00043950063991360366, - -0.031602829694747925, - 0.008059228770434856, - 0.02934548631310463, - -0.00878208689391613, - -0.014013294130563736, - -0.014013294130563736, - 0.0033130976371467113, - -0.0001377154840156436, - -0.0015574729768559337, - -0.02959912084043026, - 0.010798479430377483, - 0.0038330480456352234, - -0.0052977860905230045, - -0.015319510363042355, - 0.02205350063741207, - -0.004067659843713045, - 0.017805125564336777, - 0.014343018643558025, - 0.009498603641986847, - -0.006039666011929512, - -0.010754093527793884, - 0.0004288004420232028, - -0.016346728429198265, - -0.0070003061555325985, - 0.006248914636671543, - -0.006600832100957632, - 0.03322609141469002, - 0.009485921822488308, - 0.011445246636867523, - -0.0011381838703528047, - 0.04745497182011604, - -0.005072685424238443, - -0.02665696293115616, - -0.004676382057368755, - -0.0023175831884145737, - -0.014989785850048065, - 0.009466899558901787, - -0.03360654041171074, - -0.0039471834897994995, - -0.03233836963772774, - -0.004904652945697308, - 0.02612433023750782, - -0.011457928456366062, - 0.02663159929215908, - 0.0027598580345511436, - -0.0035857546608895063, - 0.008680633269250393, - 0.02021465264260769, - 0.03254127874970436, - -0.033505089581012726, - -0.03264273330569267, - -0.021000918000936508, - -0.01949179358780384, - -0.02211690880358219, - 0.017767081037163734, - 0.010544844903051853, - -0.009853691793978214, - -0.009866373613476753, - -0.009073765948414803, - -0.022154953330755234, - 0.025629743933677673, - 0.023993803188204765, - -0.03218619152903557, - -0.03213546425104141, - 0.006721308454871178, - -0.00457175774499774, - -0.007526597008109093, - 0.0016676454106345773, - -0.008788427338004112, - -0.0018927458440884948, - -0.003810855094343424, - -0.01511660311371088, - -0.002465008059516549, - -0.0008195557747967541, - 0.013125574216246605, - 0.0004906238173134625, - 0.011857402510941029, - 0.017995351925492287, - 0.026961322873830795, - 0.0035825842060148716, - 0.005329490173608065, - 0.009409831836819649, - -0.013011438772082329, - -0.018401166424155235, - 0.014837604947388172, - 0.0024951272644102573, - -0.015649234876036644, - -0.0003618251357693225, - -0.01096334122121334, - 0.011318429373204708, - -0.000676886469591409, - 0.007888025604188442, - 0.0018436041427776217, - 0.009219606406986713, - 0.04928113892674446, - -0.00578920217230916, - 0.022218363359570503, - -0.008883540518581867, - 0.013797705061733723, - -0.01803339645266533, - 0.00756464246660471, - -0.01589018665254116, - 0.0401756688952446, - 0.013011438772082329, - -0.0018451893702149391, - 0.014317655004560947, - -0.011851061135530472, - 0.0021907661575824022, - 0.009625420905649662, - 0.02031610533595085, - -0.007621710188686848, - -0.012282240204513073, - 0.009631761349737644, - -0.0009432024671696126, - 0.01460933405905962, - 0.011178931221365929, - 0.020392196252942085, - 0.0028169257566332817, - -0.0005044944118708372, - -0.008325545117259026, - 0.021596958860754967, - -0.00454005366191268, - -0.00666424073278904, - 0.0011183685855939984, - -0.022421270608901978, - -0.02751931920647621, - 0.005570442881435156, - 0.0031244573183357716, - 0.007824617438018322, - 0.017830489203333855, - 0.001629600184969604, - -0.036726243793964386, - 0.026200421154499054, - 0.006410606205463409, - 0.0003103056806139648, - 0.0108365248888731, - 0.030791200697422028, - 0.015750689432024956, - 0.025477563962340355, - 0.013797705061733723, - 0.0018657970940694213, - 0.0313999243080616, - -0.02226908877491951, - 0.005928701255470514, - -0.019694700837135315, - 0.0033923585433512926, - -0.008477726019918919, - 0.0024158665910363197, - 0.009504944086074829, - 0.006911533884704113, - 0.023841621354222298, - 0.022091545164585114, - 0.022636858746409416, - 0.024805432185530663, - 0.006575468461960554, - -0.01097602304071188, - 0.007577323820441961, - 0.006892511621117592, - 0.0052438885904848576, - 0.0006848125485703349, - -0.016308683902025223, - -0.009340082295238972, - -0.009492263197898865, - -0.010735070332884789, - -0.009619079530239105, - -0.01895916275680065, - -0.0011548285838216543, - 0.04887532442808151, - 0.011971537955105305, - -0.016790589317679405, - 0.007158827502280474, - 0.009828328154981136, - 0.012821212410926819, - 0.018806980922818184, - -0.00039709615521132946, - -0.023575305938720703, - 0.003481130348518491, - 0.015585826709866524, - -0.0048031993210315704, - 0.0006027776980772614, - -0.01591555029153824, - 0.011749607510864735, - -0.029776664450764656, - 0.009847350418567657, - -0.020113198086619377, - 0.012142741121351719, - 0.006258425768464804, - 0.0052565704099833965, - 0.009638102725148201, - -0.0297259371727705, - 0.027950497344136238, - -0.025858014822006226, - -0.017209086567163467, - 0.01667645387351513, - 0.004689063876867294, - -0.0223959069699049, - -0.0033416314981877804, - -0.0180968064814806, - 0.038400229066610336, - 0.009466899558901787, - -0.009764919988811016, - -0.009872714057564735, - 0.013924521394073963, - 0.01743735745549202, - -0.02540147304534912, - -0.012516851536929607, - -0.004444940481334925, - -0.022915856912732124, - -0.005123412236571312, - 0.006911533884704113, - -0.021000918000936508, - -0.0022224702406674623, - 0.03013175167143345, - -0.011914470233023167, - 0.008686973713338375, - -0.01870552822947502, - -0.011001386679708958, - 0.0019149387953802943, - -0.0217618215829134, - 0.0193649772554636, - 0.003636481473222375, - 0.027899770066142082, - -0.009904418140649796, - -0.015078557655215263, - -0.008312863297760487, - -0.036624789237976074, - 0.0029056977946311235, - 0.006512059830129147, - 0.0014274853747338057, - -0.013556752353906631, - 0.019441068172454834, - -0.007792913354933262, - 0.018591392785310745, - -0.0029215498361736536, - 0.007932412438094616, - -0.016955452039837837, - 0.029294759035110474, - -0.020037107169628143, - -0.008255795575678349, - 0.013823067769408226, - 0.013442616909742355, - 0.02665696293115616, - -0.0027899770066142082, - -0.03436744585633278, - -0.006721308454871178, - 0.013227027840912342, - 0.001884819706901908, - -0.0446142703294754, - -0.009409831836819649, - 0.01923815906047821, - 0.008807450532913208, - 0.0374617837369442, - -0.008991335518658161, - -0.009796624071896076, - -0.0047239381819963455, - 0.021520867943763733, - 0.022687586024403572, - -0.010500459000468254, - 0.029446939006447792, - 0.02691059745848179, - -0.009270332753658295, - -0.0065247416496276855, - 0.017576854676008224, - 0.00301349232904613, - -0.010608254000544548, - -0.004631996154785156, - 0.013873795047402382, - -0.018426530063152313, - 0.00810361560434103, - 0.005018788389861584, - -0.02341044321656227, - -0.010322915390133858, - -0.011375497095286846, - -0.0029944695997983217, - -0.025705834850668907, - 0.002496712375432253, - -0.006150631234049797, - -0.019910290837287903, - -0.004489326849579811, - -0.018845027312636375, - 0.0024792749900370836, - -0.014736151322722435, - -0.008224091492593288, - -0.012650009244680405, - -0.02691059745848179, - 0.017361266538500786, - -0.01061459444463253, - -0.007856321521103382, - 0.005319979041814804, - -0.03317536413669586, - 0.0016882531344890594, - 0.004486156161874533, - -0.003798173274844885, - 0.022700266912579536, - -0.005922360345721245, - -0.01512928493320942, - -0.0030277592595666647, - 0.015788733959197998, - -0.03190719336271286, - -0.001686667907051742, - -0.01145158801227808, - -0.03576243296265602, - -0.011489632539451122, - 0.009390808641910553, - -0.013341163285076618, - 0.004742960911244154, - 0.0069432384334504604, - 0.007520256098359823, - -0.007412461563944817, - -0.014330336824059486, - 0.016663771122694016, - 0.005484841298311949, - 0.016701817512512207, - -0.0007081944495439529, - 0.017538810148835182, - 0.009168879128992558, - -0.01892111636698246, - -0.013467980548739433, - 0.017272494733333588, - -0.015649234876036644, - 0.0035825842060148716, - -0.00045337126357480884, - 0.00513292383402586, - -0.003665015334263444, - -0.010202438570559025, - 0.013544070534408092, - -0.00917521957308054, - 0.0066198548302054405, - 0.0060999044217169285, - -0.013049483299255371, - 0.003149820724502206, - 0.0011017238721251488, - -0.0007070055580697954, - 0.029269395396113396, - 0.010139030404388905, - -0.009898077696561813, - 0.01686668023467064, - -0.019415704533457756, - -0.02410793863236904, - -0.012916325591504574, - 0.005443625617772341, - 0.024399617686867714, - -0.006714967545121908, - 0.03850168362259865, - 0.005050492472946644, - 0.004270567093044519, - -0.016942769289016724, - -0.01712031289935112, - 0.009054743684828281, - 0.013201664201915264, - 0.00028831083909608424, - 0.024602524936199188, - -0.03581316024065018, - 0.007976798340678215, - -0.004486156161874533, - 0.024716660380363464, - -0.00638207234442234, - -0.014406426809728146, - 0.0051456051878631115, - -0.017450038343667984, - -0.008534793742001057, - 0.02129259705543518, - -0.02341044321656227, - -0.022700266912579536, - -0.008249455131590366, - 0.02593410573899746, - -0.0021226019598543644, - -0.003401869675144553, - -0.0043561686761677265, - -0.015814097598195076, - -0.017538810148835182, - -0.006201358046382666, - -0.038171958178281784, - -0.02286512963473797, - -0.0284577663987875, - 0.006803739350289106, - 0.019529839977622032, - 0.02729104831814766, - 0.005218525417149067, - 0.004010592121630907, - -0.004923675209283829, - 0.01857871003448963, - 0.017132995650172234, - 0.004131068475544453, - 0.0010089888237416744, - -0.016181867569684982, - -0.03733496740460396, - 0.004955379758030176, - 0.01680327020585537, - -0.012282240204513073, - 0.011762289330363274, - -0.03101947158575058, - 0.024120619520545006, - -0.0020005402620881796, - -0.023169491440057755, - -0.010861887596547604, - 0.017361266538500786, - -0.026606235653162003, - -0.00350966420955956, - 0.004188136197626591, - 0.024209391325712204, - 0.002465008059516549, - -0.028280222788453102, - -0.02205350063741207, - 0.010538504458963871, - -0.006816421169787645, - 0.00025779547286219895, - -0.006968601606786251, - 0.019720064476132393, - -0.02559169940650463, - 0.010766775347292423, - 0.016917405650019646, - -0.003222740488126874, - -0.014812242239713669, - 0.02530001848936081, - 0.007361734751611948, - -0.01671449840068817, - 0.019796155393123627, - 0.010113666765391827, - 0.015053194016218185, - 0.008699655532836914, - 0.0004244411247782409, - 0.0036016067024320364, - -0.0066198548302054405, - 0.013404571451246738, - -0.0039345016703009605, - 0.006061859428882599, - -0.0061569721437990665, - -0.02858458273112774, - 0.001780195627361536, - -0.013442616909742355, - -0.027646135538816452, - 0.019124023616313934, - 0.0023984292056411505, - -0.0015091239474713802, - 0.01519269309937954, - -0.03238909691572189, - -0.00810361560434103, - -0.00846504420042038, - -0.022877812385559082, - 0.020836055278778076, - -0.024057211354374886, - 0.02527465485036373, - 0.023194855079054832, - 0.035204436630010605, - -0.018439212813973427, - -0.06817689538002014, - -0.02192668244242668, - 0.003912308719009161, - 0.01646086387336254, - 0.04971231892704964, - 0.003538198070600629, - -0.01870552822947502, - 0.025896059349179268, - 0.012605623342096806, - -0.008255795575678349, - -0.04474108666181564, - 0.03576243296265602, - 0.006803739350289106, - 0.0020861418452113867, - -0.010918955318629742, - 0.005332660861313343, - -0.014140111394226551, - 0.025287337601184845, - 0.002534757601097226, - 0.012345648370683193, - -0.014241565018892288, - -0.004701745230704546, - 0.00113501341547817, - 0.016574999317526817, - -0.021470140665769577, - 0.024805432185530663, - 0.013417253270745277, - -0.02881285361945629, - -0.013455298729240894, - -0.0339362658560276, - -0.026555508375167847, - 0.010576548986136913, - -0.016562318429350853, - 0.029193304479122162, - 0.001983103109523654, - -0.013442616909742355, - 0.017323222011327744, - 0.00047001600614748895, - -0.0044100661762058735, - 0.004739790689200163, - -0.011312088929116726, - 0.0177797619253397, - -0.019859563559293747, - -0.018020715564489365, - 0.003222740488126874, - -0.006137949414551258, - 0.011749607510864735, - 0.006461333017796278, - 0.0033130976371467113, - -0.013227027840912342, - 0.0031973770819604397, - -0.0024253777228295803, - 0.008744041435420513, - 0.013290436007082462, - 0.002441229997202754, - -0.023042673245072365, - -0.018020715564489365, - -0.001566984225064516, - -0.01911134272813797, - -0.00188957538921386, - 0.01816021464765072, - -0.04978840798139572, - -0.009092789143323898, - -0.012092013843357563, - 0.030410749837756157, - -0.005513375159353018, - -0.007279303856194019, - -0.0011048943269997835, - 0.006264766678214073, - 0.010430709458887577, - -0.03322609141469002, - 0.013785023242235184, - 0.023765532299876213, - -0.00288984552025795, - -0.021115053445100784, - 0.005040981341153383, - -0.003443085355684161, - -0.027088141068816185, - 0.035077620297670364, - 0.006791057996451855, - -0.024310845881700516, - 0.0019212797051295638, - -0.01958056539297104, - 0.023080719634890556, - 0.010139030404388905, - -0.013835749588906765, - 0.01923815906047821, - -0.009530307725071907, - 0.005183650646358728, - 0.0010977608617395163, - -0.03774078190326691, - 0.025629743933677673, - -0.014583971351385117, - -0.004112045746296644, - 0.017335902899503708, - -0.02277635782957077, - 0.020924827083945274, - 0.006410606205463409, - 0.003896456677466631, - -0.0030388557352125645, - -0.03822268545627594, - -0.01813485100865364, - 0.013074846938252449, - 0.033149998635053635, - -0.011857402510941029, - -0.017335902899503708, - -0.006829102989286184, - -0.01627063937485218, - -0.015395600348711014, - 0.021711094304919243, - 0.015547781251370907, - 0.006911533884704113, - -0.00031010754173621535, - 0.001559058204293251, - -0.009993190877139568, - 0.018401166424155235, - 0.008636247366666794, - 0.014457154087722301, - 0.009225946851074696, - -0.005040981341153383, - -0.006261595990508795, - 0.01838848553597927, - -0.013924521394073963, - 0.014190837740898132, - 0.03000493533909321, - -0.021140417084097862, - -0.0401756688952446, - 0.0017373948357999325, - -0.03360654041171074, - 0.02021465264260769, - 0.000908327754586935, - -0.00011056868970626965, - -0.011584745720028877, - 0.02046828530728817, - 0.0039345016703009605, - 0.020709238946437836, - -0.0029532541520893574, - 0.01299875695258379, - -0.006740330718457699, - -0.002861311659216881, - 0.022357862442731857, - 0.01332848146557808, - 0.01665109023451805, - -0.0027471762150526047, - -0.013442616909742355, - -0.012364670634269714, - 0.018553348258137703, - 0.0005429358570836484, - 0.003693549195304513, - 0.036117520183324814, - -0.006175994873046875, - -0.013886476866900921, - -0.0033130976371467113, - 0.0009194242302328348, - -0.012142741121351719, - 0.0207219198346138, - 0.018553348258137703, - -0.016917405650019646, - -0.00485709635540843, - -0.009917099960148335, - -0.0012760974932461977, - -0.023042673245072365, - 0.015928233042359352, - -0.009447876363992691, - 0.012168104760348797, - -0.0043561686761677265, - 0.018147531896829605, - -0.012256876565515995, - -0.014190837740898132, - 0.017893897369503975, - 0.016372092068195343, - 0.0019529839046299458, - -0.02097555436193943, - -0.00814800150692463, - -0.024792751297354698, - 0.010601912625133991, - -0.0011128203477710485, - 0.022789040580391884, - -0.038045141845941544, - -0.012231512926518917, - 0.01389915868639946, - 0.0038806044030934572, - 0.024272799491882324, - -0.026555508375167847, - 0.012618305161595345, - -0.006968601606786251, - 0.018046079203486443, - -0.001731053926050663, - -0.016055049374699593, - -0.020836055278778076, - 0.013404571451246738, - -0.0036142885219305754, - -0.006765694357454777, - -0.0007327653001993895, - 0.008344567380845547, - 0.015243420377373695, - -0.013785023242235184, - -0.028026588261127472, - -0.022725630551576614, - 0.0027059607673436403, - -0.005697260145097971, - 0.010424369014799595, - -0.004137408919632435, - 2.241591937490739e-05, - -0.01537023764103651, - -0.027823681011795998, - -0.002526831580325961, - 0.004559075925499201, - 0.1985449194908142, - -0.029193304479122162, - 0.011394520290195942, - 0.04119020700454712, - -0.03370799496769905, - -0.013290436007082462, - 0.023587988689541817, - -0.017576854676008224, - 0.0156999621540308, - 0.011686199344694614, - 0.009504944086074829, - -0.0018055590335279703, - 0.005700430367141962, - 0.0006907571223564446, - 0.021774502471089363, - -0.030283933505415916, - -0.030537566170096397, - -0.015002467669546604, - -0.02627651020884514, - -0.009359104558825493, - 0.020240014418959618, - 0.008636247366666794, - 0.008401635102927685, - -0.004774665459990501, - 0.011134544387459755, - 0.0008972312789410353, - -0.019200114533305168, - 0.023714805021882057, - 0.02625114843249321, - 0.007089077960699797, - -0.01358211599290371, - 0.008636247366666794, - 0.004971231799572706, - -0.004923675209283829, - -0.012688054703176022, - 0.007190531585365534, - 0.018401166424155235, - -0.004175454378128052, - 0.012041287496685982, - 0.03309927135705948, - -0.01364552415907383, - 0.005722623318433762, - -0.03074047528207302, - -0.031476013362407684, - -0.008984994143247604, - 0.02893967181444168, - 0.012548555620014668, - -0.02830558456480503, - -0.007063714787364006, - 0.009771260432898998, - -0.01543364580720663, - 0.002457082038745284, - -0.0008441265672445297, - 0.03911040723323822, - -0.0032972455956041813, - -0.012396375648677349, - 0.006829102989286184, - 0.022941220551729202, - -0.010995046235620975, - 0.009606398642063141, - 0.006816421169787645, - 0.016219912096858025, - -0.03213546425104141, - 0.020480968058109283, - 0.002168572973459959, - 0.029573757201433182, - -0.005684578325599432, - -0.01930156908929348, - 0.005957235116511583, - -0.024184027686715126, - 0.008598201908171177, - -0.009479581378400326, - -0.01718372292816639, - 0.026961322873830795, - -0.022002773359417915, - -0.026859870180487633, - 0.02179986611008644, - 0.03913576900959015, - -0.0034874712582677603, - 0.014114747755229473, - -0.02580728754401207, - 0.0061696539632976055, - -0.010842865332961082, - -0.0156999621540308, - -0.018946480005979538, - -0.014774196781218052, - 0.02385430410504341, - 0.03205937147140503, - -0.017576854676008224, - 0.012979733757674694, - 0.0014457154320552945, - -0.022789040580391884, - -0.02110237255692482, - 0.02173645794391632, - 0.004616143647581339, - 0.024057211354374886, - -0.014355700463056564, - 0.02150818705558777, - 0.0055387383326888084, - -0.011711562983691692, - -0.0073110079392790794, - 0.08075715601444244, - 0.03368263319134712, - -0.02186327427625656, - -0.01847725734114647, - 0.00422618119046092, - -0.010418027639389038, - 0.0013601138489320874, - 0.005139264743775129, - -0.013848431408405304, - -0.014622015878558159, - -0.029802028089761734, - 0.0022478338796645403, - 1.0755926268757321e-05, - 0.012313944287598133, - 0.007120782509446144, - -0.024742024019360542, - -0.00849674828350544, - 0.005548249930143356, - 0.003560391254723072, - -0.0003443877794779837, - -0.031247742474079132, - 0.013290436007082462, - 0.006518400739878416, - 0.007716822903603315, - -0.016701817512512207, - -0.0387299545109272, - 0.014355700463056564, - -0.020392196252942085, - -0.0011595842661336064, - 0.038552410900592804, - -0.011870084330439568, - 0.02050633169710636, - 0.007786572445183992, - -0.015294146724045277, - 0.024475708603858948, - 0.005770179908722639, - -0.015167329460382462, - -0.009739556349813938, - 0.0035001530777662992, - 0.01332848146557808, - -9.42707119975239e-05, - 0.005209013819694519, - -0.01892111636698246, - 0.004321293905377388, - -0.0004866607778239995, - 0.004191306419670582, - -0.002322338754311204, - -0.009054743684828281, - -0.0267837792634964, - -0.021432096138596535, - -0.027975860983133316, - -0.004698575008660555, - -0.015268783085048199, - 0.0408097542822361, - -0.0066198548302054405, - -0.019276205450296402, - -0.024209391325712204, - 0.008224091492593288, - 0.022548086941242218, - 0.006410606205463409, - -0.010741411708295345, - 0.02037951350212097, - -0.010925296694040298, - -0.013493343256413937, - -0.010005871765315533, - -0.16090558469295502, - 0.004619314335286617, - 0.0030356852803379297, - -0.015180011279881, - 0.003224325831979513, - -0.005912849213927984, - 0.021520867943763733, - 0.0004133446200285107, - -0.006581809371709824, - -0.0039059678092598915, - 0.022890493273735046, - -0.007919730618596077, - -0.01690472476184368, - -0.0019799326546490192, - -0.01337920781224966, - -0.016308683902025223, - -0.028356311842799187, - 0.007621710188686848, - 0.03074047528207302, - -0.0018879901617765427, - 0.020328788086771965, - -1.967894786503166e-05, - 0.011990560218691826, - -0.004406895488500595, - 0.00036677895695902407, - 0.015154647640883923, - -0.030081024393439293, - 0.010278529487550259, - -0.0012412227224558592, - 0.00788168516010046, - -0.007995820604264736, - -0.0025997513439506292, - 0.015966277569532394, - -0.01069068443030119, - 0.0011365986429154873, - -0.018426530063152313, - -0.007209554314613342, - 0.013506025075912476, - -0.013163618743419647, - 0.031070198863744736, - 0.015357555821537971, - 0.011984219774603844, - -0.012770486064255238, - 0.006651558913290501, - -0.020100517198443413, - 0.025287337601184845, - 0.015788733959197998, - -0.012497829273343086, - 0.0030784860718995333, - -0.002658404177054763, - 0.014241565018892288, - -0.013112892396748066, - 0.00884549506008625, - 0.008902562782168388, - 0.005323149263858795, - 0.0048349034041166306, - -0.0034113810397684574, - -0.00668960390612483, - -0.005646532867103815, - 0.018971843644976616, - -0.004004251211881638, - -0.0013165203854441643, - 0.010709707625210285, - -0.006410606205463409, - 0.008566497825086117, - -0.022827085107564926, - -0.019288886338472366, - -0.0009313133778050542, - -0.008655269630253315, - 0.017551492899656296, - -0.003110190387815237, - -0.009181560948491096, - 0.005995280109345913, - -0.021787185221910477, - -0.0011738510802388191, - -0.003232251852750778, - -0.0164228193461895, - 0.009657124988734722, - 0.003953524399548769, - -0.00397888757288456, - -0.0032623708248138428, - 0.031222378835082054, - -0.023169491440057755, - -0.010779457166790962, - 0.004679552279412746, - 0.01885770820081234, - -0.011457928456366062, - -0.0030784860718995333, - 0.024906886741518974, - -0.012592941522598267, - 0.01686668023467064, - -0.03530589118599892, - -0.04453817754983902, - 0.008395294658839703, - 0.009244969114661217, - 0.018527984619140625, - -0.021115053445100784, - 0.02179986611008644, - 0.0025315871462225914, - -0.014634697698056698, - 0.011870084330439568, - -0.006454992573708296, - -0.02716423198580742, - 0.004486156161874533, - 0.01331579964607954, - -0.00035786212538369, - 0.007336371578276157, - 0.009593716822564602, - 0.04108875244855881, - -0.006122097373008728, - -0.02546488121151924, - 0.004527371842414141, - -0.00881379097700119, - 0.01654963567852974, - 0.0030372703913599253, - 0.016574999317526817, - -0.04834269359707832, - -0.035458073019981384, - 0.001536072581075132, - 0.01794462464749813, - 0.06716235727071762, - 0.015459009446203709, - -0.016257956624031067, - 0.005354853812605143, - -0.01712031289935112, - -0.006286959629505873, - -0.06000987067818642, - -0.016118457540869713, - 0.05224866047501564, - 0.006014302838593721, - -0.02097555436193943, - 0.029041124507784843, - -0.004593950696289539, - 0.008033866062760353, - 0.01295437105000019, - 0.02106432616710663, - -0.009327400475740433, - -0.025033703073859215, - -0.01989760994911194, - -0.004796858411282301, - 0.011001386679708958, - 0.030968744307756424, - -0.00909912958741188, - -0.02703741379082203, - -0.020810691639780998, - 0.03205937147140503, - 0.004448111169040203, - 0.021584276109933853, - -0.0034208924043923616, - -0.007501233834773302, - -0.019187433645129204, - -0.009498603641986847, - -0.03063902072608471, - 0.023803576827049255, - 0.03188182786107063, - 0.004609803203493357, - -0.011115522123873234, - -0.007653414271771908, - 0.0025030532851815224, - -0.02103896252810955, - -0.029015760868787766, - 0.019250841811299324, - -0.00932106003165245, - -0.000593266449868679, - 0.020011743530631065, - -0.008915244601666927, - 0.0031514058355242014, - -0.004023273941129446, - 0.009454217739403248, - -0.028609946370124817, - 0.010348278097808361, - 0.015218056738376617, - 0.00668960390612483, - -0.004952209070324898, - -0.00022034478024579585, - -0.0133918896317482, - -0.020709238946437836, - -0.02489420399069786, - -0.0349254384636879, - 0.02040487714111805, - 0.01693008840084076, - 0.00018705528054852039, - 0.007773890625685453, - 0.00817970559000969, - -0.004419577307999134, - 0.0014354115119203925, - -0.018210941925644875, - -0.007653414271771908, - -0.037005241960287094, - 0.026961322873830795, - -0.00015436024114023894, - -0.001372002880088985, - 0.005573613103479147, - -0.008376272395253181, - 0.007399780210107565, - -0.0019022570922970772, - -0.01620723120868206, - 0.005405580624938011, - -0.02290317602455616, - 0.027214957401156425, - -0.019529839977622032, - -0.008908904157578945, - -0.022636858746409416, - 0.0023128276225179434, - 0.02521124668419361, - -0.004635166376829147, - -0.022548086941242218, - -0.029954208061099052, - -0.0033257794566452503, - -0.002962765283882618, - 0.007678777910768986, - 0.04864705353975296, - 0.003092753002420068, - -0.0115593820810318, - -0.009340082295238972, - -0.002390502952039242, - 0.026454055681824684, - 0.0003439915017224848, - -0.008173364214599133, - -0.02561706118285656, - 0.0037918323650956154, - 0.004457622300833464, - 0.0018134850542992353, - -0.02207886427640915, - 0.005938212387263775, - 0.020366832613945007, - -0.015573144890367985, - -0.006179165095090866, - -0.0677710771560669, - 0.011971537955105305, - -0.016067732125520706, - -0.022231044247746468, - -0.007291985675692558, - -0.027899770066142082, - -0.0018642119830474257, - -0.0006047592032700777, - 0.014190837740898132, - 0.00047279015416279435, - -0.02341044321656227, - 0.006122097373008728, - -0.0207219198346138, - 0.008946948684751987, - -0.0052153547294437885, - -0.0061284382827579975, - 0.022890493273735046, - 0.008617224171757698, - 0.007406121119856834, - 0.0223959069699049, - -0.014977104030549526, - 0.0047651538625359535, - 0.017488082870841026, - 0.00942885410040617, - -0.02688523381948471, - 0.01926352269947529, - 0.010804819874465466, - -0.007063714787364006, - -0.01238369382917881, - 0.005430943798273802, - 0.002530001802369952, - -0.006892511621117592, - -0.016257956624031067, - 0.02169841155409813, - -0.027214957401156425, - 0.002236737171187997, - -0.010341937653720379, - 0.027570046484470367, - -0.005776520818471909, - 0.059248968958854675, - -0.012390034273266792, - -0.020772647112607956, - 0.03933867812156677, - -0.015585826709866524, - -0.0032465187832713127, - -0.007317348849028349, - 0.009676147252321243, - 0.03142528608441353, - 0.01157840434461832, - -0.040454667061567307, - 0.0056623853743076324, - 0.02498297579586506, - -0.0007533730822615325, - -0.025781923905014992, - 0.00548801152035594, - -0.0008021183894015849, - 0.011191612109541893, - -0.005548249930143356, - 0.020265378057956696, - -0.01422888319939375, - 0.027493955567479134, - -0.01460933405905962, - -0.006188676226884127, - -0.004479815252125263, - 0.01866748370230198, - -0.01968201994895935, - -0.016410138458013535, - -0.01610577665269375, - 0.00906742550432682, - -0.02637796476483345, - -0.014685424976050854, - 0.003782321233302355, - -0.022433951497077942, - 0.025667788460850716, - 0.004622484557330608, - 0.0013236538507044315, - 0.0015574729768559337, - 0.03264273330569267, - -0.009853691793978214, - 0.01370893232524395, - 0.020861418917775154, - 0.0008243113989010453, - -0.0156999621540308, - -0.012884621508419514, - 0.015408282168209553, - 0.015788733959197998, - -0.029370849952101707, - 0.01771635375916958, - 0.00602698465809226, - 0.0012594526633620262, - -0.008192387409508228, - 0.0015321095706894994, - -0.00939715001732111, - -0.011045772582292557, - 0.008192387409508228, - -0.016980815678834915, - 0.014000612311065197, - -0.008382612839341164, - 0.003607947612181306, - 0.02549024485051632, - 0.01389915868639946, - -0.017259811982512474, - 0.009612739086151123, - -0.0066071730107069016, - -0.0070003061555325985, - 0.01620723120868206, - -0.018464574590325356, - -0.02665696293115616, - -0.0020211481023579836, - 0.015471691265702248, - -0.02568047121167183, - -0.0021178461611270905, - 0.01623259298503399, - 0.01961861178278923, - -0.02546488121151924, - 0.015560463070869446, - -0.014482516795396805, - -0.010576548986136913, - -0.030689748004078865, - 0.03690378740429878, - 0.0013418837916105986, - 0.014444472268223763, - 0.01898452639579773, - -0.004746131598949432, - 0.005351683124899864, - -0.010379983112215996, - -0.005358024034649134, - -0.02006247080862522, - -0.01737394742667675, - 0.01677790656685829, - -0.03703060373663902, - -0.004194476641714573, - -0.018502620980143547, - -0.012567578814923763, - -0.0009725289419293404, - -0.00379500281997025, - 0.012871939688920975, - 0.022281771525740623, - 0.020823374390602112, - 0.13442616164684296, - -0.001548754284158349, - -0.03276954963803291, - 0.005890656262636185, - -0.001780195627361536, - 0.0043434868566691875, - -0.006569127552211285, - -0.005754327867180109, - -0.031476013362407684, - -0.012586601078510284, - 0.010722389444708824, - -0.005262911319732666, - 0.0259721502661705, - -0.02729104831814766, - -0.02169841155409813, - -0.017386630177497864, - 0.0015210130950435996, - 0.01964397542178631, - -0.005218525417149067, - -0.008997675962746143, - 0.024742024019360542, - 0.002918379381299019, - 0.020683875307440758, - 0.009016698226332664, - -0.018591392785310745, - -0.010506800375878811, - 0.022040817886590958, - -0.027570046484470367, - -0.0026980345137417316, - -0.024019166827201843, - -0.0028438742738217115, - -0.00333212036639452, - -0.05869097262620926, - -0.026301873847842216, - 0.024031847715377808, - -0.03543270751833916, - 0.0047905175015330315, - 0.011020408943295479, - 0.021470140665769577, - -0.010570208542048931, - -0.03639651834964752, - 0.026403328403830528, - -0.031222378835082054, - -0.01762758195400238, - 0.009549330919981003, - -0.033631905913352966, - -0.029396213591098785, - -0.0006253669853322208, - -0.01427960954606533 - ], - "sparse": "SparseEmbedding(values=array([1.68320383, 1.68320383]), indices=array([463179689, 932042456]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 14, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 2 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000015.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000015.json deleted file mode 100644 index 9f39457e3ee33aac6d942444d0cda1a590908bb2..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000015.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000015", - "content": "Abk\u00fcrzungsverzeichnis ALKIS Amtlichen Liegenschaftskatasterinformationssystem CGSC Circular Green Sim City CO2 Kohlenstoffdioxid CO2e Kohlenstoffdioxid \u00c4quivalente COP Coefficient of Performance DNS Deutsche Nachhaltigkeisstrategie DWD Deutscher Wetterdienst FLL Forschungsgesellschaft Landschaftsentwicklung Landschaftsbau Galk e.V. Deutsche Gartenamtsleiterkonferenz HfT Hochschule f\u00fcr Technik IPCC Intergovernmental Panel on Climate Change LAI Leaf Area Index MIT Motorized individual transport", - "embedding": { - "dense": [ - 0.00850914977490902, - 0.01065113116055727, - 0.011904973536729813, - -0.04174250736832619, - -0.014419188722968102, - 0.008084671571850777, - -0.025938866659998894, - 0.011924564838409424, - 0.01292372029274702, - -0.02771514281630516, - 0.03158115968108177, - 0.010527052916586399, - -0.013544111512601376, - 0.017854195088148117, - -0.0034480667673051357, - -0.005074143875390291, - 0.027427803725004196, - -0.0037778534460812807, - 0.0038594838697463274, - 0.007555706892162561, - -0.007849576883018017, - 0.02280426025390625, - -0.007268368266522884, - -0.002243202645331621, - 0.01717502996325493, - 0.005456173792481422, - 0.015019988641142845, - -0.02348342537879944, - -0.016535047441720963, - -0.007490403018891811, - 1.2690971971096587e-06, - -0.02228182554244995, - -0.013661658391356468, - -0.012283737771213055, - -0.011193156242370605, - 0.007999775931239128, - -0.006171255838125944, - -0.010566235519945621, - 0.006592468824237585, - -0.007098576985299587, - -0.002029330935329199, - 0.0171227864921093, - -0.0033729670103639364, - -0.02109328843653202, - 0.005044756922870874, - 0.0036733667366206646, - 0.007843046449124813, - -0.008332828059792519, - -0.011264991015195847, - 0.030745262280106544, - 0.006785116624087095, - 0.048481911420822144, - -0.0071181682869791985, - -0.012042112648487091, - -0.012669033370912075, - 0.00713775958865881, - 0.0017142377328127623, - 0.012087825685739517, - 0.008626697584986687, - -0.01543793547898531, - -0.03649204224348068, - -0.015359570272266865, - -0.02797636017203331, - 0.014001240953803062, - -0.02461971901357174, - -0.03531656414270401, - -0.01939537562429905, - -0.0004722316807601601, - -0.003892136039212346, - 0.001038338290527463, - 0.03176400810480118, - 0.029648151248693466, - 0.024332381784915924, - -0.01897742785513401, - 0.023561790585517883, - -0.004316614009439945, - -0.011643756181001663, - 0.008646288886666298, - -0.02208591252565384, - 0.01049440074712038, - 0.025520918890833855, - -0.009443000890314579, - -0.012499242089688778, - 0.022321008145809174, - 0.025468675419688225, - 0.01918640173971653, - -0.0031215453054755926, - 0.018219899386167526, - -0.010611948557198048, - 0.0068700117990374565, - 0.015033049508929253, - 0.029021229594945908, - 0.011500086635351181, - 0.026173962280154228, - -0.01375308446586132, - -0.016117099672555923, - 0.01269515510648489, - 0.021106349304318428, - 4.6197688789106905e-05, - -0.04955289885401726, - -0.007124698720872402, - 0.008705062791705132, - 0.005864325910806656, - -0.006713281851261854, - -0.0242931991815567, - -0.005459439009428024, - 0.024645840749144554, - 0.016926873475313187, - 0.011238869279623032, - -0.008535271510481834, - -0.017971742898225784, - 0.033488042652606964, - 0.008646288886666298, - 0.010082983411848545, - 0.011049486696720123, - -0.03218195587396622, - 0.016313012689352036, - 0.007980184629559517, - -0.006034117192029953, - -0.008979341015219688, - 0.03594348579645157, - 0.01121927797794342, - 0.004352531395852566, - -0.009162193164229393, - -0.010246244259178638, - 0.019434558227658272, - 0.013217589817941189, - -0.012564546428620815, - -0.03657040745019913, - -0.02631763182580471, - 0.007954062893986702, - -0.0043329400941729546, - -0.004251309670507908, - 0.015738336369395256, - -0.029308568686246872, - 0.01432776264846325, - -0.0033174583222717047, - 0.016247708350419998, - -0.029151838272809982, - -0.03484637290239334, - -0.016313012689352036, - 0.018023986369371414, - -0.009077297523617744, - -0.005593312904238701, - 0.00951483566313982, - 0.00783651601523161, - 0.00927974097430706, - 0.011056017130613327, - 0.01597343012690544, - -0.013779206201434135, - 0.0012113946722820401, - -0.006576142739504576, - 0.02074064500629902, - 0.009638913907110691, - -0.002479930641129613, - -0.004920678678900003, - 0.002550132805481553, - 0.0032684800680726767, - -0.012616789899766445, - -0.01592118665575981, - -0.005684738978743553, - -0.007777741644531488, - 0.00519495690241456, - 0.0016864835051819682, - 0.027009857818484306, - 0.020179027691483498, - -0.0022840178571641445, - -0.020074540749192238, - -0.0016334237297996879, - -0.014262458309531212, - -0.009678096510469913, - 0.013230650685727596, - -0.0264743622392416, - 0.023666277527809143, - -0.01953904516994953, - 0.008678941056132317, - 0.0021583070047199726, - 0.019330071285367012, - -0.010135226882994175, - -0.02663109265267849, - -0.020087601616978645, - 0.019277827814221382, - 0.005994934588670731, - 0.01976107992231846, - -0.015568544156849384, - -0.006213703658431768, - 0.008992401883006096, - 0.026134779676795006, - -0.006843890063464642, - -0.017462369054555893, - 0.014458371326327324, - 0.0009926252532750368, - 0.0006469207000918686, - -0.0048455786891281605, - -0.6507442593574524, - -0.011911503970623016, - 0.002169735264033079, - -0.02596498839557171, - 0.026513544842600822, - 0.019878627732396126, - 0.018938245251774788, - 0.016613412648439407, - 0.0021060635335743427, - 0.03625694662332535, - -0.007699376437813044, - -0.008326297625899315, - -0.014197153970599174, - -0.010611948557198048, - -0.01021359208971262, - -0.014797953888773918, - 0.0018628051038831472, - -0.02610865794122219, - 0.03662265092134476, - 0.01483713649213314, - -0.006683894898742437, - 0.008692001923918724, - 0.0036309189163148403, - -0.013779206201434135, - 0.008326297625899315, - 0.01212700828909874, - 0.021733269095420837, - -0.01504611037671566, - -0.0036243884824216366, - 0.008822610601782799, - -0.007673254702240229, - 0.00708551611751318, - -0.007999775931239128, - 0.01176130399107933, - 0.05177324637770653, - 0.03732793778181076, - -0.026539666578173637, - -0.0004101926169823855, - 0.011153973639011383, - 0.02367933839559555, - -0.015085292048752308, - -0.01572527550160885, - 0.01820683851838112, - 0.01567303203046322, - -0.0008742612553760409, - 0.024058103561401367, - 0.04192535951733589, - -0.001122417626902461, - -0.0033256213646382093, - -0.04725418984889984, - 0.010768678970634937, - -0.005590047687292099, - -0.006739403586834669, - -0.0006746749859303236, - 0.014667345210909843, - 0.015215900726616383, - 0.004417835734784603, - -0.014053484424948692, - 0.0010530317667871714, - 0.0365181639790535, - 0.0005946772289462388, - 0.017828073352575302, - -0.017135847359895706, - -0.016600351780653, - -0.023600973188877106, - 0.030849749222397804, - -0.03218195587396622, - -0.006713281851261854, - 0.001720768166705966, - -0.02343118190765381, - -0.014092667028307915, - 0.013178407214581966, - -0.004437427036464214, - 0.00069467443972826, - 0.015895064920186996, - 0.012845355086028576, - 0.03139830753207207, - -0.022673651576042175, - -0.007496933452785015, - 0.005880651995539665, - -0.0009044645121321082, - -4.5585460611619055e-05, - 0.0005885549471713603, - -0.008620167151093483, - 0.03377538174390793, - -0.036988355219364166, - -0.022660590708255768, - -0.02130226232111454, - -0.009364635683596134, - 0.014236336573958397, - 0.045216694474220276, - -0.005384339485317469, - -0.02849879488348961, - -0.004267635755240917, - -0.005279852543026209, - 0.01577751897275448, - -0.02808084711432457, - 0.014680406078696251, - 0.005955751985311508, - -0.037667516618967056, - -0.022634468972682953, - -0.007921410724520683, - 0.014628162607550621, - 0.01974801905453205, - 0.0020081070251762867, - -0.005443112924695015, - -0.03179012984037399, - 0.002860328182578087, - 0.031110966578125954, - -0.002483195858076215, - -0.006726342719048262, - -0.03273051232099533, - -0.004427631385624409, - 0.000549780554138124, - 0.00204892223700881, - -0.02259528636932373, - 0.02808084711432457, - -0.010984182357788086, - -0.007621011231094599, - 0.00337949744425714, - 0.019094975665211678, - 0.014641223475337029, - 0.008959749713540077, - -0.012597198598086834, - 0.0006607978721149266, - 0.0123621029779315, - -0.00011438455840107054, - -0.0061875819228589535, - -0.020139845088124275, - -0.005475765094161034, - 0.017436247318983078, - 0.0033468452747911215, - 0.016521986573934555, - -0.015006927773356438, - 0.025991110131144524, - 0.0041860053315758705, - 0.042944107204675674, - -0.027950238436460495, - 0.008097732439637184, - -0.0089989323168993, - -0.018938245251774788, - -0.013583294115960598, - -0.0025713567156344652, - -0.03680550307035446, - -0.012133538722991943, - -0.015699153766036034, - 0.0016309748170897365, - 0.008796488866209984, - -0.016221586614847183, - 0.013276363722980022, - -0.012172721326351166, - -0.0004534567124210298, - 0.005459439009428024, - 0.03108484484255314, - -0.005736982449889183, - -0.012708215974271297, - -0.005420256406068802, - -0.015085292048752308, - -0.002357485005632043, - -0.02063615806400776, - 0.01385757140815258, - 0.008110793307423592, - -0.023979738354682922, - -0.009769522584974766, - -0.0015893433010205626, - 0.02316996455192566, - 0.005345156881958246, - 0.02693149261176586, - -0.021341444924473763, - -0.02729719504714012, - -0.012042112648487091, - -0.01582976058125496, - -0.010167879052460194, - 0.0012791479239240289, - -0.0074381595477461815, - -0.006739403586834669, - -0.020152905955910683, - -0.0077254981733858585, - 0.005185161251574755, - -0.02488093636929989, - 0.025690710172057152, - 0.013165346346795559, - 0.001628525904379785, - 0.018481116741895676, - 0.009142601862549782, - 0.0040880488231778145, - 0.005325565580278635, - 0.02481563203036785, - -0.020910436287522316, - 0.010285426862537861, - 0.015607726760208607, - 0.02280426025390625, - -0.010487870313227177, - -0.004816191736608744, - -0.016678716987371445, - 0.013583294115960598, - -0.014954684302210808, - 0.0038366273511201143, - -0.008541801944375038, - 0.016835447400808334, - 0.04328368604183197, - -0.0115327388048172, - 0.032756634056568146, - -0.0076275416649878025, - 0.013661658391356468, - -0.01613016054034233, - -0.0009779318934306502, - -0.01522896159440279, - 0.01923864521086216, - 0.014575919136404991, - 0.024005860090255737, - 0.018650908023118973, - -0.03899972513318062, - 0.009371166117489338, - 0.00884220190346241, - 0.01670483872294426, - -0.0298832468688488, - -0.003441536333411932, - 0.019068853929638863, - -0.01483713649213314, - 0.01375308446586132, - -0.00819568894803524, - 0.027375560253858566, - -0.01499386690557003, - -0.00011571105278562754, - 0.01902967132627964, - -0.008012836799025536, - 0.01567303203046322, - -0.00687654223293066, - -0.01357023324817419, - -0.015999551862478256, - -0.02207285165786743, - -0.004786804784089327, - -0.00798671506345272, - 0.009325454011559486, - 0.019617410376667976, - 0.03842504695057869, - -0.011330295354127884, - 0.035029225051403046, - 0.015424874611198902, - -0.0009305862477049232, - 0.02766289934515953, - 0.016665656119585037, - -0.00791488029062748, - 0.019512923434376717, - 0.0074120378121733665, - 0.0319729819893837, - 0.03526432067155838, - -0.035185955464839935, - 0.015189778991043568, - -0.021223897114396095, - 0.007621011231094599, - 0.012479650788009167, - -0.015646910294890404, - 0.025168275460600853, - 0.008012836799025536, - 0.02042718417942524, - 0.018703149631619453, - 0.023823007941246033, - 0.026905370876193047, - 0.00868547149002552, - -0.0041109053418040276, - -0.0013379218289628625, - -0.010905817151069641, - -0.004156618379056454, - 0.008169567212462425, - -0.008652819320559502, - -0.011767834424972534, - 0.003643979784101248, - 0.0064847166649997234, - 0.005394134670495987, - -0.0001645872398512438, - -0.013726962730288506, - 0.008783427998423576, - 0.016299951821565628, - -0.014380006119608879, - -0.005616169422864914, - -0.004391713999211788, - 0.028916742652654648, - 0.006213703658431768, - 0.013263302855193615, - -0.024854814633727074, - 0.02797636017203331, - 0.037772003561258316, - -0.0007416119333356619, - -0.005694534629583359, - -0.012832294218242168, - 0.005488825961947441, - -0.03463739901781082, - 0.009384226985275745, - -0.019382314756512642, - 0.0039900923147797585, - -0.0015762824332341552, - 0.013400441966950893, - 0.0026138045359402895, - -0.028890620917081833, - 0.008176097646355629, - -0.01119968667626381, - -0.003516636323183775, - 0.03160727769136429, - -0.010964591056108475, - 7.62733761803247e-05, - 0.015895064920186996, - 0.0025844175834208727, - 0.05720656365156174, - 0.022268764674663544, - 0.002759106457233429, - 0.0011273154523223639, - 0.013302485458552837, - -0.008012836799025536, - -0.02589968405663967, - -0.011415190994739532, - -0.005374543834477663, - 0.011036425828933716, - -0.017566855996847153, - 0.014575919136404991, - 0.001870968146249652, - -0.047175824642181396, - 0.026905370876193047, - -0.008502619341015816, - -0.001110173063352704, - -0.019669653847813606, - 0.0023362610954791307, - 0.019094975665211678, - 0.02668333612382412, - 0.0024178915191441774, - -0.0055769868195056915, - 0.004626809619367123, - -0.02657884918153286, - -0.026304570958018303, - -0.00824793241918087, - -0.033435799181461334, - 0.0011232339311391115, - -0.0013958793133497238, - -0.016247708350419998, - 0.006550021003931761, - 0.027584534138441086, - -0.018167655915021896, - 0.03429781645536423, - 0.00449946615844965, - 0.0013885325752198696, - -0.029595907777547836, - 0.00785610731691122, - -0.005325565580278635, - -0.012858415953814983, - -0.01784113422036171, - 0.019108036532998085, - 0.03427169471979141, - -0.010566235519945621, - -0.002646456705406308, - 0.026957614347338676, - 0.03623082488775253, - -0.0060471780598163605, - -0.02239937335252762, - -0.010096044279634953, - 0.024841753765940666, - 0.010416035540401936, - 0.025325005874037743, - -0.024371564388275146, - 0.010233183391392231, - 0.00028999190544709563, - 0.0019117832416668534, - 0.02388831228017807, - -0.0063116601668298244, - 0.018232960253953934, - 0.007150820456445217, - 0.0021060635335743427, - -0.00276073906570673, - 0.0314505510032177, - -0.011904973536729813, - -0.01417103223502636, - 0.029099594801664352, - 0.009240558370947838, - -0.03030119277536869, - 0.01163722574710846, - -0.01742318645119667, - -0.018598664551973343, - -0.007203063927590847, - -0.003892136039212346, - -0.009730339981615543, - 0.011251930147409439, - -0.004806396085768938, - 0.014001240953803062, - -0.025507858023047447, - -0.03003997728228569, - -0.003190114861354232, - -0.0037288754247128963, - -0.008574454113841057, - -0.011173564940690994, - 0.0017566855531185865, - 0.017984803766012192, - -0.0035558189265429974, - -0.02290874719619751, - 0.0046072183176875114, - 0.01592118665575981, - -0.03173788636922836, - -0.02228182554244995, - -0.009201375767588615, - 0.003487249370664358, - 0.0059492215514183044, - 0.009083827957510948, - -0.023823007941246033, - -0.017083603888750076, - 0.007065924815833569, - -0.025155214592814445, - -0.013269833289086819, - -0.024893997237086296, - -0.03246929496526718, - -0.010984182357788086, - 0.020819010213017464, - -0.015019988641142845, - 0.004842313472181559, - -0.007124698720872402, - 0.006148399319499731, - 0.0012105783680453897, - -0.02047942765057087, - -0.007065924815833569, - 0.0040880488231778145, - -0.005583517253398895, - 0.00858098454773426, - 0.03124157525599003, - 0.01588200405240059, - 0.009305862709879875, - -0.02631763182580471, - 0.02373158186674118, - -0.0017501551192253828, - -0.004545179195702076, - 0.004767213482409716, - 0.009945844300091267, - -0.017462369054555893, - -0.009665035642683506, - 0.010951530188322067, - 0.01614322140812874, - 0.006579407956451178, - 0.020179027691483498, - -0.021485114470124245, - 0.02119777537882328, - -0.009090358391404152, - -0.008959749713540077, - 0.027009857818484306, - 0.015202839858829975, - -0.005446378141641617, - 0.012982494197785854, - -0.012460059486329556, - -0.008372010663151741, - -0.019970053806900978, - 0.022477738559246063, - 0.0264743622392416, - 0.0035786754451692104, - 0.03406272083520889, - 0.009782583452761173, - 0.01969577558338642, - -0.018076229840517044, - 0.0013044533552601933, - -0.017749708145856857, - 0.0012326185824349523, - -0.013935936614871025, - -0.012172721326351166, - -0.014471432194113731, - -0.001530569395981729, - -0.01031807903200388, - 0.01960434950888157, - -0.028786133974790573, - -0.0019117832416668534, - -0.01897742785513401, - -0.0010758882854133844, - 0.013478807173669338, - 0.0359957292675972, - -0.006948377005755901, - -0.031163210049271584, - -0.023496486246585846, - -0.005051287356764078, - -0.006056973710656166, - 0.04670563340187073, - -0.024110347032546997, - -0.02089737541973591, - -0.03233868628740311, - 0.0011158871930092573, - -0.015411813743412495, - -0.038346681743860245, - -0.009808705188333988, - -0.0018399485852569342, - 0.02766289934515953, - 0.006922255270183086, - 0.007274898700416088, - -0.009632383473217487, - 0.03505534678697586, - 0.005335361231118441, - -0.0032668474595993757, - 0.0015493443934246898, - 0.007784272078424692, - -0.014928562566637993, - -0.0389736033976078, - -0.014144910499453545, - 0.0196565929800272, - -0.00354275805875659, - -0.0002665231586433947, - -0.021223897114396095, - 0.005446378141641617, - 0.014340823516249657, - -0.015019988641142845, - -0.021798573434352875, - -0.0005281484918668866, - -0.01934313215315342, - -0.0076536634005606174, - 0.013178407214581966, - 0.012303329072892666, - 0.015150596387684345, - -0.027480047196149826, - -0.014523675665259361, - 0.02357485145330429, - -0.0007073271553963423, - 0.004473344422876835, - -0.0017305638175457716, - 0.025978049263358116, - -0.021733269095420837, - 0.022817321121692657, - 0.028263699263334274, - 0.014105727896094322, - -0.009403818286955357, - -0.017867255955934525, - -0.007862637750804424, - -0.010879695415496826, - 0.016430560499429703, - -0.0035525537095963955, - 0.0008134466479532421, - -0.003235827898606658, - 0.012211902998387814, - -0.0025909480173140764, - -0.005975343286991119, - 0.01328942459076643, - -0.0023950350005179644, - 0.004816191736608744, - -0.01346574630588293, - -0.003134606173262, - -0.004058661870658398, - -0.013583294115960598, - -0.01422327570617199, - 0.019826384261250496, - -0.00434273574501276, - -0.010997243225574493, - 0.04498159885406494, - -0.012322920374572277, - -0.010350731201469898, - 0.019617410376667976, - -0.0034970450215041637, - 0.027375560253858566, - -0.009214436635375023, - 0.03589124232530594, - 0.003950909711420536, - -0.004682317841798067, - -0.03811158612370491, - -0.048429667949676514, - 0.006843890063464642, - -0.0049141482450068, - 0.015111413784325123, - 0.012584137730300426, - -0.018624786287546158, - -0.019774140790104866, - 0.009109949693083763, - 0.008332828059792519, - 0.0030709344428032637, - -0.025220518931746483, - 0.01717502996325493, - 0.009893600828945637, - 0.01033767033368349, - -0.018023986369371414, - 0.009129540994763374, - -0.017292577773332596, - 0.014249397441744804, - 0.02336587756872177, - -0.0077254981733858585, - -0.017253395169973373, - -0.010069922544062138, - 0.004388448782265186, - 0.012727807275950909, - -0.004270900972187519, - 0.02493317984044552, - 0.009625853039324284, - -0.01665259525179863, - 0.0037288754247128963, - -0.033226825296878815, - -0.01181354746222496, - 0.029386933892965317, - 0.0026889045257121325, - 0.03181625157594681, - -0.00020223924366291612, - -0.0216679647564888, - 0.0003654999891296029, - 0.008718123659491539, - 0.0021387157030403614, - -0.005763104185461998, - 0.004946800414472818, - 0.01845499500632286, - 0.008280584588646889, - -0.024959301576018333, - -0.014928562566637993, - 0.0019934135489165783, - 0.016926873475313187, - 0.0031460344325751066, - -0.007790802512317896, - -0.021694086492061615, - -0.017344821244478226, - -0.007203063927590847, - 0.0155946658924222, - -0.010122166015207767, - -0.0008322216453962028, - -0.013896754011511803, - -0.017148908227682114, - -0.02233406901359558, - -0.005319035146385431, - -0.0032929691951721907, - 0.02042718417942524, - -0.041037220507860184, - -0.0021305526606738567, - -0.005397399887442589, - 0.0015354672214016318, - -0.006396555807441473, - 0.011330295354127884, - 0.00017417880007997155, - -0.020361879840493202, - 0.012420876882970333, - -0.03899972513318062, - 0.033226825296878815, - 0.03625694662332535, - -0.011630695313215256, - -0.0019264767179265618, - 0.017331760376691818, - 0.001869335537776351, - -0.01955210603773594, - 0.018964366987347603, - 0.0019950461573898792, - -0.013674719259142876, - 0.008907506242394447, - -0.0009256884222850204, - 0.016926873475313187, - 0.007007150910794735, - -0.01815459504723549, - 0.011310704052448273, - 0.0011689468519762158, - -0.005792491137981415, - -0.011957217007875443, - -0.027062101289629936, - 0.02724495343863964, - -0.010050331242382526, - -0.0026366610545665026, - 0.04448528587818146, - -0.016639534384012222, - 0.02362709492444992, - -0.006066769361495972, - -0.0015991389518603683, - -0.016299951821565628, - -0.019578227773308754, - -0.03155503794550896, - 0.01623464748263359, - 0.03380150347948074, - 0.01598649099469185, - 0.0038137708324939013, - -0.00967156607657671, - -0.011630695313215256, - -0.020244332030415535, - 0.011473964899778366, - 0.0031019540037959814, - 0.01364859752357006, - 0.02094961889088154, - 0.016273830085992813, - -0.006145134102553129, - 0.020139845088124275, - -0.01364859752357006, - -0.004822722170501947, - -0.00105058285407722, - -0.011075608432292938, - -0.03967889025807381, - 0.010912347584962845, - -5.145264367456548e-05, - 0.015464057214558125, - 0.02229488641023636, - -0.050388794392347336, - -0.04302247241139412, - 0.009717279113829136, - -0.044955477118492126, - -0.02125001884996891, - -0.00840466283261776, - -0.00736632477492094, - 0.004874965641647577, - 0.04169026389718056, - -0.012231494300067425, - 0.027271075174212456, - -0.001946068019606173, - 0.019460679963231087, - -0.03468964248895645, - -0.01504611037671566, - 0.016404438763856888, - 0.011402130126953125, - 0.01318493764847517, - -0.007666724268347025, - -0.008156506344676018, - -0.02224264293909073, - 0.010174409486353397, - -0.0031215453054755926, - -0.014157971367239952, - 0.022987112402915955, - -0.0038105056155472994, - -0.021863877773284912, - 0.0038072403986006975, - 0.0018154594581574202, - -0.010468279011547565, - 0.019068853929638863, - -0.0018628051038831472, - -0.016208525747060776, - 0.01290412899106741, - 0.01427551917731762, - 0.0013975119218230247, - -0.017697464674711227, - 0.003088893136009574, - 0.003888870822265744, - 0.00022325906320475042, - -0.004303553141653538, - 0.021067166700959206, - -0.027062101289629936, - 0.0055051520466804504, - -0.00126363814342767, - 0.007150820456445217, - 0.01385757140815258, - -0.0359957292675972, - 0.005139448214322329, - -0.012499242089688778, - -0.00606350414454937, - -0.00486190477386117, - -0.006902663968503475, - -0.022255703806877136, - 0.003839892568066716, - 0.01533344853669405, - -0.0021060635335743427, - 0.017397064715623856, - -0.024476049467921257, - -0.0006971233524382114, - -0.021067166700959206, - 0.0017730116378515959, - -0.014811014756560326, - -0.016273830085992813, - -0.019525984302163124, - 0.012610259465873241, - -0.01396205835044384, - -0.004228453151881695, - 0.003519901540130377, - 0.01923864521086216, - 6.453901005443186e-05, - -0.012388224713504314, - -0.01742318645119667, - 0.014902440831065178, - -0.02565152756869793, - -0.01186579093337059, - 0.012518833391368389, - -0.016221586614847183, - 0.0037223449908196926, - -0.011402130126953125, - -0.010487870313227177, - -0.0025631936732679605, - 0.008920567110180855, - 0.19967441260814667, - -0.017919499427080154, - 0.014366945251822472, - 0.03414108604192734, - -0.04798559844493866, - -0.021955303847789764, - 0.03764139488339424, - -0.0007591624744236469, - 0.0006910010706633329, - 0.02998773381114006, - -0.020871253684163094, - 0.002199122216552496, - 0.0055769868195056915, - 0.002884817309677601, - 0.019003549590706825, - -0.012584137730300426, - -0.03769363835453987, - -0.0022301417775452137, - -0.0055769868195056915, - 0.040828246623277664, - 0.0132371811196208, - -0.003709284123033285, - -0.0028015542775392532, - -0.0230654776096344, - 0.0014375108294188976, - -0.004623544402420521, - 0.005145978648215532, - -0.0004783539625350386, - 0.038712386041879654, - 0.011421721428632736, - -0.002267691772431135, - 0.01016134861856699, - -0.022046729922294617, - -0.0023885045666247606, - -0.005319035146385431, - -0.002150143962353468, - 0.02037494070827961, - -0.00022978949709795415, - 0.012917189858853817, - 0.038869116455316544, - -0.002602376276627183, - -0.019669653847813606, - -0.03108484484255314, - -0.03139830753207207, - -0.0029452238231897354, - 0.02523357979953289, - 0.0013713901862502098, - -0.013844510540366173, - -0.007242246530950069, - 0.002806452102959156, - -0.02554704062640667, - -0.011088669300079346, - 0.015006927773356438, - 0.06258764117956161, - -0.009691157378256321, - 0.01603873446583748, - 0.006961437873542309, - 0.007777741644531488, - 0.00016621984832454473, - 0.012427407316863537, - -0.0029191020876169205, - 0.038764629513025284, - -0.0022072852589190006, - 0.014353884384036064, - -0.01390981487929821, - 0.006974498741328716, - -0.028812255710363388, - -0.002270956989377737, - 0.011251930147409439, - -0.015307326801121235, - -0.002574621932581067, - -0.020662279799580574, - -0.006167990621179342, - 0.022164277732372284, - -0.021445931866765022, - -0.027636777609586716, - 0.02327445149421692, - 0.033592529594898224, - 0.0035786754451692104, - 0.02109328843653202, - -0.013282894156873226, - -0.007477342151105404, - -0.02006147988140583, - -0.008411193266510963, - -0.0005856978823430836, - -0.027166588231921196, - 0.021380627527832985, - 0.014902440831065178, - -0.02182469516992569, - -0.016822386533021927, - -0.009371166117489338, - -0.009390757419168949, - -0.01845499500632286, - 0.019356193020939827, - 0.018232960253953934, - 0.0014187358319759369, - -0.009762992151081562, - -0.009025054052472115, - -0.002355852397158742, - -0.007816924713551998, - -0.01106254756450653, - 0.05715432018041611, - 0.023666277527809143, - -0.009906661696732044, - -0.020766766741871834, - 0.016326073557138443, - -0.014040423557162285, - -0.00011979256669292226, - 0.004153353162109852, - -0.023248329758644104, - -0.004688848275691271, - -0.03654428571462631, - 0.011343356221914291, - 0.004963126499205828, - -0.006553286220878363, - 0.026226205751299858, - -5.566170875681564e-05, - -0.01577751897275448, - 0.011643756181001663, - -0.0171227864921093, - -0.0036701015196740627, - -0.006491247098892927, - 0.008182628080248833, - -0.010618478991091251, - 0.009534426964819431, - -0.0013713901862502098, - -0.051433663815259933, - -0.0009085460333153605, - -0.022882625460624695, - -0.011617634445428848, - 0.024175651371479034, - 0.0020064744167029858, - 0.012838824652135372, - -0.0069679683074355125, - -0.01554242242127657, - 0.010696844197809696, - 0.005903508514165878, - -0.028968986123800278, - -0.03361865133047104, - 0.012211902998387814, - 0.006079830229282379, - -0.0015248553827404976, - -0.003306030062958598, - -0.02172020822763443, - 0.013831449672579765, - 0.003386027878150344, - -0.0036701015196740627, - 0.0072161247953772545, - -0.023078538477420807, - -0.026657214388251305, - -0.03173788636922836, - -0.012558015994727612, - -0.0022562635131180286, - 0.0013175142230466008, - 0.027793508023023605, - 0.010487870313227177, - -0.01504611037671566, - -0.006674099247902632, - 0.022112034261226654, - 0.023248329758644104, - -0.01824602112174034, - -0.007392446510493755, - 0.006167990621179342, - -0.01375308446586132, - -0.004652931354939938, - -0.004078253172338009, - -0.1663431078195572, - 0.009678096510469913, - 0.008972810581326485, - -0.03273051232099533, - -0.00571412593126297, - -0.00415008794516325, - 0.01820683851838112, - 0.000989360036328435, - -0.004685583058744669, - -0.0018023985903710127, - 0.027950238436460495, - 0.004989248234778643, - -0.018010925501585007, - -0.010585826821625233, - -0.009077297523617744, - 0.002357485005632043, - -0.023666277527809143, - 0.01974801905453205, - 0.007549176458269358, - -0.0024864610750228167, - 0.010873164981603622, - -0.012205373495817184, - 0.007529585622251034, - -0.0021403483115136623, - 0.011395599693059921, - 0.0005644740303978324, - -0.009547487832605839, - 0.010200531221926212, - -0.0014513880014419556, - -0.00698102917522192, - -0.0074120378121733665, - -0.009371166117489338, - 0.03455903381109238, - 0.014419188722968102, - 0.0038007099647074938, - -0.014001240953803062, - -0.01411878876388073, - -0.0076536634005606174, - 0.003307662671431899, - 0.024058103561401367, - 0.026395997032523155, - 0.010409505106508732, - -0.003941114526242018, - 0.007052863948047161, - -0.0306668970733881, - 0.011454373598098755, - 0.021850816905498505, - 0.009429940022528172, - -0.007059394381940365, - -0.0011289480607956648, - 0.01644362136721611, - -0.016874630004167557, - 0.0089989323168993, - 0.0034480667673051357, - -0.0009460959699936211, - 0.025142153725028038, - -0.001769746420904994, - 0.019303949549794197, - 0.005919834598898888, - -0.004378653131425381, - -0.026604970917105675, - -0.010533583350479603, - -0.015085292048752308, - -0.007594889495521784, - 0.017880316823720932, - -0.00946259219199419, - -0.0046300748363137245, - 0.0014113890938460827, - -0.015215900726616383, - -0.003382762661203742, - 0.003663571085780859, - -0.035133711993694305, - 0.01581669971346855, - -0.012087825685739517, - -0.003689692821353674, - -0.017384003847837448, - -0.02860328182578087, - 0.010788269340991974, - 0.004933739546686411, - 0.005697799846529961, - -0.026604970917105675, - 0.05673637241125107, - -0.02145899273455143, - -0.01488937996327877, - 0.017331760376691818, - 0.007699376437813044, - -0.013478807173669338, - -0.012420876882970333, - -0.00138934887945652, - 0.013844510540366173, - 0.01866396889090538, - -0.024841753765940666, - -0.0319729819893837, - 0.00647818623110652, - 0.00587085634469986, - 0.0077516199089586735, - -0.002021167892962694, - 0.013100042007863522, - 0.008045488968491554, - -0.010037270374596119, - 0.01219884306192398, - -0.011924564838409424, - -0.021393688395619392, - 0.0012554751010611653, - 0.019264766946434975, - 0.014602040871977806, - -0.01829826459288597, - 0.0010326241608709097, - 0.017606038600206375, - 0.010011148639023304, - -0.026618031784892082, - -0.010167879052460194, - 0.027271075174212456, - 0.01876845397055149, - -0.008659349754452705, - 0.0031003213953226805, - -0.028890620917081833, - -0.03335743397474289, - -0.0021338178776204586, - -0.011029895395040512, - 0.04435467720031738, - 0.009312393143773079, - -0.005243935156613588, - 0.0003073383413720876, - 0.008378541097044945, - -0.0006640630890615284, - -0.07930553704500198, - -0.016456682235002518, - 0.021315323188900948, - 0.017305638641119003, - -0.009390757419168949, - 0.03748466446995735, - 0.007026742212474346, - 0.0032243996392935514, - 0.007686315570026636, - 0.022582225501537323, - -0.011539269238710403, - -0.02353566884994507, - -0.017135847359895706, - 0.007509994320571423, - 0.01784113422036171, - -0.012610259465873241, - -0.0003255011106375605, - -0.03800709918141365, - -0.013439624570310116, - 0.02823757752776146, - 0.014144910499453545, - 0.007203063927590847, - -0.005354952532798052, - -0.022686712443828583, - -0.01577751897275448, - 0.011382538825273514, - -0.02734943851828575, - 0.019669653847813606, - 0.03139830753207207, - 0.005632495507597923, - 0.0015354672214016318, - -0.020819010213017464, - -0.009083827957510948, - -0.016979116946458817, - -0.013975119218230247, - 0.009488713927567005, - -0.01225761603564024, - -0.028812255710363388, - 0.032495416700839996, - -0.013374320231378078, - -0.004192535765469074, - -0.0018317855428904295, - 0.022203460335731506, - -0.035708390176296234, - 0.0007550809532403946, - -0.000785284151788801, - 0.006687160115689039, - 0.028368186205625534, - -0.00197218987159431, - -0.018546421080827713, - -0.03863402083516121, - -0.03233868628740311, - -0.0074381595477461815, - 0.0024391154292970896, - 0.008763836696743965, - 0.0016358726425096393, - 0.004492935724556446, - 0.024240955710411072, - -0.010298487730324268, - 0.001062827417626977, - -0.0004795784188900143, - 0.0037190797738730907, - -0.020192088559269905, - 0.03858177736401558, - 0.007718967739492655, - -0.013106572441756725, - -0.0234181210398674, - -0.023104660212993622, - 0.020557792857289314, - -0.00496639171615243, - -0.011382538825273514, - 0.025677649304270744, - -0.01831132546067238, - 0.007509994320571423, - -0.013726962730288506, - -0.012838824652135372, - -0.022947929799556732, - -0.019121097400784492, - 0.01572527550160885, - -0.01522896159440279, - -0.009057706221938133, - -0.016626473516225815, - 0.007242246530950069, - -0.017135847359895706, - 0.00764060253277421, - 0.023287512362003326, - 0.0012962903128936887, - 0.00035998993553221226, - 0.00621696887537837, - -0.01908191479742527, - 0.018533360213041306, - -0.018886001780629158, - 0.017357882112264633, - -0.00819568894803524, - -0.001012216554954648, - -0.009031584486365318, - 0.0029419586062431335, - -0.012838824652135372, - 0.015137535519897938, - 0.01737094298005104, - -0.02828982099890709, - -0.019617410376667976, - -0.06911806762218475, - 0.02347036451101303, - -0.005361482966691256, - -0.003090525744482875, - -0.009397287853062153, - -0.020923497155308723, - 0.0022856504656374454, - 0.005335361231118441, - 0.01259066816419363, - 0.014850197359919548, - -0.02860328182578087, - -0.005168835166841745, - -0.004375387914478779, - 0.015895064920186996, - -0.007020211778581142, - 0.0017289312090724707, - 0.02787187322974205, - 0.03147667273879051, - 0.01026583556085825, - 0.005188426468521357, - -0.01168946921825409, - -0.0022056526504456997, - 0.005994934588670731, - 0.0060471780598163605, - -0.029961612075567245, - 0.020714523270726204, - -0.004548444412648678, - -0.003283173544332385, - 0.0017419920768588781, - -0.008907506242394447, - 0.0100046182051301, - 0.001076704589650035, - -0.014824075624346733, - 0.01538569200783968, - -0.014980806037783623, - -0.0061614601872861385, - -0.00807161070406437, - 0.03377538174390793, - 0.0015885269967839122, - 0.0592440590262413, - -0.022569164633750916, - 0.004159883596003056, - 0.030745262280106544, - -0.009292801842093468, - -0.006941846571862698, - 0.002426054561510682, - 0.013609415851533413, - 0.01401430182158947, - 0.027009857818484306, - -0.010625009424984455, - 0.019042732194066048, - 0.019774140790104866, - -0.0006052891840226948, - -0.006269212346524, - 0.03907809033989906, - -0.02951754257082939, - 0.03455903381109238, - 0.009678096510469913, - 0.004692113492637873, - -0.01639137789607048, - 0.03108484484255314, - 0.010572765953838825, - 0.02229488641023636, - -0.016378317028284073, - 0.02027045376598835, - -0.001691381330601871, - -0.014432249590754509, - -0.01819377765059471, - 0.004842313472181559, - -0.05605720728635788, - -0.02357485145330429, - -0.025560101494193077, - 0.005198222119361162, - 0.03134606406092644, - -0.006657773163169622, - -0.007869168184697628, - 0.024580536410212517, - 0.016456682235002518, - -0.005629230290651321, - 0.013792267069220543, - 0.014197153970599174, - 0.01644362136721611, - -0.03769363835453987, - -0.006439003627747297, - -0.004300287924706936, - -0.007196533493697643, - -0.03009222075343132, - 0.007784272078424692, - -0.004812926519662142, - 0.005841469392180443, - -0.0054529085755348206, - 0.0036309189163148403, - -0.007542646024376154, - -0.02021821029484272, - 0.012270676903426647, - -0.016717899590730667, - 0.0019036201993003488, - -0.00606350414454937, - 0.004101109690964222, - 0.040201324969530106, - 0.021537357941269875, - -0.022373251616954803, - -0.003817036049440503, - -0.0046953787095844746, - -0.009789113886654377, - 0.02383606880903244, - -0.03239092975854874, - -0.02724495343863964, - -0.021628782153129578, - 0.012597198598086834, - -0.0021387157030403614, - 0.013211059384047985, - 0.000684062484651804, - 0.006683894898742437, - -0.03179012984037399, - 0.021328384056687355, - -0.023862190544605255, - -0.014562858268618584, - -0.026565788313746452, - 0.017749708145856857, - -0.00023631991643924266, - -0.005753308534622192, - 0.014745710417628288, - 0.00368316238746047, - 0.02946529909968376, - -0.0021419809199869633, - 0.0098282964900136, - -0.019970053806900978, - 0.014027362689375877, - -0.012949842028319836, - -0.013191468082368374, - 0.008548332378268242, - -0.020048419013619423, - -0.013126163743436337, - -0.016600351780653, - -0.005834938958287239, - 0.02461971901357174, - 0.01690075173974037, - -0.0034513319842517376, - 0.10516604036092758, - 0.052922602742910385, - -0.024110347032546997, - 0.02264752984046936, - 0.0018497442360967398, - 0.008731184527277946, - 0.0028831847012043, - -0.004799865651875734, - -0.006050443276762962, - -0.03944379463791847, - 0.009762992151081562, - -0.006765525322407484, - 0.018637847155332565, - -0.031006479635834694, - -0.012100886553525925, - -0.012061703950166702, - 0.005100265610963106, - 0.02461971901357174, - 0.0025680914986878633, - 0.000981197110377252, - 0.03273051232099533, - 0.008182628080248833, - 0.011598043143749237, - 0.01396205835044384, - -0.03278275579214096, - -0.02352260798215866, - 0.03411496430635452, - -0.028002481907606125, - 0.010448687709867954, - -0.010625009424984455, - -0.0047476221807301044, - 0.011630695313215256, - -0.040462542325258255, - -0.017488490790128708, - 0.030745262280106544, - -0.0208843145519495, - 0.009815235622227192, - -0.003797444747760892, - 0.03779812529683113, - 0.008848732337355614, - 0.01845499500632286, - 0.009286271408200264, - -0.004453753121197224, - -0.0359957292675972, - -0.01824602112174034, - -0.004972922150045633, - -0.0020864722318947315, - -0.025938866659998894, - -0.04633992910385132 - ], - "sparse": "SparseEmbedding(values=array([1.49429557, 1.49429557, 1.49429557, 1.49429557, 1.49429557,\n 1.49429557, 1.49429557, 1.49429557, 1.49429557, 1.49429557,\n 1.77974404, 1.49429557, 1.49429557, 1.49429557, 1.49429557,\n 1.49429557, 1.49429557, 1.77974404, 1.49429557, 1.49429557,\n 1.49429557, 1.49429557, 1.49429557, 1.49429557, 1.49429557,\n 1.49429557, 1.49429557, 1.49429557, 1.49429557, 1.49429557,\n 1.49429557, 1.49429557, 1.49429557, 1.49429557, 1.49429557,\n 1.49429557, 1.49429557, 1.49429557, 1.49429557, 1.49429557,\n 1.49429557, 1.49429557, 1.49429557, 1.49429557, 1.49429557,\n 1.49429557, 1.49429557]), indices=array([ 932042456, 988349156, 1891716419, 242003920, 909246637,\n 627849148, 489905694, 222810489, 1966288579, 2038194400,\n 135298167, 178503735, 219682112, 253935924, 1376624736,\n 150695120, 304522637, 1666082760, 1132567931, 753079005,\n 1584422431, 2079643764, 1287168361, 809426845, 648619802,\n 1056405393, 490471790, 1701593959, 1112552363, 1639121424,\n 376450507, 685289368, 2124172637, 22476906, 1425902633,\n 1903781279, 1225409782, 1001381969, 617246313, 1392430834,\n 2008590059, 1214902428, 125777136, 231980230, 603497528,\n 1972103513, 867840984]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 15, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 50 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000016.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000016.json deleted file mode 100644 index b8489f8b00dd3cdcce8fe40f4e17d4dfcabc1337..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000016.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000016", - "content": "MIV Motorisierte Individualverkehr \u00d6PNV \u00d6ffentlicher Personennahverkehr OSM Open Street Map PKW Personenkraftwagen RASt Richtlinie f\u00fcr die Anordnung von Stadtstra\u00dfen RCP Representive Concentration Pathways SDG Sustainable Development Goal shp Shapefile UHI Urban Heat Island UV Strahlung Ultraviolette Strahlung", - "embedding": { - "dense": [ - 0.012262205593287945, - 0.002938169287517667, - 0.008360289968550205, - -0.02504734881222248, - -0.011792903766036034, - 0.007756901439279318, - -0.009345825761556625, - 0.00040393543895334005, - -0.006519953720271587, - -0.024604864418506622, - 0.0078038317151367664, - -0.0034108241088688374, - -0.013348306529223919, - 0.004327640403062105, - -0.02995491400361061, - 0.00227946974337101, - 0.02141360566020012, - -0.005443910136818886, - 0.015768567100167274, - 0.03909960761666298, - -0.012496856972575188, - 0.01668035425245762, - 0.005283006001263857, - -0.024846220389008522, - 0.024953488260507584, - 0.017109431326389313, - 0.006348993629217148, - -0.0317784883081913, - -0.005960142705589533, - -0.013609775342047215, - 0.01661331206560135, - -0.008688801899552345, - 0.0010760438162833452, - -0.0041767931543290615, - -0.000987211475148797, - 0.008990496397018433, - 0.0022710892371833324, - -0.00033626367803663015, - -0.005293062888085842, - -0.011357122100889683, - -0.011873355135321617, - 0.0010081625077873468, - 0.0059567904099822044, - -0.02034091390669346, - 0.011645408347249031, - 0.008139047771692276, - 0.0012260529911145568, - -0.0019878316670656204, - -0.00854801107198, - 0.04196906089782715, - 0.01559425424784422, - 0.04089636728167534, - 0.007676449604332447, - -0.009225147776305676, - -0.004119806457310915, - 0.01027772668749094, - -0.0006524143973365426, - 0.02058226987719536, - -0.016935119405388832, - -0.029901279136538506, - 0.007039538584649563, - 0.003479543374851346, - -0.05162328481674194, - 0.012275614775717258, - -0.008615054190158844, - -0.01841006986796856, - -0.014561789110302925, - 0.01599651388823986, - 0.019710708409547806, - 0.014119303785264492, - 0.02618708461523056, - 0.02276787906885147, - 0.009151400066912174, - -0.007166920695453882, - 0.016948526725172997, - -0.016211051493883133, - -0.009627407416701317, - -0.022258350625634193, - 0.005712083075195551, - -0.013670113869011402, - 0.021789047867059708, - -0.02597254514694214, - -0.011893467977643013, - 0.02480599284172058, - 0.0004898345796391368, - 0.008628463372588158, - -0.019201179966330528, - 0.040708646178245544, - -0.012697987258434296, - 0.011980624869465828, - 0.009372643195092678, - 0.015245629474520683, - -0.0015067964559420943, - 0.003741011954843998, - -0.0009008933557197452, - -0.0078038317151367664, - 0.0044248527847230434, - 0.03955550491809845, - 0.007622814737260342, - -0.013770679011940956, - 0.008273134008049965, - 0.002385062864050269, - -0.012423110194504261, - -0.007810535840690136, - -0.04532122239470482, - -0.018356435000896454, - -0.0015411562053486705, - 0.012382883578538895, - 0.00854801107198, - -0.02500712312757969, - -0.007274189963936806, - 0.033602066338062286, - -0.010384995490312576, - -0.007575884461402893, - 0.006794830784201622, - -0.003529825946316123, - 0.02583845891058445, - -0.005185793619602919, - -0.022191308438777924, - -0.01779327169060707, - 0.02296900935471058, - 0.022379029542207718, - 0.010009553283452988, - -0.020609088242053986, - 0.011685634031891823, - 0.02211085520684719, - 0.009701155126094818, - -0.012275614775717258, - -0.017887132242321968, - -0.017323968932032585, - -0.015554028563201427, - -0.0008422305108979344, - -0.006526657845824957, - -0.005232723895460367, - -0.025784824043512344, - 0.013824312947690487, - -0.018503930419683456, - 0.0068384092301130295, - -0.048244304955005646, - -0.03424568101763725, - -0.010405108332633972, - -0.0005669342936016619, - -0.01985820382833481, - -0.014119303785264492, - 0.01385113038122654, - 0.009406164288520813, - -0.0016241221455857158, - 0.015031090937554836, - 0.030518077313899994, - -0.02193654328584671, - 0.0007173625053837895, - -0.03306571766734123, - 0.02272765338420868, - 0.0018386604497209191, - -0.013468984514474869, - 0.005819351878017187, - 0.001860449556261301, - 0.019817978143692017, - -0.0058830431662499905, - -0.010545899160206318, - -0.0063355849124491215, - -0.005913212429732084, - 0.012282319366931915, - 0.00022417579020839185, - 0.023344451561570168, - 0.004113101866096258, - -0.004116454161703587, - -3.6428566090762615e-05, - 0.006436149589717388, - -0.002443725476041436, - -0.020434774458408356, - 0.03885825350880623, - -0.04135226085782051, - 0.009660928510129452, - -0.008467559702694416, - 0.013536027632653713, - 0.004582404624670744, - 0.012577309273183346, - -0.027165915817022324, - -0.013033202849328518, - -0.01559425424784422, - 0.010284431278705597, - 0.026857515797019005, - 0.02086385153234005, - -0.01193369459360838, - 0.0045153615064918995, - 0.029552653431892395, - 0.01720329187810421, - 0.006003720685839653, - -0.020367732271552086, - 0.005028241779655218, - -0.014749509282410145, - 0.019429126754403114, - -0.025570286437869072, - -0.6500511169433594, - -0.025784824043512344, - -0.018423479050397873, - -0.0177262295037508, - 0.025194844231009483, - 0.02874813601374626, - 0.025623921304941177, - 0.01546016801148653, - 0.01571493223309517, - 0.030276721343398094, - -0.0031376229599118233, - 0.02428305707871914, - -0.0174848735332489, - -0.016211051493883133, - 0.003704138332977891, - -0.020528635010123253, - 0.013120359741151333, - -0.018530746921896935, - 0.04097681865096092, - 0.019817978143692017, - -0.009426277130842209, - -0.0008799423230811954, - -0.006087524816393852, - 0.0007341233431361616, - 0.01114258449524641, - 0.026964785531163216, - 0.018061446025967598, - -0.03271709382534027, - 0.01036488264799118, - 0.004317583981901407, - -0.02805088646709919, - 0.012161641381680965, - 0.0007169435266405344, - 0.0015528887743130326, - 0.056155405938625336, - 0.012563901022076607, - -0.010371587239205837, - 0.03244892135262489, - 0.007595997303724289, - 0.038777802139520645, - -0.006164624821394682, - 0.0010919665219262242, - 0.008608350530266762, - -0.0014891976024955511, - 0.0019191124010831118, - 0.019992290064692497, - 0.04564302787184715, - -0.027206141501665115, - 0.011001793667674065, - -0.018503930419683456, - 0.027782712131738663, - 0.0086217587813735, - -0.01122974045574665, - 0.010492265224456787, - 0.021306337788701057, - -0.0030504667665809393, - 0.004535474348813295, - -0.01321422029286623, - -0.006462967023253441, - 0.01678762398660183, - -0.0009000552818179131, - 0.016144009307026863, - -0.019938655197620392, - -0.014065668918192387, - -0.005199202336370945, - 0.026924559846520424, - -0.021601326763629913, - -0.009835241362452507, - -0.0012201867066323757, - -0.025825051590800285, - -0.014789735898375511, - 0.01761895976960659, - 0.0045153615064918995, - -0.012416405603289604, - 0.013676818460226059, - 0.022808104753494263, - 0.015379715710878372, - -0.0012159965699538589, - -0.0063992757350206375, - 0.00406617159023881, - 0.014347250573337078, - 6.840503920102492e-05, - -0.013321489095687866, - -0.0036672644782811403, - 0.014602014794945717, - -0.023196956142783165, - -0.033012084662914276, - -0.0194157175719738, - 0.007073060143738985, - 0.0024454016238451004, - 0.02410874329507351, - 0.010076597332954407, - 0.004079580307006836, - -0.026549117639660835, - -0.012483448721468449, - 0.016157416626811028, - -0.007549067493528128, - 0.03102760575711727, - 0.005581348668783903, - -0.043926723301410675, - -0.013810904696583748, - -0.009077652357518673, - 0.004408092238008976, - 0.018611200153827667, - 0.024403734132647514, - 0.012604126706719398, - -0.023679668083786964, - -0.013616479001939297, - 0.008581533096730709, - -0.038187820464372635, - -0.009681042283773422, - 0.0022124263923615217, - 0.0013584633124992251, - 0.0033504851162433624, - -0.008722323924303055, - -0.03212711215019226, - 0.016640128567814827, - 0.003828168148174882, - 0.007086468860507011, - -0.00962070282548666, - 0.01165881659835577, - -0.013810904696583748, - 0.02051522769033909, - -0.005527713801711798, - -0.0015042823506519198, - 0.013140472583472729, - 0.011880059726536274, - 0.014320433139801025, - -0.011001793667674065, - -0.018115079030394554, - 0.0077434927225112915, - -0.013743861578404903, - 0.02581164240837097, - -0.024417143315076828, - 0.046072106808423996, - 0.02417578734457493, - 0.013321489095687866, - -0.015071317553520203, - -0.008172568865120411, - -0.003486247733235359, - -0.020153194665908813, - -0.004451670218259096, - -0.0011430870508775115, - -0.05165010318160057, - -0.014789735898375511, - -0.009057539515197277, - 0.012074485421180725, - 0.012114711105823517, - -0.0033119353465735912, - -0.011095654219388962, - -0.010465447790920734, - -0.031242143362760544, - -0.002421936485916376, - 0.017109431326389313, - -0.005407036282122135, - -0.016318321228027344, - -0.021990178152918816, - -0.017109431326389313, - 0.005531066097319126, - -0.020287280902266502, - 0.010820777155458927, - 0.0008568962221033871, - -0.01893300749361515, - -0.01247004047036171, - 0.005712083075195551, - -0.006473023444414139, - -0.0006025509792380035, - 0.02853359654545784, - -0.019214589148759842, - -0.029391750693321228, - -0.00874243676662445, - 0.0018587734084576368, - -0.0014707607915624976, - -0.00476677343249321, - -0.02759499102830887, - 0.0007127532735466957, - -0.013603070750832558, - -0.028024068102240562, - -0.0039622546173632145, - -0.010633056052029133, - 0.013582957908511162, - -0.010384995490312576, - -0.009352530352771282, - -0.017833497375249863, - 0.0173373781144619, - 0.00443826150149107, - 0.006721083540469408, - 0.013904765248298645, - -0.013582957908511162, - 0.027447497472167015, - 0.010418517515063286, - 0.026133449748158455, - -0.0036739688366651535, - 0.0065635317005217075, - 0.005179089028388262, - 0.02204381301999092, - -0.018436886370182037, - 0.007294302806258202, - 0.02866768278181553, - 0.026093224063515663, - 0.03188575804233551, - -0.007958031259477139, - 0.01350921019911766, - -0.00485392939299345, - 0.03188575804233551, - -0.028989490121603012, - 0.002049846574664116, - -0.02522166259586811, - 0.038429178297519684, - 0.024551229551434517, - 0.01913413591682911, - 0.0023582454305142164, - -0.05030923709273338, - -0.010579421184957027, - -0.012845481745898724, - 0.0332266241312027, - -0.026964785531163216, - 0.00030337058706209064, - 0.0026415030006319284, - -0.010136935859918594, - 0.0066238706931471825, - 0.0014891976024955511, - 0.03223438188433647, - -0.007173625286668539, - -0.001369357923977077, - 0.0038415768649429083, - 0.006074116099625826, - 0.03142986446619034, - 0.009922397322952747, - -0.00011627809726633132, - -0.013515914790332317, - -0.0010190570028498769, - 0.016251277178525925, - -0.008856410160660744, - 0.01231584046036005, - 0.009479911997914314, - 0.010177161544561386, - -0.002840956673026085, - 0.03486247733235359, - 0.006442854180932045, - 0.026026180014014244, - 0.03164440393447876, - 0.02055545337498188, - -0.010653168894350529, - 0.01397180836647749, - -0.010928045958280563, - 0.027487723156809807, - 0.03022308647632599, - -0.013153880834579468, - 0.019147545099258423, - -0.025302113965153694, - -0.010472152382135391, - -0.014454519376158714, - -0.008165865205228329, - 0.008708914741873741, - 0.0032968507148325443, - 0.017055796459317207, - 0.009808423928916454, - 0.02673683874309063, - 0.020568862557411194, - -1.7323864085483365e-05, - 0.0015453463420271873, - 0.009372643195092678, - 0.012282319366931915, - -0.012309135869145393, - 0.005661800503730774, - -0.01910731941461563, - -0.016626719385385513, - -0.007052947301417589, - -0.001331646111793816, - 0.004210314713418484, - -0.01820893958210945, - -0.013603070750832558, - 0.0024638385511934757, - 0.01727033592760563, - -0.003801350947469473, - -0.010646464303135872, - 0.008970383554697037, - 0.027300002053380013, - 0.03743693605065346, - 0.004139919299632311, - -0.013341601938009262, - -0.004666208755224943, - 0.03692740947008133, - -0.006405980326235294, - -0.01575515791773796, - -0.018262574449181557, - 0.005990312434732914, - -0.02725977636873722, - -0.016747398301959038, - -0.007535658776760101, - 0.015285855159163475, - -0.0048036472871899605, - 0.00929219089448452, - -0.017189882695674896, - -0.006060707848519087, - 0.014669057913124561, - -0.011953807435929775, - -0.0015227192780002952, - 0.034701574593782425, - -0.011042019352316856, - -0.0071266950108110905, - 0.00352312158793211, - -0.012061076238751411, - 0.033628880977630615, - 0.010840889997780323, - -0.0037108424585312605, - -0.01948276162147522, - -0.011082245036959648, - -0.0066640968434512615, - -0.01559425424784422, - -0.022124264389276505, - -0.00535340141505003, - -0.00917151290923357, - -0.012590717524290085, - 0.007904396392405033, - -0.007166920695453882, - -0.028962673619389534, - 0.052454620599746704, - -0.00227946974337101, - -0.002142030978575349, - -0.02759499102830887, - 0.0001287439517909661, - 0.011839834041893482, - 0.040279570966959, - 0.018745286390185356, - -0.004458374343812466, - 0.004287414252758026, - -0.022647202014923096, - -0.014776326715946198, - -0.01575515791773796, - -0.03022308647632599, - 0.005762365180999041, - -0.0008543821168132126, - 0.004857281688600779, - 0.01613060012459755, - 0.018906189128756523, - -0.006392571609467268, - 0.024269647896289825, - 0.0012754973722621799, - 0.008273134008049965, - -0.019603438675403595, - 0.007160216569900513, - -0.020501818507909775, - -0.02066272310912609, - -0.036364246159791946, - 0.013529323041439056, - 0.038295090198516846, - 0.015245629474520683, - -0.002497360110282898, - 0.021601326763629913, - 0.015017682686448097, - 0.013207515701651573, - -0.01231584046036005, - 0.005521009676158428, - 0.027997251600027084, - 0.01871846802532673, - 0.007709971163421869, - -0.03220756724476814, - -0.02083703503012657, - 0.021306337788701057, - 0.00842733308672905, - 0.02459145523607731, - 0.02815815433859825, - 0.045374855399131775, - -0.0031275665387511253, - -0.008541307412087917, - -0.004334344528615475, - 0.010840889997780323, - -0.020649313926696777, - 0.0043410491198301315, - 0.012697987258434296, - 0.007609406020492315, - -0.017913950607180595, - 0.001080233952961862, - -0.015607663430273533, - -0.027313411235809326, - -0.002738715847954154, - -0.010083300992846489, - -0.004830464255064726, - 0.011383939534425735, - -0.000987211475148797, - -0.013985216617584229, - -0.01827598363161087, - -0.0146824661642313, - -0.01792735792696476, - -0.004850577563047409, - -0.016841258853673935, - -0.012248797342181206, - 0.0044751353561878204, - -0.012490153312683105, - 1.0855241271201521e-05, - -0.03555972874164581, - 0.013334897346794605, - 0.03325343877077103, - -0.022016994655132294, - -0.03695422783493996, - -0.00032976886723190546, - -0.013408645056188107, - 0.0013081809738650918, - 0.015191994607448578, - -0.0035164172295480967, - -0.010673281736671925, - 0.008105525746941566, - -0.018396660685539246, - -0.012121415697038174, - -0.005826056469231844, - -0.015567436814308167, - -0.02055545337498188, - 0.010974976234138012, - -0.010579421184957027, - 0.0028945913072675467, - -0.01310695055872202, - 0.026790473610162735, - 0.01090122852474451, - 0.0005753146833740175, - 0.022258350625634193, - 0.004072876181453466, - -0.022741062566637993, - 0.009627407416701317, - 0.020461592823266983, - 0.006570236291736364, - 0.0070663560181856155, - -0.006945678032934666, - 0.02355898916721344, - -0.002482275478541851, - -0.01039840467274189, - -0.016398772597312927, - 0.03585471585392952, - 0.0008816184126771986, - 0.004709786735475063, - 0.010773846879601479, - 0.01586242765188217, - 0.005128806922584772, - 0.0064897844567894936, - -0.026924559846520424, - 0.009908989071846008, - -0.010686689987778664, - 0.006972495466470718, - 0.028855403885245323, - 0.006959086749702692, - 0.01521881204098463, - -0.002584516303613782, - -0.0023314282298088074, - -0.017350787296891212, - 0.009473207406699657, - 0.029445385560393333, - 0.002153763547539711, - -0.0035264736507087946, - 0.010974976234138012, - 0.0028778305277228355, - 0.016358546912670135, - -0.008990496397018433, - 0.00908435694873333, - 0.024846220389008522, - 0.023089686408638954, - 0.007502137217670679, - -0.010720212012529373, - 0.012262205593287945, - -0.01692171022295952, - 0.008708914741873741, - -0.0028979433700442314, - -0.0222181249409914, - -0.0138377221301198, - -0.026240719482302666, - -0.0049679032526910305, - 0.005293062888085842, - 0.02756817452609539, - 0.0046293349005281925, - -0.028694501146674156, - -0.009158104658126831, - -0.0031426511704921722, - -0.0005677723092958331, - 0.031966209411621094, - -0.002453782130032778, - 0.0015394800575450063, - -0.035532910376787186, - 0.00308734062127769, - -0.010217387229204178, - -0.03137623146176338, - -0.018503930419683456, - -0.016385365277528763, - 0.001734743476845324, - 0.02459145523607731, - 0.01343546248972416, - -0.0037946465890854597, - -0.00596684729680419, - 0.006107638124376535, - 0.005021537654101849, - 0.0017900541424751282, - -0.00048354925820603967, - 8.946080197347328e-05, - -0.042371317744255066, - 0.001805138890631497, - 0.016465816646814346, - 0.019201179966330528, - 0.013133767992258072, - -0.008594941347837448, - -0.0017481520771980286, - 0.0035432344302535057, - -0.01298627257347107, - -0.014749509282410145, - -0.0028376046102494, - -0.033870238810777664, - -0.006057355552911758, - 0.011202923022210598, - -0.003010240849107504, - 0.021024756133556366, - -0.03167121857404709, - -0.016398772597312927, - 0.03403114154934883, - -0.009835241362452507, - 0.00923855695873499, - 0.007187034003436565, - 0.013743861578404903, - -0.03175167366862297, - 0.012396292760968208, - 0.0016291503561660647, - 0.00048019710811786354, - -0.009426277130842209, - 0.0052561890333890915, - -0.019777752459049225, - -0.00659705325961113, - 0.025610512122511864, - -0.006288654636591673, - -0.002291202312335372, - 0.012879003770649433, - 0.002100129146128893, - -0.009432981722056866, - -0.0021956656128168106, - 0.006680857390165329, - -0.012738212943077087, - 0.0013953371671959758, - -0.01397180836647749, - -0.0075691803358495235, - -0.0047433082945644855, - -0.02563733048737049, - -0.03885825350880623, - 0.0077032665722072124, - -0.01172586064785719, - -0.011042019352316856, - 0.022647202014923096, - -0.03864371404051781, - -0.002581164240837097, - 0.006416036747395992, - -0.008568123914301395, - 0.02366625890135765, - -0.009573772549629211, - 0.03486247733235359, - 0.012255501933395863, - -0.018369844183325768, - -0.024256238713860512, - -0.03180530667304993, - -0.016009923070669174, - -0.009030723012983799, - 0.03703467920422554, - 0.021976768970489502, - 0.0019895078148692846, - -0.03891189023852348, - -0.0027940263971686363, - 0.00679818307980895, - 0.0059366775676608086, - -0.023894205689430237, - 0.00907094869762659, - 0.03759784251451492, - 0.00704624317586422, - 0.0012235388858243823, - -0.0019258166430518031, - -0.020059334114193916, - 0.011296783573925495, - 0.016506042331457138, - -0.003898563561961055, - 0.0017054120544344187, - 0.004555587191134691, - -0.031590767204761505, - 0.032797545194625854, - -0.008601645939052105, - 0.017015570774674416, - 0.01395840011537075, - -0.01865142583847046, - -0.02110520750284195, - -0.03384342044591904, - 0.006305415648967028, - 0.027232958003878593, - 0.0019258166430518031, - 0.014548379927873611, - 0.0312957763671875, - -0.011169401928782463, - 0.009439686313271523, - 0.020434774458408356, - 0.020702948793768883, - -0.009024018421769142, - 0.015728341415524483, - 0.02638821303844452, - -0.0022342156153172255, - -0.016009923070669174, - -0.0038047030102461576, - -0.029391750693321228, - 0.0060372427105903625, - 0.018812328577041626, - -0.009660928510129452, - -0.015299264341592789, - -0.021990178152918816, - -0.011926990002393723, - 0.0035767562221735716, - -0.006131102796643972, - -0.015728341415524483, - -0.02152087539434433, - -0.018182123079895973, - -0.03378978744149208, - -0.01637195609509945, - -0.013944990932941437, - 0.01177949458360672, - -0.028131337836384773, - -0.014950639568269253, - -0.003808055305853486, - -0.003266681218519807, - 0.04612573981285095, - 0.010713507421314716, - -0.011410756967961788, - -0.0036773208994418383, - 0.029043124988675117, - -0.041298627853393555, - 0.02649548277258873, - 0.056155405938625336, - 0.006959086749702692, - -0.014977457001805305, - 0.016707172617316246, - 0.0012092922115698457, - -0.04194224253296852, - 0.005427149124443531, - -0.005601461511105299, - -0.035908352583646774, - 0.008554715663194656, - -0.008360289968550205, - 0.016640128567814827, - 0.00211521377786994, - 2.3072298063198105e-05, - 0.015808792784810066, - 0.006707674823701382, - 0.015741748735308647, - -0.010673281736671925, - -0.0027722374070435762, - 0.0293649323284626, - -0.007649632170796394, - 0.005443910136818886, - 0.02839951030910015, - -0.010894523933529854, - 0.015259038656949997, - 0.009298895485699177, - 0.014856779016554356, - -0.00605400325730443, - -0.011652112938463688, - -0.017565324902534485, - 0.01373045239597559, - 0.01841006986796856, - -0.010043075308203697, - 0.0026364747900515795, - 0.005926621146500111, - -0.001909055863507092, - -0.018557565286755562, - -0.001996212173253298, - 0.0028945913072675467, - -0.009278782643377781, - 0.014829961583018303, - 0.011115767061710358, - -0.0074619110673666, - 0.00345943053252995, - -0.0065098972991108894, - 0.019214589148759842, - -0.0045388261787593365, - 0.0013651676708832383, - -0.011283375322818756, - -0.008467559702694416, - 0.008943566121160984, - 0.02235221117734909, - 0.025516651570796967, - -0.03298526629805565, - 0.000976316980086267, - -0.005283006001263857, - -0.06157249957323074, - -0.015621071681380272, - -0.003472839016467333, - -0.00692556519061327, - 0.015098134987056255, - 0.023089686408638954, - -0.01713624782860279, - 0.006462967023253441, - 0.012905821204185486, - 0.03116169199347496, - 0.005960142705589533, - -0.004636039026081562, - 0.006721083540469408, - 0.008112230338156223, - 0.008661984466016293, - 0.0038851548451930285, - -0.025449609383940697, - -0.0017548564355820417, - 0.006251780781894922, - -0.0036806731950491667, - 0.021292928606271744, - 0.037222400307655334, - -0.021132024005055428, - 5.981512731523253e-05, - 0.015419942326843739, - 0.012295727618038654, - 0.003995776176452637, - 0.00431087939068675, - 0.016626719385385513, - -0.038777802139520645, - -0.015419942326843739, - 0.009868762455880642, - -0.010311247780919075, - -0.0006469671498052776, - -0.013066724874079227, - -0.0018554212292656302, - 0.011015201918780804, - -0.012570604681968689, - 0.01371704414486885, - -0.01172586064785719, - -0.009600589983165264, - -0.013542731292545795, - -0.00025266915326938033, - 0.01945594511926174, - 0.0015193670988082886, - 0.027514539659023285, - -0.002235891530290246, - 0.004512009210884571, - 0.01647922582924366, - 0.0020029162988066673, - -0.019925246015191078, - -0.01841006986796856, - -0.004079580307006836, - -0.018289392814040184, - 0.039850492030382156, - -0.009158104658126831, - 0.002919732592999935, - -0.009587181732058525, - 0.00953354686498642, - -0.007823944091796875, - -0.017887132242321968, - -0.026066405698657036, - 0.003201314015313983, - -0.0025292057543992996, - -0.006362402345985174, - 0.013944990932941437, - -0.01024420466274023, - -0.009044131264090538, - -0.003065551398321986, - -0.02366625890135765, - 0.022016994655132294, - -0.01480314414948225, - -0.0054841358214616776, - -0.0021688484121114016, - -0.0027856461238116026, - 0.004418148659169674, - 0.014910413883626461, - -0.015259038656949997, - -0.019214589148759842, - 0.025623921304941177, - 0.18847191333770752, - -0.021507466211915016, - 0.006271893624216318, - 0.017149657011032104, - -0.03550609201192856, - -0.0146824661642313, - 0.035077016800642014, - -0.0019207884324714541, - 0.007750196848064661, - 0.021091798320412636, - -0.026549117639660835, - 0.004160032141953707, - 0.011585069820284843, - -0.0023917669896036386, - 0.01006989274173975, - -0.012798551470041275, - -0.04097681865096092, - -0.019120728597044945, - 0.004518713336437941, - 0.018772102892398834, - 0.01623786985874176, - -0.03188575804233551, - 0.0013324840692803264, - -0.015124951489269733, - -0.018772102892398834, - 0.01414612028747797, - -0.016814440488815308, - -0.010331361554563046, - 0.03679332137107849, - 0.014695875346660614, - -0.010525786317884922, - 0.01027772668749094, - 0.008058595471084118, - -0.00269513763487339, - 0.02099793776869774, - 0.0006566045922227204, - 0.009908989071846008, - -0.007844057865440845, - 0.0198984295129776, - 0.0346747562289238, - -0.0019559860229492188, - -0.0012210247805342078, - -0.014065668918192387, - -0.028506780043244362, - 0.0012553844135254622, - 0.01546016801148653, - -0.02272765338420868, - -0.00046930258395150304, - 0.01255719643086195, - -0.020367732271552086, - -0.020220236852765083, - -0.022606976330280304, - 0.017015570774674416, - 0.03749057278037071, - -0.0011497912928462029, - -0.0006373296491801739, - 0.01438747625797987, - 0.033494796603918076, - -0.007428389508277178, - 0.002787322038784623, - -0.023853980004787445, - 0.01326785422861576, - -0.021815866231918335, - 0.01036488264799118, - -0.011337009258568287, - 0.006519953720271587, - -0.0243903249502182, - -0.004924324806779623, - 0.013220923952758312, - -0.021949952468276024, - -0.004525417927652597, - -0.015621071681380272, - 0.004843872971832752, - -0.008843001909554005, - -0.02612004056572914, - -0.02697819471359253, - 0.022097447887063026, - 0.00405946746468544, - 0.004106397740542889, - 0.02469872497022152, - -0.01906709372997284, - 0.00460251746699214, - -0.01755191572010517, - -0.021333154290914536, - 0.011129175312817097, - -0.05242780223488808, - 0.02362603321671486, - 0.01924140565097332, - -0.010150344111025333, - -0.008896635845303535, - 0.007562475744634867, - -0.016573086380958557, - 0.007508841343224049, - 0.008387107402086258, - 0.004317583981901407, - 0.0025225013960152864, - -0.00898379273712635, - -0.006422740872949362, - -0.0025157970376312733, - 0.01858438178896904, - -0.012858890928328037, - 0.06570236384868622, - 0.03081306628882885, - -0.02325059100985527, - -0.0007232287898659706, - 0.01882573775947094, - 0.004733251873403788, - -0.010351474396884441, - -0.0014296968001872301, - -0.03824145719408989, - 0.0025778119452297688, - -0.028131337836384773, - -0.005417092703282833, - -0.003290146356448531, - 0.013944990932941437, - 0.00820609088987112, - -0.0009176541352644563, - -0.01165881659835577, - 0.011357122100889683, - 0.0005149758071638644, - 0.000977155053988099, - -0.014910413883626461, - -0.02594572864472866, - 0.002845984883606434, - -0.0021085094194859266, - 0.0028007307555526495, - -0.03212711215019226, - 0.019697299227118492, - -0.005068467929959297, - -0.008715619333088398, - 0.018557565286755562, - -0.024269647896289825, - 0.006134455092251301, - -0.012040963396430016, - -0.0014213164104148746, - 0.016733989119529724, - 0.0087893670424819, - -0.022057222202420235, - 0.012604126706719398, - -0.014427701942622662, - 0.013797495514154434, - 0.004049411043524742, - 0.000332911527948454, - -0.004887450952082872, - 0.004659504164010286, - 0.009513434022665024, - 0.0018956472631543875, - -0.006151216104626656, - -0.03354842960834503, - -0.017846906557679176, - -0.012704690918326378, - -0.01036488264799118, - 0.008078708313405514, - -0.020166601985692978, - 0.021882908418774605, - 0.008507785387337208, - -0.012530378997325897, - -0.016881484538316727, - 0.030893519520759583, - 0.00393878947943449, - -0.012409701012074947, - 0.004284061957150698, - 0.01027772668749094, - -0.016747398301959038, - -0.013918173499405384, - -0.0009210063144564629, - -0.17216700315475464, - 0.020019106566905975, - 0.034808844327926636, - -0.047305699437856674, - 0.0003151031560264528, - 0.006938973907381296, - 0.015674706548452377, - 0.0005941705894656479, - 0.009426277130842209, - -0.011518026702105999, - 0.04859292879700661, - -0.004823760129511356, - -0.03185893967747688, - -0.005011481232941151, - 0.013448870740830898, - 0.017431238666176796, - -0.022861739620566368, - 0.03899234160780907, - 0.01414612028747797, - 0.002763856900855899, - 0.026897741481661797, - -0.01768600381910801, - 0.018664835020899773, - -0.005276301875710487, - 0.004019241314381361, - -0.009298895485699177, - -0.0168546661734581, - 0.03263664245605469, - -0.01115599274635315, - -0.017699411138892174, - 0.002018001163378358, - 0.0032314835116267204, - 0.04722524806857109, - 0.014870187267661095, - 0.0029934800695627928, - -0.003348809201270342, - -0.00834017712622881, - -0.006841761060059071, - -0.023853980004787445, - 0.028104519471526146, - 0.011618590913712978, - 0.004022593609988689, - 0.009265373460948467, - 0.008253021165728569, - -0.025731191039085388, - 0.005115398205816746, - 0.004243836272507906, - 0.010907933115959167, - -0.0018554212292656302, - 0.001952633960172534, - 0.010767142288386822, - -0.0035801082849502563, - 0.0011523053981363773, - -0.006885339505970478, - 0.002775589469820261, - 0.025194844231009483, - 0.009493321180343628, - 0.019697299227118492, - 0.026763655245304108, - -0.009345825761556625, - -0.03164440393447876, - -0.010820777155458927, - 0.011337009258568287, - -0.017538508400321007, - 0.009372643195092678, - -0.03896552324295044, - -0.0016450731782242656, - 0.014481336809694767, - -0.026683203876018524, - -0.00030462766881100833, - -0.035077016800642014, - -0.014293615706264973, - 0.007542362902313471, - -0.0020146488677710295, - 0.008387107402086258, - -0.003995776176452637, - -0.004247188568115234, - 0.00758258905261755, - -0.0009679365903139114, - 0.005262893158942461, - -0.025516651570796967, - 0.0511942058801651, - -0.015446759760379791, - -0.007944622077047825, - 0.0004994720220565796, - -0.0013031527632847428, - -0.014856779016554356, - -0.008635167963802814, - 0.004149975720793009, - 0.014454519376158714, - -0.007227259688079357, - -0.017350787296891212, - -0.020166601985692978, - -0.013663409277796745, - 0.011088949628174305, - -0.011008497327566147, - 0.00568191334605217, - 0.014253390021622181, - -0.016036739572882652, - -0.03191257640719414, - 0.010371587239205837, - 0.00043242881656624377, - -0.027005011215806007, - 0.0031510316766798496, - 0.025020532310009003, - -1.559540760354139e-05, - 0.0013542731758207083, - -0.0036035734228789806, - 0.024376917630434036, - 0.011283375322818756, - -0.025851868093013763, - -0.008883227594196796, - 0.00605400325730443, - 0.008507785387337208, - -0.018544156104326248, - 0.0012578985188156366, - -0.005423796828836203, - -0.008775957860052586, - 0.008232908323407173, - 0.0019509579287841916, - 0.031108057126402855, - -0.010237501002848148, - -0.004113101866096258, - 0.0026063055265694857, - 0.010405108332633972, - -0.021923134103417397, - -0.08291906118392944, - -0.031939394772052765, - 0.03789282962679863, - 0.011323601007461548, - -0.035077016800642014, - 0.03185893967747688, - 0.002732011489570141, - 0.017538508400321007, - 0.000297294813208282, - 0.017525099217891693, - -0.0011204598704352975, - -0.04073546454310417, - -0.018973233178257942, - 0.006724435370415449, - 0.03344115987420082, - -0.010525786317884922, - -0.003321991767734289, - -0.02373330295085907, - -0.034487035125494, - 0.009305600076913834, - 0.0036404472775757313, - -0.004736603703349829, - -0.013287967070937157, - 0.0026482073590159416, - -0.023156730458140373, - 0.01882573775947094, - -0.03451385349035263, - 0.0026331227272748947, - 0.011048723943531513, - -0.008896635845303535, - -0.01078055053949356, - -0.023103095591068268, - 0.012262205593287945, - -0.021856091916561127, - -0.0006444529863074422, - 0.01214152853935957, - -0.01057271659374237, - -0.024376917630434036, - 0.037222400307655334, - -0.018182123079895973, - 0.01155825238674879, - 0.00704624317586422, - 0.02058226987719536, - -0.013019794598221779, - -0.010177161544561386, - -0.0223119854927063, - -0.01610378362238407, - 0.024537820369005203, - -0.0023800344206392765, - -0.0020029162988066673, - -0.018919598311185837, - -0.018007811158895493, - -0.03185893967747688, - 0.008588237687945366, - 0.0016735665267333388, - -0.013341601938009262, - 0.005373514723032713, - 0.006610461976379156, - -0.018262574449181557, - 0.003935437183827162, - -0.017779864370822906, - -0.0049813115037977695, - -0.029338115826249123, - 0.03909960761666298, - -0.021051572635769844, - 0.008306656032800674, - -0.035640180110931396, - -0.0227946974337101, - -0.0021638202015310526, - -0.029284480959177017, - -0.022687427699565887, - -0.000758007459808141, - -0.010110118426382542, - 0.006184737663716078, - -0.02300923503935337, - -0.009694450534880161, - -0.03875098377466202, - -0.016640128567814827, - 0.008078708313405514, - -0.0296062882989645, - 0.002105157356709242, - -0.018061446025967598, - 0.03633742779493332, - -0.030303537845611572, - 0.018611200153827667, - 0.040467292070388794, - -0.0020012403838336468, - 0.006972495466470718, - 0.0029549302998930216, - -0.011189514771103859, - 0.021440424025058746, - 0.02397465705871582, - 0.02007274143397808, - -0.042129963636398315, - 0.0009662605007179081, - 0.013455575332045555, - 0.006419389043003321, - 0.007482023909687996, - -0.010083300992846489, - 0.005457318387925625, - -0.0243903249502182, - -0.007609406020492315, - -0.06859862804412842, - 0.023411493748426437, - 0.023706484586000443, - -0.004461726639419794, - -0.025570286437869072, - -0.01595628820359707, - 0.0051422156393527985, - 0.0030504667665809393, - 0.025302113965153694, - 0.004260596819221973, - 0.0018939711153507233, - 0.006479728035628796, - 0.001288068015128374, - 0.022781288251280785, - -0.01838325336575508, - -0.0050818766467273235, - 0.013536027632653713, - 0.019214589148759842, - -0.0036303906235843897, - 0.0046896738931536674, - -0.013241036795079708, - -0.0062182592228055, - 0.01623786985874176, - 0.005045002792030573, - -0.017471464350819588, - 0.011095654219388962, - 0.01546016801148653, - 0.023813754320144653, - -0.0012796876253560185, - 0.0016568057471886277, - 0.02355898916721344, - -0.03488929569721222, - -0.014280207455158234, - 0.010458743199706078, - 0.0005145567702129483, - -0.014065668918192387, - -0.003888507140800357, - 0.030518077313899994, - -0.0024236126337200403, - 0.03472839295864105, - -0.01265776064246893, - -0.02794361673295498, - 0.0035700518637895584, - -0.01869165152311325, - -0.005279654171317816, - -0.0014439434744417667, - 0.004525417927652597, - 0.014226572588086128, - 0.003486247733235359, - -0.009754789061844349, - 0.016452407464385033, - 0.02469872497022152, - -0.008956975303590298, - -0.022580157965421677, - 0.025141209363937378, - -0.015875836834311485, - -0.006932269781827927, - 0.017283743247389793, - -0.00030127548961900175, - -0.0151651781052351, - 0.05047013983130455, - 0.018007811158895493, - 0.016385365277528763, - -0.009734676219522953, - 0.012892412021756172, - 0.002356569282710552, - -0.019885020330548286, - -0.0038047030102461576, - -0.000310912961140275, - -0.03832190856337547, - -0.04953153431415558, - -0.01057271659374237, - 0.01619764417409897, - 0.035666994750499725, - -0.006178033072501421, - -0.02276787906885147, - 0.023170139640569687, - 0.0026314465794712305, - -0.02410874329507351, - 0.01751169003546238, - 0.007696562446653843, - 0.014736101031303406, - -0.027206141501665115, - 0.00044709452777169645, - 0.006462967023253441, - 0.01342205423861742, - -0.01895982399582863, - 0.011531434953212738, - -0.01764577627182007, - -0.00186547776684165, - -0.014776326715946198, - 0.009520137682557106, - 0.021507466211915016, - -0.0075289541855454445, - 0.022271759808063507, - 0.007073060143738985, - 0.005021537654101849, - -0.006821648217737675, - 0.0025610511656850576, - 0.04674253612756729, - 0.005185793619602919, - -0.012691282667219639, - 0.009339121170341969, - -0.03137623146176338, - -0.016693763434886932, - 0.01934867538511753, - -0.014548379927873611, - -0.010076597332954407, - -0.025503242388367653, - 0.026415031403303146, - 0.0018537451978772879, - 0.013100245967507362, - 0.0028225197456777096, - -0.0021822568960487843, - -0.011504617519676685, - 0.02110520750284195, - -0.002601277083158493, - -0.012175049632787704, - -0.010110118426382542, - 0.027782712131738663, - 0.003283441998064518, - 0.006586996838450432, - -0.012865595519542694, - 0.0011657141149044037, - 0.031456682831048965, - 0.003556643147021532, - -0.004210314713418484, - -0.014561789110302925, - 0.03588153421878815, - -0.011518026702105999, - -0.009265373460948467, - -0.013576253317296505, - -0.012188458815217018, - -0.001909055863507092, - -0.027729079127311707, - -0.012188458815217018, - -0.0010073244338855147, - 0.02829224057495594, - -0.008420629426836967, - 0.11595796048641205, - 0.008829592727124691, - -0.009567067958414555, - -0.008165865205228329, - 0.0011841509258374572, - -0.003462782595306635, - 0.015272446908056736, - -0.0015202051727101207, - 0.010854298248887062, - -0.0378660149872303, - 0.01533949002623558, - -0.02193654328584671, - 0.01672057993710041, - -0.042371317744255066, - -0.003213046584278345, - 0.019268224015831947, - -0.02504734881222248, - 0.015299264341592789, - -0.007502137217670679, - 0.005105341784656048, - 0.022580157965421677, - 0.0014003653777763247, - 0.015486985445022583, - 0.016532858833670616, - -0.015071317553520203, - -0.02156110107898712, - 0.009774901904165745, - -0.007274189963936806, - 0.005561235826462507, - -0.02732681855559349, - -0.014132712036371231, - -0.00026628730120137334, - -0.02818497270345688, - -0.019777752459049225, - 0.015741748735308647, - -0.015312672592699528, - -0.0034393174573779106, - -0.030035365372896194, - 0.04341719299554825, - -0.00725407712161541, - 0.003435965394601226, - 0.03671287000179291, - -0.0229421928524971, - -0.029043124988675117, - -0.004069523885846138, - -0.019201179966330528, - -0.008849705569446087, - -0.03244892135262489, - -0.008729027584195137 - ], - "sparse": "SparseEmbedding(values=array([1.53837749, 1.53837749, 1.53837749, 1.53837749, 1.53837749,\n 1.53837749, 1.53837749, 1.53837749, 1.53837749, 1.53837749,\n 1.53837749, 1.53837749, 1.53837749, 1.53837749, 1.53837749,\n 1.53837749, 1.53837749, 1.53837749, 1.53837749, 1.53837749,\n 1.53837749, 1.53837749, 1.53837749, 1.53837749, 1.53837749,\n 1.53837749, 1.53837749, 1.53837749, 1.53837749, 1.53837749,\n 1.53837749, 1.53837749, 1.53837749, 1.53837749, 1.81064138,\n 1.53837749]), indices=array([1661696679, 1408881661, 421005081, 300265840, 1226210254,\n 1069674560, 112882535, 2091876921, 1421544012, 350407992,\n 663060246, 1331108610, 858374087, 1227009850, 2124172637,\n 1109731834, 2061370966, 1638510030, 580347437, 1076891951,\n 1731862276, 1732871439, 421671964, 210844029, 1264823322,\n 659326392, 1117092987, 1268318538, 196362427, 1885258611,\n 1894123915, 1144702808, 553861595, 1098758338, 948554980,\n 2087128316]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 16, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 37 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000017.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000017.json deleted file mode 100644 index f0db2eab0fd5f644a8923b7d2a207aa6432fd351..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000017.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000017", - "content": "V Abbildungsverzeichnis", - "embedding": { - "dense": [ - -0.017740873619914055, - 0.006245707627385855, - 0.0038828118704259396, - -0.026336705312132835, - -0.030653778463602066, - 0.02792048268020153, - -0.019414059817790985, - -0.01375588309019804, - 0.008346768096089363, - 0.00031132742878980935, - 0.012874587439000607, - 0.0037997912149876356, - 0.0006198608898557723, - 0.01798355020582676, - -0.0011598942801356316, - -0.012912903912365437, - 0.028686827048659325, - 0.009068409912288189, - 0.004942921921610832, - -0.02494451217353344, - 0.011463236063718796, - 0.010581939481198788, - 0.0027987537905573845, - -0.018136819824576378, - -0.011444076895713806, - -0.00019008935487363487, - 0.014432820491492748, - -0.022364486008882523, - 0.004649156238883734, - 0.012465870007872581, - 0.0091578159481287, - 0.001096032210625708, - -0.00048575064283795655, - -0.023884402588009834, - -0.006095631513744593, - -0.0059838732704520226, - -0.02218567207455635, - -0.03571165353059769, - -0.0020930783357471228, - 0.0014744148356840014, - 0.012702159583568573, - -0.012663842178881168, - 0.00044743341277353466, - -0.0020148472394794226, - -0.0022319783456623554, - 0.008014685474336147, - 0.02327132783830166, - 0.030985862016677856, - -0.00990500207990408, - 0.0370144359767437, - 0.0006621695356443524, - 0.02416539564728737, - -0.022466665133833885, - -0.007644285913556814, - 0.012497801333665848, - 0.00800191331654787, - -0.016425317153334618, - 0.018111273646354675, - -0.007969981990754604, - -0.009017319418489933, - -0.02282429300248623, - -0.002005268121138215, - -0.020908432081341743, - -0.0011726666707545519, - -0.045214325189590454, - -0.007931665517389774, - -0.00013710380881093442, - -0.011252490803599358, - 0.004546977113932371, - -0.02356509305536747, - 0.04503551125526428, - 0.015403524041175842, - 0.012025222182273865, - -0.004333039280027151, - 0.02717968448996544, - -0.026924235746264458, - -0.015250254422426224, - 0.019567329436540604, - -0.0017035198397934437, - -0.005441045854240656, - 0.017804736271500587, - -0.018187908455729485, - -0.01857108063995838, - 0.010083816014230251, - 0.02743513137102127, - 0.006980120670050383, - 0.006488383281975985, - 0.022760430350899696, - -0.020461397245526314, - -0.012018836103379726, - 0.017587605863809586, - 0.04467788338661194, - -0.003165960544720292, - 0.004515046253800392, - 0.009962477721273899, - -0.010728822089731693, - -0.01509698573499918, - 0.023335188627243042, - 0.012951221317052841, - -0.03831722214818001, - 0.0021729059517383575, - 0.029427627101540565, - -0.014100737869739532, - 0.004428832326084375, - -0.009515443816781044, - -0.003873232752084732, - 0.011060904711484909, - -0.005942362826317549, - 0.007593196351081133, - -0.017063936218619347, - -0.018175136297941208, - 0.020205948501825333, - -0.007906120270490646, - -0.024663519114255905, - 0.03387242555618286, - -0.01843058504164219, - 0.03075595758855343, - -0.006846010684967041, - 0.006960962433367968, - -0.011488780379295349, - 0.013155579566955566, - 0.015914419665932655, - 0.01204438041895628, - -0.014215690083801746, - -0.005868921522051096, - -0.013257759623229504, - 0.014598862268030643, - -0.010045498609542847, - 0.0009523426415398717, - 0.002913705538958311, - 0.028124842792749405, - 0.00941965077072382, - 0.01880098506808281, - -0.02002713456749916, - 0.00194779213052243, - 0.008250975050032139, - -0.018928708508610725, - 0.010613870806992054, - -0.03354034200310707, - -0.026260070502758026, - 0.019030887633562088, - 0.00706314155831933, - -0.03351479768753052, - -0.020371990278363228, - 0.020333673804998398, - 0.017447108402848244, - 0.004773687571287155, - 0.01300869695842266, - -0.013423800468444824, - -0.021879134699702263, - -0.03264627605676651, - -0.015416296198964119, - 0.025774719193577766, - -0.02825256623327732, - 0.008155182003974915, - -0.011788932606577873, - -0.015416296198964119, - -0.002773209009319544, - 0.0001075676191248931, - -0.0016316750552505255, - -0.00966232642531395, - 0.006986507214605808, - 0.003742315573617816, - -0.016591357067227364, - 0.025033919140696526, - 0.01604214496910572, - 0.007031210698187351, - -0.021955769509077072, - -0.004697052761912346, - -0.019375743344426155, - -0.0036848396994173527, - 0.02445916086435318, - -0.007293045055121183, - 0.020755162462592125, - -0.023092513903975487, - -0.00041869550477713346, - 0.0025752366054803133, - -0.024740153923630714, - -0.021751411259174347, - -0.005718845408409834, - -0.030219517648220062, - 0.014471137896180153, - 0.000973896065261215, - 0.0031787329353392124, - -0.02368004433810711, - 0.009151429869234562, - 0.025442635640501976, - 0.02352677471935749, - 0.0045661358162760735, - -0.023999353870749474, - -0.00040831792284734547, - 0.02193022333085537, - 0.022172899916768074, - -0.016220957040786743, - -0.6858271956443787, - -0.023654500022530556, - -0.0124147804453969, - -0.01101620215922594, - 0.028227021917700768, - 0.03790850564837456, - -2.9236840418889187e-05, - 0.014547772705554962, - -0.011974132619798183, - 0.0124147804453969, - -0.003614591434597969, - -0.00041350669926032424, - 0.013985786586999893, - 0.008940685540437698, - 0.004422446247190237, - -0.014292323961853981, - -0.009560147300362587, - -0.025710856541991234, - 0.023258553817868233, - 0.0003596231108531356, - -0.005300549324601889, - 0.00041350669926032424, - 0.01558233704417944, - -0.009030092507600784, - 0.011993290856480598, - 0.009240836836397648, - 0.00960485078394413, - -0.02173863723874092, - 0.003317632945254445, - 0.004971659742295742, - -0.03428114205598831, - -0.0023517196532338858, - -0.007599582429975271, - 0.01367924828082323, - 0.04646601900458336, - 0.038138408213853836, - -0.02125328592956066, - 0.005367604549974203, - 0.010601098649203777, - 0.02193022333085537, - -0.021125562489032745, - -0.01016045082360506, - 0.004754528868943453, - -0.004090363625437021, - -0.0018104887567460537, - 0.0013251373311504722, - 0.03721879795193672, - -0.012210422195494175, - 0.003201084677129984, - -0.01901811547577381, - 0.02784384973347187, - -0.007420768961310387, - -0.009381333366036415, - -0.0024810403119772673, - 0.023245781660079956, - 0.006331921089440584, - 0.022900927811861038, - -0.009062022902071476, - 0.015697289258241653, - 0.011035360395908356, - -0.004259597975760698, - 0.004361777100712061, - -0.005881693679839373, - -0.03808731958270073, - -0.010479760356247425, - 0.013359938748180866, - -0.022326169535517693, - 0.0008605409529991448, - 0.03670790046453476, - -0.0199505016207695, - -0.015620654448866844, - 0.010083816014230251, - -0.0070375967770814896, - -0.019235245883464813, - 0.03882811963558197, - 0.008883209899067879, - 0.011041746474802494, - 0.008998161181807518, - -0.002651871182024479, - -0.0004502273804973811, - -0.004435218404978514, - -0.02129160426557064, - -0.007861416786909103, - 0.010690505616366863, - 0.01652749627828598, - -0.022849837318062782, - -0.029912978410720825, - -0.004661928862333298, - -0.017408791929483414, - 0.01383251789957285, - 0.034459955990314484, - 0.018967024981975555, - -0.0276650357991457, - -0.007644285913556814, - -0.017370475456118584, - 0.04112715274095535, - -0.013066173531115055, - 0.03481758385896683, - 0.011303581297397614, - -0.031547848135232925, - -0.0070695276372134686, - -0.002773209009319544, - 0.01448391005396843, - 0.007848644629120827, - 0.01611877791583538, - 0.015211937949061394, - -0.03193102031946182, - 0.007254727650433779, - 0.019592873752117157, - -0.027716124430298805, - 0.004390515387058258, - -0.01137382909655571, - -0.004428832326084375, - 0.006418135017156601, - 0.000650594534818083, - -0.023922719061374664, - 0.030551599338650703, - 0.011450463905930519, - 0.010677732527256012, - -0.013794200494885445, - 0.030807048082351685, - -0.005999838467687368, - 0.028840096667408943, - -0.0019190543098375201, - -0.00021493567328434438, - 0.013602614402770996, - -0.0014209303772076964, - -0.0011423322139307857, - 0.0041861566714942455, - -0.0019940922502428293, - 0.02270934171974659, - 0.0016149112489074469, - 0.025251049548387527, - -0.0011638856958597898, - -0.0001460844068787992, - 0.00508022541180253, - 0.022083492949604988, - -0.008250975050032139, - -0.0065522450022399426, - -0.014522227458655834, - -0.01786859892308712, - 0.0014049648307263851, - 0.00781671330332756, - -0.017855826765298843, - -0.002869002055376768, - -0.004074397962540388, - -0.01742156408727169, - 0.021687548607587814, - -0.03274845331907272, - 0.041638050228357315, - -0.026311159133911133, - 0.014867082238197327, - -0.015250254422426224, - 0.012235966511070728, - 0.04133151099085808, - -0.002302226610481739, - -0.010473374277353287, - -0.011111995205283165, - -0.010173222981393337, - -0.01734492927789688, - 0.016067689284682274, - 0.004435218404978514, - -0.02457411214709282, - -0.015952738001942635, - -0.01806018501520157, - 0.0023565092124044895, - 0.0236034095287323, - 0.014598862268030643, - -0.03392351418733597, - -0.027486221864819527, - 0.012350918725132942, - -0.008225430734455585, - 0.0016556233167648315, - 0.011456849984824657, - -0.015403524041175842, - -0.0025113746523857117, - -0.0017418371280655265, - -0.013436572626233101, - 0.0053420597687363625, - -0.005265424959361553, - 0.007976369000971317, - 0.007605968974530697, - 0.009330243803560734, - 0.007522948086261749, - 0.007765623740851879, - -0.009553761221468449, - -0.004486308433115482, - 0.01946515031158924, - -0.004617225378751755, - -0.010530849918723106, - -0.017587605863809586, - 0.009815595112740993, - -0.005450624972581863, - 0.005061066709458828, - -0.006309569347649813, - 0.00781671330332756, - 0.008327609859406948, - 0.014087965711951256, - 0.0060605076141655445, - 0.00885766465216875, - 0.020448625087738037, - 6.820265843998641e-05, - 0.00911949947476387, - -0.013500435277819633, - 0.018226226791739464, - -0.024101532995700836, - -0.008289292454719543, - -0.01909475028514862, - 0.02978525497019291, - 0.020895659923553467, - 0.016259275376796722, - -0.0032601570710539818, - -0.020563576370477676, - 0.0045533631928265095, - 0.02084456942975521, - 0.02368004433810711, - 0.006389397196471691, - -0.009004547260701656, - 0.0018168749520555139, - -0.018405038863420486, - 0.006146721076220274, - -0.0168978963047266, - 0.02035921812057495, - 0.0009427633485756814, - 0.01124610472470522, - 0.0025800263974815607, - 0.004706632345914841, - -0.013321621343493462, - -0.006414941977709532, - 0.0027125400956720114, - -0.029402082785964012, - 0.0012093873228877783, - -0.008589444682002068, - 0.01338548306375742, - 0.006577789783477783, - 0.02498283050954342, - 0.010281788185238838, - -0.02929990366101265, - 0.0036113983951509, - 0.012433938682079315, - 0.017855826765298843, - 0.02743513137102127, - 0.010971498675644398, - 0.006529893260449171, - 0.007395224180072546, - 0.032441914081573486, - 0.005492135416716337, - 0.027971573173999786, - -0.028584647923707962, - 0.006242514122277498, - -0.014790448360145092, - 0.012293442152440548, - -0.010569167323410511, - 0.022645479068160057, - 0.03167556971311569, - 0.0017945233266800642, - 0.029248813167214394, - 0.013257759623229504, - 0.03277399763464928, - 0.015480157919228077, - 0.023092513903975487, - -0.013296076096594334, - 0.016693536192178726, - 0.00977089162915945, - 0.01297676656395197, - -0.02379499562084675, - -0.01854553632438183, - -0.008436175063252449, - -0.016144324094057083, - 0.0071270037442445755, - -0.017447108402848244, - -0.021419327706098557, - -0.013066173531115055, - 0.018136819824576378, - 0.00037658645305782557, - -0.021764183416962624, - -0.004741756245493889, - 0.008755485527217388, - 0.02255607210099697, - 0.02058912068605423, - -0.010677732527256012, - -0.03645245358347893, - -0.0006549850222654641, - 0.021764183416962624, - 0.008053002879023552, - -0.009687871672213078, - -0.020691299811005592, - 0.03019397146999836, - -0.011782546527683735, - 0.0033687225077301264, - -0.00952821597456932, - 0.0023916333448141813, - -0.016361454501748085, - -0.005488942377269268, - -0.011271649971604347, - 0.008998161181807518, - 0.031956564635038376, - -0.021189425140619278, - -0.004479921888560057, - 0.010249856859445572, - -0.0018488060450181365, - -0.004377742763608694, - -0.007261113729327917, - -0.008084934204816818, - 0.053031038492918015, - -0.005310128442943096, - 0.007446313742548227, - 0.005872114561498165, - -0.00736329285427928, - 0.0017705750651657581, - -0.004668314941227436, - 0.010102974250912666, - -0.009406878612935543, - 0.005795480217784643, - -0.004285142756998539, - 0.003933901432901621, - -0.01675739884376526, - 0.004435218404978514, - 0.017332157120108604, - -0.004585294518619776, - 0.006941803731024265, - -0.028686827048659325, - -0.006814079359173775, - 0.0009443599265068769, - -0.0136409318074584, - 0.03640136122703552, - -0.015403524041175842, - 0.0030573951080441475, - -0.0002372873859712854, - -9.024254723044578e-06, - -0.00607647281140089, - -0.034996397793293, - 0.019196929410099983, - 0.0276650357991457, - -0.010664960369467735, - -0.03681007772684097, - 0.03566056117415428, - -0.010454216040670872, - 0.015722833573818207, - -0.009362175129354, - -0.0006813281215727329, - 0.003486867295578122, - 0.0297086201608181, - -0.018124045804142952, - -0.01843058504164219, - 0.010633029043674469, - 0.012606366537511349, - 0.03757642209529877, - -0.006165879778563976, - -0.028380289673805237, - 0.00947712641209364, - 0.023909946903586388, - 0.0090492507442832, - -0.04156141355633736, - -0.010824615135788918, - 0.02080625295639038, - 0.02025703899562359, - 0.029912978410720825, - -0.004649156238883734, - -0.009579305537045002, - 0.003103695111349225, - 0.013717565685510635, - 0.03241636976599693, - -0.012197649106383324, - 0.021802499890327454, - 0.02356509305536747, - 0.013347165659070015, - -0.017766419798135757, - 0.010709663853049278, - 0.0013411027612164617, - -0.005948748905211687, - -0.005485749337822199, - 0.00966232642531395, - -0.006954575888812542, - -0.009834754280745983, - -0.0003967429220210761, - -0.005773128475993872, - -0.005300549324601889, - -0.008065775968134403, - -0.006143528036773205, - -0.022837065160274506, - 0.011795318685472012, - 0.00247625051997602, - -0.01040312647819519, - -0.009592078626155853, - -0.020129315555095673, - 0.0065522450022399426, - -0.007407996337860823, - 0.0031404157634824514, - -0.014867082238197327, - -0.02032090164721012, - -0.008359541185200214, - -0.007369679398834705, - -1.5454113963642158e-05, - 0.013806972652673721, - -0.006775762420147657, - 0.0014313079882413149, - -0.022326169535517693, - 0.005086611490696669, - 0.033412620425224304, - 0.0027189264073967934, - -0.013781428337097168, - -0.01738324761390686, - 0.016144324094057083, - -0.006070086732506752, - -0.017293840646743774, - -0.011884725652635098, - -0.020895659923553467, - -0.03405123949050903, - 0.004454377107322216, - -0.007005665451288223, - -0.00730581721290946, - -0.002457092050462961, - 0.010051884688436985, - -0.005987066309899092, - -0.006884327623993158, - 0.011124767363071442, - -0.010581939481198788, - 0.010185995139181614, - -0.005169631913304329, - 0.004412866663187742, - 0.011737843044102192, - 0.0043394253589212894, - -0.003528377739712596, - 0.02274765819311142, - -0.010237084701657295, - 0.010824615135788918, - -0.012561663053929806, - -0.00031950976699590683, - -0.00977089162915945, - -0.013577069155871868, - 0.016578584909439087, - -0.021610913798213005, - 0.0066991280764341354, - 0.006852396763861179, - -0.019707825034856796, - -0.013921924866735935, - 0.007382451556622982, - -0.009885843843221664, - 0.012159332633018494, - 0.01100342907011509, - -0.003988184500485659, - 0.026413340121507645, - 0.005773128475993872, - 0.02193022333085537, - -0.008033844642341137, - 0.02111279033124447, - 0.028227021917700768, - -0.0022846644278615713, - 0.034383323043584824, - -0.013487662188708782, - -0.004987625405192375, - -0.0013905959203839302, - -0.016131551936268806, - 0.0055943145416677, - 0.01868603192269802, - -0.008391471579670906, - 0.009298312477767467, - -0.03887920826673508, - 0.008174341171979904, - 0.017102254554629326, - 0.01185918040573597, - -0.02159814164042473, - -0.0016891509294509888, - 0.001909474958665669, - -0.005268617998808622, - -0.017140571027994156, - 0.014075193554162979, - -0.02159814164042473, - -0.026643242686986923, - -0.01192942913621664, - 0.02397380955517292, - -0.014394504018127918, - 0.00887682382017374, - -0.007293045055121183, - -0.0071270037442445755, - -0.01131635345518589, - 0.0026422918308526278, - -0.025672540068626404, - -0.020346445962786674, - -0.0018136819126084447, - -0.0015734010376036167, - -0.002792367711663246, - 0.02200685814023018, - 0.015326889231801033, - 0.015697289258241653, - -0.00819349940866232, - -0.004333039280027151, - -0.023475686088204384, - 0.013078945688903332, - -0.009240836836397648, - -0.011239718645811081, - -0.0402841754257679, - 0.016514724120497704, - 0.0035794673021882772, - -0.0020084611605852842, - 0.021317148581147194, - -0.008289292454719543, - 0.0276650357991457, - 0.013717565685510635, - -0.01712779887020588, - -0.0028721950948238373, - 0.0025576746556907892, - -0.01282349694520235, - -0.004799232352524996, - 0.007286658510565758, - -0.007075913716107607, - 0.0011854390613734722, - -0.019196929410099983, - 0.0034134259913116693, - 0.026515519246459007, - 0.0006170669221319258, - -0.020870113745331764, - 0.0030845364090055227, - 0.019529011100530624, - -0.017140571027994156, - 0.03443441167473793, - 0.007906120270490646, - -0.015735605731606483, - -0.0014664321206510067, - 0.02072961814701557, - -0.0020946748554706573, - -0.004783266689628363, - 0.038061775267124176, - -0.008583057671785355, - 0.008270134218037128, - 0.00028358737472444773, - 0.00021014602680224925, - -0.011156697757542133, - 0.007714534178376198, - 0.013653703965246677, - -0.015850558876991272, - 0.014637179672718048, - 0.00248902291059494, - -0.02002713456749916, - -0.01578669622540474, - -0.023066967725753784, - -0.021955769509077072, - 0.019822776317596436, - -0.005977486725896597, - -0.007746465504169464, - 0.03108804114162922, - -0.02006545290350914, - -0.026643242686986923, - 0.0021601335611194372, - -0.012133787386119366, - 0.026387793943285942, - -0.0004242834111209959, - 0.0246124304831028, - 0.017689784988760948, - 0.008282906375825405, - -0.014675496146082878, - -0.05492135509848595, - -0.03852158039808273, - -0.005996645428240299, - 0.006006224546581507, - 0.005776321515440941, - -0.0066735828295350075, - -0.011009815149009228, - -0.017000075429677963, - 0.016259275376796722, - 0.013806972652673721, - -0.010754367336630821, - 0.029172180220484734, - 0.02881455235183239, - 0.002509778132662177, - -0.008979002945125103, - -0.0029855503235012293, - -0.018405038863420486, - -0.0016212975606322289, - 0.009259996004402637, - -0.0010784701444208622, - -0.014892627485096455, - -0.017178889364004135, - -0.008519195951521397, - 0.012382849119603634, - -0.011814476922154427, - 0.035277388989925385, - -0.010115747340023518, - -0.01685957796871662, - 0.004380935803055763, - -0.022952016443014145, - -0.013921924866735935, - 0.020384762436151505, - -0.00984752643853426, - 0.038291677832603455, - 0.022172899916768074, - -0.005086611490696669, - 0.005977486725896597, - -0.01660412922501564, - -0.01120778825134039, - -0.0051025766879320145, - 0.014534999616444111, - 0.006405362393707037, - -0.001981319859623909, - -0.02319469302892685, - -0.0037039981689304113, - 0.011195015162229538, - 0.004594873636960983, - 0.00040233085746876895, - 0.014139055274426937, - -0.0211511068046093, - -0.009132271632552147, - 0.003100502071902156, - 0.012561663053929806, - -0.0026774159632623196, - -0.00011974132212344557, - -0.015735605731606483, - -0.002437933348119259, - -0.021713092923164368, - -0.01533966138958931, - 0.01327053178101778, - 0.009215292520821095, - -0.03665681183338165, - 0.00021034559176769108, - -0.006466031540185213, - 0.028099296614527702, - 0.023245781660079956, - -0.016399770975112915, - -0.015978282317519188, - 0.009030092507600784, - 0.04713018611073494, - -0.01936296932399273, - 0.011514325626194477, - 0.026260070502758026, - -0.011290808208286762, - -0.019337425008416176, - -0.0041733840480446815, - -7.89294863352552e-05, - -0.019299108535051346, - 0.03246746212244034, - 0.0027396813966333866, - -0.017217205837368965, - -0.022952016443014145, - -0.027818303555250168, - 0.00779116852208972, - 0.0030462192371487617, - -0.010524463839828968, - 0.001553444075398147, - -0.004594873636960983, - 0.00025385161279700696, - -0.013015083968639374, - -0.025787491351366043, - 0.030423875898122787, - 0.023066967725753784, - 0.0015271010342985392, - 0.024625202640891075, - -0.016834033653140068, - 0.011405760422348976, - 0.010562781244516373, - -0.01143130473792553, - -0.004499080590903759, - -0.030423875898122787, - -0.03310608118772507, - 0.021266058087348938, - 0.013653703965246677, - -0.008142409846186638, - -0.037244342267513275, - 0.008359541185200214, - -0.006769376341253519, - -0.009540989063680172, - 0.009151429869234562, - 0.014867082238197327, - 0.0019254405051469803, - 0.004256404936313629, - 0.023909946903586388, - 0.010754367336630821, - -0.0027700159698724747, - 0.005827411077916622, - -0.0053420597687363625, - 0.02286260947585106, - -0.0045214323326945305, - -0.013308849185705185, - 0.0028131227008998394, - -0.020282583311200142, - -0.003930708393454552, - 0.0317266620695591, - -0.016489177942276, - -0.008927913382649422, - 0.006287217605859041, - -0.04023308306932449, - 0.014815992675721645, - -0.01987386681139469, - -0.010019954293966293, - -0.016744626685976982, - 0.00266145053319633, - -0.006472417619079351, - 0.024216484278440475, - -0.0013179528759792447, - 0.013193896971642971, - -0.00041270843939855695, - -0.022760430350899696, - 0.00465234974399209, - 0.016259275376796722, - 0.01608046144247055, - -0.01498203445225954, - -0.016987301409244537, - -0.022760430350899696, - 0.015058668330311775, - -0.010102974250912666, - 0.004176577553153038, - 0.0006661608931608498, - -0.008385085500776768, - -0.013462117873132229, - -0.01558233704417944, - -0.002592798788100481, - -0.002110640285536647, - 0.017600378021597862, - 0.03180329501628876, - -0.024727381765842438, - 0.016987301409244537, - -0.0317266620695591, - -0.003649715567007661, - -0.025110553950071335, - 0.009113113395869732, - -0.0010672942735254765, - 0.0031531881541013718, - 0.008359541185200214, - 0.014279551804065704, - 0.0011806493857875466, - -0.009892229922115803, - 0.018967024981975555, - 0.01786859892308712, - 0.011718683876097202, - -0.01913306675851345, - 0.001437694183550775, - -0.013053400442004204, - 0.0012732493923977017, - -0.006331921089440584, - 0.012421166524291039, - -0.0439370833337307, - -0.023322416469454765, - -0.0013682441785931587, - -0.017472654581069946, - 0.015914419665932655, - -0.019937727600336075, - 0.004888638854026794, - -0.013794200494885445, - 0.030730413272976875, - -0.008053002879023552, - -0.029989613220095634, - -0.016540268436074257, - 0.03208428993821144, - 0.019299108535051346, - -0.00449588755145669, - -0.00443841191008687, - 0.006194617599248886, - 0.02103615552186966, - -0.0112971942871809, - 0.0002656261785887182, - -0.021866362541913986, - 0.001021792646497488, - 0.014317869208753109, - 0.00623612804338336, - -0.014317869208753109, - 0.013960241340100765, - -0.017958005890250206, - -0.008359541185200214, - -0.02601739391684532, - -0.0007715332321822643, - 0.17237640917301178, - -0.013781428337097168, - -4.839544999413192e-05, - 0.03027060627937317, - -0.007867802865803242, - 0.0021537472493946552, - 0.024625202640891075, - -0.008595830760896206, - 0.030066248029470444, - 0.014202916994690895, - -0.004958887118846178, - -0.019899411126971245, - 0.00837869942188263, - 0.007957209832966328, - 0.02438252605497837, - -0.03818950057029724, - -0.03338707238435745, - -0.01014767773449421, - -0.003177136415615678, - -0.0022112231235951185, - 0.0284824687987566, - -0.015007578767836094, - 0.008129637688398361, - -0.01783028058707714, - 0.010792684741318226, - -0.0020739196334034204, - -0.036835625767707825, - 0.01854553632438183, - 0.027613945305347443, - -0.001072083949111402, - 0.0012876183027401567, - 0.010269016027450562, - -0.0018615784356370568, - -0.00016065294039435685, - -0.02200685814023018, - -0.009892229922115803, - 0.01039035338908434, - 0.011923043057322502, - 0.0276650357991457, - 0.04002872481942177, - 0.0011519115651026368, - -0.008819347247481346, - -0.01239562127739191, - -0.023028651252388954, - 0.00476410798728466, - 0.018788211047649384, - 0.001867964630946517, - -0.00787418894469738, - -0.005048294086009264, - -0.012906517833471298, - -0.01928633637726307, - 0.015812240540981293, - -0.0034198120702058077, - 0.028508014976978302, - -0.021419327706098557, - -0.005766741931438446, - 0.010537235997617245, - 0.01738324761390686, - -0.0009244030225090683, - 0.01887761801481247, - -0.003145205322653055, - 0.030500508844852448, - -0.03004070371389389, - 0.0038923912215977907, - -0.003127643372863531, - 0.021534278988838196, - -0.02873791754245758, - 0.004879059735685587, - 0.007612355053424835, - -0.013474890030920506, - 0.01284265611320734, - -0.013359938748180866, - -0.011539870873093605, - 0.007714534178376198, - -0.020371990278363228, - -0.019490694627165794, - 0.009624009020626545, - 0.0015278992941603065, - 0.011846408247947693, - 0.008442561142146587, - -0.013168352656066418, - 0.004655542783439159, - -0.013334393501281738, - -0.01660412922501564, - -0.011731456965208054, - -0.01679571531713009, - 0.02937653847038746, - 0.0313434898853302, - -0.010320105589926243, - -0.016770171001553535, - -0.00706314155831933, - -0.010792684741318226, - -0.005201563239097595, - -0.003965832758694887, - 0.01351320743560791, - 0.012242352589964867, - 0.004610839299857616, - 0.018456129357218742, - -0.00869162380695343, - 0.002161730080842972, - -0.0168978963047266, - 0.07254727929830551, - 0.045061055570840836, - -0.018711578100919724, - -0.0036273638252168894, - 0.005268617998808622, - -0.001301189069636166, - 0.007765623740851879, - -0.0006613712175749242, - -0.02479124255478382, - -0.01249141525477171, - -0.017817508429288864, - 0.004693859722465277, - 0.014675496146082878, - 0.016885122284293175, - -0.0061052110977470875, - -0.015326889231801033, - -0.003403846640139818, - 0.007401610258966684, - 0.003442163811996579, - 0.001981319859623909, - -0.008391471579670906, - 0.029734164476394653, - 0.006967348512262106, - 0.014394504018127918, - -0.02735849656164646, - -0.03721879795193672, - 0.005428273230791092, - 0.015186392702162266, - -0.019337425008416176, - 0.04457570239901543, - -0.011476008221507072, - 0.014075193554162979, - 0.003314439905807376, - -0.009196133352816105, - 0.002378860954195261, - -0.002530533354729414, - -0.022977560758590698, - -0.019643962383270264, - -0.001072083949111402, - 0.015071441419422626, - 0.010294560343027115, - 0.008014685474336147, - 0.004128681030124426, - 0.004355391021817923, - -0.010633029043674469, - 0.01533966138958931, - -0.01682126149535179, - -0.0020563576836138964, - -0.029657531529664993, - -0.016540268436074257, - -0.023284099996089935, - 0.004805618431419134, - -0.008512809872627258, - 0.028124842792749405, - 0.017434336245059967, - -0.009924161247909069, - -0.022798748686909676, - -0.013474890030920506, - 0.013193896971642971, - -0.0033367914147675037, - 0.0018759473459795117, - 0.011092836037278175, - -0.013066173531115055, - 0.009534602053463459, - -0.008640534244477749, - -0.16307809948921204, - 0.007567651569843292, - 0.019592873752117157, - -0.03152230381965637, - 0.0009387719910591841, - 0.012178490869700909, - 0.015199164859950542, - 0.008781030774116516, - -0.001529495813883841, - 0.014943717047572136, - 0.01645086146891117, - 0.003783825784921646, - -0.02080625295639038, - 0.014011330902576447, - 0.0009339823154732585, - -0.0180985014885664, - -0.021623685956001282, - 0.012089083902537823, - 0.03044942021369934, - 0.021419327706098557, - 0.01530134491622448, - -0.0023118057288229465, - 0.02371836081147194, - 0.002465074649080634, - -0.008902368135750294, - 0.001437694183550775, - -0.01615709625184536, - 0.03295281156897545, - -0.009208906441926956, - -0.0025560781359672546, - 0.013474890030920506, - 0.0063063763082027435, - 0.013015083968639374, - -0.008065775968134403, - -0.005974293686449528, - 0.002407598774880171, - -0.010058270767331123, - -0.02006545290350914, - -0.005415501073002815, - 0.008742713369429111, - 0.009687871672213078, - 0.01633591018617153, - -0.0043074944987893105, - 0.010716049931943417, - -0.003041429677978158, - 0.024637974798679352, - 0.00425321189686656, - -0.008793802931904793, - 0.00497804582118988, - -0.015020351856946945, - 0.018596624955534935, - -0.04485669732093811, - 0.003914743196219206, - 0.018290087580680847, - 0.011150311678647995, - 0.026081256568431854, - 0.0016061302740126848, - 0.006775762420147657, - 0.008397857658565044, - 6.361257692333311e-05, - -0.007184479385614395, - -0.0017306612571701407, - 0.0003041429736185819, - -0.00789334811270237, - -0.0012748459121212363, - -0.03995209187269211, - -0.014918172731995583, - 0.005849762819707394, - -0.009030092507600784, - 0.0047800736501812935, - 0.004023308400064707, - -0.030398329719901085, - -0.0010648994939401746, - -0.02568531222641468, - 0.007765623740851879, - 0.0012125804787501693, - -0.005492135416716337, - 0.006711900234222412, - 0.0009635185124352574, - -0.000812245300039649, - -0.0055943145416677, - 0.05142171308398247, - -0.005045101046562195, - -0.013653703965246677, - 0.01259998045861721, - -0.0011638856958597898, - -0.0238205399364233, - -0.01485431008040905, - 0.0022383644245564938, - -0.005013170186430216, - 0.008391471579670906, - -0.035047486424446106, - -0.03949228301644325, - -0.0014664321206510067, - -0.0033814948983490467, - 0.009036478586494923, - -0.033974602818489075, - 0.021100018173456192, - -0.013985786586999893, - -0.004425639286637306, - 0.00026023780810646713, - -0.024369753897190094, - -0.018698804080486298, - 0.003239401848986745, - 0.03269736468791962, - 0.009253608994185925, - 0.0022766815964132547, - 0.012235966511070728, - 0.04503551125526428, - -0.0038828118704259396, - -0.02963198535144329, - -0.004850321915000677, - -0.002319788560271263, - 0.01786859892308712, - 0.01003272645175457, - 0.01608046144247055, - -0.01928633637726307, - -0.018417812883853912, - 0.013219442218542099, - -0.005064259748905897, - 0.054819174110889435, - 0.01675739884376526, - -0.02230062335729599, - 0.012849042192101479, - 0.0003632153384387493, - -0.013743110932409763, - -0.04868841916322708, - -0.017766419798135757, - 0.025851354002952576, - 0.011763387359678745, - -0.010856546461582184, - 0.0008453737245872617, - -0.008640534244477749, - 0.02717968448996544, - 0.007095072418451309, - 0.0060030315071344376, - 0.0017705750651657581, - -0.020129315555095673, - -0.011871952563524246, - -0.014190144836902618, - 0.008014685474336147, - 0.016208184882998466, - -0.01965673640370369, - -0.02494451217353344, - -0.03159893676638603, - 0.0309347715228796, - 0.007810327224433422, - 0.0136409318074584, - 0.0005025144200772047, - -0.021713092923164368, - -0.01367924828082323, - 0.001788137131370604, - -0.028763461858034134, - 0.011961359530687332, - 0.02453579567372799, - -0.008423402905464172, - -0.0042755636386573315, - -0.005670948885381222, - 0.010466988198459148, - -0.03834276646375656, - -0.02591521479189396, - 0.011999676935374737, - -0.016208184882998466, - 0.0024634781293570995, - 0.017587605863809586, - -0.015697289258241653, - -0.003317632945254445, - 0.0061690728180110455, - 0.026719877496361732, - -0.02121496945619583, - 0.0047800736501812935, - 0.0021313955076038837, - -0.020129315555095673, - -0.001906281802803278, - 0.014087965711951256, - -0.006603335030376911, - -0.01860939897596836, - -0.005670948885381222, - -0.02286260947585106, - 0.028763461858034134, - 0.011891111731529236, - -0.011137539520859718, - -0.0032186468597501516, - -0.010684119537472725, - -0.00529416324570775, - -0.01876266673207283, - -0.029274359345436096, - 0.000693302252329886, - -0.019861094653606415, - 0.03734651952981949, - 0.004946114961057901, - -0.003643329255282879, - -0.02136823907494545, - -0.019976045936346054, - 0.011418532580137253, - -0.007471858523786068, - -0.01258082129061222, - 0.0026087642181664705, - -0.007139775902032852, - 0.006258479785174131, - -0.014867082238197327, - 0.01204438041895628, - -0.02937653847038746, - -0.016131551936268806, - 0.028610194101929665, - -0.023705588653683662, - 0.005348445847630501, - -0.045367591083049774, - -0.0042180875316262245, - -0.006536279805004597, - 0.029938524588942528, - 0.023539546877145767, - 0.005402728449553251, - -0.004808811470866203, - 0.001084058079868555, - -0.01853276416659355, - 0.012408394366502762, - -0.013704793527722359, - 0.024101532995700836, - -0.021125562489032745, - -0.006807693280279636, - 0.0032170501071959734, - 0.01767701283097267, - -0.01493094488978386, - -0.02352677471935749, - 0.019707825034856796, - -0.018341178074479103, - 0.010173222981393337, - -0.0716276615858078, - 0.021087246015667915, - -0.003528377739712596, - -0.005425080191344023, - -0.025378774851560593, - -0.008417016826570034, - 0.008844892494380474, - 0.0018424198497086763, - -0.0003853674861602485, - -0.006801307201385498, - -0.033974602818489075, - -0.0010617063380777836, - 0.005013170186430216, - -0.004601259715855122, - 0.004243632312864065, - -0.025225505232810974, - 0.012133787386119366, - 0.009751733392477036, - 0.019005343317985535, - -0.00011844412802020088, - 0.002188871381804347, - 0.004023308400064707, - 0.027077505365014076, - 0.0033272122964262962, - -0.03681007772684097, - 0.011942201294004917, - -0.004569328855723143, - -0.013193896971642971, - -0.01730661280453205, - 0.000400135584641248, - 0.030219517648220062, - -0.014292323961853981, - -0.023590637370944023, - 0.00917697511613369, - -0.0041733840480446815, - -0.009023706428706646, - -0.017063936218619347, - 0.005460204090923071, - 0.012817110866308212, - 0.05773128196597099, - -0.015556792728602886, - -0.013462117873132229, - 0.036171458661556244, - -0.02185359038412571, - 0.006453258916735649, - -0.018481673672795296, - 0.02025703899562359, - 0.020410306751728058, - 0.01631036400794983, - -0.020870113745331764, - 0.02356509305536747, - 0.018941480666399002, - 0.018136819824576378, - -0.030321696773171425, - 0.0018743508262559772, - -0.016744626685976982, - 0.007095072418451309, - -0.01913306675851345, - 0.006430907174944878, - -0.03256963938474655, - 0.03254409506917, - -0.015850558876991272, - 0.0004893428995274007, - -0.0021218161564320326, - -0.014675496146082878, - -0.008468106389045715, - -0.011239718645811081, - -0.003614591434597969, - 0.007152548525482416, - -0.021879134699702263, - -0.012504187412559986, - -0.002865809015929699, - -0.01448391005396843, - 0.013047014363110065, - 0.008148795925080776, - 0.016438089311122894, - -0.0015901647275313735, - 0.006909872405230999, - -0.008742713369429111, - 0.0017498198430985212, - 0.011469622142612934, - 0.024075988680124283, - -0.018187908455729485, - 0.008493650704622269, - 0.05101299658417702, - 0.002337350510060787, - -0.01637422665953636, - 0.010939567349851131, - -0.0009100340539589524, - 0.00389558426104486, - -0.002348526380956173, - 0.02136823907494545, - 0.011060904711484909, - 0.0009507461218163371, - -0.0009930547093972564, - 0.002150554209947586, - 0.016591357067227364, - -0.02505946345627308, - 0.0112971942871809, - 0.025966305285692215, - 0.0065330867655575275, - 0.007976369000971317, - 0.00513770105317235, - -0.015952738001942635, - -0.010971498675644398, - 0.024931740015745163, - -0.0028434572741389275, - -0.04646601900458336, - -0.013704793527722359, - 0.006073279771953821, - -0.01864771544933319, - 0.005792286712676287, - 0.007855030708014965, - 0.012184876948595047, - -0.022364486008882523, - 0.03101140633225441, - -0.016961757093667984, - -0.0016189026646316051, - -0.029887434095144272, - 0.022619934752583504, - 0.013034242205321789, - 0.03489421680569649, - 0.017102254554629326, - 0.003780632745474577, - 0.035686105489730835, - -0.008557513356208801, - 0.009068409912288189, - -0.03256963938474655, - -0.000997844384983182, - -0.006414941977709532, - -0.014905399642884731, - 0.00319629511795938, - -0.016463633626699448, - -0.025698084384202957, - -0.03841940313577652, - -0.007356906775385141, - 0.007989141158759594, - 0.008768257685005665, - -0.002913705538958311, - 0.10963834822177887, - 0.010096588172018528, - -0.0193246528506279, - 0.011354670859873295, - -0.0037231568712741137, - 0.014139055274426937, - -0.008404244668781757, - -0.0043202671222388744, - -0.017319384962320328, - -0.034715402871370316, - 0.025072235614061356, - -0.0017099060351029038, - -0.007625127211213112, - -0.02148319035768509, - -0.010102974250912666, - -0.0023597022518515587, - -0.01461163442581892, - 0.0154673857614398, - -0.03811286389827728, - 0.0016236923402175307, - 0.023539546877145767, - -0.014407276175916195, - 0.02304142341017723, - 0.01485431008040905, - -0.018698804080486298, - -0.006577789783477783, - 0.038393858820199966, - -0.017549287527799606, - 0.010237084701657295, - -0.017932459712028503, - -0.008314837701618671, - -0.00787418894469738, - -0.05476808547973633, - -0.030781501904129982, - 0.03190547600388527, - -0.02453579567372799, - 0.007899734191596508, - -0.0046587358228862286, - 0.013411028310656548, - 0.013704793527722359, - -0.026336705312132835, - 0.035430658608675, - -0.012587208300828934, - -0.003933901432901621, - 0.004013729281723499, - -0.01168675348162651, - 0.0009754926431924105, - -0.014675496146082878, - -0.013206670060753822 - ], - "sparse": "SparseEmbedding(values=array([1.68320383, 1.68320383]), indices=array([1112552363, 337416142]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 17, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 2 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000018.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000018.json deleted file mode 100644 index 5cb887538e0777abd7b36ca6f7badcbd35cb0250..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000018.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000018", - "content": "Abbildungsverzeichnis die nahe Zukunft (2031-2060) und f\u00fcr die ferne Zukunft (2071-2100) nach dem RCP8.5- Szenario (vgl. Deutscher Wetterdienst) ......................................................................... 1 2018, S. 31) .................................................................................................................. 5 Stadt (Doblas-Reyes et al., S. 1463) ............................................................................. 8 Zhang et al. 2020) ....................................................................................................... 10 Berechnung) ............................................................................................................... 18 (Datengrundlage: CSGC) ............................................................................................ 19 Markt- und Sozialforschung GmbH 2024) ................................................................... 21 Abbildung 8: Lage des Fallstudiengebiets Gromb\u00fchl (eigene Darstellung) .................. 25 Abbildung 9: Quartiersarchetypen im Untersuchungsgebiet Gromb\u00fchl Darstellung, Datengrundlage: Drees & Sommer) ........................................................ 26 2018, S. 1) .................................................................................................................. 27 Grundlage der Simulationsergebnisse) ....................................................................... 27 Berechnung auf Grundlage der Simulationsergebnisse) ............................................. 28 Abbildung 13: Lage des Fallstudiengebiets Grafenb\u00fchl (eigene Darstellung) .............. 29 Darstellung, Datengrundlage Drees & Sommer) ......................................................... 29 2022, S. 56) ................................................................................................................ 30 der Simulationsergebnisse) ......................................................................................... 31 Grundlage der Simulationsergebnisse) ....................................................................... 31 Seyfferstra\u00dfe, Hasenbergstra\u00dfe, Ludwigstra\u00dfe, Hasenbergsteige) (eigene Fotos) .... 33", - "embedding": { - "dense": [ - 0.007681285031139851, - -0.00854132603853941, - 0.008383761160075665, - -0.021770205348730087, - 0.02597193419933319, - 0.015021179802715778, - -0.019249169155955315, - 0.01309757586568594, - -0.01453535445034504, - -0.01825125887989998, - -0.003676512511447072, - 0.005747833289206028, - -0.008928673341870308, - -0.00028209848096594214, - -0.005573855713009834, - 0.022965071722865105, - 0.028046537190675735, - 0.00157072430010885, - 0.014010138809680939, - -0.009355410933494568, - 0.010123539716005325, - 0.013997008092701435, - 0.02872931957244873, - -0.02247924730181694, - -0.008797368966042995, - 0.02165203168988228, - 0.021244989708065987, - -0.012165317311882973, - -0.006279614754021168, - 0.009151889942586422, - -0.006319005973637104, - -0.0025587871205061674, - -0.01028110459446907, - -0.005695311818271875, - 0.0067030698992311954, - -0.01422022469341755, - 0.008652934804558754, - -0.011009842157363892, - 0.015533264726400375, - -0.003146372502669692, - -0.0012227686820551753, - 0.002097581746056676, - 0.006466722581535578, - -0.030357489362359047, - 0.009368541650474072, - 0.022242899984121323, - 0.02111368626356125, - 0.011889578774571419, - -0.02162577211856842, - 0.030278706923127174, - 0.023135768249630928, - 0.04146580770611763, - -0.02066725306212902, - -0.025092197582125664, - 0.0021697988267987967, - -0.004080272279679775, - -0.019275428727269173, - 0.02268933318555355, - -0.011088624596595764, - -0.015126222744584084, - -0.011942100711166859, - -0.027705147862434387, - -0.03203817829489708, - 0.011430014856159687, - -0.030042359605431557, - -0.027442539110779762, - -0.027862712740898132, - 0.006341984029859304, - 0.0037520122714340687, - -0.004615336190909147, - 0.03634495288133621, - 0.025262892246246338, - 0.016925087198615074, - -0.02246611751616001, - 0.03043627180159092, - -0.01155475340783596, - 0.010156366042792797, - 0.0063255708664655685, - 0.002478363225236535, - 0.015270656906068325, - 0.016675610095262527, - -0.0074121118523180485, - -0.029963577166199684, - 0.014981788583099842, - 0.021455075591802597, - 0.014863614924252033, - -0.005524616688489914, - 0.018421953544020653, - -0.029096970334649086, - 0.014404051005840302, - 0.021271251142024994, - 0.038104426115751266, - -0.0014041323447600007, - 0.03106652945280075, - -0.020338991656899452, - -0.0017840933287516236, - -0.00911906361579895, - 0.02405489608645439, - -0.007858545519411564, - -0.034611739218235016, - -0.007169199176132679, - -0.0038603381253778934, - -0.010313930921256542, - -0.006404353305697441, - -0.01835630089044571, - -0.008101457729935646, - 0.012506707571446896, - 0.002112353453412652, - 0.011810796335339546, - -0.03130287677049637, - -0.02216411754488945, - 0.034637998789548874, - 0.0014706050278618932, - 0.0004353548865765333, - 0.018855256959795952, - -0.048214834183454514, - 0.032195743173360825, - -0.0017397782066836953, - -0.0037388817872852087, - -0.017988650128245354, - 0.022400464862585068, - 0.013695009052753448, - 0.010478060692548752, - -0.02702236734330654, - 0.012723359279334545, - 0.000786182819865644, - -0.005613246466964483, - -0.0029001773800700903, - -0.01155475340783596, - -0.013301096856594086, - -0.03605608269572258, - -0.00019449407409410924, - 0.009512975811958313, - 0.01162040513008833, - -0.019866297021508217, - 0.0265234112739563, - -0.025499239563941956, - 0.01446970272809267, - -0.039706334471702576, - -0.032694701105356216, - -0.0030938507989048958, - 0.027862712740898132, - -0.03689642995595932, - -0.017253348603844643, - 0.010156366042792797, - 0.023831678554415703, - 0.0020401361398398876, - 0.019144125282764435, - 0.01383944321423769, - -0.022610550746321678, - 0.02087733894586563, - -0.00864636991173029, - 0.024566981941461563, - 0.011252754367887974, - 0.003991642035543919, - -0.013852573931217194, - 0.00524559523910284, - 0.02490837126970291, - -0.01928856037557125, - -0.002616232493892312, - 0.0024471785873174667, - -0.0030757966451346874, - 0.009670540690422058, - 0.017752302810549736, - 0.0191966462880373, - -0.005347356200218201, - 0.009539236314594746, - -0.024356894195079803, - 0.013117271475493908, - -0.01102297194302082, - -0.021297510713338852, - 0.01654430665075779, - -0.021455075591802597, - 0.012743054889142513, - -0.0035977300722151995, - 0.02875557914376259, - -0.011613840237259865, - -0.01326170563697815, - -0.022544899955391884, - -0.025538630783557892, - -0.025499239563941956, - -0.0012326164869591594, - 0.018579518422484398, - 0.0006158978794701397, - -0.020404644310474396, - -0.0068868957459926605, - 0.03744790703058243, - 0.010524016804993153, - -0.0182381272315979, - -0.010327060706913471, - 0.01039271242916584, - 0.017148304730653763, - 0.035268258303403854, - -0.0009913452668115497, - -0.6285786032676697, - -0.00758280698210001, - -0.010648755356669426, - -0.021048033609986305, - 0.0026589063927531242, - 0.031224094331264496, - 0.011666362173855305, - -0.002051625167950988, - -0.014338398352265358, - 0.035241998732089996, - 0.013084445148706436, - -0.001441061613149941, - -0.007182329893112183, - -0.013071314431726933, - -0.010366451926529408, - -0.020496556535363197, - -0.006368244998157024, - 0.013944486156105995, - 0.01856638863682747, - 0.010373016819357872, - -0.007983284071087837, - 0.01422022469341755, - 0.004329749848693609, - -0.009191281162202358, - 0.014981788583099842, - 0.016255436465144157, - -0.0014623984461650252, - -0.042673803865909576, - 0.0062828972004354, - 0.010524016804993153, - -0.034191567450761795, - 0.015651438385248184, - 0.0002040341350948438, - 0.01844821497797966, - 0.032931048423051834, - 0.007149503566324711, - -0.018435083329677582, - 0.0021468207705765963, - 0.021862119436264038, - 0.02471141517162323, - -0.018592648208141327, - 0.007490894291549921, - 0.0015937024727463722, - 0.008928673341870308, - -0.0066275703720748425, - 0.028151581063866615, - 0.036633819341659546, - -0.022439856082201004, - 0.0049304659478366375, - -0.02194090187549591, - 0.011810796335339546, - 0.003118470311164856, - -0.0009355411166325212, - 0.011712318286299706, - 0.028072798624634743, - 0.015441352501511574, - 0.01624230667948723, - -0.015507004223763943, - -0.0013893606374040246, - 0.009027151390910149, - -0.014023268595337868, - -0.0009297965443693101, - -0.006053115241229534, - -0.014745441265404224, - -0.035583388060331345, - 0.043645456433296204, - -0.023464027792215347, - -0.017108913511037827, - 0.024317502975463867, - -0.028387928381562233, - -0.02893940545618534, - 0.018080562353134155, - -0.004999400582164526, - -0.006729330867528915, - 0.038445815443992615, - 0.0033498937264084816, - 0.01804117113351822, - -0.005770811345428228, - 0.0009839594131335616, - 0.01511309202760458, - 0.004628466442227364, - -0.015743350610136986, - -0.0011357797775417566, - 0.0042936415411531925, - 0.011213363148272038, - -0.03216948360204697, - -0.01490300614386797, - -0.014364659786224365, - -0.007490894291549921, - -0.0022945376113057137, - 0.0015969851519912481, - 0.00551148597151041, - -0.028177842497825623, - -0.012204708531498909, - 0.015979697927832603, - 0.04230615496635437, - 0.0004170954052824527, - 0.035898517817258835, - 0.0036797949578613043, - -0.04942283034324646, - -0.018264388665556908, - -0.0038636205717921257, - 0.027862712740898132, - 0.02141568437218666, - 0.022938812151551247, - 0.01653117500245571, - -0.03033122792840004, - 0.0002900998224504292, - 0.0177129115909338, - -0.02872931957244873, - -0.016045350581407547, - -0.017122043296694756, - -0.01167292706668377, - -0.0029100251849740744, - 0.015585786662995815, - -0.02904444746673107, - 0.024356894195079803, - -0.009250367991626263, - 0.004635031800717115, - 0.019012821838259697, - 0.022715594619512558, - -0.0030757966451346874, - 0.02597193419933319, - -0.02459324151277542, - -0.00870545580983162, - 0.016701871529221535, - 0.009033716283738613, - 0.005918528418987989, - -0.017122043296694756, - -0.017332131043076515, - 0.02108742482960224, - -0.0014213660033419728, - 0.041728414595127106, - -0.0178048238158226, - 0.01878960430622101, - -0.007687849923968315, - 0.02502654492855072, - -0.01511309202760458, - -0.008994325064122677, - -0.02683854103088379, - -0.03760547190904617, - 0.003663382027298212, - 0.021179337054491043, - -0.018067432567477226, - -0.012204708531498909, - -0.0157039612531662, - -0.018723953515291214, - 0.018632039427757263, - -0.008390326984226704, - 0.0015969851519912481, - -0.01591404713690281, - -0.004730227403342724, - 0.018618909642100334, - 0.012283490970730782, - -0.005399877671152353, - 0.006768722087144852, - -0.01081288605928421, - -0.02207220532000065, - -0.011784535832703114, - -0.015664570033550262, - 0.02333272434771061, - 0.014863614924252033, - -0.028361666947603226, - -0.007832285016775131, - 0.010537147521972656, - 0.011646666564047337, - -0.008180240169167519, - 0.02427811175584793, - -0.0066013094037771225, - -0.0236478541046381, - -0.004841835703700781, - -0.008882716298103333, - 0.0024652329739183187, - 0.03164426609873772, - -0.023083245381712914, - 0.003272752510383725, - -0.023083245381712914, - 0.008088327012956142, - -0.00551148597151041, - -0.021546989679336548, - 0.0009675464825704694, - -0.015782741829752922, - -0.01624230667948723, - -0.0023404941894114017, - 0.00570187671110034, - 0.01802804134786129, - 0.0033449698239564896, - -0.006532374769449234, - -0.012191577814519405, - -0.0033679481130093336, - -0.00392270740121603, - 0.04393432289361954, - -0.029096970334649086, - 0.009276628494262695, - -0.015296917408704758, - 0.00996597483754158, - -0.01389196515083313, - -0.0034270347096025944, - -0.010766929015517235, - 0.012421360239386559, - 0.036843907088041306, - 0.02259742096066475, - 0.014968657866120338, - -0.003916142508387566, - 0.011101754382252693, - -0.03151296451687813, - 0.01209966465830803, - -0.005193073768168688, - 0.030567575246095657, - 0.011364362202584743, - 0.030777661129832268, - -0.01886838674545288, - -0.04285763204097748, - 0.00864636991173029, - -0.004178750328719616, - 0.037710513919591904, - -0.007707545533776283, - -0.00032313098199665546, - -0.005176660604774952, - -0.0015239472268149257, - 0.012683968059718609, - 0.008304978720843792, - 0.038025643676519394, - 0.004254250321537256, - -0.01022858265787363, - 0.005156965460628271, - -0.010373016819357872, - 0.015231265686452389, - 0.006552070379257202, - 0.00524559523910284, - -0.02851923182606697, - 0.0034926868975162506, - 0.005163530353456736, - 0.006689939647912979, - 0.008771108463406563, - 0.014522223733365536, - 0.013734400272369385, - -0.017135174944996834, - 0.02089046873152256, - 0.013603095896542072, - 0.0042575327679514885, - 0.008501934818923473, - 0.013301096856594086, - 0.0025505805388092995, - 0.007215155754238367, - 0.0009199487394653261, - 0.030173663049936295, - 0.038340773433446884, - -0.022085335105657578, - 0.013393010012805462, - -0.031565483659505844, - 0.010327060706913471, - -0.006007158663123846, - 0.00411309814080596, - 0.015664570033550262, - -0.0019777666311711073, - 0.020759165287017822, - -0.007602502591907978, - 0.02236107364296913, - 0.005363768897950649, - -0.010517451912164688, - 0.028886884450912476, - 0.009847801178693771, - -0.014193964190781116, - -0.0037224688567221165, - -0.015362570062279701, - -0.02938583865761757, - -0.025486109778285027, - -0.019669340923428535, - -0.001180915511213243, - -0.007858545519411564, - -0.018737083300948143, - -0.01467978861182928, - 0.0005194715340621769, - -0.0038898815400898457, - -0.03085644356906414, - -0.004067142028361559, - -0.009631149470806122, - 0.024264981970191002, - 0.0028131885919719934, - -0.003814381780102849, - -0.02980601228773594, - -0.02121872827410698, - 0.01726647838950157, - -0.0014090562472119927, - -0.017673520371317863, - -0.012257229536771774, - 0.006319005973637104, - -0.035793475806713104, - -0.0008419870282523334, - -0.01336018368601799, - 0.005856159143149853, - 0.012381969019770622, - 0.0036141430027782917, - 0.001716800034046173, - -0.011108320206403732, - 0.01441718079149723, - -0.0116072753444314, - -0.008718586526811123, - 0.0241730697453022, - -0.006670244038105011, - 0.016045350581407547, - 0.017371520400047302, - -0.019656211137771606, - 0.03742164373397827, - -0.007070721127092838, - -0.008442847989499569, - 0.012066839262843132, - -0.012985967099666595, - -0.0004973139730282128, - -0.003006862010806799, - -0.01600595936179161, - -0.01420709490776062, - 0.012913749553263187, - -0.009210976772010326, - 0.010248278267681599, - -0.0043592932634055614, - -0.019866297021508217, - 0.037684254348278046, - 0.0016339143039658666, - 0.006939417216926813, - -0.02736375667154789, - -0.021350033581256866, - 0.010064452886581421, - 0.0275738425552845, - 0.03135539963841438, - 0.0008928673341870308, - 0.007733806502074003, - 0.0088564557954669, - -0.0026457759086042643, - -0.0033581003081053495, - -0.04558875411748886, - 0.003909577149897814, - 0.0029691120143979788, - 0.0037060559261590242, - 0.0006396967801265419, - 0.013918225653469563, - -0.02406802587211132, - 0.025617413222789764, - -0.013123836368322372, - 0.011613840237259865, - -0.00822619628161192, - 0.010642190463840961, - 0.018435083329677582, - -0.027600103989243507, - 0.005554160103201866, - 0.0003134883299935609, - 0.06460157781839371, - 0.015966568142175674, - -0.000261787383351475, - 0.03797312080860138, - 0.02534167468547821, - -0.002363472245633602, - -0.019012821838259697, - -0.012112795375287533, - 0.01717456616461277, - 0.009145325049757957, - 0.02152072824537754, - -0.023805418983101845, - -0.014088921248912811, - 0.006978808436542749, - -0.0261820200830698, - 0.04017902910709381, - 0.005160247907042503, - 0.008574152365326881, - 0.0016790501540526748, - 0.007530285511165857, - -0.005422855727374554, - 0.01225066464394331, - -0.0067752874456346035, - 0.0038472076412290335, - 0.007057590875774622, - 0.006578331347554922, - -0.015717091038823128, - 0.007576241623610258, - -0.008718586526811123, - -0.014509093947708607, - -0.003893163986504078, - -0.01781795546412468, - -0.010156366042792797, - 0.009998801164329052, - -0.031119052320718765, - 0.0008575793472118676, - -0.0125198382884264, - -0.04157084971666336, - -0.03361382707953453, - 0.007727241143584251, - -0.0025538632180541754, - -0.010202322155237198, - -0.015927176922559738, - -0.017017001286149025, - -0.004418380092829466, - -0.02694358490407467, - 0.0007697697728872299, - 0.029779750853776932, - -0.01542822178453207, - -0.010648755356669426, - 0.003113546408712864, - 0.0075237201526761055, - 0.010432103648781776, - 0.017686650156974792, - 0.0017332129646092653, - -0.008121153339743614, - -0.003505817148834467, - -0.01209966465830803, - -0.024566981941461563, - 0.00496000936254859, - -0.0038406425155699253, - -0.018198736011981964, - 0.01801491156220436, - -0.009401367977261543, - -0.01218501292169094, - -0.004877944011241198, - 0.02079855650663376, - -0.010871972888708115, - -0.009145325049757957, - 0.01685943640768528, - 0.009414497762918472, - -0.012926880270242691, - 0.004900922533124685, - 0.013550574891269207, - 0.0062041147612035275, - 0.009427628479897976, - -0.013616226613521576, - 0.026772888377308846, - -0.011548188515007496, - -0.02153385803103447, - -0.01591404713690281, - 0.005491790361702442, - 0.009447324089705944, - -0.02576184831559658, - 0.01582213304936886, - -0.0011128014884889126, - 0.0013885400258004665, - 0.02408115565776825, - -0.030488792806863785, - 0.018067432567477226, - -0.0005818409263156354, - -0.01941986382007599, - 0.0017151586944237351, - -0.005202921573072672, - 0.014088921248912811, - 0.014285877346992493, - 0.0012137414887547493, - 0.012119360268115997, - -0.004195163492113352, - 0.025079067796468735, - 0.004310054238885641, - 0.01171888317912817, - 0.027547582983970642, - -0.013773791491985321, - 0.024868980050086975, - -0.031119052320718765, - -0.005888985004276037, - -0.011856752447783947, - 0.03713277727365494, - 0.00959832314401865, - -0.01114114560186863, - -0.014193964190781116, - -0.014088921248912811, - 0.00129990978166461, - 0.006164723541587591, - -0.01655743643641472, - -0.006161441095173359, - -0.007917632348835468, - 0.006348549388349056, - -0.007655024062842131, - 0.019761255010962486, - 0.006128614768385887, - -0.027495060116052628, - -0.006985373795032501, - -0.007917632348835468, - 0.015940306708216667, - 0.023175159469246864, - -0.014141442254185677, - -0.004182032775133848, - -0.011233058758080006, - -0.00020034120825584978, - -0.002494776388630271, - -0.03634495288133621, - 0.01739778183400631, - -0.02736375667154789, - 0.01203401293605566, - -0.0023158746771514416, - 0.022768115624785423, - 0.008685760200023651, - 0.01548074372112751, - 0.006900025997310877, - -0.002524319803342223, - 0.011384057812392712, - -0.013255140744149685, - -0.005613246466964483, - -0.055935509502887726, - 0.01972186379134655, - -0.006926286965608597, - 0.02226916141808033, - -0.00015551318938378245, - -0.0010898233158513904, - 0.018842127174139023, - 0.030515054240822792, - -0.01162040513008833, - -0.00037585775135084987, - -0.007221721112728119, - -0.03805190324783325, - -0.019170386716723442, - 0.001050432096235454, - -0.008068631403148174, - 0.006105636712163687, - -0.023700375109910965, - 0.005902115721255541, - 0.02312263660132885, - -0.009729627519845963, - -0.008679195307195187, - -0.01485048420727253, - 0.016518045216798782, - -0.027179932221770287, - 0.03999520465731621, - 0.010208887048065662, - -0.006227092817425728, - -0.007379285525530577, - -0.00827871821820736, - -0.02461950294673443, - -0.0009667258127592504, - 0.01624230667948723, - -0.021560119464993477, - 0.01896030083298683, - 0.010071017779409885, - -0.02247924730181694, - 0.011883013881742954, - -0.01357683539390564, - 0.0068868957459926605, - -0.024947762489318848, - 0.013419270515441895, - 0.0001723365276120603, - -0.0009921659948304296, - -0.021678293123841286, - -0.004047446418553591, - -0.02387106977403164, - 0.038130685687065125, - -0.004086837638169527, - -0.021586380898952484, - 0.04750579223036766, - -0.027521321550011635, - -0.00033790268935263157, - 0.010753799229860306, - -0.0015337950317189097, - 0.017148304730653763, - 0.019170386716723442, - 0.04768962040543556, - 0.03258965536952019, - -0.03327243775129318, - -0.02482958883047104, - -0.04361919313669205, - -0.01011697482317686, - -0.013393010012805462, - 0.026891062036156654, - 0.0116072753444314, - -0.007628763560205698, - -0.01793612912297249, - 0.015283787623047829, - 0.03106652945280075, - 0.007543415762484074, - -0.019446125254034996, - 0.03999520465731621, - 0.026260802522301674, - 0.011535057798027992, - -0.008987760171294212, - 0.008442847989499569, - -0.005442551337182522, - -0.004175467882305384, - -0.009151889942586422, - -0.030882705003023148, - -0.007372720632702112, - -0.010149800218641758, - 0.007714110892266035, - 0.035373300313949585, - -0.018487606197595596, - 0.02162577211856842, - 0.0162291768938303, - -0.015730220824480057, - 0.011791100725531578, - -0.020509688183665276, - 0.006141745485365391, - 0.01478483248502016, - -0.011042667552828789, - 0.0222560316324234, - 0.01441718079149723, - -0.0067752874456346035, - -0.0019826905336230993, - -0.01473231054842472, - -0.005268573760986328, - -0.0014648603973910213, - 0.016623089089989662, - 0.019958211109042168, - -0.01193553488701582, - -0.006049832329154015, - -0.012191577814519405, - -0.011331536807119846, - 0.01580900326371193, - 0.013248574919998646, - 0.004497162532061338, - -0.016176654025912285, - -0.011108320206403732, - -0.018172476440668106, - 0.00911906361579895, - 0.0046678576618433, - -0.017017001286149025, - -0.02238733507692814, - -0.009394802153110504, - -0.025827499106526375, - -0.008731717243790627, - 0.012434490025043488, - 0.008712021633982658, - -0.026484020054340363, - -0.007504024542868137, - 0.036870166659355164, - 0.013800051994621754, - 0.031749311834573746, - -0.014443442225456238, - -0.011640100739896297, - -0.005166813265532255, - 0.009000889956951141, - -0.042463719844818115, - 0.013642487116158009, - 0.03904981538653374, - 0.01081288605928421, - -0.0041098156943917274, - 0.014929266646504402, - -0.014141442254185677, - -0.028808102011680603, - 0.013340488076210022, - 0.0018776474753394723, - -0.014706050045788288, - -0.014010138809680939, - -0.0067490264773368835, - 0.01351118367165327, - 0.006003876216709614, - -0.007142938673496246, - 0.008620108477771282, - 0.004277228377759457, - -0.01150223147124052, - -0.022295422852039337, - -0.019170386716723442, - 0.020391514524817467, - 0.0333249606192112, - 0.004730227403342724, - 0.01309757586568594, - -0.025853760540485382, - 0.04527362436056137, - 0.006007158663123846, - -0.010064452886581421, - 0.003643686417490244, - -0.035241998732089996, - -0.02131064236164093, - 0.018697692081332207, - 0.03500565141439438, - -0.015336308628320694, - -0.006525809410959482, - -0.033246178179979324, - -0.0026326454244554043, - -0.01420709490776062, - 0.009854366071522236, - 0.017450302839279175, - 0.015139353461563587, - 0.0011070569744333625, - 0.010629059746861458, - -0.022216640412807465, - 0.010103844106197357, - -9.007917469716631e-06, - -0.016911957412958145, - 0.0014615778345614672, - -0.013826312497258186, - -0.01769978180527687, - 0.00498298741877079, - -0.0026687541976571083, - 0.023162027820944786, - 0.004106533247977495, - -0.0462452732026577, - -0.016820045188069344, - -0.010963885113596916, - -0.02228229120373726, - -0.013419270515441895, - -0.009368541650474072, - -0.0014763495419174433, - 0.009906888008117676, - 0.013150096870958805, - -0.007825719192624092, - 0.032300788909196854, - 0.002885405672714114, - 0.03374513238668442, - -0.020089514553546906, - -0.00852819625288248, - 0.016478653997182846, - -0.013399574905633926, - 0.03841955587267876, - 0.005481942556798458, - -0.019012821838259697, - -0.01271679438650608, - 0.035583388060331345, - 0.009906888008117676, - 0.006115484517067671, - 0.012959706597030163, - -0.0075237201526761055, - -0.0014730669790878892, - -0.006286179646849632, - 0.0008575793472118676, - -0.012854662723839283, - 0.00799641478806734, - 0.01473231054842472, - -0.03965381160378456, - 0.013603095896542072, - 0.012053708545863628, - 0.0028443732298910618, - -0.024645764380693436, - -0.014351529069244862, - -0.0025325261522084475, - -0.0015354363713413477, - -0.016347350552678108, - 0.0168463047593832, - -0.006588179152458906, - -0.009256932884454727, - -0.012493576854467392, - 0.028335407376289368, - 0.005980898160487413, - -0.00039473269134759903, - 0.018592648208141327, - 0.024632632732391357, - -0.01479796227067709, - -0.005918528418987989, - -0.001815277966670692, - -0.04411815106868744, - -0.026129499077796936, - 0.0005867648287676275, - -0.017857346683740616, - 0.03639747202396393, - -0.028913144022226334, - 0.006640700623393059, - -0.010891668498516083, - 0.008495369926095009, - -0.02005012333393097, - -0.023030724376440048, - -0.008318109437823296, - 0.026037586852908134, - 0.03180183097720146, - -0.032931048423051834, - 0.003558338852599263, - 0.013340488076210022, - -0.019025951623916626, - -0.01066188607364893, - -0.012106230482459068, - 0.00340733933262527, - -0.03563591092824936, - -0.02037838287651539, - 0.0018743647960945964, - -0.006466722581535578, - -0.0065750484354794025, - 0.004254250321537256, - -0.009578627534210682, - 0.001582213444635272, - 0.011259319260716438, - 0.1894979625940323, - -0.006529092323035002, - -0.008048935793340206, - 0.017003869637846947, - 0.00450372789055109, - -0.017634129151701927, - 0.028282884508371353, - 0.005734703037887812, - 0.01011697482317686, - 0.01896030083298683, - -0.02405489608645439, - 0.0013417629525065422, - 0.011252754367887974, - 0.005357204005122185, - 0.00572813767939806, - -0.02119246870279312, - -0.03794686123728752, - -0.01511309202760458, - -0.01139062363654375, - 0.021862119436264038, - 0.026851670816540718, - -0.012821837328374386, - -0.022426726296544075, - -0.017857346683740616, - 0.016688739880919456, - 0.005396595224738121, - -0.0289656650274992, - -0.006456874776631594, - 0.013432401232421398, - 0.016189785674214363, - -0.0014812734443694353, - 2.5196522983605973e-05, - -0.0038439249619841576, - -0.0006253353785723448, - -0.010451799258589745, - -0.005133986938744783, - 0.0314079225063324, - -0.010064452886581421, - 0.014574745669960976, - 0.02502654492855072, - 0.004362575709819794, - -0.004815574735403061, - -0.0009659051429480314, - -0.013695009052753448, - 0.005022378638386726, - 0.024566981941461563, - -0.004736792296171188, - -0.0017447021091356874, - -0.01171888317912817, - -0.02418619953095913, - -0.023280201479792595, - -0.013169792480766773, - 0.012795576825737953, - 0.038971032947301865, - -0.0007492535514757037, - -0.025381065905094147, - 0.016399871557950974, - -0.0021977010183036327, - -0.008600412867963314, - 0.0057905069552361965, - -0.03965381160378456, - 0.023687245324254036, - -0.006364962086081505, - 0.023372115567326546, - -0.006873765029013157, - 0.002836166648194194, - -0.017752302810549736, - -0.008232762105762959, - 0.017844215035438538, - -0.011410319246351719, - -0.0006064604385755956, - -0.02577497810125351, - -0.012263795360922813, - 0.008252457715570927, - -0.01611100323498249, - -0.028703058138489723, - 0.026024455204606056, - 0.008304978720843792, - 0.022124726325273514, - 0.03658130019903183, - -0.004648162052035332, - 0.025170980021357536, - 0.006384657695889473, - -0.022426726296544075, - -0.0009864213643595576, - -0.030462531372904778, - 0.02673349715769291, - 0.009578627534210682, - -0.010793190449476242, - -0.0373428612947464, - -0.004789313767105341, - 0.026431499049067497, - -0.011909274384379387, - 0.00760906795039773, - 0.025486109778285027, - 0.006154875736683607, - 0.0177129115909338, - 0.02195403166115284, - -0.008134284056723118, - 0.002506265416741371, - -0.0003420059219934046, - 0.06554696708917618, - 0.030383748933672905, - -0.015362570062279701, - -0.010379582643508911, - 4.8546582547714934e-05, - 0.007431807462126017, - 0.013379879295825958, - -0.0033105025067925453, - -0.023398375138640404, - 0.0037323166616261005, - -0.025709325447678566, - 0.004500444978475571, - -0.007930762134492397, - 0.009834670461714268, - 0.0031004161573946476, - 0.016911957412958145, - -0.012710228562355042, - 0.0021156358998268843, - -0.023135768249630928, - -0.024790197610855103, - 0.003397491527721286, - -0.0003391336649656296, - 0.010786624625325203, - -0.007589372340589762, - -0.03532078117132187, - -0.029674706980586052, - -0.006151593290269375, - -0.01569082960486412, - -0.018080562353134155, - 0.025079067796468735, - -0.023398375138640404, - 0.01278244610875845, - -0.007464633323252201, - 0.016491783782839775, - 0.020640991628170013, - 0.004848400596529245, - -0.014706050045788288, - -0.0034368825145065784, - 0.003008503234013915, - 0.017883606255054474, - -0.00806206651031971, - 0.027232453227043152, - -0.014955527149140835, - 0.0015346156433224678, - 0.00996597483754158, - 0.01357683539390564, - 0.007254546973854303, - -0.02035212330520153, - -0.016675610095262527, - -0.014351529069244862, - -0.013997008092701435, - -0.002086092485114932, - -0.013616226613521576, - 0.027074888348579407, - 0.0014771701535210013, - -0.02280750684440136, - -0.03235330805182457, - -0.005081465467810631, - 0.02691732347011566, - -0.011042667552828789, - -0.007628763560205698, - -0.001319605391472578, - -0.01993194967508316, - -0.007444937713444233, - 0.01790986768901348, - -0.16596826910972595, - 0.009250367991626263, - 0.019761255010962486, - -0.042279891669750214, - -0.0033597415313124657, - 0.00811458844691515, - 0.020509688183665276, - -0.003771707881242037, - -0.013826312497258186, - -0.006699787452816963, - 0.0246063731610775, - 0.00450372789055109, - -0.0178048238158226, - -0.0008821988594718277, - -0.002246940042823553, - 0.014719179831445217, - -0.027284974232316017, - 0.05294178053736687, - 0.02862427569925785, - 0.027442539110779762, - 0.016399871557950974, - -0.02501341514289379, - 0.012933445163071156, - 0.023162027820944786, - 0.00019880248873960227, - 0.01389196515083313, - -0.022032814100384712, - 0.04199102520942688, - -0.004677705466747284, - -0.014548485167324543, - -0.017450302839279175, - 0.002706503961235285, - 0.05346699431538582, - -0.011121449992060661, - -0.01336018368601799, - -0.02036525309085846, - -0.006269766949117184, - -0.00623365817591548, - -0.02258429117500782, - 0.03287852555513382, - 0.018828995525836945, - -0.007753502111881971, - 0.0007677181856706738, - 0.008134284056723118, - -0.03382391482591629, - 0.022846898064017296, - 0.03340374305844307, - -0.012434490025043488, - -0.00912562943994999, - -0.029753489419817924, - 0.01696447841823101, - -0.016032220795750618, - 0.006141745485365391, - 0.006154875736683607, - 0.005724855232983828, - 0.03723781928420067, - 0.010353321209549904, - -0.0018874952802434564, - 0.0017988650361075997, - -0.007333329413086176, - -0.023582201451063156, - -0.0007311992230825126, - 0.002898536156862974, - -0.007044460624456406, - -0.006164723541587591, - -0.028886884450912476, - 0.001831691013649106, - 0.014233355410397053, - -0.010458365082740784, - -0.003277676412835717, - 0.0016675610095262527, - -0.004569379612803459, - 0.00519635621458292, - -0.010766929015517235, - 0.00965084508061409, - -0.0003175915917381644, - -0.015717091038823128, - -0.0047564879059791565, - 0.02778393030166626, - -0.013353618793189526, - -0.011489101685583591, - 0.052862998098134995, - -0.04157084971666336, - -0.0035649039782583714, - 0.004185315687209368, - -0.009690236300230026, - -0.005022378638386726, - 0.015835264697670937, - 0.01856638863682747, - 0.0038865988608449697, - -0.00040909406379796565, - -0.009184716269373894, - -0.0006815498927608132, - -0.01054371241480112, - 0.013399574905633926, - -0.0075499811209738255, - -0.007595937233418226, - 0.0009724703850224614, - -0.010031626559793949, - -0.016570566222071648, - 0.0171876959502697, - -0.010327060706913471, - -0.02165203168988228, - 0.009893757291138172, - 0.009086238220334053, - 0.001695463084615767, - -0.015769612044095993, - 0.01537569984793663, - 0.023175159469246864, - -0.010747233405709267, - -0.007858545519411564, - -0.021021772176027298, - 0.017161434516310692, - -0.00755654601380229, - -0.01278244610875845, - 0.015126222744584084, - 0.001843180158175528, - -0.007595937233418226, - 0.016176654025912285, - -0.008068631403148174, - 0.029307056218385696, - 0.008232762105762959, - -0.014193964190781116, - 0.0013704856391996145, - -0.020286470651626587, - -0.024409417062997818, - -0.07132434099912643, - 0.011528492905199528, - 0.029517142102122307, - 0.02387106977403164, - 0.0036929254420101643, - 0.011659796349704266, - -0.02408115565776825, - 0.007700980640947819, - -0.007917632348835468, - 0.022111596539616585, - -0.027495060116052628, - -0.02119246870279312, - -0.010261408984661102, - 0.010970450937747955, - 0.02628706395626068, - -0.03679138422012329, - -0.0065750484354794025, - -0.030987747013568878, - -0.008298413828015327, - 0.02119246870279312, - 0.026050716638565063, - 0.008790804073214531, - -0.004500444978475571, - -0.018500735983252525, - -0.02173081412911415, - -0.009979105554521084, - -0.03193313628435135, - 0.015848394483327866, - 0.012690532952547073, - 0.010832581669092178, - -0.00710354745388031, - -0.031565483659505844, - 0.02673349715769291, - -0.032064441591501236, - -0.007884806022047997, - -0.013373314402997494, - -0.022991333156824112, - -0.01991881988942623, - 0.029018187895417213, - -0.04653414338827133, - 0.013563704676926136, - -0.002865710062906146, - 0.017476564273238182, - -0.02066725306212902, - -0.014049530029296875, - -0.025092197582125664, - -0.008265587501227856, - -0.0017594738164916635, - 0.004529988393187523, - -0.017975520342588425, - -0.0034762737341225147, - -0.016504915431141853, - 0.00237167882733047, - 0.015441352501511574, - 0.01569082960486412, - 0.01582213304936886, - -0.015493873506784439, - -0.0020417773630470037, - -0.014404051005840302, - -0.006716200616210699, - -0.02534167468547821, - 0.016307959333062172, - -0.04062546417117119, - 0.0024209178518503904, - 0.012112795375287533, - 0.01846134476363659, - -0.03319365531206131, - -0.01642613299190998, - 0.01054371241480112, - -0.02023394964635372, - -0.026221411302685738, - 0.013268270529806614, - -0.006181136704981327, - 0.0037060559261590242, - -0.026326455175876617, - 0.004559531807899475, - -0.018303779885172844, - 0.004569379612803459, - 0.02691732347011566, - -0.015966568142175674, - -0.02279437705874443, - -0.028072798624634743, - 0.019380472600460052, - -0.011830491945147514, - 0.020746033638715744, - 0.02237420342862606, - 0.011968361213803291, - -0.025302283465862274, - 0.024461938068270683, - -0.027127409353852272, - 0.03826199099421501, - 0.02163890190422535, - 0.00912562943994999, - -0.004546401556581259, - 0.012066839262843132, - 0.028072798624634743, - -0.007950457744300365, - -0.015507004223763943, - 0.0019432994304224849, - 0.009723062627017498, - -0.049265265464782715, - -0.00030405085999518633, - -0.06255323439836502, - 0.02471141517162323, - 0.026536541059613228, - -0.014719179831445217, - -0.048503704369068146, - -0.0002607615606393665, - 0.00018710822041612118, - 0.0010676657548174262, - -0.004336315207183361, - 0.019367342814803123, - -0.007405546493828297, - 0.005445834249258041, - -0.004818857181817293, - 0.0023306463845074177, - -0.03290478512644768, - -0.010537147521972656, - 0.01241479441523552, - 0.007806023582816124, - 0.031040269881486893, - 0.0024356895592063665, - -0.008948368951678276, - 0.014627267606556416, - 0.0008871227619238198, - 0.011928969994187355, - -0.03760547190904617, - 0.00996597483754158, - -0.009519540704786777, - 0.004723662044852972, - -0.003942403011023998, - -0.020549079403281212, - 0.015454482287168503, - -0.0057051596231758595, - -0.008383761160075665, - 0.012073404155671597, - -0.0032251549419015646, - -0.01729273982346058, - 0.0035911649465560913, - 0.04569379612803459, - 0.03243209049105644, - 0.05982210859656334, - -0.019144125282764435, - -0.01864517107605934, - 0.012526403181254864, - -0.03256339579820633, - 0.01272992417216301, - -0.001578110153786838, - -0.0059382240287959576, - -0.0061877015978097916, - 0.02226916141808033, - -0.01654430665075779, - 0.02204594388604164, - 0.024225590750575066, - 0.0007451503188349307, - -0.007208590395748615, - 0.02226916141808033, - -0.02246611751616001, - 0.0041459244675934315, - 0.017043260857462883, - 0.022400464862585068, - -0.009210976772010326, - 0.05076213181018829, - 0.014706050045788288, - 0.0335087850689888, - -0.0017496260115876794, - 0.029018187895417213, - 0.005957919638603926, - -0.0157039612531662, - -0.003253056900575757, - -0.003778273006901145, - -0.018934039399027824, - -0.02651028148829937, - -0.00863980408757925, - 0.009946279227733612, - 0.047243185341358185, - -0.017227087169885635, - -0.01209966465830803, - 0.007090416736900806, - -0.0006306695868261158, - -0.0009092803229577839, - 0.019354211166501045, - 0.02917575277388096, - 0.030094880610704422, - -0.014364659786224365, - 0.008488805033266544, - -0.0029133078642189503, - 0.007714110892266035, - -0.008744847029447556, - 0.0018612344283610582, - -0.016715001314878464, - -0.005091313272714615, - -0.009499846026301384, - 0.0157039612531662, - 0.004845118150115013, - -0.006808113306760788, - 0.0054031601175665855, - 0.013471792452037334, - 0.006716200616210699, - -0.0021648749243468046, - 0.020312732085585594, - 0.03789433836936951, - -0.004198445938527584, - 0.006108919158577919, - -0.011863318271934986, - -0.024120546877384186, - -0.02005012333393097, - 0.011318406090140343, - -0.006059680134057999, - -0.021336901932954788, - -0.002906742738559842, - 0.014259615913033485, - -0.014811092987656593, - 0.01345866173505783, - -0.008547891862690449, - -0.008915542624890804, - -0.021586380898952484, - 0.022229770198464394, - -0.036738865077495575, - -0.018815865740180016, - -0.02767888642847538, - 0.040651723742485046, - 0.00806206651031971, - 0.029123229905962944, - -0.009178150445222855, - 0.003991642035543919, - 0.021153077483177185, - -0.0020942990668118, - 0.013642487116158009, - -0.006112202070653439, - 0.010819450952112675, - -0.003545208368450403, - 0.0030708727426826954, - -0.003791403491050005, - -0.02035212330520153, - -0.015625178813934326, - -0.04107189550995827, - -0.013242010027170181, - 0.0053178127855062485, - 0.02300446294248104, - 0.013747530058026314, - 0.11313153803348541, - 0.04535240679979324, - -0.018684562295675278, - 0.01181736122816801, - -0.023779157549142838, - 0.004786031320691109, - 0.003021633718162775, - 0.013589966110885143, - -0.004854965955018997, - -0.06523183733224869, - -0.012027448043227196, - -0.010340191423892975, - 0.00917158555239439, - -0.04178093746304512, - -0.0009814975783228874, - -0.0050322264432907104, - -0.005495073273777962, - 0.01389196515083313, - -0.016898827627301216, - 0.020706642419099808, - 0.031014008447527885, - -0.03172304853796959, - 0.03277348354458809, - 0.03106652945280075, - -0.018934039399027824, - -0.008606978692114353, - 0.010261408984661102, - -0.010267973877489567, - 0.002209190046414733, - -0.006900025997310877, - -0.009460454806685448, - -0.012749619781970978, - -0.04073050618171692, - -0.03295730799436569, - 0.012861228547990322, - -0.004641597159206867, - 0.011587579734623432, - -0.034191567450761795, - 0.0011981491697952151, - -0.02247924730181694, - -0.00369620812125504, - 0.014010138809680939, - 0.0010274539235979319, - -0.006755591835826635, - 0.007904501631855965, - -0.012677403166890144, - 0.0005391671438701451, - -0.024882111698389053, - -0.023595331236720085 - ], - "sparse": "SparseEmbedding(values=array([1.29889299, 1.63341067, 1.29889299, 1.63341067, 1.29889299,\n 1.29889299, 1.63341067, 1.29889299, 1.29889299, 1.29889299,\n 1.29889299, 1.29889299, 1.29889299, 1.29889299, 1.63341067,\n 1.29889299, 1.29889299, 1.29889299, 1.29889299, 1.63341067,\n 1.63341067, 1.78680203, 1.29889299, 1.29889299, 1.29889299,\n 1.63341067, 1.63341067, 1.29889299, 1.63341067, 1.29889299,\n 1.29889299, 1.29889299, 1.63341067, 1.29889299, 1.78680203,\n 1.29889299, 1.29889299, 1.29889299, 1.29889299, 1.29889299,\n 1.29889299, 1.29889299, 1.78680203, 1.63341067, 1.63341067,\n 1.63341067, 1.63341067, 1.78680203, 1.87483356, 1.29889299,\n 1.29889299, 1.29889299, 1.29889299, 1.29889299, 1.63341067,\n 1.63341067, 1.29889299, 1.63341067, 1.78680203, 1.87483356,\n 1.87483356, 1.29889299, 1.29889299, 1.29889299, 1.29889299,\n 1.63341067, 1.29889299, 1.29889299, 1.29889299, 1.29889299,\n 1.29889299, 1.29889299, 1.29889299, 1.29889299, 1.29889299]), indices=array([ 337416142, 1109731834, 705826487, 1115513404, 1494156540,\n 1726718598, 164058840, 2124172637, 1380383012, 397244766,\n 1093290825, 1092081572, 1505931685, 766120536, 1394226660,\n 855741121, 1669595920, 1584422431, 2079643764, 1810453357,\n 378174453, 538856249, 1407327463, 1734313546, 1641421362,\n 843816345, 433708589, 46497643, 1114505193, 1634326176,\n 2135250061, 2031875777, 653745147, 987377478, 230800482,\n 1648023851, 1520550099, 1758585714, 1366134345, 193740839,\n 1555540962, 1207234426, 2077811411, 1839722524, 47951928,\n 819332622, 1841900287, 922977895, 911111262, 1246280156,\n 613148321, 623812177, 1515684580, 686997726, 199066008,\n 1131799396, 494070171, 1381820790, 1721868368, 408270109,\n 424222366, 2103309648, 2112545234, 1219669695, 627407068,\n 1475817810, 1378902744, 73978416, 749129358, 1742651975,\n 1958022517, 59342420, 197470718, 1952906603, 1265401351]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 18, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 132 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000019.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000019.json deleted file mode 100644 index 624c10f11e147a26fc309cefa522b9ccf9b73e00..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000019.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000019", - "content": "Abbildung 1: 30-Jahresmitteltemperatur f\u00fcr den historischen Zeitraum (1970-2000), f\u00fcr", - "embedding": { - "dense": [ - 0.013609964400529861, - -0.007359175942838192, - 0.01274000946432352, - -0.025621788576245308, - 0.00511018093675375, - 0.003262331709265709, - -0.029256267473101616, - -0.004504434298723936, - -0.0062958975322544575, - -0.030622418969869614, - 0.006318451836705208, - 0.029256267473101616, - 0.0009762829286046326, - -0.012411359697580338, - -0.00904108863323927, - 0.024332966655492783, - 0.01553030963987112, - 0.0012332418700680137, - 0.0034218234941363335, - -0.006002690177410841, - -0.016471149399876595, - 0.01042657345533371, - 0.017979072406888008, - 0.01470546331256628, - -0.0001411663251928985, - 0.0075138346292078495, - 0.012926888652145863, - -0.0429435633122921, - 0.009563062340021133, - -0.010619896464049816, - 0.010252581909298897, - -0.011335193179547787, - -0.023817436769604683, - -0.021909980103373528, - -0.022966815158724785, - -0.007107855286449194, - -0.024320079013705254, - -0.024796942248940468, - 0.022644609212875366, - 0.0025035375729203224, - 0.0012743230909109116, - 0.006650323513895273, - 0.013429529033601284, - -0.008886430412530899, - 0.016290714964270592, - 0.008783324621617794, - 0.01212137471884489, - -0.0005288199172355235, - -0.0015578640159219503, - 0.015620526857674122, - 0.011895830743014812, - 0.035055968910455704, - -0.007301178760826588, - -0.03577771037817001, - -0.002630808623507619, - -0.010568343102931976, - -0.023984983563423157, - 0.02899850346148014, - 0.009956153109669685, - -0.00533894682303071, - -0.027580799534916878, - -0.014550804160535336, - -0.0034186013508588076, - 0.022541502490639687, - -0.05505849048495293, - -0.036396343261003494, - -0.004688091576099396, - 0.0005227786023169756, - 0.01693512685596943, - -0.005609599407762289, - 0.015929844230413437, - 0.012617571279406548, - 0.008222687058150768, - 0.012385583482682705, - -0.009846602566540241, - -0.030055338516831398, - 0.010652116499841213, - 0.011354525573551655, - -0.016136055812239647, - -0.006070353556424379, - 0.02837986871600151, - -0.021819762885570526, - -0.022554391995072365, - 0.009762829169631004, - 0.019074570387601852, - 0.025570236146450043, - -0.031034842133522034, - 0.009021756239235401, - 0.002732303459197283, - -0.024113867431879044, - 0.027632351964712143, - 0.020273175090551376, - 0.01764397881925106, - 0.02529958263039589, - -0.006096129771322012, - -0.0130106620490551, - -0.0017012455500662327, - 0.0345146618783474, - 0.0179532952606678, - -0.011921606957912445, - 0.006102574057877064, - -0.006785649806261063, - 0.02344367839396, - -0.004130675923079252, - -0.06536906957626343, - 0.006428001448512077, - 0.01868792437016964, - 0.0016198885859921575, - 0.0011744394432753325, - -0.04675847664475441, - -0.011128981597721577, - 0.03521062806248665, - -0.00017670962552074343, - -0.03508174419403076, - -0.0012872113147750497, - 0.010085035115480423, - 0.012379138730466366, - 0.011541404761373997, - -0.0027903004083782434, - -0.032349441200494766, - 0.017321772873401642, - 0.026781728491187096, - -0.004655870608985424, - -0.01858481951057911, - 0.022773491218686104, - 0.013120211660861969, - -0.014357481151819229, - -0.015749409794807434, - -0.02372721955180168, - 0.0038406907115131617, - -0.01622627303004265, - 0.007088522892445326, - 0.015092110261321068, - 0.012823782861232758, - -0.017927519977092743, - 0.026987940073013306, - -0.015517421066761017, - -0.009820826351642609, - -0.008757548406720161, - -0.03977305814623833, - 0.020930474624037743, - 0.029591361060738564, - -0.01600717380642891, - -0.016857797279953957, - 0.00132909812964499, - 0.014550804160535336, - -0.013326423242688179, - 0.027013717219233513, - -0.013945057988166809, - -0.026446634903550148, - 0.01444769836962223, - -0.026034211739897728, - 0.012720677070319653, - 0.011225642636418343, - -0.00877043604850769, - 0.007288290653377771, - 0.002126556821167469, - 0.010735890828073025, - 0.016793355345726013, - 0.003262331709265709, - -0.005097292363643646, - -0.020724263042211533, - 0.028405645862221718, - 0.011444742791354656, - 0.009318185970187187, - 0.017579536885023117, - -0.0006722013931721449, - -0.015504533424973488, - 0.01910034753382206, - -0.009994817897677422, - -0.0023005479015409946, - 0.02776123397052288, - -0.012346918694674969, - 0.014512140303850174, - 0.007655604742467403, - 0.035983920097351074, - -0.039592623710632324, - 0.015143662691116333, - -0.0019670650362968445, - -0.03118950128555298, - -0.004884636960923672, - 0.019164789468050003, - 0.012868891470134258, - 0.0013444027863442898, - -0.006856535095721483, - 0.026962164789438248, - 0.014267263934016228, - 0.01578807458281517, - 0.022541502490639687, - -0.017940407618880272, - 0.032143231481313705, - 0.020582493394613266, - 0.03448888659477234, - 0.00883487705141306, - -0.6186347603797913, - -0.002551868325099349, - -0.03436000272631645, - 0.003924464341253042, - 0.014924563467502594, - 0.012914000079035759, - 0.017270220443606377, - 0.0024165420327335596, - -0.039077095687389374, - 0.004842750262469053, - 0.0038342466577887535, - 0.019139012321829796, - -0.0009239245555363595, - -0.023714331910014153, - 0.001950954901985824, - 0.005835143383592367, - -0.03580348566174507, - 0.00022353013628162444, - 0.0037085863295942545, - 0.010523234494030476, - -0.0023682110477238894, - 0.02269616164267063, - 0.004494768101722002, - 0.01828838884830475, - 0.012308253906667233, - -0.00021426672174129635, - 0.004272446036338806, - -0.03211745247244835, - 0.00043215826735831797, - 0.010039926506578922, - -0.014022387564182281, - 0.00975638534873724, - 0.02581511251628399, - 0.016870684921741486, - 0.027580799534916878, - 0.008345125243067741, - -0.027709681540727615, - 0.02776123397052288, - 0.026704398915171623, - 0.016445374116301537, - -0.02497737854719162, - -0.005915694870054722, - -0.004275668412446976, - -0.003557149786502123, - -0.011683174408972263, - 0.013816175982356071, - 0.021742433309555054, - -0.02394632063806057, - 0.018043512478470802, - -0.03840690851211548, - 0.024706725031137466, - -0.014666798524558544, - 0.011161201633512974, - 0.008209798485040665, - 0.003553927643224597, - 0.009047533385455608, - 0.007990698330104351, - -0.011812057346105576, - 0.0076169404201209545, - 0.004755754489451647, - -0.02394632063806057, - 0.01961587741971016, - 0.010304135270416737, - -0.010252581909298897, - -0.020414946600794792, - 0.03332894667983055, - -0.029436703771352768, - 0.014692574739456177, - -0.002034728415310383, - -0.01367440540343523, - -0.010858328081667423, - 0.03118950128555298, - -0.0018961798632517457, - -0.0198349766433239, - 0.023263243958353996, - 0.01775997318327427, - 0.01980919949710369, - -0.0164067093282938, - -0.012817338109016418, - -0.008828433230519295, - 0.018211059272289276, - -0.029900679364800453, - -0.011174090206623077, - -0.0006468277424573898, - 0.021703768521547318, - -0.04015970602631569, - -0.0007813485572114587, - 0.017167113721370697, - -0.0076169404201209545, - 0.01734755001962185, - 0.013713070191442966, - 0.0062604546546936035, - -0.010916325263679028, - -0.001731855096295476, - 0.006028466857969761, - 0.005010297056287527, - -0.02434585429728031, - 0.020260287448763847, - 0.009653279557824135, - -0.04570164158940315, - -0.011277195997536182, - 0.0030190665274858475, - 0.031550370156764984, - -0.003376714652404189, - 0.016986679285764694, - 0.014022387564182281, - -0.03036465495824814, - -0.0004510878352448344, - 0.021755320951342583, - -0.027735456824302673, - -0.0010632784105837345, - -0.010291246697306633, - -0.022876597940921783, - -0.012501576915383339, - -0.01671602576971054, - -0.01764397881925106, - 0.034334227442741394, - -0.011335193179547787, - 0.01962876506149769, - -0.0038310245145112276, - 0.02147178165614605, - -0.028122104704380035, - 0.0302357729524374, - -0.00297879078425467, - 0.004497990012168884, - 0.018816806375980377, - 0.018662147223949432, - -0.014885898679494858, - 0.002450373489409685, - -0.03085440769791603, - 0.018623482435941696, - 0.0031978904735296965, - 0.02600843645632267, - -0.008093804121017456, - 0.035880815237760544, - 0.02518359012901783, - 0.003753695171326399, - -0.007732934318482876, - 0.0030899515841156244, - -0.0031141170766204596, - -0.019989635795354843, - 0.0033122734166681767, - -0.015092110261321068, - -0.016239162534475327, - -0.014885898679494858, - -0.0324525460600853, - 0.0025921440683305264, - 0.017270220443606377, - -0.004104899242520332, - 0.02930781990289688, - -0.009724164381623268, - -0.017064008861780167, - 0.007926257327198982, - -0.0027033048681914806, - 0.007165852468460798, - -0.0004212838248349726, - 0.0066052149049937725, - -0.018971465528011322, - -0.013429529033601284, - -0.01949988305568695, - 0.01130941603332758, - 0.012971997261047363, - -0.021845540031790733, - 0.0022151635494083166, - 0.012475800700485706, - 0.02147178165614605, - 0.007604051847010851, - 0.021613551303744316, - 0.006843646988272667, - -0.025454241782426834, - -0.0033090515062212944, - 0.01476990431547165, - 0.011038763448596, - -0.0033992689568549395, - -0.004591429606080055, - 0.007191628683358431, - -0.025235142558813095, - -0.006225012242794037, - -0.0023053810000419617, - -0.020492276176810265, - 0.02961713820695877, - 1.2202278412587475e-05, - -0.027116822078824043, - -0.019435441121459007, - 0.031215278431773186, - -0.016071615740656853, - 0.010619896464049816, - 0.012063377536833286, - -0.00991748832166195, - 0.013777511194348335, - -0.0013508469564840198, - 0.01755376160144806, - 0.016148943454027176, - 0.013481082394719124, - 0.009621058590710163, - -0.008061584085226059, - -0.019847864285111427, - 0.0011188589269295335, - 0.014873010106384754, - 0.017192890867590904, - 0.034823980182409286, - 0.0019686762243509293, - 0.024423183873295784, - -0.006843646988272667, - 0.026601294055581093, - -0.015259657055139542, - 0.0018462380394339561, - -0.015723632648587227, - 0.025222253054380417, - 0.011418966576457024, - 0.006173459347337484, - -0.03559727221727371, - -0.06330695748329163, - -0.018752366304397583, - -0.010271914303302765, - 0.017579536885023117, - 0.003576482180505991, - -0.005809366703033447, - 0.005393721628934145, - -0.0037569173146039248, - 0.009105529636144638, - -0.0033992689568549395, - 0.022245073691010475, - -0.0034927085507661104, - 0.004381996113806963, - 0.00913775060325861, - -0.00022735631500836462, - -0.009421291761100292, - 0.009827270172536373, - -0.0028837400022894144, - -0.03304540738463402, - -0.011702506802976131, - -0.03015844337642193, - 0.033586710691452026, - -0.015311209484934807, - 0.003760139225050807, - -0.0020105629228055477, - -0.028354091569781303, - 0.027477692812681198, - 0.018314165994524956, - -0.015775185078382492, - 0.020878922194242477, - 0.017837300896644592, - -0.02910160832107067, - 0.0018784586573019624, - 0.002750024665147066, - 0.013029994443058968, - 0.028637632727622986, - -0.003152781631797552, - -0.0010713336523622274, - -0.015414315275847912, - -0.002160388510674238, - -0.001327487058006227, - 0.006798537913709879, - 0.006418335251510143, - -0.0008594834362156689, - 0.007198072969913483, - -0.020054075866937637, - 0.020530940964818, - 0.04057212918996811, - 0.0021813318599015474, - -0.008738216012716293, - 0.001823683618567884, - -0.007745822425931692, - 0.024023648351430893, - -0.013957946561276913, - -0.013493970036506653, - -0.02444896101951599, - -0.0011454408522695303, - 0.012714232318103313, - -0.006341006141155958, - -0.022760603576898575, - 0.001833349815569818, - 0.0017382991500198841, - -0.020994916558265686, - -0.023276131600141525, - 0.01268845610320568, - 0.018868358805775642, - 0.020273175090551376, - -0.005216508638113737, - -0.011051652021706104, - -0.04789264127612114, - -0.003866467159241438, - 0.018223948776721954, - 0.015104997903108597, - -0.030622418969869614, - -0.012346918694674969, - 0.004195116925984621, - -0.015736520290374756, - 0.014099717140197754, - -0.009569506160914898, - 0.010607007890939713, - -0.029256267473101616, - -0.02076292783021927, - 0.01223092433065176, - 0.02475827746093273, - 0.019770534709095955, - -0.014847233891487122, - -0.007726490031927824, - 0.02063404582440853, - -0.019074570387601852, - -0.03325161710381508, - 0.00255347928032279, - -0.020363394170999527, - 0.033380500972270966, - 0.0025792557280510664, - 0.0011623566970229149, - 0.012617571279406548, - 0.0003431489458307624, - 0.010761667042970657, - 0.01602006144821644, - -0.022257963195443153, - -0.02158777415752411, - 0.029771797358989716, - 0.010510346852242947, - 0.01145118661224842, - 0.0041918945498764515, - -0.007823151536285877, - 0.033792924135923386, - 0.004642982501536608, - 0.0015361151890829206, - -0.0012372694909572601, - -0.04255691543221474, - 0.006804982200264931, - 0.028534527868032455, - 0.02724570594727993, - 0.016445374116301537, - 0.007036969996988773, - -0.011547848582267761, - -0.02147178165614605, - -0.005329280626028776, - -0.03827802464365959, - 0.028637632727622986, - 0.004868526477366686, - 0.003979239147156477, - 0.00013794426922686398, - 0.018391495570540428, - -0.01053612306714058, - 0.02220640890300274, - -0.019770534709095955, - -0.0016577477799728513, - -0.03167925402522087, - 0.021858427673578262, - 0.006031688768416643, - -0.02281215600669384, - 0.011186977848410606, - -0.006563327740877867, - 0.04363952577114105, - 0.010207473300397396, - -0.020904699340462685, - 0.011470519006252289, - -0.0007793348049744964, - 0.007339843548834324, - 0.005213286727666855, - -0.003370270598679781, - 0.030287325382232666, - -0.005129512865096331, - 0.018662147223949432, - -0.011367413215339184, - 0.006237900350242853, - -0.020621158182621002, - -0.002155555412173271, - 0.03077707812190056, - -0.01506633311510086, - 0.025931106880307198, - -0.011792724952101707, - 0.0016706360038369894, - -0.016290714964270592, - 0.006041354965418577, - -0.0010101145599037409, - -0.028534527868032455, - 0.010271914303302765, - 0.002137834206223488, - -0.004778308793902397, - 0.012636903673410416, - 0.002447151578962803, - -0.01796618476510048, - -0.01578807458281517, - -0.01774708367884159, - -0.016329379752278328, - 0.00815180130302906, - -0.009543729946017265, - -0.00014378424384631217, - 0.013493970036506653, - -0.02496448904275894, - -0.038767777383327484, - 0.017102673649787903, - -0.007964922115206718, - -0.01870081201195717, - 0.017914630472660065, - -0.016458261758089066, - -0.009730609133839607, - -0.025531571358442307, - 0.0040887887589633465, - -0.0151178864762187, - -0.006434445735067129, - -0.011109649203717709, - 0.03936063498258591, - 0.013751734979450703, - 0.015014780685305595, - 0.00023923764820210636, - -0.01136096939444542, - 0.008499783463776112, - 0.02364988997578621, - 0.0022602721583098173, - 3.587054379750043e-05, - 0.0028869621455669403, - -0.03283919394016266, - -0.03466932103037834, - 0.016703138127923012, - 0.007404284551739693, - -0.013184652663767338, - -0.025325359776616096, - 0.027297258377075195, - -0.0020798370242118835, - -0.011000098660588264, - 0.016161832958459854, - 0.015491644851863384, - -0.03353515639901161, - -0.007597608026117086, - 0.007152964361011982, - 0.013777511194348335, - 0.015156551264226437, - -0.04606251046061516, - 0.01692223735153675, - 0.01569785736501217, - -0.016896462067961693, - -0.002453595632687211, - 0.01939677633345127, - 0.04977431893348694, - -0.02219352126121521, - 2.7563681214815006e-05, - -0.002545424271374941, - 0.01828838884830475, - 0.035545721650123596, - 0.007114299573004246, - 0.014679687097668648, - -0.008622221648693085, - -0.01973186992108822, - 0.022889485582709312, - -0.0007523500826209784, - -0.0010109200375154614, - 0.03765938803553581, - -0.019873641431331635, - -0.00022534253366757184, - -0.002448762534186244, - 0.036267463117837906, - 0.011058095842599869, - -0.010658561252057552, - 0.018198171630501747, - -0.020479386672377586, - 0.017515096813440323, - -0.010162364691495895, - -0.014280151575803757, - 0.0026227536145597696, - 0.031421490013599396, - 0.003386380849406123, - -0.008325792849063873, - -0.04822773486375809, - -0.026601294055581093, - -0.009195747785270214, - 0.009517952799797058, - -0.022232186049222946, - -0.007024081889539957, - 0.0015997508307918906, - 0.01145118661224842, - -0.006901643704622984, - -0.002012173878028989, - -0.000769265869166702, - -0.028560303151607513, - -0.020994916558265686, - -0.021497556939721107, - 0.017076896503567696, - 0.015104997903108597, - -0.012450024485588074, - 0.0016295547829940915, - -0.0024213751312345266, - 0.011560737155377865, - -0.008654442615807056, - -0.03974728286266327, - -0.018391495570540428, - -0.01599428616464138, - 0.013597075827419758, - -0.00632167374715209, - 0.023881878703832626, - -0.005364723037928343, - 0.007591163739562035, - -0.021226905286312103, - 0.0015151718398556113, - 0.01538853906095028, - 0.010478125885128975, - -0.004468991421163082, - -0.032993853092193604, - -0.007152964361011982, - 0.01910034753382206, - 0.010323467664420605, - -0.007236737757921219, - -0.003056120127439499, - 0.0316019244492054, - 0.017283108085393906, - -0.01078744325786829, - -0.010310579091310501, - -0.019216341897845268, - -0.024178307503461838, - 0.0199251938611269, - 0.024706725031137466, - 0.0035281511954963207, - 0.006041354965418577, - -0.010304135270416737, - -0.0070563023909926414, - 0.03191124275326729, - 0.007591163739562035, - -0.008029363118112087, - 0.013945057988166809, - 0.014331704936921597, - -0.015465868636965752, - 0.018662147223949432, - -0.008970203809440136, - -0.047634873539209366, - -0.014950339682400227, - -0.005016740877181292, - -0.02517070062458515, - -0.009266632609069347, - 0.0023794881999492645, - 0.0020540605764836073, - -0.020479386672377586, - -0.02363700233399868, - 0.0019010129617527127, - 0.016948014497756958, - 0.0006838814006187022, - 0.010619896464049816, - 0.008873541839420795, - -0.009285965003073215, - -0.017566649243235588, - -0.01857193000614643, - -0.004336887504905462, - -0.013506858609616756, - -0.016651585698127747, - 0.04871748760342598, - -0.008944427594542503, - 0.004188672639429569, - 0.029488256201148033, - -0.030802855268120766, - -0.006128350272774696, - 0.01733466051518917, - 0.009891712106764317, - 0.013854840770363808, - -0.0065021091140806675, - 0.03345783054828644, - 0.040108151733875275, - -0.011689619161188602, - -0.009376183152198792, - -0.04363952577114105, - -0.01234047394245863, - 0.0071787405759096146, - 0.0158911794424057, - 0.0044335490092635155, - 0.008995980024337769, - -0.036293238401412964, - 0.018597707152366638, - -0.0068694232031702995, - 0.024100977927446365, - -0.022850820794701576, - 0.04157740995287895, - -0.01125141978263855, - -0.01089699286967516, - -0.01828838884830475, - 0.00421122694388032, - 0.001725410926155746, - 0.030055338516831398, - -0.008377345278859138, - -0.0006194402812980115, - 0.005587045103311539, - -0.024281414225697517, - 0.0068114264868199825, - 0.0553162582218647, - -0.030081113800406456, - 0.01817239634692669, - 0.007417172659188509, - -0.0183786079287529, - 0.01630360260605812, - -0.029178937897086143, - -0.003856800962239504, - 0.004932967480272055, - -0.004958744160830975, - 0.01808217726647854, - -0.0017705197678878903, - -0.012984885834157467, - -0.006882311310619116, - 0.008493339642882347, - -0.028869621455669403, - -0.0034282675478607416, - -0.005712705198675394, - 0.012630458921194077, - -0.01890702359378338, - -0.018120842054486275, - 0.026910610496997833, - 0.011625178158283234, - -0.004404550418257713, - -0.0071787405759096146, - -0.011998936533927917, - -0.011837833561003208, - -0.023572560399770737, - -0.01692223735153675, - 0.006695432122796774, - -0.00613801646977663, - 0.006418335251510143, - -0.015723632648587227, - -0.007610496133565903, - 0.00019513576989993453, - -0.02136867493391037, - -0.018842583522200584, - 0.012971997261047363, - -0.02042783424258232, - 0.010716558434069157, - 0.006656767800450325, - -0.0018011293141171336, - 0.02375299669802189, - -0.006611658725887537, - -0.02261883206665516, - 0.011547848582267761, - 0.030184220522642136, - -0.043304432183504105, - 0.05665663257241249, - 0.021330010145902634, - 0.017192890867590904, - 0.00902820099145174, - 0.01047168206423521, - 0.001584446057677269, - -0.013416641391813755, - 0.0324525460600853, - -0.007649160921573639, - -0.017360437661409378, - -0.01506633311510086, - -0.01284955907613039, - 0.031937018036842346, - -0.014885898679494858, - -0.010600564070045948, - 0.010877660475671291, - 0.023662779480218887, - -0.0051327352412045, - -0.009331073611974716, - -0.045778971165418625, - 0.042892009019851685, - 0.013223317451775074, - -0.004581763409078121, - 0.03466932103037834, - -0.01532409805804491, - 0.0047332001850008965, - 0.008080916479229927, - 0.01705111935734749, - -0.012675568461418152, - -0.023082809522747993, - -0.01568496786057949, - -0.02014429308474064, - 0.03015844337642193, - -0.03768516704440117, - 0.006611658725887537, - -0.025415576994419098, - -0.011715395376086235, - -0.021703768521547318, - 0.02281215600669384, - 0.02045361138880253, - -0.0034121572971343994, - 0.0043497756123542786, - 0.012662679888308048, - -0.010239693336188793, - 0.014512140303850174, - 0.007591163739562035, - -0.009769273921847343, - 0.01476990431547165, - -0.006579438224434853, - -0.020440723747015, - -0.006231456063687801, - 0.0016641919501125813, - 0.005780368577688932, - -0.002261883346363902, - 0.0068951998837292194, - -0.006312007550150156, - 0.013145987875759602, - -0.02385610155761242, - -0.008499783463776112, - 0.006582660134881735, - 0.009530841372907162, - -0.0025744226295500994, - 0.034617770463228226, - -0.005206842441111803, - 0.028250986710190773, - 0.006440890021622181, - 0.03397335857152939, - -0.024178307503461838, - -0.01538853906095028, - 0.027709681540727615, - -0.019744759425520897, - 0.01911323517560959, - -0.0074687255546450615, - -0.0006166209350340068, - -0.018520377576351166, - 0.01275289710611105, - -0.03165347874164581, - -0.009949708357453346, - 0.017360437661409378, - 0.014692574739456177, - -0.007913369685411453, - -0.039180200546979904, - -0.006324895657598972, - -0.004195116925984621, - 0.008016475476324558, - 0.0043304432183504105, - -0.04131964594125748, - -0.0023988205939531326, - -0.01641959697008133, - 0.009627503342926502, - -0.034849755465984344, - -0.030725525692105293, - 0.012288921512663364, - 0.012501576915383339, - -0.023160137236118317, - 0.01971898227930069, - -0.024500513449311256, - -0.022554391995072365, - -0.03518484905362129, - 0.029565585777163506, - 0.014989004470407963, - -0.010561899282038212, - 0.021110910922288895, - -0.010568343102931976, - 0.0019058460602536798, - -0.014035276137292385, - 0.005129512865096331, - -0.02292815037071705, - -0.02157488651573658, - -0.00836445763707161, - 0.0076169404201209545, - 0.020582493394613266, - -0.026085764169692993, - 0.03286496922373772, - -0.017837300896644592, - 0.016574256122112274, - -0.0491299107670784, - -0.014396145939826965, - -0.022683274000883102, - 0.024745389819145203, - 0.033509381115436554, - -0.02239973284304142, - 0.019847864285111427, - 0.019667429849505424, - 0.006543995812535286, - 0.0024745389819145203, - -0.032684534788131714, - -0.02169088087975979, - -0.028534527868032455, - -0.02200019732117653, - 0.005590267013758421, - -0.01836571842432022, - -0.005413054022938013, - 0.005532269831746817, - -0.0016263327561318874, - -0.026601294055581093, - 0.018430160358548164, - 0.1885804831981659, - 0.005773924291133881, - -0.010652116499841213, - 0.01929367147386074, - -0.007436505053192377, - 0.003930908162146807, - 0.02114957571029663, - -0.006225012242794037, - 0.020079853013157845, - 0.0295398086309433, - -0.0015997508307918906, - -0.01310732401907444, - -0.003953462466597557, - 0.026356417685747147, - 0.012798006646335125, - -0.03541683778166771, - -0.00790048111230135, - -0.01961587741971016, - 0.00023460594820789993, - 0.03247832506895065, - 0.0200154110789299, - -0.02424274943768978, - 0.004691313486546278, - -0.02548001892864704, - -0.000766043784096837, - -0.012366251088678837, - -0.0028192989993840456, - 0.01942255347967148, - 0.019010130316019058, - 0.012263145297765732, - -0.003367048455402255, - -0.0044432152062654495, - -0.009898155927658081, - -0.015362762846052647, - -0.01982208900153637, - -0.00996259693056345, - 0.00029461673693731427, - -0.02568623051047325, - 0.023147249594330788, - 0.012430692091584206, - 0.010600564070045948, - 0.013867728412151337, - 0.015246768482029438, - -0.019770534709095955, - 0.014950339682400227, - 0.03820069506764412, - -0.009859491139650345, - -0.022760603576898575, - -0.0023182693403214216, - -0.013983722776174545, - -0.009285965003073215, - -0.020273175090551376, - 0.009092641994357109, - 0.04348486661911011, - -0.0018897358095273376, - 0.010349243879318237, - 0.050831153988838196, - 0.005039295647293329, - 0.0069531966000795364, - -0.00883487705141306, - 0.007417172659188509, - 0.016535591334104538, - -0.01765686646103859, - 0.011180534027516842, - -0.015027669258415699, - -0.005094070453196764, - -0.0511920265853405, - -0.00448832381516695, - -0.012469356879591942, - -0.006444111932069063, - 0.0025196478236466646, - -0.01734755001962185, - -0.02930781990289688, - 0.01684490777552128, - -0.00570303900167346, - -0.002134612062945962, - 0.041139211505651474, - 0.034823980182409286, - 0.0053421687334775925, - 0.011934495531022549, - -0.02571200579404831, - 0.010478125885128975, - -0.002962680533528328, - -0.0071014114655554295, - -0.012978441081941128, - -0.030261550098657608, - 0.02496448904275894, - 0.014537916518747807, - -0.021304232999682426, - 0.001184911117888987, - 0.016071615740656853, - 0.01165739819407463, - -0.0022989369463175535, - 0.002134612062945962, - 0.004478657618165016, - 0.003740806831046939, - -0.021020693704485893, - 0.00851911585777998, - -0.02238684520125389, - -0.00776515481993556, - 0.006959640886634588, - 0.025969771668314934, - 0.02104646898806095, - -0.02933359704911709, - 0.00023500870156567544, - -0.015633415430784225, - -0.023559672757983208, - 0.0017624646425247192, - -0.007062746677547693, - -0.028714962303638458, - 0.004749310668557882, - -0.0016609698068350554, - 0.0027951335068792105, - -0.006643879227340221, - -0.0027854673098772764, - 0.008493339642882347, - -0.0066052149049937725, - -0.021639328449964523, - -0.01316532026976347, - -0.0018704034155234694, - -0.017295995727181435, - -0.020092740654945374, - 0.014267263934016228, - -0.0019718981347978115, - -0.013816175982356071, - -0.021020693704485893, - -0.013803287409245968, - 0.011322304606437683, - 0.002136223018169403, - -0.011206310242414474, - 0.033200062811374664, - -0.02933359704911709, - -0.014254375360906124, - -0.019770534709095955, - -0.004588207695633173, - 0.02085314691066742, - 0.00010471681889612228, - -0.004768642596900463, - -0.005222952459007502, - -0.014202822931110859, - 0.025660453364253044, - -0.017695531249046326, - -0.0010785831836983562, - -0.004916857462376356, - 0.007462281733751297, - 0.012398471124470234, - -0.004907191265374422, - -0.00632167374715209, - -0.013158876448869705, - 0.009459956549108028, - 0.007030526176095009, - -0.011966715566813946, - -0.0044335490092635155, - -0.031112171709537506, - 0.0563473142683506, - -0.0013645406579598784, - -0.0345146618783474, - 0.0022151635494083166, - -0.016548478975892067, - 0.025789335370063782, - 0.0019718981347978115, - -0.01346819382160902, - 0.023997873067855835, - -0.01764397881925106, - -0.015311209484934807, - 0.02537691220641136, - -0.16002018749713898, - 0.010529679246246815, - 0.020157182589173317, - -0.02447473630309105, - 0.0033316058106720448, - 0.0023778772447258234, - 0.029900679364800453, - -0.0069145322777330875, - -0.0040404582396149635, - -0.020195847377181053, - 0.027683904394507408, - -0.0028241320978850126, - -0.022567279636859894, - -0.012926888652145863, - -0.0031108949333429337, - 0.007140075787901878, - -0.03510752320289612, - 0.03925753012299538, - -0.007069190964102745, - 0.013751734979450703, - 0.040211256593465805, - -0.0007531555602326989, - 0.0038600231055170298, - -0.011895830743014812, - -0.014460586942732334, - 0.006695432122796774, - 0.002158777555450797, - 0.020827369764447212, - -0.011058095842599869, - -0.012288921512663364, - -0.028457198292016983, - 0.02148466929793358, - 0.027890115976333618, - 0.01775997318327427, - 0.009872379712760448, - 0.0017608535708859563, - -0.0006858951528556645, - -0.012353362515568733, - 0.009923932142555714, - 0.017785748466849327, - 0.005487161222845316, - 0.015916956588625908, - 0.025763560086488724, - 0.004775086883455515, - -0.008448231033980846, - 0.032968077808618546, - 0.026382194831967354, - -0.010439461097121239, - 0.02023451216518879, - -0.020608270540833473, - 0.024706725031137466, - -0.022219298407435417, - 0.025750670582056046, - 0.02065982297062874, - -0.0042273374274373055, - 0.017295995727181435, - 0.005793256685137749, - 0.0026871946174651384, - 0.002464872784912586, - 0.0037053644191473722, - -0.027091046795248985, - -0.01775997318327427, - 0.0036441453266888857, - -0.00856422446668148, - -0.012308253906667233, - -0.012984885834157467, - -0.020273175090551376, - -0.0020153960213065147, - -0.007623384241014719, - 0.026807505637407303, - -0.004346553236246109, - -0.027323033660650253, - -0.017064008861780167, - -0.014280151575803757, - -0.00174152129329741, - -0.014383257366716862, - -0.0016013617860153317, - 0.006179903168231249, - 0.025428464636206627, - -0.015633415430784225, - -0.014254375360906124, - 0.07439082860946655, - -0.04064945876598358, - -0.011431854218244553, - -0.006196013651788235, - 7.068385457387194e-05, - -0.03410223871469498, - -0.004092011135071516, - -0.015092110261321068, - -0.011618733406066895, - -0.008590000681579113, - -0.023611225187778473, - -0.023508120328187943, - -0.021897092461586, - -0.0031833911780267954, - 0.0013887061504647136, - -0.013957946561276913, - 0.016445374116301537, - 0.018107954412698746, - -0.017308885231614113, - 0.002746802754700184, - -0.019164789468050003, - -0.01889413595199585, - 0.02600843645632267, - 0.013635740615427494, - 0.016161832958459854, - 0.0035217071417719126, - 0.013481082394719124, - 0.00985304731875658, - 0.019139012321829796, - -0.0460367351770401, - 0.007230293471366167, - -0.0018124064663425088, - 0.027890115976333618, - -0.0056418199092149734, - -0.00388257740996778, - 0.009047533385455608, - -0.01766975410282612, - 0.026085764169692993, - -0.002953014336526394, - 0.03508174419403076, - -0.003879355266690254, - -0.030493536964058876, - 0.01857193000614643, - 0.014022387564182281, - -0.012933332473039627, - -0.08954738080501556, - 0.004220893140882254, - 0.040211256593465805, - 0.026549741625785828, - 0.041860949248075485, - 0.02837986871600151, - -0.012462912127375603, - 0.0024906492326408625, - 0.00609290786087513, - 0.012334030121564865, - -0.018211059272289276, - -0.020698487758636475, - 0.011431854218244553, - -0.004185450728982687, - 0.023263243958353996, - -0.0038503569085150957, - -0.006186347454786301, - -0.031241053715348244, - -0.028818069025874138, - 0.013429529033601284, - 0.021098021417856216, - 0.007642716635018587, - -0.019461218267679214, - -0.035958144813776016, - -0.007442949339747429, - -0.014228599146008492, - -0.02868918515741825, - 0.0317823588848114, - 0.02509337104856968, - -0.0035023747477680445, - 0.005989802069962025, - -0.007752266712486744, - 0.0006053437828086317, - -0.02776123397052288, - 0.005873808171600103, - -0.022232186049222946, - -0.023263243958353996, - -0.01274000946432352, - 0.008499783463776112, - -0.0030802853871136904, - -0.009208635427057743, - -0.013429529033601284, - 0.011277195997536182, - -0.013113767839968204, - 0.04889792203903198, - -0.010703669860959053, - -0.007610496133565903, - -0.0034347116015851498, - -0.01393217034637928, - 0.008802657015621662, - -0.03162769973278046, - 0.005219730548560619, - -0.00126546248793602, - -0.015092110261321068, - 0.0011502739507704973, - 0.010304135270416737, - -0.0022796045523136854, - -0.013287758454680443, - -0.014357481151819229, - -0.0004933773307129741, - -0.004530210513621569, - 0.00862866546958685, - -0.0326329842209816, - 0.044851019978523254, - 0.002969124587252736, - 0.0042015607468783855, - -0.01940966583788395, - -0.018120842054486275, - 0.004974854178726673, - -0.01234047394245863, - -0.013661516830325127, - 0.023881878703832626, - -0.010265470482409, - 0.030880184844136238, - -0.013803287409245968, - -0.006318451836705208, - -0.03716963902115822, - -0.0006339395185932517, - 0.006022022571414709, - -0.038020260632038116, - -0.022232186049222946, - -0.017695531249046326, - -0.03242677077651024, - 0.014421922154724598, - 0.04286623373627663, - 0.027941668406128883, - -0.01181850116699934, - -0.005023185163736343, - 0.027374587953090668, - -0.016973789781332016, - 0.012205148115754128, - 0.007481613662093878, - 0.0020057298243045807, - -0.015465868636965752, - -1.1900210665771738e-05, - 0.03523640334606171, - 0.008325792849063873, - -0.021549109369516373, - 0.009543729946017265, - -0.0009335906943306327, - -0.01766975410282612, - -0.009627503342926502, - -0.04508300498127937, - 0.00944062415510416, - 0.012346918694674969, - 0.012321141548454762, - 0.028946951031684875, - 0.006341006141155958, - 0.02114957571029663, - 0.014718351885676384, - 0.014537916518747807, - -0.01388061698526144, - -0.044335488229990005, - -0.006618103012442589, - -0.02002830058336258, - -0.023147249594330788, - -0.014512140303850174, - -0.021239792928099632, - -0.02167799323797226, - 0.026240423321723938, - 0.03106061927974224, - 0.0053518349304795265, - -0.007539610844105482, - 0.0015248379204422235, - -0.002463261829689145, - 0.024539178237318993, - -0.037092309445142746, - 0.003489486640319228, - 0.021600663661956787, - 0.005264839623123407, - 0.008164689876139164, - -0.012662679888308048, - 0.01578807458281517, - 0.0021088356152176857, - -0.017476432025432587, - 0.013996611349284649, - -0.005947915371507406, - -0.019963858649134636, - -0.007861816324293613, - 0.021098021417856216, - 0.011006543412804604, - 0.048356615006923676, - -0.017914630472660065, - -0.024796942248940468, - 0.036679886281490326, - -0.022670386359095573, - -0.03250410035252571, - -0.0037053644191473722, - 0.011058095842599869, - -0.010639228858053684, - 0.019216341897845268, - -0.015517421066761017, - 0.013042882084846497, - 0.0020089519675821066, - 0.00448832381516695, - -0.008609333075582981, - -0.009150639176368713, - 0.001514366245828569, - 0.010342799127101898, - 0.0023810993880033493, - 0.013506858609616756, - -0.01150273997336626, - 0.03126683086156845, - 0.02868918515741825, - 0.007642716635018587, - -0.00531317014247179, - 0.017012454569339752, - -0.036370567977428436, - -0.018443048000335693, - -0.001129330601543188, - 0.008506227284669876, - -0.003268775762990117, - -0.014795680530369282, - 0.014989004470407963, - 0.01027835812419653, - 0.028147879987955093, - 0.004575319588184357, - -0.007919813506305218, - -0.011399634182453156, - 0.006215346045792103, - -0.0010366964852437377, - 0.005844809580594301, - 0.012404914945363998, - 0.006650323513895273, - -0.019564323127269745, - 0.014602357521653175, - 0.0017672977410256863, - 0.031421490013599396, - -0.00531317014247179, - -0.005358279217034578, - -0.0064666662365198135, - -0.0047074235044419765, - 0.005332502536475658, - 0.03283919394016266, - 0.04036591574549675, - -0.009485732764005661, - 0.006051021162420511, - 0.007655604742467403, - 0.00364092318341136, - -0.020363394170999527, - 0.015762297436594963, - -0.00019382679602131248, - 0.015568974427878857, - -0.010954990051686764, - 0.008338680490851402, - -0.008538448251783848, - -0.031962793320417404, - 0.0065601058304309845, - 0.0028015775606036186, - -0.030802855268120766, - -0.010387908667325974, - 0.0069725289940834045, - -0.003966351039707661, - 0.034334227442741394, - -0.0006762290140613914, - 0.011876498349010944, - -0.02344367839396, - 0.03116372413933277, - -0.02434585429728031, - 0.0047332001850008965, - -0.009305297397077084, - -0.004894303157925606, - 0.004800863564014435, - 0.006850090809166431, - -0.005068293772637844, - -0.005303503945469856, - -0.002348878886550665, - -0.003563593840226531, - 0.01683202013373375, - -0.006843646988272667, - -0.0042015607468783855, - 0.009543729946017265, - 0.011464075185358524, - -0.015968509018421173, - -0.013764622621238232, - -0.031524594873189926, - -0.02765812911093235, - -0.01671602576971054, - 0.010252581909298897, - 0.03758206218481064, - 0.006920976098626852, - 0.10356976836919785, - 0.02372721955180168, - -0.014628133736550808, - 0.010864772833883762, - 0.00030146361677907407, - 0.018095066770911217, - -0.003563593840226531, - -0.014151269569993019, - -0.006392559036612511, - -0.03858734294772148, - 0.030081113800406456, - -0.01506633311510086, - 0.025260917842388153, - -0.0563473142683506, - -0.012810894288122654, - -0.006424779538065195, - 0.02218063361942768, - -0.003370270598679781, - -0.008609333075582981, - 0.008847765624523163, - 0.013171765021979809, - -0.015723632648587227, - 0.017824413254857063, - 0.05065071955323219, - 0.0006697849021293223, - -0.017631089314818382, - 0.008093804121017456, - -0.030003784224390984, - -0.014782792888581753, - -0.009131306782364845, - -0.0006069547962397337, - -0.016793355345726013, - -0.04307244345545769, - -0.0074107288382947445, - 0.025248030200600624, - -0.010929213836789131, - -0.020878922194242477, - -0.013970834203064442, - -0.0016021672636270523, - 0.017167113721370697, - -0.013481082394719124, - 0.044644806534051895, - -0.007591163739562035, - 0.0013927336549386382, - -0.003934130072593689, - -0.007913369685411453, - 0.006985417101532221, - -0.013635740615427494, - -0.004233781713992357 - ], - "sparse": "SparseEmbedding(values=array([1.6434199 , 1.6434199 , 1.6434199 , 1.6434199 , 1.88140972,\n 1.6434199 , 1.6434199 , 1.6434199 , 1.6434199 , 1.6434199 ]), indices=array([2077811411, 1810453357, 749129358, 1241890442, 2124172637,\n 651773314, 637845195, 988198683, 1807920195, 2137593377]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 19, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 9 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000020.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000020.json deleted file mode 100644 index 13d9be1c01c8bac777ca35241f69f1a00b056b32..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000020.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000020", - "content": "Abbildung 2: Dimensionen urbaner Nachhaltigkeit (eigene Darstellung nach Bott et al.", - "embedding": { - "dense": [ - 0.01438450813293457, - -0.0014787662075832486, - 0.01141085010021925, - -0.01016591303050518, - 0.0031945863738656044, - 0.009662777185440063, - -0.023582853376865387, - 0.02719510719180107, - -0.01856440119445324, - -0.0232603307813406, - 0.005086181685328484, - 0.022150853648781776, - -0.012810598127543926, - -0.00493459589779377, - -0.006331118755042553, - -0.008708110079169273, - 0.034832440316677094, - -0.016010021790862083, - 0.041334498673677444, - -0.001313473330810666, - -0.0033219829201698303, - 0.004841064568608999, - 0.013468543998897076, - -0.006934236269444227, - -0.003286505350843072, - 0.014320003800094128, - 0.03545168414711952, - -0.02791755646467209, - 0.0012788021704182029, - -0.000512407801579684, - 0.009791786782443523, - -0.010552939958870411, - -0.009559569880366325, - 0.005757028702646494, - -0.01304281409829855, - 0.011391498148441315, - -0.0021770275197923183, - -0.0032832801807671785, - 0.0228217002004385, - -0.004360505845397711, - -0.004612073302268982, - -0.002930118003860116, - 0.0034316405653953552, - -0.014461914077401161, - 0.006637515500187874, - 0.021221987903118134, - 0.02095106802880764, - 0.019106239080429077, - -0.015726203098893166, - 0.011965588666498661, - 0.01852569915354252, - 0.030626747757196426, - -0.012907355092465878, - -0.005370001308619976, - -0.009559569880366325, - -0.0005414348561316729, - -0.02506645768880844, - 0.018809517845511436, - 0.008398489095270634, - -0.01637124828994274, - -0.023131322115659714, - -0.00699874060228467, - -0.028459394350647926, - 0.019686780869960785, - -0.046469058841466904, - -0.016577662900090218, - -0.009901444427669048, - 0.006427875719964504, - 0.01702919416129589, - -0.00567962322384119, - 0.03222645819187164, - 0.021660618484020233, - 0.020628545433282852, - -0.005660271737724543, - 0.014707030728459358, - 0.021054275333881378, - -0.010146561078727245, - 0.008850020356476307, - 0.0032026495318859816, - 0.006247262936085463, - 0.01465542707592249, - -0.01915784366428852, - -0.03746422752737999, - 0.014990851283073425, - 0.013920076191425323, - 0.024898745119571686, - -0.0054893349297344685, - 0.011739823035895824, - -0.016126129776239395, - 0.012500976212322712, - 0.004257298540323973, - 0.0003612253349274397, - 0.0141264908015728, - 0.006798776797950268, - -0.01735171675682068, - 0.002007703296840191, - 0.01904173567891121, - -0.0014884418342262506, - 0.026008224114775658, - -0.0334649458527565, - -0.012958958745002747, - 0.017338816076517105, - -0.012075246311724186, - -0.012346165254712105, - -0.03060094453394413, - -0.01253322884440422, - -0.012636436149477959, - 0.017480725422501564, - 0.013468543998897076, - -0.017235608771443367, - -0.009185443632304668, - 0.010140110738575459, - -0.014552219770848751, - -0.01911913976073265, - 0.01989319548010826, - -0.012475174851715565, - 0.00010330802615499124, - 0.00801791250705719, - 0.0054893349297344685, - -0.007089046761393547, - 0.021480005234479904, - -0.0013562075328081846, - -0.0042121452279388905, - -0.017622634768486023, - 0.005431280937045813, - 0.018074167892336845, - -0.0015650410205125809, - -0.005715100560337305, - -0.01842249184846878, - -0.016719572246074677, - -0.017854852601885796, - 0.043166425079107285, - 0.013287931680679321, - 0.015364977531135082, - -0.019170744344592094, - 0.025634096935391426, - -0.021492905914783478, - 0.019828690215945244, - -0.024266600608825684, - -0.03042033314704895, - -0.00043419605935923755, - 0.015506886877119541, - -0.029852692037820816, - 0.0003698931250255555, - 0.02278299629688263, - 0.014810238033533096, - 0.0010433606803417206, - 0.03661276772618294, - -0.003754163160920143, - -0.014977949671447277, - 0.0038605956360697746, - -0.039683181792497635, - 0.022989410907030106, - 0.013075066730380058, - -0.005457082763314247, - -0.004463713150471449, - -0.007521227467805147, - 0.011720472015440464, - -0.026008224114775658, - -0.008005010895431042, - 0.011862381361424923, - -0.020267320796847343, - 0.007759893778711557, - -0.016164833679795265, - 0.028304584324359894, - -0.003673532512038946, - 0.02329903282225132, - 0.001406198600307107, - 0.01253322884440422, - -0.006908434443175793, - -0.014229697175323963, - 0.007166452240198851, - -0.009714380837976933, - 0.028665808960795403, - -0.009404758922755718, - 0.017274310812354088, - -0.003950901795178652, - -0.006289191078394651, - -0.03408418968319893, - -0.02333773672580719, - -0.026833880692720413, - 0.009024182334542274, - 0.022550780326128006, - 0.0026672619860619307, - -0.004389532841742039, - 0.0015827796887606382, - 0.018874023109674454, - 0.02480843849480152, - 0.025337375700473785, - 0.0030559017322957516, - 0.0019770637154579163, - 0.02381506934762001, - -0.0075018759816884995, - -0.004908794071525335, - -0.648554265499115, - -0.02182833105325699, - 0.0022044419310986996, - -0.03023971989750862, - 0.0005543357110582292, - 0.02887222357094288, - 0.022447573021054268, - -0.005940866656601429, - 0.0020512437913566828, - 0.010262669064104557, - 0.006876182276755571, - 0.006921335123479366, - -0.008850020356476307, - -0.014178093522787094, - 0.011843030340969563, - -0.01080450788140297, - 0.0104368319734931, - -0.0021979915909469128, - 0.03183943033218384, - 0.015945518389344215, - -3.875310721923597e-05, - 0.027685340493917465, - 0.01804836466908455, - -0.028743214905261993, - 0.020486636087298393, - 0.016822779551148415, - 0.012004291638731956, - -0.03093636967241764, - 0.011127030476927757, - 0.014939247630536556, - -0.021621916443109512, - 0.025324475020170212, - 0.001024815603159368, - 0.039244551211595535, - 0.037593234330415726, - 0.004834613762795925, - -0.019648076966404915, - -0.007998560555279255, - -0.004547568969428539, - 0.0014731220435351133, - -0.01603582501411438, - 0.005282920319586992, - -0.0024076313711702824, - -0.0029623701702803373, - 0.0104368319734931, - 0.004402433522045612, - 0.03191683813929558, - -0.0187063105404377, - -0.00840493943542242, - -0.02642105147242546, - 0.00530227180570364, - -0.019931897521018982, - 0.0014932797057554126, - 0.01717110350728035, - 0.037593234330415726, - -0.0006236780900508165, - 0.00708259642124176, - -6.898960418766364e-05, - 0.005024902056902647, - 0.001841604127548635, - 0.010294921696186066, - -0.008740362711250782, - 0.0016174508491531014, - -0.008134020492434502, - -0.0072890110313892365, - 0.05129399523139, - -0.04066365212202072, - 0.011888183653354645, - 0.0180225633084774, - -0.028743214905261993, - 0.0006349664181470871, - 0.02351834811270237, - 0.0029430189169943333, - -0.021105879917740822, - 0.007514776661992073, - 0.01218490395694971, - 0.0330263152718544, - -0.0187063105404377, - -0.002102847443893552, - -0.003573550609871745, - -0.009572471491992474, - -0.020060906186699867, - -0.010327174328267574, - 0.0034058387391269207, - 0.02773694507777691, - -0.0325876846909523, - -0.019583573564887047, - -0.009882092475891113, - -0.0006510925013571978, - 0.01661636494100094, - 0.02554379031062126, - 0.0012288111029192805, - -0.027272511273622513, - -0.01273319311439991, - -0.01490054465830326, - 0.048997633159160614, - -0.023195825517177582, - 0.03635475039482117, - 0.016835680231451988, - -0.037593234330415726, - -0.026808079332113266, - -0.002035117708146572, - 0.04288260638713837, - -0.0009619236807338893, - -0.001198171521537006, - 0.0023124872241169214, - -0.012778345495462418, - -0.0030284873209893703, - 0.03251028060913086, - -0.024718133732676506, - 0.01511985994875431, - 0.010398129001259804, - -0.010114309377968311, - 0.005927965510636568, - -0.015029553323984146, - -0.021196186542510986, - 0.042185958474874496, - -0.019712582230567932, - 0.001264288672246039, - 0.0033574604894965887, - 0.006095677148550749, - 0.014707030728459358, - 0.02747892588376999, - -0.009327353909611702, - -0.013700760900974274, - 0.03364555910229683, - -0.008637155406177044, - 0.0023689286317676306, - -0.009824038483202457, - -0.023363538086414337, - 0.005466758273541927, - 0.004334704019129276, - 0.017583932727575302, - -0.007430920843034983, - 0.04884282499551773, - -0.010578741319477558, - 0.009882092475891113, - -0.012829949147999287, - -0.018796617165207863, - -0.02807236835360527, - -0.005576415918767452, - -0.00904353428632021, - -0.004808811936527491, - -0.05119078978896141, - -0.03165882080793381, - -0.03183943033218384, - -0.0033929378259927034, - 0.003492919960990548, - -0.004937821067869663, - 0.008346885442733765, - -0.018228977918624878, - -0.0029607575852423906, - -0.0187063105404377, - 0.007411569822579622, - 0.01673247292637825, - 0.0008716173470020294, - 0.005170037504285574, - -0.008740362711250782, - -0.009772434830665588, - -0.009927245788276196, - 0.004363731015473604, - 0.003763838903978467, - -0.030729955062270164, - -0.022318564355373383, - 0.0010748065542429686, - 0.017119500786066055, - 0.014810238033533096, - 0.01429420243948698, - -0.012462273240089417, - -0.03901233524084091, - 0.005860236007720232, - -0.04035402834415436, - -0.006263389252126217, - 0.015945518389344215, - 0.0008998381090350449, - -0.004237947054207325, - -0.02843359299004078, - -0.02791755646467209, - 0.0036670821718871593, - -0.00032433681190013885, - 0.01680987887084484, - -0.008430740796029568, - -0.023092618212103844, - -0.014823139645159245, - 0.02506645768880844, - -0.010985120199620724, - 0.004441136494278908, - 0.004389532841742039, - 0.0012755768839269876, - 0.012042994610965252, - -0.009243497624993324, - 0.034987252205610275, - -0.0029623701702803373, - 0.005879587028175592, - -0.012333264574408531, - -0.0020996222738176584, - -0.010527137666940689, - 0.004283100366592407, - -0.01951906830072403, - 0.01077225524932146, - 0.03511626273393631, - 0.0076502361334860325, - 0.003492919960990548, - -0.006876182276755571, - 0.018616005778312683, - -0.02300231344997883, - -0.005857010837644339, - -0.006508506368845701, - 0.019751284271478653, - -0.007224506698548794, - 0.031684622168540955, - -0.004170217551290989, - -0.04166992008686066, - -0.01008850708603859, - -0.008230777457356453, - 0.023944078013300896, - 0.007308362517505884, - -0.0025156764313578606, - -0.010359426029026508, - -0.020048005506396294, - 0.013249228708446026, - -0.003299406263977289, - 0.013739462941884995, - -0.006953587289899588, - -0.0017641986487433314, - -0.012442922219634056, - -0.03893493115901947, - 0.016061626374721527, - 0.0028140097856521606, - -0.009088687598705292, - -0.007476074155420065, - 0.006985839921981096, - 0.010417480021715164, - 0.020267320796847343, - -0.0008208200451917946, - 0.002433433197438717, - 0.025659898295998573, - -0.0028575502801686525, - 0.03287150338292122, - 0.013455643318593502, - 0.020576942712068558, - 0.025492187589406967, - -0.0015182752395048738, - 0.01465542707592249, - 0.0208736639469862, - -0.01929975301027298, - 0.029697882011532784, - 0.04546278715133667, - -0.012042994610965252, - -0.02300231344997883, - 0.0024914871901273727, - -0.019828690215945244, - -0.017661338672041893, - -0.01429420243948698, - 0.013958778232336044, - -0.006360145751386881, - 0.014848941005766392, - -0.010030453093349934, - 0.015003751963376999, - 0.02246047370135784, - 0.013197625055909157, - 0.018151571974158287, - 0.014861841686069965, - -0.01732591539621353, - 0.016861481592059135, - -0.006482704542577267, - -0.010030453093349934, - -0.02946566604077816, - -0.018280580639839172, - 0.027659539133310318, - 0.014255499467253685, - -0.00860490370541811, - 0.00758573180064559, - 0.013520147651433945, - 0.010714201256632805, - -0.003441316308453679, - -0.016126129776239395, - -0.0024269826244562864, - 0.012494525872170925, - 0.010546489618718624, - -0.037954460829496384, - -0.0025866313371807337, - -0.011301192454993725, - 0.034032586961984634, - -0.004744307603687048, - -0.022395970299839973, - -0.006708470173180103, - 0.01040457934141159, - -0.02884642221033573, - -0.002804334042593837, - 0.005860236007720232, - -0.0028188475407660007, - -0.0009232209995388985, - -0.016319643706083298, - -0.01126248948276043, - -0.004779784940183163, - 0.009024182334542274, - -0.03140079975128174, - -0.007843749597668648, - 0.0029946223367005587, - 0.006463353056460619, - -0.01871921308338642, - -0.01394587755203247, - 0.0053796772845089436, - 0.027066096663475037, - -0.007482524495571852, - -0.010875462554395199, - -0.006389172747731209, - -0.02216375432908535, - -0.028898026794195175, - 0.0016198698431253433, - -0.014797337353229523, - 0.004702379461377859, - 0.009959498420357704, - 0.006837479304522276, - 0.004447586834430695, - -0.009882092475891113, - -0.011617264710366726, - 0.04187633469700813, - -0.009327353909611702, - 0.02224115841090679, - -0.02972368337213993, - -0.004599172621965408, - 0.01126248948276043, - 0.039167147129774094, - 0.006843929644674063, - 0.017235608771443367, - 0.0141264908015728, - 0.01099157053977251, - -0.014203895814716816, - -0.00045274110743775964, - -0.012301011942327023, - -0.019686780869960785, - -0.009140290319919586, - -0.02568570151925087, - -0.03119438700377941, - 0.03839309141039848, - -0.014178093522787094, - 0.01995769888162613, - -0.01856440119445324, - 0.004260523710399866, - -0.0197770856320858, - 0.010939966887235641, - 0.005550614092499018, - 0.0024124691262841225, - -0.02928505279123783, - 0.022266961634159088, - 0.0360967293381691, - 0.02421499788761139, - -0.03173622488975525, - 0.04066365212202072, - 0.02260238490998745, - 0.012030092999339104, - -0.02337643876671791, - 0.023969881236553192, - 0.02582761086523533, - -0.012359066866338253, - 0.02624044008553028, - -0.03893493115901947, - 0.013584651984274387, - 0.010114309377968311, - -0.00360902794636786, - 0.041153885424137115, - -0.0004898312035948038, - 0.024356907233595848, - 0.02729831449687481, - 0.015081156976521015, - -0.01589391380548477, - 0.00780504709109664, - -0.0074889748357236385, - 0.006131154950708151, - 0.006482704542577267, - 0.012449372559785843, - -0.0030929918866604567, - 0.0023237753193825483, - -0.0005575609393417835, - -0.028046566992998123, - -0.005450631957501173, - -0.008282380178570747, - -0.016835680231451988, - 0.004573370795696974, - -0.009346704930067062, - 0.002599532250314951, - -0.0015021490398794413, - -0.03251028060913086, - -0.00855330005288124, - 0.003360685659572482, - -0.02516966499388218, - -0.0046894787810742855, - 0.007792146410793066, - -0.02293780818581581, - -0.0030994422268122435, - -0.032045844942331314, - -0.00478946091607213, - 0.015158562920987606, - -0.010688398964703083, - -0.022692691534757614, - 0.010559390299022198, - 0.0063407947309315205, - 0.00780504709109664, - 0.018319284543395042, - -0.020409230142831802, - -0.009959498420357704, - -0.005676398053765297, - -0.01260418351739645, - 0.0031832982785999775, - -0.018035463988780975, - -0.02124778926372528, - -0.017196904867887497, - 0.007495425641536713, - -0.029749484732747078, - -0.03787705674767494, - 0.0032413522712886333, - 0.007160001900047064, - -0.003928325604647398, - -0.004518541973084211, - -0.0012933156685903668, - 0.01948036625981331, - -0.007101947907358408, - -0.007785695604979992, - 0.00994659774005413, - 0.011514057405292988, - 0.02083496004343033, - -0.02833038568496704, - 0.03764484077692032, - 0.012371967546641827, - -0.004031532444059849, - -0.00959827285259962, - 0.024098889902234077, - 0.012546129524707794, - -0.03398098051548004, - 0.00031163747189566493, - -0.008082416839897633, - 0.0026011448353528976, - 0.032716695219278336, - -0.014784436672925949, - 0.008779065683484077, - -0.027349917218089104, - -0.009385407902300358, - 0.004373406525701284, - -0.014410310424864292, - -0.02073175273835659, - 0.029156044125556946, - -0.0006865700124762952, - 0.0047249561175704, - -0.010978669859468937, - 0.007514776661992073, - 0.007237407378852367, - 0.017235608771443367, - 0.02230566367506981, - -0.013507246971130371, - 0.004766884259879589, - -0.03687078505754471, - 0.006734271999448538, - 0.00521841598674655, - 0.011520507745444775, - -0.001628739177249372, - -0.013004112057387829, - -0.03844469413161278, - -0.014823139645159245, - 0.004450812004506588, - 0.006798776797950268, - -0.014977949671447277, - -0.006656866520643234, - -0.019144942983984947, - -0.004325028043240309, - 0.02267979085445404, - 0.024447213858366013, - 0.004270199220627546, - -0.030549341812729836, - -0.027840152382850647, - 0.01911913976073265, - -0.006566560361534357, - 0.024821341037750244, - -0.018254779279232025, - -0.008959678001701832, - -0.024008583277463913, - 0.00818562414497137, - -0.01848699524998665, - -0.03444541618227959, - -0.0027914331294596195, - -0.03380037099123001, - -0.005060379859060049, - 0.01691308617591858, - 0.012958958745002747, - 0.022370168939232826, - 0.013765265233814716, - -0.001083676004782319, - 0.003230063943192363, - 0.012307463213801384, - 0.01989319548010826, - -0.006579461041837931, - -0.023170024156570435, - 0.03679338097572327, - -0.005495785269886255, - 0.003550973953679204, - 0.0078179482370615, - 0.006960038095712662, - 0.008830669336020947, - 0.013287931680679321, - -0.02399568259716034, - -0.0234538447111845, - -0.023015214130282402, - -0.012294561602175236, - -0.01617773436009884, - -0.0012215543538331985, - -0.01724850945174694, - -0.0009369282051920891, - -0.017958058044314384, - -0.007624434307217598, - 0.032716695219278336, - 0.0047410824336111546, - -0.012262309901416302, - 0.012849301099777222, - 0.013494346290826797, - -0.010430381633341312, - 0.032200656831264496, - 0.011088327504694462, - -0.006392397917807102, - 0.014242598786950111, - -0.01008850708603859, - -0.012475174851715565, - -0.00928220059722662, - 0.021776726469397545, - -0.00773409241810441, - -0.012958958745002747, - 0.0055957674048841, - -0.015106959268450737, - 0.03292310982942581, - -0.0010191714391112328, - -0.004070235416293144, - -0.00773409241810441, - 0.009998201392591, - -0.025053557008504868, - 0.004657226614654064, - -0.025324475020170212, - -0.028923828154802322, - -0.01944166235625744, - -0.00019784746109507978, - 0.005182938184589148, - -0.029930097982287407, - 0.046030428260564804, - -0.013378238305449486, - 6.233127351151779e-06, - 0.010417480021715164, - -0.012720291502773762, - 0.022576583549380302, - 0.008211425505578518, - 0.016603464260697365, - 0.004166991915553808, - -0.023234529420733452, - -0.02011251077055931, - -0.024305304512381554, - -0.014449013397097588, - -0.010888363234698772, - 0.020705951377749443, - 0.018254779279232025, - -0.027169303968548775, - -0.030317125841975212, - -0.0002878514351323247, - -0.00020681762543972582, - -0.00923059694468975, - -0.006669767666608095, - 0.04074105620384216, - 0.011752723716199398, - 0.013791066594421864, - -0.008817767724394798, - -0.012978309765458107, - -0.005047478713095188, - 0.001633577048778534, - 0.010920615866780281, - -0.01231391355395317, - 0.008030813187360764, - 0.0037767398171126842, - -0.013636255636811256, - 0.020538240671157837, - -0.02469233050942421, - 0.02799496240913868, - 0.013829769566655159, - -0.01842249184846878, - -0.0028769017662853003, - -0.006682668346911669, - -0.003152658464387059, - 0.010630344972014427, - 0.002462460193783045, - 0.009404758922755718, - 0.007663137279450893, - 0.0007095497567206621, - 0.01539077889174223, - -0.013674958609044552, - 0.0001688204356469214, - 0.016822779551148415, - 0.007992110215127468, - 0.021312294527888298, - -0.003912199288606644, - -0.028640007600188255, - -0.011972039006650448, - 0.004886217415332794, - 0.01985449157655239, - 0.011585012078285217, - -0.0012102661421522498, - -0.03970898315310478, - -0.034290604293346405, - -0.006124704144895077, - 0.006882632616907358, - 0.0029946223367005587, - -0.00323812710121274, - -0.004447586834430695, - 0.007746993098407984, - -0.01647445559501648, - -0.014190995134413242, - -0.008121118880808353, - -0.007424470502883196, - -0.022589484229683876, - 0.02234436571598053, - 0.010817408561706543, - 0.0003455023397691548, - 0.02602112479507923, - -0.008875822648406029, - -0.008179173804819584, - -0.006682668346911669, - 0.007005190942436457, - -0.031607214361429214, - 0.015248868614435196, - 0.0343422070145607, - -0.0001673086080700159, - -0.026833880692720413, - -0.003950901795178652, - -0.0008337209583260119, - -0.021776726469397545, - 0.02017701417207718, - 0.0028510999400168657, - -0.03929615393280983, - 0.006092451978474855, - -0.018874023109674454, - 0.008766165003180504, - -0.02377636730670929, - -0.006850380450487137, - 0.01399748120456934, - -0.015752004459500313, - -0.00026204960886389017, - -0.04182473197579384, - -0.013223427347838879, - 0.032716695219278336, - 0.012655787169933319, - -0.0021576762665063143, - 0.03501305356621742, - -0.033671360462903976, - 0.019493266940116882, - 0.0006317411898635328, - -0.008217875845730305, - -0.006582686677575111, - -0.012565480545163155, - -0.029078638181090355, - -0.0013747526099905372, - 0.040560442954301834, - -0.022112149745225906, - -0.002386667300015688, - -0.006563335191458464, - -0.025105159729719162, - -0.0132621293887496, - 0.03418739512562752, - 0.00773409241810441, - 0.008856470696628094, - -0.0031510458793491125, - 0.010849660262465477, - -0.008985480293631554, - -0.00531194731593132, - -0.0015150499530136585, - -0.03431640565395355, - -0.007153551559895277, - 0.003944451455026865, - -0.005566740408539772, - -0.006450452376157045, - 0.0026914512272924185, - 0.01908043771982193, - 0.011056074872612953, - -0.03756743296980858, - -0.01728721149265766, - 0.006479479372501373, - -0.024085989221930504, - -0.017338816076517105, - -0.005853785201907158, - -0.011288291774690151, - -0.01655185967683792, - 0.015713302418589592, - 0.0027640187181532383, - 0.005395803134888411, - 0.025479286909103394, - 0.021518709138035774, - -0.022447573021054268, - -0.02516966499388218, - 0.033077917993068695, - -0.008437191136181355, - 0.008959678001701832, - 0.01460382342338562, - -0.015648797154426575, - 0.013087967410683632, - 0.012817048467695713, - 0.013094417750835419, - -0.016203535720705986, - 0.005060379859060049, - 0.009456362575292587, - -0.002102847443893552, - -0.002936568344011903, - 0.024743935093283653, - 0.010372326709330082, - -0.003133307211101055, - 0.01304281409829855, - -0.025311574339866638, - 0.013803967274725437, - -0.0028575502801686525, - 0.01728721149265766, - -0.03475503623485565, - 0.006553659215569496, - -0.005118433851748705, - -0.0037380370777100325, - 0.002988171996548772, - 0.0008425902924500406, - -0.0029655953403562307, - -0.011610814370214939, - 0.005795731209218502, - 0.009178993292152882, - 0.018693409860134125, - -0.0028817395213991404, - 0.014616725035011768, - 0.013494346290826797, - 0.004605622962117195, - -0.0007055182359181345, - 0.007056794594973326, - -0.01135924644768238, - -0.013752364553511143, - -0.0009498290601186454, - -0.012526778504252434, - 0.030962171033024788, - -0.016925986856222153, - -0.0027059647254645824, - -0.024279501289129257, - 0.027143502607941628, - -0.00035578274400904775, - -0.023286132141947746, - -0.0165131576359272, - 0.006766524165868759, - 0.02264108695089817, - -0.013178274035453796, - -0.004092812072485685, - -0.007630885113030672, - 0.007882452569901943, - 0.0005599798751063645, - 0.0031091179698705673, - -0.004595946986228228, - -0.014152292162179947, - -0.006392397917807102, - -0.00984984077513218, - 0.0031316946260631084, - -0.001149793155491352, - 0.00020016559574287385, - -0.01581650972366333, - -0.010101407766342163, - 0.03493564948439598, - 0.19784827530384064, - -0.02102847397327423, - 0.00758573180064559, - 0.02160901576280594, - -0.013971679843962193, - -0.016642166301608086, - 0.03085896372795105, - -0.013533048331737518, - 0.03209745138883591, - 0.013597553595900536, - -0.041334498673677444, - 0.01460382342338562, - 0.016758274286985397, - 0.0014634463004767895, - 0.01304281409829855, - -0.025853412225842476, - -0.046727076172828674, - 0.02033182606101036, - 0.00618275860324502, - 0.03558069467544556, - 0.008533948101103306, - -0.013739462941884995, - 0.002575343009084463, - -0.005631244741380215, - 0.03769644349813461, - -0.0026462979149073362, - -0.021750925108790398, - -0.003233289113268256, - 0.029852692037820816, - 0.0017512977356091142, - 9.675678484200034e-06, - -0.014965048991143703, - 0.007424470502883196, - -0.014707030728459358, - 0.013584651984274387, - -0.010449732653796673, - 0.014410310424864292, - -0.023389339447021484, - 0.04195374250411987, - 0.021015573292970657, - 0.021041374653577805, - 0.009675677865743637, - -0.010423930361866951, - -0.01919654570519924, - -0.0035477487836033106, - 0.025814710184931755, - -0.0069664884358644485, - 0.0068632811307907104, - 0.012817048467695713, - -0.007140650413930416, - -0.008830669336020947, - 0.005334523972123861, - 0.015235967934131622, - 0.046365849673748016, - -0.011049624532461166, - 0.022653987631201744, - 0.011468904092907906, - 0.0016013247659429908, - 0.011320543475449085, - -0.0053796772845089436, - -0.02480843849480152, - 0.023466745391488075, - 0.007011641748249531, - 0.010765804909169674, - -0.01295250840485096, - -0.014539319090545177, - -0.03189103677868843, - -0.015364977531135082, - 0.0059311906807124615, - -0.017996761947870255, - 0.0026688745710998774, - -0.030136512592434883, - -0.01820317655801773, - 0.023866673931479454, - -0.015274670906364918, - -0.022808799520134926, - 0.026911286637187004, - 0.006218235939741135, - 0.018964329734444618, - 0.03078155778348446, - 0.0024834240321069956, - 0.020525338128209114, - 0.0005958605324849486, - -0.031065378338098526, - 0.003660631598904729, - -0.02351834811270237, - 0.007430920843034983, - 0.006831028964370489, - 0.009327353909611702, - -0.030110711231827736, - 0.00034792127553373575, - -0.006766524165868759, - 0.016603464260697365, - -0.01561009418219328, - 0.013674958609044552, - 0.0145651213824749, - -0.003509046044200659, - 0.025776006281375885, - -0.025814710184931755, - 0.005202289670705795, - -0.0128234988078475, - 0.08561040461063385, - 0.019183645024895668, - 0.007108398247510195, - -0.01089481357485056, - -0.02642105147242546, - -0.026627466082572937, - 0.0004184730933047831, - 0.020796258002519608, - -0.026653269305825233, - -0.012062345631420612, - -0.02876901626586914, - -0.005324848461896181, - -0.005389352794736624, - 0.012397768907248974, - 0.005363550968468189, - 0.011468904092907906, - 0.008153371512889862, - 0.01277189515531063, - -0.024834241718053818, - -0.019312653690576553, - -0.004415334668010473, - 0.008566200733184814, - 0.002056081546470523, - 0.006185983773320913, - -0.00611825380474329, - -0.028098169714212418, - -0.011372147127985954, - -0.007998560555279255, - -0.02017701417207718, - 0.027607934549450874, - -0.011372147127985954, - -0.002897865604609251, - -0.0024834240321069956, - 0.014152292162179947, - 0.027014493942260742, - -0.008746813051402569, - -0.025698602199554443, - -0.005024902056902647, - -0.011991390958428383, - 0.016061626374721527, - 0.016358347609639168, - -0.02135099656879902, - -0.016461554914712906, - -0.005440956447273493, - -0.008437191136181355, - 0.004499190486967564, - -0.006273064762353897, - -0.00677942531183362, - -0.021841231733560562, - 0.010933516547083855, - 0.0019964149687439203, - 0.00088532455265522, - -0.01611322909593582, - 0.032639287412166595, - -0.0005519168335013092, - -0.026395250111818314, - -0.02685968391597271, - -0.0036799830850213766, - 0.02164771780371666, - -0.01864180713891983, - -0.008817767724394798, - -0.017003392800688744, - -0.011991390958428383, - -0.019054636359214783, - 0.03436800837516785, - -0.16275781393051147, - 0.0025011629331856966, - 0.03684498369693756, - -0.018319284543395042, - -0.0055957674048841, - -0.0026059825904667377, - 0.010365876369178295, - -0.002386667300015688, - -0.015300472266972065, - -2.8371910957503133e-05, - 0.032639287412166595, - -0.010565840639173985, - -0.028227178379893303, - -0.007708290591835976, - -0.00450564082711935, - 0.003213937859982252, - -0.017377518117427826, - 0.020009303465485573, - 0.009178993292152882, - 0.00442178500816226, - 0.024382708594202995, - -0.014616725035011768, - 0.019286852329969406, - 0.013300832360982895, - -0.011223786510527134, - 0.00818562414497137, - -0.020228618755936623, - 0.056815583258867264, - 0.017003392800688744, - 6.752816989319399e-05, - -0.0013223426649346948, - -0.02102847397327423, - 0.04814617708325386, - -0.006669767666608095, - -0.013726562261581421, - 0.0025721178390085697, - 0.005305496975779533, - -0.0016626040451228619, - -0.0018480545841157436, - 0.011372147127985954, - 0.010172363370656967, - 0.006602037698030472, - -0.002041568048298359, - 0.016487356275320053, - -0.008424290455877781, - 0.012223606929183006, - 0.002107685199007392, - 0.01394587755203247, - -0.019531968981027603, - -0.0055409385822713375, - -0.0003394550585653633, - -0.0038702713791280985, - -0.0013223426649346948, - 0.013868472538888454, - 0.020667249336838722, - 0.001978676300495863, - 0.0015803608112037182, - 0.020048005506396294, - 0.0018577302107587457, - -0.00862425472587347, - -0.003944451455026865, - -0.004105712752789259, - 0.0008595227845944464, - -0.015519787557423115, - -0.00966922752559185, - -0.02436980791389942, - 0.005450631957501173, - 0.010352975688874722, - -0.0330263152718544, - 0.011881733313202858, - -0.0041024875827133656, - -0.02271849289536476, - -0.0020657572895288467, - -0.0033219829201698303, - -0.0006821353454142809, - 0.006953587289899588, - 0.004379856865853071, - 0.004021856933832169, - 0.019364258274435997, - -0.005340974312275648, - -0.014268400147557259, - 0.05970538407564163, - -0.018293483182787895, - -0.009417660534381866, - -0.009695029817521572, - -0.0021802529226988554, - -0.025440583005547523, - 0.005927965510636568, - -0.004686253610998392, - -7.79219681135146e-06, - 0.015300472266972065, - -0.02667907066643238, - -0.034471217542886734, - -0.004547568969428539, - -0.0056731728836894035, - 0.01038522832095623, - -0.000671250163577497, - 0.00854684878140688, - 0.006785875651985407, - -0.021157482638955116, - -0.00984984077513218, - 0.001846441999077797, - -0.03364555910229683, - 0.0029623701702803373, - 0.011114128865301609, - -0.00046040103188715875, - 0.006656866520643234, - -0.00018827257736120373, - 0.03970898315310478, - 0.003928325604647398, - -0.009894994087517262, - -0.011591462418437004, - -0.0027962711174041033, - -0.004147640895098448, - 0.004437911324203014, - 0.0072890110313892365, - 0.007876002229750156, - -0.016719572246074677, - 0.015945518389344215, - -0.028562601655721664, - 0.04474033787846565, - 0.015106959268450737, - -0.03534847870469093, - -1.4022174582350999e-05, - 0.001846441999077797, - -0.021931538358330727, - -0.073844775557518, - 0.004428235348314047, - 0.020086707547307014, - 0.030833162367343903, - 0.00552158709615469, - 0.03589031472802162, - 0.0031510458793491125, - 0.0076502361334860325, - 0.002783370204269886, - 0.024563321843743324, - -0.012784795835614204, - -0.0132621293887496, - -0.00047088300925679505, - -0.0037477128207683563, - 0.03343914449214935, - -0.00904353428632021, - -0.020138312131166458, - -0.0160745270550251, - -0.015622994862496853, - 0.019325554370880127, - 0.0033574604894965887, - -0.013791066594421864, - -0.005711875390261412, - 0.0020528563763946295, - -0.009695029817521572, - -0.0036864334251731634, - -0.041153885424137115, - 0.02781434915959835, - 0.008043713867664337, - 0.0033252080902457237, - 0.004595946986228228, - -0.030007503926753998, - 0.029156044125556946, - -0.04079265892505646, - 0.0165131576359272, - -0.00921124592423439, - -0.004712055437266827, - -0.023350637406110764, - -0.005989244673401117, - -0.01023686770349741, - -0.005469983443617821, - -0.015726203098893166, - 0.023402240127325058, - -0.026833880692720413, - -0.011636615730822086, - -0.006734271999448538, - 0.005395803134888411, - -0.004479839000850916, - 0.006563335191458464, - -0.010243318043649197, - -0.024679429829120636, - -0.0037767398171126842, - -0.0027672438882291317, - -0.0025640546809881926, - 0.013507246971130371, - -0.01911913976073265, - 0.006556884851306677, - -0.00463142478838563, - -0.02252497896552086, - 0.023802168667316437, - -0.0016488968394696712, - 0.020860763266682625, - -0.042469777166843414, - 0.047604337334632874, - 0.018151571974158287, - -0.00648592971265316, - -0.037928659468889236, - 0.007321263197809458, - 0.0020915591157972813, - -0.024202097207307816, - 5.845722262165509e-05, - 0.006618164014071226, - 0.011907534673810005, - 0.015016652643680573, - -0.02814977429807186, - 0.012210706248879433, - -0.03503885492682457, - -0.012720291502773762, - 0.019648076966404915, - -0.031065378338098526, - -0.006760073825716972, - -0.024640727788209915, - 0.03189103677868843, - -0.02693708799779415, - 0.018190275877714157, - -0.005170037504285574, - -0.003521946957334876, - -0.0030639648903161287, - 0.013584651984274387, - -0.023311933502554893, - 0.018616005778312683, - 0.0023382888175547123, - 0.01669377088546753, - -0.0317104235291481, - 0.013113769702613354, - -0.011991390958428383, - 0.018035463988780975, - 0.004779784940183163, - 0.008082416839897633, - -0.016925986856222153, - -0.025001952424645424, - -0.014771535992622375, - -0.05655756592750549, - 0.0339035764336586, - 0.007946956902742386, - 0.004163766745477915, - -0.02550508826971054, - -0.002414081711322069, - 0.014668328687548637, - 0.010133660398423672, - -0.003441316308453679, - 0.020667249336838722, - 0.003928325604647398, - 0.014100688509643078, - -0.006772974971681833, - -0.012578382156789303, - -0.023170024156570435, - -0.015300472266972065, - 0.003399388398975134, - 0.037077199667692184, - 0.015197264961898327, - 0.01245582289993763, - -0.02021571807563305, - -0.006992290262132883, - 0.009695029817521572, - 0.014681229367852211, - -0.032381270080804825, - 0.0065697855316102505, - -0.02234436571598053, - 0.0059956954792141914, - -0.0007917929906398058, - 0.0023270007222890854, - 0.025324475020170212, - -0.004163766745477915, - 0.007721191272139549, - 0.0265242587774992, - 0.00022334691311698407, - -0.00984984077513218, - 0.00404443359002471, - 0.031271792948246, - 0.014887643977999687, - 0.059137746691703796, - -0.025530889630317688, - -0.023789267987012863, - 0.01633254438638687, - -0.022292762994766235, - -0.007940506562590599, - -0.006169857457280159, - -0.007727641612291336, - -0.002235081745311618, - 0.01629384234547615, - 0.0024189194664359093, - 0.02484714239835739, - 0.019622275605797768, - 0.004286325536668301, - -0.023724762722849846, - 0.0269628893584013, - -0.020409230142831802, - 0.01218490395694971, - -0.0036187036894261837, - 0.004221821203827858, - -0.019312653690576553, - 0.038470495492219925, - -0.0008974191732704639, - 0.01915784366428852, - 0.01299121044576168, - -0.0025963070802390575, - -0.006537533365190029, - -0.018990131095051765, - -0.009172542952001095, - 0.0007030993001535535, - -0.02509225904941559, - -0.023234529420733452, - -0.018848221749067307, - -0.016861481592059135, - 0.027943359687924385, - -0.009682129137217999, - -0.01348144467920065, - 0.012920255772769451, - 0.004228271543979645, - -0.024189196527004242, - 0.034806638956069946, - -0.006473028566688299, - 0.006624614354223013, - -0.035761307924985886, - 0.005963442847132683, - 0.012694490142166615, - 0.022770095616579056, - -0.009830488823354244, - 0.017854852601885796, - 0.004060559440404177, - 0.006398848723620176, - -0.006618164014071226, - 0.010082056745886803, - 0.0018125770147889853, - -0.007056794594973326, - -0.004502415657043457, - 0.014190995134413242, - 0.007372866850346327, - 0.004699154291301966, - 0.017184004187583923, - 0.026730673387646675, - -0.011913985013961792, - 0.01611322909593582, - 0.008075966499745846, - -0.02425369992852211, - -0.01355885062366724, - 0.015429481863975525, - -0.016048725694417953, - -0.03300051391124725, - -0.02091236598789692, - 0.027272511273622513, - -0.02021571807563305, - 0.01757103204727173, - -0.002746280049905181, - -0.004399208351969719, - -0.029749484732747078, - 0.035606496036052704, - -0.012939606793224812, - 0.007534128148108721, - -0.026330746710300446, - 0.013275031000375748, - 0.010352975688874722, - 0.024576222524046898, - -0.00921124592423439, - 0.004173442721366882, - 0.03008490987122059, - -0.0005370001308619976, - -0.004189568571746349, - -0.012113949283957481, - 0.012655787169933319, - -0.0145651213824749, - 0.0007365610217675567, - -0.01555849052965641, - 0.0011320543708279729, - 0.0035187217872589827, - -0.014307103119790554, - -0.028381990268826485, - 0.004218595568090677, - 0.01231391355395317, - 0.013803967274725437, - 0.09949177503585815, - 0.02120908722281456, - 0.0033510099165141582, - 0.008779065683484077, - 0.0006922141765244305, - -0.0037573883309960365, - 0.008359786123037338, - 0.013300832360982895, - -0.00904353428632021, - -0.04035402834415436, - 0.0031413701362907887, - -0.024305304512381554, - 0.009520867839455605, - -0.041592516005039215, - 0.009269299916923046, - 0.02003510482609272, - -0.012423571199178696, - 0.008166272193193436, - -0.016964688897132874, - 0.0234538447111845, - 0.02138969860970974, - 0.009759534150362015, - 0.01460382342338562, - 0.03374876454472542, - -0.03343914449214935, - -0.01319117471575737, - 0.03354234993457794, - -0.014139391481876373, - 0.00805661454796791, - -0.009372507221996784, - 0.011597912758588791, - 0.019983500242233276, - -0.0642981082201004, - -0.021273590624332428, - 0.032716695219278336, - -0.011875282973051071, - 0.0014989238698035479, - -0.0020173790398985147, - 0.005602217745035887, - 0.0022125050891190767, - 0.017738742753863335, - 0.003460667561739683, - -0.03361975774168968, - 0.0018335410859435797, - -0.008082416839897633, - -0.011907534673810005, - -0.005121659021824598, - -0.028820620849728584, - -0.028794819489121437 - ], - "sparse": "SparseEmbedding(values=array([1.6434199, 1.6434199, 1.6434199, 1.6434199, 1.6434199, 1.6434199,\n 1.6434199, 1.6434199, 1.6434199, 1.6434199, 1.6434199]), indices=array([2077811411, 19522071, 999597208, 1894123915, 1880984647,\n 922977895, 911111262, 1092081572, 1612226653, 843816345,\n 433708589]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 20, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 11 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000021.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000021.json deleted file mode 100644 index 01e911d9b6eb240e4aca0ab6897dbde80ead6938..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000021.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000021", - "content": "Abbildung 3: Auswirkungen ausgew\u00e4hlter urbaner Elemente auf die Temperatur in der", - "embedding": { - "dense": [ - 0.006892877165228128, - 0.020440947264432907, - 0.007772956043481827, - -0.03147725760936737, - -0.002155228750780225, - 0.024064043536782265, - -0.04023950174450874, - -0.012404609471559525, - 2.381371086812578e-05, - -0.01695917546749115, - 0.0008728515240363777, - 0.007226921617984772, - -0.0013048609253019094, - -0.018873507156968117, - -0.01182645559310913, - -0.017871374264359474, - 0.005739782005548477, - -0.002364006359130144, - 0.017832830548286438, - -0.0006275377236306667, - -0.01463371329009533, - 0.016239695250988007, - -0.0021937722340226173, - 0.00013670926273334771, - 0.004846855532377958, - 0.015635846182703972, - 0.007207649759948254, - -0.05205953121185303, - -0.006706583313643932, - -0.0025984798558056355, - 0.01760157011449337, - -0.0011153549421578646, - -0.022136863321065903, - -0.016586588695645332, - -0.01762726530432701, - 0.010265440680086613, - 0.000396476942114532, - -0.019464509561657906, - -0.002148804720491171, - -0.010605908930301666, - 0.021070491522550583, - -0.02096770890057087, - 0.015764325857162476, - -0.029113253578543663, - 0.027365943416953087, - 0.023922717198729515, - 0.014428148046135902, - -0.0014445813139900565, - -0.01701056770980358, - 0.009828613139688969, - 0.018038395792245865, - 0.04062493517994881, - -0.0022772832307964563, - -0.011081280186772346, - -0.011158366687595844, - -0.00432330509647727, - -0.022239647805690765, - 0.02054372988641262, - 0.001875787740573287, - -0.006562044844031334, - -0.024012651294469833, - -0.003101152367889881, - -0.01819257065653801, - 0.023871324956417084, - -0.026248179376125336, - -0.02132744900882244, - -0.03052651695907116, - 0.004766556434333324, - 0.03232521936297417, - -0.024012651294469833, - 0.029421601444482803, - 0.02250945195555687, - 0.022920584306120872, - -0.008948534727096558, - -0.001296830945648253, - -0.013670124113559723, - 0.01102988887578249, - 0.017049111425876617, - -0.008415348827838898, - 0.01978570595383644, - 0.012520240619778633, - -0.047716956585645676, - -0.03237660974264145, - 0.028547946363687515, - 0.02270217053592205, - 0.022753560915589333, - 0.0034046832006424665, - 0.027674293145537376, - 0.011229030787944794, - -0.009186220355331898, - 0.014119799248874187, - 0.01577717252075672, - 0.014954909682273865, - 0.01665082760155201, - -0.016098368912935257, - -0.011415324173867702, - -0.015982739627361298, - 0.0330703929066658, - 0.0016621920512989163, - -0.014890670776367188, - 0.011794336140155792, - 0.009154100902378559, - -0.0006166973034851253, - -0.006796518340706825, - -0.06141277402639389, - 0.011396052315831184, - -0.0006516274297609925, - -0.0036841242108494043, - 0.015443128533661366, - -0.03818384185433388, - 0.006642343942075968, - 0.05575971677899361, - -0.011948511004447937, - -0.025939831510186195, - -0.00850528385490179, - -0.01080505084246397, - 0.022329581901431084, - -0.009147676639258862, - -5.686182339559309e-05, - -0.008800785057246685, - 0.011505259200930595, - 0.042089592665433884, - -0.004413240123540163, - 0.009847884997725487, - 0.025682874023914337, - 0.02080068737268448, - -0.007702292408794165, - -0.005511732306331396, - -0.010907833464443684, - -0.02099340409040451, - -0.019079074263572693, - 0.022265342995524406, - 0.014864974655210972, - -0.010593061335384846, - -0.035305920988321304, - 0.026196788996458054, - -0.029087556526064873, - -0.0038672061637043953, - -0.0400853268802166, - -0.025541547685861588, - 0.0008294900180771947, - -0.0007026173989288509, - -0.026723550632596016, - -0.009706558659672737, - 0.009745102375745773, - 0.033147480338811874, - 0.012918524444103241, - 0.007856466807425022, - -0.013194752857089043, - -0.020556576550006866, - 0.0005733357975259423, - -0.024128282442688942, - 0.027545813471078873, - 0.005826504901051521, - -0.0072975847870111465, - 0.01760157011449337, - -0.0007849240209907293, - 0.010952801443636417, - -2.8179976652609184e-05, - -0.007907858118414879, - 0.013111242093145847, - -0.01572578214108944, - 0.008261174894869328, - 0.013387471437454224, - 0.029370209202170372, - -0.017190437763929367, - -0.00010288326302543283, - -0.007772956043481827, - 0.011145519092679024, - -0.01155022718012333, - -0.00903846975415945, - 0.03731018677353859, - -0.00324087287299335, - 0.034457962960004807, - -0.014852127060294151, - 0.016111217439174652, - -0.0028377713169902563, - -0.0020749294199049473, - -0.017807135358452797, - -0.030449429526925087, - -0.04589255899190903, - -0.01617545634508133, - 0.022265342995524406, - 0.0033854113426059484, - -0.010734387673437595, - -0.0066359201446175575, - 0.014659409411251545, - 0.02293343096971512, - 0.02716037817299366, - 0.0018003064906224608, - 0.012655142694711685, - 0.012745077721774578, - 0.022612234577536583, - -0.0036487923935055733, - -0.6413652300834656, - 0.0035781292244791985, - -0.028779208660125732, - -0.008441044948995113, - 0.021956993266940117, - 0.0035813411232084036, - 0.03787549212574959, - -0.014222581870853901, - 0.003184663597494364, - 0.006552408915013075, - -0.00386399426497519, - 0.005184111651033163, - 0.0010687814792618155, - -0.001178791280835867, - 0.0031862694304436445, - 0.0030160353053361177, - -0.014646561816334724, - 0.002227497985586524, - 0.028625033795833588, - 0.0026852029841393232, - 0.0018468799535185099, - 0.017794286832213402, - 0.014273973181843758, - -0.010124114342033863, - 0.006378963124006987, - 0.029550079256296158, - -0.014222581870853901, - -0.056016672402620316, - 0.00034789598430506885, - 0.013014882802963257, - -0.017228981480002403, - 0.022920584306120872, - 0.010734387673437595, - 0.015905652195215225, - 0.05956268310546875, - -0.005996739026159048, - -0.025670025497674942, - 0.008338261395692825, - 0.0041723428294062614, - -0.004137011244893074, - -0.023049062117934227, - -0.011569499038159847, - 0.0030433370266109705, - -0.012166923843324184, - 0.025194654241204262, - 0.01925894431769848, - 0.01031683199107647, - -0.022689322009682655, - -0.0010254199150949717, - -0.005559911951422691, - 0.033507220447063446, - -0.017061959952116013, - 0.006388598587363958, - 0.011479564011096954, - 0.02682633325457573, - 0.011100552044808865, - 0.021404536440968513, - 0.00394429313018918, - 0.002945372136309743, - 0.006006374955177307, - -0.0075481184758245945, - -0.0132461441680789, - -0.004387544468045235, - -0.008563099429011345, - -0.018256809562444687, - 0.04041936993598938, - -0.011068431660532951, - 0.01050955057144165, - -0.013310384005308151, - -0.035639967769384384, - -0.007766531780362129, - 0.006378963124006987, - 0.012160500511527061, - 0.0032055412884801626, - -0.0027542600873857737, - 0.0074389115907251835, - 0.020029814913868904, - -0.004037440288811922, - -0.011100552044808865, - 0.01726752519607544, - 0.009199067950248718, - -0.014749344438314438, - -0.009764374233782291, - 0.004307245370000601, - -0.007740836124867201, - -0.060641903430223465, - -0.026440897956490517, - 0.0062601203098893166, - -0.01740885153412819, - 0.005168051924556494, - -0.00597104337066412, - 0.008383229374885559, - -0.01510908454656601, - -0.0121926199644804, - -0.009539537131786346, - 0.03268495947122574, - -0.00853740330785513, - 0.05180257558822632, - 0.0256443303078413, - -0.03574274852871895, - 0.003854358335956931, - -0.011376780457794666, - 0.010458158329129219, - 0.005315802525728941, - 0.023974107578396797, - 0.010438887402415276, - -0.02222679927945137, - 0.014466691762208939, - 0.026672158390283585, - -0.02265077829360962, - -0.0057654776610434055, - 0.01925894431769848, - -0.01570008508861065, - -0.019657226279377937, - -0.001922361203469336, - -0.022162560373544693, - 0.02682633325457573, - -0.004002108704298735, - 0.013348927721381187, - -0.007882162928581238, - 0.020505186170339584, - -0.0035684932954609394, - 0.017640113830566406, - -0.014119799248874187, - 0.03312178701162338, - 0.024629348888993263, - 0.038774844259023666, - -0.008518131449818611, - -0.005219443701207638, - -0.023164693266153336, - 0.03245369717478752, - 0.03802966699004173, - 0.03666779398918152, - -0.035614270716905594, - 0.03181130439043045, - 0.0009338788804598153, - 0.020132597535848618, - -0.0005046800361014903, - 0.0026081157848238945, - -0.017177589237689972, - -0.009475297294557095, - 0.0052804709412157536, - 0.00279280380345881, - -0.010451734997332096, - -0.019695769995450974, - -0.01835959404706955, - 0.0007395549910143018, - 0.001766580855473876, - -0.041215937584638596, - 0.0072204978205263615, - -0.012507392093539238, - -0.00043642576201818883, - 0.004801888018846512, - -0.004130587447434664, - 0.013901385478675365, - -0.012006325647234917, - 0.01650950126349926, - -0.013156209141016006, - -0.018269658088684082, - -0.006343631073832512, - 0.014453843235969543, - 0.01181360799819231, - -0.024706436321139336, - 0.010798627510666847, - -0.016663676127791405, - -0.009597351774573326, - 0.005531004164367914, - 0.018179723992943764, - -0.0137343630194664, - -0.013978472910821438, - 0.0044485717080533504, - 0.0004320093139540404, - 0.009077013470232487, - 0.003327596001327038, - -0.02116042748093605, - -0.0044999634847044945, - -0.0271860733628273, - 0.011922814883291721, - -0.019721467047929764, - 0.006353267002850771, - 0.010747235268354416, - -0.0024876671377569437, - -0.004570626653730869, - -0.017023416236042976, - 0.010753659531474113, - -0.0016557680210098624, - 0.027545813471078873, - 0.0287278164178133, - -0.00787573866546154, - 0.012835012748837471, - -0.012244011275470257, - 0.018886355683207512, - -0.014595169574022293, - -0.003449650714173913, - 0.010599485598504543, - -0.010850018821656704, - 0.02682633325457573, - 0.017061959952116013, - -0.00335971568711102, - 0.004641289822757244, - 0.02934451401233673, - -0.0009202280198223889, - 0.016162609681487083, - -0.004670197609812021, - 0.042731985449790955, - -0.019914183765649796, - 0.025721417739987373, - -0.011646585538983345, - 0.01883496344089508, - 0.001638905261643231, - 0.02752011828124523, - -0.02051803469657898, - -0.053858231753110886, - -0.01295064389705658, - -0.0225608441978693, - 0.022920584306120872, - -0.014787888154387474, - -0.015366042032837868, - -0.0034271669574081898, - 0.00022543981322087348, - 0.01670221984386444, - -0.025914134457707405, - 0.02659507282078266, - -0.009571656584739685, - -0.025875592604279518, - -0.005929287988692522, - -0.0011828062124550343, - -0.007939977571368217, - 0.014993453398346901, - -0.01928463950753212, - -0.03484340012073517, - -0.0013289506314322352, - -0.014736496843397617, - 0.00874296948313713, - 0.0011948510073125362, - 0.021738581359386444, - 0.0014999877894297242, - -0.02531028538942337, - 0.018449528142809868, - 0.008119847625494003, - 0.023922717198729515, - 0.027828466147184372, - -0.011344661004841328, - -0.013310384005308151, - 0.02865072898566723, - -0.00709844334051013, - 0.017164742574095726, - 0.020286772400140762, - -8.531782441423275e-06, - -0.009070590138435364, - -0.009372514672577381, - -0.012912100180983543, - -0.008595218881964684, - 0.006937844678759575, - 0.02870212122797966, - -0.009083437733352184, - 0.028779208660125732, - -0.012102684937417507, - 0.020428098738193512, - 0.020222533494234085, - 0.010091994889080524, - 0.009905700571835041, - 0.006783670745790005, - -0.025104720145463943, - 0.01570008508861065, - -0.017974156886339188, - -0.004332941025495529, - -0.03679627180099487, - -0.005604879464954138, - 0.0011643373873084784, - -0.000886502384673804, - -0.019914183765649796, - -0.012603751383721828, - -0.023717151954770088, - -0.015096236951649189, - -0.022239647805690765, - -0.008530979976058006, - 0.011794336140155792, - 0.022663626819849014, - 0.013271840289235115, - -0.005848988424986601, - -0.036565013229846954, - -0.014903518371284008, - 0.04812808707356453, - 0.007869314402341843, - -0.00749030290171504, - -0.008543827570974827, - 0.02023538015782833, - -0.01419688668102026, - 0.018295353278517723, - 0.003732303623110056, - -0.0025374526157975197, - -0.002796015702188015, - -0.014903518371284008, - -0.013169057667255402, - 0.008948534727096558, - 0.040599241852760315, - -0.010541670024394989, - -0.0005018695374019444, - 0.010496702045202255, - 0.008325413800776005, - 0.005482824519276619, - -0.024565109983086586, - 0.002969461726024747, - 0.03856927901506424, - 0.014954909682273865, - 0.01305985078215599, - -0.013541645370423794, - -0.006048130337148905, - -0.004705529194325209, - 0.008935687132179737, - 0.012860708869993687, - -0.0017055534990504384, - 0.03592262044548988, - -0.012295402586460114, - 0.0069442689418792725, - 0.0074067916721105576, - -0.004018168430775404, - 0.03291621804237366, - 0.005604879464954138, - 0.023370258510112762, - -0.01670221984386444, - -0.0426035076379776, - -0.007374672219157219, - 0.022213950753211975, - 0.021173274144530296, - 0.017254676669836044, - 0.014813583344221115, - 0.007567389868199825, - -0.019888488575816154, - -0.00038764404598623514, - -0.02488630637526512, - 0.009411058388650417, - 0.016612283885478973, - -0.009931396692991257, - -0.005540640093386173, - 0.03386696055531502, - -0.01220546755939722, - -0.004018168430775404, - -0.008999926969408989, - -0.017447395250201225, - -0.030475126579403877, - 0.0006227197591215372, - 0.0008142332080751657, - -0.010522398166358471, - -0.011460292153060436, - 0.0001926175318658352, - 0.03088625706732273, - 0.022406669333577156, - -0.0145052345469594, - 0.01710050366818905, - 0.012757926248013973, - 0.019387422129511833, - -0.008909991942346096, - 0.0053382860496640205, - 0.03538300842046738, - 0.0005066875019110739, - 0.024205369874835014, - -0.021044796332716942, - 0.0007756896084174514, - -0.0013787361094728112, - -0.013939929194748402, - 0.04134441539645195, - -0.002672355156391859, - 0.0068029421381652355, - 0.015854259952902794, - 0.010914257727563381, - -0.007856466807425022, - 0.004878974985331297, - -0.021841363981366158, - 0.016946328803896904, - 0.01594419591128826, - -0.007426063530147076, - -0.0018838176038116217, - 0.0029839156195521355, - -0.0025053329300135374, - -0.013785754330456257, - 0.002261223504319787, - 0.004901458974927664, - -0.014646561816334724, - 0.01080505084246397, - -0.008794360794126987, - 0.011441020295023918, - -0.00030814792262390256, - -0.018423832952976227, - -0.012044869363307953, - -0.004403604194521904, - -0.02531028538942337, - -0.009963516145944595, - 0.009828613139688969, - -0.011190487071871758, - 0.01118406280875206, - -0.02965286374092102, - 0.0018035185057669878, - 0.0068671815097332, - 0.022946279495954514, - -0.017228981480002403, - 0.020145446062088013, - -0.005058845039457083, - 0.013824298046529293, - 0.022380974143743515, - -0.009745102375745773, - -0.016432413831353188, - -0.001931997132487595, - -0.00865945778787136, - -0.010361799970269203, - 0.00873012188822031, - -0.01305985078215599, - -0.019798554480075836, - -0.003423954825848341, - 0.009578079916536808, - -0.024012651294469833, - -0.019413117319345474, - 0.009494569152593613, - -0.02609400451183319, - -0.013413166627287865, - 0.018231114372611046, - 0.007464607246220112, - -0.019246095791459084, - -0.010098418220877647, - 0.014286821708083153, - 0.007503150962293148, - 0.019014833495020866, - -0.03571705147624016, - 0.020749295130372047, - 0.007072747219353914, - -0.010682996362447739, - 0.016779305413365364, - -0.0074967266991734505, - 0.009443177841603756, - -0.017228981480002403, - 0.02752011828124523, - -0.01055451761931181, - 0.02125036157667637, - 0.03296761214733124, - -0.001598755712620914, - 0.00029991724295541644, - 8.531782441423275e-06, - -0.016753610223531723, - 0.023049062117934227, - -0.0003495019627735019, - 0.022715017199516296, - 0.0026402354706078768, - -0.007515998557209969, - -0.03122030198574066, - -0.019374573603272438, - 0.03882623463869095, - 0.010348952375352383, - 0.025066176429390907, - 0.004859703592956066, - -0.009969940409064293, - 0.026903420686721802, - -0.03898040950298309, - -0.01577717252075672, - 0.011762216687202454, - 0.024565109983086586, - 0.00849243625998497, - 0.010573789477348328, - -0.03181130439043045, - -0.019464509561657906, - 0.004715165123343468, - 0.0009370908373966813, - -0.02077499032020569, - 0.0024989088997244835, - -0.04219237342476845, - -0.008363957516849041, - -0.00016641995171085, - 0.016907785087823868, - -0.0017440970987081528, - -0.0333530455827713, - -0.001862939796410501, - -0.0038800539914518595, - -0.0018982714973390102, - 0.022637931630015373, - -0.0168178491294384, - -0.0004195629444438964, - -0.019323183223605156, - 0.013130513951182365, - -0.034406572580337524, - -0.027365943416953087, - 0.02267647348344326, - -0.029421601444482803, - 0.004641289822757244, - 0.010875714011490345, - 0.018989138305187225, - 0.026196788996458054, - 0.01420973427593708, - -0.027288855984807014, - -0.017794286832213402, - 0.011177638545632362, - 0.021057644858956337, - 0.008993502706289291, - -0.015969891101121902, - 0.009706558659672737, - 0.010085570625960827, - 0.018231114372611046, - 0.003008005442097783, - 0.002364006359130144, - 0.003440014785155654, - 0.04234654828906059, - -0.019066225737333298, - 0.0015112296678125858, - -0.01608552224934101, - -0.009719407185912132, - -0.011961358599364758, - -0.0019014833960682154, - -0.025541547685861588, - -0.002137562958523631, - -0.004856491461396217, - -0.008948534727096558, - 0.02654368057847023, - -0.008762241341173649, - -0.006828638259321451, - 0.008184087462723255, - 0.006134853698313236, - -0.03551148623228073, - 0.04131872206926346, - -0.015443128533661366, - -0.021712884306907654, - 0.021879907697439194, - 0.0003069434314966202, - -0.019811401143670082, - -0.005807233043015003, - 0.02096770890057087, - -0.0038832658901810646, - -0.026440897956490517, - 0.0028104695957154036, - -0.010541670024394989, - 0.011094127781689167, - 0.02063366398215294, - 0.007445335388183594, - -0.018513767048716545, - -0.01589280366897583, - -0.010997768491506577, - -0.016689371317625046, - -0.00573335774242878, - -0.008107000030577183, - -0.04620090872049332, - 0.02205977775156498, - -0.0064496262930333614, - 0.013143361546099186, - 0.0367191880941391, - -0.01686924137175083, - 0.02326747588813305, - -0.002665931126102805, - 0.011505259200930595, - 0.03188839182257652, - 0.004230158403515816, - 0.04784543439745903, - 0.010515973903238773, - -0.01617545634508133, - -0.023858478292822838, - -0.043091725558042526, - -0.01631678268313408, - 0.009468873031437397, - 0.006886453367769718, - 0.016291087493300438, - -0.013143361546099186, - -0.01526325847953558, - 0.004426088184118271, - 0.016162609681487083, - 0.030475126579403877, - -0.011710825376212597, - 0.04936148226261139, - 0.013927081599831581, - -0.02687772549688816, - 0.006542772985994816, - -0.0022788892965763807, - -0.008543827570974827, - 0.0010374647099524736, - 0.0033725635148584843, - -0.011441020295023918, - -0.0031991172581911087, - -2.6699461159296334e-05, - 0.010747235268354416, - 0.04409385845065117, - -0.007451759185642004, - 0.025387372821569443, - 0.0013096787733957171, - -0.01748593896627426, - 0.01928463950753212, - -0.019181856885552406, - -0.018706485629081726, - 0.008402501232922077, - -0.0033982591703534126, - 0.0025374526157975197, - 0.0021407748572528362, - -0.016766458749771118, - -0.0010744023602455854, - 0.0035042541567236185, - -0.0008029913296923041, - 0.009802917949855328, - -0.0042815497145056725, - 0.021905602887272835, - -0.01729322038590908, - -0.027288855984807014, - 0.00496891001239419, - -0.0009619835764169693, - 0.020453793928027153, - 0.012128381058573723, - -0.009231188334524632, - -0.009160525165498257, - -0.010914257727563381, - -0.01838528923690319, - 0.01104273647069931, - -0.004496751353144646, - 0.004622017964720726, - -0.01498060580343008, - -0.020196836441755295, - -0.007445335388183594, - -0.01406840793788433, - -0.014595169574022293, - -0.01196778193116188, - -0.02026107721030712, - 0.007381096016615629, - 0.005604879464954138, - 0.005135932471603155, - 0.028933383524417877, - -0.008042761124670506, - -0.06048772856593132, - 0.01880926825106144, - 0.022689322009682655, - -0.03492048755288124, - 0.05131435766816139, - 0.023049062117934227, - 0.010220473632216454, - -0.003138090018182993, - 0.005396101623773575, - 0.0016276633832603693, - -0.011229030787944794, - 0.045198775827884674, - -0.007374672219157219, - -0.024989088997244835, - -0.02172573283314705, - -0.03517744317650795, - 0.04635508358478546, - -0.0029341301415115595, - -0.005999951157718897, - 0.02051803469657898, - 0.0037772711366415024, - -0.002264435403048992, - -0.017704352736473083, - -0.033455830067396164, - 0.029421601444482803, - 0.024231065064668655, - -0.005367193836718798, - 0.03029525652527809, - -0.011485987342894077, - 0.03492048755288124, - 0.010689420625567436, - 0.012635870836675167, - -0.017832830548286438, - -0.02125036157667637, - -0.009623047895729542, - -0.006886453367769718, - 0.012411033734679222, - -0.0072204978205263615, - -0.005938923452049494, - -0.0055566998198628426, - -0.008608066476881504, - -0.025387372821569443, - 0.02393556386232376, - 0.023986956104636192, - -0.0041916146874427795, - 0.012019174173474312, - 0.01880926825106144, - -0.01883496344089508, - 0.018513767048716545, - -0.021057644858956337, - -0.012134804390370846, - 0.007259041536599398, - -0.01155022718012333, - -0.024783523753285408, - -0.0043008215725421906, - -0.010246168822050095, - 0.010830746963620186, - -0.009115557186305523, - -0.029216036200523376, - -0.011922814883291721, - 0.012449577450752258, - -0.05647919699549675, - -0.011678705923259258, - -0.00026920283562503755, - -0.014697953127324581, - -0.0017938825767487288, - 0.005675542633980513, - -0.005296530667692423, - 0.03294191509485245, - 0.001262302277609706, - 0.009314699098467827, - -0.01776859164237976, - -0.028316685929894447, - 0.01760157011449337, - -0.018488071858882904, - 0.033532917499542236, - -0.003716243663802743, - -0.006796518340706825, - -0.010894985869526863, - -0.00926330778747797, - -0.026903420686721802, - -0.01119691040366888, - 0.03152865171432495, - 0.010676572099328041, - -0.006982812192291021, - -0.026980508118867874, - 0.0020203262101858854, - -0.02116042748093605, - 0.0004227749304845929, - 0.01255878433585167, - -0.04404246807098389, - 0.015545912086963654, - 0.022149711847305298, - -0.009070590138435364, - -0.03399543836712837, - 0.0037579992786049843, - -0.00686075771227479, - 0.007734412327408791, - -0.0058136568404734135, - 0.012102684937417507, - -0.021455926820635796, - -0.01510908454656601, - 0.003603824879974127, - 0.01793561317026615, - 0.007612357381731272, - 0.0017344611696898937, - 0.015764325857162476, - -0.01359303668141365, - -0.00787573866546154, - -0.008717273361980915, - 0.0030481549911201, - -0.04283476993441582, - -0.005951771512627602, - -0.007471031043678522, - 0.015276107005774975, - 0.029986906796693802, - -0.00240736803971231, - 0.0121926199644804, - -0.023807086050510406, - 0.022997671738266945, - -0.022213950753211975, - -0.02595267817378044, - -0.01636817492544651, - 0.015224714763462543, - 0.023871324956417084, - -0.001996236387640238, - 0.019515899941325188, - -0.00431688129901886, - -0.020363859832286835, - -0.023845629766583443, - 0.002357582561671734, - 0.021687189117074013, - -0.030346646904945374, - -0.007895010523498058, - -0.010149810463190079, - -0.00622157659381628, - -0.00033183617051690817, - 0.0005416176281869411, - 0.012282554991543293, - -0.028162511065602303, - 0.004034228157252073, - 0.1656860113143921, - -0.017164742574095726, - -0.027057595551013947, - 0.009051318280398846, - 0.013798602856695652, - 0.00902562215924263, - 0.0069635407999157906, - -0.0026193575467914343, - -0.021224666386842728, - 0.01895059458911419, - -0.02486061118543148, - -0.0016035736771300435, - -0.008274022489786148, - 0.015995586290955544, - 0.0026787789538502693, - -0.006199093069881201, - -0.007676596753299236, - 0.017704352736473083, - -0.014299669302999973, - 0.007740836124867201, - 0.028316685929894447, - -0.02744303084909916, - -0.0013819480082020164, - -0.010503126308321953, - 0.008800785057246685, - 0.0036841242108494043, - 0.0015810899203643203, - 0.020787838846445084, - 0.02483491413295269, - 0.010342528112232685, - -0.013117666356265545, - 0.004756920505315065, - 0.016548044979572296, - -0.024153977632522583, - -0.0025695720687508583, - 0.0013225267175585032, - 0.008466740138828754, - -0.02813681587576866, - 0.026723550632596016, - 0.02528459019958973, - -0.008421773090958595, - -0.01589280366897583, - -0.017447395250201225, - -0.011588770896196365, - -0.0034978301264345646, - 0.0241025872528553, - -0.004246218129992485, - 0.017396003007888794, - -0.001710371463559568, - 0.008826480247080326, - 0.007085595279932022, - -0.006899301428347826, - 0.02780277095735073, - 0.03630805388092995, - -0.023948412388563156, - 0.02424391359090805, - 0.04255211353302002, - -0.009224764071404934, - 0.02780277095735073, - 0.005887532141059637, - -0.03769562393426895, - 0.030783474445343018, - -0.005219443701207638, - 0.009436753578484058, - 0.0024153979029506445, - -0.003661640454083681, - -0.009115557186305523, - 0.01833389699459076, - 0.003764423308894038, - 0.004519234877079725, - -0.0011587165063247085, - -0.02988412417471409, - -0.02393556386232376, - 0.025939831510186195, - -0.011318965815007687, - -0.009835037402808666, - 0.031091824173927307, - 0.0028313472867012024, - 0.013849994167685509, - 0.030963344499468803, - -0.0011876241769641638, - 0.00826759822666645, - 0.010593061335384846, - 0.002433063695207238, - 0.006732278969138861, - -0.02929312363266945, - 0.021995536983013153, - 0.01964437961578369, - -0.008678729645907879, - 0.00393144553527236, - -0.010181929916143417, - 0.0022451637778431177, - 0.016072673723101616, - -0.012154076248407364, - 0.01796131022274494, - -0.00573335774242878, - -0.01662513241171837, - 0.004824371542781591, - -0.012777197174727917, - 0.02225249446928501, - 0.0036969720385968685, - 0.029472993686795235, - 0.020004119724035263, - -0.018436679616570473, - 0.001760156941600144, - -0.011318965815007687, - -0.0061316415667533875, - 0.0004143435216974467, - 0.0038993258494883776, - -0.03959710896015167, - 0.012597327120602131, - -0.022637931630015373, - 0.008453892543911934, - 0.027674293145537376, - 0.01372151542454958, - -2.5156212359433994e-05, - 0.005540640093386173, - -0.03217104449868202, - 0.007271889131516218, - -0.004673409275710583, - -0.0009844673331826925, - 0.008049184456467628, - -0.009725830517709255, - 0.009289002977311611, - 0.028008336201310158, - -0.030603604391217232, - -0.04869339242577553, - 0.007265465334057808, - -0.0093917865306139, - 0.005283682607114315, - 0.04496751353144646, - -0.005225867498666048, - -0.016046978533267975, - -0.00874296948313713, - -0.01662513241171837, - 0.01028471253812313, - 0.010798627510666847, - -0.01824396289885044, - 0.003732303623110056, - 0.008042761124670506, - 0.008261174894869328, - -0.020672207698225975, - 0.0064496262930333614, - -0.009873581118881702, - -0.005543851759284735, - -0.004650925751775503, - 0.0070534758269786835, - -0.00839607696980238, - -0.02777707576751709, - -0.007843619212508202, - 0.006713007111102343, - -0.004586686380207539, - 0.005903591867536306, - -0.02293343096971512, - 0.057866767048835754, - -0.004487115424126387, - -0.013541645370423794, - -0.01406840793788433, - -0.009244035929441452, - 0.03975128009915352, - -0.0007295176037587225, - 0.0035749173257499933, - -0.007226921617984772, - -0.029781341552734375, - -0.006584528833627701, - 0.029370209202170372, - -0.1608552187681198, - 0.01040034368634224, - 0.03646222874522209, - -0.04013671725988388, - 0.0071112909354269505, - -0.0036166729405522346, - 0.012603751383721828, - -0.020428098738193512, - -0.007740836124867201, - 0.01449238695204258, - 0.017036262899637222, - 0.018179723992943764, - -0.02376854233443737, - 0.0025053329300135374, - -0.0008471558103337884, - -0.008415348827838898, - -0.04545573145151138, - 0.03769562393426895, - 0.010824322700500488, - 0.003134878119453788, - 0.01729322038590908, - -0.016188304871320724, - 0.02993551641702652, - -0.009256883524358273, - -0.007355400361120701, - 0.001822790247388184, - -0.020222533494234085, - -0.0020171140786260366, - 0.001989812357351184, - -0.010548093356192112, - -0.014620865695178509, - 0.007650901097804308, - 0.02357582375407219, - 0.0015385313890874386, - 0.004686257336288691, - -0.020029814913868904, - 0.0074967266991734505, - 0.009687286801636219, - -0.01698487251996994, - 0.026646463200449944, - 0.00046453045797534287, - 0.0018773936899378896, - -0.025079024955630302, - 0.022239647805690765, - -0.012372490018606186, - 0.0026402354706078768, - -0.002341522602364421, - 0.018205419182777405, - -0.007509574759751558, - -0.002596873790025711, - 0.0264922883361578, - -0.02545161172747612, - -0.0004528870922513306, - 0.01755017787218094, - 0.0121926199644804, - 0.02556724287569523, - -0.0005127099575474858, - 0.015237563289701939, - 0.0012671202421188354, - -0.007689444813877344, - -0.0009643925586715341, - 0.004805100150406361, - 0.007136986590921879, - 0.012629447504878044, - -0.0126808388158679, - -0.011145519092679024, - 0.013772906735539436, - 0.004901458974927664, - -0.007984945550560951, - 0.014762192033231258, - -0.019528748467564583, - -0.019438814371824265, - 0.0002700058394111693, - -0.02865072898566723, - -0.0005396101623773575, - 0.013670124113559723, - 0.009616623632609844, - 0.026158245280385017, - 0.010291136801242828, - -0.0018597278976812959, - 0.0014108556788414717, - 0.05056918039917946, - -0.032839130610227585, - 0.002715716604143381, - -0.024963393807411194, - 0.005588819272816181, - -0.03481770306825638, - -0.005418585147708654, - -0.0027221404016017914, - -0.010419615544378757, - 0.01835959404706955, - -0.016972023993730545, - -0.039006106555461884, - -0.019220400601625443, - 0.009019197896122932, - 0.013477406464517117, - -0.004699104931205511, - 0.0019143312238156796, - -0.005665906704962254, - -0.03337874263525009, - 0.01973431371152401, - -0.02334456332027912, - -0.031965479254722595, - 0.026415202766656876, - 0.0033147481735795736, - 0.01631678268313408, - -0.019965576007962227, - -0.0016220423858612776, - 0.03327595815062523, - 0.004837219603359699, - -0.024231065064668655, - -0.015802869573235512, - 0.0003378585970494896, - -0.0048757633194327354, - -0.0073297047056257725, - 0.008222631178796291, - 0.02056942507624626, - -0.004747284576296806, - 0.01561015099287033, - -0.020299620926380157, - 0.007753684185445309, - 0.012590903788805008, - -0.039314452558755875, - 0.011331813409924507, - -0.002926100278273225, - -0.03630805388092995, - -0.059151552617549896, - 0.008415348827838898, - 0.012944219633936882, - 0.026338115334510803, - 0.024308152496814728, - 0.021995536983013153, - -0.009674439206719398, - 0.004901458974927664, - -0.007143410854041576, - 0.013824298046529293, - -0.025695722550153732, - -0.010670148767530918, - -0.001100901048630476, - -0.020762143656611443, - 0.03173421695828438, - 0.0036070370115339756, - -0.0114217484369874, - -0.022804953157901764, - -0.014787888154387474, - 0.000880078470800072, - -0.0007355400593951344, - 0.0213017538189888, - -0.013901385478675365, - -0.016805002465844154, - 0.003109182231128216, - 0.013798602856695652, - -0.025490155443549156, - -0.004271913785487413, - 0.019079074263572693, - -0.012751501984894276, - 0.0008567917393520474, - -0.004686257336288691, - 0.0016878877067938447, - -0.03492048755288124, - -0.013657276518642902, - 0.005415373481810093, - 0.005351134110242128, - -0.013952776789665222, - 0.001343404408544302, - -0.029164643958210945, - -0.0006468095234595239, - -0.00033183617051690817, - 0.0253616776317358, - -0.018308201804757118, - 0.012025597505271435, - -0.041472893208265305, - -0.02317754179239273, - 0.011441020295023918, - -0.002062081592157483, - 0.0007668567122891545, - -0.017807135358452797, - -0.015417433343827724, - 0.010638028383255005, - -0.003440014785155654, - 0.01880926825106144, - 0.012372490018606186, - -0.001172367250546813, - -0.023049062117934227, - -0.013008459471166134, - 0.0008294900180771947, - -0.009526688605546951, - -0.003170209703966975, - -0.019541596993803978, - 0.048230867832899094, - 0.014993453398346901, - -0.007400367874652147, - -0.026723550632596016, - -0.02011975087225437, - 0.004532082937657833, - -0.0062408484518527985, - -0.00887144822627306, - -0.009969940409064293, - 0.009096285328269005, - 0.00850528385490179, - -0.03898040950298309, - -0.0006488169892691076, - -0.02191845141351223, - -0.01228897925466299, - -0.012044869363307953, - -0.01819257065653801, - -0.03181130439043045, - -0.027597205713391304, - 0.005820081103593111, - -0.005698026157915592, - 0.027828466147184372, - 0.004471055697649717, - 0.010612333193421364, - -0.0053382860496640205, - 0.007169106509536505, - -0.0024057619739323854, - 0.013400319032371044, - 0.005945347715169191, - 0.0005054830107837915, - -0.008357533253729343, - -0.016727915033698082, - -0.004381120670586824, - 0.006157337222248316, - -0.019104769453406334, - -0.003941081464290619, - -0.0038704180624336004, - -0.03759283944964409, - -0.018963443115353584, - -0.035999707877635956, - 0.02317754179239273, - 0.010862866416573524, - -0.022021234035491943, - 0.0021327449940145016, - -0.005919652059674263, - -0.0010495096212252975, - 0.003847934305667877, - 0.008858599700033665, - -0.0014469902962446213, - -0.0025278166867792606, - 0.007907858118414879, - -0.012372490018606186, - 0.0011988660553470254, - -0.0027976217679679394, - -0.014042711816728115, - -0.01310481783002615, - 0.021083340048789978, - 0.02996121160686016, - 0.02099340409040451, - 0.006597376428544521, - -0.010952801443636417, - -0.024680741131305695, - 0.005707662086933851, - -0.03800397366285324, - 0.0024362755939364433, - -0.003652004525065422, - 0.010445310734212399, - -0.013695819303393364, - 0.005778325255960226, - 0.022380974143743515, - -0.009995635598897934, - -0.015314649790525436, - 0.025657178834080696, - -0.0074067916721105576, - -0.026248179376125336, - -0.0029999755788594484, - 0.04011102020740509, - 0.017755743116140366, - 0.03898040950298309, - -0.030449429526925087, - -0.03556288033723831, - 0.005495672579854727, - -0.028188206255435944, - -0.009867156855762005, - -0.009841461665928364, - 0.010631605051457882, - 0.003976413048803806, - -0.008903567679226398, - -0.018231114372611046, - 0.023640064522624016, - 0.015969891101121902, - 0.0006415900425054133, - -0.018924899399280548, - 0.0075481184758245945, - 0.003629520768299699, - 0.012610175646841526, - 0.002404155908152461, - -0.0067258551716804504, - -0.018128331750631332, - 0.03528022766113281, - 0.017871374264359474, - 0.01964437961578369, - 0.0024956970009952784, - 0.01670221984386444, - -0.009873581118881702, - -0.023781390860676765, - 0.00253263465128839, - 0.014106951653957367, - -0.023370258510112762, - -0.024680741131305695, - -0.02419252134859562, - 0.013426014222204685, - 0.01810263656079769, - -0.007907858118414879, - 0.01897628977894783, - 0.022188255563378334, - -0.001819578348658979, - 0.0012847860343754292, - 0.030654996633529663, - 0.006886453367769718, - 0.03574274852871895, - -0.024089738726615906, - 0.022213950753211975, - 0.03707892820239067, - 0.004718376789242029, - -0.0017505210125818849, - -0.025348829105496407, - -0.012244011275470257, - 0.0006632708245888352, - 0.01180076040327549, - 0.03296761214733124, - 0.020428098738193512, - -0.010715115815401077, - 0.0020235381089150906, - 0.013021307066082954, - 0.021815666928887367, - -0.02424391359090805, - 0.015199019573628902, - 0.022265342995524406, - 0.005816868972033262, - -0.0038768420927226543, - -0.012719382531940937, - -0.013027731329202652, - -0.04594394937157631, - 0.02222679927945137, - -0.005412161350250244, - -0.04805099964141846, - -0.03083486668765545, - 0.02559293806552887, - -0.026954812929034233, - 0.01959298737347126, - 0.00273659429512918, - -0.0035845532547682524, - 0.00979649368673563, - 0.041858330368995667, - -0.02094201371073723, - -0.004830795805901289, - -0.014903518371284008, - 0.004901458974927664, - -0.006552408915013075, - 0.02597837522625923, - -0.023228932172060013, - 0.014248277992010117, - 0.011588770896196365, - -0.005781537387520075, - -0.018796419724822044, - -0.021481623873114586, - 0.011351085267961025, - -0.01217977236956358, - 0.02687772549688816, - -0.01774289645254612, - -0.024282457306981087, - -0.025220351293683052, - -0.02001696638762951, - -0.02777707576751709, - 0.0032986882142722607, - 0.024231065064668655, - 0.019682923331856728, - 0.08669736236333847, - 0.01449238695204258, - -0.009944244287908077, - -0.006841485854238272, - -0.005412161350250244, - -0.005190535914152861, - -0.0049400026910007, - -0.005961407441645861, - -0.0015160476323217154, - -0.031348779797554016, - 0.010580213740468025, - -0.011261150240898132, - 0.00802991259843111, - -0.04476194828748703, - -0.015301802195608616, - -0.0049946061335504055, - -0.011351085267961025, - 0.006924997083842754, - -0.006189457140862942, - 0.027057595551013947, - 0.03299330547451973, - -0.0022034081630408764, - 0.04278337582945824, - 0.03805536404252052, - -0.0271860733628273, - -0.006513865664601326, - 0.004654137417674065, - -0.015520215965807438, - 0.010708692483603954, - -0.012648719362914562, - -0.00545070506632328, - -0.010997768491506577, - -0.04530155658721924, - -0.021764276549220085, - 0.026389505714178085, - -0.013772906735539436, - 0.001235000672750175, - -0.007304009050130844, - 0.009963516145944595, - 0.009295427240431309, - -0.006263331975787878, - 0.02248375676572323, - -0.011897118762135506, - -0.024449478834867477, - -0.0031140001956373453, - -0.024680741131305695, - -0.011961358599364758, - -0.018924899399280548, - -0.04697177931666374 - ], - "sparse": "SparseEmbedding(values=array([1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722,\n 1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722]), indices=array([2077811411, 264741300, 108945121, 1648569344, 1894123915,\n 2115907048, 2103309648, 1109731834, 37224978, 408270109]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 21, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 11 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000022.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000022.json deleted file mode 100644 index 4f6b218e12515a6b90bc12a9c3a8a80b9d6c3b7b..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000022.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000022", - "content": "Abbildung 4: Schematische Darstellung Evapotranspiration (eigene Darstellung nach", - "embedding": { - "dense": [ - -0.004419591743499041, - -0.002251177793368697, - -0.002684860723093152, - -0.01959848962724209, - 0.008163830265402794, - 0.02629905380308628, - -0.03427087143063545, - -0.00758117251098156, - 0.006793260108679533, - -0.014089724980294704, - 0.01036203932017088, - 0.0080645140260458, - -0.010752684436738491, - 0.024114087224006653, - -0.0028669412713497877, - 0.0211478304117918, - 0.004095157142728567, - 0.0037144434172660112, - 0.00957412738353014, - -0.01684410683810711, - 0.015321251936256886, - 0.018353721126914024, - 0.008097618818283081, - -0.0019631595350801945, - -0.00455532455816865, - 0.003479394130408764, - 0.013368023559451103, - -0.053631000220775604, - -0.009435083717107773, - 0.011580323800444603, - 0.012540385127067566, - 0.001789355301298201, - -0.014831289649009705, - -0.014089724980294704, - -0.005972242448478937, - -0.026616867631673813, - -0.019187981262803078, - -0.01355341449379921, - 0.026285812258720398, - -0.007435508072376251, - -0.006071559153497219, - 0.00277093518525362, - 0.02633878029882908, - -0.009560884907841682, - 0.0021038581617176533, - 0.013003862462937832, - 0.0037376172840595245, - 3.075195854762569e-05, - -0.0031632359605282545, - 0.04356691241264343, - 0.026285812258720398, - 0.0053763422183692455, - -0.007395781576633453, - -0.005018802359700203, - -0.0006542485789395869, - 0.022286660969257355, - -0.007044862490147352, - 0.013407750055193901, - 0.009686686098575592, - -0.01863180659711361, - -0.008971605449914932, - -0.004320275038480759, - -0.019545521587133408, - 0.010421629063785076, - -0.03691931813955307, - -0.012388098984956741, - -0.018711261451244354, - -0.0023107677698135376, - 0.0011992488289251924, - -0.01250727940350771, - 0.017744578421115875, - 0.01843317411839962, - -0.00924307107925415, - -0.020181147381663322, - 0.029185859486460686, - -0.019956029951572418, - -0.012480794452130795, - 0.002618649508804083, - -0.016115784645080566, - 0.01189813669770956, - 0.030880862846970558, - -0.019585248082876205, - -0.03159594163298607, - 0.03572751581668854, - 0.009355630725622177, - 0.01853911206126213, - -0.008077755570411682, - 0.029291797429323196, - -0.006770086474716663, - -0.0033535929396748543, - 0.027146557345986366, - 0.016817623749375343, - 0.005939136724919081, - 0.01427511591464281, - -0.0038435552269220352, - -0.014023513533174992, - -0.0038038284983485937, - 0.06234438344836235, - 0.016685200855135918, - -0.06594626605510712, - -0.01757242903113365, - 0.012566869147121906, - -0.01087186485528946, - -0.006213913206011057, - -0.02817944996058941, - -0.011202920228242874, - 0.03390008956193924, - 0.02492186240851879, - 0.008375706151127815, - -0.031993210315704346, - -0.015850940719246864, - 0.027252493426203728, - -0.03162242844700813, - -0.022286660969257355, - -0.0029943976551294327, - -0.002698102965950966, - -0.0047539579682052135, - -0.0035886424593627453, - -0.03207266330718994, - 0.0017628709319978952, - 0.00442952336743474, - 0.014579687267541885, - 0.011957727372646332, - -0.012633080594241619, - 0.009011332876980305, - 0.030774924904108047, - 0.007217011414468288, - -0.005959000438451767, - -0.008309494704008102, - -0.02746436931192875, - 0.002477950882166624, - 0.018618565052747726, - 0.024723229929804802, - -0.013877849094569683, - -0.020843258127570152, - 0.01884368248283863, - -0.03707822412252426, - 0.017334070056676865, - -0.03043062798678875, - -0.026007724925875664, - 0.0021468952763825655, - 0.007190526928752661, - -0.02159806527197361, - 0.002393531845882535, - 0.012831714004278183, - 0.008547854609787464, - 0.010203132405877113, - 0.030510080978274345, - -0.014023513533174992, - -0.001916811685077846, - -0.009388735517859459, - -0.002511056372895837, - 0.01893637888133526, - -0.017241373658180237, - 0.007369297090917826, - -0.005730571690946817, - -0.02855023182928562, - 0.0007746700430288911, - -0.014129451476037502, - 0.013705700635910034, - -0.009911803528666496, - -0.02767624519765377, - -0.006958788260817528, - -0.017810789868235588, - 0.01934688724577427, - 0.010712957940995693, - 0.005584907252341509, - 0.009527779184281826, - 0.014738594181835651, - -0.022789865732192993, - -0.007501719053834677, - 0.002236280357465148, - -0.023107677698135376, - 0.023266585543751717, - -0.02154509723186493, - 0.019823607057332993, - -0.004350070375949144, - -0.0019697805400937796, - -0.007865880616009235, - -0.0351448580622673, - -0.008150587789714336, - 0.009779381565749645, - 0.018459659069776535, - 0.0026236153207719326, - 0.0024812615010887384, - -0.006770086474716663, - 0.02424651011824608, - 0.006283434573560953, - -0.0054557956755161285, - -0.018406689167022705, - -0.005233988631516695, - 0.02354467287659645, - -0.013983787037432194, - 0.003423114540055394, - -0.6275753974914551, - -0.036733925342559814, - -0.018870167434215546, - -0.014937227591872215, - 0.006389372516423464, - 0.03702525421977043, - -0.0011446246644482017, - -0.012083528563380241, - -0.018088875338435173, - 0.012937651947140694, - 0.00360519508831203, - 0.000902126426808536, - -0.010507703758776188, - -0.003952803555876017, - 0.021637791767716408, - -0.02710682898759842, - -0.01301710493862629, - -0.00012973240518476814, - 0.009362251497805119, - 0.0017711472464725375, - -0.002948049921542406, - 0.016460083425045013, - -0.005823267623782158, - -0.021876152604818344, - 0.02129349485039711, - -0.011573703028261662, - 0.026325538754463196, - -0.03432384133338928, - -0.008415432646870613, - 0.0070382412523031235, - -0.0265506561845541, - 0.04820169135928154, - -0.00758117251098156, - 0.014539960771799088, - 0.04136870428919792, - 0.010328933596611023, - -0.021995332092046738, - 9.119546302827075e-05, - 0.004333517514169216, - 0.0298214852809906, - -0.029238827526569366, - -0.007647383492439985, - 0.02481592446565628, - -0.005498833023011684, - -0.015281525440514088, - 0.011891515925526619, - -0.0005843130638822913, - -0.04539433866739273, - -0.0178770013153553, - -0.008375706151127815, - 0.017757819965481758, - 0.005978863686323166, - 0.006362888030707836, - 0.02204830013215542, - 0.010348796844482422, - 0.03329094871878624, - -0.011686261743307114, - -0.014155936427414417, - 0.013328297063708305, - 0.004244132433086634, - -0.002704723970964551, - -0.011792199686169624, - 0.021280251443386078, - 0.006197360344231129, - -0.005204193294048309, - 0.017082467675209045, - -0.031834304332733154, - -0.0009310937603004277, - 0.025001317262649536, - -0.043884724378585815, - -0.01930716075003147, - 0.02839132584631443, - 0.008210178464651108, - -0.013420992530882359, - 0.007779805921018124, - 0.02104189246892929, - -0.003923008684068918, - -0.008263146504759789, - 0.020538687705993652, - -0.004124952480196953, - -0.022035058587789536, - -0.027080345898866653, - 0.0032608972396701574, - -0.003505878383293748, - 0.04142167419195175, - -0.013798396103084087, - -0.022485293447971344, - -0.0012447689659893513, - -0.004571877419948578, - 0.0015120962634682655, - 0.013050210662186146, - 0.016115784645080566, - -0.01499019656330347, - 0.007806290406733751, - -0.02558397501707077, - 0.021280251443386078, - -0.03175485134124756, - 0.009845593012869358, - 0.008461779914796352, - -0.03151648864150047, - 7.759114851069171e-06, - -0.013116421177983284, - 0.024895379319787025, - -0.0037508595269173384, - 0.021200798451900482, - 0.0370517373085022, - -0.04295777156949043, - 0.005995416548103094, - 0.04452035203576088, - -0.027252493426203728, - 0.005233988631516695, - -0.015109376050531864, - -0.011428038589656353, - 0.008627308532595634, - -0.037501975893974304, - -0.02574288100004196, - 0.021836426109075546, - -0.01751946099102497, - 0.0005429311422631145, - -0.018155086785554886, - 0.011924621649086475, - -0.007673867978155613, - 0.0027146555949002504, - -0.008825941011309624, - -0.012606595642864704, - 0.02399490773677826, - -0.0070382412523031235, - -0.03596587851643562, - -0.011096982285380363, - 0.00707134697586298, - 0.016301175579428673, - -0.0004194060165900737, - 0.024431901052594185, - -0.003876660717651248, - 0.04232214391231537, - -0.023160647600889206, - 0.014116209000349045, - -0.0006960443570278585, - -0.018353721126914024, - -0.023465218022465706, - -0.01324884407222271, - 0.014010271988809109, - 0.006892576813697815, - -0.014619413763284683, - 0.000384231359930709, - -0.017373796552419662, - 0.013050210662186146, - 0.0013862951891496778, - -0.029318280518054962, - 0.02206154353916645, - -0.011242646723985672, - -0.0030159163288772106, - 0.008766351267695427, - 0.009587368927896023, - 0.03228453919291496, - -0.019823607057332993, - 0.009964772500097752, - -0.02012817934155464, - -0.007395781576633453, - -0.013136285357177258, - 0.005992105696350336, - 0.006866092327982187, - -0.027093587443232536, - -0.004992317873984575, - -0.0199692714959383, - -0.0034628412686288357, - 0.013997029513120651, - 0.00946818944066763, - -0.025862060487270355, - -0.03366173058748245, - 0.012758881784975529, - -0.026325538754463196, - -0.005174398422241211, - 0.006607869174331427, - -0.0322580561041832, - 0.009143754839897156, - 0.010057467967271805, - -0.019492551684379578, - 0.0033569035585969687, - -0.009461567737162113, - 0.02027384378015995, - -0.026272570714354515, - -0.00478706369176507, - -0.010289207100868225, - 0.026841985061764717, - 0.026510929688811302, - 0.010706337168812752, - 0.011626671068370342, - -0.010845380835235119, - 0.006819744594395161, - 0.01898934692144394, - 0.01771809346973896, - 0.01583769917488098, - 0.015029923059046268, - -0.007256737910211086, - -0.011904758401215076, - -0.0007734285900369287, - 0.008388947695493698, - -0.01930716075003147, - 0.014725351706147194, - 0.03284071385860443, - 0.005786851514130831, - 0.014010271988809109, - -0.010011120699346066, - 0.029477188363671303, - 0.0031417172867804766, - 0.004144815728068352, - 0.004902932792901993, - 0.0351448580622673, - 0.030695471912622452, - 0.004002461675554514, - -0.029318280518054962, - -0.039541278034448624, - -0.020234115421772003, - 0.011070498265326023, - 0.01424863189458847, - 0.018923135474324226, - -0.02282959222793579, - -0.0007005963707342744, - 0.0028801835142076015, - 0.017704851925373077, - -0.0018737745704129338, - 0.02236611396074295, - 0.0006811468047089875, - -0.0010494461748749018, - -0.0010270999046042562, - -0.014354569837450981, - -0.0066509065218269825, - -0.009872077032923698, - -0.010355418547987938, - -0.026365265250205994, - -0.0023256654385477304, - 0.00027125864289700985, - 0.016420356929302216, - 0.010587156750261784, - 0.005723950918763876, - 0.007925470359623432, - -0.00018052873201668262, - 0.0387997142970562, - -0.004710920620709658, - 0.012831714004278183, - 0.022498536854982376, - 0.0060020373202860355, - -0.026590382680296898, - 0.0014417469501495361, - 0.015360978431999683, - 0.013460719026625156, - 0.0185258686542511, - -0.013877849094569683, - 0.005210814531892538, - -0.001575824455358088, - 0.0022544884122908115, - -0.015043164603412151, - -0.005283646751195192, - 0.014116209000349045, - -0.003542294492945075, - 0.0077400789596140385, - 0.013063453137874603, - 0.01812860369682312, - 0.02823241800069809, - -0.0023902212269604206, - 0.019638216122984886, - -0.007362675853073597, - 0.0015336149372160435, - 0.03718416020274162, - -0.005647807847708464, - -0.006604558788239956, - -0.03037765808403492, - -0.020459234714508057, - 0.006717117503285408, - 0.009527779184281826, - -0.015599338337779045, - 0.005674292333424091, - -0.0005499660619534552, - 0.0020972369238734245, - -0.0015468571800738573, - -0.006263571325689554, - -0.014434022828936577, - 0.007011756766587496, - 0.004982386250048876, - -0.051962483674287796, - -0.011666398495435715, - -0.001126416609622538, - 0.0298214852809906, - -0.010858622379601002, - 0.015003438107669353, - 9.233346645487472e-05, - -0.0007357710273936391, - -0.010487840510904789, - 0.0012787021696567535, - -0.006773396860808134, - -0.01161342952400446, - 0.006084801163524389, - 0.0066475956700742245, - -0.024061119183897972, - -0.030907347798347473, - 0.02226017601788044, - -0.03371470049023628, - 0.009607232175767422, - 0.005306820850819349, - 0.016552777960896492, - 0.007905607111752033, - -0.01807563379406929, - -0.01832723617553711, - 0.04671856015920639, - 0.020300326868891716, - 0.006521794479340315, - -0.017320826649665833, - -0.01607605814933777, - -0.020710837095975876, - -0.011540597304701805, - 0.0012298714136704803, - -0.031993210315704346, - 0.003985908813774586, - -0.011010908521711826, - -0.0015485123731195927, - -0.014685625210404396, - 0.0012646322138607502, - 0.04976427182555199, - -0.0031053011771291494, - -0.008693519048392773, - -0.004614914767444134, - -0.01554636936634779, - 0.001804252853617072, - 0.033423371613025665, - 0.02696116454899311, - -0.010646747425198555, - 0.008905394934117794, - -0.006872713565826416, - -0.00478706369176507, - -0.03201969340443611, - -0.0315694585442543, - 0.022657442837953568, - -0.002305801957845688, - 0.0005586562911048532, - 0.0025325750466436148, - 0.02236611396074295, - -0.008892152458429337, - 0.021200798451900482, - -0.0005863821716047823, - -0.009805865585803986, - 0.00189529312774539, - 0.013520309701561928, - -0.024140572175383568, - -0.012202708050608635, - -0.019187981262803078, - -0.004654641263186932, - 0.02849726378917694, - -0.0026749290991574526, - -0.013308433815836906, - 0.01757242903113365, - 0.016870591789484024, - 0.014328084886074066, - 0.0026037520729005337, - 0.002499469555914402, - 0.013546793721616268, - -0.0005694155697710812, - 0.032443445175886154, - 0.001111519057303667, - -0.002393531845882535, - 0.038111116737127304, - 0.014579687267541885, - 0.03307907283306122, - 0.0030473663937300444, - 0.010865244083106518, - 0.028073512017726898, - 0.008991469629108906, - -0.0046778153628110886, - 0.0018903273157775402, - -0.0009037816780619323, - -0.01261321734637022, - 0.012679427862167358, - 0.00744212931022048, - 0.0022246933076530695, - -0.00015404428995680064, - -0.005247230641543865, - -0.012268919497728348, - 0.007852638140320778, - -0.013182632625102997, - 0.004942659754306078, - 0.0037938968744128942, - -0.00455532455816865, - -0.00042830314487218857, - 0.031066253781318665, - -0.023571155965328217, - -0.013089937157928944, - 0.017426764592528343, - -0.014235389418900013, - -0.008799456991255283, - 0.03665447235107422, - -0.014102967455983162, - -0.001051101484335959, - -0.009236450307071209, - -0.02855023182928562, - -0.011136709712445736, - 0.0035257418639957905, - -0.037713851779699326, - 0.003942871931940317, - 0.02751733921468258, - 0.0009459913126192987, - 0.020101694390177727, - -0.016023090109229088, - -0.025345614179968834, - 0.00017287308583036065, - -0.02338576503098011, - -0.025094011798501015, - -0.00895836390554905, - -0.016605747863650322, - -0.01709570921957493, - 0.0021204110234975815, - -0.010037604719400406, - -0.016023090109229088, - -0.005843130871653557, - 0.004263995680958033, - 0.012560248374938965, - -0.019903060048818588, - 0.03472110629081726, - 0.01526828296482563, - -0.00847502239048481, - -0.0019118458731099963, - 0.015797970816493034, - 0.007706973701715469, - 0.016168754547834396, - -0.01442078035324812, - 0.02696116454899311, - 0.0020906159188598394, - 0.002547472482547164, - -0.015149102546274662, - 0.025928271934390068, - 0.00569415558129549, - -0.007124315947294235, - 0.024895379319787025, - 0.0013142905663698912, - 0.01513586100190878, - 0.03707822412252426, - -0.009527779184281826, - 0.009560884907841682, - -0.01477832067757845, - 0.007846017368137836, - 0.020618140697479248, - -0.034535717219114304, - -0.03135758265852928, - 0.016049573197960854, - 0.019015831872820854, - 0.01798293925821781, - -0.024034634232521057, - 0.02215423807501793, - 0.003111922414973378, - -0.005432622041553259, - 0.031887270510196686, - 0.011679640039801598, - 3.7890345993218943e-05, - -0.03350282460451126, - 0.00832273717969656, - -0.007024999242275953, - 0.017267858609557152, - -0.01023623812943697, - -0.017479734495282173, - -0.04923458397388458, - -0.01008395291864872, - 0.010971181094646454, - 0.005429311189800501, - -0.010189889930188656, - 0.005306820850819349, - -0.005998726934194565, - 0.011149951256811619, - -0.00019108114065602422, - 0.009660201147198677, - -0.014473749324679375, - -0.03432384133338928, - -0.012348372489213943, - 0.011428038589656353, - -0.006376130040735006, - 0.03241696208715439, - -0.0141691779717803, - -0.012110012583434582, - 0.017334070056676865, - 0.010818895883858204, - -0.009163618087768555, - -0.0483870804309845, - -0.02531912922859192, - -0.004585119429975748, - 0.007389160338789225, - 0.019823607057332993, - 0.00570408720523119, - 0.023359280079603195, - 0.002635202370584011, - 0.008653792552649975, - 0.014645898714661598, - 0.014023513533174992, - 0.014089724980294704, - -0.02256474830210209, - -0.02302822470664978, - 0.04354042932391167, - 0.0025888546369969845, - -0.009401977993547916, - 0.005505454260855913, - -0.020697593688964844, - 0.01868477649986744, - 0.010666610673069954, - -0.023862484842538834, - -0.017585672438144684, - 0.0030225373338907957, - -0.03543618693947792, - -0.010474598035216331, - 0.01148762833327055, - 0.011646535247564316, - 0.016023090109229088, - -0.002804040675982833, - 0.005210814531892538, - 0.04218972101807594, - -0.016023090109229088, - -0.002853699028491974, - -0.0004626501468010247, - 0.018658291548490524, - -0.026669835671782494, - 0.020194388926029205, - -0.01148762833327055, - 0.004118331242352724, - -0.013811638578772545, - 0.004565256182104349, - -0.011964348144829273, - -0.030457112938165665, - 0.010282586328685284, - -0.022604474797844887, - -0.017850516363978386, - -0.013116421177983284, - 0.008971605449914932, - -0.01021637488156557, - 0.0037144434172660112, - 0.021518612280488014, - -0.0014285048237070441, - -0.0017711472464725375, - -0.0005338271148502827, - -0.02746436931192875, - -0.007475234568119049, - -0.02823241800069809, - -0.02353142946958542, - 0.01827426813542843, - 0.036336660385131836, - 0.0016602437244728208, - 0.0357540026307106, - -0.030933832749724388, - 0.0033254532609134912, - 0.004373244009912014, - -0.008097618818283081, - 0.02741140127182007, - 0.006885955575853586, - 0.03175485134124756, - 0.04849302023649216, - -0.01934688724577427, - -0.016354145482182503, - -0.015559611842036247, - -0.027093587443232536, - -0.0098522137850523, - -0.007554688025265932, - 0.0108983488753438, - 0.012295403517782688, - -0.03850838541984558, - 0.015480157919228077, - 0.03329094871878624, - -0.00148064608220011, - -0.004446076229214668, - 0.048122238367795944, - 0.007177284918725491, - -0.006475446745753288, - 0.005978863686323166, - 0.0009790968615561724, - -0.027941089123487473, - 0.0244583860039711, - -0.009593990631401539, - -0.005985484458506107, - -0.014871016144752502, - -0.01583769917488098, - -0.010176648385822773, - 0.048678409308195114, - -0.02036653831601143, - 0.0034098722971975803, - -0.009031196124851704, - 0.006217223592102528, - -0.013745427131652832, - -0.019108528271317482, - -0.016009846702218056, - 0.010395145043730736, - -0.00418454222381115, - 0.025001317262649536, - 0.0045387716963887215, - -0.005757056176662445, - 0.017400281503796577, - 0.006892576813697815, - -0.014672382734715939, - -0.005051908083260059, - -0.019982514902949333, - 0.017281100153923035, - 0.0069323037751019, - -0.02282959222793579, - -0.011560460552573204, - 0.015321251936256886, - 0.017585672438144684, - -0.006846229080110788, - -0.0012638046173378825, - -0.017651882022619247, - -0.004350070375949144, - -0.005558422766625881, - 0.008455159142613411, - 0.0011586945038288832, - 0.006167565006762743, - -0.0199692714959383, - 0.0006045902264304459, - 0.0068065025843679905, - -0.007932091131806374, - -0.018168330192565918, - 0.0012464241590350866, - -0.051644667983055115, - 0.011818683706223965, - -0.007375917863100767, - -0.002257799031212926, - 0.031728364527225494, - 0.0015634099254384637, - -0.030165784060955048, - -0.018115360289812088, - 0.018499385565519333, - -0.01950579322874546, - 0.021465642377734184, - 0.03466814011335373, - -0.004664572887122631, - -0.019717669114470482, - 0.01771809346973896, - -0.010858622379601002, - -0.03927643224596977, - 0.04793684557080269, - -0.011302237398922443, - -0.027027375996112823, - -0.013718943111598492, - -0.017016256228089333, - -0.0020244047045707703, - 0.0010064089437946677, - -0.020154662430286407, - 0.02369033731520176, - -0.012897924520075321, - 0.0009203344816341996, - -0.033158525824546814, - -0.02016790583729744, - 0.02594151347875595, - 0.00896498467773199, - -0.0006674907635897398, - 0.04862544313073158, - 0.008541233837604523, - 0.03379415348172188, - 0.022962013259530067, - -0.015758244320750237, - -0.004201095085591078, - -0.027702730149030685, - -0.031834304332733154, - -0.012004074640572071, - 0.034853529185056686, - -0.027305463328957558, - -0.008276388980448246, - 0.010858622379601002, - -0.018115360289812088, - -0.010123679414391518, - -0.00021663449297193438, - 0.0027196214068681, - 0.018472900614142418, - -0.0056147025898098946, - 0.02660362608730793, - -0.004204405937343836, - -0.017479734495282173, - -0.01424863189458847, - -0.01685735024511814, - -0.00962047465145588, - 0.0013184287818148732, - -0.007951954379677773, - -0.0017016256460919976, - -0.0020823394879698753, - 0.0283383559435606, - 0.01653953641653061, - -0.04650668427348137, - -0.017228132113814354, - 0.01648656651377678, - -0.060119692236185074, - -0.013215738348662853, - -0.022140996530652046, - -0.0033900090493261814, - -0.012136497534811497, - 0.003239378798753023, - 0.0015493400860577822, - 0.008825941011309624, - 0.00047175417421385646, - 0.00569415558129549, - -0.017744578421115875, - -0.00844853837043047, - 0.006892576813697815, - -0.0004891345743089914, - -0.009560884907841682, - -0.005776919424533844, - -0.020816773176193237, - -5.664154014084488e-05, - 0.003734306897968054, - -0.03344985470175743, - -0.0034595306497067213, - -0.011606807820498943, - 0.004078604746609926, - 0.0009981325129047036, - -0.012434447184205055, - 0.04083901643753052, - -0.0024465005844831467, - -0.014328084886074066, - 0.007786427158862352, - -0.03593939170241356, - 0.020035482943058014, - 0.002102202968671918, - 0.006879334803670645, - -0.05476983264088631, - -0.002170069143176079, - 0.018724502995610237, - 0.0013523619854822755, - -0.014328084886074066, - 0.00405874103307724, - -0.011481006629765034, - -0.022140996530652046, - -0.009872077032923698, - 0.011646535247564316, - 0.015215313993394375, - -0.013546793721616268, - 0.01222919300198555, - 0.004482492338865995, - 0.020498961210250854, - 0.0056312549859285355, - -0.0073494333773851395, - -0.0370517373085022, - -0.017188405618071556, - -0.00875310879200697, - -0.011759093962609768, - 0.0070978314615786076, - -0.009143754839897156, - 0.025305887684226036, - -0.030192267149686813, - 0.004972454626113176, - -0.012527142651379108, - -0.01986333355307579, - -0.003840244607999921, - 0.03554212674498558, - 0.01265956461429596, - -0.03358227759599686, - 0.003658164059743285, - -0.0005470692995004356, - 0.01838020421564579, - -0.007124315947294235, - -0.012302025221288204, - -0.013301813043653965, - -0.03736955299973488, - -0.011044013313949108, - -0.022644201293587685, - 0.014155936427414417, - 0.0011040703393518925, - -0.01189813669770956, - -0.0043070330284535885, - -0.006819744594395161, - 0.04147464036941528, - 0.19227707386016846, - -0.013771911151707172, - 0.009713170118629932, - 0.031834304332733154, - -0.0031996520701795816, - -0.01607605814933777, - 0.006558210588991642, - 0.02077704668045044, - -0.004412970505654812, - -0.012209329754114151, - -0.015241798013448715, - -0.016261449083685875, - -0.0036383005790412426, - 0.014685625210404396, - 0.011050635017454624, - -0.03895862028002739, - -0.03416493535041809, - 0.005515385884791613, - 0.01859208010137081, - 0.020101694390177727, - 0.017029497772455215, - -0.02195560559630394, - -0.0008963329601101577, - -0.012838334776461124, - 0.03395305946469307, - -0.0033122110180556774, - -0.004495734814554453, - 0.026206359267234802, - 0.01853911206126213, - -0.004965833388268948, - -0.01618199609220028, - 0.00957412738353014, - -0.02195560559630394, - -0.01679113879799843, - -0.011911379173398018, - -0.005382963456213474, - 0.026775773614645004, - -0.0141691779717803, - 0.023703578859567642, - 0.025398582220077515, - 0.021200798451900482, - 0.0027808668091893196, - 0.002790798433125019, - -0.028815075755119324, - -0.016327660530805588, - 0.025795849040150642, - 0.007660625968128443, - -0.010024362243711948, - 0.010481218807399273, - -0.01975739561021328, - -0.033105555921792984, - -0.0060053481720387936, - 0.018406689167022705, - 0.029636094346642494, - -0.009792624041438103, - 0.009143754839897156, - 0.019121769815683365, - 0.01751946099102497, - 0.01614226959645748, - 0.009428462944924831, - -0.02522643469274044, - 0.023716820403933525, - -0.01171936746686697, - -0.005392895080149174, - -0.009627096354961395, - -0.011937864124774933, - -0.03747548907995224, - -0.028311872854828835, - 0.0013184287818148732, - -0.029583126306533813, - 0.007243495900183916, - -0.036945801228284836, - -0.019082043319940567, - 0.03395305946469307, - -0.0351448580622673, - -0.026894954964518547, - 0.004055430646985769, - 0.015202071517705917, - 0.004191163461655378, - 0.020048724487423897, - -0.0022627648431807756, - 0.03924994915723801, - -0.0131230428814888, - -0.0013962268130853772, - -0.0010328933130949736, - -0.026325538754463196, - 0.015559611842036247, - 0.013368023559451103, - -0.02138618938624859, - -0.0182212982326746, - 0.012143118306994438, - 0.008302873931825161, - 0.0031483385246247053, - 0.004356691148132086, - 0.018909893929958344, - 0.006283434573560953, - 0.01480480469763279, - -0.001946606789715588, - -0.011951105669140816, - 0.005538559518754482, - -0.016923559829592705, - 0.07187878340482712, - 0.03869377449154854, - -0.012083528563380241, - -0.01583769917488098, - -0.0002043233544100076, - -0.0073494333773851395, - 0.014116209000349045, - 0.007541446015238762, - -0.02456432394683361, - -0.0009046093327924609, - 0.000671215180773288, - 0.008759730495512486, - 0.003088748548179865, - 0.007044862490147352, - 0.0028950809501111507, - -0.014645898714661598, - 0.0027560375165194273, - 0.02522643469274044, - 0.004240822046995163, - -0.03609829768538475, - -0.0065615214407444, - 0.00014194007962942123, - 0.005452485289424658, - 0.006601247936487198, - -0.023928696289658546, - -0.023809516802430153, - 0.004204405937343836, - 0.007461992558091879, - -0.014725351706147194, - 0.02333279699087143, - -0.0011644879123196006, - -0.019161496311426163, - -0.004499045200645924, - -0.013447477482259274, - 0.005757056176662445, - -0.023213615640997887, - -0.007958576083183289, - -0.012811850756406784, - -0.0009161962661892176, - 0.00353567348793149, - 0.0071971481665968895, - 0.0038435552269220352, - 0.004201095085591078, - -0.0011338653275743127, - -0.004922796506434679, - -0.002458087634295225, - 0.001163660315796733, - -0.031013285741209984, - -0.0316489115357399, - -0.02241908386349678, - -0.013745427131652832, - 0.0017198337009176612, - -0.01709570921957493, - 0.03043062798678875, - 0.004085225518792868, - -0.011308858171105385, - -0.018247783184051514, - 0.024445142596960068, - 0.009633717127144337, - -0.01959848962724209, - -0.0035124996211379766, - 0.012911166995763779, - -0.014831289649009705, - -0.0016023089410737157, - 0.022962013259530067, - -0.16822919249534607, - 0.0010204787831753492, - 0.021333221346139908, - -0.029530156403779984, - 0.0015485123731195927, - 0.000369126966688782, - 0.02027384378015995, - 0.02113458700478077, - -0.010011120699346066, - 0.012851577252149582, - 0.02286931872367859, - 0.0060219005681574345, - -0.011990833096206188, - -0.0003811277274508029, - -0.0013846398796886206, - 0.019519036635756493, - -0.00021891049982514232, - 0.036680955439805984, - 0.012977378442883492, - 0.013904334045946598, - 0.04078604653477669, - -0.0013399474555626512, - 0.02047247625887394, - -0.0010436526499688625, - 6.134873547125608e-05, - 0.03236399218440056, - 0.00341980392113328, - 0.036733925342559814, - -0.00493934890255332, - 0.00924307107925415, - 0.0016047918470576406, - -0.004866516683250666, - 0.04248104989528656, - -0.00032567590824328363, - 0.008521370589733124, - -0.008309494704008102, - -0.004548703320324421, - 0.0021319978404790163, - -0.014288358390331268, - 0.026828743517398834, - -0.008898773230612278, - 0.007468613795936108, - 0.009819108061492443, - 0.003287381725385785, - -0.010256101377308369, - 0.011951105669140816, - 0.011116845533251762, - -0.002307457383722067, - -0.0028454225976020098, - -0.022074785083532333, - -0.0001569410233059898, - -0.014579687267541885, - -0.014712109230458736, - 0.02410084567964077, - 0.008263146504759789, - 0.016155511140823364, - 0.003883281722664833, - 0.019068799912929535, - 0.0031930310651659966, - -0.010507703758776188, - -0.009190102107822895, - -0.007905607111752033, - 0.0001639759575482458, - -0.009905182756483555, - -0.011931242421269417, - -0.0358334556221962, - 0.012547005899250507, - 0.003939561080187559, - -0.014023513533174992, - 0.02216748148202896, - 0.007700352463871241, - -0.04711582884192467, - -0.007846017368137836, - -0.022962013259530067, - -0.0006807330064475536, - -0.0035588473547250032, - -0.01352693047374487, - 0.0211875569075346, - 0.02712007239460945, - -0.026272570714354515, - -0.01786375790834427, - 0.05678265169262886, - -0.014871016144752502, - -0.015665549784898758, - 0.0009161962661892176, - 0.0031582701485604048, - -0.032443445175886154, - 0.0030986801721155643, - 0.009666822850704193, - 0.006528415717184544, - 0.014314842410385609, - -0.011990833096206188, - -0.02465701848268509, - -0.017082467675209045, - 0.009964772500097752, - -0.008011545054614544, - 0.012116633355617523, - 0.006455583497881889, - 0.02674929052591324, - -0.008256525732576847, - 0.01782403141260147, - -0.019942786544561386, - -0.026894954964518547, - -0.007402402348816395, - -0.004121641628444195, - -0.020485717803239822, - -0.0027014133520424366, - 0.0046778153628110886, - 0.03344985470175743, - -0.008680276572704315, - -0.017069224268198013, - -0.019783880561590195, - 0.010441492311656475, - 0.00043119987822137773, - -0.0032575868535786867, - 0.012030559591948986, - -0.0042871697805821896, - -0.028417810797691345, - 0.014208905398845673, - -0.022286660969257355, - 0.058636561036109924, - -0.009587368927896023, - -0.006644285283982754, - 0.0032575868535786867, - 0.028656169772148132, - -0.024670260027050972, - -0.06928330659866333, - -0.016817623749375343, - 0.027888121083378792, - 0.029185859486460686, - 0.01950579322874546, - 0.009938288480043411, - -0.0016867280937731266, - 0.031278129667043686, - 0.001366431824862957, - 0.01920122280716896, - -0.010348796844482422, - -0.010534187778830528, - -0.0054789697751402855, - -0.02497483231127262, - 0.021412674337625504, - 0.011401553638279438, - -0.012295403517782688, - -0.02079029008746147, - -0.026431476697325706, - 0.020975681021809578, - 0.014063240960240364, - -0.00949467346072197, - -0.012619838118553162, - -0.013838122598826885, - 0.005618012975901365, - -0.0009219897328875959, - -0.04793684557080269, - 0.02894749864935875, - 0.032390475273132324, - -0.004657951649278402, - 0.02333279699087143, - -0.013129663653671741, - 0.0193998571485281, - -0.027649760246276855, - 0.00019025350047741085, - 0.01184516865760088, - 0.008236662484705448, - -0.011924621649086475, - 0.03170188143849373, - -0.01685735024511814, - 0.004492423962801695, - -0.00759441452100873, - 0.04120979830622673, - -0.0179167278110981, - -0.01212325505912304, - -0.01898934692144394, - -0.005502143409103155, - -0.005260473117232323, - 0.0042077163234353065, - 0.0033055897802114487, - -0.026987649500370026, - -0.021161071956157684, - -0.006210602354258299, - 0.00873324554413557, - 0.013361402787268162, - 0.006230465602129698, - 0.006756843999028206, - 0.007005135994404554, - -0.012964135967195034, - 0.010825516656041145, - -0.007554688025265932, - -0.011732609011232853, - -0.01981036551296711, - 0.033926576375961304, - 0.00048334113671444356, - -0.016115784645080566, - -0.028152965009212494, - 0.005204193294048309, - 0.011434659361839294, - -0.0009832350770011544, - 0.009203344583511353, - -0.005849752109497786, - 0.006164254620671272, - 0.02395518124103546, - -0.030748441815376282, - -0.007706973701715469, - -0.028099996969103813, - 0.0016287934267893434, - 0.007786427158862352, - -0.04158058017492294, - -0.014539960771799088, - -0.02705386094748974, - 0.013745427131652832, - -0.01125588919967413, - 0.05900734290480614, - 0.0063132294453680515, - 0.002482916694134474, - -0.0164335984736681, - 0.017744578421115875, - -0.03861432150006294, - -0.0007130109006538987, - 0.006210602354258299, - 0.010732821188867092, - -0.020816773176193237, - 0.005717329680919647, - 0.001703280839137733, - -0.011375069618225098, - -0.00017390762513969094, - 0.02067110873758793, - -0.023319553583860397, - -0.004552014172077179, - -0.023915454745292664, - -0.05985484644770622, - 0.024524595588445663, - -0.008640550076961517, - 0.010600399225950241, - 0.021862909197807312, - -0.0012911166995763779, - 0.01889665238559246, - 0.015043164603412151, - 0.0032989687751978636, - 0.004194473847746849, - -0.029953908175230026, - -0.007879122160375118, - -0.01679113879799843, - -0.01782403141260147, - -0.028470778837800026, - -0.0038005178794264793, - 0.0039958409033715725, - 0.01113008800894022, - 0.018870167434215546, - 0.030774924904108047, - -0.01638062857091427, - 0.02113458700478077, - 0.008488264866173267, - 0.02359764091670513, - -0.0199692714959383, - 0.01889665238559246, - 0.013050210662186146, - -0.0040521202608942986, - -0.02415381371974945, - -0.009004711173474789, - -0.004042188636958599, - -0.010792411863803864, - -0.0029215654358267784, - 0.017440007999539375, - 0.0031499937176704407, - -0.017347311601042747, - -0.028470778837800026, - 0.032046180218458176, - 0.026722805574536324, - 0.04081252962350845, - -0.03795221075415611, - -0.0004862378700636327, - 0.03848189860582352, - -0.025769365951418877, - -0.027226010337471962, - -0.014434022828936577, - 0.010600399225950241, - -0.012712533585727215, - 0.009302661754190922, - 0.0013101523509249091, - 0.04142167419195175, - 0.021558338776230812, - 0.0031053011771291494, - -0.006978651508688927, - 0.01868477649986744, - -0.015811214223504066, - 0.00731632811948657, - -0.01975739561021328, - 0.011401553638279438, - -0.03154297545552254, - 0.03665447235107422, - -0.00085495098028332, - 0.009223207831382751, - 0.0010519290808588266, - -0.010428250767290592, - -0.015665549784898758, - -0.03432384133338928, - 0.0071176947094500065, - 0.013109800405800343, - -0.03207266330718994, - -0.012037180364131927, - -0.01271915528923273, - 0.004581809043884277, - 0.017373796552419662, - 0.0022975255269557238, - -0.0033817326184362173, - -0.019135011360049248, - 0.01353355124592781, - -0.013613005168735981, - 0.023610882461071014, - -0.005058528855443001, - 0.024776197969913483, - -0.022273419424891472, - 0.009805865585803986, - 0.03599236160516739, - 0.008468401618301868, - -0.011679640039801598, - -0.0010138576617464423, - -0.0012505623744800687, - 0.009130512364208698, - -0.002577267587184906, - 0.016724927350878716, - 0.017704851925373077, - -0.005131361074745655, - 0.015705276280641556, - 0.01888340897858143, - 0.020088450983166695, - -0.012076906859874725, - 0.014579687267541885, - 0.031781334429979324, - 0.010838759131729603, - 0.009362251497805119, - 0.007700352463871241, - -0.0070183780044317245, - -0.03845541551709175, - 0.02027384378015995, - -0.009653580375015736, - -0.03281422704458237, - -0.011017529293894768, - 0.016923559829592705, - -0.0054392428137362, - 0.007620899006724358, - -0.009335766546428204, - 0.004403038881719112, - -0.011759093962609768, - 0.0244583860039711, - -0.03268180415034294, - 0.010792411863803864, - -0.02690819650888443, - 0.011964348144829273, - 0.01675141230225563, - 0.02705386094748974, - 0.0011421417584642768, - 0.003029158338904381, - 0.010097194463014603, - -0.002795764245092869, - 0.008931878954172134, - -0.02900046855211258, - 0.030457112938165665, - 0.008905394934117794, - 0.028047027066349983, - -0.003585331840440631, - 0.0049095540307462215, - -0.02399490773677826, - -0.01757242903113365, - -0.010176648385822773, - 0.013030347414314747, - 0.01102415006607771, - 0.010858622379601002, - 0.09349009394645691, - 0.014367811381816864, - 0.0024249821435660124, - 0.022604474797844887, - -0.007435508072376251, - 0.032708290964365005, - 0.01945282518863678, - 0.003111922414973378, - -0.020975681021809578, - -0.021319977939128876, - 0.010706337168812752, - -0.014341327361762524, - 0.01929391920566559, - -0.02705386094748974, - -0.008786214515566826, - -0.008574339561164379, - -0.015387462452054024, - 0.010163405910134315, - -0.02828538790345192, - 0.015440431423485279, - 0.03638962656259537, - 0.005128050688654184, - 0.030748441815376282, - 0.022286660969257355, - -0.012010696344077587, - -0.012282161973416805, - 0.032708290964365005, - -0.02674929052591324, - 0.012057043612003326, - -0.007673867978155613, - -0.02404787577688694, - 0.014923985116183758, - -0.043010737746953964, - -0.026020968332886696, - 0.013824880123138428, - -0.009845593012869358, - 0.0005586562911048532, - 0.0007217011298052967, - 0.016671959310770035, - 0.020340053364634514, - -0.008726624771952629, - 0.02633878029882908, - -0.020697593688964844, - -0.008468401618301868, - 0.03170188143849373, - -0.006465515121817589, - -0.0050850133411586285, - -0.013321676291525364, - -0.02215423807501793 - ], - "sparse": "SparseEmbedding(values=array([1.65647059, 1.65647059, 1.65647059, 1.88993289, 1.65647059,\n 1.65647059, 1.65647059]), indices=array([2077811411, 516830072, 514488258, 911111262, 482341621,\n 922977895, 1092081572]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 22, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 8 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000023.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000023.json deleted file mode 100644 index d4793cee7e29c3b46f649aaec94469a488682930..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000023.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000023", - "content": "Abbildung 5: Neupflanzungen im Fallstudiengebiet (Datengrundlage: CGSC und eigene", - "embedding": { - "dense": [ - 0.004482896998524666, - -0.021935859695076942, - 0.009896079078316689, - -0.025603070855140686, - 0.002000450622290373, - 0.03443404287099838, - -0.028339996933937073, - 0.0018909061327576637, - -0.005831136368215084, - -0.007570365909487009, - 9.142750059254467e-05, - 0.012134157121181488, - -0.015396896749734879, - -0.00018770023598335683, - 0.0009294426999986172, - 0.025724412873387337, - 0.018727049231529236, - -0.017864175140857697, - -0.003218922298401594, - -0.01960340514779091, - -0.011500484310090542, - 0.024039113894104958, - 0.008237744681537151, - -0.003234089817851782, - 0.020250560715794563, - 0.001975171035155654, - -0.0034380110446363688, - -0.03775070980191231, - -0.012902653776109219, - 0.009168029762804508, - -0.005719906650483608, - -0.015787886455655098, - -0.006454697344452143, - -0.011480260640382767, - -0.010253362357616425, - -0.01685299538075924, - -0.010415151715278625, - -0.003987418953329325, - 0.02337847650051117, - 0.00613786093890667, - 0.0059389956295490265, - 0.009134323336184025, - 0.0019380945013836026, - -0.019401168450713158, - 0.0025835642591118813, - -0.006265943869948387, - 0.005837877746671438, - 0.011136460117995739, - -0.03917984291911125, - 0.011830803006887436, - 0.017945069819688797, - 0.03092861734330654, - -0.013354313559830189, - -0.000794618739746511, - -0.012329651974141598, - 0.006485032849013805, - -0.026829969137907028, - 0.01216112170368433, - -0.00807595532387495, - -0.025683965533971786, - -0.022299883887171745, - 0.013313867151737213, - -0.039071984589099884, - 0.010320774279534817, - -0.014102586545050144, - -0.03308580070734024, - -0.011662272736430168, - -0.004766027443110943, - 0.015342967584729195, - -0.031575772911310196, - 0.019994394853711128, - 0.012019556947052479, - -0.02672211080789566, - -0.014102586545050144, - 0.015316003002226353, - -0.011918438598513603, - 0.021544869989156723, - -0.0026290672831237316, - 0.007233305834233761, - 0.021153880283236504, - 0.015653062611818314, - -0.03392171114683151, - -0.03626764565706253, - 0.03796643018722534, - 0.026317637413740158, - 0.011985850520431995, - -0.02955341339111328, - 0.01874053105711937, - -0.021625764667987823, - -0.005571600515395403, - 0.05088256672024727, - 0.03723837807774544, - 0.0013785751070827246, - 0.0034430669620633125, - -0.024376172572374344, - -0.005891807377338409, - -0.012686935253441334, - 0.00970732606947422, - 0.0033571168314665556, - -0.051934193819761276, - -0.019549475982785225, - 0.012491440400481224, - 0.007920907810330391, - -0.005109828431159258, - -0.0058075422421097755, - -0.0049884868785738945, - 0.010853329673409462, - 0.0012024613097310066, - 0.028232138603925705, - -0.02557610720396042, - -0.022057201713323593, - 0.016879960894584656, - -0.02557610720396042, - 0.017338361591100693, - 0.019239380955696106, - -0.013886868953704834, - 0.03160273656249046, - 0.021679693832993507, - -0.008379309438169003, - -0.004236842971295118, - 0.016354147344827652, - -0.0015201402129605412, - 0.027167029678821564, - -0.0071591525338590145, - 0.020210113376379013, - 0.030281463637948036, - 0.007401835639029741, - 0.01080614048987627, - -0.023391958326101303, - -0.005989554803818464, - -0.01878097839653492, - 0.004493008833378553, - 0.02467278577387333, - 0.01771586947143078, - -0.017850693315267563, - -0.0017240614397451282, - 0.0014746371889486909, - 0.016205841675400734, - -0.038991089910268784, - -0.035782281309366226, - -0.014250893145799637, - 0.017351845279335976, - -0.019239380955696106, - -0.004358184523880482, - 0.0016153596807271242, - 0.03564745560288429, - 0.012370099313557148, - 0.019859571009874344, - -0.007988319732248783, - -0.018416954204440117, - 0.015329484827816486, - -0.02793552540242672, - 0.045597463846206665, - -0.01112297736108303, - 0.0055109295062720776, - -0.0160710159689188, - -0.0010179209057241678, - 0.048428770154714584, - -0.02990395575761795, - -0.0033554313704371452, - 0.005672718398272991, - 0.0047525446861982346, - -0.004840180277824402, - -0.0013018939644098282, - 0.014466611668467522, - 0.009221958927810192, - 0.012821759097278118, - -0.002940847771242261, - 0.004530085250735283, - -0.013752044178545475, - -0.01243751123547554, - 0.010037644766271114, - -0.013805974274873734, - 0.03936859965324402, - -0.018686601892113686, - 0.0006222968804650009, - -0.01771586947143078, - -0.011938662268221378, - -0.020452795550227165, - -0.024578409269452095, - -0.02879839949309826, - 0.002698164666071534, - -0.0031751045025885105, - -0.013832938857376575, - -0.0091545470058918, - -0.017594527453184128, - 0.009842149913311005, - 0.020681995898485184, - -0.010381445288658142, - -5.5035565310390666e-05, - -0.012983548454940319, - 0.015531720593571663, - 0.012336392886936665, - 0.0002116104296874255, - -0.6247203350067139, - -0.010576940141618252, - 0.0055109295062720776, - -0.007280494086444378, - 0.03729230910539627, - 0.04031236469745636, - 0.015275555662810802, - -0.026385050266981125, - -0.02939162403345108, - 0.014978942461311817, - 0.008783780969679356, - 0.008932087570428848, - 0.0030487070325762033, - 0.01469581201672554, - 0.0056289006024599075, - -0.0077523780055344105, - -0.003829000750556588, - -0.003758218139410019, - 0.02043931372463703, - 0.008817487396299839, - -0.01952251046895981, - 0.015181178227066994, - 0.008129885420203209, - -0.00835234485566616, - 0.018686601892113686, - 0.013623962178826332, - 0.0068625397980213165, - -0.02039886638522148, - -0.008284932933747768, - 0.010206174105405807, - -0.0181877538561821, - 0.0370226614177227, - -0.019697781652212143, - 0.018875354900956154, - 0.033301521092653275, - 0.02066851407289505, - -0.028151243925094604, - 0.012902653776109219, - -0.01377226784825325, - 0.02157183550298214, - -0.02641201578080654, - -0.0032088104635477066, - 0.01300377119332552, - -0.005979442968964577, - -0.023513300344347954, - 0.01673165336251259, - -0.0038997831288725138, - -0.015100284479558468, - -0.00021698232740163803, - 0.00602326076477766, - 0.03532388061285019, - -0.007273753173649311, - -0.018363025039434433, - -0.01673165336251259, - 0.028232138603925705, - 0.0318184569478035, - -0.0008068371680565178, - -0.010947706177830696, - 0.009842149913311005, - 0.008487168699502945, - 0.004149207379668951, - 0.0068018692545592785, - -0.01646200567483902, - -0.017661940306425095, - -0.006690639536827803, - 0.04219990223646164, - -0.03842483088374138, - 0.007826531305909157, - 0.010462339967489243, - -0.03917984291911125, - 0.004344702232629061, - 0.008136626332998276, - 0.0057333894073963165, - -0.011635308153927326, - 0.022340331226587296, - 0.00986237358301878, - 0.0048570334911346436, - -0.00015241428627632558, - -0.01642155833542347, - -0.010920741595327854, - -0.01980563998222351, - -0.030362356454133987, - -0.010792658664286137, - 0.01039492804557085, - 0.015383414924144745, - -0.03783160448074341, - -0.027989456430077553, - 0.007509694900363684, - -0.009141065180301666, - 0.00827145017683506, - 0.02007528953254223, - 0.014304823242127895, - -0.03160273656249046, - 0.006704121828079224, - -0.0034245287533849478, - 0.02620977908372879, - -0.00017411251610610634, - 0.03901805728673935, - 0.0148306367918849, - -0.025292975828051567, - -0.018052930012345314, - 0.004031236749142408, - 0.02349981665611267, - -0.0042435843497514725, - 0.01701478473842144, - 0.0207898560911417, - -0.02668166346848011, - 0.003240831196308136, - 0.03203417360782623, - -0.034946370869874954, - 0.0048098452389240265, - 0.019576439633965492, - -0.0064142500050365925, - -0.008197297342121601, - -0.0038357418961822987, - -0.032168999314308167, - 0.03060504049062729, - 0.0035020525101572275, - -0.012471216730773449, - -0.00014219715376384556, - 0.016596829518675804, - -0.001919556176289916, - 0.02184148319065571, - 0.007010846398770809, - 0.006485032849013805, - 0.027315335348248482, - -0.0021116803400218487, - -0.020452795550227165, - 0.007610812783241272, - -0.015774404630064964, - 0.0077119311317801476, - -0.005028933752328157, - 0.03885626792907715, - -0.015477791428565979, - 0.035027265548706055, - -0.014372235164046288, - 0.02173362299799919, - -0.010880294255912304, - -0.009936526417732239, - -0.03127916157245636, - -0.02074940875172615, - 0.0032694812398403883, - 0.03955735266208649, - -0.00469524459913373, - -0.0035829469561576843, - -0.014345269650220871, - -0.0004900008789263666, - 0.003068930469453335, - -0.01826864667236805, - 0.0411752387881279, - 0.004961521830409765, - -0.006687268614768982, - 0.03491940721869469, - -0.008756816387176514, - 0.01343520823866129, - -0.004375037737190723, - 0.00807595532387495, - -0.02651987411081791, - 0.0010592107428237796, - -0.008372568525373936, - 0.02091119810938835, - 0.016987819224596024, - -0.021113432943820953, - -0.009714066982269287, - 0.001292624743655324, - -0.0037784415762871504, - -0.014264375902712345, - 0.013718338683247566, - 0.0013482397189363837, - -0.024821091443300247, - -0.013954280875623226, - -0.021976307034492493, - 0.00909387692809105, - 0.01732487976551056, - -0.010024162009358406, - -0.015342967584729195, - -0.01807989366352558, - 0.023135792464017868, - 7.432434358634055e-06, - -0.0008864675764925778, - 0.007482730317860842, - -0.007341165095567703, - -0.0022734692320227623, - 0.0024099783040583134, - -0.011069047264754772, - 0.020048324018716812, - 0.0042570666410028934, - 0.00885793473571539, - -0.006265943869948387, - 0.015059837140142918, - -0.003008259693160653, - 0.029337694868445396, - -0.013495879247784615, - 0.02157183550298214, - -0.009397230111062527, - -0.00889838207513094, - 0.010185950435698032, - 0.0009033205569721758, - -0.011271283961832523, - 0.02126174047589302, - 0.01787765882909298, - 0.016084499657154083, - 0.03448797017335892, - -0.00024457910330966115, - 0.03171059861779213, - -0.020344937220215797, - 0.012949842028319836, - -0.011419589631259441, - 0.021032538264989853, - 0.008851193822920322, - 0.016408076509833336, - -0.011406107805669308, - -0.04853662848472595, - -0.0033116135746240616, - 0.02349981665611267, - 0.02271783910691738, - 0.007914166897535324, - -0.03696873039007187, - 0.006741198245435953, - -0.013064442202448845, - -0.011635308153927326, - 0.005521041341125965, - 0.01278805360198021, - -0.01255211140960455, - -0.015221625566482544, - -0.0013482397189363837, - 0.0025616553612053394, - -0.00011049245222238824, - 0.012626264244318008, - -0.0006222968804650009, - -0.012329651974141598, - 0.009532054886221886, - -0.002000450622290373, - -0.0005034832283854485, - 0.029014118015766144, - 0.015693509951233864, - 0.019482063129544258, - -0.026708627119660378, - 0.0206280667334795, - 0.015531720593571663, - 0.010988153517246246, - 0.01913152076303959, - -0.015181178227066994, - -0.002585249487310648, - 0.0012176289455965161, - -0.008986017666757107, - 0.012754347175359726, - 0.027571501210331917, - -0.025495212525129318, - 0.016920408234000206, - 0.0018285500118508935, - 0.01104208268225193, - 0.014277857728302479, - -0.019792158156633377, - 0.00758384820073843, - 0.005460370797663927, - 0.02385035902261734, - 0.002627382054924965, - 0.0231088288128376, - 0.001754396827891469, - -0.0007128817378543317, - 0.01224201638251543, - -0.001192349474877119, - -0.011824062094092369, - 0.02325713448226452, - 0.006838945671916008, - -0.007152411621063948, - -0.021315669640898705, - -0.0158687811344862, - 0.010138762183487415, - 0.006087302230298519, - -0.0004790464008692652, - 0.009323077276349068, - -0.003402619855478406, - -0.002758835442364216, - -0.023607676848769188, - 0.01968429982662201, - -0.0033453197684139013, - 0.01220156904309988, - -0.024848056957125664, - -0.021437009796500206, - -0.034514933824539185, - 0.0068153515458106995, - 0.03688783571124077, - -0.003673953004181385, - 0.005622159224003553, - -0.017149608582258224, - 0.013509361073374748, - -0.03491940721869469, - 0.0161519106477499, - -0.0017257467843592167, - -0.01170946191996336, - -0.009410712867975235, - 0.003444752423092723, - -0.0033318372443318367, - -0.03772374615073204, - 0.021720141172409058, - -0.00858828704804182, - -0.006329985335469246, - -0.0031767897307872772, - -0.0020274154376238585, - 0.002795912092551589, - -0.010657834820449352, - -0.013570032082498074, - 0.05411833897233009, - -0.004934557247906923, - -0.003126230789348483, - -0.011716202832758427, - -0.009087135083973408, - -0.015936192125082016, - 0.009087135083973408, - 0.005379476118832827, - -0.007907425984740257, - 0.02758498303592205, - -0.020344937220215797, - -0.0077119311317801476, - 0.0030824129935353994, - -0.004826697986572981, - 0.032465610653162, - 0.025913165882229805, - 0.003626764751970768, - -0.01709567941725254, - -0.016866479068994522, - 0.017419256269931793, - 0.012491440400481224, - 0.020291006192564964, - 0.007435541599988937, - -0.005962589755654335, - -0.017904622480273247, - -0.03378688544034958, - -0.027800701558589935, - -0.03761588782072067, - 0.005409811623394489, - -0.019158486276865005, - -0.0115544144064188, - 0.02660076878964901, - 0.0414988175034523, - -0.011635308153927326, - 0.01822820119559765, - 0.0012420658022165298, - -0.00396719528362155, - 0.0005216002464294434, - -0.02114039845764637, - -0.012430769391357899, - -0.015005907043814659, - -0.005325546488165855, - 0.01677210070192814, - 0.030227532610297203, - 0.012147638946771622, - -0.01673165336251259, - 0.05217687413096428, - 0.016259770840406418, - 0.008055731654167175, - 0.003237460507079959, - -0.02358071133494377, - 0.024106524884700775, - 0.012100450694561005, - 0.028313033282756805, - -0.03667211905121803, - 0.0034717172384262085, - -0.009633172303438187, - -0.0026880528312176466, - 0.02672211080789566, - 0.0014645253540948033, - 0.019279826432466507, - 0.00012755610805470496, - 0.019441615790128708, - -0.011304989457130432, - 0.007637777831405401, - -0.004263808019459248, - -0.005962589755654335, - 0.023904290050268173, - -0.01779676415026188, - -0.022151578217744827, - 0.0019768564961850643, - -0.015706991776823997, - 0.00788046047091484, - -0.0024470549542456865, - -0.002140330383554101, - -0.013017253950238228, - 0.012862206436693668, - -0.01481715403497219, - -0.007031070068478584, - -0.012262240052223206, - -0.02553565986454487, - -0.038290005177259445, - 0.0020071917679160833, - -0.02506377547979355, - -0.014803671278059483, - 0.008109661750495434, - -0.015302520245313644, - -0.005841248203068972, - -0.03411046415567398, - -0.007658001501113176, - -0.008419756777584553, - -0.018754012882709503, - -0.024173937737941742, - 0.004014383535832167, - 0.025023328140378, - 0.006441215053200722, - 0.019576439633965492, - 0.003677323693409562, - -0.01744622178375721, - -0.0026425498072057962, - -0.01646200567483902, - -0.02349981665611267, - 0.0006720132078044116, - 0.0004937927587889135, - -0.01119713019579649, - 0.032088104635477066, - -0.03343634307384491, - -0.027800701558589935, - 0.0206280667334795, - 0.01292961835861206, - 0.011069047264754772, - -0.018255164846777916, - -0.006009778473526239, - 0.027140064164996147, - -0.008878158405423164, - -0.010111797600984573, - 0.017001302912831306, - 0.006616486236453056, - 0.014951977878808975, - -0.01834954135119915, - 0.039988789707422256, - -0.005473853088915348, - -0.011015118099749088, - -0.005419923458248377, - 0.014372235164046288, - 0.023000968620181084, - -0.033220626413822174, - 0.021908894181251526, - -0.010583681054413319, - 0.024996362626552582, - 0.04373689368367195, - -0.0056963125243783, - 0.021908894181251526, - 0.002017303602769971, - -0.016947371885180473, - 0.01822820119559765, - -0.007091740611940622, - 0.006643450818955898, - 0.010738728567957878, - 0.023445887491106987, - 0.023836877197027206, - 0.01732487976551056, - 0.04794340208172798, - 0.006174937821924686, - -0.0016448523383587599, - 0.02271783910691738, - 0.003478458384051919, - 0.01890232041478157, - -0.03761588782072067, - 0.012390322983264923, - -0.008305156603455544, - -0.0019077591132372618, - -0.017864175140857697, - -0.016408076509833336, - -0.03448797017335892, - -0.01779676415026188, - -0.008716369047760963, - 0.024416619911789894, - -0.0053322878666222095, - -0.0062490906566381454, - -0.017378808930516243, - 0.007947872392833233, - 0.026587286964058876, - 0.0019077591132372618, - 0.015100284479558468, - -0.036833908408880234, - -0.015423862263560295, - 0.025630036368966103, - 0.002698164666071534, - 0.010421892628073692, - -0.003326781326904893, - -0.003512164345011115, - -0.007678224705159664, - -0.0011510596377775073, - 0.0001513609749963507, - -0.014250893145799637, - -0.0026846821419894695, - 0.010536492802202702, - 0.033139731734991074, - 0.0010962873930111527, - 0.021275222301483154, - -0.0006412565126083791, - -0.009869114495813847, - -0.0104353753849864, - 0.010482563637197018, - 0.020951643586158752, - 0.014102586545050144, - 0.003943601157516241, - -0.04246954992413521, - 0.003203754546120763, - -0.028474822640419006, - 0.0012917821295559406, - 0.013677891343832016, - -0.0030267981346696615, - 0.015019389800727367, - 0.033652063459157944, - -0.023162757977843285, - -0.015747439116239548, - -0.004560420755296946, - -0.024335725232958794, - -0.014331787824630737, - -0.001813382375985384, - -0.01284872367978096, - 0.019940463826060295, - -0.016947371885180473, - 0.010698282159864902, - 0.02887929417192936, - -0.01902366243302822, - -0.0028801769949495792, - 0.008082697167992592, - 0.009808443486690521, - -0.03284311667084694, - 0.04354814067482948, - 0.010367963463068008, - 0.007887202315032482, - -0.016313700005412102, - -0.00777934305369854, - -0.01228246372193098, - -0.008284932933747768, - 0.04193025454878807, - -0.003562723286449909, - -0.0015353079652413726, - 0.012504923157393932, - -0.006559186149388552, - -0.0016406391514465213, - 0.001838661846704781, - 0.011621826328337193, - -0.014210445806384087, - -0.009936526417732239, - -0.010880294255912304, - -0.00606033718213439, - -0.014169998466968536, - 0.0005237068398855627, - -0.025360388681292534, - 0.015450826846063137, - 0.001906073885038495, - -0.005972701590508223, - 0.04508513584733009, - -0.024268314242362976, - 0.019387686625123024, - 0.03138701990246773, - -0.013098148629069328, - 0.02495591714978218, - 0.00935004185885191, - 0.029445555061101913, - 0.029715202748775482, - -0.03052414581179619, - -0.03521601855754852, - -0.02329758182168007, - 0.0034548642579466105, - -0.020884232595562935, - 0.01084658782929182, - 0.017500150948762894, - -0.007374871056526899, - -0.024578409269452095, - 0.0022515603341162205, - 0.035701386630535126, - -0.006977140437811613, - 0.0022279659751802683, - 0.042658302932977676, - 0.025549141690135002, - -0.013340831734240055, - -0.015491274185478687, - 0.017109161242842674, - -0.029688237234950066, - 0.008284932933747768, - 0.003156566061079502, - -0.019792158156633377, - -0.004284031689167023, - -0.014426164329051971, - -0.0253873523324728, - 0.031926315277814865, - -0.0074288006871938705, - 0.01956295780837536, - -0.016138428822159767, - -0.0020965125877410173, - -0.006758051458746195, - 0.004698615055531263, - -0.01007809117436409, - 0.04691873863339424, - -0.0024116637650877237, - 0.03438011184334755, - 0.022448189556598663, - -0.02118084579706192, - 0.015855299308896065, - -0.005608676932752132, - -0.014116069301962852, - -0.002140330383554101, - -0.019751710817217827, - 0.019589921459555626, - -0.002093142131343484, - -0.005955848842859268, - -0.0029644418973475695, - 0.025791825726628304, - 0.02184148319065571, - 0.0017729351529851556, - -0.010010679252445698, - -0.026654697954654694, - -0.010617387481033802, - -0.020048324018716812, - 0.004496379289776087, - -0.015531720593571663, - -0.018524812534451485, - -0.006040113512426615, - -0.01166901458054781, - -0.016906924545764923, - -0.0045132325030863285, - -2.841309833456762e-05, - 0.009794960729777813, - -0.027167029678821564, - 0.0011695979628711939, - 0.015855299308896065, - 0.008648957125842571, - 0.026749074459075928, - 0.004317737650126219, - -0.030119674280285835, - 0.008689404465258121, - 0.022650426253676414, - -0.0325465053319931, - 0.011109494604170322, - 0.02643897943198681, - -0.015814851969480515, - -0.015100284479558468, - 0.014749742113053799, - -0.004317737650126219, - -0.008048990741372108, - 0.01834954135119915, - -0.01748666912317276, - -0.024227866902947426, - -0.0024875022936612368, - -0.03084772452712059, - 0.007732154335826635, - -0.022218989208340645, - -0.011048824526369572, - 0.0013423410709947348, - 0.013428467325866222, - -0.010502787306904793, - -0.026749074459075928, - -0.019360721111297607, - 0.017297914251685143, - 0.01357677299529314, - 0.0008017812506295741, - 0.016637276858091354, - -0.014547506347298622, - 0.04303580895066261, - -0.0013389704981818795, - 0.009343300946056843, - 0.024430103600025177, - -0.03807428851723671, - -0.02844785712659359, - 0.002479075687006116, - 0.029930921271443367, - -0.04006968438625336, - 0.005979442968964577, - -0.016084499657154083, - -0.03276222571730614, - -0.015936192125082016, - 0.0061176372691988945, - 0.027477124705910683, - -0.017621492967009544, - -0.012754347175359726, - 0.0006210329011082649, - -0.0005380319198593497, - 0.00610078452154994, - -0.01312511321157217, - 0.011837543919682503, - -0.03823607787489891, - -0.0030015185475349426, - -0.02136959880590439, - 0.007873719558119774, - -0.011311730369925499, - 0.029202871024608612, - 0.004749174229800701, - -0.04958825558423996, - -0.026425497606396675, - -0.017190055921673775, - -0.03187238425016403, - -0.02058761939406395, - -0.004159319214522839, - -0.008028767071664333, - 0.017661940306425095, - 0.01580136828124523, - -0.012720641680061817, - 0.007617554161697626, - -0.003254313487559557, - 0.005558118224143982, - -0.03993485867977142, - 0.00252963462844491, - 0.018147306516766548, - 0.003754847450181842, - 0.033139731734991074, - -0.0016878275200724602, - -0.011756650172173977, - -0.025279494002461433, - 0.003100951202213764, - -0.011561155319213867, - -0.0036301352083683014, - -0.012471216730773449, - -0.006367061752825975, - 0.009377006441354752, - -0.0040986486710608006, - 0.018524812534451485, - 0.010947706177830696, - -0.002758835442364216, - 0.02023707702755928, - -0.05317457392811775, - 0.002625696826726198, - 0.017985517159104347, - 0.009087135083973408, - -0.03421832248568535, - -0.003825630061328411, - 0.019360721111297607, - -0.014075621962547302, - -0.027908561751246452, - 0.0037615885958075523, - -0.005692942067980766, - -0.010913999751210213, - -0.006478291470557451, - 0.016826031729578972, - 0.005591824185103178, - -0.01851133070886135, - 0.020007876679301262, - -0.006161455065011978, - -0.0020408977288752794, - -0.01031403336673975, - 0.008298414759337902, - -0.005726648028939962, - -0.009356783702969551, - -0.010671316646039486, - -0.012835241854190826, - 0.0204662773758173, - -0.010725246742367744, - 0.0065322211012244225, - -0.02879839949309826, - 0.013192525133490562, - 0.009660136885941029, - -0.011055565439164639, - -0.006626598071306944, - 0.01677210070192814, - 0.025805307552218437, - -0.03152184188365936, - 0.020088771358132362, - 0.026506392285227776, - 0.01693389005959034, - -0.022448189556598663, - -0.005342399701476097, - 0.0039604539051651955, - -0.029256800189614296, - -0.017338361591100693, - 0.007475988939404488, - -0.00909387692809105, - 0.006977140437811613, - 0.012322910130023956, - -0.0023375104647129774, - -0.03996182233095169, - 0.02196282334625721, - 0.16588741540908813, - 0.0019886535592377186, - -0.014507059007883072, - 0.033382415771484375, - -0.007125446572899818, - -0.01177013199776411, - 0.031413983553647995, - -0.004081795457750559, - 0.012390322983264923, - 0.0032526282593607903, - 0.0005843776161782444, - -0.005231169983744621, - 0.017028266564011574, - 0.0075029535219073296, - 0.005723277572542429, - -0.025333423167467117, - -0.013994728215038776, - -0.004075054544955492, - 0.012167862616479397, - 0.024025630205869675, - 0.029850026592612267, - -0.03362509608268738, - -0.006009778473526239, - -0.0032442016527056694, - 0.014534023590385914, - 0.004388520028442144, - -0.01732487976551056, - 0.022192025557160378, - 0.013657667674124241, - -0.006161455065011978, - -0.014331787824630737, - -0.007947872392833233, - 0.008878158405423164, - -0.03103647753596306, - 0.011534190736711025, - 0.010442116297781467, - 0.010583681054413319, - 0.012066745199263096, - 0.019670816138386726, - 0.020776372402906418, - 0.02998485043644905, - 0.006751310080289841, - -0.004614350385963917, - -0.006006407551467419, - -0.034245286136865616, - 0.029364660382270813, - 0.012585816904902458, - 0.002431887201964855, - 0.021949341520667076, - 0.0001441984495613724, - -0.031413983553647995, - -0.014722777530550957, - 0.00698388135060668, - 0.00598281342536211, - -0.029014118015766144, - 0.005291840527206659, - 0.032195962965488434, - 0.0037683299742639065, - 0.0036335058975964785, - 0.01972474716603756, - -0.034757617861032486, - 0.02982306107878685, - 0.004995227791368961, - 0.015733957290649414, - -0.020264042541384697, - -0.005487335380166769, - 0.0003383238799870014, - -0.00738835334777832, - 0.001821808866225183, - -0.019158486276865005, - 0.0032998165115714073, - -0.01681254804134369, - -0.005231169983744621, - 0.008682663552463055, - -0.039314668625593185, - -0.038991089910268784, - 0.0077658602967858315, - -0.002398181241005659, - 0.031333088874816895, - 0.02058761939406395, - -0.01015898585319519, - 0.027881596237421036, - -0.013057701289653778, - 0.0052850996144115925, - -0.024295277893543243, - -0.025495212525129318, - 0.005251393653452396, - 0.003963824827224016, - -0.024146972224116325, - -0.03268133103847504, - -0.006889504846185446, - 0.028690539300441742, - -0.004162690136581659, - -0.019751710817217827, - 0.01654290035367012, - 0.016569865867495537, - -0.016057534143328667, - 0.03567442297935486, - -0.005874954164028168, - 0.008905122987926006, - -0.00754340086132288, - 0.05975398048758507, - 0.050397198647260666, - -0.02337847650051117, - -0.023243652656674385, - -0.004971633665263653, - -0.014277857728302479, - 0.015302520245313644, - -0.010853329673409462, - -0.0023408811539411545, - 0.00650188559666276, - -0.01469581201672554, - 0.011116236448287964, - 0.00962643139064312, - 0.011035341769456863, - 0.004344702232629061, - 0.011803838424384594, - -0.025360388681292534, - 0.01724398508667946, - -0.01909107342362404, - -0.035701386630535126, - -0.010678058490157127, - -0.00585473095998168, - 0.029364660382270813, - -0.006879393011331558, - -0.02259649708867073, - -0.023513300344347954, - -0.0148306367918849, - 0.008123143576085567, - 0.005419923458248377, - 0.02699175849556923, - -0.014992425218224525, - -0.00542329391464591, - -0.0021504422184079885, - 0.015666544437408447, - 0.023135792464017868, - -0.02136959880590439, - -0.00947138387709856, - -0.02750408835709095, - 8.716158481547609e-05, - 0.035377807915210724, - 0.005274987779557705, - -5.533180683414685e-06, - -0.004779509734362364, - -0.004914333578199148, - 0.010044385679066181, - 0.010320774279534817, - 0.01634066551923752, - -0.0021892040967941284, - -0.036294613033533096, - -0.011898214928805828, - 0.02428179606795311, - -0.012949842028319836, - 0.013623962178826332, - 0.03305883705615997, - 0.007017587311565876, - -0.03618675097823143, - -0.02955341339111328, - -0.00417617242783308, - 0.010961188934743404, - -0.031656667590141296, - -0.014372235164046288, - 0.02235381305217743, - -0.020210113376379013, - -0.008379309438169003, - 0.021935859695076942, - -0.1709567904472351, - 0.010617387481033802, - 0.03076682984828949, - -0.026425497606396675, - 0.0038930419832468033, - 0.002669514622539282, - 0.024173937737941742, - 0.016354147344827652, - -0.01752711646258831, - 0.0038694478571414948, - 0.021046021953225136, - 0.017257466912269592, - -0.019670816138386726, - -0.020088771358132362, - -0.0066367099061608315, - 0.014183481223881245, - -0.03842483088374138, - 0.031926315277814865, - 0.03575531765818596, - 0.01638111285865307, - -0.003626764751970768, - -0.021504422649741173, - -0.0015260387444868684, - 0.007523177191615105, - 0.015140731818974018, - 0.00561878876760602, - -0.020223595201969147, - 0.023675087839365005, - -0.011844285763800144, - -0.0020779743790626526, - -0.010051126591861248, - 0.0231088288128376, - 0.024173937737941742, - 0.0030284833628684282, - -0.0017560821725055575, - -0.0037278826348483562, - 0.0080152852460742, - -0.008817487396299839, - -0.022326849400997162, - 0.0038323712069541216, - 0.02475368045270443, - 0.014790189452469349, - 0.007927649654448032, - -0.0007979893707670271, - 0.004840180277824402, - -0.002474019769579172, - 0.02828606776893139, - -0.007152411621063948, - 0.009147806093096733, - -0.011311730369925499, - 0.008062473498284817, - -0.022771768271923065, - -0.007071516942232847, - 0.021396564319729805, - 0.007267011795192957, - 0.03446100652217865, - 0.020722443237900734, - -0.004095278214663267, - -0.005173869896680117, - -0.016435042023658752, - 0.0006644293898716569, - -0.003643617732450366, - -0.005652494728565216, - -0.0081164026632905, - -0.025481728836894035, - -0.02982306107878685, - 0.0021588688250631094, - 0.006990622729063034, - -0.02436269074678421, - 0.010543234646320343, - -0.012491440400481224, - -0.035108160227537155, - 0.029148941859602928, - 0.007509694900363684, - -0.0009142750059254467, - -0.01580136828124523, - 0.03308580070734024, - 0.008048990741372108, - 0.015316003002226353, - -0.0013979560462757945, - -0.015787886455655098, - 0.06331333518028259, - -0.018403472378849983, - -0.025764860212802887, - -0.006899616681039333, - 0.01119713019579649, - -0.005692942067980766, - 0.01208022702485323, - 0.013347572647035122, - -0.015194660983979702, - 0.0030402804259210825, - -0.027827667072415352, - -0.02333802916109562, - -0.027018722146749496, - 0.02801642008125782, - 0.004651426803320646, - -0.005918771959841251, - -0.012956582941114902, - 0.011399365961551666, - -0.003178474958986044, - 0.009484865702688694, - 0.0183090940117836, - -0.038209110498428345, - 0.005308693740516901, - 0.02637156844139099, - -0.024066077545285225, - -0.01590922847390175, - 0.009188253432512283, - 0.030470216646790504, - -0.0073950947262346745, - -0.030443251132965088, - -0.007866978645324707, - -0.008001802489161491, - -0.013057701289653778, - -0.015787886455655098, - 0.01678558439016342, - -0.013071183115243912, - -0.023284098133444786, - 0.005662606563419104, - -0.02635808475315571, - 0.04222686588764191, - -0.00010512056178413332, - -0.023391958326101303, - 0.0007613340858370066, - 0.006458067800849676, - 0.0007971466984599829, - -0.09335211664438248, - -0.005564859136939049, - 0.027719806879758835, - 0.02424134872853756, - 0.0027386117726564407, - -0.001256390823982656, - -0.00885793473571539, - 0.016799066215753555, - -0.01728443242609501, - 0.03419135883450508, - -0.027477124705910683, - -0.020951643586158752, - -0.0018015853129327297, - 0.010812882333993912, - 0.03740016743540764, - 0.015693509951233864, - -0.03119826503098011, - 0.0027133324183523655, - -0.016677724197506905, - 0.01576092094182968, - 0.01143307238817215, - 0.00606033718213439, - -0.015100284479558468, - -0.03171059861779213, - 0.017311397939920425, - 0.002618955448269844, - -0.03532388061285019, - 0.022690873593091965, - 0.04484245181083679, - 0.001919556176289916, - 0.021976307034492493, - -0.027558019384741783, - 0.03858662024140358, - -0.0371035560965538, - -0.017230503261089325, - 0.0007326839840970933, - -0.03753499314188957, - -0.005335658323019743, - 0.010455599054694176, - -0.022299883887171745, - -0.0023526782169938087, - 0.009087135083973408, - 0.01685299538075924, - -0.025333423167467117, - -0.004364925902336836, - -0.00966687873005867, - 0.009875855408608913, - -0.002566711278632283, - -0.014844118617475033, - -0.006576038897037506, - -0.031656667590141296, - -0.013725079596042633, - -0.0019633739721029997, - 0.013179042376577854, - 0.012147638946771622, - -0.0205471720546484, - -0.007684966083616018, - -0.013913833536207676, - -0.0074557652696967125, - -0.014628400094807148, - -0.03435314819216728, - 0.004951409995555878, - -0.04349421337246895, - 0.024349208921194077, - 0.011325213126838207, - 0.0045267147943377495, - -0.057812515646219254, - -0.02463233843445778, - 0.00561878876760602, - -0.007523177191615105, - -0.019657334312796593, - -0.00017832576122600585, - 0.0007592274341732264, - 0.010698282159864902, - -0.04476155713200569, - 0.0063535794615745544, - -0.02416045404970646, - -0.005662606563419104, - 0.02066851407289505, - -0.035269949585199356, - -0.005433405749499798, - -0.02192237786948681, - 0.03292401134967804, - -0.008480427786707878, - 0.03788553550839424, - 0.007273753173649311, - -0.011507225222885609, - 0.005672718398272991, - -0.005328917410224676, - 0.00449974974617362, - 0.011507225222885609, - -0.004910963121801615, - -0.012302687391638756, - -0.0317375622689724, - 0.006272685248404741, - 0.010961188934743404, - 0.0005805856781080365, - 0.010334257036447525, - 0.00134318380150944, - -0.015895744785666466, - 0.00360991177149117, - -0.015275555662810802, - -0.050073619931936264, - 0.02974216639995575, - -0.011028600856661797, - -0.0126936761662364, - -0.025279494002461433, - -0.0063535794615745544, - -0.00461772084236145, - 0.01192517951130867, - 0.000577636412344873, - -0.0015926080523058772, - -0.02887929417192936, - 0.01678558439016342, - -0.020331453531980515, - -0.0029812948778271675, - -0.038370899856090546, - -0.010792658664286137, - 0.01054997555911541, - 0.022448189556598663, - 0.022650426253676414, - 0.02719399333000183, - 0.0049884868785738945, - -0.006181678734719753, - 0.02349981665611267, - 0.011581378988921642, - -0.018929284065961838, - 0.001027190126478672, - -0.0024184049107134342, - 0.017001302912831306, - 0.002241448499262333, - -0.01921241544187069, - 0.004169431049376726, - -0.0008679293096065521, - -0.00958598405122757, - 0.00581428362056613, - 0.008001802489161491, - -0.015828333795070648, - -0.010003938339650631, - 0.04211900755763054, - 0.03904502093791962, - 0.05174543708562851, - -0.02514467015862465, - -0.011406107805669308, - 0.02153138816356659, - -0.015275555662810802, - -0.026034507900476456, - 0.0023880694061517715, - -0.0183090940117836, - -0.01964385248720646, - 0.013286901637911797, - 0.0062221260741353035, - 0.036914803087711334, - 0.010907258838415146, - 0.00807595532387495, - -0.013677891343832016, - 0.01400821004062891, - -0.014844118617475033, - 0.02569744735956192, - 0.008871416561305523, - -0.00394023023545742, - -0.017163090407848358, - 0.026587286964058876, - 0.02200327068567276, - 0.021086469292640686, - 0.01392731536179781, - -0.005369364283978939, - 0.009815184399485588, - -0.017823727801442146, - 0.015032872557640076, - 0.010408409871160984, - -0.031575772911310196, - -0.021868446841835976, - -0.0008034665952436626, - 0.0040649427101016045, - 0.016165394335985184, - -0.012963324785232544, - -0.013563291169703007, - -0.004334590397775173, - 0.007597330491989851, - 0.0019010179676115513, - 0.015504756011068821, - 0.005251393653452396, - 0.019306791946291924, - -6.783330900361761e-05, - 0.013448690995573997, - -0.002694793976843357, - 0.012343133799731731, - -0.024780645966529846, - 0.00807595532387495, - 0.010563457384705544, - -0.0030436511151492596, - -0.010819623246788979, - 0.027881596237421036, - 0.003139713080599904, - 0.0004297513805795461, - -0.014668847434222698, - 0.029283765703439713, - 0.001497388700954616, - -0.011426331475377083, - 0.0325465053319931, - 0.03634854033589363, - 0.0027301853988319635, - -0.001720690866932273, - 0.012424028478562832, - -0.03659122437238693, - -0.016691207885742188, - 0.02091119810938835, - -0.005130052100867033, - -0.03675301373004913, - -0.005719906650483608, - 0.014035174623131752, - -0.01894276775419712, - 0.01851133070886135, - -0.028852328658103943, - 0.000495478103403002, - -0.011783614754676819, - 0.022461673244833946, - -0.004762656521052122, - -0.008783780969679356, - -0.01563958078622818, - 0.013185784220695496, - 0.021329151466488838, - 0.01555868610739708, - 0.0037211414892226458, - -0.006097414065152407, - 0.010812882333993912, - -0.005976072512567043, - 0.001919556176289916, - -0.00037518981844186783, - -0.013104889541864395, - -0.006107525900006294, - 0.002109995111823082, - -0.009424195624887943, - -0.02089771442115307, - -0.028933223336935043, - -0.03343634307384491, - -0.021814517676830292, - 0.016394594684243202, - 0.007462506648153067, - -0.01119713019579649, - 0.08995454758405685, - 0.01638111285865307, - -0.012558852322399616, - 0.015032872557640076, - -0.03378688544034958, - -0.0021976307034492493, - 0.010489304549992085, - -0.0017341732745990157, - -0.010172468610107899, - -0.04160667583346367, - 0.009120841510593891, - -0.021949341520667076, - -0.002470649080350995, - -0.03866751492023468, - -0.012504923157393932, - 0.0019010179676115513, - -0.010839846916496754, - 0.02101905643939972, - -0.03195327892899513, - 0.014237411320209503, - 0.03535084426403046, - -0.004172801971435547, - 0.021207809448242188, - 0.04290098696947098, - -0.021463975310325623, - 0.000540138513315469, - 0.006067078560590744, - -0.006407509092241526, - -0.00019939200137741864, - 0.020560655742883682, - 0.006292908452451229, - 0.020533690229058266, - -0.053659938275814056, - -0.014331787824630737, - 0.01135217770934105, - -0.0007925121462903917, - 0.006667044945061207, - 0.002135274466127157, - 0.01065109297633171, - 0.002334140008315444, - -0.013940798118710518, - 0.0007090897997841239, - -0.028043385595083237, - -0.00012450150097720325, - 0.030658969655632973, - -0.001914500375278294, - -0.00846694502979517, - -0.010866811498999596, - -0.022178541868925095 - ], - "sparse": "SparseEmbedding(values=array([1.65209739, 1.65209739, 1.65209739, 1.65209739, 1.65209739,\n 1.65209739, 1.65209739, 1.65209739, 1.65209739]), indices=array([2077811411, 1394226660, 382767726, 1515684580, 819332622,\n 230800482, 909246637, 164058840, 922977895]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 23, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 9 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000024.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000024.json deleted file mode 100644 index 029afc92009aa8dddfae1df984160d6b70aa1c03..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000024.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000024", - "content": "Abbildung 6: 3D-Geb\u00e4udemodell mit Baumdaten Fallstudiengebiet Gromb\u00fchl Abbildung 7: Die zehn Sinus Milieus in einer Gesellschaft (eigene Darstellung nach Sinus", - "embedding": { - "dense": [ - 0.01054326631128788, - 0.008282116614282131, - 0.009741347283124924, - -0.02986820600926876, - -0.01381667423993349, - 0.030183715745806694, - -0.031130243092775345, - -0.007296150550246239, - 0.010911360383033752, - -0.011286027729511261, - 0.014618594199419022, - 0.015026126988232136, - 0.01643277145922184, - -0.00038226734613999724, - -0.0056364405900239944, - -0.007447332143783569, - 0.022427447140216827, - -0.003822262631729245, - 0.007072664797306061, - 0.008794819936156273, - -0.007105530705302954, - 0.02249317802488804, - 0.018759652972221375, - -0.015630852431058884, - 0.00702665327116847, - 0.028316952288150787, - 0.027081208303570747, - -0.03412758186459541, - 0.0118118766695261, - 0.013271106407046318, - -0.005011995323002338, - -0.035021524876356125, - -0.0003717914514709264, - -0.012857000343501568, - 0.003309560241177678, - 0.013297398574650288, - -0.00880796555429697, - 0.00951128825545311, - 0.01578860729932785, - 0.013113351538777351, - 0.012988463044166565, - -0.014526570215821266, - -0.005176323000341654, - -0.007887730374932289, - 0.003434449201449752, - 0.014789494685828686, - 0.0012373877689242363, - -0.009320667944848537, - -0.01808919571340084, - 0.00476879021152854, - 0.01732671447098255, - 0.03904426470398903, - -0.01979820430278778, - 0.005232194438576698, - -0.008788246661424637, - -0.010043710470199585, - -0.005156603641808033, - 0.0010212967172265053, - -0.012679526582360268, - -0.03588917478919029, - -0.00555427698418498, - -0.01069444790482521, - -0.03623097389936447, - 0.021954182535409927, - -0.03657277673482895, - 0.006714430637657642, - -0.020416075363755226, - -0.01186446100473404, - 0.0027097640559077263, - -0.025464223697781563, - 0.03491635248064995, - 0.03173496946692467, - -0.011456928215920925, - -0.018983138725161552, - 0.024478256702423096, - -0.008314982987940311, - 0.014171622693538666, - 0.010175172239542007, - -0.011851315386593342, - 0.020586976781487465, - 0.015118150040507317, - -0.032365988940000534, - -0.03538961708545685, - 0.027948858216404915, - 0.01996910385787487, - 0.013376276008784771, - 0.008906561881303787, - 0.03086731769144535, - -0.010332927107810974, - 0.001562756602652371, - 0.012679526582360268, - 0.02286127209663391, - 0.008591053076088428, - 0.02303217351436615, - -0.027238963171839714, - 0.009577019140124321, - 0.013317118398845196, - 0.021783282980322838, - 0.006967495195567608, - -0.026016363874077797, - -0.022006768733263016, - 0.02014000527560711, - -0.01517073530703783, - -0.00933381449431181, - -0.02763334847986698, - 0.002653892617672682, - 0.02420218661427498, - 0.006790021434426308, - 0.027843687683343887, - -0.019574718549847603, - -0.012876720167696476, - 0.038728754967451096, - -0.02763334847986698, - -0.009596738964319229, - 0.001962072914466262, - -0.017011204734444618, - 0.03215564787387848, - 0.006589541677385569, - 0.00023930224415380508, - -0.015998946502804756, - 0.007276431191712618, - 0.0003093469422310591, - 0.0033654316794127226, - -0.02150721102952957, - 0.021704405546188354, - 0.016156701371073723, - -0.0018437569960951805, - -0.0170900821685791, - -0.015985799953341484, - -0.015643998980522156, - -0.007177834864705801, - 0.030131129547953606, - 0.017655370756983757, - 0.0014411540469154716, - -0.02438623271882534, - 0.011345185339450836, - -0.011154565960168839, - 0.014986688271164894, - -0.032891836017370224, - -0.020810462534427643, - -0.0017254410777240992, - 0.019995396956801414, - -0.027791103348135948, - -0.01785256341099739, - 0.017589639872312546, - 0.018536167219281197, - 0.006980641279369593, - 0.014526570215821266, - -0.0028905244544148445, - -0.023636899888515472, - 0.008380713872611523, - -0.03247115761041641, - 0.03404870256781578, - 0.01944325491786003, - 0.017458176240324974, - -0.006855752319097519, - -0.01655108854174614, - 0.03226081654429436, - -0.028369536623358727, - -0.00590593833476305, - -0.004311959259212017, - -0.012028789147734642, - 0.012048508040606976, - 0.017037497833371162, - 0.019285501912236214, - -0.002499424619600177, - 0.012883293442428112, - -0.009084036573767662, - -0.015341635793447495, - -0.01907516084611416, - -0.007703683339059353, - 0.016629965975880623, - -0.025135567411780357, - 0.023952407762408257, - 0.002796857850626111, - 0.029736744239926338, - -0.017168959602713585, - 0.0015882273437455297, - -0.0014814144233241677, - -0.03470601513981819, - -0.05453050881624222, - 0.005751470103859901, - 0.018036609515547752, - 0.020665854215621948, - -0.025135567411780357, - 0.004006309900432825, - 0.018299534916877747, - 0.013152790255844593, - 0.023781508207321167, - -0.01636704057455063, - 0.0077759874984622, - 0.005656159948557615, - 0.015775460749864578, - -0.021993622183799744, - -0.6461628675460815, - -0.0026456762570887804, - -0.011871034279465675, - -0.0054162414744496346, - 0.007815426215529442, - 0.039202019572257996, - 0.009228644892573357, - -0.007670817896723747, - -0.0077431220561265945, - 0.005048147402703762, - -0.0037861105520278215, - 0.0071252500638365746, - 0.013948136940598488, - 0.013540604151785374, - 0.0038682743906974792, - -0.005702171940356493, - 0.008203240111470222, - -0.01398757565766573, - 0.015381074510514736, - 0.0030942908488214016, - -0.021336311474442482, - 0.01695862039923668, - 0.005265059880912304, - -0.007256711833178997, - 0.020705292001366615, - 0.00803891196846962, - 0.019824495539069176, - -0.01434252317994833, - 0.00026538927340880036, - 0.014132183976471424, - -0.024465110152959824, - 0.016643110662698746, - 0.006901764310896397, - 0.020074274390935898, - 0.037913691252470016, - 0.011818449944257736, - -0.035310741513967514, - 0.009438984096050262, - 0.01990337297320366, - 0.0018864822341129184, - -0.003864987986162305, - -0.0043645440600812435, - -0.0003939757007174194, - -0.016156701371073723, - -0.015512536279857159, - 0.022769248113036156, - 0.023019026964902878, - -0.00022307487961370498, - -0.004867387004196644, - -0.01979820430278778, - 0.02857987768948078, - -0.01991651952266693, - -0.015433658845722675, - 0.013908698223531246, - 0.055056359618902206, - 0.0014000721275806427, - 0.023755215108394623, - -0.015880631282925606, - 0.00461103580892086, - 0.005721891298890114, - 0.0034048703964799643, - 0.014802641235291958, - -0.0076576718129217625, - -0.008249251171946526, - -0.018996283411979675, - 0.03799256682395935, - -0.01832582801580429, - -6.182830111356452e-05, - 0.029657866805791855, - -0.034732308238744736, - -0.011502940207719803, - 0.016748281195759773, - -0.009103755466639996, - 0.006527096964418888, - 0.014276792295277119, - 0.031550921499729156, - 0.0004305386100895703, - -0.0248069129884243, - -0.0008865480194799602, - -0.004446708131581545, - 0.0007074308232404292, - -0.03470601513981819, - -0.014658032916486263, - -0.003398297121748328, - 0.027423009276390076, - -0.044171292334795, - -0.011706707067787647, - -0.009984551928937435, - -0.014355669729411602, - 0.01783941686153412, - 0.012699246406555176, - 0.02284812554717064, - -0.015998946502804756, - 0.005196042358875275, - -6.737436342518777e-05, - 0.022690370678901672, - -0.010181745514273643, - 0.027423009276390076, - 0.01697176694869995, - -0.019574718549847603, - -0.006487658247351646, - -0.012738685123622417, - 0.03652019053697586, - -0.003671081271022558, - -0.00652381032705307, - 0.018956845626235008, - -0.03270778805017471, - 0.005702171940356493, - 0.04624839127063751, - -0.020297760143876076, - 0.008899989537894726, - -0.014684325084090233, - -0.005455680191516876, - -0.008433298207819462, - -0.017563346773386, - -0.024833204224705696, - 0.027081208303570747, - -0.020863046869635582, - 0.006467938888818026, - 0.003242185804992914, - 0.022940149530768394, - 0.007887730374932289, - 0.0004338251892477274, - -0.008768526837229729, - 0.012949024327099323, - 0.03662536293268204, - -0.010885068215429783, - -0.02815919741988182, - -0.017510762438178062, - 0.006343049928545952, - -0.0007526209228672087, - 0.013908698223531246, - 0.026410751044750214, - -0.017063790932297707, - 0.025661416351795197, - 0.011732999235391617, - 0.025727147236466408, - -0.013777235522866249, - -0.008137508295476437, - -0.033128466457128525, - -0.01572287641465664, - -0.009051171131432056, - 0.0038847073446959257, - -0.007618233095854521, - -0.0016695696394890547, - -0.008499030023813248, - -0.03268149495124817, - -0.004420415498316288, - -0.0143688153475523, - -0.0076576718129217625, - -0.008729088120162487, - -0.017984025180339813, - -0.007217273581773043, - 0.005751470103859901, - 0.022374862805008888, - 0.00491997180506587, - 0.012318005785346031, - -0.018772797659039497, - -0.006796594243496656, - -0.002622670494019985, - 0.020100565627217293, - 0.0060735526494681835, - -0.021835867315530777, - -0.022374862805008888, - -0.012521771714091301, - -0.019416963681578636, - -0.00639234809204936, - 0.0020294473506510258, - -0.007151542231440544, - -0.01749761588871479, - -0.0035626250319182873, - -0.010148880071938038, - -0.006366055924445391, - 0.017576493322849274, - -0.014684325084090233, - -0.006967495195567608, - -0.012291713617742062, - -0.005011995323002338, - -0.013218522071838379, - -0.027948858216404915, - 0.013257959857583046, - 0.0035001803189516068, - 0.0032980572432279587, - -0.0009374896180815995, - 0.018102342262864113, - 0.006139283534139395, - 0.03176126256585121, - 0.012291713617742062, - 0.0029151737689971924, - 0.016761427745223045, - 0.0012431391514837742, - 0.026949746534228325, - -0.01428993884474039, - 0.028895385563373566, - -0.005771189462393522, - 0.008472736924886703, - -0.007046372629702091, - 0.002992407651618123, - -0.00806520413607359, - 0.03091990388929844, - 0.013455153442919254, - 0.019101453945040703, - 0.030236300081014633, - -0.012410028837621212, - 0.03428533673286438, - -0.029473818838596344, - 0.01631445623934269, - -0.006908337119966745, - 0.026292435824871063, - 0.009859663434326649, - 0.018246950581669807, - -0.011594964191317558, - -0.029999667778611183, - 0.0030712850857526064, - 0.009761066175997257, - 0.029316065832972527, - 0.014355669729411602, - -0.007578794378787279, - -0.010510400868952274, - 0.009346961043775082, - -0.0040490347892045975, - -0.0008849047590047121, - 0.031025072559714317, - 0.009577019140124321, - -0.0001783982734195888, - 0.0006396456155925989, - -0.008880269713699818, - -0.007355308625847101, - 0.012442895211279392, - -0.029552696272730827, - -0.010891641490161419, - 0.0016876456793397665, - -0.03057810105383396, - 0.004814802203327417, - -0.006546816322952509, - 0.01732671447098255, - 0.003546192077919841, - -0.015328489243984222, - 0.018628189340233803, - -0.012653234414756298, - 0.01985078863799572, - 0.01973247155547142, - -0.01607782393693924, - -0.01731356792151928, - 0.013205375522375107, - -0.005593715701252222, - 0.02144148014485836, - 0.00639234809204936, - -0.015302197076380253, - -0.004203503020107746, - -0.04101619869470596, - 0.0003738455707207322, - -0.0012086303904652596, - -0.01100995671004057, - 0.01837841235101223, - -0.005373516585677862, - 0.016406480222940445, - 0.01122029684484005, - 0.027607057243585587, - 0.013856112957000732, - 0.004496006295084953, - 0.015446805395185947, - 0.007848291657865047, - 0.0034936072770506144, - 0.019193477928638458, - 0.012318005785346031, - -0.02579287812113762, - -0.030998781323432922, - -0.01271896529942751, - 0.018181217834353447, - 0.010326353833079338, - -0.0034081568010151386, - -0.008314982987940311, - -0.008998585864901543, - 0.00746705150231719, - -0.02345285192131996, - 0.0011659051524475217, - 0.024662304669618607, - 0.027291547507047653, - -0.0019785056356340647, - -0.0058697862550616264, - -0.02297958731651306, - -0.027659641578793526, - 0.01820751093327999, - -0.005136884283274412, - -0.011943338438868523, - -0.010109441354870796, - -0.008268970996141434, - -0.018470436334609985, - -0.001743517117574811, - -0.004492719657719135, - -0.0059486632235348225, - -0.016524795442819595, - -0.015630852431058884, - -0.007066091988235712, - -0.015315343625843525, - 0.003671081271022558, - -0.003753245109692216, - -0.014631739817559719, - 0.020994508638978004, - -0.012916158884763718, - -0.01490781083703041, - -0.0066979979164898396, - -0.0148420799523592, - 0.039727870374917984, - -0.01572287641465664, - -0.013402569107711315, - -0.018457289785146713, - -0.014421400614082813, - -0.018891114741563797, - -0.021546650677919388, - -0.005261773709207773, - -0.01266638096421957, - -0.004338251892477274, - -0.017011204734444618, - -0.0011593321105465293, - -0.01854931376874447, - -0.00816380139440298, - 0.045564789324998856, - -0.028711339458823204, - 0.0007324907928705215, - -0.03344397619366646, - -0.01695862039923668, - 0.010424950160086155, - 0.035074107348918915, - 0.016104117035865784, - -3.0169541787472554e-05, - 0.012225981801748276, - -0.014237353578209877, - -0.026174118742346764, - -0.0311039499938488, - -0.034259043633937836, - -0.010825909674167633, - -0.00035330458194948733, - -0.018746506422758102, - -0.013415714725852013, - 0.03828178346157074, - 0.004160777665674686, - 0.015893777832388878, - -0.013185655698180199, - 0.0032569754403084517, - -0.001631774241104722, - 0.0021280439104884863, - 0.008341275155544281, - -0.022585202008485794, - -0.009715055115520954, - 0.009018304757773876, - 0.04183126240968704, - 0.015012980438768864, - -0.025490514934062958, - 0.020534392446279526, - 0.043277349323034286, - -0.0010911360150203109, - -0.03612580522894859, - 0.016827158629894257, - 0.018391558900475502, - 0.006484371609985828, - 0.025963779538869858, - -0.018838530406355858, - 0.003283267840743065, - 0.015354782342910767, - -0.013014755211770535, - 0.010148880071938038, - -0.00839385949075222, - 0.015157588757574558, - 0.03433791920542717, - 0.003917573019862175, - -0.01856245845556259, - -0.016761427745223045, - 0.0010015774751082063, - -0.024136455729603767, - 0.008229532279074192, - 0.004032602068036795, - -0.018930552527308464, - 0.009254937060177326, - -0.040963612496852875, - 0.0032997005619108677, - -0.025608832016587257, - -0.00702665327116847, - 0.0037138063926249743, - -0.0010467675747349858, - -0.019154038280248642, - -0.0034771745558828115, - 0.00041780321043916047, - -0.039386067539453506, - -0.021099679172039032, - -0.0026900446973741055, - -0.012410028837621212, - -0.01585433818399906, - -0.016117261722683907, - -0.012462614104151726, - -0.009629604406654835, - -0.02792256511747837, - -0.01896999217569828, - 0.013146217912435532, - -0.011713279411196709, - -0.016051530838012695, - -0.012469187378883362, - 0.022138230502605438, - 0.0016687479801476002, - 0.025424784049391747, - -0.02333453670144081, - -0.006142570171505213, - 0.009346961043775082, - -0.013632627204060555, - -0.008374140597879887, - 0.002211851067841053, - -0.008932854980230331, - -0.01707693561911583, - 0.013087059371173382, - -0.010760178789496422, - -0.0007386531215161085, - -0.0047063459642231464, - 0.01545995194464922, - 0.013553749769926071, - -0.002540506422519684, - -0.000731669191736728, - -0.01749761588871479, - -0.014658032916486263, - 0.0030942908488214016, - 0.016156701371073723, - 0.004118052776902914, - 0.0014041803078725934, - -0.022282838821411133, - 0.01996910385787487, - 0.0033687183167785406, - -0.0016186280408874154, - -0.011417489498853683, - 0.014920956455171108, - 0.005790908820927143, - -0.015078711323440075, - 0.015933215618133545, - -0.0015422155847772956, - 0.013580042868852615, - 0.040148548781871796, - -0.008775100111961365, - 0.007631379179656506, - -0.032550033181905746, - -0.00544910691678524, - 0.013974429108202457, - -0.016038386151194572, - -0.010313207283616066, - 0.022427447140216827, - -0.00040999765042215586, - 0.010227757506072521, - -0.027081208303570747, - 0.022953296080231667, - 0.007020079996436834, - -0.004157491493970156, - 0.022125083953142166, - -0.0077759874984622, - 0.0026933313347399235, - -0.02786998078227043, - -0.0037105199880898, - -0.01779997907578945, - 0.03457455337047577, - 0.0066881380043923855, - -0.01985078863799572, - -0.027712225914001465, - 0.0035593383945524693, - 0.0045946030877530575, - 0.018036609515547752, - -0.027002330869436264, - -0.0012916158884763718, - -0.009419265203177929, - 0.024175893515348434, - -0.009254937060177326, - 0.012502052821218967, - -0.0008413579198531806, - -0.03715121001005173, - -0.025372199714183807, - 0.0026473195757716894, - -0.016879742965102196, - 0.031813845038414, - -0.025648269802331924, - -0.007881157100200653, - -0.0058172014541924, - 0.005468826275318861, - 0.006043973378837109, - -0.027002330869436264, - -0.01937752403318882, - -0.01278469618409872, - 0.010503827594220638, - 0.017773685976862907, - 0.01648535579442978, - 0.029605282470583916, - 0.020179443061351776, - -0.0013039404293522239, - -0.005721891298890114, - 0.012758404016494751, - -0.004528871737420559, - -0.014999833889305592, - -0.049166854470968246, - 0.005159890279173851, - 0.0005394057370722294, - 0.02014000527560711, - 0.027843687683343887, - 0.016564233228564262, - 0.03557366505265236, - 0.012258848175406456, - -0.014119037427008152, - -0.0068031675182282925, - -0.015210174024105072, - -0.024491403251886368, - -0.0071186767891049385, - -0.00945870392024517, - -0.01372465118765831, - 0.0017484469572082162, - -0.01049068197607994, - -0.0025651557371020317, - 0.03807144612073898, - 0.0018848389154300094, - -0.01278469618409872, - -0.005560849793255329, - 0.012239128351211548, - -0.054109830409288406, - 0.04942977800965309, - -0.007585367653518915, - 0.00665527256205678, - -0.01018831878900528, - 0.019995396956801414, - -0.013764089904725552, - -0.01631445623934269, - 0.0243336483836174, - -0.01157524436712265, - 0.0012760047102347016, - 0.018154926598072052, - -0.018365265801548958, - -0.002954612486064434, - 0.0012973673874512315, - 0.006757155992090702, - -0.012311432510614395, - -0.005297925788909197, - -0.012587503530085087, - -0.008084923960268497, - -0.017366154119372368, - 0.003235612763091922, - -0.02003483474254608, - 0.0339435338973999, - 0.006004534661769867, - -0.007164688315242529, - 0.04222565144300461, - -0.026489628478884697, - 0.010655009187757969, - 0.028606168925762177, - -0.011213723570108414, - 0.02821178361773491, - 0.02291385643184185, - 0.043908365070819855, - 0.023571167141199112, - -0.030315177515149117, - -0.014947249554097652, - -0.03638872876763344, - -0.020600123330950737, - -0.0028346532490104437, - 0.025556247681379318, - 0.013514311984181404, - -0.00915634073317051, - -0.011476648040115833, - 0.015039272606372833, - 0.02333453670144081, - 0.0037598181515932083, - -0.004394123330712318, - 0.05821144953370094, - 0.009392972104251385, - -0.005307785235345364, - -0.01045781560242176, - 0.000860255619045347, - -0.02479376643896103, - 0.008571334183216095, - 0.015972653403878212, - -0.006645413115620613, - -0.022519471123814583, - -0.020402928814291954, - 0.0022512897849082947, - 0.016919182613492012, - -0.0070069339126348495, - 0.036730531603097916, - -0.005472112912684679, - -0.018286388367414474, - 0.025529954582452774, - -0.013790382072329521, - -0.005268346518278122, - 0.020902486518025398, - 0.01087192166596651, - 0.03268149495124817, - 0.015538829378783703, - -0.023111050948500633, - 0.00031099020270630717, - -0.007269858382642269, - -0.01885167509317398, - 0.0016605316195636988, - -0.0014592300867661834, - 0.030472932383418083, - 0.022098790854215622, - -0.01843099668622017, - -0.006326617207378149, - 0.005363656673580408, - 0.026016363874077797, - -0.00845301803201437, - 0.002461629221215844, - -0.01702435128390789, - -0.01885167509317398, - -0.0020442367531359196, - 0.023650044575333595, - 0.003822262631729245, - -0.02409701608121395, - 0.0011379694333299994, - -0.01607782393693924, - -0.02821178361773491, - -0.004542018286883831, - 0.011923619545996189, - -0.008071777410805225, - -0.029132017865777016, - -0.0003826781758107245, - 0.011207150295376778, - -0.00992539431899786, - 0.033312514424324036, - -0.010852202773094177, - -0.01844414323568344, - -0.005071153398603201, - 0.01861504465341568, - -0.041147660464048386, - 0.033838365226984024, - 0.0434613935649395, - -0.006431786809116602, - -0.012699246406555176, - 0.009149767458438873, - 0.005945377051830292, - -0.029710451140999794, - -0.005307785235345364, - -0.025240737944841385, - -0.01944325491786003, - -0.00886712409555912, - 0.004647187888622284, - 0.0170900821685791, - -0.027081208303570747, - -0.0086041996255517, - 0.026489628478884697, - -0.007841718383133411, - 0.0108061907812953, - -0.01614355482161045, - -0.014197914861142635, - 0.026463335379958153, - 0.021296871826052666, - -0.012817561626434326, - 0.012035362422466278, - -0.013330264948308468, - 0.016761427745223045, - 0.021125972270965576, - 0.004528871737420559, - -0.0027179804164916277, - -0.037966277450323105, - -0.02857987768948078, - 0.011562097817659378, - 0.02320307306945324, - -0.023834092542529106, - -0.006934629753232002, - -0.02074473164975643, - -0.025280175730586052, - -0.02668682113289833, - 0.025280175730586052, - 0.020941924303770065, - 0.00966246984899044, - -0.004042461980134249, - 0.010655009187757969, - 0.004400696139782667, - -0.003864987986162305, - -0.014395108446478844, - -0.022940149530768394, - -0.004726065322756767, - -0.0028297232929617167, - -0.025595685467123985, - 0.004288953263312578, - -0.015775460749864578, - 0.04075327515602112, - 0.015499390661716461, - -0.022335423156619072, - 0.0042790938168764114, - 0.009905674494802952, - -0.045275572687387466, - -0.019653595983982086, - 0.0027409864123910666, - -0.01785256341099739, - 0.009202351793646812, - 0.016945473849773407, - -0.005011995323002338, - 0.024636011570692062, - -0.0014271861873567104, - -0.010300061665475368, - -0.040674395859241486, - -0.011910472996532917, - 0.012679526582360268, - -0.015394221059978008, - 0.03988562524318695, - -0.00035330458194948733, - 0.0007427613018080592, - -0.009682188741862774, - 0.0071186767891049385, - -0.015985799953341484, - -0.012679526582360268, - 0.006228020414710045, - 0.0016843591583892703, - -0.0070003606379032135, - 0.007907450199127197, - 0.002208564430475235, - -0.0009268083376809955, - -0.020836753770709038, - 0.019745618104934692, - -0.010359219275414944, - 0.0006708679138682783, - -0.0009933611145243049, - 0.012909585610032082, - -0.030893610790371895, - -0.009544153697788715, - -0.0034738879185169935, - -0.0008890129392966628, - -0.01210109330713749, - 0.015512536279857159, - -0.004394123330712318, - -0.016051530838012695, - -0.02663423679769039, - 0.013297398574650288, - 0.003924145828932524, - 0.005662733223289251, - -0.0036940870340913534, - 0.006701284553855658, - -0.00441712886095047, - -0.0008093140204437077, - 0.022125083953142166, - -0.014303084462881088, - 0.003219180041924119, - -0.012239128351211548, - -0.020586976781487465, - 0.02409701608121395, - -0.00968876201659441, - -0.0024106877390295267, - -0.030946195125579834, - 0.01990337297320366, - -0.030183715745806694, - 0.010056856088340282, - -0.023058464750647545, - 0.016800865530967712, - 0.030946195125579834, - -0.034732308238744736, - 0.006024254020303488, - 0.018772797659039497, - -0.0031797413248568773, - 0.005435960832983255, - -0.001993295270949602, - 0.010227757506072521, - -0.01093108020722866, - -0.01139777060598135, - 0.008939428254961967, - 0.00684917951002717, - 0.016156701371073723, - -0.009241790510714054, - -0.009675616398453712, - -0.03586288169026375, - 0.016537941992282867, - 0.16984912753105164, - -0.004781936760991812, - -0.009800504893064499, - 0.011332039721310139, - 0.016537941992282867, - -0.015643998980522156, - 0.024964667856693268, - 0.013264533132314682, - 0.011719852685928345, - 0.03623097389936447, - -0.008669930510222912, - -0.0029759749304503202, - 0.013908698223531246, - 0.004305386450141668, - 0.002152693225070834, - -0.03957011550664902, - -0.025345906615257263, - -0.0021280439104884863, - -0.00509415939450264, - 0.010707594454288483, - 0.01193019188940525, - -0.01039208471775055, - 0.012705818749964237, - -0.008998585864901543, - 0.007631379179656506, - -0.0038879937492311, - -0.018220657482743263, - 0.004571597091853619, - 0.0211391169577837, - 0.013231667689979076, - -0.0017303709173575044, - 0.004042461980134249, - 0.00026805957895703614, - -0.02144148014485836, - -0.03717750310897827, - -0.003434449201449752, - 0.028290659189224243, - -0.018299534916877747, - 0.02225654572248459, - 0.024820057675242424, - -0.0016827158397063613, - -0.0014658032450824976, - -0.01819436438381672, - -0.00786143820732832, - -0.0017122948775067925, - 0.04064810276031494, - 0.00030955232796259224, - -0.0009013375383801758, - 0.02432050183415413, - -0.005633153952658176, - -0.004509152378886938, - -0.012686099857091904, - 0.03615209832787514, - 0.02981562167406082, - 0.01572287641465664, - -0.0038551283068954945, - 0.02098136395215988, - 0.008380713872611523, - 0.0052157617174088955, - 0.015341635793447495, - -0.04004338011145592, - 0.02462286502122879, - -0.006306897848844528, - 0.016590526327490807, - -0.013606335036456585, - -0.019416963681578636, - -0.016998060047626495, - 0.018470436334609985, - 0.009754492901265621, - -0.03362802416086197, - 0.0035363323986530304, - -0.023702630773186684, - -0.039491236209869385, - -0.0037893971893936396, - -0.03420645743608475, - -0.011555525474250317, - 0.028238074854016304, - 0.013527457602322102, - 0.023005880415439606, - 0.029789328575134277, - 0.00024053470406215638, - 0.014408254064619541, - -0.010300061665475368, - 0.0070003606379032135, - 0.002571728779003024, - -0.03357543796300888, - 0.023820945993065834, - 0.014566008932888508, - -0.019601009786128998, - -0.007605087012052536, - -0.007013507187366486, - 0.0219673290848732, - 0.01760278455913067, - -0.009215498343110085, - 0.03717750310897827, - 0.010891641490161419, - 0.017681661993265152, - 0.023189928382635117, - -0.027475593611598015, - -0.006089985370635986, - 0.006540243048220873, - 0.05019225925207138, - 0.05011337995529175, - -0.017537053674459457, - -0.011588390916585922, - -0.007749695330858231, - 0.000995004316791892, - 0.016643110662698746, - -0.005508264992386103, - -0.010332927107810974, - -0.006573108956217766, - -0.024228479713201523, - -0.005498405545949936, - 0.004091760143637657, - 0.016222432255744934, - 0.004942977800965309, - 0.0038682743906974792, - -0.008098069578409195, - -0.0018486868357285857, - -0.0012365661095827818, - -0.009885955601930618, - 0.002502711256965995, - 0.016104117035865784, - 0.018049756065011024, - -0.001060735434293747, - -0.017997171729803085, - -0.016117261722683907, - 0.004663620609790087, - 0.01731356792151928, - -0.017576493322849274, - 0.022414300590753555, - -0.0026916880160570145, - -0.007329016458243132, - -0.0071186767891049385, - 0.013553749769926071, - 0.017129521816968918, - -0.01925920881330967, - -0.03912314400076866, - -0.009728200733661652, - -0.007453905418515205, - 0.0008368389098905027, - -0.0019357805140316486, - -0.018010318279266357, - -0.009038024581968784, - -0.009208925068378448, - 0.0006310184253379703, - 0.020863046869635582, - -0.0019505700329318643, - -0.015643998980522156, - -0.026660529896616936, - -0.020876193419098854, - 0.004512439016252756, - 0.005708744749426842, - -0.021073386073112488, - 0.04059552028775215, - -0.01655108854174614, - -0.020941924303770065, - -0.025990072637796402, - -0.009327241219580173, - 0.016012093052268028, - -0.032550033181905746, - 0.007723402697592974, - 0.013323691673576832, - -0.008157228119671345, - -0.009031451307237148, - 0.02367633767426014, - -0.167114719748497, - 0.010799617506563663, - 0.024359941482543945, - -0.025529954582452774, - 0.009708481840789318, - 0.006504090968519449, - 0.02174384333193302, - -0.004505866207182407, - 0.010497254319489002, - 0.007973181083798409, - 0.024346794933080673, - 0.010977091267704964, - -0.02020573616027832, - 0.013146217912435532, - -0.00014152724179439247, - 0.012758404016494751, - -0.02810661308467388, - 0.019995396956801414, - 0.020245175808668137, - 0.030893610790371895, - 7.302313315449283e-05, - -0.022927002981305122, - 0.007164688315242529, - -0.004407269414514303, - -0.0013967856066301465, - 0.021060239523649216, - -0.0007468694821000099, - 0.05082327499985695, - -0.0076248059049248695, - -0.007138396147638559, - -0.001386925927363336, - -0.0004227330500725657, - 0.03328622132539749, - -0.01405330654233694, - 0.0036776543129235506, - -0.0077759874984622, - 0.003391724079847336, - -0.010247476398944855, - -0.008058630861341953, - 0.00933381449431181, - 0.007559075020253658, - 0.025017252191901207, - -0.010300061665475368, - 0.011305746622383595, - -0.008308409713208675, - 0.009997698478400707, - 0.011844742111861706, - 0.006520523689687252, - 0.012232555076479912, - -0.0033407825976610184, - 0.018996283411979675, - -0.028763923794031143, - -0.011502940207719803, - 0.015604560263454914, - -0.012133958749473095, - 0.0451178178191185, - 0.0021756989881396294, - 0.007506490219384432, - 0.004068754147738218, - -0.017445029690861702, - 0.003533045994117856, - -0.019574718549847603, - 0.0172083992511034, - -0.007460478227585554, - -0.007131822872906923, - -0.02262463979423046, - 0.0001920580252772197, - 0.0023778220638632774, - -0.02238800749182701, - 0.0041673509404063225, - -0.004344824701547623, - -0.02491208165884018, - 0.016590526327490807, - -0.01932493969798088, - -0.0030762148089706898, - 0.021533504128456116, - 0.0036119231954216957, - 0.004933117888867855, - 0.016524795442819595, - -0.019693033769726753, - -0.010313207283616066, - 0.03815032169222832, - -0.019535278901457787, - -0.018746506422758102, - -0.0070003606379032135, - -0.0019193477928638458, - -0.04148946329951286, - -0.0020245173946022987, - 0.011982777155935764, - -0.0030499224085360765, - 0.03244486451148987, - -0.02667367458343506, - -0.015867484733462334, - -0.010727313347160816, - 0.01949584111571312, - 0.005702171940356493, - -0.0032109636813402176, - -0.027948858216404915, - -0.018641335889697075, - -0.011437209323048592, - 0.005176323000341654, - 0.0008512175991199911, - -0.02574029378592968, - 0.0108061907812953, - 0.010070002637803555, - -0.006757155992090702, - -0.013231667689979076, - 9.089377272175625e-05, - 0.017721101641654968, - 0.0017040784005075693, - -0.018049756065011024, - -0.009346961043775082, - -0.008308409713208675, - -0.0077365487813949585, - -0.018273241817951202, - 0.00043094943976029754, - 0.0003748726157937199, - -0.012929304502904415, - 0.01025404967367649, - -0.017537053674459457, - 0.043566565960645676, - 0.008157228119671345, - -0.03152462840080261, - 0.008729088120162487, - 0.027712225914001465, - -0.0021099678706377745, - -0.08729088306427002, - -0.013389422558248043, - 0.0211391169577837, - 0.011450355872511864, - -0.0020886051934212446, - 0.028316952288150787, - -0.009346961043775082, - 0.017116375267505646, - -0.015591413713991642, - 0.029605282470583916, - -0.018601898103952408, - -0.013376276008784771, - -0.004571597091853619, - -0.009971406310796738, - 0.013934990391135216, - 0.0012020572321489453, - -0.007355308625847101, - -0.014658032916486263, - -0.01631445623934269, - 0.018233804032206535, - 0.008722514845430851, - -0.0077759874984622, - 0.00816380139440298, - -0.014329376630485058, - 0.007131822872906923, - 0.010037137195467949, - -0.04343510419130325, - 0.01624872535467148, - 0.03541591018438339, - -0.0011001740349456668, - 0.024898935109376907, - -0.040726982057094574, - 0.014421400614082813, - -0.03433791920542717, - -0.012423175387084484, - 0.006359482649713755, - -0.0047917962074279785, - -0.016182994470000267, - 0.018956845626235008, - -0.005422814749181271, - -0.011213723570108414, - -0.0009793932549655437, - 0.02102080173790455, - -0.016445918008685112, - 0.004752357490360737, - -0.015762314200401306, - -0.028054028749465942, - 0.010747033171355724, - 0.010812764056026936, - 0.006004534661769867, - -0.022927002981305122, - -0.01613040827214718, - 0.007322443183511496, - 0.006251026410609484, - 0.0031846712809056044, - -0.0017632364761084318, - -0.010346072725951672, - -0.007716829422861338, - -2.4905919417506084e-05, - 0.019863935187458992, - -0.01322509441524744, - 0.014999833889305592, - -0.012837281450629234, - 0.049929335713386536, - 0.011529232375323772, - -0.021586088463664055, - -0.0026062375400215387, - -0.016353894025087357, - 0.012219409458339214, - -0.031656090170145035, - -0.025188151746988297, - 0.012212836183607578, - -0.0002647730289027095, - -0.006895191036164761, - -0.02810661308467388, - -0.009491569362580776, - -0.01695862039923668, - -0.02391296997666359, - 0.013961282558739185, - -0.003516613272950053, - -0.008058630861341953, - -0.023005880415439606, - 0.024543987587094307, - -0.012475760653614998, - 0.042435988783836365, - 0.026726260781288147, - -0.0024468398187309504, - -0.020284613594412804, - 0.000548032927326858, - -0.016419624909758568, - 0.02602951042354107, - 0.008992012590169907, - -0.0036973736714571714, - -0.03057810105383396, - 0.004012882709503174, - -0.0008220493909902871, - -0.004620895255357027, - -0.019535278901457787, - -0.006007821299135685, - 0.007098957430571318, - -0.02645018883049488, - -0.011430636048316956, - -0.04611692950129509, - 0.024346794933080673, - 0.007098957430571318, - 0.009833370335400105, - 0.0017287275986745954, - -0.012962170876562595, - 0.0061820088885724545, - 0.00966246984899044, - 0.0006967495428398252, - 0.004072040785104036, - -0.01655108854174614, - 0.008328128606081009, - 0.011851315386593342, - 0.003999736625701189, - -0.02726525440812111, - -0.033785779029130936, - 0.010050282813608646, - 0.013685212470591068, - 0.03541591018438339, - 0.010681301355361938, - -0.004965983796864748, - 0.0005266703083179891, - -0.005389949306845665, - 0.01467117853462696, - -0.04064810276031494, - 0.002814933890476823, - -0.005458966828882694, - 0.017681661993265152, - -0.02721267007291317, - -0.015814900398254395, - -0.0020425934344530106, - -0.006089985370635986, - 0.008564760908484459, - 0.011976203881204128, - -0.003325992962345481, - -0.02792256511747837, - 0.014618594199419022, - 0.028290659189224243, - 0.02834324538707733, - 0.05329476669430733, - -0.024241624400019646, - -0.021888451650738716, - 0.015604560263454914, - -0.038308076560497284, - 0.008308409713208675, - -0.0026473195757716894, - 0.0035724847111850977, - -0.010615570470690727, - 0.013882406055927277, - -0.020705292001366615, - 0.04135800153017044, - 0.013369702734053135, - -0.0033687183167785406, - -0.01666940376162529, - 0.005363656673580408, - -0.016827158629894257, - 0.01428993884474039, - 0.010023990646004677, - 0.005054720677435398, - -0.014381961897015572, - 0.040201131254434586, - 0.02250632457435131, - 0.010464388877153397, - 0.003395010717213154, - 0.007223846390843391, - 0.003156735561788082, - -0.038202907890081406, - -0.016209285706281662, - 0.022006768733263016, - -0.031550921499729156, - -0.010812764056026936, - -0.018641335889697075, - 0.011128272861242294, - 0.031366873532533646, - -0.010451243259012699, - -0.004627468530088663, - -0.02103394828736782, - 0.005620007868856192, - -0.012271993793547153, - 0.03249745070934296, - 0.018654482439160347, - 0.017339861020445824, - -0.0010475892340764403, - 0.017707955092191696, - 0.024491403251886368, - 0.014027014374732971, - -0.022927002981305122, - -0.00296611525118351, - 0.016353894025087357, - -0.0007591940811835229, - 0.0012390309711918235, - 0.021954182535409927, - 0.008328128606081009, - -0.017300421372056007, - 0.0051335981115698814, - 0.015407366678118706, - 0.012488906271755695, - 0.000906267378013581, - 0.021467773243784904, - 0.03562624752521515, - 0.016827158629894257, - 0.0037400987930595875, - 0.010891641490161419, - -0.03368061035871506, - -0.02721267007291317, - -0.007762841414660215, - -0.010944225825369358, - -0.036204684525728226, - -0.015762314200401306, - 0.019706180319190025, - -0.018220657482743263, - 0.029710451140999794, - -0.010148880071938038, - 0.0020869621075689793, - -0.012883293442428112, - 0.02261149324476719, - -0.024123309180140495, - -0.015262758359313011, - -0.016748281195759773, - 0.02773851901292801, - 0.0016588883008807898, - 0.03115653619170189, - -0.012410028837621212, - -0.018128633499145508, - 0.00812436267733574, - 0.001175764831714332, - 0.0005550168571062386, - -0.032076772302389145, - 0.002507640980184078, - -0.029263479635119438, - -0.004003023263067007, - -0.009077463299036026, - -0.01049068197607994, - -0.027133792638778687, - -0.017155813053250313, - -0.027081208303570747, - -0.0016810725210234523, - -0.008932854980230331, - 0.006112990900874138, - 0.10559041798114777, - 0.012035362422466278, - 0.0033851510379463434, - 0.01890426129102707, - -0.031656090170145035, - 0.007368454709649086, - 0.014473985880613327, - 0.02457028068602085, - 0.019416963681578636, - -0.048614710569381714, - 0.011779011227190495, - 0.00011513210483826697, - 0.0015035986434668303, - -0.018628189340233803, - -0.008689649403095245, - -0.003352285362780094, - -0.02591119520366192, - 0.02467544935643673, - -0.01624872535467148, - 0.02226969227194786, - 0.026187265291810036, - -0.017182106152176857, - 0.018010318279266357, - 0.026476481929421425, - -0.023755215108394623, - -0.01779997907578945, - 0.021993622183799744, - -0.008735661394894123, - -0.003644788870587945, - -0.0002409455191809684, - 0.007690537255257368, - 0.02050809934735298, - -0.05013967305421829, - -0.019390670582652092, - 0.021704405546188354, - 0.0017385872779414058, - 0.0027426297310739756, - -0.016301309689879417, - -0.0007419396424666047, - 0.01175271812826395, - 0.00028161663794890046, - 0.0303940549492836, - -0.013632627204060555, - -0.012686099857091904, - -0.004509152378886938, - 0.006343049928545952, - -0.0005603575264103711, - -0.0170900821685791, - -0.04254116117954254 - ], - "sparse": "SparseEmbedding(values=array([1.85629532, 1.6054732 , 1.6054732 , 1.6054732 , 1.6054732 ,\n 1.6054732 , 1.6054732 , 1.6054732 , 1.6054732 , 1.6054732 ,\n 1.6054732 , 1.85629532, 1.6054732 , 1.6054732 , 1.6054732 ,\n 1.6054732 , 1.6054732 , 1.6054732 ]), indices=array([2077811411, 670727360, 1320850453, 1657501004, 231980230,\n 732929573, 819332622, 1841900287, 602572328, 1109731834,\n 1322085252, 1003952643, 1218546659, 147047731, 73907278,\n 922977895, 911111262, 1092081572]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 24, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 20 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000025.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000025.json deleted file mode 100644 index f7890bb130bfe62f902f180b81b212b57edb571d..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000025.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000025", - "content": "Abbildung 10: \u00dcberhitzungspotentiale in Gromb\u00fchl (Burghardt und Partner Ingenieure", - "embedding": { - "dense": [ - -0.006924457382410765, - -0.024810411036014557, - 0.01781911589205265, - -0.040931832045316696, - 0.0040236711502075195, - 0.03472922742366791, - -0.03093280829489231, - 0.014597505331039429, - 0.005474064499139786, - -0.013508039526641369, - 0.018741484731435776, - 0.019904473796486855, - 8.621108281658962e-05, - 0.00973835401237011, - -0.008040658198297024, - 0.008922925218939781, - 0.014597505331039429, - 0.02435591071844101, - 0.01150288712233305, - -0.006870986893773079, - -0.0008989764028228819, - 0.01950344257056713, - 0.018193410709500313, - -0.00037283290293999016, - -0.011449417099356651, - -0.00015195290325209498, - 0.02333996631205082, - -0.03930097445845604, - -0.02136155031621456, - 0.010293112136423588, - 0.005868410691618919, - -0.00651340140029788, - -0.018113205209374428, - -0.0021622220519930124, - -0.004254263825714588, - -0.010767664760351181, - -0.0009958921000361443, - 0.006690523121505976, - 0.013715238310396671, - -0.007592841517180204, - -0.008267909288406372, - -0.00621931254863739, - 0.002439601346850395, - -0.008428321219980717, - 0.00237610493786633, - 0.023981615900993347, - 0.013995959423482418, - 0.004154006019234657, - -0.020893681794404984, - 0.03641355782747269, - 0.02470346912741661, - 0.03178833797574043, - 0.0005092250066809356, - -0.0077198343351483345, - -0.008675623685121536, - 0.005607740953564644, - -0.01847413182258606, - 0.02839295007288456, - -0.003983568400144577, - -0.006506717298179865, - -0.009430897422134876, - -0.018380558118224144, - -0.02673535794019699, - 0.022778524085879326, - -0.034702494740486145, - -0.016228361055254936, - -0.01665612682700157, - -0.010473576374351978, - 0.011843763291835785, - -0.010540414601564407, - 0.02722996100783348, - 0.030852602794766426, - 0.01292654499411583, - -0.02788497693836689, - 0.017591865733265877, - -0.010206222534179688, - -0.00722523033618927, - 0.011262268759310246, - 0.010714194737374783, - 0.008027290925383568, - 0.026949239894747734, - -0.037242352962493896, - -0.01779237948358059, - 0.03090607188642025, - 0.006760703399777412, - 0.010841187089681625, - -0.011389262042939663, - 0.0015122186159715056, - -0.015559977851808071, - -0.01318053063005209, - 0.011743505485355854, - 0.03673437982797623, - 0.002190628321841359, - 0.01478465273976326, - -0.008007239550352097, - 0.012572301551699638, - -0.016522450372576714, - 0.029702981933951378, - 0.017057158052921295, - -0.03462228551506996, - -0.01116201188415289, - -0.0008112509967759252, - -0.009618044830858707, - -0.004027013201266527, - -0.05614424869418144, - -0.003943465184420347, - 0.015412933193147182, - -0.0055275349877774715, - 0.011035018600523472, - -0.018273616209626198, - -0.009096705354750156, - 0.016201626509428024, - -0.023968247696757317, - -0.008956344798207283, - -0.0017912689363583922, - -0.028687037527561188, - 0.040236711502075195, - -0.0016124761896207929, - 0.009384110569953918, - -0.027965184301137924, - 0.0034755964297801256, - -0.003652718150988221, - -0.018581073731184006, - -0.006760703399777412, - 0.006155815906822681, - -0.008167651481926441, - -0.005951958708465099, - -0.0011136947432532907, - -0.006840909365564585, - -0.0030595273710787296, - -0.015733757987618446, - 0.009390793740749359, - 0.014757917262613773, - -0.009444264695048332, - -0.008688990958034992, - 0.01863454468548298, - -0.009978972375392914, - -0.0025365171022713184, - -0.03908709064126015, - -0.019944576546549797, - 0.00043152537546120584, - 0.02049265056848526, - -0.02550552971661091, - -0.026013502851128578, - 0.013548142276704311, - 0.032002221792936325, - -0.006583581678569317, - 0.031307101249694824, - -2.6813682779902592e-05, - -0.02922174520790577, - -0.02132144756615162, - -0.021455124020576477, - 0.025625839829444885, - -0.010400054045021534, - -0.024449484422802925, - 0.006620342843234539, - -0.01646897941827774, - 0.0019550230354070663, - -0.02451632171869278, - -0.008836035616695881, - 0.01177024096250534, - -0.021976463496685028, - 0.02685566619038582, - 0.009892081841826439, - -0.00858204998075962, - 0.011362526565790176, - -0.0053169941529631615, - 0.008535263128578663, - 0.03748296946287155, - -0.014824755489826202, - -0.0072653330862522125, - 0.0437123104929924, - -0.03443513810634613, - 0.022885465994477272, - -0.013000067323446274, - 0.01797952689230442, - -0.025291647762060165, - -0.0020218612626194954, - 0.0010794400004670024, - -0.02066643163561821, - -0.03999609500169754, - -0.013006751425564289, - 0.018955368548631668, - 0.01828698441386223, - -0.019035574048757553, - 0.008287960663437843, - 0.020866945385932922, - 0.022912200540304184, - 0.0027687803376466036, - -0.009965604171156883, - 0.005848359316587448, - 0.032670605927705765, - 0.009644780308008194, - 0.0014662672765552998, - -0.6283878087997437, - -0.00915685947984457, - -0.030317895114421844, - -0.006376382429152727, - -0.002339343773201108, - 0.03176160529255867, - 0.02550552971661091, - -0.015185683034360409, - -0.014316783286631107, - 0.03226957470178604, - -0.01880832388997078, - -0.004488198086619377, - -0.018781587481498718, - -0.007044766563922167, - 0.0038532332982867956, - -0.01051367912441492, - -0.013300839811563492, - 0.002631761599332094, - 0.020412445068359375, - 0.01661602407693863, - -0.002827263902872801, - 0.010794400237500668, - -0.0006303695845417678, - -0.01866127923130989, - 0.02586645819246769, - 0.016402142122387886, - 0.023420173674821854, - -0.016268465667963028, - -0.00609566131606698, - 0.00415066396817565, - -0.023567216470837593, - 0.006790780462324619, - -0.0019683907739818096, - 0.0041907671838998795, - 0.03801767900586128, - 0.0027503997553139925, - -0.03189527988433838, - 0.0172977764159441, - 0.005510825663805008, - 0.02402171865105629, - -0.008642204105854034, - -0.018353821709752083, - 0.018942000344395638, - -0.005236788187175989, - -0.00806739367544651, - 0.02418212965130806, - 0.024569792672991753, - -0.016696229577064514, - -0.011529622599482536, - -0.028793979436159134, - 0.034354932606220245, - -0.0059887198731303215, - -0.005450671073049307, - 0.02148185856640339, - 0.012899809516966343, - 0.004825731739401817, - 0.003027779283002019, - -0.00957125797867775, - -0.015466404147446156, - 0.01301343459635973, - -0.01192396879196167, - 0.007104921154677868, - 0.002817238215357065, - -0.025077765807509422, - -0.01966385543346405, - 0.0069712442345917225, - -0.04012976959347725, - -0.002214021747931838, - 0.025492163375020027, - -0.008421637117862701, - -0.010359951294958591, - 0.020572857931256294, - -0.024262337014079094, - 0.008261225186288357, - 0.0211610347032547, - 0.01419647503644228, - 0.0018831717316061258, - -0.013127060607075691, - 0.008254541084170341, - 0.014517298899590969, - 0.005651186220347881, - -0.006413143593817949, - -0.0008722410420887172, - -0.0076596797443926334, - 0.030638718977570534, - -0.032697342336177826, - -0.028820713981986046, - -0.026427900418639183, - -0.012625772505998611, - 0.0010585529962554574, - 0.017177466303110123, - 0.022136876359581947, - -0.02638779766857624, - -0.0018681330839172006, - 0.005490773823112249, - 0.03245672211050987, - 0.004438069183379412, - 0.022551273927092552, - 0.012204690836369991, - -0.032483458518981934, - -0.008782564662396908, - -0.015412933193147182, - 0.016001110896468163, - -0.004133954644203186, - 0.017444821074604988, - 0.011242217384278774, - -0.027350271120667458, - -0.005948617123067379, - 0.0012147878296673298, - -0.023446908220648766, - -0.00705813430249691, - -0.01250546332448721, - 0.004508249461650848, - -0.01242525689303875, - -0.010754297487437725, - -0.026427900418639183, - 0.015399565920233727, - -0.01403606217354536, - 0.011977439746260643, - -0.012445308268070221, - 0.022604744881391525, - -0.012124484404921532, - 0.015693655237555504, - -0.015453035943210125, - -0.000773236679378897, - 0.0050897435285151005, - 0.01183707918971777, - -0.03726908937096596, - -0.004270973149687052, - 0.00039163121255114675, - 0.025919929146766663, - 0.0003701176028698683, - 0.014076165854930878, - -0.01576049253344536, - 0.003639350412413478, - 0.008996447548270226, - 0.017845850437879562, - -0.018901897594332695, - 0.006924457382410765, - -0.013969223946332932, - -0.006630368530750275, - -0.0028539993800222874, - 0.01040673814713955, - 0.009123440831899643, - 0.0017177467234432697, - -0.014731181785464287, - -0.035050053149461746, - 0.005744759924709797, - 0.0015180669724941254, - 0.00788024626672268, - -0.01041342131793499, - -0.0002865696151275188, - 0.0072519658133387566, - 0.010887973941862583, - 0.026748724281787872, - -0.018193410709500313, - 0.004050406627357006, - -0.011609829030930996, - -7.367888611042872e-05, - -0.032857753336429596, - 0.01419647503644228, - 0.0035959056112915277, - -0.040905095636844635, - 0.0019734036177396774, - -0.010393369942903519, - -0.0017695464193820953, - 0.026267487555742264, - -0.0029225086327642202, - -0.010527046397328377, - -0.006693865172564983, - -0.0003580031334422529, - -0.008722410537302494, - 0.01124890148639679, - 0.013147111982107162, - -0.019770797342061996, - 0.0021221190690994263, - 0.0012214715825393796, - -0.002107080304995179, - 0.011629880405962467, - -0.01478465273976326, - 0.015439668670296669, - -0.01763196848332882, - -0.012766133062541485, - -0.01646897941827774, - 0.02954256907105446, - 0.011496203951537609, - 0.025238176807761192, - 0.00483575789257884, - -0.017926057800650597, - 0.004521617200225592, - -0.02148185856640339, - 0.039247505366802216, - -0.010553781874477863, - 0.011696718633174896, - -0.010767664760351181, - -0.003009398700669408, - -0.002006822731345892, - 0.0230057742446661, - -0.021775947883725166, - 0.019530178979039192, - 0.025772884488105774, - -0.01495843194425106, - 0.02471683733165264, - 0.0010084242094308138, - 0.02402171865105629, - -0.01830035261809826, - 0.011041702702641487, - -0.0050061955116689205, - 0.03291122615337372, - -0.004952725023031235, - 0.013294156640768051, - -0.018942000344395638, - -0.02555900067090988, - -0.021401653066277504, - 0.0011203786125406623, - 0.041546743363142014, - -0.007846827618777752, - -0.011549673974514008, - 7.414884021272883e-05, - -0.042429011315107346, - 0.011529622599482536, - -0.004117244854569435, - 0.02908806875348091, - -0.00338202272541821, - -0.005196684971451759, - 0.011616512201726437, - 0.00676738703623414, - -0.003796420758590102, - 0.0009582954808138311, - 0.01269261073321104, - -0.008381534367799759, - 0.01999804750084877, - -0.0023593951482325792, - -0.00865557137876749, - 0.016027847304940224, - 0.009664831683039665, - 0.0015130541287362576, - -0.019556913524866104, - 0.04245574772357941, - 0.02586645819246769, - 0.0063062021508812904, - 0.005153240170329809, - -0.01678980514407158, - -0.01386228296905756, - 0.014811388216912746, - 0.010921393521130085, - 0.018768221139907837, - 0.014316783286631107, - 0.0049393572844564915, - 0.04331127926707268, - -0.0237008947879076, - 0.0041840835474431515, - -0.012959964573383331, - 0.018688013777136803, - 0.037028469145298004, - -0.016067950055003166, - 0.05141209065914154, - 0.005136530380696058, - 0.029007863253355026, - 0.025425324216485023, - -0.023954879492521286, - 0.028633566573262215, - 0.02303251065313816, - -0.010460208170115948, - 0.023126084357500076, - -0.003096288535743952, - -0.010667407885193825, - -0.03454208001494408, - -0.015880802646279335, - 0.007064817938953638, - 0.008521894924342632, - -0.0069712442345917225, - -0.004915963858366013, - -0.00839490257203579, - 0.0009691566810943186, - -0.015934273600578308, - 0.0021471832878887653, - 0.03152098506689072, - 0.009785140864551067, - -0.0016876694280654192, - -0.02924847975373268, - -0.028981126844882965, - 0.003906704019755125, - 0.0237008947879076, - 0.0004012392309959978, - -0.023446908220648766, - -0.0031581141520291567, - 0.014517298899590969, - -0.024262337014079094, - 0.025077765807509422, - 0.015573345124721527, - 0.0043411534279584885, - -0.0016793146496638656, - 0.006844251416623592, - -0.0018915265100076795, - -0.018447397276759148, - 0.01025969348847866, - -0.035023316740989685, - -0.004715448711067438, - 0.021241242066025734, - 0.010633988305926323, - -0.00940416194498539, - -0.014677710831165314, - -0.007947084493935108, - 0.047428522258996964, - 0.009731669910252094, - -0.013474619947373867, - -0.011756873689591885, - -0.002219034591689706, - 0.006870986893773079, - 0.01477128453552723, - 0.005343729630112648, - -0.018754852935671806, - 0.0077198343351483345, - -0.017832482233643532, - -0.0021889572963118553, - -0.0014721156330779195, - -0.019102413207292557, - 0.04868508502840996, - -0.00932395551353693, - -0.005280232988297939, - -0.024422748014330864, - -0.024623263627290726, - 0.008348114788532257, - 0.025572368875145912, - 0.032670605927705765, - 0.0003820231941062957, - -0.00412392895668745, - 0.0069645605981349945, - -0.006864302791655064, - -0.0240484531968832, - -0.05614424869418144, - 0.008869454264640808, - -0.005851701367646456, - 0.02938215807080269, - -0.003926755394786596, - 0.00647329818457365, - -0.010567150078713894, - 0.007552738301455975, - -0.01344788447022438, - 0.008080761879682541, - -0.013889018446207047, - 0.00504629872739315, - 0.0026183940935879946, - -0.02284536324441433, - -0.0017377982148900628, - 0.004839099477976561, - 0.04871182143688202, - 0.013374362140893936, - -0.03309837356209755, - 0.01082781981676817, - 0.015065373852849007, - -0.002820580266416073, - -0.021709110587835312, - -0.00563447643071413, - 0.009063285775482655, - 0.011456100270152092, - 0.017511658370494843, - -0.008528579026460648, - -0.0063062021508812904, - 0.008261225186288357, - -0.009704934433102608, - 0.016562553122639656, - -0.00016657380911055952, - 0.02704281359910965, - 0.012405205518007278, - 0.01761860027909279, - 0.009611360728740692, - 0.011690034531056881, - -0.009297220036387444, - -0.022310655564069748, - 0.026935871690511703, - 0.009096705354750156, - -0.001980087487027049, - 0.017725542187690735, - 0.004277657251805067, - -0.004932673182338476, - -0.02804538980126381, - -0.021388284862041473, - -0.02217697910964489, - 0.018353821709752083, - -0.026989342644810677, - 0.001274106907658279, - 0.014851490966975689, - -0.03558475896716118, - -0.03210916370153427, - 0.01696358434855938, - -0.018434029072523117, - -0.005266865249723196, - -0.004488198086619377, - -0.013381046243011951, - -0.03801767900586128, - 0.004424701444804668, - -0.002088699722662568, - -0.001881500706076622, - -0.008134232833981514, - -0.024476218968629837, - 0.015707021579146385, - 0.013234001584351063, - -0.003428809577599168, - 0.007739885710179806, - -0.014691079035401344, - -0.009638096205890179, - -0.005343729630112648, - -0.010420105420053005, - -0.024436116218566895, - -0.002210679929703474, - -0.04194777458906174, - -0.020399076864123344, - 0.003366983961313963, - -0.011823711916804314, - -0.020719902589917183, - 0.011970756575465202, - 0.030130747705698013, - 0.009257117286324501, - -0.010948128998279572, - 0.021802684292197227, - 0.01614815555512905, - 0.000324583932524547, - 0.013033486902713776, - -0.0015205733943730593, - 0.023593952879309654, - 0.030104011297225952, - -0.0294088926166296, - 0.02585308998823166, - -0.017097260802984238, - -0.019115779548883438, - -0.017190834507346153, - 0.007773305289447308, - 0.02604023739695549, - -0.025264913216233253, - 0.017912689596414566, - 0.004498223774135113, - 0.006316228304058313, - 0.038071148097515106, - 0.00882266741245985, - 0.003555802395567298, - -0.029489098116755486, - -0.02350037917494774, - 0.005373806692659855, - -0.012251477688550949, - -0.002690245397388935, - -0.0055275349877774715, - -0.0037429500371217728, - -0.003196546109393239, - -0.0029358763713389635, - 0.03315184265375137, - 0.0137820765376091, - -0.006717258598655462, - 0.0164957158267498, - 0.006693865172564983, - 0.0020402418449521065, - -0.014356886968016624, - -0.020358974114060402, - 0.015466404147446156, - 0.008448372595012188, - 0.011830395087599754, - -0.005066350102424622, - -0.02100062370300293, - -0.0194900743663311, - -0.01537283044308424, - 0.020626328885555267, - -0.024302439764142036, - -6.208659760886803e-05, - -0.02182941883802414, - 0.024476218968629837, - 0.014303416013717651, - 0.02685566619038582, - 0.005507483612746, - -0.03277754783630371, - -0.017725542187690735, - 0.0021204480435699224, - 0.00036050958442501724, - 0.038579121232032776, - -0.007673047482967377, - 0.002758754650130868, - -0.025812987238168716, - -0.011295688338577747, - -0.018073100596666336, - -0.03590558469295502, - 0.008695675060153008, - -0.006530110724270344, - 0.013929121196269989, - 0.02804538980126381, - 0.011088489554822445, - 0.007372274529188871, - 0.019744060933589935, - 0.013728605583310127, - -0.0008755829185247421, - 0.020104989409446716, - -0.00475220987573266, - -0.02101399004459381, - -0.045931342989206314, - 0.008114180527627468, - 0.011823711916804314, - 0.0010627304436638951, - 0.012933229096233845, - 0.009263801388442516, - 0.024650000035762787, - 0.02132144756615162, - -0.00890287384390831, - -0.003699505003169179, - -0.0034856221172958612, - -0.028847450390458107, - -0.008388218469917774, - -0.009330639615654945, - -0.01160314492881298, - -0.004468146711587906, - -0.0100925974547863, - 0.003300145734101534, - 0.054860953241586685, - -0.011128592304885387, - -0.012177955359220505, - 0.01386228296905756, - -0.013080273754894733, - -0.03887321054935455, - 0.045423369854688644, - -0.009564573876559734, - -0.0127728171646595, - 0.018233513459563255, - -0.005714682396501303, - -0.012625772505998611, - -0.010039126500487328, - 0.008074077777564526, - -0.011997491121292114, - -0.005657869856804609, - -0.005393858067691326, - -0.014998535625636578, - -0.007445796858519316, - -0.0038398655597120523, - 0.008521894924342632, - -0.02287209779024124, - 0.006092319265007973, - -0.014009326696395874, - -0.014129635877907276, - -0.017685439437627792, - 0.0038164721336215734, - -0.028820713981986046, - 0.034221258014440536, - -0.012231425382196903, - -0.0172977764159441, - 0.04777608439326286, - -0.02281862683594227, - 0.021455124020576477, - 0.009330639615654945, - -0.014062797650694847, - 0.029114803299307823, - 0.009477684274315834, - 0.03360634297132492, - 0.03430146351456642, - -0.007131656631827354, - -0.011442732997238636, - -0.04082489013671875, - 0.010052494704723358, - -0.00646995659917593, - 0.018380558118224144, - -0.000666712992824614, - -0.02117440290749073, - -0.03406084328889847, - -0.0044013080187141895, - 0.02772456593811512, - 0.020064884796738625, - 0.013929121196269989, - 0.04355189576745033, - -0.003320197109133005, - -0.005788204725831747, - 0.009892081841826439, - -0.0019934549927711487, - -0.01800626330077648, - -0.004504907876253128, - 0.014691079035401344, - -0.003913387656211853, - -0.013247369788587093, - -0.022765155881643295, - -0.008535263128578663, - 0.022979039698839188, - -0.02049265056848526, - 0.03734929487109184, - 0.010540414601564407, - -0.016335302963852882, - 0.013274104334414005, - -0.015158947557210922, - 0.015011902898550034, - 0.03799094259738922, - 0.01302680280059576, - 0.03916729986667633, - -0.0006011278019286692, - -0.007886930368840694, - 0.0011588106863200665, - 0.006159157957881689, - 0.00466866185888648, - 0.0034755964297801256, - 0.022618111222982407, - 0.029970334842801094, - -0.011362526565790176, - -0.01997131109237671, - 0.014664343558251858, - -0.00466866185888648, - 0.03007727675139904, - -0.005320336204022169, - 0.01049362774938345, - -0.0248505137860775, - -0.02201656624674797, - -0.02320628985762596, - 0.004444753285497427, - 0.00814760010689497, - -0.020038150250911713, - 0.0044781723991036415, - -0.0036326665431261063, - 0.0063062021508812904, - -0.013915752992033958, - -0.020358974114060402, - -0.015827331691980362, - -0.034862905740737915, - -0.0053169941529631615, - -0.01083450298756361, - -0.00017837496125139296, - 0.03510352224111557, - -0.004494881723076105, - -0.03448861092329025, - 0.006316228304058313, - 0.03162792697548866, - -0.032002221792936325, - 0.029676245525479317, - 0.017377981916069984, - 0.01896873489022255, - -0.002987676067277789, - 0.017204202711582184, - 3.783157444559038e-05, - -0.01699031889438629, - 0.012251477688550949, - 0.0156268160790205, - -0.003428809577599168, - -0.00571802444756031, - -0.024730205535888672, - 0.027751300483942032, - -0.021963095292448997, - -0.016843274235725403, - 0.023139450699090958, - -6.899236268509412e-06, - 0.007111604791134596, - -0.03328552097082138, - -0.013133743777871132, - 0.038071148097515106, - 0.01930292695760727, - 0.0011855459306389093, - 0.027751300483942032, - -0.03427472710609436, - -0.0034171128645539284, - 0.030852602794766426, - 0.013768709264695644, - -0.014263313263654709, - -0.03649376332759857, - -0.027831505984067917, - 0.008615468628704548, - 0.029515834525227547, - -0.006152473855763674, - -0.0019516811007633805, - -0.012986700050532818, - -0.01344788447022438, - -0.015586713328957558, - 0.01863454468548298, - 0.0071918112225830555, - -0.005510825663805008, - 0.0005205039633437991, - 0.010473576374351978, - -0.030130747705698013, - 0.005286916624754667, - -0.019717326387763023, - -0.034007374197244644, - 0.013501355424523354, - -0.011128592304885387, - -0.03454208001494408, - 0.006242705974727869, - -0.005273549351841211, - 0.033018164336681366, - 0.0001568613515701145, - -0.044942136853933334, - -0.010353267192840576, - 0.006383066531270742, - -0.04625216871500015, - -0.02954256907105446, - -0.012010859325528145, - 0.003636008594185114, - 0.020225297659635544, - 0.027965184301137924, - -0.020866945385932922, - 0.001525586354546249, - 0.013661767356097698, - 0.024810411036014557, - -0.018714750185608864, - 0.0013250710908323526, - 0.01761860027909279, - -0.025291647762060165, - 0.03916729986667633, - -0.015920905396342278, - -0.014918329194188118, - -0.01880832388997078, - 0.016001110896468163, - 0.005056324414908886, - 0.0014787993859499693, - 0.01066072378307581, - 0.011088489554822445, - -0.012385154142975807, - -0.010146068409085274, - -0.00359256356023252, - 0.003067882265895605, - 0.01985100284218788, - 0.011095172725617886, - -0.03176160529255867, - 0.020278768613934517, - 0.010727562010288239, - 0.0071918112225830555, - -0.036199674010276794, - -0.0007707301992923021, - -0.0009098376031033695, - 0.006700548809021711, - -0.0008688991074450314, - 0.0010602240217849612, - -0.004294366575777531, - -0.017337879166007042, - -0.003950148820877075, - 0.025599105283617973, - 0.008080761879682541, - -0.016174890100955963, - 0.005958642810583115, - 0.01846076361835003, - 0.009524471126496792, - -0.015025271102786064, - 0.009063285775482655, - -0.03122689761221409, - -0.0193162951618433, - 0.005514167249202728, - -0.01471781451255083, - 0.005778179038316011, - -0.0067306263372302055, - 0.001151291304267943, - -0.02368752658367157, - 0.011710086837410927, - -0.014129635877907276, - -0.009450948797166348, - -0.015880802646279335, - 0.028152331709861755, - 0.02386130578815937, - -0.01059388555586338, - -0.0013910740381106734, - 0.00685093505308032, - -0.0010535401524975896, - -0.009791824966669083, - -0.0017578497063368559, - -0.0008914570789784193, - -0.011222166009247303, - -0.017177466303110123, - 0.00882266741245985, - -0.011790292337536812, - -0.013875650241971016, - 0.0010552111780270934, - -0.0059218816459178925, - -0.008241173811256886, - 0.02688240073621273, - 0.19570280611515045, - -0.017230937257409096, - -0.009484367445111275, - 0.03259040042757988, - 0.007231913972645998, - -0.016575921326875687, - 0.007993871346116066, - -0.00906996987760067, - 0.01696358434855938, - 0.0194900743663311, - -0.014744549058377743, - -0.006038848776370287, - -0.019383134320378304, - -0.0061324224807322025, - 0.011997491121292114, - 0.007846827618777752, - -0.041921038180589676, - -0.021749213337898254, - -0.00992550142109394, - 0.02470346912741661, - 0.01850086636841297, - -0.009464316070079803, - -0.0034722546115517616, - -0.015239153057336807, - 0.007833459414541721, - 0.0014612543163821101, - -0.026441268622875214, - 0.021628903225064278, - 0.02252453751862049, - 0.004641926381736994, - -0.01681653968989849, - 0.016268465667963028, - -0.00651340140029788, - -0.016883378848433495, - -0.0009056602139025927, - -0.011756873689591885, - 0.016910113394260406, - -0.010560465976595879, - 0.02034560590982437, - 0.017230937257409096, - 0.0012933228863403201, - -0.007532686926424503, - -0.005116479005664587, - -0.013140427879989147, - -0.006707232911139727, - 0.03510352224111557, - 0.01200417522341013, - 0.0010510337306186557, - -0.014998535625636578, - -0.007987188175320625, - -0.011041702702641487, - -0.0050061955116689205, - 0.0319487527012825, - 0.05314989015460014, - 0.00010239850962534547, - -0.0014662672765552998, - 0.010794400237500668, - -0.00915017630904913, - -0.0052401297725737095, - 0.005363781005144119, - -0.036868058145046234, - 0.013501355424523354, - -0.010273060761392117, - 0.031841810792684555, - 0.001690175849944353, - 0.016081316396594048, - -0.013454568572342396, - 0.02989012934267521, - -0.013875650241971016, - -0.02386130578815937, - 0.0049226474948227406, - -0.009678198955953121, - -0.027082916349172592, - 0.008668939583003521, - -0.032831016927957535, - -0.03208242729306221, - 0.01478465273976326, - 0.0007995542837306857, - 0.025331750512123108, - 0.0016843274934217334, - 0.0046953968703746796, - 0.022564642131328583, - 0.006536794826388359, - -0.005069692153483629, - -0.017257673665881157, - -0.020733268931508064, - 0.007145024370402098, - 0.029515834525227547, - -0.0005351248546503484, - -0.015493139624595642, - -0.002366079017519951, - 0.03341919556260109, - 0.0024546398781239986, - 0.006399776320904493, - 0.007004663348197937, - 9.148505341727287e-05, - -0.007399010006338358, - 0.017097260802984238, - -0.008956344798207283, - 0.00788024626672268, - -0.014891593717038631, - 0.05052982643246651, - 0.040771421045064926, - -0.020452547818422318, - -0.02402171865105629, - -0.0026584970764815807, - 0.0034789382480084896, - 0.01999804750084877, - 0.0023644082248210907, - -0.01864791102707386, - -0.00915017630904913, - 0.004942699335515499, - 0.0062226541340351105, - 0.004595139529556036, - 0.008916241116821766, - 0.01233836729079485, - -0.010433472692966461, - 0.010894658043980598, - -0.00858204998075962, - -0.02704281359910965, - -0.006620342843234539, - -0.024903984740376472, - -0.001002575852908194, - -0.0009566245134919882, - -0.020078253000974655, - -0.025171339511871338, - -0.01947670802474022, - -0.006647078320384026, - -0.007104921154677868, - -0.01695021614432335, - 0.04165368527173996, - -0.016321934759616852, - -0.0064298533834517, - -0.02753741852939129, - 0.009437580592930317, - 0.01166998315602541, - -0.0035223832819610834, - -0.01242525689303875, - 0.0014069481985643506, - 0.013454568572342396, - 0.019449971616268158, - -0.01815330795943737, - 0.0008400750230066478, - 0.012538882903754711, - -0.01025969348847866, - -0.0059285652823746204, - 0.017779013141989708, - -0.01410290040075779, - 0.004588455427438021, - -0.022217081859707832, - -0.006747335661202669, - -0.0010059177875518799, - -0.007505951449275017, - -0.00521339476108551, - 0.023914776742458344, - 0.006225996185094118, - -0.032670605927705765, - -0.023487010970711708, - -0.023286495357751846, - 0.016335302963852882, - -0.02670862153172493, - 0.025946663692593575, - 0.017017055302858353, - -0.03903362154960632, - -0.00045491880155168474, - 0.02791171334683895, - -0.17078545689582825, - 0.008963028900325298, - 0.00931727234274149, - -0.028633566573262215, - 0.01813993975520134, - 0.0265214741230011, - 0.013995959423482418, - -0.005487432237714529, - -0.008675623685121536, - 0.02050601877272129, - 0.008040658198297024, - 0.010146068409085274, - -0.02200319804251194, - -0.01083450298756361, - -0.010206222534179688, - 0.003923413809388876, - -0.012625772505998611, - 0.036199674010276794, - 0.02807212434709072, - 0.02333996631205082, - 0.014209842309355736, - -0.03291122615337372, - 0.0026401164941489697, - -0.0024763625115156174, - 0.004498223774135113, - 0.010466892272233963, - -0.014089533127844334, - 0.030023805797100067, - -0.008615468628704548, - -0.004969434347003698, - -0.0012214715825393796, - 0.016736334189772606, - 0.044942136853933334, - 0.0164957158267498, - -0.011509571224451065, - -0.01912914775311947, - -0.018073100596666336, - -0.00932395551353693, - -0.013053538277745247, - 0.010279744863510132, - 0.015305992215871811, - 0.007873563095927238, - 0.005243471823632717, - 0.009831927716732025, - -0.02432917430996895, - 0.00923706591129303, - 0.03152098506689072, - -0.0028924313373863697, - 0.015680287033319473, - 8.03105067461729e-05, - 0.03577190637588501, - -0.04248248413205147, - 0.01143604889512062, - 0.03884647414088249, - 0.019369766116142273, - 0.01846076361835003, - 0.009009815752506256, - -0.0008989764028228819, - -0.0031447464134544134, - 0.021735845133662224, - -0.003193204291164875, - 0.0006403953302651644, - -2.170942389057018e-05, - -0.013835547491908073, - -0.014477196149528027, - -0.02943562902510166, - 0.008896189741790295, - -0.010486943647265434, - -0.016054581850767136, - -0.004441411234438419, - -0.01059388555586338, - -0.01437025424093008, - 0.007566106040030718, - -0.03023768961429596, - 0.0035023316740989685, - 0.009477684274315834, - 0.0021388286259025335, - -0.0022474408615380526, - -0.004097193479537964, - -0.03454208001494408, - -0.005547586362808943, - 0.05459360033273697, - -0.0194900743663311, - -0.025131234899163246, - 0.00538049079477787, - 0.009464316070079803, - -0.01780574768781662, - -0.000877253885846585, - -0.006787438876926899, - -0.001609134254977107, - 0.00881598424166441, - -0.02887418493628502, - -0.011817027814686298, - -0.026454634964466095, - 0.01614815555512905, - 0.01896873489022255, - 0.009678198955953121, - -0.000940750353038311, - -0.004441411234438419, - -0.0013100324431434274, - 0.012137851677834988, - -0.011262268759310246, - -0.0359857901930809, - 0.004792312625795603, - 0.018420660868287086, - 0.009083337150514126, - 0.0076529961079359055, - 0.019075676798820496, - 0.03865932673215866, - 0.011776925064623356, - -0.022564642131328583, - -0.007833459414541721, - 0.0037529757246375084, - -0.012679243460297585, - -0.0030010438058525324, - 0.00890287384390831, - 0.01025969348847866, - -0.015680287033319473, - 0.018393926322460175, - -0.0463591106235981, - 0.043444953858852386, - 0.013080273754894733, - -0.018046366050839424, - 0.007211862597614527, - -0.028098860755562782, - -0.028286008164286613, - -0.06582245230674744, - -0.0005819117650389671, - 0.027671094983816147, - 0.019423237070441246, - 0.013568193651735783, - 0.018420660868287086, - -0.0022842020262032747, - 0.005116479005664587, - -0.011289004236459732, - 0.02570604532957077, - -0.02640116587281227, - -0.03192201629281044, - -0.0041072191670536995, - -0.012826287187635899, - 0.018380558118224144, - 0.0006107357912696898, - -0.004892570432275534, - 0.0016275148373097181, - -0.020733268931508064, - 0.0209872554987669, - -0.0012607391690835357, - -0.011756873689591885, - -0.009397477842867374, - -0.015840699896216393, - -0.0037429500371217728, - -0.0002441690012346953, - -0.03860585391521454, - 0.009283852763473988, - 0.03531740605831146, - -0.005337045527994633, - 0.024462850764393806, - -0.014691079035401344, - 0.023754363879561424, - -0.022711684927344322, - -0.018273616209626198, - -0.015346094965934753, - -0.014076165854930878, - -0.031681399792432785, - 0.025933295488357544, - -0.007091553416103125, - 0.015747126191854477, - -0.009517787024378777, - 0.029676245525479317, - -0.005855043418705463, - 0.001549815176986158, - -0.00991213321685791, - -0.013635031878948212, - 0.003993594087660313, - 0.020211929455399513, - -0.0147044463083148, - 0.0037162145599722862, - -0.010640672408044338, - 0.006727284286171198, - 0.015078741125762463, - 0.011041702702641487, - -0.003786394838243723, - 0.002907470101490617, - -0.0007552738534286618, - -0.02216361090540886, - 0.020252032205462456, - -0.00705813430249691, - -0.009357375092804432, - -0.01293991319835186, - 0.03323204815387726, - 0.0275641530752182, - -0.0038933362811803818, - -0.033338990062475204, - -0.0302109532058239, - 0.015867434442043304, - -0.0164957158267498, - -0.018955368548631668, - 0.0007189304451458156, - -0.013461252674460411, - 0.0031798365525901318, - -0.04430048540234566, - 0.004053748678416014, - -0.0120242265984416, - -0.003432151395827532, - 0.010694142431020737, - -0.009437580592930317, - -0.026240753009915352, - -0.028499890118837357, - 0.025104500353336334, - 0.0027420450933277607, - 0.024155395105481148, - 0.026762092486023903, - -0.007459164597094059, - -0.016709597781300545, - 0.021201137453317642, - -0.024436116218566895, - 0.02702944539487362, - 0.02049265056848526, - 0.014263313263654709, - -0.006760703399777412, - -0.01680317148566246, - 0.02471683733165264, - -0.013494671322405338, - -0.009143492206931114, - -0.010867922566831112, - 0.012705978006124496, - -0.031494252383708954, - -0.012111117132008076, - -0.07031399011611938, - 0.028927655890583992, - 0.009651463478803635, - -0.0015606764936819673, - -0.008388218469917774, - 0.0030645402148365974, - 0.019396500661969185, - 0.016388773918151855, - 0.02551889792084694, - 0.011970756575465202, - 0.004113903269171715, - 0.012545566074550152, - 0.0023777757305651903, - -0.020078253000974655, - -0.014517298899590969, - -0.020078253000974655, - -0.0022474408615380526, - 0.017885953187942505, - 0.022257184609770775, - 0.014022694900631905, - -0.003086262848228216, - -0.004407992120832205, - -0.007920349948108196, - 0.005691288970410824, - -0.018099837005138397, - 0.005139872431755066, - -0.009577942080795765, - 0.014209842309355736, - -0.01863454468548298, - -0.014343518763780594, - 0.007673047482967377, - -0.021134300157427788, - -0.007612892892211676, - 0.007606209255754948, - 0.0031898622401058674, - -0.007051450200378895, - -0.010740929283201694, - 0.018246881663799286, - 0.02181605063378811, - 0.038552384823560715, - -0.028179066255688667, - -0.007913665845990181, - 0.02702944539487362, - -0.010707510635256767, - 0.005103111267089844, - -0.003799762576818466, - -0.0003506926877889782, - -0.005945275072008371, - 0.005624450743198395, - -0.021054092794656754, - 0.02791171334683895, - 0.010981547646224499, - 0.0029542569536715746, - -0.024596529081463814, - 0.0034522030036896467, - -0.007218546234071255, - 0.016883378848433495, - 0.017431452870368958, - 0.026508105918765068, - -0.029997071251273155, - 0.05710672214627266, - 0.013414465822279453, - 0.03542434796690941, - -0.007332171779125929, - 0.030478306114673615, - -0.004481514450162649, - -0.010500311851501465, - -0.02435591071844101, - 0.0118504473939538, - -0.03074566088616848, - -0.01682990789413452, - 0.004608507268130779, - 0.0019784164614975452, - 0.03277754783630371, - -0.007766621187329292, - -0.017418084666132927, - -0.0014052771730348468, - 0.01951681077480316, - -0.00975840538740158, - -0.0037262404803186655, - 0.02201656624674797, - 0.013568193651735783, - -0.013875650241971016, - 0.0027420450933277607, - 0.019449971616268158, - 0.0035390928387641907, - -0.01815330795943737, - 0.002025203313678503, - -0.013995959423482418, - 0.015987742692232132, - -0.004959408659487963, - 0.01227152906358242, - 0.004361205268651247, - -0.03109322115778923, - 0.008702359162271023, - 0.006837567780166864, - 0.001127062365412712, - -0.01319389883428812, - 0.01260572113096714, - 0.013080273754894733, - 0.0030361339449882507, - 0.007272017188370228, - 0.006159157957881689, - -0.011676667258143425, - -0.03259040042757988, - 0.012973331846296787, - 0.015052005648612976, - -0.039247505366802216, - -0.03975547477602959, - 0.018567705526947975, - 0.014691079035401344, - 0.01302680280059576, - -0.03480943664908409, - -0.007639628369361162, - -0.032483458518981934, - 0.02097388729453087, - -0.02753741852939129, - -0.017672071233391762, - -0.020960519090294838, - 0.012472043745219707, - 0.01880832388997078, - 0.008007239550352097, - -0.013728605583310127, - 0.016669495031237602, - 0.015305992215871811, - -0.023607321083545685, - 0.008080761879682541, - -0.02219034545123577, - 0.0033318938221782446, - -0.02438264526426792, - 0.019717326387763023, - 0.0024128658697009087, - -0.011262268759310246, - -0.01645561307668686, - -0.03226957470178604, - -0.030291158705949783, - 0.002591658616438508, - 0.008561997674405575, - 0.024823779240250587, - 0.10934761166572571, - 0.021535329520702362, - -0.010908025316894054, - 0.0003782635321840644, - -0.012806235812604427, - 0.006576898042112589, - 0.011529622599482536, - 0.0057547856122255325, - -0.0077131506986916065, - -0.06924457103013992, - 0.014169739559292793, - -0.009377426467835903, - -0.0014996863901615143, - -0.03884647414088249, - -0.006897721905261278, - -0.007171759381890297, - 0.009557889774441719, - 0.002989347092807293, - -0.028098860755562782, - 0.0046953968703746796, - 0.02303251065313816, - -0.016589289531111717, - 0.010286428965628147, - 0.03146751597523689, - -0.021602168679237366, - -0.025291647762060165, - 0.021441755816340446, - -0.014396989718079567, - -0.004889228381216526, - -0.007131656631827354, - -0.009283852763473988, - -0.012639139778912067, - -0.05609077960252762, - -0.017418084666132927, - 0.018607808277010918, - -0.012659191153943539, - 0.0029575987718999386, - -0.020064884796738625, - 0.009651463478803635, - 0.01143604889512062, - -0.007586157415062189, - 0.04256268963217735, - -0.01015943568199873, - -0.0005986213800497353, - 0.00718512712046504, - 0.020064884796738625, - -0.013000067323446274, - -0.021722476929426193, - -0.018180042505264282 - ], - "sparse": "SparseEmbedding(values=array([1.65647059, 1.65647059, 1.65647059, 1.65647059, 1.65647059,\n 1.65647059, 1.65647059, 1.65647059]), indices=array([2077811411, 2031875777, 1243460651, 1841900287, 479102221,\n 164058840, 1928848833, 1863532592]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 25, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 9 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000026.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000026.json deleted file mode 100644 index 1f464a5a080585e6c2dfb224f181aff64110486a..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000026.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000026", - "content": "Abbildung 11: Monatlicher Heiz- und K\u00fchlbedarf im Fallstudiengebiet Gromb\u00fchl mit und", - "embedding": { - "dense": [ - 0.017470531165599823, - 0.00937558151781559, - 0.007036741357296705, - -0.019896993413567543, - 0.013844316825270653, - 0.021191107109189034, - -0.023118795827031136, - -0.016216859221458435, - 0.0072928681038320065, - 0.007623136509209871, - 0.021191107109189034, - 0.017780577763915062, - 0.015502399764955044, - -0.01790190115571022, - -0.006420015823096037, - 0.00975303165614605, - 0.005752738565206528, - 0.019371259957551956, - 0.021096743643283844, - -0.008930730633437634, - -0.030007254332304, - 0.024278106167912483, - 0.00046465074410662055, - 0.010170922614634037, - 0.015097989700734615, - -0.010090040042996407, - -0.0019394850824028254, - -0.053058650344610214, - -0.025167809799313545, - 0.023145757615566254, - 0.012718708254396915, - -0.025572219863533974, - -0.008708304725587368, - -0.028982747346162796, - -0.010076560080051422, - -0.014491373673081398, - -0.0021029342897236347, - -0.023280560970306396, - 0.006042565684765577, - -0.012064911425113678, - 0.020463168621063232, - 0.007164804730564356, - 0.011957068927586079, - 0.00496413791552186, - 0.011559397913515568, - 0.011181948706507683, - -0.007933184504508972, - -0.0028392982203513384, - -0.04529396817088127, - 0.015866369009017944, - 0.002584856702014804, - 0.02946804091334343, - -0.00884310808032751, - -0.017281806096434593, - -0.018791604787111282, - -0.001438184641301632, - -0.010143961757421494, - 0.01670215092599392, - -0.008870068937540054, - -0.0067637646570801735, - -0.0076837982051074505, - -0.0037374263629317284, - -0.0015039013233035803, - -0.004505806136876345, - -0.043191034346818924, - -0.002082713646814227, - -0.019344298169016838, - -0.010272025130689144, - -0.006436866242438555, - -0.03251459822058678, - 0.034051358699798584, - 0.03445576876401901, - -0.008816147223114967, - -0.032325875014066696, - 0.0015595076838508248, - -0.03415920212864876, - 0.013608410954475403, - 0.0029892672318965197, - -0.0018097367137670517, - 0.014909264631569386, - 0.03933565318584442, - -0.016809994354844093, - -0.02647540345788002, - 0.015434998087584972, - 0.02155507542192936, - 0.027338145300745964, - -0.012927653267979622, - 0.012482802383601665, - -0.010467490181326866, - -0.0009950181702151895, - 0.026906773447990417, - 0.019169054925441742, - -0.019357779994606972, - 0.00913967564702034, - 0.004054214805364609, - -0.010218103416264057, - -0.007825342006981373, - 0.008917249739170074, - 0.003690245095640421, - -0.008923990651965141, - 0.007474852725863457, - 0.016028134152293205, - 0.0012503023026511073, - -0.000888017937541008, - -0.02833569049835205, - 0.015434998087584972, - 0.01492274459451437, - -0.007495073135942221, - 0.02710897848010063, - -0.017133522778749466, - -0.023738892748951912, - 0.029009709134697914, - -0.015596762299537659, - -0.026327118277549744, - -0.004849554970860481, - -0.02962980419397354, - 0.008445437997579575, - -0.03251459822058678, - -0.018832046538591385, - 0.00045622550533153117, - -0.013871277682483196, - -0.005169713404029608, - 0.01825239136815071, - -0.006723323371261358, - 0.027472948655486107, - 0.018953368067741394, - -0.017254844307899475, - 0.005836990661919117, - -0.022930070757865906, - -0.0024348879233002663, - 0.002094509080052376, - 0.00980021245777607, - 0.03920084983110428, - 0.010373127646744251, - -0.001491263508796692, - 0.03388959541916847, - -0.031031761318445206, - -0.009355361573398113, - -0.020934980362653732, - -0.004745082464069128, - -0.006463826633989811, - 0.031085681170225143, - -0.022525660693645477, - -0.01587984897196293, - -0.006730063818395138, - 0.0008635848062112927, - 0.0025225100107491016, - 0.015273233875632286, - -0.021218067035079002, - -0.01679651252925396, - 0.0019377999706193805, - -0.015569801442325115, - 0.025774424895644188, - -0.0028106526006013155, - 0.021662918850779533, - -0.0043069710955023766, - -0.03221803158521652, - 0.006420015823096037, - -0.008135389536619186, - 0.010501191020011902, - 0.0006689622532576323, - -0.016149457544088364, - 0.022148210555315018, - 0.01792886294424534, - 0.0065480787307024, - 0.02032836526632309, - -0.00169009855017066, - -0.01670215092599392, - 0.014491373673081398, - -0.033269498497247696, - 0.02313227765262127, - 0.025235211476683617, - -0.021851643919944763, - 0.02306487411260605, - 0.0017507601296529174, - 0.014060002751648426, - -0.01029224507510662, - 0.00024222499632742256, - 0.01597421243786812, - -0.027445988729596138, - -0.0347253754734993, - 0.015178871341049671, - -0.004930437076836824, - -0.00359251257032156, - -0.02470947802066803, - -0.004236199427396059, - 0.010346166789531708, - 0.0259361881762743, - 0.013392725959420204, - -0.0036464340519160032, - 0.00335660669952631, - 0.015947250649333, - 0.011640280485153198, - 0.01334554422646761, - -0.6177234649658203, - 0.003996923100203276, - -0.01597421243786812, - 0.009207077324390411, - 0.010615773499011993, - 0.006140298210084438, - 0.011916627176105976, - -0.0017271696124225855, - -0.02628667838871479, - -0.003562181955203414, - -0.004441774450242519, - -0.011620059609413147, - -0.01334554422646761, - -0.0025241950061172247, - 0.010258544236421585, - -0.010743836872279644, - 0.0030010624323040247, - -0.006544708739966154, - 0.011498736217617989, - 0.00679072504863143, - 0.0019479102920740843, - 0.014868823811411858, - 0.00594146316871047, - 0.006386314518749714, - 0.0061032273806631565, - -0.010400088503956795, - 0.02376585267484188, - -0.020921500399708748, - -0.00011142349831061438, - 0.02216169238090515, - -0.014046522788703442, - 0.027122460305690765, - -0.009867614135146141, - -0.003243708750233054, - 0.018104106187820435, - -0.006669402122497559, - -0.051764536648988724, - 0.01698523759841919, - 0.010932561941444874, - 0.018589399755001068, - -0.018265871331095695, - -0.0199778750538826, - 0.03801457956433296, - -0.005995384883135557, - -0.0014651452656835318, - 0.029198432341217995, - 0.013722994364798069, - -0.011350452899932861, - 0.010595553554594517, - 0.0010152386967092752, - 0.010400088503956795, - 0.003838529111817479, - -0.004408073611557484, - -0.013433166779577732, - 0.0036936153192073107, - 0.010258544236421585, - 0.024062421172857285, - -0.0005472178454510868, - 0.0011820580111816525, - 0.019735228270292282, - 0.006362724117934704, - -0.0044990661554038525, - 0.022485220804810524, - -0.011734643019735813, - -0.010150701738893986, - 0.04529396817088127, - -0.021824682131409645, - 0.015812447294592857, - 0.017200924456119537, - -0.012974835000932217, - 0.0010447269305586815, - 0.010332686826586723, - 0.01724136434495449, - 0.011013444513082504, - -8.846478158375248e-05, - 0.017470531165599823, - 0.03790673613548279, - -0.022525660693645477, - 0.002583171706646681, - 0.005277556367218494, - -0.009874355047941208, - -0.03672046586871147, - 0.00679072504863143, - -0.02127198874950409, - 0.016783032566308975, - -0.03130136802792549, - -0.0102450642734766, - 0.0064705670811235905, - 0.0030246530659496784, - 0.013183780014514923, - 0.011101066134870052, - 0.031085681170225143, - -0.005624675191938877, - 0.008431957103312016, - 0.003078574314713478, - 0.046318475157022476, - -0.0122603764757514, - 0.026205796748399734, - 0.023631049320101738, - -0.030438624322414398, - -0.006750284228473902, - -0.031597934663295746, - 0.03316165506839752, - 0.024722957983613014, - 0.030276861041784286, - -0.00013585663691628724, - -0.0252082496881485, - -0.003172936849296093, - 0.012934393249452114, - -0.02164943888783455, - 0.0021551705431193113, - -0.013952160254120827, - -0.023334482684731483, - 0.0023321001790463924, - -0.0010261915158480406, - -0.028443533927202225, - 0.042220450937747955, - -0.013332064263522625, - 0.0314631313085556, - -0.003243708750233054, - 0.047585628926754, - -0.0035352210979908705, - 0.026623686775565147, - -0.02621927671134472, - -0.0034425437916070223, - 0.008236492052674294, - 0.030007254332304, - -0.02105630375444889, - -0.006163889076560736, - -0.006490787491202354, - 0.024628594517707825, - 0.02501952461898327, - 0.02332100085914135, - -0.006251511164009571, - 0.04133074730634689, - 0.010015898384153843, - 0.021164145320653915, - -0.010096780024468899, - 0.008661122992634773, - -0.025383494794368744, - -0.006254881154745817, - 0.004418184049427509, - 0.013028755784034729, - -0.005520202219486237, - 0.0007447891985066235, - -0.0015434997621923685, - -0.0008972856448963284, - 0.009227298200130463, - -0.000994175672531128, - 0.018926408141851425, - -0.019236456602811813, - -0.006399794947355986, - 0.0025090298149734735, - 0.010103520937263966, - 0.017659256234765053, - -0.019357779994606972, - -0.009422763250768185, - 0.003865489736199379, - -0.007495073135942221, - -0.0002656049910001457, - -0.005655006039887667, - 0.011923367157578468, - -0.015529360622167587, - 0.024385949596762657, - -0.013143339194357395, - -0.005159602966159582, - 0.025895748287439346, - 0.016648229211568832, - 0.00012848456390202045, - -0.023873696103692055, - 0.007939924485981464, - 0.0064705670811235905, - 0.00048697757301852107, - 0.015745045617222786, - -0.02849745564162731, - 0.0072524272836744785, - -0.019586944952607155, - -0.011795304715633392, - -0.014585736207664013, - -0.006746914237737656, - 0.03992879018187523, - -0.0026354079600423574, - -0.0065885200165212154, - 0.004256419837474823, - 0.0204496867954731, - 0.018872486427426338, - 0.025113888084888458, - 0.01660778932273388, - -0.01437005028128624, - -0.009416023269295692, - 0.00039198322338052094, - 0.014033041894435883, - 0.00896443147212267, - 0.02496560476720333, - -0.002701124642044306, - 0.003349866485223174, - -0.010770797729492188, - 0.008276933804154396, - 0.012961354106664658, - 0.0027331404853612185, - 0.016904355958104134, - 0.012738928198814392, - 0.02480383962392807, - -0.005924612749367952, - 0.06114685907959938, - -0.032703325152397156, - 0.0018518627621233463, - -0.010272025130689144, - 0.047990038990974426, - 0.01587984897196293, - 0.017726657912135124, - -0.04033320024609566, - -0.007522033993154764, - 0.005200044251978397, - 0.0029336607549339533, - 0.010015898384153843, - -0.012509762309491634, - -0.006655921693891287, - 0.006858126726001501, - -0.023347962647676468, - 0.012098612263798714, - -0.0004511704028118402, - 0.022889630869030952, - 0.016823474317789078, - -0.014410492032766342, - 0.017780577763915062, - -0.002505659591406584, - -0.015044067986309528, - 0.01912861317396164, - 0.0015662478981539607, - -0.0036059929989278316, - 0.01787494122982025, - -0.028093045577406883, - -0.004731602035462856, - -0.002453423338010907, - 0.014221766963601112, - 0.022606542333960533, - -0.02407590113580227, - 0.03211018815636635, - -0.0024365729186683893, - 0.01783449947834015, - 0.032945968210697174, - -0.022390857338905334, - -0.019586944952607155, - 0.005132642574608326, - 0.025612661615014076, - 0.03313469514250755, - 0.017200924456119537, - -0.018387194722890854, - 0.017510971054434776, - 0.004532766994088888, - 0.03558811917901039, - 0.010090040042996407, - -0.0015898385317996144, - 0.007811861578375101, - 0.0005518517573364079, - 0.008445437997579575, - 0.008688083849847317, - 0.019182534888386726, - 0.022862669080495834, - 0.011444815434515476, - -0.003865489736199379, - -0.013163559138774872, - -0.007299608085304499, - 0.030519507825374603, - -0.013035496696829796, - -0.02171684056520462, - -0.036450859159231186, - -0.013628631830215454, - 0.008849848061800003, - -0.006851386744529009, - 0.0078657828271389, - -0.023159237578511238, - -0.009813693352043629, - -0.008762226440012455, - -0.010662955231964588, - 0.012145793065428734, - 0.022997472435235977, - 0.02297051250934601, - 0.0011955383233726025, - 0.006453716661781073, - -0.056186091154813766, - -0.012590644881129265, - 0.03488713875412941, - -0.001187955611385405, - -0.0048124841414391994, - -0.020099198445677757, - 0.008870068937540054, - -0.018602879717946053, - 0.0055168322287499905, - -0.016621269285678864, - -0.016284260898828506, - -0.0004549617297016084, - 0.005564013496041298, - 0.009867614135146141, - -0.002583171706646681, - 0.013163559138774872, - -0.029387157410383224, - 0.002541045658290386, - 0.007144584320485592, - 0.010635994374752045, - 0.002957251388579607, - -0.030249901115894318, - -0.021608997136354446, - 0.0643821433186531, - 0.018575919792056084, - 0.005189933814108372, - -0.0026303527411073446, - -0.014397011138498783, - -0.014707059599459171, - 0.015434998087584972, - 0.009847394190728664, - -0.005992014426738024, - 0.01437005028128624, - 0.003983442671597004, - -0.0005644895718432963, - -0.02338840253651142, - 0.006800835486501455, - 0.02798520214855671, - 0.011586358770728111, - -0.0046203890815377235, - -0.026111433282494545, - -0.026610206812620163, - -0.0026185575406998396, - 0.0009596322779543698, - 0.024695996195077896, - 0.01005633920431137, - 0.0008206161437556148, - 0.009921535849571228, - -0.0022259424440562725, - -0.04116898030042648, - -0.02030140347778797, - 0.008634163066744804, - 0.0015864684246480465, - 0.0013969010906293988, - 0.00290669989772141, - 0.009935016743838787, - -0.007346789352595806, - 0.0095171257853508, - -0.002675849013030529, - -0.00636609410867095, - -0.020341845229268074, - 0.02537001483142376, - -0.009968717582523823, - -0.01625729911029339, - 0.018616359680891037, - -0.006352613680064678, - 0.03990183025598526, - 0.006639071274548769, - -0.019330818206071854, - 0.0247768796980381, - 0.022458259016275406, - 0.005018059629946947, - -0.021487673744559288, - -0.016688670963048935, - 0.0004975090851075947, - 0.02367149107158184, - 0.012637825682759285, - -0.031597934663295746, - -0.014181326143443584, - 0.0010135537013411522, - -0.013136599212884903, - 0.02981852926313877, - 0.002160225762054324, - 0.018508518114686012, - 0.028039123862981796, - 0.006878347601741552, - -0.008202791213989258, - 0.016270779073238373, - 0.025882268324494362, - -0.013487087562680244, - 0.028416574001312256, - 0.023361442610621452, - -0.020247481763362885, - 0.03604644909501076, - -0.006436866242438555, - -0.0014921060064807534, - 0.0008147185435518622, - -0.004239569418132305, - -0.004681050777435303, - -0.006302062422037125, - -0.015367596410214901, - -0.005267445929348469, - 0.01648646593093872, - -0.03704399615526199, - -0.03205626830458641, - 0.010932561941444874, - -0.011903147213160992, - -0.02609795331954956, - -0.03262244164943695, - -0.014936225488781929, - -0.02685285359621048, - 0.003484669839963317, - -0.008088208734989166, - -0.015340635553002357, - -0.007353529799729586, - -0.02911755070090294, - 0.00676039420068264, - 0.03113960288465023, - -0.0026202425360679626, - 0.0009250888833776116, - 0.0015915235271677375, - 0.012213194742798805, - -0.00043179240310564637, - -0.015017107129096985, - 0.015839409083127975, - 0.013783655129373074, - -0.011539177969098091, - -0.03529154881834984, - 0.029198432341217995, - -0.004104766063392162, - -0.010528151877224445, - -0.012523243203759193, - 0.008580241352319717, - 0.0072928681038320065, - -0.010582072660326958, - 0.0038351588882505894, - -0.016405582427978516, - -0.03658566251397133, - -0.011215649545192719, - 0.0076635777950286865, - -0.013102898374199867, - 0.00453950697556138, - -0.013925199396908283, - 0.012725448235869408, - 0.031597934663295746, - 0.0025359904393553734, - 0.00032036888296715915, - 0.014774461276829243, - 0.01853547804057598, - -0.020153120160102844, - 0.05580864101648331, - -0.010588813573122025, - 0.008883548900485039, - 0.0348062589764595, - -0.006901938002556562, - 0.013979120180010796, - -0.018872486427426338, - 0.005173083394765854, - 0.010211363434791565, - -0.030169017612934113, - -0.0199778750538826, - 0.02202688902616501, - -0.01606857404112816, - 0.012698487378656864, - -0.013123118318617344, - 0.05357090383768082, - 0.005651635583490133, - -0.0030532986856997013, - 0.02136635035276413, - -0.006810945924371481, - -0.011141507886350155, - -0.02468251623213291, - -0.0011677350848913193, - -0.005446060560643673, - 0.015704605728387833, - -0.0157315656542778, - -0.0065480787307024, - -0.04084545373916626, - -0.015044067986309528, - -0.010764057748019695, - 0.009389062412083149, - -0.022620024159550667, - 0.005503351800143719, - -0.011451555415987968, - 0.01740312948822975, - -0.011485256254673004, - -0.011310012079775333, - 0.0029100701212882996, - -0.0518723763525486, - -0.003885710146278143, - -0.0045428769662976265, - 0.015745045617222786, - 0.029791569337248802, - -0.011795304715633392, - -0.0029134401120245457, - -0.013702773489058018, - 0.01597421243786812, - 0.009523865766823292, - -0.04009055346250534, - -0.003477929625660181, - -0.0020490128081291914, - 0.0242646262049675, - 0.004927067086100578, - 0.035507235676050186, - 0.010285505093634129, - 0.007070442195981741, - -0.0202340018004179, - -0.01519235223531723, - 0.0051629734225571156, - 0.015583282336592674, - -0.0009385691955685616, - -0.025572219863533974, - -0.006955859251320362, - 0.01815802790224552, - -0.0010952783050015569, - 0.016338180750608444, - -0.0026977546513080597, - 0.014936225488781929, - 0.02117762714624405, - -0.010076560080051422, - -0.008465657941997051, - -0.03680134937167168, - -0.0202340018004179, - 0.02376585267484188, - -0.003450969001278281, - 0.008519579656422138, - -0.008391516283154488, - 0.004566467832773924, - -0.020180080085992813, - 0.040548887103796005, - -0.007832081988453865, - -0.007036741357296705, - -0.0156911239027977, - 0.007427671458572149, - -0.03224499151110649, - 0.03634301573038101, - -0.005260705482214689, - -0.029872450977563858, - -0.0005274186260066926, - 0.02739206701517105, - -0.008701564744114876, - -0.015906810760498047, - 0.03437488526105881, - 0.003280779579654336, - 0.0006955016870051622, - 0.02376585267484188, - -0.026259716600179672, - 0.005944833159446716, - 0.0004819224413949996, - -0.0025814867112785578, - -0.007326568942517042, - -0.008061247877776623, - 0.009557566605508327, - 0.0038958205841481686, - -0.021946005523204803, - -0.01610901579260826, - -0.0209619402885437, - 0.011276311241090298, - 0.007602916099131107, - -0.004748452454805374, - 0.04564445838332176, - -0.015273233875632286, - 0.011532437056303024, - 0.013561230152845383, - -0.03343126177787781, - 0.01329836342483759, - 0.02235041745007038, - 0.03256852179765701, - 0.023401884362101555, - -0.014585736207664013, - -0.04567141830921173, - -0.047639548778533936, - -0.0022006668150424957, - -0.012954614125192165, - 0.004529397003352642, - 0.03537243232131004, - -0.010150701738893986, - -0.02376585267484188, - -0.006339133717119694, - 0.005446060560643673, - 0.006649181712418795, - -0.0062784720212221146, - 0.03874251991510391, - 0.011215649545192719, - -0.02871314063668251, - 0.006382944528013468, - -0.009052053093910217, - -0.0022360526490956545, - 0.03149009123444557, - -0.015394557267427444, - 0.009921535849571228, - -0.0012781054247170687, - -0.023819774389266968, - 0.00847913883626461, - 0.028470493853092194, - 0.0005876588984392583, - 0.03246067836880684, - -0.003189787268638611, - 0.0015898385317996144, - 0.008047767914831638, - -0.01755141280591488, - 0.001181215513497591, - 0.034590572118759155, - 0.00036144183832220733, - 0.045401811599731445, - 0.004906846676021814, - 0.0019158944487571716, - -0.016931315883994102, - -0.005853841081261635, - -0.00549324182793498, - -0.019627386704087257, - -0.015623723156750202, - 0.01260412484407425, - 0.01714700274169445, - -0.01257716491818428, - 0.004492325708270073, - -0.0014600901631638408, - 0.013756695203483105, - 0.00015470804646611214, - 0.00877570640295744, - -0.010865160264074802, - -0.028039123862981796, - -0.009126195684075356, - 0.003659914480522275, - 0.00230008433572948, - -0.01408696360886097, - -0.019681308418512344, - -0.018697243183851242, - -0.03351214528083801, - -0.0005291036213748157, - -0.016742592677474022, - -0.0027483059093356133, - -0.014990146271884441, - -0.013763435184955597, - -0.018171507865190506, - -0.008957691490650177, - 0.013082677498459816, - -0.013190519995987415, - -0.05152188986539841, - 0.0061773695051670074, - 0.04060280695557594, - -0.027216821908950806, - 0.03604644909501076, - 0.0247768796980381, - 0.0023573758080601692, - -0.0015148540260270238, - -0.006211070343852043, - 0.0031038501765578985, - -0.03690919280052185, - 0.02553177811205387, - 0.00017187443154398352, - -0.004384483210742474, - -0.00575947854667902, - -0.02911755070090294, - 0.028982747346162796, - -0.00830389466136694, - -0.008465657941997051, - 0.001988351345062256, - -0.001648814999498427, - -0.013547749258577824, - -0.02039576694369316, - -0.022269533947110176, - 0.030816074460744858, - 0.0037374263629317284, - 0.001134876743890345, - 0.025855306535959244, - -0.03882339969277382, - -0.019115133211016655, - 0.011613319627940655, - 0.01783449947834015, - -0.008816147223114967, - -0.005274185910820961, - -0.04324495419859886, - -0.0021029342897236347, - 0.02584182657301426, - -0.02795824036002159, - 0.007596176117658615, - -0.007569215260446072, - -0.015610242262482643, - -0.01856243796646595, - 0.00657840957865119, - 0.022835709154605865, - -0.019802629947662354, - -0.006891827564686537, - 0.004825964570045471, - -0.010238324292004108, - 0.010042859241366386, - -0.007393970619887114, - 0.0070771826431155205, - 0.021730320528149605, - 0.019775670021772385, - -0.0294950008392334, - 0.019613906741142273, - -0.002468588761985302, - 0.0328381285071373, - -0.005897652357816696, - -0.019492583349347115, - -0.01802322454750538, - -0.00877570640295744, - -0.0371248759329319, - -0.016836954280734062, - -0.017160482704639435, - 0.0034223233815282583, - 0.01019788347184658, - 0.0030954249668866396, - -4.015142621938139e-05, - 0.040764570236206055, - 0.012941134162247181, - -0.006922158412635326, - -0.0348062589764595, - -0.011498736217617989, - 0.0032959450036287308, - -0.005499981809407473, - 0.03356606513261795, - -0.03564203903079033, - -0.02392761781811714, - -0.009901314973831177, - -0.003663284471258521, - -0.02678545191884041, - -0.008782446384429932, - 0.002881424268707633, - 0.008802667260169983, - -0.006730063818395138, - 0.007589435670524836, - 0.014882303774356842, - -0.004313711076974869, - 0.008317374624311924, - 0.011013444513082504, - -0.01548891980201006, - -0.015947250649333, - 0.022512180730700493, - 0.007030001375824213, - -0.048205722123384476, - -0.024412909522652626, - 0.00631217285990715, - 0.0023506355937570333, - -0.029791569337248802, - -0.008391516283154488, - -0.003953111823648214, - -0.007960145361721516, - -0.016729110851883888, - 0.011026924476027489, - 0.023833254352211952, - -0.00034817212144844234, - -0.0012132312403991818, - -0.004246309399604797, - -0.022646984085440636, - -0.002116414485499263, - -8.230384264606982e-05, - -0.028470493853092194, - -0.006450346205383539, - 0.0023270449601113796, - -0.013911718502640724, - -0.003049928694963455, - -0.008971171453595161, - 0.016270779073238373, - -0.006733433809131384, - -0.0022124620154500008, - -0.02887490577995777, - -0.014194806106388569, - 0.014882303774356842, - 0.03246067836880684, - 0.00839825626462698, - -0.026300158351659775, - 0.019344298169016838, - 0.017915382981300354, - 0.004529397003352642, - -0.015704605728387833, - -0.0029639913700520992, - 0.004232828970998526, - -0.02612491324543953, - -0.020287923514842987, - -0.0003879812720697373, - -0.01455877535045147, - -0.017767097800970078, - -0.00038629621849395335, - -0.019276896491646767, - -0.02779647707939148, - 0.0007561632664874196, - 0.16424456238746643, - -0.0029976924415677786, - -0.00015934192924760282, - 0.034051358699798584, - 0.005678596440702677, - -0.0006681197555735707, - 0.03116656467318535, - 0.002842668443918228, - 0.016729110851883888, - 0.03545331582427025, - -0.016028134152293205, - -0.014653137885034084, - 4.7997411456890404e-05, - 0.005169713404029608, - -0.00472823204472661, - -0.026165354996919632, - -0.03286508843302727, - -0.0294950008392334, - -0.03453665226697922, - 0.04367632791399956, - 0.033269498497247696, - 0.006423385813832283, - -0.0068614971823990345, - -0.0078657828271389, - 0.019465621560811996, - -0.009146415628492832, - -0.022242574021220207, - -0.006635701283812523, - -0.00633576326072216, - 0.006352613680064678, - -0.040764570236206055, - -0.00024559508892707527, - -0.016055094078183174, - -0.02032836526632309, - -0.026178834959864616, - -0.008499359712004662, - -0.006187479477375746, - -0.005537052638828754, - 0.010487710125744343, - 0.018872486427426338, - 0.006446976214647293, - 0.0025107148103415966, - -0.008047767914831638, - -0.026623686775565147, - -0.003285834798589349, - 0.02628667838871479, - 0.007104143500328064, - 0.010602293536067009, - 0.0005501667037606239, - -0.01648646593093872, - -0.023995019495487213, - -0.001631964580155909, - 0.027688633650541306, - 0.026178834959864616, - 0.007151324301958084, - -0.02673153020441532, - 0.04394593462347984, - 0.002070918446406722, - -0.02098890207707882, - 0.020436206832528114, - -0.025585699826478958, - 0.0004924539825879037, - -0.021352870389819145, - 0.03256852179765701, - -0.0038789701648056507, - 0.021582037210464478, - -0.008249972946941853, - 0.0009806952439248562, - -0.023658011108636856, - -0.01815802790224552, - -0.023536687716841698, - -0.008202791213989258, - -0.040575847029685974, - -0.000982380355708301, - -0.026933735236525536, - -0.02468251623213291, - 0.02650236338376999, - -0.008465657941997051, - 0.02284918911755085, - 0.020719295367598534, - -0.008216272108256817, - 0.01566416397690773, - 0.015097989700734615, - 0.005702187307178974, - -0.0032015827018767595, - -0.026461923494935036, - -0.00676039420068264, - 0.004937177523970604, - -0.008910509757697582, - -0.01492274459451437, - 0.010797758586704731, - 0.011074105277657509, - -0.006389684975147247, - -0.012961354106664658, - 0.0025915969163179398, - -0.017861461266875267, - -0.008276933804154396, - -0.0008003956754691899, - -0.008937470614910126, - -0.014585736207664013, - 0.004822594579309225, - 0.0409802570939064, - 0.03960525989532471, - -0.03790673613548279, - -0.010251804254949093, - -0.01578548736870289, - 0.011653760448098183, - 0.007144584320485592, - 0.002281548921018839, - -0.03337734192609787, - 0.004482215736061335, - -0.000946151907555759, - 0.012368218973279, - 0.004859665408730507, - 0.009193597361445427, - -0.007953405380249023, - -0.006460456643253565, - -0.018198469653725624, - -0.0007683798321522772, - 0.0002896168443839997, - -0.012476061470806599, - 0.0033296458423137665, - 0.026637166738510132, - 0.009382322430610657, - 0.0035015202593058348, - -0.019020771607756615, - -0.013911718502640724, - -0.007420931477099657, - -0.005125902127474546, - -0.005425840150564909, - 0.051198359578847885, - -0.007791641168296337, - -0.005924612749367952, - 0.015138430520892143, - -0.0018990440294146538, - 0.045994944870471954, - 0.0014508224558085203, - -0.020058756694197655, - -0.021312430500984192, - -0.043191034346818924, - 0.020193560048937798, - -0.009827173314988613, - 0.002259643282741308, - -0.007481593172997236, - 0.028605297207832336, - -0.0033431262709200382, - 0.020436206832528114, - -0.025113888084888458, - -0.010925821959972382, - -0.0380685031414032, - -0.017443569377064705, - -0.014397011138498783, - -0.0019074692390859127, - -0.017254844307899475, - 0.03631605580449104, - -0.00803428702056408, - -0.04364936426281929, - -0.028389612212777138, - 0.009651929140090942, - 0.025033006444573402, - -0.017537932842969894, - 0.00298589700832963, - 0.033485185354948044, - -0.042409174144268036, - -0.004950657486915588, - -0.002898274688050151, - -0.17114649713039398, - -0.0020389026030898094, - 0.00781860202550888, - -0.021986447274684906, - 0.010770797729492188, - 0.004000293090939522, - 0.016661709174513817, - 0.007751199882477522, - -0.01736268773674965, - 0.008411737158894539, - 0.013500568456947803, - 0.0009158211178146303, - 0.0030516136903315783, - 0.013992601074278355, - 0.01445093285292387, - 0.010460750199854374, - -0.031436171382665634, - 0.004984358791261911, - 0.015286714769899845, - 0.033646948635578156, - 0.04548269510269165, - -0.0035150006879121065, - 0.01601465232670307, - -0.009018352255225182, - 0.014720539562404156, - -0.006605370435863733, - -0.02713594026863575, - 0.04734298214316368, - -0.01827935129404068, - -0.021878603845834732, - -0.0261923149228096, - 0.00903183314949274, - 0.048987582325935364, - 0.010973002761602402, - -0.008121909573674202, - -0.00226975348778069, - -0.021689878776669502, - 0.002864573849365115, - 0.012341258116066456, - 0.04583318158984184, - 0.002178761176764965, - 0.007771420292556286, - 0.012125573121011257, - -0.002677534008398652, - -0.03351214528083801, - 0.0010236639063805342, - 0.012341258116066456, - 0.004098025616258383, - 0.0065480787307024, - -0.008546540513634682, - 0.016405582427978516, - -0.045994944870471954, - -0.003643064061179757, - 0.011438075453042984, - -0.0055943443439900875, - 0.016028134152293205, - -0.0074883331544697285, - -0.0013101212680339813, - -0.012219935655593872, - 0.009483424946665764, - 0.0017406499246135354, - -0.020746255293488503, - 0.00277358153834939, - -0.010710136033594608, - -0.002099564066156745, - -0.012617605738341808, - 0.0072928681038320065, - 0.009294699877500534, - -0.021757280454039574, - 0.013217480853199959, - -0.015003627166152, - -0.01947910338640213, - 0.020274443551898003, - -0.02042272686958313, - 0.0017136891838163137, - 0.0011458295630291104, - -0.0036295836325734854, - -0.012866991572082043, - 0.038122422993183136, - -0.004583318252116442, - -0.002593281911686063, - 0.06621547043323517, - -0.015529360622167587, - -0.008418477140367031, - 0.004081175196915865, - -0.007602916099131107, - -0.020759735256433487, - -0.00015976317808963358, - 0.028066083788871765, - -0.0008155610412359238, - 0.020058756694197655, - -0.01555632147938013, - -0.026434961706399918, - -0.030546467751264572, - 0.008310634642839432, - 0.011289791204035282, - 0.0017120041884481907, - -0.01141111459583044, - 0.004354152362793684, - -0.009658669121563435, - -0.006197589915245771, - -0.014477893710136414, - -0.042597897350788116, - 0.015030588023364544, - 0.030357742682099342, - -0.012866991572082043, - 0.0020658632274717093, - 0.005587604362517595, - 0.02249870076775551, - -0.012125573121011257, - -0.03343126177787781, - 0.0023287301883101463, - 0.015327155590057373, - 0.0033060552086681128, - 0.0047383420169353485, - 0.005435950122773647, - -0.025073446333408356, - -0.004242939408868551, - 0.022417819127440453, - -0.04143859073519707, - 0.02849745564162731, - 0.015097989700734615, - -0.01849503628909588, - -0.0019428550731390715, - -0.019398219883441925, - -0.015610242262482643, - -0.06939683109521866, - -0.006197589915245771, - 0.05607824772596359, - 0.03612733259797096, - 0.002311879536136985, - 0.01304897665977478, - -0.01733572781085968, - 0.01434309035539627, - -0.011229129508137703, - 0.023051394149661064, - -0.010386607609689236, - -0.02650236338376999, - -0.009806953370571136, - 0.008640903048217297, - 0.011067365296185017, - -0.007286128122359514, - -0.02117762714624405, - -0.032352834939956665, - -0.021137185394763947, - 0.014855342917144299, - 0.014100443571805954, - -0.004650719929486513, - 0.0033549214713275433, - -0.02779647707939148, - 0.0006028243224136531, - 0.014423971995711327, - -0.028093045577406883, - 0.03631605580449104, - 0.028578337281942368, - -0.007259167265146971, - 0.008411737158894539, - -0.015745045617222786, - 0.027257263660430908, - -0.028820984065532684, - 0.004060954786837101, - -0.004290120676159859, - -0.027122460305690765, - -0.010723616927862167, - 0.010615773499011993, - -0.00453950697556138, - -0.0016530276043340564, - 0.004681050777435303, - 0.010063079185783863, - -0.013217480853199959, - -0.0009217187762260437, - -0.035507235676050186, - -0.02117762714624405, - -0.008135389536619186, - 0.00872852560132742, - -0.00399355310946703, - -0.0245207529515028, - -0.0151114696636796, - 0.00520678423345089, - 0.005975164007395506, - 0.018966849893331528, - -0.012354739010334015, - -0.004829334560781717, - -0.018953368067741394, - -0.02263350412249565, - -0.006457086652517319, - -0.0259361881762743, - -0.01341294590383768, - -0.012947874143719673, - 0.05346306040883064, - 0.006066156551241875, - -0.011795304715633392, - -0.04736994206905365, - -0.024008499458432198, - 0.023347962647676468, - 0.0021332651376724243, - -0.01188292633742094, - 0.028254808858036995, - 0.01334554422646761, - -0.0013808931689709425, - -0.02890186570584774, - -0.007380490191280842, - -0.016311220824718475, - -0.013197260908782482, - 0.01592029072344303, - 0.005446060560643673, - -0.03175969794392586, - -0.021689878776669502, - -0.002451738342642784, - -0.013749954290688038, - 0.036100372672080994, - 0.00969236996024847, - -0.014437452889978886, - -0.0007351002423092723, - -0.0029976924415677786, - 0.009968717582523823, - 0.027338145300745964, - 0.022835709154605865, - 0.0005286823725327849, - -0.013615150935947895, - -0.015745045617222786, - 0.022714385762810707, - 0.010534891858696938, - -0.015960732474923134, - 0.0027348254807293415, - 0.00338356732390821, - -0.005587604362517595, - -0.005995384883135557, - -0.04661504179239273, - 0.025221731513738632, - 0.011323492042720318, - -0.009860874153673649, - -0.0020557530224323273, - -0.014491373673081398, - -0.004778783302754164, - -0.004253049846738577, - -0.004114876035600901, - 0.0034138981718569994, - -0.02849745564162731, - 0.0023590608034282923, - -0.00615377863869071, - -0.014423971995711327, - -0.003474559634923935, - -0.009422763250768185, - 0.005415729712694883, - 0.006463826633989811, - 0.012779369950294495, - 0.020314883440732956, - -0.010467490181326866, - -0.012159273959696293, - 0.0025309352204203606, - 0.014154365286231041, - -0.032703325152397156, - 0.016162937507033348, - -0.0033903075382113457, - 0.024790359660983086, - -0.014477893710136414, - -0.00026918569346889853, - 0.028767062351107597, - -0.007346789352595806, - -0.006696362979710102, - 0.01815802790224552, - 0.0036161032039672136, - -0.019748710095882416, - -0.016284260898828506, - 0.05014689266681671, - 0.03186754137277603, - 0.04359544441103935, - -0.008458917960524559, - -0.02240433730185032, - 0.029063628986477852, - -0.009833913296461105, - -0.025680063292384148, - -0.007636616937816143, - -0.014167845249176025, - -0.0001400692417519167, - 0.007306348532438278, - -0.016729110851883888, - 0.023455804213881493, - 0.010878640227019787, - 0.008061247877776623, - -0.011431334540247917, - 0.01455877535045147, - -0.003375142114236951, - 0.021406792104244232, - 0.0033010002225637436, - 0.042031724005937576, - -0.02892882563173771, - 0.02782343700528145, - 0.01117520872503519, - 0.015003627166152, - -0.01613597571849823, - 0.006167259067296982, - -0.0154754389077425, - -0.013177040033042431, - -0.0003060460148844868, - 0.006544708739966154, - -0.04119594395160675, - -0.023307520896196365, - -0.011667241342365742, - -0.006163889076560736, - -0.0032100079115480185, - -0.010164182633161545, - 0.004077805206179619, - 0.008276933804154396, - 0.012004249729216099, - 0.014504854567348957, - 0.018427634611725807, - 0.01597421243786812, - 0.01893988810479641, - -0.01141111459583044, - 0.05055130273103714, - 0.019559985026717186, - 0.011727902106940746, - -0.008310634642839432, - -0.011161727830767632, - 0.016998719424009323, - 0.00103040412068367, - -0.001776035875082016, - 0.004670940339565277, - 0.010649474337697029, - -0.01768621616065502, - 0.04143859073519707, - 0.016446024179458618, - 0.03194842487573624, - -0.006571669597178698, - 0.009840654209256172, - 0.020368805155158043, - 0.02098890207707882, - -0.017295286059379578, - 0.011525697074830532, - -0.006649181712418795, - -0.02779647707939148, - 0.015933770686388016, - -0.028254808858036995, - -0.031894501298666, - -0.02692025527358055, - 0.009908055886626244, - 0.016216859221458435, - -0.017497491091489792, - -0.011060625314712524, - 0.016472984105348587, - 0.0003361661802046001, - 0.0045428769662976265, - 0.00356892216950655, - -0.03545331582427025, - -0.021662918850779533, - 0.023563647642731667, - 0.0009806952439248562, - 0.012233415618538857, - -0.004681050777435303, - -0.00393963186070323, - 0.004259789828211069, - -0.007306348532438278, - 0.01358145009726286, - -0.008344335481524467, - 0.009132935665547848, - -0.014423971995711327, - 0.006639071274548769, - -0.008445437997579575, - -0.019654346629977226, - -0.04769346863031387, - -0.01342642679810524, - -0.030654311180114746, - 0.015906810760498047, - 0.002680904231965542, - 0.008816147223114967, - 0.110431008040905, - 0.01462617702782154, - -0.025221731513738632, - 0.03308077156543732, - -0.01445093285292387, - 0.009806953370571136, - 0.025922708213329315, - -0.0042092385701835155, - -0.0014230192173272371, - -0.005024799611419439, - 0.02814696542918682, - -0.01799626462161541, - 0.023280560970306396, - -0.022673944011330605, - -0.0192903783172369, - -0.020854098722338676, - 0.022390857338905334, - 0.011687461286783218, - -0.015030588023364544, - 0.004566467832773924, - 0.02607099339365959, - -0.020153120160102844, - 0.017281806096434593, - 0.02282222919166088, - -0.029360197484493256, - -0.02631363831460476, - 0.012644566595554352, - -0.03151705488562584, - -0.024938642978668213, - 0.007393970619887114, - -0.00827019289135933, - 0.006362724117934704, - -0.062009599059820175, - -0.06319586932659149, - 0.02505996637046337, - -0.0004162057302892208, - -0.003552071750164032, - -0.01366233266890049, - 0.005479761399328709, - 0.0077040186151862144, - -0.00309205474331975, - 0.03299989178776741, - -0.010251804254949093, - -0.0009739551460370421, - -0.004195758141577244, - 0.0027381957042962313, - -0.009591267444193363, - -0.013756695203483105, - -0.03437488526105881 - ], - "sparse": "SparseEmbedding(values=array([1.6434199 , 1.6434199 , 1.6434199 , 1.6434199 , 1.88140972,\n 1.6434199 , 1.6434199 , 1.6434199 , 1.6434199 , 1.6434199 ]), indices=array([2077811411, 1734550606, 2019288601, 1145495814, 164058840,\n 715386164, 1515684580, 819332622, 1841900287, 231980230]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 26, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 11 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000027.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000027.json deleted file mode 100644 index 968843dc1bf88fa280f8a55e7e8322b03550a3e0..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000027.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000027", - "content": "ohne des Verschattungseffekts durch B\u00e4ume (eigene Darstellung und Berechnung auf", - "embedding": { - "dense": [ - -0.00574104767292738, - -0.009540901519358158, - 0.014948513358831406, - -0.018421534448862076, - 0.018712053075432777, - 0.021775705739855766, - -0.04027647152543068, - 0.000577323604375124, - -0.01564840041100979, - -0.012181982398033142, - -0.0022911368869245052, - 0.00827318336814642, - -0.012875265441834927, - 0.034915078431367874, - -0.0028523665387183428, - 0.02174929529428482, - 0.025063849985599518, - -0.0028853800613433123, - 0.027097482234239578, - 0.01732548512518406, - -0.013053538277745247, - 0.023941390216350555, - 0.02619951404631138, - -0.013139373622834682, - -0.006629111245274544, - -0.013535535894334316, - 0.024073444306850433, - -0.050787970423698425, - -0.0001369028614135459, - -0.005467035807669163, - 0.0068800137378275394, - -0.013561946339905262, - -0.0027186619117856026, - -0.024284731596708298, - -0.007038478273898363, - -0.027044659480452538, - -0.01447311881929636, - -0.026939017698168755, - 0.009395642206072807, - -0.0010176411597058177, - -0.006170223467051983, - -0.011409466154873371, - -0.009342821314930916, - -0.016850091516971588, - -0.00020581854914780706, - 0.009184355847537518, - 0.016982145607471466, - 0.00423893379047513, - -0.01863281987607479, - 0.0110859340056777, - 0.03219476714730263, - 0.022805726155638695, - -0.0015532852848991752, - -0.002002268796786666, - -0.010868044570088387, - 0.020587218925356865, - -0.006282469257712364, - -0.009058904834091663, - 0.012974306009709835, - -0.013370468281209469, - -0.008517483249306679, - -0.006625809706747532, - -0.016255848109722137, - -0.0009747236035764217, - -0.05268954858183861, - -0.014790048822760582, - -0.007031875662505627, - -0.0069724516943097115, - -0.0005207879585213959, - -0.012782827951014042, - 0.019610019400715828, - 0.02876136265695095, - -0.001327142701484263, - -0.019755279645323753, - 0.017576389014720917, - -0.028365200385451317, - 0.0006441759178414941, - -0.008101513609290123, - 0.0025420396123081446, - 0.011158563196659088, - 0.028365200385451317, - -0.015714427456259727, - -0.05401008948683739, - 0.038797467947006226, - 0.024826152250170708, - -0.00042174747795797884, - -0.008220361545681953, - 0.02601463906466961, - -0.014988129958510399, - 0.002002268796786666, - 0.03465097025036812, - 0.009534299373626709, - 0.008636332117021084, - 0.017457539215683937, - -0.003076858352869749, - -0.016612393781542778, - 0.0007832453120499849, - 0.021405953913927078, - 0.0026031145825982094, - -0.03618279844522476, - -0.010868044570088387, - 0.027889806777238846, - -0.02565809339284897, - -0.0060051558539271355, - -0.027229536324739456, - 0.0004180334508419037, - 0.023294325917959213, - 0.01570122130215168, - -0.0016283909790217876, - -0.02330753207206726, - -0.003555554198101163, - 0.02110222913324833, - -0.038269251585006714, - 0.0029794685542583466, - 0.024720510467886925, - -0.025380779057741165, - 0.007692145649343729, - 0.013522329740226269, - -0.016797268763184547, - -0.00473743723705411, - 0.023399969562888145, - 0.017246253788471222, - 0.00844485405832529, - -0.006206538062542677, - 0.022369949147105217, - 0.010630347765982151, - -0.005638706032186747, - -0.012617760337889194, - -0.018844107165932655, - -0.02240956388413906, - -0.02176249958574772, - 0.007262970320880413, - 0.009243780747056007, - -0.007328997366130352, - -0.012505514547228813, - 0.021564418449997902, - -0.008431647904217243, - 0.020059002563357353, - -0.02744082175195217, - -0.023650871589779854, - -0.0007225830340757966, - 0.00887402892112732, - -0.029025470837950706, - -0.006952643394470215, - 0.010009693913161755, - 0.026701319962739944, - 0.0003206436231266707, - 0.031613729894161224, - 0.005734445061534643, - -0.03618279844522476, - -0.019464761018753052, - -0.024575250223279, - 0.02594861201941967, - -0.010775607079267502, - 0.012168776243925095, - -0.02193417027592659, - -0.013984519056975842, - 0.02408665046095848, - -0.00423893379047513, - -0.0018388520693406463, - 0.03848053887486458, - 0.001634168322198093, - -0.015780454501509666, - -0.01941193826496601, - 0.01744433492422104, - -0.0001682656875345856, - 6.483413017122075e-06, - -0.0035060339141637087, - 0.015608783811330795, - -0.0023423079401254654, - 0.017549976706504822, - 0.015859685838222504, - -0.014816459268331528, - 0.028682129457592964, - -0.009745585732161999, - -0.0017909824382513762, - 0.004902504850178957, - 0.013258222490549088, - 0.00401444174349308, - -0.04051416739821434, - -0.03866541385650635, - 0.022303922101855278, - 0.027467232197523117, - 0.0031907549127936363, - -0.016401108354330063, - -0.008616523817181587, - 0.011422671377658844, - 0.015569167211651802, - -0.000959867553319782, - -0.023743310943245888, - -0.010821825824677944, - 0.0022135551553219557, - -0.0016226136358454823, - 0.0017678729491308331, - -0.6300560832023621, - -0.025327958166599274, - 0.00016434532881248742, - -0.01785370148718357, - 0.020362727344036102, - 0.013984519056975842, - 0.017998961731791496, - -0.007117711007595062, - -0.010227582417428493, - 0.023096244782209396, - -0.00724976509809494, - 0.014882486313581467, - 0.008332607336342335, - -0.01918744668364525, - 0.02056080847978592, - -0.011858449317514896, - -0.0030620021279901266, - -0.006209839601069689, - 0.009633339941501617, - 0.0015384291764348745, - 0.003111522411927581, - 0.02678055316209793, - -0.004783656448125839, - -0.004536055028438568, - 0.010498293675482273, - -0.00361827970482409, - 0.015080567449331284, - -0.017840495333075523, - 0.012003708630800247, - 0.02198699116706848, - -0.029342399910092354, - 0.03045165352523327, - -0.031613729894161224, - 0.006678631529211998, - 0.03768821433186531, - 0.0036711012944579124, - -0.008550496771931648, - 0.01546352356672287, - -0.014209010638296604, - 0.026714526116847992, - -0.03240605443716049, - -0.018051782622933388, - 0.003037242218852043, - 0.004598780535161495, - -0.009276794269680977, - 0.012201789766550064, - 0.01028040423989296, - -0.015159799717366695, - -0.008458059281110764, - -0.025565655902028084, - 0.03755616024136543, - 0.009547504596412182, - 0.0011001749662682414, - 0.014539145864546299, - 0.016559572890400887, - 0.00964654516428709, - 0.006404619198292494, - -0.011343439109623432, - 0.008708961308002472, - 0.02090414986014366, - 0.009719174355268478, - 0.013350659981369972, - 0.01869884692132473, - -0.022871753200888634, - -0.0038031553849577904, - 0.040118005126714706, - -0.02799544855952263, - -0.002395129529759288, - 0.006160319317132235, - -0.027546465396881104, - 0.010643552988767624, - 0.011158563196659088, - 0.02623913064599037, - -0.011587738990783691, - 0.017404718324542046, - -0.0032386244274675846, - 0.03692229837179184, - -0.004790259059518576, - -0.00904569961130619, - 0.01983451098203659, - -0.008728769607841969, - -0.023109450936317444, - -0.020574014633893967, - -0.018064988777041435, - 0.022145457565784454, - -0.023954596370458603, - -0.006939438171684742, - -0.01351572759449482, - -0.0018256466137245297, - 0.003578663570806384, - 0.009065507911145687, - 0.024535633623600006, - -0.014842869713902473, - -0.017404718324542046, - -0.004007839132100344, - 0.005952334497123957, - 0.005186420865356922, - 0.019015775993466377, - 0.0034994310699403286, - -0.02264726161956787, - -0.025671297684311867, - -0.005232640076428652, - 0.02528834156692028, - -0.004070564638823271, - 0.019557198509573936, - 0.015780454501509666, - 0.0023373558651655912, - -0.0359450988471508, - 0.04241574555635452, - -0.01809139922261238, - 0.002046837005764246, - -0.01780088059604168, - -0.0023472600150853395, - 0.0017480648821219802, - 0.002655936172232032, - -0.03140244260430336, - 0.027969038113951683, - -0.021947376430034637, - -0.0041795093566179276, - 0.013027127832174301, - 0.0017959345132112503, - -0.014314654283225536, - 0.026027845218777657, - -0.0200722087174654, - 0.013013922609388828, - 0.018606409430503845, - 0.0016292162472382188, - -0.030108314007520676, - 0.0073620108887553215, - 0.005526460241526365, - 0.0005434847553260624, - 0.022330332547426224, - 0.020824916660785675, - -0.014724021777510643, - 0.04320807009935379, - -0.011805628426373005, - 0.0005112966173328459, - 0.010630347765982151, - 0.007078094873577356, - -0.03243246302008629, - -0.04098956286907196, - 0.01749715581536293, - 0.015688015148043633, - -0.022911369800567627, - -0.018540382385253906, - -0.024799741804599762, - -0.002830907702445984, - 0.006483851466327906, - -0.035205598920583725, - 0.02642400562763214, - -0.01930629462003708, - -0.002533786231651902, - 0.006539974827319384, - -0.00890044029802084, - 0.007315791677683592, - -0.008854220621287823, - 0.01141606830060482, - -0.0260674599558115, - -0.022158661857247353, - 0.011158563196659088, - 0.012908278964459896, - 0.021405953913927078, - -0.02379613183438778, - -0.008266580291092396, - -0.013588356785476208, - -0.01232063863426447, - -0.00841844268143177, - 0.011574533767998219, - -0.009540901519358158, - -0.0365525484085083, - 0.0008781591313891113, - -0.012102749198675156, - 0.020653245970606804, - 0.0017546676099300385, - -0.03031959943473339, - 0.005978744942694902, - -0.018012166023254395, - -0.01351572759449482, - -0.01252532284706831, - -0.006754562258720398, - 0.023518817499279976, - -0.025539245456457138, - -0.016929322853684425, - -0.03607715293765068, - 0.020217468962073326, - 0.011534917168319225, - 0.01617661491036415, - 0.012228201143443584, - -0.013410083949565887, - -0.008411840535700321, - 0.006414523348212242, - 0.033356841653585434, - -0.001265242462977767, - 0.03206271305680275, - -0.0012066434137523174, - -0.008563701994717121, - 0.011099139228463173, - 0.013502522371709347, - -0.014842869713902473, - 0.02090414986014366, - 0.015186210162937641, - 0.03190424665808678, - 0.038269251585006714, - -0.010973688215017319, - 0.03573381528258324, - -0.015120184049010277, - 0.007731761783361435, - -0.015159799717366695, - 0.034360453486442566, - 0.005367995239794254, - -0.0009681209339760244, - -0.029580097645521164, - -0.05358751490712166, - -0.011620752513408661, - -0.00039471767377108335, - 0.03409634530544281, - 0.004202618729323149, - -0.013707205653190613, - 0.014644789509475231, - -0.019266679883003235, - 0.0164803396910429, - -0.010022899135947227, - 0.02989702671766281, - -0.017959345132112503, - 0.010967085137963295, - 0.0018272972665727139, - -0.001375012332573533, - -0.011805628426373005, - 0.010920866392552853, - -0.009831421077251434, - -0.025209110230207443, - -0.008946659043431282, - -0.031085513532161713, - 0.011099139228463173, - -0.00893345382064581, - 0.008002473041415215, - 0.020824916660785675, - -0.006470646243542433, - 0.06386131793260574, - 0.005117092747241259, - -0.005430720746517181, - 0.031613729894161224, - -0.002510676858946681, - -0.018064988777041435, - 0.004981737118214369, - 0.012842251919209957, - 0.00746105145663023, - 0.012010311707854271, - -0.01910821534693241, - 0.003961620386689901, - 0.0026922510005533695, - 0.019398733973503113, - -0.0029051881283521652, - 0.023782925680279732, - 0.03446609526872635, - -5.730937482439913e-05, - 0.042468566447496414, - 0.024614866822957993, - 0.03193065896630287, - 0.018566792830824852, - -0.004146495833992958, - -0.0029761672485619783, - -0.0019461459014564753, - -0.023479202762246132, - 0.016572777181863785, - -0.022752905264496803, - -0.017761263996362686, - -0.01773485355079174, - -0.021366337314248085, - -0.0031313307117670774, - 0.01653316058218479, - -0.02343958616256714, - -0.003948414698243141, - 0.0027929421048611403, - 0.002357163932174444, - -0.0010374492267146707, - 0.018593203276395798, - 0.00641122180968523, - 0.04627172276377678, - 0.0017959345132112503, - -0.030293188989162445, - -0.02767851948738098, - -0.009177753701806068, - 0.04759226366877556, - -0.014552351087331772, - -0.005889608524739742, - -0.0010770654771476984, - -0.016044560819864273, - -0.020600425079464912, - 0.003142885398119688, - -0.00746105145663023, - -0.009514491073787212, - -0.004410603549331427, - -0.007276175543665886, - -0.010187966749072075, - -0.029315989464521408, - 0.01864602603018284, - -0.015569167211651802, - -0.011614149436354637, - 0.008372223936021328, - 0.0010762400925159454, - -0.010392650030553341, - -0.015965329483151436, - 0.0028243050910532475, - 0.030715761706233025, - 0.002740120515227318, - 0.007830802351236343, - -0.018976161256432533, - -0.001942844595760107, - -0.005985347554087639, - -0.0029332495760172606, - 0.018117809668183327, - -0.01150850672274828, - -0.0017167020123451948, - -0.002530484925955534, - 0.009752187877893448, - -0.003400390734896064, - -0.009342821314930916, - 0.024231910705566406, - 0.02679375745356083, - -0.00031981829670257866, - -0.006615905556827784, - -0.0005513254436664283, - 0.028391610831022263, - 0.01743112877011299, - 0.02193417027592659, - -0.00964654516428709, - -0.0023505613207817078, - -0.00012782415433321148, - -0.006024964153766632, - -0.03190424665808678, - -0.0473545677959919, - -0.0053911046124994755, - -0.011376452632248402, - -0.007018670439720154, - 0.0056420075707137585, - 0.019042188301682472, - -0.02367728389799595, - 0.011779217049479485, - 0.001308160019107163, - 0.011891462840139866, - -0.026476828381419182, - 0.0011001749662682414, - 0.007566694635897875, - -0.016493545845150948, - -0.007599708158522844, - 0.010709580034017563, - 0.03303991258144379, - -0.0039946334436535835, - 0.006794178392738104, - 0.004242234863340855, - 0.021920964121818542, - 0.014142983593046665, - -0.011858449317514896, - -0.01066996343433857, - 0.0015111929969862103, - -0.006625809706747532, - 0.05099925771355629, - -0.0224623866379261, - 0.007857213728129864, - 0.005011449567973614, - 0.02108902484178543, - 0.012036722153425217, - -0.003644690616056323, - 0.03169296309351921, - 0.02569770999252796, - 0.002939852187409997, - -0.019702456891536713, - -0.0122876251116395, - -0.017219841480255127, - 0.010769004002213478, - 0.008504278026521206, - 0.005622199270874262, - -0.006001854315400124, - 0.023347148671746254, - -0.017642414197325706, - -0.01288186851888895, - 0.012789430096745491, - 0.0026773950085043907, - -0.01171979308128357, - -0.007064889185130596, - -0.008563701994717121, - 0.022634057328104973, - 0.01995336078107357, - -0.04093674197793007, - -0.025803351774811745, - 0.0052227359265089035, - -0.003372329054400325, - -0.011046317405998707, - 0.009217369370162487, - -0.012003708630800247, - 0.011046317405998707, - -0.015384291298687458, - -0.0020105221774429083, - 0.00563210342079401, - 0.014948513358831406, - -0.025842968374490738, - -0.0036711012944579124, - 0.044951181858778, - -0.0009681209339760244, - -0.0010770654771476984, - -0.020521191880106926, - -0.0010283705778419971, - 0.006530070677399635, - -0.054934464395046234, - -0.03853335976600647, - -0.00985783152282238, - -0.014420296996831894, - -0.004691218491643667, - 0.012690389528870583, - -0.009184355847537518, - -0.016612393781542778, - -0.0022333634551614523, - 0.012386665679514408, - 0.0007395024294964969, - -0.01918744668364525, - 0.0012487357016652822, - 0.007328997366130352, - 0.0006239551585167646, - -0.010557717643678188, - 0.014380681328475475, - 0.021894553676247597, - 0.02439037524163723, - -0.027731340378522873, - 0.034439682960510254, - 0.010676566511392593, - -0.001049004029482603, - 0.0033030007034540176, - 0.03409634530544281, - 0.009204164147377014, - -0.022158661857247353, - 0.013852464966475964, - 0.014803254045546055, - -0.006820589303970337, - 0.016453929245471954, - -0.007454448379576206, - 0.014816459268331528, - -0.024522429332137108, - -0.014829664491117, - 0.007784583605825901, - -0.007487461902201176, - 0.0033409663010388613, - 0.012928087264299393, - 0.018844107165932655, - 0.014195805415511131, - -0.009329615160822868, - 0.03758256882429123, - 0.0073355999775230885, - -0.002284534275531769, - 0.02313586138188839, - -0.0077515700832009315, - -0.0033706785179674625, - -0.019821306690573692, - 0.006365003064274788, - -0.002139274962246418, - -0.003882387652993202, - 0.038744643330574036, - -0.015318264253437519, - -0.03290785849094391, - -0.028867006301879883, - 0.010121939703822136, - -0.010201171971857548, - -0.028180325403809547, - 0.03190424665808678, - -0.02569770999252796, - 0.02870853990316391, - -0.0016490244306623936, - 0.007837405428290367, - 0.011970695108175278, - -0.03198347985744476, - -0.0116867795586586, - 0.009369231760501862, - 0.020045798271894455, - 0.012386665679514408, - -0.043789107352495193, - -0.003142885398119688, - -0.01953078806400299, - -0.0073620108887553215, - -0.024707304313778877, - -0.04843740910291672, - 0.0016952432924881577, - -0.008200554177165031, - 0.025499628856778145, - 0.00017404304526280612, - 0.009184355847537518, - 0.018778080120682716, - 0.015014540404081345, - -0.0068800137378275394, - -0.013627973385155201, - -0.007031875662505627, - 0.01852717623114586, - -0.019860923290252686, - -0.03219476714730263, - 0.03182501345872879, - -0.012069735676050186, - -0.004083770327270031, - 0.004496438894420862, - -0.013159181922674179, - 0.012241406366229057, - 0.030847815796732903, - -0.012366857379674911, - -0.028312379494309425, - -0.021194668486714363, - 0.01102650910615921, - 0.001894974964670837, - -0.006275866646319628, - 0.012980909086763859, - 0.02198699116706848, - 0.0134893162176013, - 0.0018157425802201033, - 0.05916019529104233, - 0.009527696296572685, - -0.014248627237975597, - -0.007368613500148058, - 0.007579899858683348, - -0.027493644505739212, - 0.03797873109579086, - 0.005605692509561777, - -0.010465280152857304, - -0.0054835425689816475, - -0.007619515992701054, - -0.00274837389588356, - -0.023690488189458847, - 0.008491072803735733, - -0.013403481803834438, - -0.0004518722998909652, - 0.011541520245373249, - -0.010518101043999195, - -0.0036744026001542807, - 0.018500765785574913, - 0.01630866900086403, - -0.009904050268232822, - -0.005503350868821144, - -0.009666353464126587, - -0.03171937167644501, - -0.014367476105690002, - -0.010511498898267746, - -0.005047764163464308, - 0.03457173705101013, - 0.023835748434066772, - 0.0014484673738479614, - 0.03008190169930458, - 0.002545340918004513, - 0.01642751879990101, - 0.014842869713902473, - -0.012749814428389072, - 0.034017112106084824, - 0.009587121196091175, - 0.02720312587916851, - 0.0037173202726989985, - -0.027546465396881104, - -0.04592838138341904, - -0.009428655728697777, - -0.007758172694593668, - -0.013654383830726147, - 0.010287007316946983, - -0.001373361679725349, - -0.011851847171783447, - -0.004694520030170679, - 0.02176249958574772, - 0.016440723091363907, - -0.01045867707580328, - 0.014314654283225536, - 0.021604035049676895, - -0.01028040423989296, - 0.007586502470076084, - -0.017100993543863297, - 0.004040852654725313, - -0.013297838158905506, - 0.031138334423303604, - -0.03325119987130165, - -0.0063947150483727455, - -0.020534398034214973, - -0.02462807111442089, - -0.002423190977424383, - 0.04481912776827812, - -0.010887852869927883, - 0.044792719185352325, - -0.009791804477572441, - -0.010735990479588509, - -0.011931079439818859, - -0.01599173992872238, - 0.002221808535978198, - 0.02630515769124031, - 0.01049169059842825, - 0.026767347007989883, - 0.002916742814704776, - -0.01588609628379345, - -0.01749715581536293, - -0.0039946334436535835, - -0.007395024411380291, - -0.0010448773391544819, - -0.012201789766550064, - 0.018540382385253906, - -0.006639014929533005, - 0.007368613500148058, - -0.01081522274762392, - 0.01959681510925293, - 0.022369949147105217, - 0.021247489377856255, - -0.008048691786825657, - -0.010306814685463905, - -0.01683688536286354, - -0.004129989072680473, - 0.01243288442492485, - 0.0009499635198153555, - 0.020600425079464912, - -0.007612913381308317, - -0.008907042443752289, - 0.003978126682341099, - -0.008068500086665154, - -0.030161134898662567, - 0.02067965641617775, - -0.01330444123595953, - -0.0034763216972351074, - 0.001545857172459364, - 0.0016036308370530605, - 0.044264502823352814, - 0.0020633437670767307, - -0.017655620351433754, - -0.02266046777367592, - 0.035099953413009644, - -0.026740936562418938, - 0.0053514884784817696, - 0.04059340059757233, - -0.011072728782892227, - -0.0009895797120407224, - 0.014750432223081589, - -0.026886194944381714, - -0.029870616272091866, - 0.02200019732117653, - -0.021722882986068726, - -0.030610118061304092, - -0.022924575954675674, - -0.00404745526611805, - 0.003809757996350527, - -0.005592487286776304, - -0.016374696046113968, - 0.011627355590462685, - 0.00326668587513268, - 0.0027120590675622225, - -0.02984420582652092, - -0.02767851948738098, - 0.0017530169570818543, - 0.01876487396657467, - -0.009917255491018295, - 0.020455164834856987, - -0.011462287977337837, - 0.018381917849183083, - -0.01624264195561409, - 0.011772614903748035, - -0.005252447910606861, - -0.03145526349544525, - -0.034783024340867996, - -0.005292064044624567, - 0.03264375030994415, - -0.03663178160786629, - -0.012974306009709835, - -0.014156189747154713, - -0.03451891615986824, - -0.005747650749981403, - 0.018170630559325218, - 0.006203236989676952, - -0.011495301499962807, - -0.0023670680820941925, - 0.009012686088681221, - -0.015014540404081345, - 0.01881769485771656, - -0.007949651218950748, - 0.006371605675667524, - 0.007824200205504894, - 0.010115336626768112, - -0.03079499490559101, - -0.0028292571660131216, - 0.002485916716977954, - 0.022343536838889122, - 0.03097986988723278, - -0.019860923290252686, - -0.0008789844578132033, - -0.006998862139880657, - -0.04764508455991745, - 0.013812849298119545, - -0.024416785687208176, - 0.0011191576486453414, - -0.0010770654771476984, - 0.01369400043040514, - -0.010656758211553097, - 0.013040333054959774, - 0.015542756766080856, - 0.0031957069877535105, - -0.0112377954646945, - -0.026582472026348114, - -0.002837510546669364, - 0.0044799321331083775, - 0.042706266045570374, - 0.007685543037950993, - -0.022990602999925613, - -0.015291853807866573, - 0.01593891903758049, - -0.017417922616004944, - 0.0065267691388726234, - 0.011171768419444561, - 0.007223354186862707, - 0.010617141611874104, - 0.01087464764714241, - 0.007870418950915337, - 0.01510697789490223, - -0.001290002604946494, - 0.011825435794889927, - -0.04236292466521263, - 0.01869884692132473, - 0.016453929245471954, - 0.02210584096610546, - -0.042996782809495926, - -0.017827291041612625, - -0.003799854079261422, - -0.00020066018623765558, - -0.014631583355367184, - -0.016401108354330063, - -0.011812230572104454, - -0.029025470837950706, - -0.029289579018950462, - 0.014961718581616879, - 0.012327241711318493, - -0.02151159755885601, - 0.028550075367093086, - -0.00928999949246645, - -0.011799025349318981, - 0.0015078916912898421, - 0.005493446718901396, - -0.02079850621521473, - -0.00449313735589385, - -0.0014889088924974203, - -0.008121320977807045, - 0.02528834156692028, - -0.007645926903933287, - 0.007976061664521694, - -0.030398832634091377, - 0.02876136265695095, - -0.01917424239218235, - -0.01622943766415119, - -0.022937780246138573, - 0.020626835525035858, - 0.027757752686738968, - -0.023888569325208664, - 0.04864869639277458, - 0.004337973892688751, - 0.017549976706504822, - -0.006414523348212242, - -0.008068500086665154, - -0.007064889185130596, - -0.02841802127659321, - 0.000873207114636898, - 0.020877737551927567, - -0.002078199991956353, - -0.03412275388836861, - 0.021841732785105705, - -0.02757287584245205, - -0.023083040490746498, - 0.0224623866379261, - 0.1821288764476776, - -0.013733616098761559, - -0.011680176481604576, - 0.031006280332803726, - -0.009897448122501373, - 0.009422053582966328, - 0.016850091516971588, - -0.009811612777411938, - -0.001373361679725349, - 0.015450318343937397, - -0.014988129958510399, - -0.010788812302052975, - -0.0024727112613618374, - 0.007579899858683348, - 0.009527696296572685, - -0.021234283223748207, - -0.013812849298119545, - -0.02229071594774723, - -0.006606001406908035, - 0.030108314007520676, - 0.03565458208322525, - -0.0197816900908947, - -0.02157762460410595, - -0.002548642223700881, - 0.04320807009935379, - 0.0028077983297407627, - -0.004965230822563171, - 0.02181532233953476, - 0.014142983593046665, - 0.005536364391446114, - -0.0067743705585598946, - 0.0017975851660594344, - -0.01342328917235136, - -0.028391610831022263, - -0.009930461645126343, - 0.0015582372434437275, - 0.016018150374293327, - 0.003819662146270275, - 0.04368346557021141, - 0.03966902196407318, - 0.018976161256432533, - -0.005410912912338972, - -0.027018249034881592, - -0.0007234083604998887, - -0.012617760337889194, - 0.024350758641958237, - 0.0006185905076563358, - -0.0016325176693499088, - 0.00763932429254055, - 0.0015210970304906368, - -0.022924575954675674, - -0.008781591430306435, - 0.027704929932951927, - 0.00221850723028183, - -0.01222159806638956, - 0.00866274256259203, - 0.0329606793820858, - -0.006946040783077478, - 0.007381818722933531, - 0.00038460729410871863, - -0.03914080560207367, - 0.00964654516428709, - 0.012300830334424973, - 0.0026509840972721577, - -0.04466066509485245, - -0.015384291298687458, - -0.04172906652092934, - 0.00788362417370081, - -0.004037551116198301, - -0.022475590929389, - -0.015714427456259727, - -0.019583608955144882, - 0.0038955931086093187, - 0.015199416317045689, - -0.032036300748586655, - -0.032987091690301895, - 0.002535437000915408, - -0.01563519425690174, - -0.0008600017172284424, - 0.008405237458646297, - -0.005533062852919102, - -0.005394406151026487, - -0.017880111932754517, - 0.012630965560674667, - -0.03771462291479111, - -0.022990602999925613, - 0.012921484187245369, - 0.022264305502176285, - -0.002962961792945862, - -0.019200652837753296, - 0.021960580721497536, - 0.016387902200222015, - 0.004985038656741381, - -0.013878876343369484, - 0.014578762464225292, - -0.0007663259166292846, - -0.0152786485850811, - 0.00684700021520257, - -0.013159181922674179, - 0.007500667590647936, - -0.011191576719284058, - 0.03182501345872879, - 0.046958405524492264, - -0.02288495935499668, - -0.009758790954947472, - 0.011019906960427761, - 0.0033277608454227448, - 0.00362488254904747, - -0.0073884217999875546, - -0.0012371810153126717, - -0.02211904525756836, - -0.016916118562221527, - 0.021775705739855766, - -0.0047407387755811214, - 0.020217468962073326, - 0.0023026918061077595, - -0.0025205807760357857, - -0.004443617071956396, - 0.012122557498514652, - -0.009573915041983128, - -0.007810994517058134, - -0.010617141611874104, - -0.011666971258819103, - 0.03261733800172806, - 0.021524803712964058, - -0.01024739071726799, - -0.036341261118650436, - -0.0015136690344661474, - 0.007408229634165764, - -0.003378931898623705, - 0.022092634811997414, - -0.017180226743221283, - -0.02301701344549656, - 0.017114199697971344, - 0.00872216746211052, - 0.032141946256160736, - -0.0074148322455585, - -0.010570922866463661, - -0.006011758465319872, - -0.010346431285142899, - 0.028602898120880127, - -0.004714327864348888, - -0.006196634378284216, - 0.007560092024505138, - 0.016216231510043144, - 0.008992877788841724, - 0.022330332547426224, - 0.0012058181455358863, - -0.0035819648765027523, - -0.03470379114151001, - -0.005285461433231831, - -0.015450318343937397, - -0.011752806603908539, - -0.00859671551734209, - 0.04201958328485489, - 0.020507987588644028, - -0.0030388927552849054, - -0.046060435473918915, - 0.0011480444809421897, - 0.029395220801234245, - -0.019913744181394577, - -0.0022861850447952747, - 0.01624264195561409, - -0.032749392092227936, - -0.002243267372250557, - 0.0010341479210183024, - -0.1665993332862854, - -0.0007613738998770714, - 0.011766011826694012, - -0.024945002049207687, - 0.014882486313581467, - 0.005123695358633995, - 0.034492507576942444, - 0.0011274110293015838, - -0.011013303883373737, - -0.005467035807669163, - 0.027731340378522873, - 0.004711026791483164, - -0.014142983593046665, - 0.00392530532553792, - -0.0033937878906726837, - -0.005358091089874506, - -0.050074879080057144, - 0.03531124070286751, - 0.013588356785476208, - 0.036948710680007935, - 0.0161898210644722, - -0.011290617287158966, - 0.012624362483620644, - -0.022092634811997414, - 0.010504895821213722, - 0.004545959178358316, - 0.0011043016565963626, - 0.016638804227113724, - -0.003935209475457668, - -0.010544512420892715, - 0.0022713288199156523, - 0.002939852187409997, - 0.018896928057074547, - -0.007573297247290611, - 0.011455684900283813, - 0.0077911862172186375, - -0.003037242218852043, - 0.014512735418975353, - 0.009897448122501373, - 0.011145357973873615, - 0.013918492011725903, - 0.011680176481604576, - -0.016850091516971588, - 0.0054835425689816475, - 0.00037841725861653686, - 0.02810109220445156, - 0.028074681758880615, - 0.004443617071956396, - 0.00865614041686058, - -0.007302586454898119, - 0.020890943706035614, - -0.008048691786825657, - 0.0006223045056685805, - 0.030293188989162445, - -0.0012966052163392305, - 0.011772614903748035, - 0.00666872737929225, - 0.008187348023056984, - -0.014631583355367184, - -0.014578762464225292, - -0.022383153438568115, - -0.0224623866379261, - -0.011594342067837715, - 0.0026707921642810106, - -0.021432364359498024, - -0.014142983593046665, - -0.0007250590133480728, - 0.011851847171783447, - -0.003035591449588537, - 0.016467133536934853, - -0.03158731758594513, - -0.02689940109848976, - 0.02254161797463894, - -0.01471081655472517, - -0.0020402343943715096, - 5.1428844017209485e-05, - -0.011838641948997974, - -0.003816360840573907, - 0.04236292466521263, - -0.02679375745356083, - -0.005110490135848522, - 0.06930194050073624, - -0.005886307451874018, - -0.017959345132112503, - 0.005533062852919102, - -0.0011629005894064903, - -0.002660888247191906, - -0.003664498683065176, - -0.006572987884283066, - 0.00666872737929225, - -0.007830802351236343, - -0.041676245629787445, - -0.029632918536663055, - -0.016097383573651314, - 0.0044799321331083775, - 0.021313516423106194, - 0.012208392843604088, - -0.020943764597177505, - 0.024311142042279243, - -0.012954497709870338, - 0.01468440517783165, - -0.0069724516943097115, - -0.006398016586899757, - -0.007071491796523333, - 0.01761600375175476, - -0.0042191254906356335, - -0.005232640076428652, - -0.0006949342205189168, - 0.02164365164935589, - -0.011746203526854515, - -0.022330332547426224, - -0.006473947782069445, - 0.006992259528487921, - -0.0026130187325179577, - -0.009871036745607853, - 0.019015775993466377, - -0.023518817499279976, - -0.018593203276395798, - 0.0022069525439292192, - -0.016374696046113968, - 0.039167217910289764, - -0.0005789742572233081, - -0.01917424239218235, - 0.014552351087331772, - 0.024971412494778633, - -0.005199626553803682, - -0.08483149111270905, - -0.03845412656664848, - 0.015120184049010277, - 0.01761600375175476, - 0.005245845299214125, - 0.016084177419543266, - -0.0013840910978615284, - 0.0212738998234272, - -0.02786339446902275, - 0.031428854912519455, - -0.008748577907681465, - -0.005889608524739742, - 3.39677972078789e-05, - 0.0017728250240907073, - 0.027176713570952415, - -0.007111108396202326, - -0.03681665658950806, - -0.019808100536465645, - -0.02474692091345787, - 0.011072728782892227, - 0.010161555372178555, - -0.02151159755885601, - -0.015159799717366695, - -0.014816459268331528, - 0.0028226543217897415, - 0.01084823627024889, - -0.019755279645323753, - 0.0022977397311478853, - 0.039167217910289764, - 0.0020765492226928473, - 0.00482657365500927, - 0.004641698207706213, - 0.005972142331302166, - -0.033647362142801285, - -0.005193023942410946, - 0.009494682773947716, - -0.01024739071726799, - -0.01624264195561409, - 0.011766011826694012, - -0.017048172652721405, - -0.0010135144693776965, - -0.01000309083610773, - 0.03311914578080177, - -0.008471264503896236, - 0.005955635569989681, - -0.010927468538284302, - -0.0006573813152499497, - 0.009937063790857792, - -0.0014847822021692991, - 0.00653337175026536, - -0.020217468962073326, - -0.01922706328332424, - -0.005750951822847128, - 0.004760547075420618, - 0.024429991841316223, - -0.007949651218950748, - 0.0035159378312528133, - 0.0066555216908454895, - -0.016255848109722137, - 0.008748577907681465, - -0.008755180984735489, - 0.01411657314747572, - -0.01875166781246662, - 0.0467471182346344, - -0.010108734481036663, - -0.010022899135947227, - -0.01714061014354229, - -0.019860923290252686, - 0.008827810175716877, - -0.0013816150603815913, - -0.007929842919111252, - 0.016493545845150948, - 0.0006090991082601249, - 0.012129160575568676, - -0.032036300748586655, - 0.0049982438795268536, - -0.06137870252132416, - -0.011772614903748035, - -0.007487461902201176, - -0.026939017698168755, - -0.01910821534693241, - -0.020455164834856987, - 0.029738562181591988, - 0.02001938782632351, - 0.03182501345872879, - 0.004215823952108622, - -0.009732380509376526, - -0.01144247967749834, - -0.0006367479218170047, - -0.016757654026150703, - -0.004707725252956152, - 0.006754562258720398, - 0.016255848109722137, - -0.00413659168407321, - -0.01708778738975525, - -0.014222216792404652, - 0.007533681113272905, - -5.565870014834218e-05, - 0.0029827698599547148, - -0.0021046106703579426, - -0.0185799989849329, - -0.0227661095559597, - -0.020032592117786407, - 0.0515274740755558, - 0.007804391905665398, - -0.010920866392552853, - 0.007956253364682198, - 0.011290617287158966, - 0.021854937076568604, - -0.006932835094630718, - -0.002634477335959673, - -0.0152786485850811, - -0.0014113271608948708, - 0.01066996343433857, - -0.02942163310945034, - 0.007744967471808195, - -0.020362727344036102, - -0.03309273347258568, - -0.0009912303648889065, - -0.023928185924887657, - 0.01996656507253647, - 0.02510346658527851, - -0.010544512420892715, - -0.01183203887194395, - 0.0122876251116395, - 0.01893654465675354, - -0.03396429121494293, - -0.010920866392552853, - -0.01449953019618988, - 0.002413286827504635, - -0.0161898210644722, - -0.008378827013075352, - 0.006582892034202814, - -0.007692145649343729, - 0.0012033421080559492, - 0.007500667590647936, - -0.004859587177634239, - -0.001327968086116016, - 0.0003150725970044732, - 0.026622086763381958, - 0.02684657834470272, - 0.049467429518699646, - -0.03800514340400696, - -0.017338691279292107, - 0.01743112877011299, - -0.02469409815967083, - -0.031798604875802994, - 0.00012730831804219633, - -0.0027318671345710754, - -0.0013898684410378337, - 0.011977298185229301, - 0.010821825824677944, - 0.03504713252186775, - 0.029685739427804947, - 0.0050939833745360374, - -0.0002529659541323781, - 0.015173004940152168, - -0.02660888247191906, - 0.001196739380247891, - -0.008504278026521206, - 0.0072695729322731495, - -0.04357782006263733, - 0.036526136100292206, - 0.015331470407545567, - 0.00865614041686058, - -0.001700195367448032, - -0.011402863077819347, - -0.006718247663229704, - -0.024245114997029305, - 0.009705969132483006, - 0.010518101043999195, - -0.020890943706035614, - -0.017167020589113235, - 0.017338691279292107, - -0.005892910063266754, - 0.002548642223700881, - 0.015159799717366695, - -0.01798575557768345, - 0.0038427715189754963, - -0.004588876850903034, - 0.0010605587158352137, - 0.01809139922261238, - 0.016810474917292595, - -0.005826883018016815, - -0.008332607336342335, - 0.011904668994247913, - 0.0134893162176013, - -0.0005108839250169694, - -0.014393886551260948, - 0.012234803289175034, - 0.01150850672274828, - -0.0038295660633593798, - 0.0007114409236237407, - 0.016995349898934364, - 0.0038427715189754963, - -0.009461669251322746, - 0.026225924491882324, - 0.020468370988965034, - 0.013627973385155201, - -0.009184355847537518, - 0.03079499490559101, - 0.03546970710158348, - -0.001415453851222992, - -0.003207261674106121, - 0.010630347765982151, - -0.00466150650754571, - -0.021524803712964058, - 0.05356110632419586, - -0.022132251411676407, - -0.02205301821231842, - -0.0260674599558115, - 0.005166613031178713, - 0.011792422272264957, - 0.002444649813696742, - -0.007612913381308317, - -0.00907871313393116, - 0.011746203526854515, - 0.02786339446902275, - -0.017959345132112503, - 0.019372321665287018, - -0.009871036745607853, - 0.005876403301954269, - 0.010511498898267746, - 0.00027751974994316697, - 0.0009078712901100516, - 0.013429892249405384, - 0.006530070677399635, - 0.0037569364067167044, - 0.008768386207520962, - -0.02296419069170952, - -0.0009095219429582357, - -0.007078094873577356, - 0.02086453326046467, - -0.012604555115103722, - -0.00820715632289648, - -0.017470745369791985, - -0.017299074679613113, - 0.005414213985204697, - 0.020151441916823387, - 0.01575404219329357, - 0.008504278026521206, - 0.09518452733755112, - 0.013205400668084621, - 0.01471081655472517, - 0.01671803742647171, - -0.005691527388989925, - 0.007652529515326023, - 0.0071771349757909775, - -0.008411840535700321, - -0.010623744688928127, - -0.034254807978868484, - 0.005800472106784582, - -0.01876487396657467, - 0.02300380729138851, - -0.04703763499855995, - -0.019095009192824364, - -0.002720312448218465, - -0.01165376603603363, - 0.012967702932655811, - -0.02847084403038025, - -0.014974923804402351, - 0.04952025040984154, - 0.0012091194512322545, - 0.043657053261995316, - 0.017655620351433754, - -0.024852564558386803, - -0.010828427970409393, - 0.0037173202726989985, - 0.004202618729323149, - 0.0025387383066117764, - -0.007830802351236343, - -0.0072035458870232105, - 0.011145357973873615, - -0.03087422624230385, - -0.01840832829475403, - 0.010518101043999195, - -0.01471081655472517, - -0.013027127832174301, - 0.006886616349220276, - 0.02054760232567787, - -0.004625191446393728, - -0.023835748434066772, - 0.02312265709042549, - -0.02733517996966839, - 0.0020171250216662884, - 0.01183203887194395, - -0.023333942517638206, - -0.004446918610483408, - -0.023862158879637718, - -0.040065184235572815 - ], - "sparse": "SparseEmbedding(values=array([1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722,\n 1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722]), indices=array([ 372990882, 47951928, 1294733183, 1147900472, 255174557,\n 922977895, 911111262, 164058840, 653745147, 2103309648]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 27, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 10 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000028.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000028.json deleted file mode 100644 index c5cd75118b3d6b97bbfee053c8617b09fdc50261..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000028.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000028", - "content": "Abbildung 12: Spezifischer Heiz- und K\u00fchlbedarf im Fallstudiengebiet Gromb\u00fchl mit und ohne Ber\u00fccksichtigung des Verschattungseffekts durch B\u00e4ume (eigene Darstellung und", - "embedding": { - "dense": [ - 0.010888277553021908, - -0.00848394725471735, - 0.01360052078962326, - -0.03314962983131409, - 0.013109171763062477, - 0.013443289324641228, - -0.01910362020134926, - -0.0132467495277524, - -0.007927085272967815, - -0.01132721547037363, - -0.008470844477415085, - 0.011301010847091675, - 0.006017378531396389, - -0.0002364613610552624, - -0.008575664833188057, - -0.0004950333968736231, - 0.014871474355459213, - 0.013397430069744587, - 0.019562212750315666, - -0.002854733495041728, - -0.030791157856583595, - 0.033647529780864716, - 0.023414382711052895, - 0.0003052501124329865, - 0.0019031557021662593, - -0.003904581069946289, - 0.014478395693004131, - -0.06121544539928436, - -0.02315233089029789, - 0.006715093273669481, - 0.009322514757514, - -0.018225746229290962, - -0.009761452674865723, - -0.02489497885107994, - -0.014936987310647964, - -0.03383096680045128, - -0.004199389833956957, - -0.015172834508121014, - 0.016614122316241264, - -0.014242548495531082, - -0.003622874617576599, - -0.0035901181399822235, - 0.010541058145463467, - -0.0017295458819717169, - 0.019601520150899887, - 0.010600020177662373, - 0.01863192580640316, - 0.0029071439057588577, - -0.024449490010738373, - 0.028013402596116066, - 0.02154070883989334, - 0.02431846410036087, - -0.008726345375180244, - -0.0071147228591144085, - -0.013004351407289505, - 0.021737247705459595, - -0.029664333909749985, - 0.0038488947320729494, - 0.00778950797393918, - -0.017662333324551582, - -0.006240122951567173, - -0.011438587680459023, - -0.02197309583425522, - -0.0034034056589007378, - -0.05199119821190834, - -0.012565413489937782, - -0.023925386369228363, - -0.012892979197204113, - 0.005801185499876738, - -0.015068014152348042, - 0.03550810366868973, - 0.021868273615837097, - -0.002938262652605772, - -0.010960342362523079, - 0.024606721475720406, - -0.021684836596250534, - 0.013397430069744587, - 0.003013602690771222, - -0.007717443630099297, - 0.009283206425607204, - 0.03962232545018196, - -0.04274074733257294, - -0.023060612380504608, - 0.03115803189575672, - 0.012250950559973717, - 0.007651930674910545, - -0.01686307229101658, - 0.018317462876439095, - -0.017963692545890808, - 0.01576245203614235, - 0.017845770344138145, - 0.022208942100405693, - 0.018789157271385193, - 0.004238697700202465, - -0.01910362020134926, - -0.0053687989711761475, - -0.0009229158749803901, - 0.016142427921295166, - -0.0019883227068930864, - -0.031262852251529694, - -0.0090211546048522, - 0.022431686520576477, - -0.010632776655256748, - -0.007095069158822298, - -0.045466095209121704, - 0.00877875555306673, - 0.02260202169418335, - 0.009204590693116188, - 0.011694088578224182, - -0.03128905966877937, - -0.02814442850649357, - 0.0441296249628067, - -0.03632046654820442, - -0.010455891489982605, - 0.01016108226031065, - -0.02648039720952511, - 0.005961692426353693, - 0.010174185037612915, - -0.02202550508081913, - 0.0026287133805453777, - 0.0006260595982894301, - -0.004166633356362581, - 0.00013501841749530286, - -0.007422634866088629, - 0.03333306685090065, - 0.01133376732468605, - -0.016247250139713287, - -0.00595514103770256, - -0.012932286597788334, - -0.005378625821322203, - -0.02038767747581005, - 0.009977645240724087, - 0.018540209159255028, - 0.01856641285121441, - -0.01700720191001892, - 0.03411922603845596, - -0.009355271235108376, - 0.012788157910108566, - -0.023401280865073204, - -0.017295459285378456, - -0.0018114373087882996, - 0.028354071080684662, - -0.02598249725997448, - -0.01920844241976738, - -0.006079616025090218, - 0.010652430355548859, - -0.004438512958586216, - 0.025078415870666504, - -0.014491498470306396, - -0.01986357383430004, - -0.012879876419901848, - -0.03162972629070282, - 0.022798560559749603, - -0.0019522905349731445, - 0.014727345667779446, - -0.004759526811540127, - -0.012421284802258015, - 0.0070623126812279224, - -0.020138727501034737, - -0.002415795810520649, - 0.013849469833076, - -0.015199040062725544, - 0.011104471050202847, - -0.006001000292599201, - -0.00014658557483926415, - 0.01303055603057146, - 0.002328990725800395, - -0.022313762456178665, - 0.028013402596116066, - -0.015199040062725544, - 0.013482596725225449, - 0.02209101803600788, - -0.03542948514223099, - 0.028354071080684662, - 0.001506801345385611, - 0.010128325782716274, - -0.017190638929605484, - 0.007959841750562191, - 0.014779755845665932, - -0.031184237450361252, - -0.04200700297951698, - -0.004926585592329502, - 0.01296504307538271, - 0.0019015178550034761, - -0.03388337790966034, - -0.010377275757491589, - 0.01576245203614235, - 0.021619323641061783, - 0.0025009626988321543, - -0.018487798050045967, - 0.0068395682610571384, - 0.017347870394587517, - 0.012342669069766998, - 0.019929086789488792, - -0.6205401420593262, - -0.0010883364593610168, - -0.01760992221534252, - -0.019051210954785347, - 0.003783381776884198, - 0.01749199815094471, - 0.014190138317644596, - -0.00563085125759244, - -0.012015103362500668, - 0.011274805292487144, - 0.009132526814937592, - 0.006852670572698116, - -0.006040308158844709, - -0.00276301521807909, - 0.010272454470396042, - -0.009263552725315094, - -0.004707116633653641, - 0.012945389375090599, - 0.027829965576529503, - 0.0033526329789310694, - 0.00623684749007225, - 0.013679136522114277, - 0.008280856534838676, - -0.013626725412905216, - 0.015290758572518826, - 0.0031970394775271416, - 0.0248163640499115, - -0.03149870038032532, - -0.004435237031430006, - 0.02210412174463272, - -0.042059414088726044, - 0.027541708201169968, - -0.009446989744901657, - -0.0008827890851534903, - 0.038678936660289764, - 0.003511502407491207, - -0.02822304517030716, - 0.017098920419812202, - -0.0028514578007161617, - 0.006148404907435179, - -0.024475695565342903, - -0.031420085579156876, - 0.023257151246070862, - 0.0026450916193425655, - -0.009669734165072441, - 0.02606111206114292, - 0.007344019133597612, - 0.0008049922762438655, - -0.005457241553813219, - -0.013862572610378265, - 0.03794518858194351, - -0.001459304359741509, - -0.005607921630144119, - 0.006076340563595295, - 0.011766153387725353, - -0.0010711392387747765, - 0.01868433691561222, - -0.022353071719408035, - -0.004409031942486763, - 0.030660131946206093, - 0.018186436966061592, - 0.008916333317756653, - 0.00750780152156949, - -0.021200040355324745, - -0.011169984005391598, - 0.040460892021656036, - -0.045020606368780136, - 0.005716018378734589, - 0.01576245203614235, - -0.01581486314535141, - -0.007219544146209955, - 0.008490498177707195, - 0.014242548495531082, - 0.009984197095036507, - 0.015408681705594063, - 0.0012185437371954322, - 0.03157731518149376, - -0.018343668431043625, - -0.011694088578224182, - 0.003151180222630501, - 0.002894041361287236, - -0.02380746230483055, - 0.005594818852841854, - -0.020217344164848328, - 0.02320474199950695, - -0.03155111148953438, - -0.0039242347702383995, - -0.008379125967621803, - -0.013141928240656853, - 0.014242548495531082, - 0.00818258710205555, - 0.02155381068587303, - -0.01966703310608864, - -0.00509364390745759, - -0.02932366542518139, - 0.03739488124847412, - -0.0014249100349843502, - 0.03102700598537922, - 0.03168213739991188, - -0.03047669678926468, - -0.0042616273276507854, - -0.019431186839938164, - 0.02545839175581932, - 0.008556011132895947, - 0.025170134380459785, - 0.006574240047484636, - -0.0020259928423911333, - -0.0005167346098460257, - 0.028642328456044197, - -0.016771353781223297, - 0.015094218775629997, - -0.0232702549546957, - -0.007730546407401562, - -0.0008836080087348819, - 0.005119848996400833, - -0.02772514522075653, - 0.03178695961833, - -0.00957801565527916, - 0.009826965630054474, - -0.0042878324165940285, - 0.029533307999372482, - -0.01438667718321085, - 0.03107941709458828, - -0.021724145859479904, - -0.001103895832784474, - 0.023008201271295547, - 0.015382477082312107, - -0.026912782341241837, - -0.0049200342036783695, - -0.007258852012455463, - 0.021055910736322403, - 0.013403980992734432, - 0.01923464797437191, - -0.014635627157986164, - 0.04344829171895981, - 0.010580366477370262, - 0.022182736545801163, - 0.0019522905349731445, - 0.013430186547338963, - -0.04276695474982262, - -0.025523904711008072, - 0.00425180047750473, - 0.0338047631084919, - -0.001427366747520864, - -0.012205091305077076, - -0.010547609999775887, - -0.024423284456133842, - 0.01749199815094471, - -0.0219992995262146, - 0.015356271527707577, - -0.009427336044609547, - 0.00778950797393918, - 0.018278155475854874, - -0.007140928413718939, - 0.01584106869995594, - -0.00787467509508133, - -0.0020079766400158405, - -0.01181856356561184, - -0.010829316452145576, - -0.007586417254060507, - 0.007455391343683004, - 0.019627725705504417, - -0.02438397705554962, - 0.007435737177729607, - -0.029611922800540924, - 0.0019162582466378808, - 0.002263477770611644, - 0.00904080830514431, - -0.007127825636416674, - -0.026912782341241837, - 0.002871111733838916, - -0.002741723321378231, - 0.007271954324096441, - 0.0035606371238827705, - -0.014504601247608662, - -0.0010850607650354505, - -0.013901880942285061, - 0.006701990496367216, - -0.016548609361052513, - -0.021265553310513496, - 0.02490808255970478, - -0.009617323987185955, - -0.013928085565567017, - -0.005326215177774429, - 0.017976796254515648, - 0.019509801641106606, - 0.024462593719363213, - 0.013358121737837791, - -0.012041308917105198, - -0.010658982209861279, - -0.005047784652560949, - 0.019522905349731445, - -0.0005228764493949711, - 0.04067053645849228, - -0.004405756015330553, - -0.004310762044042349, - 0.011301010847091675, - 0.014216343872249126, - -0.005722569767385721, - 0.00873289629817009, - 0.019968394190073013, - 0.00774364871904254, - 0.02319163829088211, - -0.01868433691561222, - 0.04575435072183609, - -0.02764653041958809, - 0.02088557742536068, - -0.01975875161588192, - 0.052803561091423035, - -0.0030938563868403435, - 0.01691548340022564, - -0.027515502646565437, - -0.03731626272201538, - -0.0027204316575080156, - -0.0028498200699687004, - 0.025733547285199165, - 0.00985972210764885, - -0.013299159705638885, - 0.00718678766861558, - -0.024161232635378838, - 0.013652930967509747, - -0.004448339808732271, - 0.021016603335738182, - 0.005241048522293568, - 0.002178310649469495, - 0.01296504307538271, - 0.006023929920047522, - -0.008700139820575714, - 0.01982426457107067, - 0.0012324652634561062, - -0.01916913501918316, - 0.010337967425584793, - -0.023440588265657425, - 0.009008051827549934, - 0.002582854125648737, - 0.010921034030616283, - 0.030791157856583595, - -0.035298459231853485, - 0.044313061982393265, - 0.002197964582592249, - 0.011490998789668083, - 0.03322824463248253, - -0.00871324259787798, - -0.03047669678926468, - 0.012368873693048954, - 0.025274954736232758, - 0.01802920550107956, - 0.011504100635647774, - -0.01184476912021637, - 0.02319163829088211, - -0.012015103362500668, - 0.01640448160469532, - 0.006351495627313852, - 0.013757751323282719, - 0.035874973982572556, - 0.0022143428213894367, - 0.03236347436904907, - -0.0010596744250506163, - 0.035350870341062546, - 0.03293998911976814, - 0.0011800547363236547, - 0.000734565663151443, - 0.0007558574434369802, - -0.023492999374866486, - 0.01413772813975811, - -0.01018728781491518, - -0.02193378657102585, - -0.043186236172914505, - -0.003547534579411149, - 0.01590658165514469, - 0.013482596725225449, - -0.01868433691561222, - -0.012250950559973717, - 0.006377700716257095, - 0.0006768322782590985, - -0.009532156400382519, - -0.0027204316575080156, - 0.019378775730729103, - 0.02382056415081024, - -9.207661787513644e-05, - -0.010102120228111744, - -0.03666113317012787, - -0.018972594290971756, - 0.03231106325984001, - -0.0018736748024821281, - -0.003753900760784745, - 0.0064726946875452995, - 0.006076340563595295, - -0.02036147192120552, - 0.009034257382154465, - -0.01154340896755457, - -0.025183236226439476, - 0.0015772279584780335, - 0.00240596872754395, - -0.008556011132895947, - -0.009289758279919624, - 0.017216844484210014, - -0.015369374305009842, - 0.0005990354693494737, - 0.021619323641061783, - 0.009545259177684784, - 0.004281281493604183, - -0.018409181386232376, - -0.007154030725359917, - 0.04879416152834892, - 0.013240198604762554, - -0.0036916634999215603, - -0.01806851476430893, - -0.0020554736256599426, - -0.01329260878264904, - -0.00159196846652776, - 0.010475545190274715, - -0.0036097720731049776, - -0.0078026107512414455, - -0.005876525305211544, - 0.004540058318525553, - -0.009709041565656662, - 0.007167133502662182, - 0.038102421909570694, - 0.00849704910069704, - 0.0016443788772448897, - -0.014504601247608662, - -0.010868623852729797, - 0.022733047604560852, - 0.04357931762933731, - 0.024462593719363213, - 0.008654280565679073, - 0.0022520129568874836, - 0.01016108226031065, - -0.004523679614067078, - -0.04360552132129669, - -0.039360273629426956, - 0.009047359228134155, - -0.017675435170531273, - -0.007127825636416674, - -0.004284556955099106, - 0.012067513540387154, - -0.015081116929650307, - 0.00634166831150651, - -0.018959492444992065, - 0.002702415455132723, - -0.0053098369389772415, - 0.001685324590653181, - -0.007068864069879055, - -0.017125125974416733, - 0.008542908355593681, - 0.0070754149928689, - 0.03328065574169159, - 0.014609422534704208, - -0.009407681412994862, - 0.010927585884928703, - 0.025563213974237442, - 0.006253225728869438, - -0.0162996593862772, - -0.02426605299115181, - 0.0009483021567575634, - 0.024030206725001335, - 0.026676936075091362, - -0.020033907145261765, - -0.00011874250049004331, - 0.0034590917639434338, - -0.015395578928291798, - 0.01240163017064333, - 0.009571464732289314, - 0.03445989266037941, - 0.027358273044228554, - 0.012185437604784966, - 0.0007050847634673119, - 0.0022782182786613703, - 0.0033575466368347406, - -0.006423559971153736, - 0.025314263999462128, - 0.01298469677567482, - -0.0024878601543605328, - 0.029009202495217323, - -0.0163651742041111, - -0.023427486419677734, - 0.006171334534883499, - -0.006656131241470575, - -0.0022995099425315857, - -0.002818701323121786, - -0.02365023083984852, - 0.008103971369564533, - 0.007547109387814999, - -0.02937607653439045, - -0.028354071080684662, - -0.0028858522418886423, - 0.005136227235198021, - -0.017085816711187363, - -0.007167133502662182, - -0.010881726630032063, - -0.025170134380459785, - -0.013521905057132244, - -0.0022503752261400223, - 0.0005847044521942735, - 3.188645496265963e-05, - -0.03204901143908501, - 0.0033297035843133926, - 0.03445989266037941, - -0.0042616273276507854, - -0.001377413049340248, - -0.022366173565387726, - -0.014701140113174915, - -0.0030529105570167303, - -0.023060612380504608, - -0.03852170333266258, - 0.004307486582547426, - -0.022864073514938354, - -0.01474044844508171, - 0.019470494240522385, - -0.02144899033010006, - -0.017321664839982986, - -0.015264553017914295, - 0.014163932763040066, - 0.01683686673641205, - 0.010305210947990417, - 0.0014322801725938916, - -0.005431036464869976, - -0.0215276051312685, - -0.003051272826269269, - 0.006403905805200338, - 0.0032428987324237823, - 0.023990899324417114, - -0.02775135077536106, - 0.02380746230483055, - 0.016614122316241264, - -0.006521829403936863, - 0.0013847831869497895, - 0.009433886967599392, - 0.028563713654875755, - -0.046566713601350784, - 0.01974564976990223, - -0.00733746774494648, - 0.017858872190117836, - 0.036006003618240356, - -0.02138347737491131, - -0.004278005566447973, - -0.03508881852030754, - -0.0037506252992898226, - 0.008608422242105007, - -0.025864573195576668, - 0.0025844918563961983, - 0.021344169974327087, - 0.019680136814713478, - 0.024528106674551964, - -0.018762953579425812, - 0.0419807955622673, - 0.01683686673641205, - -0.005670159123837948, - 0.016758251935243607, - 0.0014658557483926415, - -0.012486797757446766, - -0.031262852251529694, - -0.01158271636813879, - -0.0056177484802901745, - 0.013161582872271538, - 0.008706691674888134, - -0.012185437604784966, - -0.03860032185912132, - -0.01750510185956955, - 0.009492848999798298, - 0.011019304394721985, - -0.019365673884749413, - 0.007592968642711639, - -0.025720445439219475, - 0.033621326088905334, - -0.004114222712814808, - -0.002150467596948147, - 0.015054911375045776, - -0.043238647282123566, - -0.018749849870800972, - -0.0028858522418886423, - 0.0226675346493721, - 0.02257581613957882, - -0.013331916183233261, - -0.004225595388561487, - -0.01191683392971754, - 0.000607634021434933, - -0.009093218483030796, - -0.051126427948474884, - 0.0010277368128299713, - -0.006328565999865532, - 0.013456391170620918, - 0.02655901201069355, - 0.017845770344138145, - -0.00011505738802952692, - 0.0008123624720610678, - -0.01910362020134926, - -0.014936987310647964, - 0.027463093400001526, - 0.006685612257570028, - -0.0010629501193761826, - -0.03047669678926468, - 0.019653931260108948, - 0.005552235525101423, - -0.006210642401129007, - 0.025576315820217133, - 0.0024370874743908644, - 0.020073214545845985, - 0.026965193450450897, - -0.010783457197248936, - -0.013521905057132244, - -0.008051560260355473, - -0.00906046200543642, - 0.013928085565567017, - 0.008084316737949848, - -0.00792053434997797, - 0.007855021394789219, - 0.0029153330251574516, - -0.006217193324118853, - 0.04693358764052391, - -0.012591618113219738, - -0.009165283292531967, - -0.005214842967689037, - -0.0028121499344706535, - -0.03445989266037941, - 0.0327303484082222, - -0.002058749319985509, - 0.006462867837399244, - -0.0036458042450249195, - 0.0017770429840311408, - -0.017413383349776268, - -0.01635207049548626, - 0.010567263700067997, - 0.01635207049548626, - 0.0013225458096712828, - 0.006747849751263857, - -0.016168633475899696, - 0.0014846906997263432, - 0.006420284043997526, - -0.0028318038675934076, - -0.008523254655301571, - 0.00024403631687164307, - -0.004471269436180592, - -0.030922185629606247, - -0.017793359234929085, - -0.004284556955099106, - -0.012237847782671452, - 0.0270962193608284, - 0.011104471050202847, - -0.008025355637073517, - 0.03658251836895943, - -0.016574814915657043, - 0.017623024061322212, - 0.013692238368093967, - -0.02717483602464199, - 0.025104621425271034, - 0.017832666635513306, - 0.046671535819768906, - 0.029716743156313896, - -0.031970392912626266, - -0.044889580458402634, - -0.027908582240343094, - -0.015985196456313133, - -0.007796059362590313, - 0.01930016092956066, - 0.01016108226031065, - 0.006073064636439085, - -0.029192639514803886, - 0.007461942732334137, - 0.029192639514803886, - 0.022326866164803505, - 0.0007018091273494065, - 0.04116843268275261, - 0.001641922164708376, - -0.005512927658855915, - -0.014910782687366009, - 0.010691738687455654, - -0.03170834109187126, - 0.02423984929919243, - 0.0003941022732760757, - -0.010586917400360107, - -0.011091368272900581, - -0.019889777526259422, - 0.0014920609537512064, - 0.04006781429052353, - 0.0011784170055761933, - 0.0348791778087616, - 0.0027957716956734657, - 0.005247599445283413, - 0.00959766935557127, - -0.019378775730729103, - 0.000688706524670124, - 0.02154070883989334, - 0.0007382507901638746, - 0.035350870341062546, - -0.004029056057333946, - -0.018880875781178474, - -0.011772704310715199, - 0.0030660133343189955, - -0.0035311563406139612, - -0.014557011425495148, - -0.004707116633653641, - 0.014517704024910927, - 0.01443908829241991, - -0.015356271527707577, - 0.014805961400270462, - 0.006426835432648659, - 0.01806851476430893, - 0.00067191879497841, - 0.003206866327673197, - -0.011641678400337696, - -0.024606721475720406, - -0.015932787209749222, - 0.00397009402513504, - 0.0038882025983184576, - -0.022379275411367416, - -0.007154030725359917, - -0.014819064177572727, - -0.011523755267262459, - -0.008169484324753284, - -0.01857951655983925, - -0.009918684139847755, - -0.027463093400001526, - -0.013928085565567017, - 0.0035770153626799583, - 0.0070033506490290165, - 0.01919533871114254, - 0.007448839955031872, - -0.042662132531404495, - -0.00317247211933136, - 0.0384954996407032, - -0.04061812534928322, - 0.02375505119562149, - 0.037578314542770386, - -0.017675435170531273, - 0.005290183238685131, - 0.0016214493662118912, - -0.011661332100629807, - -0.02945469133555889, - 0.02651970461010933, - -0.0035901181399822235, - -0.014557011425495148, - -0.016247250139713287, - -0.012853670865297318, - 0.03270414099097252, - -0.008929436095058918, - -0.009309411980211735, - 0.017675435170531273, - 0.006125475279986858, - 0.003708041738718748, - -0.027541708201169968, - -0.026729347184300423, - 0.017085816711187363, - 0.012342669069766998, - 0.008261202834546566, - 0.027515502646565437, - -0.036006003618240356, - -0.000688706524670124, - 0.00733746774494648, - 0.010816213674843311, - -0.019562212750315666, - -0.025117723271250725, - -0.015683837234973907, - 0.0018130751559510827, - 0.01986357383430004, - -0.025039108470082283, - 0.001113722799345851, - -0.00990558136254549, - -0.021291758865118027, - -0.025733547285199165, - 0.0039013053756207228, - 0.01527765579521656, - -0.006574240047484636, - 0.004726770333945751, - 0.005463792942464352, - -0.01975875161588192, - 0.018828466534614563, - -0.011242048814892769, - -0.009381476789712906, - -0.007121274247765541, - -0.010816213674843311, - -0.04478475823998451, - 0.003106958931311965, - -0.0015854170778766274, - 0.024161232635378838, - 0.0053687989711761475, - -0.02486877329647541, - -0.007835366763174534, - 0.0005560424760915339, - -0.03799759969115257, - -0.005037957802414894, - -0.009794209152460098, - -0.006760952528566122, - 0.012624375522136688, - 0.012702991254627705, - -0.020702140405774117, - 0.01694168895483017, - 0.023912282660603523, - -0.0016230870969593525, - -0.021619323641061783, - -0.016849970445036888, - 0.004805386066436768, - 0.002478033071383834, - 0.03275655210018158, - -0.008379125967621803, - -0.0197194442152977, - -0.022955792024731636, - 0.0025877675507217646, - -0.01810782216489315, - -0.020571114495396614, - 0.01525145024061203, - 0.005899454932659864, - 0.01130756177008152, - -0.010128325782716274, - 0.009545259177684784, - -0.012571964412927628, - 0.0013700427953153849, - -0.004202665761113167, - -0.029166433960199356, - -0.009630425833165646, - 0.027908582240343094, - 0.019011903554201126, - -0.04418203607201576, - 0.0031970394775271416, - -0.00552603043615818, - 0.012650580145418644, - -0.02254961058497429, - -0.023034406825900078, - -0.00040597651968710124, - -0.006125475279986858, - -0.029061613604426384, - 0.009617323987185955, - 0.020151831209659576, - 0.0009720506495796144, - 0.00593548733741045, - 0.014019804075360298, - -0.01191683392971754, - -0.0018884151941165328, - 0.011884077452123165, - -0.016273455694317818, - 0.0010015316074714065, - -0.008352920413017273, - -0.014294959604740143, - 0.006636477541178465, - -0.007625725120306015, - 0.004186287522315979, - -0.016627226024866104, - 0.02044008858501911, - -0.02547149546444416, - -0.004225595388561487, - -0.012834017165005207, - 0.023348869755864143, - 0.01698099635541439, - -0.019915983080863953, - 0.007841918617486954, - 0.017911283299326897, - 0.016090018674731255, - -0.007461942732334137, - 0.007278505712747574, - 0.0014322801725938916, - -0.02720104157924652, - -0.012827465310692787, - -0.0033640977926552296, - -0.007992598228156567, - -0.021697940304875374, - 0.01042313501238823, - -0.016823764890432358, - -0.03668733686208725, - 0.006970594171434641, - 0.19643448293209076, - -0.007606071420013905, - -0.009263552725315094, - 0.043264854699373245, - 0.0039799208752810955, - -0.005139503162354231, - 0.016286557540297508, - 0.006597169674932957, - 0.015068014152348042, - 0.03490538150072098, - -0.023335767909884453, - -0.01982426457107067, - -0.018802260980010033, - 0.004690738394856453, - 0.0022880451288074255, - -0.026965193450450897, - -0.03521984443068504, - -0.023401280865073204, - -0.013639828190207481, - 0.04740528017282486, - 0.030188437551259995, - 0.0012275518383830786, - -0.0048119374550879, - -0.005640678107738495, - 0.025838367640972137, - -0.003675285028293729, - -0.031865574419498444, - 0.023859871551394463, - 0.01639137789607048, - 0.0016820488963276148, - -0.012617823667824268, - -0.004183011595159769, - -0.010927585884928703, - -0.023584717884659767, - -0.0197194442152977, - -0.008261202834546566, - 0.00397009402513504, - -0.015225245617330074, - 0.03346409276127815, - 0.027332067489624023, - -0.0022798560094088316, - 0.003400130197405815, - 0.0044843717478215694, - -0.008745999075472355, - 0.004209216684103012, - 0.03721144422888756, - -0.005355696193873882, - 0.0010981634259223938, - 0.004654705990105867, - -0.005218118894845247, - -0.02544528990983963, - -0.010429685935378075, - 0.03548189625144005, - 0.028065813705325127, - -0.00792053434997797, - 0.00037670033634640276, - 0.028589919209480286, - -0.01329260878264904, - 0.012775055132806301, - 0.0021390027832239866, - -0.05272494629025459, - 0.009610772132873535, - -0.002789220307022333, - 0.018776055425405502, - -0.0006846119067631662, - -0.008837717585265636, - -0.02598249725997448, - 0.004333691671490669, - -0.007422634866088629, - -0.015683837234973907, - -0.0037178685888648033, - -0.018304361030459404, - -0.02201240323483944, - -0.0013282782165333629, - -0.0336737334728241, - -0.03275655210018158, - 0.025039108470082283, - -0.0231392290443182, - 0.02209101803600788, - 0.021868273615837097, - 0.00290223048068583, - 0.019640829414129257, - -0.011418933980166912, - 0.004759526811540127, - -0.02100350148975849, - -0.017360972240567207, - 0.00927665550261736, - 0.009335617534816265, - 0.011222395114600658, - -0.028458891436457634, - 0.009263552725315094, - 0.03173454850912094, - -0.008379125967621803, - -0.006069789174944162, - 0.03170834109187126, - 0.001965393079444766, - -0.021946890279650688, - 0.0028596469201147556, - -0.00849704910069704, - -0.008857371285557747, - -0.0037309713661670685, - 0.05264633148908615, - 0.04221664369106293, - -0.02093798853456974, - -0.01270954217761755, - 0.006246674340218306, - -0.004654705990105867, - 0.016234146431088448, - 0.0018229021225124598, - 0.006322014611214399, - 0.008064663037657738, - 0.0019031557021662593, - 0.013390878215432167, - 0.004366448149085045, - 0.010075915604829788, - -0.004212492611259222, - 0.006328565999865532, - 0.00011280537728453055, - 0.008293959312140942, - -8.086773596005514e-05, - -0.023545408621430397, - 0.0025206166319549084, - 0.019562212750315666, - 0.011956141330301762, - 0.01437357533723116, - -0.007625725120306015, - -0.025654930621385574, - 0.0057291206903755665, - 0.008012252859771252, - -0.01555281039327383, - 0.029009202495217323, - -0.0033837517257779837, - -0.024750851094722748, - 0.0021930511575192213, - 0.014072214253246784, - 0.01686307229101658, - 0.0032920334488153458, - -0.003943888936191797, - -0.020007701590657234, - -0.007658481597900391, - 0.02764653041958809, - -0.013587418012320995, - 0.0014658557483926415, - 0.020728345960378647, - 0.02363712713122368, - -0.0017426485428586602, - 0.02099039778113365, - -0.0065545858815312386, - -0.017649229615926743, - -0.027489298954606056, - -0.009722144342958927, - -0.00875910185277462, - -0.0033166008070111275, - -0.03616323322057724, - 0.03204901143908501, - 0.002705691149458289, - -0.01798989810049534, - -0.041456691920757294, - 0.0040094018913805485, - 0.027279656380414963, - -0.01411152258515358, - 0.022693738341331482, - 0.0087197944521904, - -0.02772514522075653, - 0.005968243815004826, - -0.0004700565186794847, - -0.16477856040000916, - 0.0062204692512750626, - -0.001957203960046172, - -0.01979806087911129, - 0.015146629884839058, - 0.0016230870969593525, - 0.016509301960468292, - 0.01327295508235693, - -0.011399280279874802, - 0.016129326075315475, - 0.00955181010067463, - 0.002938262652605772, - -0.014871474355459213, - 0.0037571764551103115, - -0.005817563738673925, - -0.002106246305629611, - -0.035901181399822235, - 0.026375574991106987, - 0.01920844241976738, - 0.029140228405594826, - 0.018946388736367226, - -0.015683837234973907, - 0.006767503451555967, - -0.006721644662320614, - 0.0033198765013366938, - -0.011097920127213001, - -0.025812162086367607, - 0.0336737334728241, - -0.012362322770059109, - -0.009125974960625172, - 0.010082466527819633, - 0.012578516267240047, - 0.04858451709151268, - -0.002630351111292839, - 0.0005552235525101423, - -0.01749199815094471, - -0.00381941394880414, - 0.0026319888420403004, - -0.007468493655323982, - 0.038076214492321014, - 0.002930073533207178, - 0.00290223048068583, - 0.006544759031385183, - 0.0010195476934313774, - -0.006181161385029554, - 0.008903230540454388, - 0.012460592202842236, - 0.003426335286349058, - 0.006325290072709322, - -0.011078265495598316, - 0.0316559299826622, - -0.030948389321565628, - -0.010436237789690495, - 0.02762032486498356, - -0.008988398127257824, - 0.008103971369564533, - 0.00778950797393918, - 0.004838142544031143, - -0.012820914387702942, - 0.01135342102497816, - -0.0013553022872656584, - -0.01557901594787836, - -0.012558861635625362, - -0.01102585531771183, - -0.01979806087911129, - -0.009519053623080254, - 0.008451190777122974, - 0.0047791809774935246, - 0.005188637878745794, - 0.0065545858815312386, - -0.012303360737860203, - -0.026860373094677925, - 0.012716093100607395, - -0.016535507515072823, - -0.0026287133805453777, - 0.003156093880534172, - -0.01077035441994667, - -0.014661832712590694, - 0.026965193450450897, - -0.028406482189893723, - 0.002171759493649006, - 0.0575467087328434, - -0.024187438189983368, - -0.014845269732177258, - -0.0066659580916166306, - -0.0025713893119245768, - -0.01578865759074688, - -0.0026925886049866676, - 0.004481096286326647, - 0.00750780152156949, - 0.004461442586034536, - -0.031944189220666885, - -0.026192137971520424, - -0.039858173578977585, - 0.024488797411322594, - 0.016574814915657043, - 0.013155031017959118, - -0.01694168895483017, - 0.0042059412226080894, - -0.007389877922832966, - 0.008510151877999306, - -0.012611272744834423, - -0.05141468346118927, - -0.00012048269127262756, - 0.009610772132873535, - -0.007049209903925657, - -0.0005281994235701859, - 0.0032805686350911856, - 0.016679637134075165, - -0.004068363923579454, - -0.02707001380622387, - -0.0033215144649147987, - 0.013928085565567017, - 0.0012611272977665067, - -0.008411882445216179, - 0.019051210954785347, - -0.0059420387260615826, - -0.026860373094677925, - 0.0018196264281868935, - -0.03498399630188942, - 0.04352690652012825, - 0.0018147130031138659, - -0.0017098920652642846, - 0.013980496674776077, - -0.000551947916392237, - -0.01755751110613346, - -0.09046049416065216, - -0.011798909865319729, - 0.03212762624025345, - 0.024960491806268692, - 0.008228445425629616, - 0.018251949921250343, - 0.003360822331160307, - 0.029716743156313896, - -0.010685186833143234, - 0.021763453260064125, - -0.024960491806268692, - -0.015565913170576096, - 0.005028130486607552, - -0.010102120228111744, - 0.0141508299857378, - -0.0036458042450249195, - -0.008569113910198212, - -0.025641828775405884, - -0.034721944481134415, - 0.021750349551439285, - 0.009669734165072441, - -0.008254650980234146, - -0.009558361954987049, - -0.01919533871114254, - 0.01500250119715929, - 0.005162432789802551, - -0.025576315820217133, - 0.01918223686516285, - 0.040906380861997604, - -0.0072850571013987064, - 0.01381016243249178, - -0.02539287880063057, - 0.02213032729923725, - -0.03805001080036163, - -0.008556011132895947, - -0.0014863285468891263, - -0.011399280279874802, - -0.013613622635602951, - 0.02439708076417446, - -0.015120424330234528, - -0.0050870925188064575, - 0.004720218945294619, - 0.034774355590343475, - -0.0348791778087616, - 0.0040650879964232445, - -0.022431686520576477, - -0.019981496036052704, - 0.001437193714082241, - 0.0174395889043808, - 0.008110522292554379, - -0.03042428568005562, - -0.013213993050158024, - -0.002217618515715003, - 0.02195999212563038, - 0.021265553310513496, - -0.001651749131269753, - 0.007573314942419529, - -0.01580176129937172, - -0.017112022265791893, - 0.0017082542181015015, - -0.011969244107604027, - 0.008569113910198212, - -0.012906081043183804, - 0.03550810366868973, - -0.006394078955054283, - -0.004618673585355282, - -0.0450730137526989, - -0.035324666649103165, - 0.012316463515162468, - -0.012080616317689419, - -0.0010138152865692973, - 0.002070214133709669, - 0.0163651742041111, - 0.006626650225371122, - -0.033568914979696274, - 0.0001360420574201271, - -0.0486893393099308, - -0.0052279457449913025, - -0.005827390588819981, - -0.014072214253246784, - -0.012912632897496223, - -0.030712543055415154, - 0.029166433960199356, - -0.009309411980211735, - 0.05948589742183685, - 0.014046009629964828, - -0.009899030439555645, - -0.017046509310603142, - 0.006538207642734051, - -0.0022962342482060194, - 0.009702490642666817, - 0.021331066265702248, - 0.009899030439555645, - -0.005280356388539076, - -0.027803761884570122, - -0.001405256101861596, - 0.003265828127041459, - -0.017924385145306587, - 0.008130175992846489, - 0.0033542709425091743, - -0.018514003604650497, - -0.003370649181306362, - -0.034250251948833466, - 0.033621326088905334, - 0.009355271235108376, - -0.00908666756004095, - -0.0042878324165940285, - -0.001141565851867199, - 0.012362322770059109, - 0.0007894329028204083, - 0.010560712777078152, - -0.00792053434997797, - -0.011477896012365818, - 0.013135377317667007, - -0.01132721547037363, - 0.0010039883200079203, - -0.020151831209659576, - -0.030686337500810623, - 1.3038643373874947e-05, - 0.009394578635692596, - 0.017675435170531273, - 0.03453850746154785, - -0.01809471845626831, - -0.008339818567037582, - -0.008654280565679073, - 0.024148130789399147, - -0.022916482761502266, - 0.009401130490005016, - -0.00735712144523859, - 0.013836367055773735, - -0.019391879439353943, - 0.004363172687590122, - 0.023361973464488983, - -0.010482097044587135, - 0.0019342743325978518, - 0.008018803782761097, - -0.012395079247653484, - -0.004137152340263128, - -0.006819914095103741, - 0.03236347436904907, - 0.04732666537165642, - 0.03097459487617016, - -0.029271254315972328, - -0.027227245271205902, - 0.029245048761367798, - -0.031210443004965782, - -0.009407681412994862, - -0.0016746787587180734, - -0.010731046088039875, - 0.0014101695269346237, - 0.0033772005699574947, - 0.0008344731759279966, - 0.027253450825810432, - 0.015343168750405312, - 0.010855521075427532, - -0.02143588662147522, - 0.03736867383122444, - -0.01097999606281519, - -0.002284769434481859, - -0.008929436095058918, - 0.015225245617330074, - -0.024095719680190086, - 0.03396199271082878, - -0.002094781491905451, - 0.018749849870800972, - -0.020479395985603333, - 0.005594818852841854, - -0.0013921534409746528, - -0.016247250139713287, - 0.004956066142767668, - 0.0068068113178014755, - -0.04004161059856415, - -0.029166433960199356, - 0.005126400385051966, - -0.006525105331093073, - 0.005683261901140213, - 0.0004311581142246723, - 0.003727695671841502, - 0.004549885168671608, - 0.01691548340022564, - 0.0011423847172409296, - 0.014819064177572727, - 0.018356772139668465, - 0.02099039778113365, - -0.013639828190207481, - 0.019509801641106606, - 0.0340668149292469, - -0.006289258133620024, - -0.0219992995262146, - 0.001183330430649221, - 0.025104621425271034, - 0.006859221961349249, - -0.0037113174330443144, - 0.02437087520956993, - 0.0021193488501012325, - -0.004959342069923878, - 0.02890438213944435, - 0.01048864796757698, - 0.018265053629875183, - -0.02819683961570263, - 0.03204901143908501, - 0.02940228022634983, - -0.0008176854462362826, - -0.0021029706113040447, - 0.009820414707064629, - -0.012054410763084888, - -0.03223244845867157, - 0.019077416509389877, - -0.020662833005189896, - -0.030712543055415154, - -0.021580016240477562, - 0.01523834839463234, - -0.0004196933296043426, - -0.008818063884973526, - -0.0203221645206213, - 0.016037607565522194, - -0.022222043946385384, - 0.01464872993528843, - -0.017767153680324554, - -0.010881726630032063, - -0.00761917419731617, - 0.003963542636483908, - 0.0013143566902726889, - 0.023977795615792274, - -0.012958492152392864, - 0.011779256165027618, - -0.004795559216290712, - 0.000289281306322664, - 0.008346369490027428, - -0.023938488215208054, - 0.006122199352830648, - -0.01413772813975811, - 0.027253450825810432, - -0.009388027712702751, - -0.004264903254806995, - -0.031315263360738754, - -0.006243398878723383, - -0.01580176129937172, - 0.0070885177701711655, - 0.013849469833076, - 0.0243446696549654, - 0.08935987204313278, - 0.021069014444947243, - -0.01523834839463234, - 0.014517704024910927, - -0.026807961985468864, - 0.01100620161741972, - 0.022418584674596786, - 0.004202665761113167, - 0.0007972125895321369, - -0.04302900657057762, - -0.006023929920047522, - -0.012224745005369186, - 0.026794860139489174, - -0.04515163227915764, - -0.020715244114398956, - -0.016142427921295166, - -0.000410480541177094, - 0.0017737672897055745, - -0.011497549712657928, - 0.003134801983833313, - 0.04512542486190796, - -0.014923885464668274, - 0.0348791778087616, - 0.03673974797129631, - -0.030686337500810623, - -0.026912782341241837, - 0.010115223005414009, - -0.020518703386187553, - -0.012794708833098412, - 0.009761452674865723, - -0.016522405669093132, - 0.003267466090619564, - -0.052908383309841156, - -0.046723946928977966, - 0.0360846184194088, - -0.021016603335738182, - -0.001421634340658784, - 0.001473225886002183, - 0.02482946589589119, - -0.0004348432121332735, - -0.010095569305121899, - 0.03000500239431858, - -0.015408681705594063, - 0.016483096405863762, - -0.00029767517116852105, - -0.010894829407334328, - -0.0115696145221591, - -0.016260351985692978, - -0.03270414099097252 - ], - "sparse": "SparseEmbedding(values=array([1.6054732 , 1.6054732 , 1.6054732 , 1.6054732 , 1.95827538,\n 1.6054732 , 1.6054732 , 1.6054732 , 1.6054732 , 1.6054732 ,\n 1.6054732 , 1.6054732 , 1.6054732 , 1.6054732 , 1.6054732 ,\n 1.6054732 , 1.6054732 , 1.6054732 ]), indices=array([2077811411, 103616747, 472906682, 1145495814, 164058840,\n 715386164, 1515684580, 819332622, 1841900287, 231980230,\n 372990882, 1208548439, 47951928, 1294733183, 1147900472,\n 255174557, 922977895, 911111262]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 28, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 20 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000029.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000029.json deleted file mode 100644 index 084e8c1bb9c0de3e079c71b485b1e3c303efeeae..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000029.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000029", - "content": "Abbildung 14: Quartiersarchetypen im Untersuchungsgebiet Grafenb\u00fchl (eigene", - "embedding": { - "dense": [ - 0.01055531669408083, - 0.009929376654326916, - 0.0018382854759693146, - -0.045805592089891434, - 0.023153172805905342, - 0.03297054022550583, - -0.033919330686330795, - -0.014930304139852524, - -0.003785286797210574, - -0.017302285879850388, - -0.001150575582869351, - 0.004121317528188229, - -0.015325633808970451, - -0.010113864205777645, - -0.00667119724676013, - -0.003019334515556693, - 0.004539708606898785, - 0.002455988898873329, - 0.0026833037845790386, - -0.029913319274783134, - -0.005992547143250704, - 0.018251078203320503, - 0.0225206445902586, - -0.02042539417743683, - 0.0040817842818796635, - 0.027409560978412628, - 0.005521445069462061, - -0.04011283814907074, - -0.012261824682354927, - 0.016854245215654373, - 0.0049185664393007755, - -0.0018745240522548556, - -0.01728910766541958, - -0.0042794495820999146, - -0.02561739645898342, - -0.012340891174972057, - -0.000529165961779654, - -0.007491507567465305, - 0.021334653720259666, - 0.020623058080673218, - -0.0044211093336343765, - -0.020359504967927933, - 0.015813207253813744, - -0.027277784422039986, - 0.011701773852109909, - 0.003312537679448724, - 0.0018185189692303538, - 0.010878168977797031, - -0.027857601642608643, - 0.02509029023349285, - 0.022388868033885956, - 0.03413017466664314, - -0.022771019488573074, - -0.008954228833317757, - -0.0052743637934327126, - 0.014574507251381874, - -0.012090515345335007, - 0.016458913683891296, - 0.0019404124468564987, - -0.017868924885988235, - -0.020833902060985565, - -0.023495791479945183, - -0.04477773606777191, - 0.0011859906371682882, - -0.028727328404784203, - -0.012545145116746426, - -0.0028167276177555323, - 0.01211687084287405, - 0.025683285668492317, - -0.028648262843489647, - 0.04222126677632332, - 0.006433999165892601, - -0.016696112230420113, - -0.003551383037120104, - 0.03418288379907608, - -0.03586962819099426, - 0.02129512093961239, - 0.0018366381991654634, - 0.011115367524325848, - 0.007241131737828255, - 0.004526530858129263, - -0.029069947078824043, - -0.04098256304860115, - 0.018013879656791687, - 0.012788931839168072, - 0.013717957772314548, - -0.007445385679602623, - 0.036027759313583374, - -0.017882103100419044, - 0.003755636978894472, - 0.03194268047809601, - 0.011892850510776043, - 0.011675418354570866, - -0.0004912801668979228, - -0.030835755169391632, - -0.011207611300051212, - -0.010575083084404469, - 0.02756769210100174, - 0.011089012026786804, - -0.037055619060993195, - -0.022533820942044258, - 0.018949493765830994, - -0.011187844909727573, - -0.0059892525896430016, - -0.013348983600735664, - -0.00775506068021059, - -4.4706288463203236e-05, - 0.007023700047284365, - 0.004566063638776541, - -0.01968744397163391, - -0.010094097815454006, - 0.02635534666478634, - -0.009843721985816956, - -0.0063055166974663734, - 0.016142649576067924, - -0.02078119106590748, - 0.01689377799630165, - -0.003706220770254731, - -0.0014223650796338916, - 0.0005905245197936893, - -0.0045792413875460625, - 0.008446888998150826, - 0.005560978315770626, - -0.01759219355881214, - 0.023680279031395912, - 0.038953203707933426, - 0.00567298848181963, - 0.002968271030113101, - -0.01815883442759514, - -0.003203821834176779, - -0.020175017416477203, - 0.022757841274142265, - 0.04830935224890709, - -0.0019453540444374084, - -0.011609530076384544, - 0.00011829021241283044, - -0.012162992730736732, - 0.02005641907453537, - -0.03853151574730873, - -0.026236748322844505, - 0.006648136302828789, - 0.012275002896785736, - -0.029359856620430946, - -0.012927297502756119, - 0.007900015451014042, - 0.021690450608730316, - 0.004753845743834972, - 0.02933350019156933, - -0.0073004309087991714, - -0.0244445838034153, - -0.005416024010628462, - -0.016788356006145477, - 0.03903226926922798, - -0.013348983600735664, - -0.004309099167585373, - 0.000606172950938344, - -0.015615543350577354, - 0.04116705060005188, - -0.03890049085021019, - -0.010008443146944046, - 0.0016727409092709422, - 0.00036670995177701116, - 0.011214200407266617, - 0.0022797374986112118, - 0.013487348333001137, - -0.004193794447928667, - 0.008888340555131435, - 0.015958162024617195, - 0.001335886656306684, - -0.018185188993811607, - -0.016524802893400192, - -0.009573579765856266, - -0.010008443146944046, - 0.02059670351445675, - -0.00614079600200057, - 0.024352340027689934, - -0.0036337433848530054, - -0.02004324086010456, - -0.02320588380098343, - -0.010594849474728107, - -0.029570698738098145, - 0.01274280995130539, - 0.03225894272327423, - -0.007570573594421148, - -0.02020137384533882, - -0.014429552480578423, - 0.025933660566806793, - 0.015167501755058765, - -0.023060929030179977, - -0.014917125925421715, - 0.0002919678227044642, - 0.010113864205777645, - 0.011550230905413628, - -0.0034196062479168177, - -0.6346367597579956, - -0.011490930803120136, - -0.0020458337385207415, - -0.00995573215186596, - 0.0017229807563126087, - 0.029149014502763748, - 0.017552660778164864, - -0.009000350721180439, - -0.007379496935755014, - 0.016854245215654373, - -0.005547800567001104, - 0.010403772816061974, - -0.011069245636463165, - 0.02041221596300602, - 0.0019041737541556358, - -0.01272304356098175, - -0.0109770018607378, - -0.006529537029564381, - 0.023930655792355537, - -0.00025984723470173776, - 0.012235470116138458, - 0.01742088422179222, - 0.015918629243969917, - -0.009791010990738869, - 0.01637984812259674, - 0.006694258190691471, - -0.0036798652727156878, - -0.047017939388751984, - -0.02038586139678955, - 0.031099310144782066, - -0.042484819889068604, - 0.03239072114229202, - -0.015062080696225166, - 0.033075958490371704, - 0.043143704533576965, - 0.0046385410241782665, - -0.038294319063425064, - 0.010416951030492783, - 0.0012477609561756253, - 0.014666750095784664, - 0.002091955626383424, - -0.010344473645091057, - 0.013717957772314548, - 0.0039038858376443386, - -0.01761854998767376, - 0.0023291537072509527, - 0.015615543350577354, - -0.010766158811748028, - -0.004618774633854628, - -0.02199353650212288, - 0.019792865961790085, - -0.023825233802199364, - -0.01448226347565651, - 0.018409209325909615, - 0.0282265767455101, - 0.007695761509239674, - -0.006153973285108805, - -0.004539708606898785, - 0.0037095150910317898, - 0.007992259226739407, - -0.0032960656099021435, - 0.010693682357668877, - 0.00574875995516777, - -0.02303457260131836, - -0.007076410576701164, - 0.04772953316569328, - -0.011794017627835274, - -0.0017443945398554206, - 0.006658019497990608, - -0.02199353650212288, - -0.012867998331785202, - 0.028674617409706116, - -0.018923139199614525, - -0.008565487340092659, - 0.03141557425260544, - 0.017368173226714134, - 0.02719871886074543, - -0.02597319521009922, - -0.0038709414657205343, - -0.025050757452845573, - 0.013810201548039913, - -0.015826385468244553, - -0.019305292516946793, - 0.004697840660810471, - 0.014561329036951065, - -0.03608046844601631, - -0.0156814306974411, - 0.0013391810934990644, - 0.006483415141701698, - 0.0033191265538334846, - 0.005389668513089418, - 0.02126876451075077, - -0.03331315889954567, - -0.008552310056984425, - -0.01133279874920845, - 0.04216855391860008, - -0.002225379692390561, - 0.050496846437454224, - 0.0270142313092947, - -0.051893677562475204, - -0.012940475717186928, - -0.004888916853815317, - 0.013197439722716808, - 0.006760146468877792, - 0.005244714207947254, - 0.01619536057114601, - -0.027725825086236, - -0.004454053472727537, - 0.02719871886074543, - -0.044382404536008835, - 0.013941978104412556, - -0.0013087076367810369, - 0.014614040032029152, - -0.0036271545104682446, - 0.007254309020936489, - -0.03710832819342613, - 0.02791031263768673, - 0.007109354715794325, - 0.0009545577340759337, - -0.0029633291997015476, - 0.03399839624762535, - -0.009982087649405003, - 0.022204380482435226, - -0.0022270267363637686, - 0.007946137338876724, - 0.022415222600102425, - 0.0076364618726074696, - -0.0270142313092947, - -0.01498301513493061, - -0.01657751388847828, - 0.02738320454955101, - 0.02041221596300602, - 0.036502156406641006, - -0.002151255263015628, - 0.022191202268004417, - -0.013889268040657043, - 0.0235221479088068, - -0.020820723846554756, - -0.00544567359611392, - -0.0320744588971138, - -0.015365167520940304, - -0.016986021772027016, - 0.020122306421399117, - -0.030809400603175163, - -0.003320773597806692, - -0.014192353934049606, - -0.004836206324398518, - 0.0009553813142701983, - -0.025077112019062042, - 0.05592604726552963, - -0.01880454085767269, - 0.006826034747064114, - 0.004605596885085106, - -0.002078777877613902, - 0.022402044385671616, - -0.016010873019695282, - 0.0028117860201746225, - -0.027725825086236, - -0.002485638717189431, - -0.007524451706558466, - 0.014100110158324242, - 0.0036271545104682446, - -0.007985670119524002, - 0.015496944077312946, - 0.0006638253107666969, - 0.0022039657924324274, - 0.0070632328279316425, - 0.013836557045578957, - -0.021505963057279587, - -0.026421235874295235, - 0.0044408757239580154, - 0.007847304455935955, - -0.005089876241981983, - 0.0034558449406176805, - -0.01533881202340126, - 0.0031527583487331867, - -0.004991043824702501, - 0.014824883081018925, - -0.010799103416502476, - -0.008901518769562244, - 0.00907941721379757, - 0.005508267320692539, - -0.01971379853785038, - 0.0009117302834056318, - 0.006127618253231049, - 0.02775217965245247, - 0.006058435421437025, - 0.01901538297533989, - -0.006611897610127926, - -0.002693186979740858, - 0.016432559117674828, - 0.03555336222052574, - -0.01411328837275505, - 0.016867421567440033, - -0.009626290760934353, - 0.01029176265001297, - -0.0023340953048318624, - 0.014073755592107773, - -0.01677517779171467, - 0.006559187080711126, - 0.016959665343165398, - 0.029702475294470787, - 0.02578870765864849, - -0.005613688845187426, - 0.042273975908756256, - -0.025063935667276382, - 0.004292627330869436, - -0.014363664202392101, - 0.045225776731967926, - 0.016827888786792755, - 0.04343361034989357, - -0.01883089542388916, - -0.04185229167342186, - -0.004444170277565718, - 0.014996192418038845, - 0.027488626539707184, - 0.011774251237511635, - -0.0174604170024395, - -0.0032433548476547003, - -0.007761649787425995, - 0.009132127277553082, - 0.008058147504925728, - 0.020254084840416908, - -0.009632878936827183, - -0.010647560469806194, - -0.001690036617219448, - -0.007880249060690403, - 0.006858978886157274, - -0.016630223020911217, - 0.003706220770254731, - -0.025208888575434685, - 0.01757901720702648, - -0.00048345589311793447, - 0.013460993766784668, - 0.019924642518162727, - 0.027435915544629097, - 0.00925072655081749, - -0.013968333601951599, - 0.01498301513493061, - 0.0035283220931887627, - 0.014798527583479881, - 0.01898902654647827, - -0.01378384605050087, - -0.004885622300207615, - 0.01064097136259079, - -0.006578953471034765, - 0.01793481409549713, - 0.03223259001970291, - -0.011543641798198223, - 0.025722818449139595, - -0.0037128094118088484, - 0.0024741082452237606, - -0.0037193982861936092, - 0.00148084107786417, - 0.006275867111980915, - 0.011504109017550945, - 0.029755186289548874, - -0.007287253625690937, - 0.013171084225177765, - 0.009646057151257992, - 0.009356148540973663, - 0.012492434121668339, - -0.008723619394004345, - -0.0019305291352793574, - 0.009804189205169678, - -0.003854469396173954, - -0.00018016350804828107, - -0.026579366996884346, - -0.02125558815896511, - 0.007326786406338215, - -0.004691251553595066, - -0.006938044913113117, - 0.0012090515810996294, - -0.005524739623069763, - -0.008308523334562778, - -0.01655115745961666, - 0.006578953471034765, - 0.004711018409579992, - 0.03088846616446972, - -0.005577450152486563, - -0.03866329416632652, - -0.02806844376027584, - 0.0075771622359752655, - 0.028806393966078758, - 0.009356148540973663, - -0.014231887646019459, - -0.01411328837275505, - 0.017144152894616127, - -0.026961520314216614, - 0.0030275704339146614, - 0.013065663166344166, - -0.015154324471950531, - 0.01742088422179222, - -0.010792514309287071, - -0.023680279031395912, - -0.02996603026986122, - 0.02704058587551117, - -0.027831247076392174, - -0.005501678679138422, - 0.019410712644457817, - 0.005508267320692539, - 0.009863488376140594, - -0.004566063638776541, - -0.0039236522279679775, - 0.05281611531972885, - -0.012255236506462097, - -0.008776330389082432, - -0.009474746882915497, - -0.019318468868732452, - -0.03360306844115257, - 0.0007828361704014242, - 0.018264254555106163, - -0.0035546773578971624, - 0.0404818132519722, - -0.009349559433758259, - 0.0060518463142216206, - -0.02458953857421875, - -0.019766509532928467, - 0.05703296884894371, - 0.02146643027663231, - -0.0021990241948515177, - -0.030730335041880608, - -0.017750326544046402, - 0.032364364713430405, - 0.02738320454955101, - 0.02129512093961239, - -0.0009100830648094416, - 4.3882682803086936e-05, - -0.01274280995130539, - -0.01342804916203022, - -0.031178375706076622, - -0.04931085556745529, - 0.00042374455370008945, - 0.008031792007386684, - -0.003907180391252041, - 0.012881175614893436, - 0.02775217965245247, - -0.0045166476629674435, - 0.024154676124453545, - -0.0026684787590056658, - -0.012630799785256386, - -0.004836206324398518, - 0.008598431944847107, - -0.003459139261394739, - -0.005659810733050108, - -0.017565838992595673, - 0.011299855075776577, - 0.023983364924788475, - 0.005188709124922752, - -0.03368213400244713, - 0.029570698738098145, - 0.017038730904459953, - -0.0029188545886427164, - -0.018778184428811073, - -0.0020606587640941143, - 0.017210042104125023, - -0.003363601164892316, - 0.035500653088092804, - -0.02510346844792366, - 0.013902445323765278, - -0.0006407643668353558, - -0.006186917889863253, - 0.02930714562535286, - -0.016867421567440033, - 0.005600511096417904, - 0.0167488232254982, - 0.010799103416502476, - -0.021519141271710396, - -0.000971029803622514, - 0.0026174152735620737, - 0.0021051333751529455, - 0.009369325824081898, - -0.010528961196541786, - -0.015615543350577354, - 0.012004860676825047, - 1.9496264940244146e-05, - 0.005636749789118767, - -0.006793090607970953, - -0.022546999156475067, - -0.028042089194059372, - 0.009474746882915497, - -0.005066815298050642, - 0.0018745240522548556, - -0.012413368560373783, - -0.024378696456551552, - -0.01143163163214922, - 0.012347480282187462, - -0.017038730904459953, - -0.021347830072045326, - -0.006134206894785166, - -0.02667161077260971, - -0.004661601968109608, - -0.03447279334068298, - -0.006417526863515377, - -0.0016340315341949463, - -0.002541643800213933, - 0.001483311876654625, - -0.0011439868248999119, - 0.0221648458391428, - 0.00854572094976902, - 0.029069947078824043, - -0.016142649576067924, - -0.003197232959792018, - -0.0026338875759392977, - -0.029597055166959763, - -0.014086932875216007, - -0.0007766591152176261, - -0.018712297081947327, - -0.018765006214380264, - 0.014785349369049072, - -0.01897585019469261, - -0.014310953207314014, - -0.0030720450449734926, - 0.0029419155325740576, - 0.008848807774484158, - -0.01885724999010563, - 0.021532317623496056, - 0.011484342627227306, - -0.02461589314043522, - -0.012433134950697422, - -0.005537917371839285, - 0.00810426939278841, - -7.50509716453962e-05, - -0.01677517779171467, - 0.0359223373234272, - -0.009632878936827183, - -0.010634382255375385, - -0.008236045949161053, - 0.026618899777531624, - 0.010496016591787338, - -0.027146007865667343, - 0.00836123339831829, - -0.008031792007386684, - 0.0244445838034153, - 0.027172362431883812, - -0.002281384775415063, - -0.005837709177285433, - 0.0054324958473443985, - -0.012182759121060371, - 0.011906027793884277, - -0.03347129002213478, - -0.0013474171282723546, - 0.03436737135052681, - -0.0002579941356088966, - 0.01056190486997366, - 0.0026454180479049683, - 0.030835755169391632, - 0.019792865961790085, - -0.012729632668197155, - 0.03413017466664314, - 0.005376490764319897, - 0.017513127997517586, - -0.02962340973317623, - -0.013111785054206848, - -0.004470525775104761, - 0.014785349369049072, - -0.021229231730103493, - -0.018962671980261803, - -0.045779239386320114, - -0.0035250275395810604, - 0.0015788499731570482, - -0.006331872195005417, - 0.004239916335791349, - 0.0010352709796279669, - -0.014021044597029686, - 0.013217206113040447, - -5.175840124138631e-05, - 0.006891923025250435, - 0.005442379042506218, - -0.04058723524212837, - -0.017368173226714134, - 0.009072828106582165, - 0.000772541097830981, - 0.028885459527373314, - -0.009817366488277912, - 8.570634963689372e-05, - 0.008236045949161053, - -0.007115943823009729, - 0.0048131453804671764, - -0.016142649576067924, - -0.0009940906893461943, - -0.003436078317463398, - 0.006737085524946451, - 0.010192930698394775, - 0.005327074322849512, - 0.025907306000590324, - 0.017381351441144943, - -0.0026091793552041054, - 0.001783927553333342, - 0.02667161077260971, - 0.002455988898873329, - -0.01829061098396778, - -0.04029732570052147, - 0.024339163675904274, - -0.015035725198686123, - -0.0056334552355110645, - 0.01656433567404747, - 0.012103692628443241, - 0.013474171049892902, - 0.026632077991962433, - -0.018778184428811073, - -0.0015821444103494287, - -0.005814648233354092, - -0.01586591824889183, - -0.013981511816382408, - 0.014376841485500336, - -0.01727592945098877, - 0.00010840695176739246, - -0.027620403096079826, - 0.011649062857031822, - 0.03381390869617462, - -0.016801534220576286, - -0.0039434186182916164, - -0.005811354145407677, - 0.002065600361675024, - -0.03418288379907608, - 0.04707064852118492, - -0.005264480598270893, - 0.004711018409579992, - -0.016313958913087845, - 0.008611609227955341, - -0.019634732976555824, - -0.0010229168692603707, - 0.03821525350213051, - 0.002159491181373596, - 0.003335598623380065, - -0.00010099451174028218, - -0.010337884537875652, - 0.024668604135513306, - 0.013348983600735664, - 0.01282187644392252, - -0.005103053990751505, - -0.013559825718402863, - 0.001440484425984323, - 0.006081496365368366, - -0.013559825718402863, - -0.004964688327163458, - -0.01056190486997366, - 0.021927649155259132, - 0.027857601642608643, - -8.555192471249029e-05, - 0.03647579997777939, - -0.005201886408030987, - 0.0019091154681518674, - 0.026816565543413162, - -0.0010163281112909317, - 0.014706283807754517, - 0.01742088422179222, - 0.02598637156188488, - 0.015734141692519188, - -0.03465728089213371, - -0.02875368297100067, - -0.007906603626906872, - -0.0017262751935049891, - -0.013493937440216541, - 0.003604093799367547, - 0.019463423639535904, - 0.004042251501232386, - -0.018567342311143875, - 0.021005211398005486, - 0.020715301856398582, - -0.008499599061906338, - -0.016511624678969383, - 0.04206313192844391, - 0.034103818237781525, - -0.00417732261121273, - -0.010608026757836342, - 0.03186361491680145, - -0.0225206445902586, - -0.00012632035941351205, - -0.003068750724196434, - -0.018751829862594604, - 0.002042539417743683, - 0.004816439468413591, - 0.001965120667591691, - 0.03771449998021126, - -0.023232238367199898, - 0.02370663359761238, - -0.010127042420208454, - -0.002373628318309784, - -0.011405276134610176, - -0.011135133914649487, - -0.014007867313921452, - 0.02614450454711914, - 0.005129409488290548, - 0.033392224460840225, - 0.00023513911582995206, - -0.020464926958084106, - 0.023495791479945183, - 0.003689748467877507, - -0.019226225093007088, - -0.005070109851658344, - 0.011616119183599949, - 0.015602365136146545, - 0.0005040459800511599, - -0.0035777383018285036, - -0.021690450608730316, - 0.010739804245531559, - 0.005775115452706814, - -0.0015689667779952288, - 0.009323203936219215, - -0.023653924465179443, - -0.005778410006314516, - -0.00783412717282772, - 0.007082999683916569, - 0.00923096016049385, - 0.0018596991430968046, - -0.007260898128151894, - -0.013111785054206848, - -0.01884407363831997, - 0.000988325453363359, - -0.007985670119524002, - 0.004608891438692808, - -0.02076801285147667, - 0.0023983365390449762, - 0.01760537177324295, - -0.008044969290494919, - 0.04285379499197006, - -0.0035579719115048647, - -0.02980789728462696, - -0.019740154966711998, - 0.02909630350768566, - -0.032548852264881134, - 0.024550005793571472, - 0.025683285668492317, - -0.0034986722748726606, - -0.028121154755353928, - 0.001652150764130056, - -0.018527809530496597, - -0.012545145116746426, - 0.029517987743020058, - -0.016089938580989838, - -0.030097806826233864, - -0.02684292010962963, - -0.03318138048052788, - 0.019054915755987167, - -0.012920708395540714, - -0.010581672191619873, - 0.006664608139544725, - 0.013289683498442173, - 0.014508618041872978, - -0.011734718456864357, - -0.029886962845921516, - 0.019173514097929, - 0.007820948958396912, - 0.001216463977470994, - 0.01989828608930111, - -0.01726275309920311, - 0.02285008504986763, - 0.016340315341949463, - 0.007188420742750168, - 0.02057034894824028, - -0.037767212837934494, - -0.03020322695374489, - -0.00016914779553189874, - 0.03239072114229202, - -0.03926946595311165, - 0.005323780234903097, - -0.003192291362211108, - -0.022876441478729248, - -0.015496944077312946, - 0.0034327839966863394, - 0.011701773852109909, - -0.0003160582564305514, - 0.019107626751065254, - 0.006074907258152962, - -0.003380073234438896, - 0.011273499578237534, - -0.013184262439608574, - -0.007399263791739941, - -0.015760498121380806, - 0.0036864541471004486, - -0.018527809530496597, - 0.001649679965339601, - 0.005257891491055489, - 0.03368213400244713, - -0.003630449064075947, - -0.03766179084777832, - -0.0029007354751229286, - 0.008835630491375923, - -0.031995389610528946, - 0.001267527462914586, - -0.027963023632764816, - -0.014600861817598343, - 0.0020458337385207415, - 0.019766509532928467, - -0.015786852687597275, - 0.023060929030179977, - 0.0077352942898869514, - 0.006391171831637621, - -0.02213849127292633, - -0.011141723021864891, - 0.0032120579853653908, - -0.009204604662954807, - 0.019463423639535904, - -0.021374186500906944, - -0.02107110060751438, - -0.00905965082347393, - 0.004928449634462595, - -0.013823379762470722, - -0.0020557171665132046, - 0.009797600097954273, - -0.00320546911098063, - 0.0028644967824220657, - 7.952931809995789e-06, - 0.022454755380749702, - 0.016089938580989838, - 0.0010369181400164962, - 0.018185188993811607, - -0.04707064852118492, - 0.007260898128151894, - -0.019068093970417976, - 0.011049479246139526, - -0.025419732555747032, - 0.007860482670366764, - -0.00701711094006896, - -0.005854181479662657, - -0.02357485704123974, - 0.0012518790317699313, - -0.005557683762162924, - -0.012670332565903664, - -0.004078489728271961, - 0.026592545211315155, - 0.013302861712872982, - 0.0003047336940653622, - 0.0226655974984169, - -0.016999198123812675, - 0.010173164308071136, - -0.005962897092103958, - -0.005086582154035568, - -0.023508969694375992, - -0.006308811251074076, - -0.01670929044485092, - -0.048731036484241486, - 0.028490129858255386, - -0.018883606418967247, - 0.005939836148172617, - -0.013770668767392635, - 0.023667100816965103, - -0.0032664157915860415, - -0.017737148329615593, - -0.005425907205790281, - 0.021769516170024872, - 0.01919987052679062, - -0.011253733187913895, - 0.0018745240522548556, - -0.010337884537875652, - 0.020306793972849846, - -0.015760498121380806, - -0.008097680285573006, - -0.006216567475348711, - -0.013362160883843899, - 0.0011670476524159312, - 0.012887764722108841, - 0.005959603004157543, - 0.006351638585329056, - -0.008446888998150826, - -0.012980008497834206, - -0.024352340027689934, - 0.00024316925555467606, - 0.1453760862350464, - -0.006519653834402561, - 0.007313608657568693, - 0.026777032762765884, - -0.020794369280338287, - -0.010864991694688797, - 0.02564375288784504, - 0.0005402846145443618, - -0.0007132415776140988, - 0.009461569599807262, - -0.005883831065148115, - -0.0174604170024395, - -0.0023060927633196115, - 0.009178249165415764, - 0.026974696666002274, - -0.03523709997534752, - -0.021150166168808937, - -0.008058147504925728, - 0.009395681321620941, - 0.029544344171881676, - 0.016472091898322105, - -0.02788395620882511, - -0.004206972196698189, - -0.008664320223033428, - 0.021361008286476135, - -0.001617559464648366, - -0.019068093970417976, - 0.000924084335565567, - 0.01830378919839859, - -0.002050775336101651, - 0.0022352628875523806, - -0.009830544702708721, - 0.007392674684524536, - -0.02738320454955101, - -0.008605021052062511, - 0.007643050514161587, - 0.01570778712630272, - 0.020847080275416374, - 0.024998046457767487, - 0.04132518544793129, - 0.02303457260131836, - -0.018040234223008156, - 0.0072213648818433285, - -0.019397534430027008, - -0.01230135839432478, - 0.026368524879217148, - 0.009494513273239136, - 0.007972492836415768, - 0.011141723021864891, - -0.019094448536634445, - -0.009573579765856266, - -0.014627217315137386, - 0.01263738889247179, - 0.017315462231636047, - -0.0179611686617136, - -0.0033323040697723627, - 0.026302635669708252, - 0.004335454665124416, - -0.010792514309287071, - 0.008262401446700096, - -0.037740856409072876, - 0.017908457666635513, - -0.007082999683916569, - 0.021888116374611855, - -0.0028842631727457047, - 0.007873659953474998, - 0.010660737752914429, - -0.01781621389091015, - 0.005343546625226736, - -0.03697655349969864, - 0.010324707254767418, - -0.020464926958084106, - -0.017051909118890762, - 0.0022369101643562317, - -0.004668190609663725, - -0.041404251009225845, - 0.025367021560668945, - 0.00016307370970025659, - 0.018896784633398056, - 0.02369345724582672, - -0.0017674554837867618, - 0.04045545682311058, - 3.412811565794982e-05, - 0.012070748955011368, - -0.025406554341316223, - -0.03020322695374489, - 0.015944985672831535, - 0.0095867570489645, - -0.01508843619376421, - -0.043011926114559174, - -0.029386211186647415, - 0.020319972187280655, - -0.005593922454863787, - -0.012676921673119068, - 0.02598637156188488, - 0.009566990658640862, - -0.004071901086717844, - 0.015971340239048004, - -0.02182222716510296, - -0.016472091898322105, - 0.0006329401512630284, - 0.05139292776584625, - 0.03439372777938843, - -0.0344991497695446, - -0.006938044913113117, - 0.0109770018607378, - -0.005676283035427332, - 0.015193857252597809, - -0.015325633808970451, - -0.015641897916793823, - -0.0009611465502530336, - -0.01793481409549713, - -0.0016883894568309188, - 0.0031824081670492887, - 0.01793481409549713, - 0.009975498542189598, - 0.023601213470101357, - -0.030941177159547806, - -0.00036485682358033955, - -0.008051558397710323, - -0.034762702882289886, - -0.004477114416658878, - -0.0011711657280102372, - 0.023798877373337746, - -0.01116148941218853, - -0.015378344804048538, - -0.02928079105913639, - 0.018422387540340424, - 0.0066613140515983105, - -0.023957010358572006, - 0.031178375706076622, - -0.009731711819767952, - 0.005251302849501371, - -0.004714312497526407, - -0.003986246418207884, - 0.032706987112760544, - -0.018540985882282257, - -0.002431280678138137, - -0.020280439406633377, - 0.007115943823009729, - 0.0450412891805172, - 0.01473263930529356, - 0.003327362472191453, - -0.014086932875216007, - -0.016630223020911217, - -0.0016916837776079774, - 0.006730496883392334, - 0.007478329818695784, - 0.0029122657142579556, - -0.026025904342532158, - 0.005985958036035299, - -0.00016647107258904725, - -0.01185331679880619, - 0.0016587396385148168, - 0.05110301822423935, - -0.000924084335565567, - -0.009797600097954273, - -0.04169416055083275, - 0.0077155278995633125, - 0.027673114091157913, - -0.013316038995981216, - -0.0023340953048318624, - 0.025419732555747032, - -0.01203121617436409, - -0.00701711094006896, - 0.009046472609043121, - -0.16646036505699158, - 0.013849734328687191, - 0.029676120728254318, - -0.03942759707570076, - 0.0004797496658284217, - -0.0181720107793808, - 0.02806844376027584, - 0.012004860676825047, - -0.02182222716510296, - 0.02457636035978794, - 0.024694960564374924, - 0.009823955595493317, - -0.006499887444078922, - 0.0027689586859196424, - -0.01640620268881321, - -0.02547244355082512, - -0.03779356926679611, - 0.023074105381965637, - 0.03415653109550476, - 0.029939673840999603, - 0.027646759524941444, - -0.005897008813917637, - 0.01149751991033554, - 0.02597319521009922, - 0.0027541336603462696, - 0.004391459748148918, - -0.010318118147552013, - 0.05234171822667122, - 0.0009636173490434885, - -0.007214776240289211, - 0.01195214968174696, - -0.0036699820775538683, - 0.04622728005051613, - 0.00011870200978592038, - 0.0010196224320679903, - -0.006516359746456146, - 0.010581672191619873, - 0.010028209537267685, - -0.022006714716553688, - 0.008993762545287609, - 0.011089012026786804, - 0.018712297081947327, - -0.00027837834204547107, - 0.010680504143238068, - 0.0021561968605965376, - 0.009995264932513237, - 0.02563057467341423, - -0.013316038995981216, - -0.003706220770254731, - 0.0031791136134415865, - -0.00864455383270979, - -0.034920834004879, - 0.013520292937755585, - 0.025538330897688866, - 0.011569997295737267, - 0.028911815956234932, - 0.008156979456543922, - -0.0014635453699156642, - 0.00029505635029636323, - -0.01361253671348095, - -0.018751829862594604, - -0.01099676825106144, - 0.002477402566000819, - -0.01590545102953911, - -0.011859905906021595, - -0.030598558485507965, - -0.007728705648332834, - -0.005132703576236963, - 0.002752486616373062, - 0.007946137338876724, - -0.022098958492279053, - -0.02058352530002594, - 0.020319972187280655, - -0.01985875330865383, - -0.0038215252570807934, - 0.0005114584346301854, - 0.008888340555131435, - 0.008861985057592392, - 0.020267261192202568, - -0.00871044211089611, - -0.0007408322999253869, - 0.060090191662311554, - -0.013955156318843365, - -0.03465728089213371, - 0.004678074270486832, - 0.0013012952404096723, - -0.04345996677875519, - 0.012604444287717342, - 0.002482344163581729, - 0.0034459615126252174, - 0.003521733218804002, - -0.023614391684532166, - -0.02946527861058712, - -0.025327488780021667, - 0.019054915755987167, - 0.0060090189799666405, - 8.431651804130524e-05, - -0.0071422988548874855, - -0.02232297882437706, - -0.045067641884088516, - 0.01272304356098175, - -0.00574875995516777, - -0.034789059311151505, - 0.020675769075751305, - 0.010983590967953205, - -0.024101965129375458, - -0.0052743637934327126, - 0.016076762229204178, - 0.022375689819455147, - 0.0008128977497108281, - -0.01897585019469261, - -0.014139643870294094, - -0.002936973934993148, - -0.010271996259689331, - -0.018435565754771233, - 0.0049976324662566185, - -0.01620853878557682, - -0.022006714716553688, - 0.020346328616142273, - -0.008835630491375923, - 0.0544501468539238, - 0.006252806168049574, - -0.017684437334537506, - 0.01124714408069849, - 0.008077913895249367, - -0.015391523018479347, - -0.07479647547006607, - 0.008914696052670479, - 0.029438922181725502, - 0.012004860676825047, - 0.009804189205169678, - 0.014271420426666737, - -0.015325633808970451, - 0.022098958492279053, - 5.672576662618667e-05, - 0.026987874880433083, - -0.020609881728887558, - -0.022810552269220352, - 0.0036106824409216642, - -0.0035414998419582844, - 0.01307225227355957, - 0.020333150401711464, - -0.009441803209483624, - -0.004108139779418707, - -0.01672246679663658, - 0.011675418354570866, - 0.01865958608686924, - -0.0073004309087991714, - -0.013625713996589184, - -0.005659810733050108, - 0.009277082048356533, - -0.009481335990130901, - -0.032179877161979675, - 0.020438572391867638, - 0.03571149334311485, - 0.0027393088676035404, - 0.024470940232276917, - -0.021229231730103493, - 0.018356498330831528, - -0.03381390869617462, - 0.010739804245531559, - -0.006111145950853825, - -0.0006024667527526617, - -0.0017723970813676715, - 0.03244343027472496, - -0.016432559117674828, - 0.00933638121932745, - 0.00019797394634224474, - 0.016972843557596207, - -0.020992033183574677, - 0.011253733187913895, - -0.009132127277553082, - -0.0020623058080673218, - 0.0057915872894227505, - 0.0028694383800029755, - 0.0004447464889381081, - -0.006134206894785166, - -0.007175242993980646, - -0.008776330389082432, - -0.012597856111824512, - 0.008611609227955341, - -0.0048757391050457954, - -0.014100110158324242, - -0.027409560978412628, - -0.011418454349040985, - -0.002564704744145274, - -0.034630924463272095, - -0.0017312167910858989, - -0.018949493765830994, - 0.022270267829298973, - 0.019568845629692078, - 0.010528961196541786, - -0.03231165558099747, - -0.009171660989522934, - 0.003660098882392049, - -0.01868594065308571, - -0.012466078624129295, - 0.005425907205790281, - 0.005936542060226202, - 0.017987525090575218, - -0.02404925413429737, - -0.014258242212235928, - -0.02580188401043415, - -0.004075195640325546, - 0.0002456400834489614, - -0.01759219355881214, - -0.03160006180405617, - -0.0195293128490448, - 0.01987193152308464, - -0.02754133753478527, - 0.04991702735424042, - 0.012248647399246693, - -0.010528961196541786, - -0.0039236522279679775, - -0.006302222143858671, - -0.026289459317922592, - 0.017130974680185318, - 0.02059670351445675, - 0.01195214968174696, - -0.021914470940828323, - -0.0053106024861335754, - 0.007274075876921415, - 0.006918278522789478, - 0.0008960817940533161, - -0.014574507251381874, - -0.007412441540509462, - -0.013164496049284935, - -0.007471740711480379, - -0.0523153617978096, - 0.017908457666635513, - 0.011556820012629032, - -0.013197439722716808, - -0.017130974680185318, - 0.012334302067756653, - 0.005610394291579723, - 0.01039059553295374, - -0.017341818660497665, - 0.012261824682354927, - -0.02859555184841156, - 0.023746168240904808, - -0.012373835779726505, - -0.0052743637934327126, - -0.045093998312950134, - -0.02422056347131729, - -0.011201022192835808, - 0.008657731115818024, - 0.02005641907453537, - 0.04032368212938309, - 0.007076410576701164, - 0.013757491484284401, - 0.018699118867516518, - -0.0026388291735202074, - -0.02493215724825859, - -0.009072828106582165, - -0.0036798652727156878, - 0.028173865750432014, - -0.0301505159586668, - -0.030914822593331337, - 0.008420533500611782, - -0.01727592945098877, - -0.008749974891543388, - 0.02548561990261078, - -0.0042201499454677105, - -0.027277784422039986, - -0.03389297425746918, - 0.04103527590632439, - 0.030071450397372246, - 0.04862561449408531, - -0.03141557425260544, - -0.004216855391860008, - 0.0301505159586668, - -0.02391747757792473, - -0.008651142939925194, - -0.007175242993980646, - 0.0002104309678543359, - -0.01676200143992901, - 0.00959993526339531, - -0.019239403307437897, - 0.025419732555747032, - 0.01934482529759407, - -0.009975498542189598, - -0.03789898753166199, - -0.006397760473191738, - -0.014745816588401794, - 0.013902445323765278, - 0.007590339984744787, - 0.009303437545895576, - -0.011734718456864357, - 0.034446436911821365, - 0.025577863678336143, - -0.004391459748148918, - -0.004974571522325277, - -0.014772172085940838, - -0.006420821417123079, - -0.029254434630274773, - 0.018909960985183716, - 0.027435915544629097, - -0.031837258487939835, - -0.004506764467805624, - -0.003930241335183382, - 0.00952086877077818, - 0.026197215542197227, - 0.008064735680818558, - -0.004526530858129263, - 0.009356148540973663, - 0.006104557309299707, - -0.00570593262091279, - 0.010047975927591324, - -0.0016850950196385384, - 0.01334239449352026, - -0.009211193770170212, - 0.008631376549601555, - 0.018185188993811607, - 0.013691602274775505, - -0.01778985932469368, - 0.0030736923217773438, - 0.011504109017550945, - -0.002432927954941988, - -0.006292338948696852, - 0.02635534666478634, - 0.007043466437608004, - 0.002511993981897831, - 0.0012839995324611664, - 0.003207116387784481, - 0.0019667677115648985, - 0.006648136302828789, - 0.023060929030179977, - 0.053975749760866165, - 0.015391523018479347, - 0.01082545891404152, - -0.0061309123411774635, - -0.022059425711631775, - -0.024536827579140663, - 0.017908457666635513, - 0.0025679990649223328, - -0.03737188130617142, - -0.026921987533569336, - 0.00392694678157568, - 0.012044393457472324, - 0.0124726677313447, - -0.031178375706076622, - -0.011958738788962364, - -0.013283094391226768, - 0.023456258699297905, - -0.02527477778494358, - 0.005985958036035299, - -0.033761199563741684, - 0.012090515345335007, - 0.0077155278995633125, - 0.03397204354405403, - -0.007346552796661854, - -0.0015426113968715072, - 0.017117798328399658, - -0.02337719313800335, - 0.014007867313921452, - -0.0015409642364829779, - -0.02215166948735714, - -0.0057125212624669075, - 0.00878950860351324, - -0.018554164096713066, - -0.012413368560373783, - -0.022257089614868164, - -0.037398237735033035, - -0.017473595216870308, - 0.003380073234438896, - 0.0032433548476547003, - 0.003775403369218111, - 0.09087323397397995, - 0.021479608491063118, - 0.00022793257085140795, - -0.0035052611492574215, - -0.015022547915577888, - 0.017341818660497665, - 0.021505963057279587, - -0.013302861712872982, - -0.007372908294200897, - -0.043512675911188126, - 0.016327137127518654, - -0.02775217965245247, - 0.010851814411580563, - -0.04867832735180855, - -0.020319972187280655, - -0.024115141481161118, - -0.005145881325006485, - 0.0025070523843169212, - -0.019252581521868706, - 0.010423540137708187, - 0.011563408188521862, - 0.015365167520940304, - 0.018435565754771233, - 0.03181090205907822, - -0.02234933339059353, - -0.009323203936219215, - 0.006387877278029919, - -0.012927297502756119, - -0.02250746637582779, - 0.0010080919601023197, - -0.0045430026948452, - 0.006144090089946985, - -0.0617242231965065, - -0.029175369068980217, - 0.005129409488290548, - -0.006615192163735628, - 4.9442012823419645e-05, - -0.018027057871222496, - 0.020662592723965645, - 0.014943481422960758, - -0.0049943383783102036, - 0.01280869822949171, - -0.01641938090324402, - 0.01099676825106144, - 0.0226655974984169, - -0.00836123339831829, - -0.012518789619207382, - -0.009843721985816956, - -0.023667100816965103 - ], - "sparse": "SparseEmbedding(values=array([1.660867, 1.660867, 1.660867, 1.660867, 1.660867, 1.660867,\n 1.660867]), indices=array([2077811411, 1749031367, 623812177, 1515684580, 686997726,\n 627407068, 922977895]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 29, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 7 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000030.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000030.json deleted file mode 100644 index 08f0b1282ce28ef1be6a62556bfa888159a0a041..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000030.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000030", - "content": "Abbildung 15: Thermische Belastung Grafenb\u00fchl (eigene Darstellung nach Hasel et al.", - "embedding": { - "dense": [ - -0.008225919678807259, - 0.005715327803045511, - 0.019682524725794792, - -0.03373405709862709, - 0.021083785220980644, - 0.019007842987775803, - -0.03098343312740326, - 0.01321466825902462, - 0.00257060001604259, - -0.011651224456727505, - 0.0008847080753184855, - 0.003073367290198803, - -0.016581585630774498, - 0.007402030751109123, - 0.004378939978778362, - 0.012916251085698605, - 0.029789768159389496, - 0.009607719257473946, - 0.00939363706856966, - -0.010755974799394608, - -0.010872745886445045, - 0.012423215433955193, - 0.022316375747323036, - 0.0028965878300368786, - -0.01603665202856064, - 0.01228698156774044, - 0.015478742308914661, - -0.04499604180455208, - -0.016490764915943146, - 0.0023305693175643682, - 0.020486952736973763, - -0.004521660972386599, - -0.009672592394053936, - 0.001251241541467607, - -0.024029027670621872, - -0.0018699696520343423, - -0.0014247773215174675, - -0.004304335918277502, - 0.02520972117781639, - 0.0047033061273396015, - -0.004586534108966589, - -0.013039510697126389, - 0.01036024745553732, - -0.017411964014172554, - -0.0021002693101763725, - 0.003970238845795393, - 0.018800249323248863, - 0.00516066187992692, - -0.008031300269067287, - 0.01314979512244463, - 0.02524864487349987, - 0.021252455189824104, - -0.01790499873459339, - 0.007499340455979109, - -0.0047616916708648205, - 0.012578911148011684, - 0.007700447458773851, - 0.019267335534095764, - 0.008498387411236763, - -0.011865305714309216, - -0.024262571707367897, - -0.0059358966536819935, - -0.018670503050088882, - 0.008965474553406239, - -0.013895836658775806, - -0.01869645155966282, - 0.006941430736333132, - 0.010567842051386833, - 0.018385061994194984, - -0.018216390162706375, - 0.022472072392702103, - 0.03279988467693329, - -2.819196197378915e-06, - -0.007181461900472641, - 0.01760658249258995, - -0.017788227647542953, - -0.0004265411989763379, - -0.0017045430140569806, - 0.004881707485765219, - 0.009432561695575714, - 0.021252455189824104, - -0.025598959997296333, - -0.03360430896282196, - 0.02135625295341015, - 0.01454456802457571, - -0.012527012266218662, - -0.02511889860033989, - 0.009341739118099213, - -0.024262571707367897, - -0.0016364260809496045, - 0.011255498044192791, - 0.0124556515365839, - -0.002377602271735668, - 0.007473391015082598, - -0.009562307968735695, - -0.00045167957432568073, - -0.015167350880801678, - 0.01447969488799572, - -0.0018764568958431482, - -0.032566338777542114, - -0.0163869671523571, - 0.007797757163643837, - 0.01019806507974863, - -0.008517849259078503, - -0.03178786113858223, - -0.0010858149034902453, - -0.006785735487937927, - 0.009912623092532158, - -0.011326858773827553, - -0.03536885976791382, - -0.024080926552414894, - 0.016062600538134575, - -0.005316357593983412, - -0.020253408700227737, - 0.014557543210685253, - -0.0077912695705890656, - 0.03957264497876167, - -0.010081293061375618, - 0.005121738184243441, - -0.021395176649093628, - 0.010593791492283344, - -0.0020499927923083305, - -0.01106087863445282, - -0.01034078560769558, - 0.027246737852692604, - 0.016918927431106567, - 0.008310255594551563, - 0.0011458226945251226, - -0.00570884020999074, - -0.00670140003785491, - -0.03152836859226227, - 0.025949275121092796, - 0.013376850634813309, - -0.006960893049836159, - -0.00818699598312378, - 0.0265980064868927, - -0.02034423127770424, - -0.0009682322852313519, - -0.03918340429663658, - -0.028596101328730583, - 0.0016737282276153564, - 0.017840126529335976, - -0.02807711437344551, - -0.013792039826512337, - -0.002200822811573744, - 0.013999633491039276, - -0.015712285414338112, - 0.029270781204104424, - -0.0055661192163825035, - -0.020785368978977203, - -0.0060883485712111, - -0.018047720193862915, - 0.02339327149093151, - -0.0004232975479681045, - -0.002161898883059621, - -0.007745858281850815, - -0.02596224844455719, - 0.025144847109913826, - -0.022848336026072502, - -0.02997141145169735, - 0.008595697581768036, - -0.001073651248589158, - 0.026701804250478745, - -0.0069025070406496525, - -0.0016096659237518907, - 0.0010825713397935033, - 0.004871976096183062, - -0.011261985637247562, - 0.03931315243244171, - -0.023665739223361015, - -0.003509639296680689, - 0.025741679593920708, - -0.014505644328892231, - 0.017762279137969017, - -0.00818699598312378, - 0.016192346811294556, - -0.009906135499477386, - -0.0028560420032590628, - -0.01680215448141098, - -0.03056824579834938, - -0.04170048609375954, - 6.152816058602184e-05, - 0.02253694459795952, - 0.008011838421225548, - 0.006282967980951071, - 0.016685383394360542, - 0.033292919397354126, - 0.0167632307857275, - 0.007324182894080877, - -0.031165078282356262, - 0.007200923748314381, - 0.023445170372724533, - 0.005812637507915497, - 0.0011231170501559973, - -0.6497698426246643, - -0.009601231664419174, - -0.034434687346220016, - -0.01323413010686636, - 0.0034317916724830866, - 0.03656252846121788, - 0.03318912163376808, - 7.734099926892668e-05, - -0.014220202341675758, - 0.0045184176415205, - -0.016244245693087578, - 0.016944875940680504, - -0.021836314350366592, - -0.010483507066965103, - 0.011287934146821499, - -0.01865752786397934, - -0.027843572199344635, - -0.008790316991508007, - 0.019487904384732246, - 0.024080926552414894, - -0.009821800515055656, - 0.006266749929636717, - -0.000862002489157021, - -0.01857968047261238, - 0.025806553661823273, - 0.005442860536277294, - 0.005828856024891138, - -0.029011288657784462, - 0.0070906393229961395, - 0.02335434779524803, - -0.026909397915005684, - 0.01569931022822857, - -0.013597419485449791, - 0.027713825926184654, - 0.02869989722967148, - 0.008225919678807259, - -0.021979035809636116, - 0.022043908014893532, - 0.011819894425570965, - 0.014959757216274738, - -0.032903678715229034, - 0.010730025358498096, - 0.01857968047261238, - 0.0026598006952553988, - -0.02440529316663742, - 0.030386600643396378, - 0.021667644381523132, - -0.017048673704266548, - -0.010619740933179855, - -0.030490398406982422, - 0.007466903887689114, - -0.0043951584957540035, - 0.0007529344293288887, - 0.022952133789658546, - 0.005579093936830759, - 0.010081293061375618, - 0.011839356273412704, - -0.016231270506978035, - -0.02097998932003975, - 0.02997141145169735, - -0.004177833441644907, - 0.011151701211929321, - 0.008699494414031506, - -0.03998783230781555, - -0.0069025070406496525, - 0.010801385156810284, - -0.02807711437344551, - -0.00044235403765924275, - 0.02073347009718418, - -0.0070063043385744095, - 0.015608488582074642, - -0.0038534672930836678, - -0.0071944366209208965, - -0.005919678136706352, - 0.03344861418008804, - 0.02753218077123165, - 0.006941430736333132, - -0.0015228980919346213, - -0.0009698541252873838, - 0.005073083098977804, - -0.002606280380859971, - -0.006195389200001955, - -0.00928984023630619, - 0.011300909332931042, - 0.022679666057229042, - -0.04429541155695915, - -0.018878096714615822, - 0.010866258293390274, - -0.025391364470124245, - 0.012468626722693443, - 0.011560401879251003, - 0.03308532387018204, - -0.03568025305867195, - -0.004466518759727478, - -0.01983822137117386, - 0.02693534642457962, - -0.0053358194418251514, - 0.012124798260629177, - 0.03420114517211914, - -0.034097347408533096, - -0.0029484862461686134, - -0.0009122791816480458, - 0.015647413209080696, - -0.010178603231906891, - 0.007862630300223827, - 0.006393252406269312, - -0.03985808417201042, - -0.003003628458827734, - 0.02504104934632778, - -0.027298636734485626, - 0.010185089893639088, - -0.01228698156774044, - -0.009503921493887901, - 0.006331623066216707, - -0.0007063068333081901, - -0.025105923414230347, - 0.040896058082580566, - -0.009043321944773197, - -0.009614205919206142, - -0.0009893161477521062, - 0.02869989722967148, - 0.011015467345714569, - 0.033292919397354126, - -0.005079570692032576, - -0.015128427185118198, - 0.034175194799900055, - -0.004573559854179621, - -0.026909397915005684, - -0.0060980794951319695, - 0.002272183308377862, - 0.025637883692979813, - 0.029919514432549477, - 0.015880955383181572, - -0.010185089893639088, - 0.017528735101222992, - 0.004184320569038391, - 0.02955622412264347, - 0.0046611386351287365, - 0.011644736863672733, - -0.024794531986117363, - -0.02680560015141964, - -0.0103018619120121, - 0.02401605434715748, - 0.0005648022051900625, - -0.021927136927843094, - -0.014259126037359238, - -0.013389825820922852, - 0.004667625762522221, - 0.023484094068408012, - 0.02191416174173355, - -0.003467471804469824, - -4.120461017009802e-05, - -0.007525289431214333, - 0.0016607536235824227, - 0.025352440774440765, - 0.008180508390069008, - 0.00028807748458348215, - -0.01551766600459814, - 0.005825612228363752, - -0.013519572094082832, - 0.003756157588213682, - 0.0008660570601932704, - -0.03318912163376808, - 0.018268289044499397, - -0.01235185470432043, - 0.00014910697063896805, - 0.02655908279120922, - 0.019448980689048767, - -0.01545279286801815, - -0.02768787555396557, - 0.0017969872569665313, - -0.024093901738524437, - -0.008264844305813313, - 0.021979035809636116, - -0.011995051987469196, - -0.0016672408673912287, - 0.0025495162699371576, - -0.010379710234701633, - -0.011748533695936203, - -0.023873332887887955, - 0.0002710482804104686, - -0.0058580487966537476, - 0.004790884908288717, - -0.010671638883650303, - 0.03204735368490219, - 0.008355666883289814, - -0.004203782416880131, - 0.014557543210685253, - -0.005618018098175526, - 0.012209134176373482, - -0.006539217196404934, - 0.031476471573114395, - -0.014946782030165195, - 0.010768949054181576, - -0.02431447058916092, - -0.01045107003301382, - 5.042876728111878e-05, - 0.00918604340404272, - -0.016244245693087578, - 0.01323413010686636, - 0.020370179787278175, - 0.0005579094286076725, - 0.017502786591649055, - -0.003506395732983947, - 0.023328397423028946, - -0.012896789237856865, - 0.004894681740552187, - -0.011112776584923267, - 0.05124981701374054, - -0.007479878608137369, - 0.021563846617937088, - 0.004181076772511005, - -0.039027709513902664, - -0.008076711557805538, - -0.00825186911970377, - 0.027558129280805588, - 0.016918927431106567, - -0.017619557678699493, - 0.00926389079540968, - -0.035784050822257996, - 0.0018975407583639026, - 0.004544366616755724, - 0.030127108097076416, - -0.007265796884894371, - -0.02882964350283146, - 0.021265430375933647, - -0.0008887626463547349, - 0.0022705616429448128, - 0.01743791252374649, - 0.007538264151662588, - -0.019773347303271294, - 0.01407748181372881, - -0.0001269081694772467, - 0.004239462781697512, - 0.019578726962208748, - 0.016568612307310104, - 0.007992376573383808, - -0.022692641243338585, - 0.033033426851034164, - 0.02191416174173355, - 0.017930949106812477, - 0.010645690374076366, - 0.00827133096754551, - -0.01794392429292202, - 0.00760962488129735, - -0.002663044258952141, - 0.0008251058170571923, - 0.014453746378421783, - -0.011852331459522247, - 0.012968149967491627, - -0.0025073487777262926, - 0.01929328590631485, - -0.014298050664365292, - -0.0010452691931277514, - 0.03695176541805267, - -0.00827781856060028, - 0.03287773206830025, - 0.0021262187510728836, - 0.00769395986571908, - 0.013091408647596836, - 0.02191416174173355, - 0.03386380523443222, - 0.011761508882045746, - -0.01747683621942997, - 0.0054461038671433926, - -0.011430655606091022, - -0.019448980689048767, - -0.0167632307857275, - -0.0179828479886055, - -0.0017823907546699047, - -0.011553914286196232, - 0.013026535511016846, - -0.0067987097427248955, - 0.0043951584957540035, - 0.011690148152410984, - -0.016672408208251, - 0.009218479506671429, - 0.022485045716166496, - 0.01104141678661108, - -0.007402030751109123, - -0.020837267860770226, - -0.034045446664094925, - -0.01755468361079693, - 0.025274593383073807, - 0.0025527598336338997, - -0.02212175726890564, - -0.016581585630774498, - 0.021174607798457146, - -0.023834409192204475, - -6.3257693909690715e-06, - 0.006561922840774059, - -0.0023257038556039333, - -0.005760739091783762, - -0.01407748181372881, - -0.003548563225194812, - -0.011800432577729225, - 0.002658178796991706, - -0.021641695871949196, - 0.01034078560769558, - 0.0243533942848444, - -0.00662679597735405, - -0.006500293500721455, - -0.025365415960550308, - -0.025521110743284225, - 0.041518840938806534, - 0.009114682674407959, - -0.020629674196243286, - -0.01764550618827343, - 0.006921968888491392, - -0.024431241676211357, - 0.015297097153961658, - 0.009426074102520943, - 0.003568025305867195, - 0.0002568572817835957, - 0.009542846120893955, - 0.0053358194418251514, - 0.0038631982170045376, - -0.002880369545891881, - 0.06487318873405457, - 0.00040261921822093427, - -0.00499199191108346, - -0.030594194307923317, - -0.015530641190707684, - -0.002731161192059517, - 0.023380296304821968, - 0.03534291312098503, - 0.010327811352908611, - 0.00361992372199893, - 0.02351004257798195, - -0.0035550505854189396, - 0.0038307616487145424, - -0.053766898810863495, - -0.00015498610446229577, - -0.0007468525436706841, - -0.0030539052095264196, - 0.00453787948936224, - 0.013389825820922852, - -0.008414052426815033, - 0.01920246332883835, - -0.014453746378421783, - 0.0015512800309807062, - -0.022783463820815086, - 0.01131388358771801, - 0.013869887217879295, - -0.0013761224690824747, - -0.007421492598950863, - 0.021330304443836212, - 0.030827738344669342, - 0.0124556515365839, - -0.03422709181904793, - 0.01407748181372881, - 0.013266566209495068, - 0.011839356273412704, - -0.0075188023038208485, - -0.006221338640898466, - 0.009996958076953888, - 0.0019137590425089002, - 0.011177649721503258, - -0.01604962721467018, - -0.0006491373060271144, - -0.007181461900472641, - -0.0017969872569665313, - 0.03207330405712128, - -0.007959939539432526, - 0.018164493143558502, - 0.0146094411611557, - 0.0163869671523571, - 0.009017372503876686, - -0.006954405456781387, - -0.004203782416880131, - -0.0057542514987289906, - 0.0050957887433469296, - -0.016685383394360542, - 0.012514038011431694, - 0.01723031885921955, - 0.006266749929636717, - -0.017295191064476967, - -0.016477789729833603, - -0.01144362986087799, - -0.01313033327460289, - -0.005611530505120754, - -0.035394810140132904, - 0.011625275015830994, - -0.0023192164953798056, - -0.028725847601890564, - 0.00254302890971303, - 0.007531777024269104, - -0.011767996475100517, - 0.0007541507948189974, - 0.009789363481104374, - -0.0019851194228976965, - -0.02815496362745762, - -0.010658664628863335, - 0.01239077840000391, - -9.051836968865246e-05, - -0.006393252406269312, - -0.023743586614727974, - 0.003190138842910528, - 0.008582722395658493, - -0.00730472058057785, - 0.010911669582128525, - -0.009795851074159145, - -0.005342307034879923, - -0.0031463494524359703, - -0.026143893599510193, - -0.016023676842451096, - -0.010626227594912052, - -0.02807711437344551, - -0.0002598981955088675, - 0.015439818613231182, - -0.03555050492286682, - 0.0031333749648183584, - -0.004683844279497862, - 0.00722038559615612, - -0.0010290509089827538, - -0.0037723758723586798, - 0.008161046542227268, - -0.00012842864089179784, - -0.009166581556200981, - -0.0012123177293688059, - 0.0025219451636075974, - 0.029270781204104424, - 0.015089503489434719, - -0.008485413156449795, - 0.04123339802026749, - -0.017035698518157005, - 0.012948688119649887, - -0.012760555371642113, - -0.006192145869135857, - 0.023419220000505447, - -0.019345184788107872, - 0.010879233479499817, - -0.0012609725818037987, - 0.008894113823771477, - 0.034979622811079025, - -0.0034317916724830866, - -0.0020726982038468122, - -0.021304354071617126, - -0.02232935093343258, - 0.002688993699848652, - -0.016646459698677063, - -0.0015261417720466852, - 0.023691687732934952, - 0.009776389226317406, - 0.016412915661931038, - -0.018813224509358406, - 0.030049260705709457, - 0.008478925563395023, - 0.008537311106920242, - 0.03510936722159386, - -0.004826565273106098, - 0.005854805000126362, - -0.03461633250117302, - -0.00901088584214449, - 0.0034642282407730818, - 0.009529870934784412, - 0.006360815837979317, - -0.02554706111550331, - -0.047305528074502945, - -0.017152471467852592, - -0.012111824005842209, - 0.00713605061173439, - -0.011683660559356213, - -0.0032452810555696487, - -0.01023698877543211, - 0.026143893599510193, - 0.0020062034018337727, - 0.017411964014172554, - 0.004995235241949558, - -0.020214485004544258, - -0.035654302686452866, - 0.005322845187038183, - 0.011638249270617962, - 0.02288725972175598, - -0.01247511338442564, - -0.009257404133677483, - -0.01955277845263481, - -0.010742999613285065, - -0.016983799636363983, - -0.007084152195602655, - -0.007479878608137369, - -0.0033734056632965803, - 0.01781417615711689, - 0.0011555536184459925, - 0.019448980689048767, - -0.009607719257473946, - 0.03365620970726013, - -0.013266566209495068, - -0.02579357847571373, - 0.02955622412264347, - -0.003970238845795393, - 0.0009552576811984181, - -0.03461633250117302, - 0.019578726962208748, - 0.012617834843695164, - -0.0014807304833084345, - 0.02296510897576809, - 0.0044113765470683575, - 0.0032436593901365995, - 0.02869989722967148, - -0.029192933812737465, - -0.01895594596862793, - -0.005828856024891138, - -0.022614791989326477, - 0.007577188313007355, - 0.018086643889546394, - -0.008615159429609776, - -0.001461268519051373, - -0.026143893599510193, - -0.005945627577602863, - 0.03913150727748871, - -0.01828126423060894, - -0.015478742308914661, - -0.0001769821683410555, - -0.012650270946323872, - -0.037418853491544724, - 0.039832137525081635, - 0.012598372995853424, - -0.004904413130134344, - -0.005183367524296045, - -0.006247288081794977, - 0.00469681853428483, - -0.018813224509358406, - 0.011657712049782276, - -0.011813406832516193, - 0.0071944366209208965, - 0.00223163771443069, - -0.00019299772975500673, - -0.005147687159478664, - -0.01734708994626999, - 0.010412146337330341, - -0.011430655606091022, - -0.002685749903321266, - -0.009199017658829689, - -0.0368998683989048, - -0.016957851126790047, - 0.004469762556254864, - -0.007317695301026106, - 0.021473024040460587, - -0.007596650160849094, - -0.016685383394360542, - 0.02748028188943863, - -0.015777159482240677, - 0.009283352643251419, - 0.01650373823940754, - 0.0067143747583031654, - 0.017463861033320427, - 0.011618787422776222, - 0.062122564762830734, - 0.03355241194367409, - -0.02107081189751625, - -0.021382201462984085, - -0.04790236055850983, - 0.0014750540722161531, - 0.005021184682846069, - 0.020292332395911217, - -0.014259126037359238, - -0.009108195081353188, - -0.027013195678591728, - -0.01785310171544552, - 0.0020126905292272568, - 0.014830010011792183, - 0.005663429386913776, - 0.04556692764163017, - 0.007882092148065567, - -0.004443813115358353, - -0.003840492572635412, - 0.007402030751109123, - -0.011677173897624016, - 0.01108034048229456, - 0.0027992778923362494, - 0.006321892142295837, - -0.003840492572635412, - -0.02629959024488926, - -0.003814543364569545, - 0.034927722066640854, - -0.002037018071860075, - 0.03355241194367409, - -0.01532304659485817, - -0.005958602298051119, - 0.013558495789766312, - -0.024132825434207916, - 0.01566038653254509, - 0.017502786591649055, - 0.003379893023520708, - 0.022095806896686554, - 0.004868732765316963, - 0.004213513340801001, - 0.013007073663175106, - -0.004953067749738693, - -0.00024063898308668286, - 0.000550205702893436, - 0.001808340079151094, - 0.01929328590631485, - 0.014492670074105263, - 0.002959839068353176, - -0.01108034048229456, - 0.002724673831835389, - 0.0376523956656456, - 0.016957851126790047, - 0.003037686925381422, - -0.006539217196404934, - -0.010347273200750351, - -0.009951546788215637, - -0.0011433899635449052, - -0.004505442921072245, - -0.006896019913256168, - -0.010742999613285065, - -0.00621809484437108, - 0.00023982806305866688, - -0.015439818613231182, - -0.015855006873607635, - -0.011261985637247562, - -0.034512534737586975, - 0.004738986492156982, - -0.00338313658721745, - 0.005517464596778154, - 0.04099985212087631, - 0.0011782592628151178, - -0.021161632612347603, - -0.011255498044192791, - 0.009516896679997444, - -0.043724529445171356, - 0.01646481454372406, - 0.04190807789564133, - 0.014791086316108704, - -0.01243618968874216, - 0.0001458633050788194, - -0.0045151738449931145, - -0.01340280007570982, - 0.022991057485342026, - 0.005303382873535156, - -0.007421492598950863, - -0.01205343846231699, - -0.00914063211530447, - 0.025897376239299774, - -0.02077239379286766, - -0.007732884027063847, - 0.01340280007570982, - -0.000307336711557582, - 0.009945059195160866, - -0.03866441920399666, - -0.008161046542227268, - 0.01852778159081936, - 0.016309119760990143, - -0.013078434392809868, - 0.02820686064660549, - -0.031061282381415367, - 0.005352037958800793, - 0.027220789343118668, - 0.0006491373060271144, - -0.011008979752659798, - -0.024470165371894836, - -0.023211626335978508, - -0.003232306567952037, - 0.01861860416829586, - -0.0002775356115307659, - 0.008907088078558445, - -0.007972914725542068, - -0.004171345848590136, - -0.01654266193509102, - 0.02107081189751625, - 0.003613436594605446, - -0.001735357684083283, - 4.865488881478086e-05, - 0.020084738731384277, - 0.005491515155881643, - 0.0012431323993951082, - -0.02072049491107464, - -0.02322460152208805, - 0.010918157175183296, - 0.0019153808243572712, - -0.031009383499622345, - -0.006610577926039696, - 0.008738418109714985, - 0.020954038947820663, - 0.002346787601709366, - -0.02768787555396557, - -0.018891071900725365, - 0.02094106376171112, - -0.032618239521980286, - -0.014920832589268684, - -0.0018505076877772808, - -0.013688242062926292, - -0.01135929487645626, - 0.010820847935974598, - -0.01760658249258995, - 0.021771442145109177, - 0.005738033447414637, - 0.002421391662210226, - 0.0060980794951319695, - 0.0006102134357206523, - 0.012040463276207447, - -0.017243292182683945, - -0.00045978871639817953, - 0.011177649721503258, - -0.00910170841962099, - -0.022485045716166496, - 0.022277452051639557, - -0.00769395986571908, - -0.00385671085678041, - 0.012624322436749935, - 0.017866075038909912, - 0.007278771605342627, - -0.007888579741120338, - 0.011787458322942257, - -0.004709793254733086, - 0.013013561256229877, - 0.02094106376171112, - -0.02309485524892807, - 0.017917973920702934, - 0.00508605781942606, - 0.012585397809743881, - -0.02680560015141964, - 0.0005376365152187645, - 0.0037204772233963013, - -0.007596650160849094, - -0.003571268869563937, - 0.005705596879124641, - 0.009302815422415733, - -0.020292332395911217, - -0.030801789835095406, - 0.010574329644441605, - -0.0016015567816793919, - -0.011495528742671013, - 0.015971777960658073, - 0.015816083177924156, - 0.01013319194316864, - 0.007434467319399118, - 0.01444077119231224, - -0.017334114760160446, - -0.010749487206339836, - -0.0021732517052441835, - -0.02474263310432434, - 0.013480648398399353, - -0.004972529597580433, - 0.013182231225073338, - -0.017632532864809036, - 0.009666104800999165, - -0.01659456081688404, - -0.008686519227921963, - -0.017087597399950027, - 0.020383154973387718, - 0.011975590139627457, - -0.017632532864809036, - -0.01841101050376892, - 0.011476066894829273, - -0.004881707485765219, - -0.0060980794951319695, - -0.003548563225194812, - -0.011696635745465755, - -0.020759420469403267, - -0.015945829451084137, - 0.01420722808688879, - 0.006419201847165823, - -0.0009893161477521062, - -0.022614791989326477, - 0.0032582557760179043, - -0.0092249670997262, - 0.03331886976957321, - 0.20167776942253113, - -0.021901188418269157, - -0.014778112061321735, - 0.02773977443575859, - 0.002071076538413763, - -0.029270781204104424, - 0.023574916645884514, - -0.0162961445748806, - -0.0013307112967595458, - 0.018631579354405403, - -0.014920832589268684, - -0.015932854264974594, - -0.016646459698677063, - -6.26938563073054e-05, - 0.029115086421370506, - 0.017334114760160446, - -0.030179006978869438, - 0.006441907491534948, - -0.0205129012465477, - 0.025611933320760727, - 0.013610394671559334, - -0.007908041588962078, - 0.0045411232858896255, - -0.012124798260629177, - 0.02195308543741703, - 0.001688324729911983, - -0.017191395163536072, - 0.0020629672799259424, - 0.014648365788161755, - 0.011534452438354492, - -0.01114521361887455, - 0.02254991978406906, - -0.007427979726344347, - -0.024042002856731415, - -0.0078107318840920925, - -0.0019526829710230231, - 0.012027489021420479, - -0.0011255497811362147, - 0.018423985689878464, - 0.03791189193725586, - 0.018553731963038445, - -0.012507550418376923, - -0.014985705725848675, - -0.00759016303345561, - 0.002758732298389077, - 0.021083785220980644, - 0.012637296691536903, - 0.013623368926346302, - -0.016996774822473526, - -0.004294604994356632, - -0.024249596521258354, - -0.009886673651635647, - 0.0019170026062056422, - 0.04704603552818298, - -0.013104383833706379, - -0.005241753533482552, - 0.01247511338442564, - -0.01680215448141098, - 0.016309119760990143, - 0.005121738184243441, - -0.03321507200598717, - 0.022043908014893532, - 0.0009017373085953295, - 0.018423985689878464, - -0.002187848323956132, - 0.012578911148011684, - -0.041648585349321365, - -0.0019121371442452073, - -0.008842214941978455, - -0.01837208680808544, - -0.014336974360048771, - -0.025988198816776276, - -0.018735377117991447, - 0.014583492651581764, - -0.019228411838412285, - -0.022485045716166496, - 0.029374578967690468, - -0.0034836900886148214, - 0.007486365735530853, - 0.012825429439544678, - -0.0047454736195504665, - 0.026779651641845703, - -0.0058742668479681015, - -0.016646459698677063, - -0.017424937337636948, - -0.014804061502218246, - 0.00934822577983141, - 0.02296510897576809, - -0.002038639970123768, - -0.032488491386175156, - -0.0056439670734107494, - 0.03863846883177757, - 0.0011587972985580564, - -0.004972529597580433, - 0.024898329749703407, - -0.005760739091783762, - -0.012715145014226437, - 0.01689297705888748, - -0.011839356273412704, - 0.017801202833652496, - -0.004375696647912264, - 0.07784782350063324, - 0.03056824579834938, - -0.009964521043002605, - 0.0021651426795870066, - -0.004979017190635204, - 0.004495711997151375, - 0.010892207734286785, - 0.0034544970840215683, - -0.011878280900418758, - 0.0013315221294760704, - -5.995701576466672e-05, - 0.002387333195656538, - -0.009730977937579155, - -0.01777525246143341, - 0.0016429134411737323, - -0.008803291246294975, - 0.0005137145635671914, - 0.011242522858083248, - -0.022978082299232483, - -0.02626066654920578, - -0.0024457192048430443, - 0.021927136927843094, - -0.000865246111061424, - -0.00047560155508108437, - -0.019643601030111313, - -0.03941694647073746, - -0.010288887657225132, - 0.017801202833652496, - -0.013286028988659382, - 0.032488491386175156, - -0.01122954860329628, - 0.0009885051986202598, - 0.0037821067962795496, - -0.0032177099492400885, - 0.01099600549787283, - -0.019176514819264412, - -0.015816083177924156, - -0.009769901633262634, - 0.005838586948812008, - 0.005702353082597256, - -0.009906135499477386, - -0.0035615379456430674, - -0.0047811539843678474, - -0.010496481321752071, - -0.015621463768184185, - 0.008530824445188046, - -0.002851176541298628, - -0.018138542771339417, - -0.030153056606650352, - 0.0009155228617601097, - 0.0007383379270322621, - -0.009685566648840904, - -0.00622782576829195, - 0.03643278032541275, - 0.00015265471301972866, - -0.027220789343118668, - -0.021395176649093628, - -0.008751393295824528, - 0.025689782574772835, - -0.01710057258605957, - -0.0078107318840920925, - -0.01211831159889698, - -0.04478844627737999, - 0.017282217741012573, - 0.010606765747070312, - -0.16441459953784943, - -0.00810266099870205, - -0.006312161218374968, - -0.03770429641008377, - -0.011242522858083248, - 0.007012791465967894, - 0.0262217428535223, - 0.002157033421099186, - -0.01437589805573225, - 0.014635390602052212, - 0.01700975000858307, - 0.00018610495317261666, - -0.021641695871949196, - -0.007402030751109123, - -0.008057249709963799, - 0.0070063043385744095, - -0.0027084555476903915, - 0.010872745886445045, - 0.02600117400288582, - 0.012799479998648167, - 0.01538791973143816, - -0.02680560015141964, - -0.008744905702769756, - -0.0004585723509080708, - -0.016568612307310104, - 0.009555820375680923, - -0.009302815422415733, - 0.03630303591489792, - 0.007732884027063847, - 0.003003628458827734, - -0.010580816306173801, - 0.021213531494140625, - 0.033967599272727966, - 0.006655988749116659, - -0.0002807792625389993, - -0.008718956261873245, - -0.003457740880548954, - -0.012338880449533463, - -0.02389928139746189, - 0.023717636242508888, - 0.03718531131744385, - 0.0022884015925228596, - -0.00020546554878819734, - 0.01976037211716175, - -0.010807872749865055, - 0.02605307102203369, - 0.02693534642457962, - 0.004161614924669266, - 0.0029760573524981737, - -0.001295030931942165, - 0.010976542718708515, - -0.033422667533159256, - 0.015011655166745186, - 0.029141034930944443, - 0.01861860416829586, - 0.006493805907666683, - 0.01228698156774044, - 0.012059925124049187, - -0.0014126136666163802, - -0.00252356706187129, - 0.012274007312953472, - -0.0023565185256302357, - -0.00614349078387022, - -0.01551766600459814, - 0.0006750865723006427, - -0.014557543210685253, - -0.003918340429663658, - -0.0022851580288261175, - -0.014583492651581764, - 0.0101137300953269, - -0.011826382018625736, - -0.029244832694530487, - 0.001156364567577839, - -0.011255498044192791, - -0.014713238924741745, - -0.004284874070435762, - -0.0027425140142440796, - 0.0025689781177788973, - 0.0026079020462930202, - -0.02916698530316353, - -0.009237941354513168, - 0.06300483644008636, - -0.000499523535836488, - -0.03939099982380867, - 0.004132422152906656, - 0.007129563018679619, - -0.018423985689878464, - 0.008777341805398464, - -0.016231270506978035, - -0.00029213205561973155, - 0.01599772833287716, - -0.02352301776409149, - -0.0327739343047142, - -0.03056824579834938, - 0.012494576163589954, - 0.004012406803667545, - 0.003460984444245696, - 0.003606949234381318, - -0.01511545293033123, - -0.02136922813951969, - 0.010438095778226852, - -1.293029072257923e-05, - -0.02862204983830452, - 0.009211992844939232, - 0.013701217249035835, - -0.0012025866890326142, - -0.014129379764199257, - -0.0018196929013356566, - 0.035732150077819824, - -0.010502968914806843, - -0.002729539293795824, - -0.016711333766579628, - 0.012974637560546398, - 0.0012723254039883614, - -0.003992944490164518, - 0.008978448808193207, - 0.015595514327287674, - -0.03500557318329811, - 0.002917671576142311, - -0.03321507200598717, - 0.052754875272512436, - 0.010418633930385113, - 0.0009171447018161416, - 0.024431241676211357, - -0.008388102985918522, - -0.030153056606650352, - -0.07571998238563538, - -0.003921584226191044, - 0.022939158603549004, - 0.012338880449533463, - 0.023497067391872406, - 0.019565753638744354, - -0.0026711535174399614, - 0.023289473727345467, - -0.009601231664419174, - 0.022679666057229042, - -0.017334114760160446, - -0.015621463768184185, - -0.008440001867711544, - -0.023289473727345467, - -0.0028965878300368786, - 0.008790316991508007, - -0.0012561071198433638, - -0.0032809614203870296, - -0.03386380523443222, - 0.030049260705709457, - 0.004829808603972197, - -0.0017256267601624131, - -0.016309119760990143, - -0.017165444791316986, - 0.00836215354502201, - -0.002731161192059517, - -0.03752265125513077, - 0.012488088570535183, - 0.029582172632217407, - -0.009017372503876686, - 0.018086643889546394, - -0.00463194539770484, - 0.009017372503876686, - -0.033163171261548996, - 0.005008209962397814, - -0.0021018912084400654, - -0.009685566648840904, - -0.011482554487884045, - 0.03957264497876167, - 0.0024327444843947887, - 0.0007610435714013875, - -0.01591987907886505, - 0.02110973559319973, - -0.0015212761936709285, - -0.015984753146767616, - -0.008284306153655052, - -0.013558495789766312, - 0.013026535511016846, - 0.02107081189751625, - -0.021758466958999634, - -0.005883998237550259, - -0.030153056606650352, - 0.006036450155079365, - 0.013675267808139324, - 0.010755974799394608, - -0.006347841117531061, - -0.011560401879251003, - -0.008478925563395023, - -0.009510409086942673, - -0.004881707485765219, - -0.03791189193725586, - 0.0058158813044428825, - -0.027713825926184654, - 0.019954992458224297, - 0.026533132418990135, - -0.009750439785420895, - -0.03145052120089531, - -0.013947735540568829, - 0.00021914973331149668, - -0.0010055344318971038, - -0.016957851126790047, - -0.0028949659317731857, - -0.004041599575430155, - 0.010866258293390274, - -0.03601759299635887, - 0.015336020849645138, - -0.04657894745469093, - -0.004995235241949558, - 0.011534452438354492, - -0.013389825820922852, - -0.019604677334427834, - -0.021940112113952637, - 0.023990103974938393, - -0.008329717442393303, - 0.05021184682846069, - 0.001847264007665217, - -0.010554867796599865, - -0.007849655114114285, - 0.020707521587610245, - -0.011489041149616241, - 0.006231069564819336, - 0.021343277767300606, - 0.03272203356027603, - -0.017424937337636948, - -0.03562835231423378, - 0.023990103974938393, - -0.005991038866341114, - -0.003230684669688344, - -0.00836215354502201, - -0.002585196401923895, - -0.019020818173885345, - -0.003911853302270174, - -0.0584377646446228, - 0.02562490850687027, - -0.0050536212511360645, - -0.011365782469511032, - -0.02680560015141964, - -0.012027489021420479, - 0.016789181157946587, - 0.012552961707115173, - 0.010444583371281624, - -0.002157033421099186, - -0.0304384995251894, - 0.016646459698677063, - -0.0010258072288706899, - -0.013817988336086273, - -0.019903093576431274, - -0.020616699010133743, - -0.00422324426472187, - 0.026753701269626617, - 0.03051634691655636, - 0.018839173018932343, - -0.01785310171544552, - 0.005144443828612566, - -0.004174589645117521, - 0.00606888672336936, - -0.01551766600459814, - 0.012085874564945698, - -0.004495711997151375, - 0.0245350394397974, - -0.01963062584400177, - -0.006733836606144905, - 0.024210672825574875, - -0.026416361331939697, - -0.012358342297375202, - 0.011813406832516193, - -0.011897742748260498, - 0.0033961113076657057, - -0.026247691363096237, - 0.011975590139627457, - 0.03988403454422951, - 0.04753907024860382, - -0.01869645155966282, - -0.024210672825574875, - 0.012650270946323872, - -0.024340419098734856, - -0.002812252612784505, - 0.005248240660876036, - 0.02262776717543602, - 0.005390961654484272, - 0.001095545943826437, - -0.006289455574005842, - 0.022939158603549004, - 0.016023676842451096, - 0.013273053802549839, - -0.024029027670621872, - 0.02667585387825966, - 0.013428749516606331, - 0.013123845681548119, - 7.744236791040748e-05, - 0.024768583476543427, - -0.024794531986117363, - 0.0292188823223114, - 0.004476249683648348, - 0.022108782082796097, - -0.0103018619120121, - -0.008135098032653332, - 0.02077239379286766, - -0.010269425809383392, - 0.00330853252671659, - 0.0057899318635463715, - -0.033422667533159256, - -0.00660733412951231, - 0.012994099408388138, - 0.008368641138076782, - 0.014427796937525272, - -0.013999633491039276, - 0.0013396312715485692, - 0.0027165645733475685, - 0.0071944366209208965, - -0.0020062034018337727, - 0.008115635253489017, - 0.010055343620479107, - 0.0030830982141196728, - -0.030594194307923317, - -0.013934760354459286, - 0.03422709181904793, - 0.022095806896686554, - -0.021498974412679672, - 0.007927503436803818, - 0.00010491210559848696, - 0.0068246591836214066, - 0.002809009049087763, - 0.014920832589268684, - 0.012663246132433414, - 0.0017840126529335976, - 0.013753115199506283, - 0.01946195587515831, - -0.0003740344545803964, - -0.004323797766119242, - 0.02153789810836315, - 0.041985925287008286, - -0.004917387384921312, - 0.017632532864809036, - -0.006584628485143185, - -0.016828104853630066, - -0.03030875325202942, - 0.030075209215283394, - 0.006396496202796698, - -0.01447969488799572, - -0.012144260108470917, - -0.00015235062164720148, - -0.013208180665969849, - 0.006487318780273199, - -0.02169359289109707, - 0.004930362105369568, - -0.04424351453781128, - 0.02427554689347744, - -0.038093533366918564, - 0.0005262837512418628, - -0.02334137260913849, - 0.016776205971837044, - 0.00723984744399786, - 0.012442677281796932, - -0.012715145014226437, - 0.026533132418990135, - 0.012494576163589954, - 0.005017940886318684, - 0.008660570718348026, - -0.012715145014226437, - -0.008031300269067287, - -0.008498387411236763, - 0.013869887217879295, - -0.0015553346602246165, - -0.012922738678753376, - -0.016192346811294556, - -0.018981894478201866, - -0.038145434111356735, - -0.017762279137969017, - 0.001003912533633411, - 0.00804427545517683, - 0.10815657675266266, - 0.014804061502218246, - -0.007583675440400839, - 0.01621829718351364, - -0.00517039280384779, - 0.0001519451616331935, - 0.01152796484529972, - 0.018346136435866356, - -0.003954020794481039, - -0.05885295569896698, - 0.001423966488800943, - -0.0350315198302269, - -0.013584445230662823, - -0.03910555690526962, - -0.003889147425070405, - 0.008550286293029785, - 0.012708657421171665, - 0.0248204804956913, - -0.03513531759381294, - -0.012903276830911636, - 0.017632532864809036, - -0.016672408208251, - 0.004657894838601351, - 0.015712285414338112, - -0.013649318367242813, - -0.009419586509466171, - 0.03388975188136101, - -0.011469579301774502, - 0.002744135679677129, - -0.017528735101222992, - -0.021563846617937088, - -0.008349179290235043, - -0.07328075170516968, - -0.032903678715229034, - 0.025728706270456314, - -0.025689782574772835, - -0.004229731857776642, - -0.00920550525188446, - 0.016490764915943146, - 0.006072130054235458, - -0.027194838970899582, - 0.04157073795795441, - -0.019643601030111313, - 0.0034544970840215683, - -0.0021343277767300606, - 0.0162961445748806, - -0.007700447458773851, - 0.0014247773215174675, - -0.01549171656370163 - ], - "sparse": "SparseEmbedding(values=array([1.6434199, 1.6434199, 1.6434199, 1.6434199, 1.6434199, 1.6434199,\n 1.6434199, 1.6434199, 1.6434199, 1.6434199, 1.6434199]), indices=array([2077811411, 697303812, 1751984035, 1505037308, 627407068,\n 922977895, 911111262, 1092081572, 377554604, 843816345,\n 433708589]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 30, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 11 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000031.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000031.json deleted file mode 100644 index 6cf91418dd6460c766530178759b7ce2f144ee84..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000031.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000031", - "content": "Abbildung 16: Monatlicher Heiz- und K\u00fchlbedarf mit und ohne der Verschattungswirkung", - "embedding": { - "dense": [ - 0.016443973407149315, - 0.001759365783073008, - 0.022638967260718346, - -0.02479264698922634, - 0.01759682409465313, - -0.007284502498805523, - -0.010185634717345238, - -0.01469569280743599, - -0.012294973246753216, - 0.002931220456957817, - -0.0027522752061486244, - 0.01802756078541279, - -0.018445627763867378, - 0.016203267499804497, - -0.014607011340558529, - -0.0012890403158962727, - 0.03557370975613594, - -0.0037911084946244955, - 0.03562438488006592, - -0.006695407908409834, - -0.009476187638938427, - 0.019940534606575966, - 0.011680541560053825, - 0.002631922485306859, - 0.0005079357069917023, - -0.010825403966009617, - 0.01003361027687788, - -0.04928124323487282, - -0.013656859286129475, - -0.007119809743016958, - 0.017419463023543358, - -0.007664563599973917, - -0.010274316184222698, - -0.024070531129837036, - -0.01611458696424961, - -0.001237573684193194, - -0.0025210713502019644, - -0.019269093871116638, - 0.0028916308656334877, - -0.011617198586463928, - 0.005241674836724997, - -0.009393841028213501, - 0.0006496667629107833, - 0.006194994319230318, - 0.0175461508333683, - 0.030936965718865395, - 0.019307099282741547, - 0.009469853714108467, - -0.018572315573692322, - 0.0339774526655674, - 0.017014063894748688, - 0.010781063698232174, - -0.003246354404836893, - -0.0015424143057316542, - -0.005754757206887007, - 0.024349242448806763, - -0.023323077708482742, - 0.003946300130337477, - 0.003911461215466261, - -0.01631728559732437, - -0.010210972279310226, - -0.013150110840797424, - -0.014138269238173962, - 0.0030769105069339275, - -0.05194167047739029, - -0.016646672040224075, - -0.015848543494939804, - 0.004174336791038513, - -0.007328843232244253, - 0.0001416321174474433, - 0.034230828285217285, - 0.037778064608573914, - -0.006948782131075859, - -0.0034490537364035845, - 0.01944645494222641, - -0.01779952459037304, - 0.002655676333233714, - 0.026376234367489815, - -0.013834220357239246, - 0.005276513751596212, - 0.0227403175085783, - -0.02665494568645954, - -0.029442058876156807, - 0.027389729395508766, - 0.021384766325354576, - 0.012022596783936024, - -0.010090620256960392, - 0.021448109298944473, - -0.0249953456223011, - 0.014911060221493244, - 0.019915197044610977, - 0.014024251140654087, - 0.003908294253051281, - 0.007943275384604931, - 0.001319128437899053, - -0.010850741527974606, - 0.019497130066156387, - 0.009146801196038723, - 0.004297856707125902, - -0.013568177819252014, - -0.02647758275270462, - 0.007943275384604931, - -0.014315631240606308, - -0.011433501727879047, - -0.041071925312280655, - -0.0018052897648885846, - 0.026933657005429268, - 0.005583729594945908, - 0.01219995878636837, - -0.03374941647052765, - -0.03121567703783512, - 0.027364391833543777, - -0.006191827356815338, - -0.025907492265105247, - 0.015050415880978107, - -0.024311235174536705, - 0.018154246732592583, - -0.0017973718931898475, - -0.006426198408007622, - -0.0012494506081566215, - 0.00403498113155365, - 0.012681368738412857, - 0.0024688129778951406, - -0.0019525634124875069, - 0.0496613048017025, - 0.024121206253767014, - -0.008278995752334595, - -0.013479497283697128, - -0.023943843320012093, - -0.00538419745862484, - -0.028301876038312912, - 0.008012953214347363, - 0.02071332558989525, - 0.02230958081781864, - -0.000358880526619032, - 0.030303530395030975, - -0.02589482255280018, - 0.00491862278431654, - -0.02439991757273674, - 0.0019003050401806831, - -0.00146165129262954, - 0.020599307492375374, - -0.013935570605099201, - -0.011110450141131878, - 0.003518731566146016, - 0.014771704562008381, - -0.005716750863939524, - 0.018965044990181923, - 0.003702427726238966, - -0.03336935490369797, - -0.010109622962772846, - -0.02855524979531765, - 0.024653291329741478, - -0.014860385097563267, - 0.02355111390352249, - -0.012966414913535118, - -0.012231630273163319, - 0.026198871433734894, - -0.008101633749902248, - 0.015633177012205124, - 0.010730389505624771, - -0.018876362591981888, - 0.014619680121541023, - 0.017647499218583107, - 0.023006359115242958, - 0.017533481121063232, - -0.007024794351309538, - -0.023209059610962868, - 0.024298567324876785, - -0.006708076689392328, - 0.014911060221493244, - 0.024083198979496956, - -0.023437095806002617, - 0.02547675557434559, - -0.008418351411819458, - 0.02353844605386257, - -0.010096954181790352, - 0.01085707638412714, - -0.0067144110798835754, - -0.027009669691324234, - -0.06582656502723694, - 0.0021821835543960333, - -0.013099435716867447, - 0.0038512849714607, - -0.01925642415881157, - 0.002332624513655901, - 0.02583147957921028, - 0.02814985252916813, - 0.002131508896127343, - -0.004567066673189402, - -0.010008273646235466, - 0.02939138561487198, - 0.010261647403240204, - -0.014670355245471, - -0.6441780924797058, - 0.018889032304286957, - -0.01107877865433693, - -0.005545723717659712, - 0.00403498113155365, - 0.011129452846944332, - 0.024868657812476158, - 0.011477842926979065, - -0.005045310128480196, - 0.015177102759480476, - 0.011522183194756508, - -0.01043900940567255, - -0.015291120857000351, - -0.007525207940489054, - 0.003920962568372488, - -0.02565411850810051, - -0.0021980195306241512, - 0.014657686464488506, - 0.027592429891228676, - 0.011857903562486172, - 0.001186898909509182, - 0.020003877580165863, - 0.008126971311867237, - 0.002001654589548707, - 0.010077951475977898, - -0.009887920692563057, - 0.019345104694366455, - -0.013276797719299793, - 0.009868917986750603, - 0.022917678579688072, - -0.02318372204899788, - 0.02028258889913559, - -0.022005531936883926, - 0.007474533282220364, - 0.03184911236166954, - 0.004263017792254686, - 0.006955116521567106, - 0.00039668867248110473, - -0.005130823701620102, - 0.015012409538030624, - -0.03461088985204697, - -0.0165326539427042, - 0.015861213207244873, - 0.007430192548781633, - -0.018369615077972412, - 0.024741971865296364, - 0.051181551069021225, - -0.021055379882454872, - -0.0039811390452086926, - -0.018521640449762344, - 0.014087595045566559, - 0.003968470264226198, - -0.0008242573239840567, - -0.003271691966801882, - 0.007816588506102562, - 0.0015851710923016071, - 0.020421944558620453, - -0.015012409538030624, - 0.0016247608000412583, - 0.03169708698987961, - -0.0004952669842168689, - -0.005685079377144575, - 0.014391643926501274, - -0.01508842222392559, - -0.00909612700343132, - 0.025793474167585373, - -0.02918868511915207, - 0.00046478293370455503, - 0.023715807124972343, - -0.012256967835128307, - -0.008925098925828934, - 0.005213170312345028, - 0.01572185754776001, - 0.004244014620780945, - 0.01573452539741993, - 0.006556052248924971, - 0.03222917392849922, - -0.008633718825876713, - 0.006562386639416218, - 0.006613061763346195, - -0.0025543267838656902, - -0.017495475709438324, - 0.0106670456007123, - -0.00807629618793726, - 0.007886266335844994, - -0.04657014086842537, - -0.003974804654717445, - 0.0007735824910923839, - -0.011142121627926826, - 0.014835048466920853, - 0.011674207635223866, - 0.021625472232699394, - -0.013656859286129475, - -0.01842029020190239, - -0.008228320628404617, - 0.05320854112505913, - -0.014214281924068928, - 0.026173535734415054, - 0.023120377212762833, - -0.04380836710333824, - -0.008025621995329857, - 0.003778439946472645, - 0.02546408772468567, - 0.009729561395943165, - 0.03344536945223808, - -0.006701742298901081, - -0.0053271884098649025, - -0.00589411286637187, - 0.028808625414967537, - -0.03336935490369797, - 0.0006781713454984128, - -0.02190418355166912, - -0.015772532671689987, - 0.007214824669063091, - -0.00827266089618206, - -0.027997827157378197, - 0.06385024636983871, - -0.0008088173344731331, - 0.002931220456957817, - 0.02071332558989525, - 0.034813590347766876, - -0.004848944954574108, - 0.031722426414489746, - -0.024108536541461945, - -0.00794960930943489, - 0.02109338529407978, - 0.004959796089679003, - -0.00961554329842329, - -0.0004374660493340343, - -0.01025531254708767, - 0.02650292031466961, - 0.03450953960418701, - 0.020979367196559906, - -0.013251460157334805, - 0.021612802520394325, - 0.022588292136788368, - 0.013834220357239246, - -0.016089249402284622, - 0.023335745558142662, - -0.017495475709438324, - -0.02769377827644348, - 0.006242502015084028, - 0.01714075170457363, - -0.0005499007529579103, - -0.0005154577665962279, - -0.009457184933125973, - -0.01242799498140812, - 0.011268808506429195, - -0.008152308873832226, - 0.002490983111783862, - -0.01759682409465313, - -0.02670562081038952, - -0.011319483630359173, - 0.008412016555666924, - 0.012846061959862709, - 0.009685221128165722, - -0.0005863232654519379, - -0.011623532511293888, - -0.023234397172927856, - -0.01798955537378788, - 0.014721029438078403, - 0.014404312707483768, - -0.01242166105657816, - -0.0005087275058031082, - -0.02130875363945961, - -0.004839443601667881, - 0.020738663151860237, - 0.013074099086225033, - -0.0023199557326734066, - -0.03326800838112831, - 0.008519700728356838, - 0.005171997006982565, - -0.006733414251357317, - 0.016887377947568893, - -0.02771911583840847, - 0.0054475413635373116, - -0.024526603519916534, - -0.02419721707701683, - -0.0002775237080641091, - -0.0169887263327837, - 0.026224208995699883, - -0.00227403175085783, - -0.020814673975110054, - -0.005485547240823507, - 0.01066071167588234, - 0.013568177819252014, - 0.02045995183289051, - -0.009165804833173752, - 0.004301023669540882, - -0.016089249402284622, - 0.001395140658132732, - 0.02070065587759018, - 0.016038574278354645, - 0.017039401456713676, - -0.00459557119756937, - -0.009887920692563057, - 9.719268564367667e-05, - 0.020738663151860237, - 0.005023139528930187, - 0.009533196687698364, - 0.024741971865296364, - 0.01987719163298607, - 0.006511711981147528, - -0.02129608578979969, - 0.03618180751800537, - -0.02814985252916813, - 0.02464062161743641, - -0.005438039544969797, - 0.023842494934797287, - 0.02585681714117527, - 0.02376648224890232, - -0.025552768260240555, - -0.020193908363580704, - -0.015050415880978107, - -0.008412016555666924, - 0.024678628891706467, - -0.011762888170778751, - -0.01651998609304428, - -0.001593880821019411, - -0.042490821331739426, - 0.011876906268298626, - -0.005320854019373655, - 0.02296835370361805, - -0.01635529287159443, - 0.014112932607531548, - 0.010052613914012909, - 0.008405682630836964, - 0.0018068733625113964, - -0.0005530679482035339, - 0.011262474581599236, - -0.010888747870922089, - 0.002166347810998559, - -0.028301876038312912, - 0.0018385450821369886, - 0.015633177012205124, - 0.017875535413622856, - 0.01945912279188633, - -0.019205749034881592, - 0.022018201649188995, - 0.02070065587759018, - 0.00785459391772747, - 0.03739800304174423, - 0.0011560189304873347, - -0.0090011116117239, - 0.0014252287801355124, - 0.01612725481390953, - 0.01904105581343174, - 0.01781219244003296, - -0.02004188299179077, - 0.006942447740584612, - -0.006663736421614885, - 0.005048477090895176, - -0.00032483338145539165, - 0.013365479186177254, - 0.01987719163298607, - -0.024273229762911797, - 0.019091730937361717, - 0.006885438691824675, - 0.02647758275270462, - 0.02149878442287445, - 0.015531826764345169, - 1.5588440192004782e-06, - 0.013593515381217003, - -0.012332979589700699, - 0.009121464565396309, - -0.020573969930410385, - -0.02875795029103756, - -0.025071358308196068, - 0.0009691555751487613, - -0.006442034151405096, - 0.00849436316639185, - -0.0024086367338895798, - -0.024108536541461945, - -0.007772247772663832, - -0.005051644053310156, - 0.004456215538084507, - 0.008640053682029247, - 0.005095984786748886, - 0.03653653338551521, - 0.005270179361104965, - -0.004874282516539097, - -0.014657686464488506, - -0.02458994649350643, - 0.04173069819808006, - 0.007202156353741884, - -0.033014632761478424, - -0.012269636616110802, - 0.02251228131353855, - -0.001336547895334661, - 0.0036992605309933424, - -0.01902838796377182, - -0.013593515381217003, - -0.00023417301417794079, - -0.003512397175654769, - 0.00970422476530075, - -0.004639911465346813, - 0.011534851975739002, - -0.024285897612571716, - 0.003686591750010848, - 0.012383654713630676, - 0.010616370476782322, - -0.019294431433081627, - 0.002625588094815612, - -0.01043900940567255, - 0.03387610614299774, - 0.021435441449284554, - 0.004377035889774561, - -0.02047261968255043, - -0.0073541803285479546, - -0.02438724786043167, - -0.006385025102645159, - -0.0009438181878067553, - 0.0013412986882030964, - 0.01676069013774395, - -0.006058806087821722, - -0.0038892910815775394, - -0.028833961114287376, - -0.008221986703574657, - 0.02850457653403282, - 0.006201328709721565, - 0.005514051765203476, - -0.011952918954193592, - -0.013048761524260044, - 0.01489839144051075, - 0.013289466500282288, - 0.020345931872725487, - 0.013530172407627106, - 0.014645017683506012, - 0.00848802924156189, - 0.00796861294656992, - -0.03207714855670929, - -0.02873261272907257, - -0.006046137306839228, - -0.0034553881268948317, - 0.003708762116730213, - 0.0037816071417182684, - 0.014239619486033916, - -0.014074926264584064, - 0.008374011144042015, - -0.02688298188149929, - 0.0023262901231646538, - -0.0169887263327837, - 0.01843295805156231, - -0.007265499792993069, - -0.013162779621779919, - -0.007100806571543217, - 0.0009430263889953494, - 0.039196960628032684, - 0.01881301961839199, - -0.0072591654025018215, - 0.006986788008362055, - 0.014340968802571297, - 0.010876079089939594, - -0.015202440321445465, - -0.023272402584552765, - 0.006866435520350933, - 0.00547921285033226, - 0.015025078319013119, - -0.022056207060813904, - -0.029872795566916466, - -0.007309840060770512, - -0.026021510362625122, - 0.02771911583840847, - 0.006201328709721565, - 0.025312062352895737, - 0.015012409538030624, - -0.0006425406318157911, - -0.006391359493136406, - -0.0003436385013628751, - -0.009716893546283245, - -0.01397357601672411, - 0.019180411472916603, - -0.00273802294395864, - 0.005767425987869501, - 0.026730958372354507, - -0.003430050564929843, - -0.023272402584552765, - 0.02085268124938011, - -0.0011005933629348874, - 0.005349358543753624, - -0.0057389214634895325, - -0.020586637780070305, - 0.0053271884098649025, - 0.008374011144042015, - -0.021207405254244804, - -0.018775014206767082, - 0.005881444085389376, - -0.004361200146377087, - -0.0033825431019067764, - -0.014543668366968632, - 0.012332979589700699, - -0.03253322094678879, - -0.010115956887602806, - 0.008291664533317089, - 0.025540100410580635, - 0.008614716120064259, - -0.011249805800616741, - 0.01632995530962944, - 0.01573452539741993, - 0.0038797894958406687, - -0.009070789441466331, - 0.00029613086371682584, - -0.017052071169018745, - -0.01738145761191845, - -0.02650292031466961, - -0.016013236716389656, - -0.004541729111224413, - -0.03950100764632225, - -0.035877760499715805, - 0.012193623930215836, - -0.0016976058250293136, - -0.024095868691802025, - -0.017318112775683403, - 0.019547805190086365, - -0.009070789441466331, - 0.006606727372854948, - 0.030531568452715874, - -0.01591188833117485, - -0.017938880249857903, - -0.01735612004995346, - -0.006638398859649897, - 0.002392800757661462, - 0.02007989026606083, - -0.01863565854728222, - 0.044796522706747055, - 0.01654532179236412, - 0.006543383933603764, - 0.0056692431680858135, - 0.004658914636820555, - 0.018268266692757607, - -0.022499611601233482, - 0.0260721854865551, - -0.0017419463256374002, - 0.003965303301811218, - 0.021663477644324303, - -0.013340141624212265, - -0.02443792298436165, - -0.0318237766623497, - -0.0005578186828643084, - -0.0032843605149537325, - -0.008462691679596901, - -0.003810111666098237, - 0.02048528753221035, - 0.021144060418009758, - 0.006147486623376608, - -0.022867003455758095, - 0.04406173899769783, - 0.009849914349615574, - 0.006815760862082243, - 0.0012803304707631469, - -0.008893427439033985, - -0.0016231772024184465, - -0.05776927247643471, - -0.0045290603302419186, - -0.006917110178619623, - 0.0033413697965443134, - 0.004339030012488365, - -0.04570867121219635, - -0.04031180590391159, - -0.02645224705338478, - -0.0014830296859145164, - 0.014315631240606308, - -0.027567092329263687, - 0.008228320628404617, - -0.03407880291342735, - 0.014885722659528255, - -0.0020032383035868406, - 0.004674750380218029, - 0.019294431433081627, - -0.025375407189130783, - -0.004117327742278576, - 0.0024498100392520428, - 0.009235482662916183, - 0.014594342559576035, - -0.018775014206767082, - -0.011142121627926826, - -0.016013236716389656, - 0.006651067640632391, - -0.0033318682108074427, - -0.03514297306537628, - 0.008887093514204025, - -0.016203267499804497, - 0.020155902951955795, - 0.021549459546804428, - 0.01697605848312378, - -0.006087310612201691, - -0.004912288393825293, - -0.007898935116827488, - -0.018344277516007423, - 0.006828429643064737, - 0.0071768187917768955, - 0.014822379685938358, - -0.035066962242126465, - 0.016000568866729736, - 0.007664563599973917, - 0.014214281924068928, - 0.016405966132879257, - 0.009501525200903416, - 0.027643105015158653, - 0.01479704212397337, - -0.0015875465469434857, - -0.01469569280743599, - -0.017710842192173004, - -0.0023057034704834223, - 0.01863565854728222, - 0.03179843723773956, - 0.003363539930433035, - 0.01303609274327755, - 0.02109338529407978, - -0.025907492265105247, - 0.03078494220972061, - -0.011458839289844036, - -0.008443688973784447, - 0.0011837317142635584, - 0.013010755181312561, - -0.02377915009856224, - 0.031747762113809586, - -0.006014465354382992, - -0.016684677451848984, - 0.006137985270470381, - 0.0009762817062437534, - -0.010369331575930119, - -0.03912094607949257, - 0.02443792298436165, - 0.008234655484557152, - 0.010591033846139908, - 0.023247065022587776, - -0.022423598915338516, - 0.007677232380956411, - 0.006739748641848564, - 0.016507316380739212, - -0.004253515973687172, - 0.006910776253789663, - -0.015151765197515488, - -0.020954029634594917, - -0.025096695870161057, - -0.02504602074623108, - -0.0015305373817682266, - 0.03737266734242439, - 0.001876551192253828, - -0.006739748641848564, - 0.02543875016272068, - 0.0005099151749163866, - 0.0037404338363558054, - 0.012047934345901012, - -0.04048916697502136, - 0.03704328089952469, - 0.0065497178584337234, - 0.038994260132312775, - 0.030683591961860657, - -0.017457468435168266, - -0.046240754425525665, - -0.05898546800017357, - -0.012320310808718204, - -0.008975774049758911, - 0.024665959179401398, - 0.004665249027311802, - -0.004101491533219814, - -0.02299369126558304, - -0.0032590231858193874, - -0.0011678958544507623, - 0.008830084465444088, - -0.006169657222926617, - 0.04330161586403847, - 0.016253942623734474, - -0.0034680566750466824, - -0.020434614270925522, - -0.001245491555891931, - -0.0021235907915979624, - 0.035041626542806625, - -0.00848802924156189, - -0.01823025941848755, - -0.007246496621519327, - -0.02445059083402157, - -0.013251460157334805, - 0.043783027678728104, - 0.00232470640912652, - 0.01717875711619854, - 0.004532227758318186, - 0.005571060813963413, - 0.010578365065157413, - -0.03390144184231758, - 0.009476187638938427, - 0.025780804455280304, - -0.005859273951500654, - 0.036131132394075394, - -0.004855279345065355, - 0.006131650879979134, - -0.001030123676173389, - -0.0030024820007383823, - 0.014138269238173962, - -0.011509514413774014, - -0.008139640092849731, - 0.01695072092115879, - 0.005029473919421434, - -0.018065566197037697, - 0.009539531543850899, - 0.0075188735499978065, - 0.03162107616662979, - 0.011743885464966297, - 0.001369803212583065, - -0.0019874023273587227, - 0.00672707986086607, - -0.015671182423830032, - 0.006942447740584612, - -0.01108511257916689, - -0.013859557919204235, - -0.017128081992268562, - -0.008462691679596901, - -0.005314519628882408, - -0.009450850076973438, - -0.017862867563962936, - 0.002980311866849661, - -0.027339056134223938, - 0.00889976229518652, - 0.01230764202773571, - 0.008304333314299583, - 0.03970370814204216, - -0.013061430305242538, - -0.04611406847834587, - -0.008475360460579395, - 0.02004188299179077, - -0.04938259348273277, - 0.022828998044133186, - 0.035472359508275986, - -0.01230130810290575, - 0.011427167803049088, - -0.0031529227271676064, - -0.010293318890035152, - -0.032153163105249405, - 0.024729302152991295, - -0.00589411286637187, - -0.025324732065200806, - -0.003344536991789937, - -0.007822922430932522, - 0.02215755730867386, - -0.01902838796377182, - -0.016507316380739212, - 0.0051213218830525875, - 0.005130823701620102, - -0.004782434552907944, - -0.027567092329263687, - -0.013162779621779919, - 0.022448936477303505, - 0.007455530110746622, - -0.004592403769493103, - -0.0020269921515136957, - -0.03410414233803749, - 0.008747737854719162, - -0.003974804654717445, - 0.004120494704693556, - -0.008057293482124805, - -0.011699545197188854, - -0.029847458004951477, - 0.007170484401285648, - 0.023500438779592514, - -0.012218961492180824, - -0.019205749034881592, - -0.018737006932497025, - -0.02794715203344822, - -0.005862440913915634, - 0.010711385868489742, - 0.01899038255214691, - -0.008602047339081764, - 0.004218677058815956, - -0.006055638659745455, - -0.020649980753660202, - 0.01801489107310772, - -0.010185634717345238, - -0.009153136052191257, - 0.01200992800295353, - 0.011072443798184395, - -0.006733414251357317, - 0.0062995110638439655, - 0.0088047469034791, - 0.026350896805524826, - 0.020561300218105316, - -0.018154246732592583, - 8.249501115642488e-05, - 0.005238507408648729, - -0.03162107616662979, - -0.005422203801572323, - -0.014670355245471, - -0.009761233814060688, - -0.00538103049620986, - 0.0013848473317921162, - -0.0054475413635373116, - 0.04753296449780464, - 0.025932829827070236, - 0.0016469310503453016, - -0.019129738211631775, - -0.03519364818930626, - 0.001295374589972198, - -0.00858937855809927, - 0.020789336413145065, - -0.013492166064679623, - -0.006967785302549601, - -0.00310699874535203, - 0.016291948035359383, - -0.004934458993375301, - 0.0027000168338418007, - 0.012130280956625938, - 0.007993949577212334, - -0.01188957504928112, - -0.016887377947568893, - 0.017710842192173004, - -0.025578105822205544, - 0.007183153182268143, - -0.0066700708121061325, - -0.03501628711819649, - -0.004890118259936571, - 0.028453901410102844, - 0.009457184933125973, - -0.037778064608573914, - -0.0014869887381792068, - 0.004506890196353197, - -0.006071474403142929, - -0.026553595438599586, - -0.013707533478736877, - 0.010394668206572533, - -0.02875795029103756, - -0.03063291683793068, - 0.01634262315928936, - 0.01862298883497715, - -0.0045290603302419186, - -0.004804604686796665, - 0.008716065436601639, - -0.031545065343379974, - -0.006099979393184185, - 0.02175215817987919, - -0.03020218200981617, - -0.01843295805156231, - 0.007449195720255375, - 0.0054507083259522915, - 0.018660996109247208, - -0.00881108082830906, - -0.003011983586475253, - 0.00667640520259738, - 0.013542840257287025, - -0.02086534909904003, - -0.00817131157964468, - 0.0010063698282465339, - 0.012288639321923256, - 0.0065877242013812065, - -0.024881327524781227, - 0.03686591610312462, - -0.0041458322666585445, - 0.013441490940749645, - -0.013289466500282288, - -0.004091990180313587, - 0.009210145100951195, - -0.03347070515155792, - 0.010565696284174919, - -0.0018448794726282358, - -0.014011582359671593, - -0.011547520756721497, - 0.017875535413622856, - -0.02086534909904003, - -0.013884895481169224, - 0.015683850273489952, - 0.2207394391298294, - -0.019813846796751022, - -0.00032958414521999657, - 0.026984332129359245, - 0.005070647224783897, - -0.01127514336258173, - 0.014733698219060898, - -0.003054740373045206, - 0.030278194695711136, - 0.04259217157959938, - -0.017888205125927925, - 0.007271834183484316, - -0.010971094481647015, - 0.010420005768537521, - 0.007651894818991423, - -0.005653407424688339, - -0.025172706693410873, - -0.000946193584240973, - -0.005178331397473812, - 0.036891255527734756, - 0.017736179754137993, - -0.001819542027078569, - -0.011667872779071331, - -0.01323879137635231, - 0.025920160114765167, - 0.008519700728356838, - -0.013504834845662117, - 0.004114160314202309, - 0.019522467628121376, - 0.002639840357005596, - -0.009406509809195995, - 0.005114987958222628, - -0.011110450141131878, - -0.025084026157855988, - -0.03245721012353897, - -0.007506204769015312, - -0.006758751813322306, - -0.018876362591981888, - 0.022917678579688072, - 0.03810745105147362, - 0.007860928773880005, - -0.005840270780026913, - -0.007664563599973917, - 0.00890609622001648, - -0.004288354888558388, - 0.030886290594935417, - -0.00029712062678299844, - 0.006036635488271713, - -0.012586353346705437, - -0.017330782487988472, - -0.015291120857000351, - -0.009723227471113205, - 0.019167743623256683, - 0.0380314402282238, - -0.017698174342513084, - -0.019307099282741547, - 0.037347327917814255, - -0.006543383933603764, - -0.007797584868967533, - 0.008323336020112038, - -0.02192952111363411, - 0.022828998044133186, - -0.023741144686937332, - 0.004301023669540882, - 0.007442861329764128, - 0.011021769605576992, - -0.029442058876156807, - 0.019978540018200874, - -0.010831738822162151, - -0.02399451844394207, - -0.008665391243994236, - -0.012453332543373108, - -0.03265991061925888, - 0.003073743311688304, - -0.02067531831562519, - -0.02588215470314026, - 0.007924271747469902, - -0.0011108866892755032, - 0.009311494417488575, - 0.014429649338126183, - -0.010686048306524754, - -0.003946300130337477, - -0.0033857100643217564, - 0.006594058591872454, - -0.013023423962295055, - -0.013910233043134212, - 0.012035265564918518, - 0.011389161460101604, - 0.0016390130622312427, - -0.014670355245471, - 0.011243471875786781, - 0.01948446035385132, - -0.007379517890512943, - -0.006198161747306585, - 0.007588551379740238, - 0.0005597982089966536, - -0.006518046371638775, - -0.010280650109052658, - -0.007525207940489054, - 0.0024973175022751093, - -0.005114987958222628, - 0.05062412470579147, - 0.034838926047086716, - -0.023069703951478004, - -0.004345364402979612, - -0.0006001796573400497, - 0.004177503753453493, - 0.004294689279049635, - -0.0020935027860105038, - -0.01863565854728222, - 0.005045310128480196, - -0.018711671233177185, - 0.022284243255853653, - -0.002698433119803667, - 0.013492166064679623, - 0.008747737854719162, - -0.010686048306524754, - -0.02108071744441986, - -0.00027376270736567676, - -0.006619395688176155, - -0.0010348744690418243, - -0.00398430647328496, - 0.016456641256809235, - 0.0025622446555644274, - 0.001169479452073574, - -0.02789647877216339, - -0.029720770195126534, - 0.008842753246426582, - 0.008152308873832226, - -0.02109338529407978, - 0.014024251140654087, - -0.033014632761478424, - 0.005143492482602596, - 0.014239619486033916, - 0.013162779621779919, - 0.047887686640024185, - 0.015683850273489952, - -0.007689901161938906, - 0.004592403769493103, - -0.015493820421397686, - 0.007620223332196474, - -0.011363823898136616, - 0.010749392211437225, - -0.004323193803429604, - 0.03369874134659767, - -0.011192796751856804, - 0.004845777992159128, - -0.012827059254050255, - -0.012472335249185562, - -0.03248254582285881, - -0.0068347640335559845, - -0.0070944721810519695, - 0.010692383162677288, - -0.018749676644802094, - 0.01634262315928936, - 0.0008250491227954626, - -0.031190339475870132, - -0.038360822945833206, - 0.007474533282220364, - 0.02130875363945961, - -0.018546978011727333, - 0.0011813562596216798, - 0.004491054452955723, - -0.02151145227253437, - 0.013821552507579327, - 0.0076455604285001755, - -0.1587134748697281, - -0.008183980360627174, - 0.01651998609304428, - -0.03164641186594963, - 0.018306272104382515, - 0.004845777992159128, - 0.008082631044089794, - -0.0021346760913729668, - -0.016494648531079292, - 0.007715238723903894, - 0.0028932143468409777, - -0.003753102384507656, - -0.019585810601711273, - 0.015443145297467709, - 0.0006852975348010659, - 0.002283533336594701, - -0.02562878094613552, - 0.0212707482278347, - 0.023652464151382446, - 0.01759682409465313, - 0.04036248102784157, - -0.005593231413513422, - 0.00030246522510424256, - -0.003046822501346469, - 0.001394348801113665, - 0.002782363211736083, - -0.021004704758524895, - 0.02728838101029396, - -0.011167459189891815, - -0.00486794812604785, - -0.006815760862082243, - 0.024159211665391922, - 0.018699001520872116, - 0.007417524233460426, - 0.0010095370234921575, - -0.012706706300377846, - -0.022081544622778893, - 0.005393699277192354, - -0.007829256355762482, - 0.038994260132312775, - 0.004158501047641039, - 0.0005241674953140318, - -0.003114916617050767, - 0.004434044938534498, - -0.01107877865433693, - 0.013390815816819668, - 0.004253515973687172, - 0.017482805997133255, - -0.02009255811572075, - -0.017634831368923187, - 0.017406795173883438, - -0.03765137866139412, - 0.00408248882740736, - 0.009558534249663353, - 0.0008171311928890646, - 0.026426909491419792, - 0.0190157201141119, - -0.0005605900078080595, - 0.005824435036629438, - 0.011718547903001308, - -0.0034237161744385958, - -0.02004188299179077, - -0.026528257876634598, - -0.018775014206767082, - -0.015341795980930328, - -0.0039051268249750137, - 0.014353637583553791, - 0.00797494687139988, - -0.010565696284174919, - 0.012383654713630676, - -0.008126971311867237, - -0.020003877580165863, - 0.0024133874103426933, - -0.02581881172955036, - -0.0057515897788107395, - 0.012161952443420887, - -0.0074365269392728806, - -0.009805574081838131, - 0.007398521061986685, - -0.008177646435797215, - -0.011705879122018814, - 0.05852939561009407, - -0.022056207060813904, - -0.0050263069570064545, - -0.0054095350205898285, - -0.015671182423830032, - 0.00169443862978369, - 1.8347345758229494e-05, - 0.0026208374183624983, - 0.0010768395150080323, - -0.008329670876264572, - -0.011661538854241371, - -0.03265991061925888, - -0.02774445340037346, - 0.0017134416848421097, - 0.010477014817297459, - 0.022284243255853653, - -0.010895082727074623, - -0.0024260561913251877, - -0.0018052897648885846, - 0.007670897990465164, - -0.018052898347377777, - -0.03271058574318886, - 0.006663736421614885, - 0.014569004997611046, - -0.00403814809396863, - -0.003078494220972061, - -0.00021061714505776763, - 0.036511193960905075, - -0.015025078319013119, - -0.027187030762434006, - -0.016443973407149315, - 0.02774445340037346, - -0.010648042894899845, - -0.0022122717928141356, - 0.010572030209004879, - -0.008317002095282078, - -0.03326800838112831, - -0.0013642606791108847, - -0.023297740146517754, - 0.03516831248998642, - 0.0038132788613438606, - -0.010141294449567795, - 0.017432130873203278, - -0.008500698022544384, - -0.010724054649472237, - -0.07038729637861252, - -0.01883835718035698, - 0.03103831596672535, - 0.02418454922735691, - 0.01593722589313984, - 0.029670096933841705, - -0.014822379685938358, - 0.03210248798131943, - 0.009596540592610836, - 0.0043960390612483025, - -0.013593515381217003, - -0.029619421809911728, - -0.013264128938317299, - -0.003952634520828724, - 0.010869745165109634, - -0.02153678983449936, - -0.014632348902523518, - -0.02647758275270462, - -0.021144060418009758, - 0.03552303463220596, - 0.007639226503670216, - 0.005767425987869501, - -0.01797688566148281, - -0.01156652346253395, - -0.007157815620303154, - 0.00533352280035615, - -0.03179843723773956, - 0.019497130066156387, - 0.021372096613049507, - 0.003173509379848838, - 0.013010755181312561, - -0.01448032446205616, - 0.01777418702840805, - -0.03450953960418701, - -0.010819070041179657, - -0.006242502015084028, - -0.005235340446233749, - -0.01396090816706419, - 0.006682739593088627, - -0.041882723569869995, - -9.184808004647493e-05, - -0.00775324460119009, - 0.026730958372354507, - -0.04885051026940346, - -0.00362008111551404, - -0.02051062509417534, - -0.007563214283436537, - 0.009210145100951195, - 0.0056154015474021435, - -0.009127798490226269, - -0.01615259237587452, - -0.011325818486511707, - -0.0013595098862424493, - 0.010014607571065426, - 0.017292775213718414, - -0.019205749034881592, - -0.01902838796377182, - -0.009089792147278786, - -0.01838228479027748, - -0.008202983066439629, - -0.023095041513442993, - -0.004361200146377087, - -0.0335213802754879, - 0.04654480516910553, - -0.003029403043910861, - 0.008633718825876713, - -0.04013444110751152, - -0.008722400292754173, - 0.002939138561487198, - -0.007233827840536833, - -0.01651998609304428, - 0.02645224705338478, - 0.00023912171309348196, - 0.004804604686796665, - -0.041680023074150085, - -0.010109622962772846, - -0.03334401920437813, - 0.0009295658674091101, - 0.013213454745709896, - -0.010914085432887077, - -0.02438724786043167, - -0.02936604805290699, - 0.014125600457191467, - 0.006942447740584612, - 0.0235891193151474, - 0.015683850273489952, - -0.011066109873354435, - -0.018927037715911865, - -0.004747595638036728, - 0.012472335249185562, - 0.00045211424003355205, - 0.007322508841753006, - 0.01654532179236412, - -0.005783261731266975, - -0.018939707428216934, - 0.006419864017516375, - 0.0014806543476879597, - -0.0047380938194692135, - 0.004715923685580492, - 0.01066071167588234, - -0.019813846796751022, - -0.004088823217898607, - -0.04867314547300339, - 0.029087336733937263, - 0.023652464151382446, - 0.0009066038765013218, - -0.019763171672821045, - -0.00899477768689394, - 0.01458167377859354, - 0.0004061902000103146, - 0.0028757948894053698, - -0.00931782927364111, - -0.033217333257198334, - -0.006891773082315922, - -0.026984332129359245, - -0.005441206973046064, - -0.00574842281639576, - -0.01085707638412714, - 0.0012059019645676017, - 0.013492166064679623, - 0.021764827892184258, - 0.007056466303765774, - -0.01293474342674017, - -0.004415042232722044, - 0.002980311866849661, - 0.0027253541629761457, - -0.02004188299179077, - 0.02318372204899788, - -0.015544495545327663, - -0.0078102536499500275, - -0.008975774049758911, - 0.009951263666152954, - 0.041680023074150085, - -0.01178822573274374, - 0.0003489830996841192, - 0.02339909039437771, - -0.004522725939750671, - 0.00157725322060287, - -0.012370985932648182, - 0.018065566197037697, - 0.018534308299422264, - 0.014505662024021149, - -0.018052898347377777, - -0.013796214945614338, - 0.020725993439555168, - -0.017482805997133255, - -0.01560783851891756, - 0.014429649338126183, - 0.003344536991789937, - 0.0013001253828406334, - -8.487039303872734e-05, - -0.02153678983449936, - 0.04013444110751152, - 0.016190599650144577, - 0.012586353346705437, - -0.004722258076071739, - 0.022828998044133186, - -0.011338486336171627, - 0.001884469180367887, - -0.014315631240606308, - 0.022879673168063164, - -0.03253322094678879, - 0.030683591961860657, - 0.013010755181312561, - 0.014594342559576035, - -0.023627126589417458, - 0.008228320628404617, - 0.002489399630576372, - -0.011560188606381416, - 0.0038481177762150764, - 0.01736878789961338, - -0.032989297062158585, - -0.0033160322345793247, - 0.0030341537203639746, - 0.011490510776638985, - 0.019180411472916603, - 0.006790423300117254, - -0.007924271747469902, - 0.011205465532839298, - 0.0283272136002779, - 0.008038290776312351, - 0.01066071167588234, - 0.01448032446205616, - 0.01758415624499321, - -0.008114302530884743, - 0.016038574278354645, - 0.032203834503889084, - 0.013796214945614338, - -0.023006359115242958, - -0.0003382938739378005, - -0.007455530110746622, - -0.00450372276827693, - -0.007924271747469902, - 0.0059986296109855175, - 0.004674750380218029, - -0.019142406061291695, - 0.033825431019067764, - 0.022588292136788368, - 0.01416360680013895, - -0.03245721012353897, - 0.001237573684193194, - 0.015417808666825294, - 0.010394668206572533, - -0.013631521724164486, - -0.013099435716867447, - 0.006967785302549601, - -0.01948446035385132, - 0.02379181981086731, - -0.01864832639694214, - -0.02130875363945961, - -0.004905954003334045, - 0.01003361027687788, - 0.0036644216161221266, - -0.008538704365491867, - -0.0009113546111620963, - 0.006790423300117254, - -0.024919332936406136, - 0.0074681988917291164, - -0.022626299411058426, - -0.019307099282741547, - -0.03552303463220596, - 0.012244299054145813, - 0.00486794812604785, - 0.026173535734415054, - -0.005412701983004808, - -0.004829941783100367, - -0.001453733304515481, - -0.004627242684364319, - 0.011439836584031582, - -0.012003593146800995, - 0.027617767453193665, - 0.00019963100203312933, - 0.016038574278354645, - 0.002774445340037346, - -0.01014762930572033, - -0.021207405254244804, - -0.014277624897658825, - -0.017926210537552834, - 0.015050415880978107, - 0.009938595816493034, - 0.01560783851891756, - 0.10570763796567917, - 0.015291120857000351, - -0.027161693200469017, - 0.02110605500638485, - -0.005884611513465643, - 0.012998086400330067, - 0.015075753442943096, - 0.008760406635701656, - 0.0002957349643111229, - -0.038411498069763184, - 0.006201328709721565, - -0.010844407603144646, - 0.01677335985004902, - -0.03684058040380478, - -0.014936397783458233, - -0.015987899154424667, - 0.006413529627025127, - -0.007366849109530449, - -0.01964915357530117, - 0.008652722463011742, - 0.022233569994568825, - -0.01736878789961338, - 0.00020131356723140925, - 0.020029215142130852, - -0.019509797915816307, - -0.031950462609529495, - 0.011914912611246109, - -0.009634546935558319, - 0.009064455516636372, - -0.0073858522810041904, - -0.020219245925545692, - 0.0033096978440880775, - -0.03929830715060234, - -0.031139666214585304, - 0.051358912140131, - -0.021853508427739143, - -0.0042693521827459335, - 0.007575882598757744, - -0.0046557472087442875, - -0.017115414142608643, - -0.009723227471113205, - 0.04109726473689079, - -0.014391643926501274, - 0.009020114317536354, - 0.002757025882601738, - -0.013289466500282288, - 0.0033667071256786585, - -0.004158501047641039, - -0.0275417547672987 - ], - "sparse": "SparseEmbedding(values=array([1.6434199 , 1.6434199 , 1.6434199 , 1.6434199 , 1.88140972,\n 1.6434199 , 1.6434199 , 1.6434199 , 1.6434199 , 1.6434199 ]), indices=array([2077811411, 1012568720, 2019288601, 1145495814, 164058840,\n 715386164, 231980230, 372990882, 408270109, 440383867]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 31, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 11 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000032.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000032.json deleted file mode 100644 index ccf4da536b03adbd82250977935a9210afa447d6..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000032.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000032", - "content": "von B\u00e4umen Status Quo Grafenb\u00fchl (eigene Darstellung und Berechnung auf Grundlage", - "embedding": { - "dense": [ - 0.0006119833560660481, - -0.020078403875231743, - 0.016279425472021103, - -0.0090158861130476, - 0.01862034574151039, - 0.022138413041830063, - -0.049413472414016724, - 0.0007842081831768155, - -0.00986530538648367, - -0.017951510846614838, - 0.0009380400297231972, - -0.004902555141597986, - -0.005571389105170965, - 0.009698096662759781, - 0.0049192761071026325, - 0.041440971195697784, - 0.005544635932892561, - 0.012206224724650383, - -0.00635058106854558, - 0.0072702281177043915, - 2.4219114493462257e-05, - 0.02461310103535652, - 0.004765443969517946, - -0.013356619514524937, - 0.0015073851682245731, - 0.0004372503899503499, - 0.015383187681436539, - -0.05166075751185417, - 0.008246726356446743, - -0.0011671157553792, - 0.01297538448125124, - 0.0006437529809772968, - -0.002999721560627222, - -0.0041166748851537704, - -0.01452707964926958, - -0.022365817800164223, - -0.02013191021978855, - -0.010172968730330467, - 0.03033832088112831, - -0.0013619137462228537, - -0.002524849260225892, - -0.011831677518785, - -0.0003732931218110025, - -0.035581983625888824, - -0.01030004769563675, - -0.0009673015447333455, - 0.001512401388026774, - 0.012045704759657383, - -0.016546959057450294, - 0.010320112109184265, - 0.02956247329711914, - 0.05158049613237381, - -0.02956247329711914, - -0.003591639921069145, - -0.007992569357156754, - 0.008895495906472206, - 0.0051533677615225315, - -0.006143242586404085, - -0.01967710442841053, - -0.006728472653776407, - -0.018245797604322433, - -0.029401954263448715, - -0.014018765650689602, - 0.003419415093958378, - -0.04545397683978081, - -0.01054751593619585, - 0.0027572691906243563, - 0.01064115297049284, - 0.005049698520451784, - -0.009838552214205265, - 0.037320949137210846, - 0.0214160718023777, - -0.009229912422597408, - -0.024693360552191734, - 0.03761523962020874, - -0.0180317722260952, - -0.01116953231394291, - -0.0020299118477851152, - -0.014152532443404198, - 0.00041614030487835407, - 0.031328197568655014, - -0.0167476087808609, - -0.04162824526429176, - 0.024907387793064117, - 0.021028148010373116, - 0.011697910726070404, - -0.016466699540615082, - 0.024198422208428383, - -0.0341373011469841, - -0.01121634989976883, - 0.03362898528575897, - 0.02865285985171795, - 0.02154983952641487, - 0.011390247382223606, - -0.011544079519808292, - -0.0026987462770193815, - -0.017135532572865486, - 0.011838366277515888, - 0.022459454834461212, - -0.032612357288599014, - 0.001363585819490254, - 0.018566839396953583, - 0.001004923484288156, - -0.013182722963392735, - -0.01503539364784956, - -0.008915560320019722, - 0.0015709244180470705, - 0.01324960682541132, - -0.0015073851682245731, - -0.01393850613385439, - -0.007584580220282078, - 0.028305064886808395, - -0.01633293181657791, - -0.01254064217209816, - 0.026967396959662437, - -0.024465957656502724, - 0.02585713192820549, - 0.008166465908288956, - -0.00046191364526748657, - -0.007089642807841301, - 0.017871251329779625, - -0.01210589986294508, - 0.018874501809477806, - -0.009363679215312004, - 0.004243753384798765, - 0.011631027795374393, - -0.007424060255289078, - -0.012072457931935787, - -0.027769997715950012, - -0.006126521620899439, - -0.01597176119685173, - 0.015142407268285751, - 0.00888211838901043, - 0.004310636781156063, - -0.012052393518388271, - 0.009457316249608994, - -0.008494194597005844, - 0.006684998515993357, - -0.03180975839495659, - -0.026191549375653267, - -0.001037529087625444, - 0.01555708423256874, - -0.0379897840321064, - -0.012988761067390442, - 0.002233906416222453, - 0.025870509445667267, - -0.003578263334929943, - 0.02727506123483181, - -0.009223224595189095, - -0.03411054611206055, - -0.012667720206081867, - -0.001254900242201984, - 0.04243084415793419, - 0.0037789135240018368, - 0.0020315840374678373, - -0.011590897105634212, - -0.027248308062553406, - 0.03140845522284508, - -0.032478589564561844, - -0.010219787247478962, - 0.001983093563467264, - 0.0036953091621398926, - -0.0012933582765981555, - 0.005093172658234835, - 0.0140053890645504, - 0.012527265585958958, - 0.0031401768792420626, - 0.0054275901056826115, - -0.008601208217442036, - -0.003956154454499483, - -0.0025683233980089426, - 0.0299370214343071, - -0.016346309334039688, - 0.027769997715950012, - -0.0016821181634441018, - 0.01948983035981655, - -0.0009455644176341593, - -0.005166744347661734, - -0.004444403573870659, - -0.02439907379448414, - -0.0337895043194294, - 0.020105157047510147, - 0.022205296903848648, - 0.004925964400172234, - -0.013543893583118916, - -0.0011980494018644094, - 0.03916693478822708, - 0.006417464464902878, - 0.01409902609884739, - -0.008253414183855057, - 0.006875616032630205, - 0.011544079519808292, - 0.018433071672916412, - 0.005337297450751066, - -0.6442211270332336, - -0.024452580139040947, - -0.025843754410743713, - -0.00415346072986722, - 0.02122879959642887, - 0.012888436205685139, - 0.009724849835038185, - -0.0071163964457809925, - -0.003972875420004129, - 0.007490943651646376, - 0.004076544661074877, - 0.014888250268995762, - 0.010968881659209728, - -0.006855551153421402, - 0.004905899055302143, - -0.017416443675756454, - 0.002578356070443988, - -0.013804738409817219, - 0.013196099549531937, - -0.0028274967335164547, - 0.0017046913271769881, - 0.019235672429203987, - -0.017082026228308678, - 0.005902462173253298, - 0.001296702423132956, - 0.01341012679040432, - 0.007330423220992088, - -0.020426196977496147, - -0.013456945307552814, - 0.0207739919424057, - -0.014981887303292751, - 0.05176777020096779, - -0.008012634702026844, - 0.03207729011774063, - 0.0331474244594574, - -0.0014505343278869987, - -0.029669487848877907, - 0.018954763188958168, - -0.0024144917260855436, - 0.020533211529254913, - -0.023315561935305595, - -0.0020332562271505594, - -0.0018225733656436205, - 0.0006224338430911303, - -0.020399443805217743, - 0.018379565328359604, - 0.01907515339553356, - -0.018005017191171646, - -0.009871993213891983, - -0.014045518822968006, - 0.030739622190594673, - -0.009290107525885105, - 0.01054751593619585, - 0.011116025038063526, - 0.009042639285326004, - 0.01606539823114872, - 0.008688156493008137, - -0.00864802673459053, - -0.011537390761077404, - 0.007417371962219477, - 0.002441244898363948, - 0.009363679215312004, - -0.0001759870065143332, - -0.0013744543539360166, - 0.007811984047293663, - 0.03972875326871872, - -0.0337895043194294, - -0.004216999746859074, - 0.023101534694433212, - -0.021683605387806892, - 0.009798421524465084, - 0.010065955109894276, - 0.003277287818491459, - -0.008039387874305248, - 0.021041525527834892, - 0.026579473167657852, - 0.016734233126044273, - -0.013677660375833511, - -0.00021444498270284384, - 0.00526372529566288, - 0.005671714432537556, - -0.024506086483597755, - -0.020439574494957924, - -0.0061098006553947926, - 0.028626106679439545, - -0.018687229603528976, - -0.020934512838721275, - -0.004046447109431028, - -0.0030582447070628405, - 0.01306233275681734, - 0.01375123206526041, - 0.02137594297528267, - -0.026352068409323692, - -0.01503539364784956, - -0.004691872280091047, - 0.02892039343714714, - -0.004089921247214079, - 0.021777242422103882, - 0.015824617817997932, - -0.03758848458528519, - -0.026699863374233246, - -0.006671621464192867, - -0.0009455644176341593, - 0.006822109222412109, - 0.007979192771017551, - 0.028893640264868736, - -0.02379712276160717, - -0.006577984895557165, - 0.028572598472237587, - -0.03774900361895561, - 0.0043474226258695126, - -0.004210311453789473, - 0.00935699138790369, - 0.002457965863868594, - -0.01052745059132576, - -0.037775758653879166, - 0.033976778388023376, - -0.01848657801747322, - -0.01780436746776104, - 0.004263818264007568, - 0.008708221837878227, - 0.0006525313947349787, - 0.028626106679439545, - -0.004160149022936821, - -0.0009622852667234838, - 0.031783003360033035, - 0.009490758180618286, - -0.033334698528051376, - -0.020613471046090126, - 0.006146586500108242, - -0.0007980028749443591, - 0.014032142236828804, - 0.04526670277118683, - -0.010520762763917446, - 0.036545101553201675, - -0.023315561935305595, - 0.009925500489771366, - 0.007651463616639376, - -0.010788296349346638, - -0.02179061993956566, - -0.024358943104743958, - -0.007022759411484003, - 0.013209476135671139, - -0.006651556584984064, - -0.010239852592349052, - -0.020345937460660934, - -0.0037722252309322357, - 0.021202046424150467, - -0.023542964830994606, - 0.036224063485860825, - -0.027850257232785225, - -0.011564143933355808, - 0.0017339527839794755, - 0.004206967540085316, - 0.013289736583828926, - -0.013289736583828926, - 0.024144915863871574, - -0.022860754281282425, - -0.013256294652819633, - 0.008821923285722733, - 0.015088900923728943, - -0.0009581050835549831, - -0.031087415292859077, - -0.003292336594313383, - 0.0061766840517520905, - 0.0005074779619462788, - 0.004146772436797619, - 0.00832698680460453, - -0.0007043660734780133, - -0.033655740320682526, - -0.015088900923728943, - -0.010794985108077526, - -0.0034980031196027994, - -0.011610962450504303, - -0.015316303819417953, - -0.008507571183145046, - -0.0050095682963728905, - -0.004788853228092194, - -0.005233628209680319, - -0.00735717685893178, - 0.013597399927675724, - -0.015958385542035103, - -0.02209828421473503, - -0.028091037645936012, - 0.03111416846513748, - 0.028251558542251587, - 0.0074775670655071735, - 0.013737855479121208, - -0.006524478085339069, - -0.012768045999109745, - 0.013724478892982006, - 0.03625081479549408, - -0.028545845299959183, - 0.035769253969192505, - -0.00924328900873661, - 0.0034712497144937515, - -0.011263168416917324, - 0.015209291130304337, - -0.011309986934065819, - 0.017790991812944412, - 0.02668648585677147, - 0.01712215691804886, - 0.042484350502491, - -0.002789038699120283, - 0.021175291389226913, - -0.02589726261794567, - 0.013871622271835804, - -0.007497631944715977, - 0.03445833921432495, - 0.016132282093167305, - 0.011049142107367516, - -0.018606968224048615, - -0.03865861892700195, - -0.01706865057349205, - 0.03007078729569912, - 0.03312067314982414, - 0.01848657801747322, - -0.02645908296108246, - 0.014219416305422783, - -0.005558012519031763, - 0.015985138714313507, - -0.009530887939035892, - 0.012299861758947372, - -0.008668092079460621, - -0.016092151403427124, - 0.0011938691604882479, - -0.0010266605531796813, - 0.01442006602883339, - -0.009236601181328297, - 0.008601208217442036, - -0.014794613234698772, - -0.013724478892982006, - -0.020078403875231743, - -0.0016378078144043684, - 0.007457501720637083, - 0.02320854924619198, - 0.019369440153241158, - -0.019195543602108955, - 0.0318632647395134, - -0.00098402239382267, - 0.0025967489928007126, - 0.018459824845194817, - 0.004608267918229103, - -0.030418582260608673, - 0.020720485597848892, - -0.0033709246199578047, - 0.016373062506318092, - 0.03322768583893776, - -0.01967710442841053, - -0.008587831631302834, - 0.0005237808218225837, - 0.020078403875231743, - 0.005260381381958723, - 0.0015316304052248597, - 0.025094661861658096, - -0.007330423220992088, - 0.027796750888228416, - 0.014192663133144379, - -0.00021402696438599378, - 0.009698096662759781, - 0.004243753384798765, - 0.017336184158921242, - -0.018968138843774796, - -0.012841617688536644, - -0.004237065091729164, - -0.010447191074490547, - -0.012687785550951958, - -0.025108037516474724, - -0.00935699138790369, - -0.0023509524762630463, - 0.008219973184168339, - -0.015409940853714943, - 0.005123270209878683, - 0.0031234559137374163, - 0.006470971275120974, - -0.02430543676018715, - 0.01597176119685173, - -0.007424060255289078, - 0.028037531301379204, - -0.004514631349593401, - -0.034806136041879654, - -0.03167599067091942, - 0.004176869988441467, - 0.024225177243351936, - -0.013831492513418198, - -0.0030298191122710705, - 0.018326058983802795, - 0.00997231900691986, - -0.013884998857975006, - -0.0011035765055567026, - 0.006808732636272907, - -0.016546959057450294, - -0.015102277509868145, - -0.014272922649979591, - -0.01080167293548584, - -0.021161915734410286, - -0.006069670896977186, - -0.019396193325519562, - -0.013115840032696724, - 0.00858114380389452, - 0.017175663262605667, - 0.011992198415100574, - -0.0002449605381116271, - -0.014754483476281166, - 0.0415479838848114, - -0.01329642441123724, - -0.023074781522154808, - -0.014754483476281166, - -0.008407246321439743, - 0.005267069675028324, - -0.003181978827342391, - -0.0004970274749211967, - -0.017403068020939827, - -3.886292688548565e-06, - -0.004832327365875244, - 0.01442006602883339, - 0.014326429925858974, - -0.025883885100483894, - 0.05949949473142624, - 0.015182537026703358, - 0.010092709213495255, - -0.024452580139040947, - -0.010146215558052063, - 0.026017652824521065, - 0.03258560597896576, - 0.024880634620785713, - 0.00480557419359684, - 0.001912865904159844, - -0.022914260625839233, - -0.009296796284615993, - -0.029776500537991524, - -0.040210314095020294, - -0.00631379522383213, - -0.004106642212718725, - 0.009323549456894398, - -0.004367487505078316, - -0.006230190861970186, - -0.021723736077547073, - 0.009076080285012722, - -0.01100232359021902, - -0.012279796414077282, - -0.023168418556451797, - 0.005999443121254444, - -0.00034779380075633526, - -0.016734233126044273, - 0.0016444962238892913, - 0.024452580139040947, - 0.04879814758896828, - -0.005059731192886829, - -0.0028475618455559015, - 0.007149837911128998, - 0.01597176119685173, - 0.016694102436304092, - -0.00846744142472744, - 0.0005467719747684896, - -0.01752345636487007, - -0.008206596598029137, - 0.03445833921432495, - -0.036036789417266846, - 0.017376312986016273, - 0.002675337018445134, - 0.0204529520124197, - 0.0273686982691288, - 0.0035715748090296984, - -0.005955968983471394, - 0.02122879959642887, - 0.006012819707393646, - -0.012212913483381271, - -0.0016578729264438152, - -0.0035715748090296984, - -0.0071966564282774925, - -0.009664654731750488, - -0.005738597828894854, - -0.0006182536599226296, - 0.02375699207186699, - -0.018954763188958168, - -0.013082398101687431, - -0.007377241738140583, - -0.00545768765732646, - -0.004534696228802204, - 0.01107589527964592, - -0.005955968983471394, - 0.013884998857975006, - 0.01036693062633276, - -0.03523418679833412, - -0.023877382278442383, - 0.022352440282702446, - -0.008982444182038307, - -0.0052102189511060715, - 0.001154575147666037, - -0.02411816269159317, - -0.013283047825098038, - -0.0018376221414655447, - 0.0010500698117539287, - 0.0051466794684529305, - 0.007959127426147461, - -0.014045518822968006, - -0.0024529495276510715, - 0.022847378626465797, - -0.0031986997928470373, - 0.018406318500638008, - -0.009918811731040478, - -0.009002508595585823, - -0.012620902620255947, - -0.042591363191604614, - -0.034618861973285675, - -0.01160427462309599, - -0.014834743924438953, - -0.008353739976882935, - 0.009410497732460499, - 0.01829930581152439, - -0.0038524852134287357, - 0.005631584208458662, - 0.014339806511998177, - -0.007745100650936365, - -0.014299675822257996, - -0.003608360653743148, - 0.0003526010550558567, - -0.002864282578229904, - -0.012841617688536644, - 0.017831120640039444, - 0.017175663262605667, - 0.01816553808748722, - -0.019275803118944168, - 0.052329592406749725, - 0.00648769224062562, - -0.01950320601463318, - -0.012594148516654968, - 0.02787701226770878, - 0.009149652905762196, - -0.019851000979542732, - 0.006287042051553726, - -0.004698560573160648, - -0.008246726356446743, - 0.023676732555031776, - -0.007678217254579067, - 0.013965259306132793, - -0.011443753726780415, - 0.0017556898528710008, - -0.0035548540763556957, - -0.01549020130187273, - 0.004417650401592255, - 0.027582723647356033, - 0.010534139350056648, - 0.01716228760778904, - -0.0029478869400918484, - 0.04834333807229996, - 0.016546959057450294, - -0.003100046655163169, - 0.039514727890491486, - -0.0022288900800049305, - 0.01471435371786356, - -0.019663726910948753, - -0.0009739898960106075, - 0.025201674550771713, - 0.0016612170729786158, - 0.02755597047507763, - -0.019289178773760796, - -0.020533211529254913, - -0.012005575001239777, - -0.009918811731040478, - 0.004337389953434467, - -0.027248308062553406, - 0.018098654225468636, - -0.026164796203374863, - 0.012219601310789585, - -0.0014496982330456376, - 0.014406689442694187, - -0.0014622388407588005, - -0.032692618668079376, - -0.008828612044453621, - 0.002857594285160303, - 0.01587812416255474, - 0.024104787036776543, - -0.03785602003335953, - -0.020252300426363945, - -0.015503577888011932, - 0.002118532545864582, - 0.0049995360895991325, - -0.04243084415793419, - -0.01297538448125124, - 0.016546959057450294, - 0.020198794081807137, - -0.007825360633432865, - -0.002802415518090129, - 0.02969624102115631, - 0.02407803200185299, - 0.00037266607978381217, - -0.0060930801555514336, - 0.008841988630592823, - 0.009377055801451206, - -0.02009178139269352, - -0.03697315603494644, - 0.0032471902668476105, - -0.006123177707195282, - 0.023783745244145393, - -0.00019500698545016348, - 0.0037153742741793394, - 0.013075709342956543, - 0.03234482556581497, - -0.015757733955979347, - 0.0017322807107120752, - -0.015891501680016518, - -0.0051466794684529305, - 0.01409902609884739, - -0.0017657224088907242, - 0.005002880003303289, - 0.008554389700293541, - -0.011243104003369808, - -0.003819043515250087, - 0.0347793810069561, - -0.008066141046583652, - 0.0027171391993761063, - -0.012821552343666553, - 0.009624524973332882, - -0.047032423317432404, - 0.031783003360033035, - 0.0021887600887566805, - -0.0020817467011511326, - -0.0020817467011511326, - 0.005300511606037617, - -0.007022759411484003, - 0.00229410151951015, - 0.015048770233988762, - -0.009811798110604286, - 0.026927266269922256, - -0.011657780967652798, - 0.00012321180838625878, - 0.0066749658435583115, - -0.0017222481546923518, - 0.01048063300549984, - -0.01752345636487007, - 0.015276174061000347, - -0.011403623968362808, - -0.018058525398373604, - -0.011423689313232899, - -0.00777854211628437, - -0.01274129282683134, - 0.0257634948939085, - 0.02617817185819149, - -0.0030716212932020426, - 0.033521972596645355, - 0.005484440829604864, - 0.002720483345910907, - 0.01767060160636902, - 0.012620902620255947, - 0.023917512968182564, - 0.027769997715950012, - 0.020332561805844307, - 0.014767860062420368, - -0.03697315603494644, - -0.01963697373867035, - 0.0007365536876022816, - -0.005614863708615303, - -0.0016670693876221776, - 0.008480818010866642, - 0.028866885229945183, - 0.006367302034050226, - -0.011269857175648212, - 0.021563217043876648, - 0.04136070981621742, - 0.0005354853929020464, - -0.005641616880893707, - 0.03143521025776863, - -0.00743743684142828, - 0.013209476135671139, - 0.00332410610280931, - 0.020479705184698105, - -0.01208583451807499, - 0.015383187681436539, - -0.018874501809477806, - -0.001621923060156405, - -0.005531259346753359, - -0.018513331189751625, - -0.004461124539375305, - 0.04823632538318634, - -0.033200930804014206, - 0.006521133705973625, - -0.001438829698599875, - -0.0252685584127903, - -0.014018765650689602, - -0.01391175203025341, - -0.0063104513101279736, - 0.026552719995379448, - -0.010132838971912861, - 0.03825731948018074, - 0.0073437998071312904, - -0.031595729291439056, - -0.007390618324279785, - -0.024920763447880745, - -0.021857503801584244, - 0.003133488353341818, - -0.00043934048153460026, - 0.018513331189751625, - -0.030365074053406715, - 0.005360706709325314, - -0.006975941359996796, - 0.011858431622385979, - 0.03659861162304878, - 0.019784117117524147, - -0.001947979792021215, - -0.022994522005319595, - -0.026887137442827225, - 0.0038223876617848873, - -0.008106270805001259, - -0.00593590410426259, - 0.005708500277251005, - -0.000736135698389262, - -0.004996191710233688, - -0.012079146690666676, - -0.015757733955979347, - -0.010467256419360638, - 0.006440873723477125, - -0.011189596727490425, - -0.005738597828894854, - 0.011082583107054234, - 0.0010074315359815955, - 0.04165499657392502, - 0.02096126601099968, - -0.029722994193434715, - -0.011697910726070404, - 0.031274691224098206, - -0.024452580139040947, - 0.015022017061710358, - 0.030097540467977524, - -0.006186716724187136, - -0.033254437148571014, - 0.006915746256709099, - -0.028224805369973183, - -0.027529217302799225, - 0.021108409389853477, - -0.014915003441274166, - -0.018433071672916412, - -0.012895124033093452, - -0.004671807400882244, - 0.0027639574836939573, - -0.0008644682820886374, - -0.013858245685696602, - 0.006056294310837984, - 0.002571667777374387, - 0.02599089965224266, - -0.04320669174194336, - -0.010199721902608871, - 0.013048956170678139, - 0.01908852905035019, - -0.005397492554038763, - 0.021911010146141052, - -0.02649921365082264, - 0.03033832088112831, - 0.02974974736571312, - 0.005347329657524824, - 0.007424060255289078, - -0.02672661654651165, - -0.02782350406050682, - -0.009022573940455914, - 0.02228555642068386, - -0.03820381313562393, - -0.007403994910418987, - -0.019690480083227158, - -0.016078775748610497, - -0.0048624249175190926, - 0.027769997715950012, - 0.0025750119239091873, - -0.0021469579078257084, - -0.002183743752539158, - 0.008982444182038307, - 0.002897724276408553, - -0.0011010683374479413, - 0.008567766286432743, - -0.00302647496573627, - -0.017001766711473465, - 0.008507571183145046, - -0.020760614424943924, - -0.009604459628462791, - 0.0066080824472010136, - 0.012179471552371979, - 0.012567395344376564, - -0.011918626725673676, - -0.01652020588517189, - 0.004925964400172234, - -0.03437808156013489, - 0.004176869988441467, - -0.01569085195660591, - 0.0029896891210228205, - -0.004534696228802204, - 0.016908129677176476, - -0.0009087785147130489, - 0.005966001655906439, - -0.016185788437724113, - -0.005143335554748774, - -0.026285186409950256, - -0.004063168074935675, - 0.005220251157879829, - -0.012018951587378979, - 0.04063836857676506, - 0.0165737122297287, - -0.014179285615682602, - -0.03611705079674721, - 0.0008473293855786324, - 0.01347700972110033, - -0.0005522063001990318, - 0.01742982119321823, - 0.012493823654949665, - 0.0005806317203678191, - 0.006882304325699806, - 0.0029395264573395252, - 0.02256646752357483, - 0.01587812416255474, - 0.01775086112320423, - -0.04277863726019859, - 0.0002786112600006163, - -0.008106270805001259, - 0.029080912470817566, - -0.04561449587345123, - -0.0065445429645478725, - 0.011450442485511303, - -0.024104787036776543, - 0.010988947004079819, - -0.0008306085364893079, - 0.0005162564339116216, - -0.016453322023153305, - -0.020292431116104126, - 0.012192848138511181, - -0.003926056902855635, - -0.009236601181328297, - 0.025161543861031532, - 0.0018877846887335181, - -0.014406689442694187, - 0.011443753726780415, - 0.017603717744350433, - -0.023048028349876404, - -0.012841617688536644, - -0.0032806319650262594, - -0.022205296903848648, - 0.03550172224640846, - -0.0015516954008489847, - 0.004444403573870659, - -0.008862053975462914, - -0.0018008361803367734, - -0.004066512454301119, - -0.01821904443204403, - -0.018406318500638008, - 0.026378823444247246, - 0.0027254994492977858, - -0.015677474439144135, - 0.019208919256925583, - -0.0053707389160990715, - 0.0031067351810634136, - -0.0210950318723917, - -0.01738969050347805, - -0.031595729291439056, - -0.0257634948939085, - -0.016493452712893486, - -0.0018810962792485952, - 0.009490758180618286, - -0.03290664404630661, - 0.02200464718043804, - -0.01355058141052723, - -0.014179285615682602, - 0.0026653045788407326, - 0.18202993273735046, - -0.018285928294062614, - -0.005039665848016739, - 0.037641990929841995, - -0.0023910824675112963, - -0.027930518612265587, - 0.019516583532094955, - -0.009363679215312004, - 0.012152718380093575, - 0.002789038699120283, - -0.02054658718407154, - -0.00631379522383213, - -0.009002508595585823, - 0.00627032108604908, - 0.021362565457820892, - -0.010995634831488132, - -0.03202378377318382, - -0.024559592828154564, - -0.008815235458314419, - -0.0016269392799586058, - 0.022218674421310425, - -0.03464561328291893, - 0.009216535836458206, - -0.014754483476281166, - 0.01912865974009037, - -0.008480818010866642, - 0.006845518480986357, - 0.0071966564282774925, - 0.017403068020939827, - 0.004879145883023739, - -0.009671343490481377, - -0.0013084070524200797, - -0.00423372071236372, - -0.024974271655082703, - -0.008888807147741318, - 0.0026301906909793615, - 0.027127917855978012, - 0.0069224345497787, - 0.019329309463500977, - 0.03084663487970829, - 0.013764608651399612, - -0.016961636021733284, - -0.017082026228308678, - -0.013015514239668846, - 0.002233906416222453, - 0.034485094249248505, - 0.01886112615466118, - 0.006855551153421402, - 0.00044268465717323124, - -0.00218541594222188, - -0.04810255765914917, - 0.005962657276540995, - 0.010922063142061234, - 0.020145287737250328, - -0.008005945943295956, - 0.005089828744530678, - 0.018245797604322433, - -0.017871251329779625, - -0.000709382351487875, - -0.005223595537245274, - -0.042484350502491, - 0.01098225824534893, - 0.0006934974808245897, - 0.011624339036643505, - -0.022713610902428627, - -0.01871398277580738, - -0.03780250996351242, - 0.004681839607656002, - -0.003966187126934528, - -0.01829930581152439, - -0.0070026945322752, - -0.02472011372447014, - -0.00967803131788969, - 0.006042917259037495, - -0.024827126413583755, - -0.025830378755927086, - 0.008440688252449036, - 0.00016658153617754579, - 0.002653599949553609, - 0.004083232954144478, - -0.015155783854424953, - 0.007771853823214769, - -0.018138784915208817, - 0.0068354858085513115, - -0.022365817800164223, - -0.03453860059380531, - 0.014674223028123379, - 0.004103298299014568, - -0.002108499873429537, - -0.023101534694433212, - 0.0066181146539747715, - 0.004969438537955284, - -0.009878681972622871, - 0.005681747104972601, - 0.005745286121964455, - 0.016212541610002518, - -0.015022017061710358, - 0.034431587904691696, - -0.02296776883304119, - -0.0018777521327137947, - -0.0032940085511654615, - 0.052008550614118576, - 0.05687766522169113, - -0.008086206391453743, - -0.0056683700531721115, - 0.007999257184565067, - -0.0031736185774207115, - 0.012366745620965958, - -0.005785416346043348, - 0.011845054104924202, - -0.02443920262157917, - 0.0002535299863666296, - 0.0075578270480036736, - -0.004681839607656002, - 0.008955691009759903, - -0.011524014174938202, - -0.00548109645023942, - -0.005862331949174404, - 0.0019429634558036923, - -0.011831677518785, - -0.019302556291222572, - 0.006434185430407524, - -0.0028676267247647047, - 0.0325053445994854, - 0.004066512454301119, - -0.010687971487641335, - -0.027609476819634438, - 0.0007344636251218617, - -0.008433999493718147, - -0.012212913483381271, - 0.03665211796760559, - -0.008112959563732147, - -0.004815606400370598, - 0.0011562472209334373, - -0.0032003719825297594, - 0.01986437663435936, - -0.020158663392066956, - -0.017095403745770454, - -0.009798421524465084, - 0.0044945660047233105, - 0.02347608283162117, - -0.013149281032383442, - -0.003959498833864927, - -0.00015654900926165283, - -0.005638272501528263, - 0.003319089999422431, - 0.02667311020195484, - -0.01343019213527441, - -0.002049976959824562, - -0.01712215691804886, - -0.011631027795374393, - -0.01125648058950901, - -0.019422946497797966, - -0.016854623332619667, - 0.04770125821232796, - 0.022446077316999435, - 0.002260659821331501, - -0.04695216566324234, - 0.016185788437724113, - 0.036224063485860825, - -0.03140845522284508, - 0.002919461578130722, - 0.01262759044766426, - -0.037053417414426804, - 0.004427682608366013, - -0.0030783095862716436, - -0.17154261469841003, - 0.004317325074225664, - 0.023088159039616585, - -0.021402696147561073, - 0.0032003719825297594, - 0.005059731192886829, - 0.03740121051669121, - 0.0094974460080266, - -0.01252057682722807, - 0.011209662072360516, - 0.027422204613685608, - 0.01761709339916706, - -0.016346309334039688, - -0.010440502315759659, - -0.005895773880183697, - -0.010005760006606579, - -0.01886112615466118, - 0.03180975839495659, - 0.03459210693836212, - 0.02118866890668869, - 0.0016921506030485034, - -0.025054531171917915, - -0.00024287043197546154, - -0.021456202492117882, - 0.007490943651646376, - 0.0047487230040133, - -0.0036050165072083473, - 0.0315689779818058, - -0.00014348584227263927, - -0.01825917512178421, - -0.0070026945322752, - 0.0008423131075687706, - 0.023904135450720787, - -0.007738412357866764, - -0.006119833327829838, - -0.004671807400882244, - -0.007296981755644083, - -0.008333674632012844, - -0.008139712736010551, - 0.016266049817204475, - 0.015249420888721943, - 0.020305808633565903, - 0.007511008530855179, - -0.00031393408426083624, - 0.006721784360706806, - 0.02398439683020115, - 0.0405581071972847, - 0.00401634955778718, - 0.003601672360673547, - -0.018085278570652008, - 0.012828241102397442, - -0.01329642441123724, - 0.01089530996978283, - 0.013129216618835926, - 0.018780864775180817, - 0.016172412782907486, - 0.004869113210588694, - 0.011350117623806, - -0.005270414054393768, - -0.007691593840718269, - -0.004635021556168795, - -0.022178543731570244, - 0.007731724064797163, - 0.006751881912350655, - -0.00041718536522239447, - -0.007644775323569775, - -0.0058121695183217525, - 0.0021151883993297815, - -0.00113283796235919, - 0.009965630248188972, - -0.03582276403903961, - -0.032050538808107376, - 0.002702090423554182, - -0.021161915734410286, - 0.004287227522581816, - 0.0010709707858040929, - -0.014139155857264996, - -0.007330423220992088, - 0.013597399927675724, - -0.017550211399793625, - -0.006671621464192867, - 0.05789429321885109, - -0.015048770233988762, - -0.018660474568605423, - 0.018152160570025444, - -0.00935699138790369, - -0.0035481657832860947, - 0.0035214123781770468, - 0.0034311197232455015, - -0.008039387874305248, - -0.007604645565152168, - -0.02695401944220066, - -0.0064642829820513725, - -0.014433442614972591, - 0.013777985237538815, - 0.005828890483826399, - 0.003217092715203762, - -0.005574733484536409, - 0.010601023212075233, - -0.02493414096534252, - 0.006477659568190575, - 0.008601208217442036, - -0.037695497274398804, - 0.012600837275385857, - 0.010500697419047356, - -0.003074965439736843, - -0.010360242798924446, - 0.010848491452634335, - 0.031060662120580673, - -0.004802229814231396, - -0.011162843555212021, - 0.02105490118265152, - 0.0077049704268574715, - 0.005494473502039909, - -0.015436694025993347, - 0.003467905567958951, - -0.021523086354136467, - -0.014741106890141964, - -0.0007557827048003674, - -0.030445335432887077, - 0.052383098751306534, - 0.018112031742930412, - -0.021977894008159637, - 0.00526372529566288, - 0.016867998987436295, - 0.006808732636272907, - -0.0566636361181736, - 0.0036886208690702915, - 0.0259106382727623, - 0.00993218831717968, - 0.0053640506230294704, - 0.012333303689956665, - -0.016627218574285507, - 0.015998514369130135, - -0.0180317722260952, - 0.031595729291439056, - -0.02013191021978855, - -0.02710116282105446, - -0.010494009591639042, - -0.00015090573288034648, - 0.037829264998435974, - -0.0037421276792883873, - -0.03881913796067238, - -0.018660474568605423, - -0.009718162007629871, - 0.013376684859395027, - 0.00959108304232359, - -0.013543893583118916, - 0.0018175570294260979, - -0.01776423677802086, - 0.0071966564282774925, - -0.008166465908288956, - -0.019877754151821136, - 0.00883530080318451, - 0.0447583869099617, - 0.01114277821034193, - 0.012346680276095867, - -0.003658523317426443, - 0.020011520013213158, - -0.030097540467977524, - -0.003685276722535491, - -0.014032142236828804, - -0.014888250268995762, - -0.04170850291848183, - 0.022312309592962265, - -0.015022017061710358, - 0.003916024696081877, - -0.006481003947556019, - 0.03708017244935036, - -0.024225177243351936, - 0.004437715280801058, - -0.0025398980360478163, - -0.011631027795374393, - -0.007330423220992088, - 0.006467627361416817, - 0.00637064641341567, - -0.00915634073317051, - -0.022900884971022606, - 0.01279479917138815, - 0.003962842747569084, - 0.0210950318723917, - 0.0009522527689114213, - -0.0018292616587132215, - 0.008387181907892227, - -0.012480447068810463, - 0.01066121831536293, - -0.012580771930515766, - 0.011985509656369686, - -0.006982629653066397, - 0.028545845299959183, - -0.0017138877883553505, - 0.0032405019737780094, - -0.019235672429203987, - -0.022459454834461212, - 0.013604088686406612, - -0.0006851370562799275, - -0.017978264018893242, - 0.011202973313629627, - 0.0031635859049856663, - -0.004571482073515654, - -0.018018394708633423, - -0.0006709243752993643, - -0.04927970841526985, - -0.01201226282864809, - 0.008989132009446621, - -0.026552719995379448, - -0.020707108080387115, - -0.02005165070295334, - 0.03555522859096527, - 0.002177055459469557, - 0.031461961567401886, - 0.018687229603528976, - -0.013791361823678017, - -0.004190246574580669, - 0.019971391186118126, - -0.036090295761823654, - 0.02187087945640087, - -0.008534325286746025, - 0.028117790818214417, - -0.02406465634703636, - -0.01341012679040432, - -0.00045188114745542407, - 0.006768602412194014, - 0.01116953231394291, - -0.003427775576710701, - -0.009443939663469791, - -0.028572598472237587, - 0.0029395264573395252, - -0.052463360130786896, - 0.034297820180654526, - -0.001174640143290162, - -0.009042639285326004, - -0.011550767347216606, - 0.005665026139467955, - 0.005678402725607157, - -0.012353368103504181, - 0.0075511387549340725, - 0.00020503949781414121, - -0.02073386125266552, - 0.011584209278225899, - -0.018285928294062614, - -0.003959498833864927, - -0.039434466511011124, - -0.02508128434419632, - 0.018981516361236572, - -0.0024663263466209173, - 0.01776423677802086, - 0.051366470754146576, - -0.0016194148920476437, - 0.024907387793064117, - 0.007811984047293663, - 0.003952810540795326, - -0.012313238345086575, - -0.002991361077874899, - 0.005384115502238274, - 0.026606226339936256, - -0.014085649512708187, - -0.02668648585677147, - -0.002389410277828574, - -0.0016737576806917787, - -0.006146586500108242, - 0.017536833882331848, - -0.007216721307486296, - 0.003952810540795326, - -0.000498699548188597, - 0.038605112582445145, - 0.041173435747623444, - 0.0592319592833519, - -0.04042434319853783, - -0.024492710828781128, - 0.014928380027413368, - -0.0252685584127903, - -0.025134790688753128, - 0.029830006882548332, - 0.004681839607656002, - -0.014032142236828804, - 0.019382815808057785, - 0.006146586500108242, - 0.018339434638619423, - 0.014727730304002762, - -0.001574268564581871, - -0.0006972596747800708, - 0.01583799533545971, - -0.015302927233278751, - 0.014888250268995762, - 0.03309391811490059, - 0.00906270369887352, - -0.01793813519179821, - 0.03547496721148491, - 0.01890125498175621, - 0.009651278145611286, - -0.004521319642663002, - 0.0004669298941735178, - -0.025562845170497894, - -0.019369440153241158, - 0.01070803590118885, - 0.019824247807264328, - -0.025014400482177734, - -0.0005191825912334025, - 0.006982629653066397, - -0.009571017697453499, - -0.001757361926138401, - -0.005902462173253298, - -0.022178543731570244, - 0.011463819071650505, - -0.006765258498489857, - -0.008821923285722733, - 0.023556342348456383, - 0.006902369204908609, - 0.003685276722535491, - -0.01587812416255474, - 0.005273757968097925, - 0.029508966952562332, - 0.013236229307949543, - -0.017376312986016273, - 0.015610591508448124, - 0.012059081345796585, - 0.009343614801764488, - -0.00222554593347013, - 0.01615903526544571, - 0.001675429753959179, - -0.011891872622072697, - 0.0023576407693326473, - 0.014674223028123379, - 0.00959108304232359, - 0.00033608920057304204, - 0.020212171599268913, - 0.027662985026836395, - -0.015369811095297337, - 0.009550953283905983, - -0.001072642975486815, - -0.034164052456617355, - -0.0011963772121816874, - 0.019824247807264328, - -0.0007783558685332537, - -0.04695216566324234, - -0.02961597964167595, - -0.007751788944005966, - 0.0063271718099713326, - 0.0030114261899143457, - -0.01391175203025341, - -0.009912123903632164, - -0.006129866000264883, - 0.02566985785961151, - -0.020466327667236328, - 0.003434463869780302, - -0.02113516256213188, - 0.01922229677438736, - 0.019208919256925583, - 0.004350767005234957, - 0.008099582977592945, - 0.01393850613385439, - 0.005982722155749798, - 0.011269857175648212, - 0.0006976777222007513, - -0.004461124539375305, - -0.006330516189336777, - -0.011042453348636627, - 0.003053228370845318, - 0.0002148630010196939, - -0.0024746868293732405, - -0.02682025358080864, - -0.021442826837301254, - -0.006143242586404085, - -0.012393498793244362, - 0.013697725720703602, - 2.060061706288252e-05, - 0.10567580908536911, - 0.022726988419890404, - 0.0025967489928007126, - 0.022205296903848648, - -0.011269857175648212, - 0.005932559724897146, - 0.004591546952724457, - -0.01393850613385439, - -0.010005760006606579, - -0.037053417414426804, - -0.0012657687766477466, - -0.031060662120580673, - 0.008801858872175217, - -0.05853637307882309, - 0.001832605805248022, - 0.005875709000974894, - -0.013644218444824219, - 0.0114370658993721, - -0.031274691224098206, - -0.006437529809772968, - 0.03395002707839012, - 0.010514074005186558, - 0.028305064886808395, - 0.014607340097427368, - -0.03563548997044563, - -0.02200464718043804, - 0.010413749143481255, - -0.016466699540615082, - -0.008139712736010551, - -0.002585044363513589, - 0.003959498833864927, - -0.00858114380389452, - -0.03753497824072838, - -0.03419080749154091, - 0.006975941359996796, - -0.026298562064766884, - -0.018433071672916412, - -0.01688137650489807, - 0.00812633614987135, - 0.013604088686406612, - -0.033200930804014206, - 0.02636544592678547, - -0.02636544592678547, - -0.008795170113444328, - 0.010975570417940617, - -0.03135494887828827, - -0.01270116213709116, - -0.002177055459469557, - -0.028679613023996353 - ], - "sparse": "SparseEmbedding(values=array([1.6434199, 1.6434199, 1.6434199, 1.6434199, 1.6434199, 1.6434199,\n 1.6434199, 1.6434199, 1.6434199, 1.6434199, 1.6434199]), indices=array([1638510030, 1946058775, 900543307, 407244595, 627407068,\n 922977895, 911111262, 164058840, 653745147, 2103309648,\n 1721868368]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 32, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 11 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000033.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000033.json deleted file mode 100644 index d957d97aed353a993323e6ded3c7efaf691b6a5f..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000033.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000033", - "content": "Abbildung 17: Spezifischer Heiz- und K\u00fchlbedarf im Fallstudiengebiet Gromb\u00fchl mit und", - "embedding": { - "dense": [ - 0.020686183124780655, - 0.01502625085413456, - 0.018652353435754776, - -0.006710297893732786, - 0.0049407328478991985, - 0.01795656979084015, - -0.015280479565262794, - -0.013714966364204884, - 0.007687071338295937, - -0.0059910984709858894, - 0.016645286232233047, - 0.023041144013404846, - 0.018117135390639305, - -0.016926275566220284, - -0.0036628996022045612, - 0.009393079206347466, - 0.002794842468574643, - 0.03527087718248367, - 0.030025741085410118, - -0.0033283880911767483, - -0.04830344021320343, - 0.024419330060482025, - 0.013614612631499767, - 0.016417818143963814, - 0.007586718071252108, - -0.019642507657408714, - -0.00539901340380311, - -0.05226405709981918, - -0.03192576393485069, - 0.025195395573973656, - 0.017193883657455444, - -0.013420595787465572, - -0.013915672898292542, - -0.040489256381988525, - -0.012731502763926983, - -0.02799191139638424, - -0.0075666471384465694, - -0.02060590125620365, - 0.002099058823660016, - -0.009674068540334702, - 0.0042549846693873405, - 0.0034956438466906548, - 0.015106533654034138, - -0.0006046292837709188, - 0.022050989791750908, - 0.0007827566005289555, - -0.012316708452999592, - 0.01015576533973217, - -0.032139852643013, - 0.01462483685463667, - 0.006643395870923996, - 0.028687695041298866, - -0.013159677386283875, - -0.014812163077294827, - -0.013728346675634384, - 0.004897246602922678, - -0.01825094036757946, - 0.005271899048238993, - -0.003373547224327922, - -0.005723489448428154, - -0.008550110273063183, - -0.0007442877977155149, - 0.006830722093582153, - -0.012818476185202599, - -0.04782174527645111, - 0.004994254559278488, - -0.006108177825808525, - -0.008055034093558788, - -0.005954302381724119, - -0.02724260650575161, - 0.04857105016708374, - 0.030534198507666588, - -0.0004494996683206409, - -0.018839679658412933, - 0.010878309607505798, - -0.03955262526869774, - 0.01181494165211916, - -0.003388600191101432, - -0.015093153342604637, - 0.020418573170900345, - 0.043807610869407654, - -0.03757231682538986, - -0.027644019573926926, - 0.017100220546126366, - 0.026988377794623375, - 0.025917941704392433, - -0.02094041183590889, - 0.010824788361787796, - -0.004843724425882101, - 0.014959348365664482, - 0.019254473969340324, - 0.02407143823802471, - -0.01441075000911951, - 0.006118212826550007, - 0.0048704855144023895, - -0.008703986182808876, - 0.0038836770690977573, - -0.0030473985243588686, - -0.006737058982253075, - -0.0020020506344735622, - 0.0059609925374388695, - 0.014343847520649433, - 0.005004290025681257, - -0.0042850906029343605, - -0.035083550959825516, - 0.009386389516294003, - 0.01353432983160019, - -0.010704363696277142, - 0.020244628190994263, - -0.021315064281225204, - -0.027697540819644928, - 0.041051235049963, - -0.023308752104640007, - -0.026011604815721512, - 0.0004104036488570273, - -0.02726936712861061, - 0.006730368826538324, - -0.02231859788298607, - -0.03462861850857735, - -0.009854705072939396, - -0.012631149031221867, - -0.007620168849825859, - 0.014745261520147324, - -0.018946724012494087, - 0.030132783576846123, - 0.00913885049521923, - -0.02239888161420822, - 0.013574471697211266, - -0.009593785740435123, - -0.00642930855974555, - -0.0020371743012219667, - 0.0017829455900937319, - 0.03243422135710716, - 0.007907848805189133, - -0.0044791074469685555, - 0.029089108109474182, - -0.02276015281677246, - -0.0035959973465651274, - -0.021783379837870598, - -0.013246649876236916, - -0.004813618492335081, - 0.026774290949106216, - -0.02745669335126877, - -0.016297394409775734, - -0.014464271254837513, - 0.0021425453014671803, - 0.004064313136041164, - 0.017943190410733223, - -0.01643119938671589, - 0.001915077562443912, - -0.000845059345010668, - -0.014129760675132275, - 0.024954548105597496, - -0.0006493701948784292, - 0.026667246595025063, - -0.00242353486828506, - -0.022184794768691063, - 0.009794493205845356, - -0.01124627236276865, - 0.0028333112131804228, - 0.01164768636226654, - -0.014986108988523483, - 0.011982196941971779, - 0.013126226142048836, - 0.006559767760336399, - 0.017300928011536598, - 0.0015278806677088141, - -0.02353622019290924, - 0.019067147746682167, - -0.03982023522257805, - 0.01723402552306652, - 0.030159546062350273, - -0.021007314324378967, - 0.025877799838781357, - -0.004328577313572168, - 0.0036996956914663315, - -0.005111333914101124, - 0.0032196720130741596, - 0.031283505260944366, - -0.029624326154589653, - -0.030641240999102592, - 0.007981440983712673, - 0.000769376172684133, - -0.004709919914603233, - -0.03371874615550041, - 0.0009349592728540301, - 0.01592274196445942, - 0.02079322747886181, - 0.017555156722664833, - 0.0024436055682599545, - 0.00478016771376133, - 0.016979796811938286, - 0.005696728825569153, - 0.017916429787874222, - -0.6084360480308533, - -0.0026610379572957754, - -0.03037363290786743, - 0.001067927572876215, - -0.005225067492574453, - 0.017046699300408363, - 0.018170658499002457, - 0.004713265225291252, - -0.026212310418486595, - -0.00585394911468029, - -0.005813807714730501, - -0.00352909485809505, - -0.005981063470244408, - -0.00976773165166378, - 0.021074216812849045, - -0.019401660189032555, - -0.005158165469765663, - -0.002047209534794092, - 0.013106155209243298, - -0.001362297567538917, - -0.002993876812979579, - 0.016471339389681816, - 0.0002287221432197839, - 0.009426530450582504, - 0.012129382230341434, - 0.0016993177123367786, - 0.017046699300408363, - -0.023603122681379318, - 0.0024870920460671186, - 0.02593132108449936, - -0.027563737705349922, - 0.03703710064291954, - -0.0002556921390350908, - 0.012604388408362865, - 0.02637287601828575, - 0.002629259368404746, - -0.04180053994059563, - 0.024124959483742714, - 0.010363162495195866, - 0.02610526792705059, - -0.019428420811891556, - -0.007446222938597202, - 0.04576115682721138, - -0.01503963116556406, - 0.011634305119514465, - 0.04006108269095421, - 0.01905376836657524, - -0.01502625085413456, - 0.00639251247048378, - 0.0048303441144526005, - 0.018063614144921303, - 0.0020973864011466503, - 0.0004444819933269173, - -0.008857861161231995, - 0.009332867339253426, - 0.0012477274285629392, - 0.02714894339442253, - -0.013634683564305305, - -0.005894090514630079, - 0.023576362058520317, - 0.020806606858968735, - 0.0026208965573459864, - 0.0118885338306427, - -0.03160463273525238, - -0.009868085384368896, - 0.04089067131280899, - -0.02656020224094391, - 0.010577249340713024, - 0.011045565828680992, - -0.006332300137728453, - -0.000834187725558877, - 0.016297394409775734, - 0.006231946870684624, - 0.017903048545122147, - 0.0023031109012663364, - 0.022746773436665535, - 0.033290572464466095, - -0.024807363748550415, - 0.011480430141091347, - 0.004843724425882101, - -0.007165233604609966, - -0.03599342331290245, - 0.009031807072460651, - -0.018986865878105164, - 0.012938899919390678, - -0.032755352556705475, - -0.02428552508354187, - 0.013942433521151543, - -0.012958970852196217, - 0.01387553196400404, - 0.02288057841360569, - 0.02496792934834957, - -0.010369852185249329, - 0.015695273876190186, - -0.006442688871175051, - 0.036635685712099075, - -0.004920662380754948, - 0.021315064281225204, - 0.02312142588198185, - -0.029731370508670807, - -0.008014892227947712, - -0.03307648375630379, - 0.023322133347392082, - 0.018317842856049538, - 0.029490523040294647, - -0.0019318031845614314, - -0.01439736969769001, - -0.0029804962687194347, - 0.025262298062443733, - -0.02013758383691311, - 0.004612911958247423, - -0.007693761494010687, - -0.01982983388006687, - -0.010443445295095444, - 0.0060713812708854675, - -0.02954404428601265, - 0.042523086071014404, - -0.014062858186662197, - 0.028848260641098022, - -0.012095930986106396, - 0.04578791558742523, - -0.005763630848377943, - 0.02882150001823902, - -0.023589741438627243, - -0.00923251360654831, - 0.02237212099134922, - 0.03420044109225273, - -0.019214333966374397, - -0.008877932094037533, - -0.01279840525239706, - 0.023977775126695633, - 0.01570865325629711, - 0.025315821170806885, - -0.009653998538851738, - 0.02957080490887165, - 0.0128586171194911, - 0.02401791699230671, - -0.0021157844457775354, - 0.004489142447710037, - -0.03577933460474014, - -0.016658665612339973, - -0.0073257992044091225, - 0.008188838139176369, - -0.001495265867561102, - -0.015962881967425346, - -0.0011699534952640533, - -0.02031153067946434, - 0.004719955381006002, - -0.005843913648277521, - 0.015133294276893139, - -0.005419084336608648, - -0.01125965267419815, - -0.00751981558278203, - 0.011868463829159737, - 0.025904560461640358, - -0.013514259830117226, - -0.007278967648744583, - -0.005194961559027433, - -0.01014238502830267, - -0.013092774897813797, - 0.002699506701901555, - 0.01640443690121174, - -0.012912139296531677, - 0.02482074312865734, - -0.01873263716697693, - -0.0017796005122363567, - 0.009874776005744934, - 0.010771266184747219, - -0.00028788886265829206, - -0.022559447214007378, - 0.0014609784120693803, - 0.003174512879922986, - -0.004469071980565786, - 0.003719766391441226, - -0.022238316014409065, - 0.0033384235575795174, - -0.014651598408818245, - -0.0043854438699781895, - -0.013273411430418491, - -0.001020259689539671, - 0.0372244268655777, - -0.004311851691454649, - -0.013567781075835228, - 0.014651598408818245, - 0.024325666949152946, - 0.015962881967425346, - 0.018210798501968384, - 0.016886133700609207, - -0.014102999120950699, - -0.02031153067946434, - 0.0004085219989065081, - 0.018331222236156464, - 0.008168768137693405, - 0.02957080490887165, - -0.00861701276153326, - 0.01244382280856371, - -0.0044255852699279785, - 0.0014869030565023422, - -0.00015492057718802243, - -0.006700262892991304, - 0.018291082233190536, - 0.002187704434618354, - 0.03195252642035484, - -0.019428420811891556, - 0.06085430830717087, - -0.015909360721707344, - 0.01348749827593565, - -0.01672556810081005, - 0.05726834759116173, - 0.013621303252875805, - 0.008456447161734104, - -0.03679624944925308, - -0.011507190763950348, - 0.010644151829183102, - 0.01834460347890854, - 0.007814185693860054, - -0.004388789180666208, - -0.009098709560930729, - 0.011527261696755886, - -0.03139054775238037, - 0.02213127166032791, - -0.012758263386785984, - 0.024352427572011948, - 0.01962912641465664, - -0.011995578184723854, - 0.026747528463602066, - -0.008944833651185036, - -0.013969195075333118, - 0.01696641743183136, - -0.0045192488469183445, - -0.008396235294640064, - 0.016618525609374046, - -0.018143896013498306, - -0.00030064210295677185, - 0.006044620648026466, - 0.015186816453933716, - 0.01021597720682621, - -0.02775106392800808, - 0.03516383469104767, - 0.00036022692802362144, - 0.01693965494632721, - 0.031015893444418907, - -0.007740593049675226, - -0.013681515119969845, - -0.0032899193465709686, - 0.029089108109474182, - 0.029383478686213493, - 5.06993783346843e-05, - -0.018812919035553932, - 0.022746773436665535, - -0.001598128117620945, - 0.027831345796585083, - 0.015079773031175137, - 0.01633753627538681, - 0.011132538318634033, - 0.0034153610467910767, - 0.010764575563371181, - -0.006345680914819241, - 0.014718499965965748, - 0.02081998810172081, - 0.007018048781901598, - -0.00240848190151155, - -0.0033233703579753637, - -0.0038033942691981792, - 0.02213127166032791, - -0.008904692716896534, - -0.022479163482785225, - -0.03321028873324394, - -0.002821603324264288, - 0.01696641743183136, - -0.002577410079538822, - -0.004261674825102091, - -0.018184037879109383, - -0.001417491934262216, - 0.0014425802510231733, - -0.013045943342149258, - 0.005559579003602266, - 0.021943945437669754, - 0.015467805787920952, - -0.0017394591122865677, - 0.01118606049567461, - -0.045600589364767075, - -0.0070916409604251385, - 0.036100465804338455, - 0.004094419069588184, - -0.007553266827017069, - -0.029463762417435646, - 0.011781490407884121, - -0.023335512727499008, - 0.013567781075835228, - -0.011942056007683277, - -0.019401660189032555, - -0.0017026629066094756, - 0.010757885873317719, - 0.004622946958988905, - 0.006014514248818159, - 0.014437510631978512, - -0.030694764107465744, - -0.006104832515120506, - 0.02258620783686638, - 0.002420189790427685, - -0.0011063963174819946, - -0.03286239877343178, - -0.028848260641098022, - 0.05170207843184471, - 0.01660514436662197, - 0.00911208987236023, - 0.0007350887171924114, - -0.01341390609741211, - -0.018076995387673378, - 0.01336707454174757, - 0.017126983031630516, - -0.008596941828727722, - 0.006268742959946394, - -0.012256496585905552, - -0.0031092832796275616, - -0.009386389516294003, - 0.009045187383890152, - 0.015574849210679531, - 0.0028299661353230476, - -0.010610700584948063, - -0.031497590243816376, - -0.02132844552397728, - -0.0030708143021911383, - -0.0019468561513349414, - 0.03205956891179085, - 0.0034755731467157602, - 0.007051499560475349, - 0.01684599183499813, - -0.010296260006725788, - -0.03572581335902214, - -0.033022962510585785, - 0.007546576671302319, - -0.012490654364228249, - -0.005940922070294619, - -0.0014400715008378029, - 0.017193883657455444, - -0.015280479565262794, - -0.003239742713049054, - 0.005492676515132189, - 0.0009190699784085155, - -0.014076238498091698, - 0.021194640547037125, - -0.014089618809521198, - -0.005994443781673908, - 0.0244327113032341, - -0.008295881561934948, - 0.04525269940495491, - 0.013942433521151543, - -0.012751573696732521, - 0.005492676515132189, - 0.02799191139638424, - 0.0009667378617450595, - -0.017287546768784523, - -0.029196152463555336, - -0.0019936878234148026, - 0.019869975745677948, - 0.010537108406424522, - -0.02470031939446926, - -0.018210798501968384, - -0.0025539943017065525, - -0.008904692716896534, - 0.023670025169849396, - 0.003502334002405405, - 0.030721524730324745, - 0.023322133347392082, - 0.012885377742350101, - -0.009212443605065346, - 0.008061723783612251, - 0.03136378526687622, - -0.012624459341168404, - 0.025289060547947884, - 0.02013758383691311, - -0.02874121628701687, - 0.04621608927845955, - -0.001374005456455052, - -0.0008500770200043917, - -0.007968060672283173, - -0.008891312405467033, - -0.00148021278437227, - -0.0072722770273685455, - -0.023991156369447708, - 0.006171735003590584, - 0.0036394838243722916, - -0.024298906326293945, - -0.03599342331290245, - 0.01353432983160019, - -0.004151286091655493, - -0.02850036881864071, - -0.023843970149755478, - -0.02171647734940052, - -0.020204486325383186, - -0.006285468582063913, - -0.009486742317676544, - -0.006499555893242359, - -0.008984975516796112, - -0.04163997620344162, - -0.0010403303895145655, - 0.03494974970817566, - -0.0006180097698234022, - 0.007044809404760599, - -0.009105399250984192, - 0.012430442497134209, - -0.008737437427043915, - -0.011132538318634033, - 0.0008329332922585309, - 0.01628401316702366, - -0.01176811009645462, - -0.025141874328255653, - 0.022546065971255302, - -0.00957371573895216, - -0.010149074718356133, - -0.02482074312865734, - -0.0009884811006486416, - 0.0027128872461616993, - -0.006148319225758314, - 0.008162077516317368, - -0.004234913736581802, - -0.024901026859879494, - 0.007626859471201897, - 0.006108177825808525, - -0.005813807714730501, - 0.0017578572733327746, - -0.02751021459698677, - 0.010583939962089062, - 0.028901781886816025, - -0.0002538104890845716, - 0.006666811648756266, - 0.01348749827593565, - 0.025650331750512123, - -0.022425642237067223, - 0.03599342331290245, - -0.015320620499551296, - 0.01118606049567461, - 0.02850036881864071, - -0.02028477005660534, - 0.01113922894001007, - -0.023348893970251083, - 0.00853004027158022, - 0.018411505967378616, - -0.03644835948944092, - 0.0009642290533520281, - 0.03382578864693642, - -0.019910117611289024, - 0.015347382053732872, - -0.019602365791797638, - 0.04602876305580139, - -3.057642970816232e-05, - -0.009580405429005623, - 0.019856594502925873, - -0.0048002381809055805, - -0.01980307325720787, - -0.019200952723622322, - -0.007727212738245726, - -0.010463515296578407, - 0.022091131657361984, - -0.0238038282841444, - 0.0011691172840073705, - -0.042763933539390564, - -0.015722034499049187, - -0.0032029463909566402, - 0.005238448269665241, - -0.013032563030719757, - -0.00048671403783373535, - -0.017555156722664833, - 0.025824278593063354, - -0.008128626272082329, - -0.01902700588107109, - 0.007941300049424171, - -0.05392323434352875, - -0.00901842676103115, - 0.002313146134838462, - 0.01597626321017742, - 0.029490523040294647, - -0.0028366565238684416, - 0.006442688871175051, - -0.0011247944785282016, - 0.013032563030719757, - 0.007406081538647413, - -0.05146123096346855, - 0.01027618907392025, - -0.014571315608918667, - 0.020953793078660965, - 0.011821632273495197, - 0.03757231682538986, - 0.0011038875672966242, - 0.006389167159795761, - -0.02404467761516571, - -0.014450890943408012, - 0.022037608548998833, - 0.011219511739909649, - -0.0032648309133946896, - -0.032139852643013, - -0.0038870221469551325, - 0.01655162312090397, - -0.010577249340713024, - 0.02009744383394718, - 0.0021074216347187757, - 0.016645286232233047, - 0.022679870948195457, - -0.011962126940488815, - 0.0004108217835891992, - -0.03037363290786743, - -0.02515525557100773, - 0.023108044639229774, - 0.0008019910310395062, - 0.008376164361834526, - -0.013728346675634384, - -0.0027680816128849983, - -0.013808629475533962, - 0.03414691984653473, - -0.005904125515371561, - 0.001171626034192741, - -0.017421351745724678, - 0.003572581335902214, - -0.0334511362016201, - 0.03307648375630379, - -0.0028533819131553173, - -0.022746773436665535, - -0.011400147341191769, - 0.022572826594114304, - -0.002625914290547371, - -0.004826999269425869, - 0.028420086950063705, - -0.0006614962476305664, - -0.00266605569049716, - 0.016257252544164658, - -0.01834460347890854, - -0.0006054655532352626, - 0.01278502494096756, - -0.0013196473009884357, - -0.016805851832032204, - -0.010690983384847641, - -0.002493782201781869, - -0.006870863493531942, - -0.02201084792613983, - -0.03179195895791054, - -0.016110068187117577, - 0.01691289432346821, - -0.0014685048954561353, - -0.002555666957050562, - 0.044075217097997665, - -0.022144652903079987, - 0.003104265546426177, - 0.012617768719792366, - -0.020110823214054108, - 0.01233677938580513, - 0.01968264952301979, - 0.03824134171009064, - 0.027429932728409767, - -0.01720726490020752, - -0.045386504381895065, - -0.05009642243385315, - -0.005783701781183481, - -0.016524862498044968, - 0.009908227249979973, - 0.025703852996230125, - -0.005653242114931345, - -0.013039253652095795, - -0.010015270672738552, - 0.014718499965965748, - 0.005690038204193115, - -0.010115623474121094, - 0.03468213975429535, - -0.010416683740913868, - -0.024111580103635788, - 0.004392134491354227, - -0.0022144652903079987, - -0.01066422276198864, - 0.026453159749507904, - -0.01015576533973217, - -0.004221533425152302, - -0.004649708047509193, - -0.026279212906956673, - 0.007138472516089678, - 0.03751879557967186, - 0.0029186117462813854, - 0.037625838071107864, - -0.004408859647810459, - 0.003299954580143094, - 0.006884243804961443, - -0.0019535464234650135, - -0.0014425802510231733, - 0.0282327588647604, - 0.0035658911801874638, - 0.03272859379649162, - 0.008523349650204182, - 0.0004158394585829228, - -0.008931453339755535, - 0.010503657162189484, - -0.01863897405564785, - -0.015574849210679531, - -0.007620168849825859, - 0.01788966730237007, - 0.006044620648026466, - -0.021141119301319122, - 0.01655162312090397, - 0.009105399250984192, - 0.012744883075356483, - -0.007258896715939045, - 0.007660310249775648, - -0.014812163077294827, - -0.018438266590237617, - -0.016083307564258575, - 0.009928297251462936, - 0.012985731475055218, - -0.019441800191998482, - -0.020619280636310577, - -0.012838546186685562, - -0.021114356815814972, - 0.004666433669626713, - -0.007185304071754217, - 0.0006125739309936762, - -0.019254473969340324, - -0.011835012584924698, - -0.009941677562892437, - -0.007840946316719055, - 0.012437133118510246, - -0.0053053502924740314, - -0.0372779481112957, - -0.00043946431833319366, - 0.05084572732448578, - -0.03856246918439865, - 0.03168491646647453, - 0.015173436142504215, - 0.004418895114213228, - -0.009761041961610317, - -0.01338045485317707, - 0.003552510868757963, - -0.039713189005851746, - 0.027858106419444084, - -0.005144784692674875, - -0.004368718713521957, - -0.01125965267419815, - -0.021462248638272285, - 0.029089108109474182, - -0.010088862851262093, - -0.01131986454129219, - -0.012731502763926983, - 0.003428741591051221, - -0.006158354226499796, - -0.023496078327298164, - -0.019227713346481323, - 0.01839812472462654, - -0.004572770558297634, - 0.015936121344566345, - 0.035859618335962296, - -0.048945702612400055, - -0.026453159749507904, - 0.013507569208741188, - 0.017755864188075066, - -0.008670534938573837, - -0.001517009106464684, - -0.04779498651623726, - -0.007713832426816225, - 0.018598832190036774, - -0.028607413172721863, - 0.017140362411737442, - 0.0020672802347689867, - -0.018291082233190536, - -0.027965150773525238, - 0.001881626434624195, - 0.017702341079711914, - -0.017876287922263145, - 0.008061723783612251, - 0.007218755315989256, - -0.007218755315989256, - 0.013166368007659912, - -0.007178613916039467, - 0.00014269001258071512, - 0.011360006406903267, - 0.006877553649246693, - -0.038696274161338806, - 0.021930566057562828, - 0.008690605871379375, - 0.02060590125620365, - 0.00427840044721961, - -0.014290325343608856, - -0.02431228570640087, - -0.004438966047018766, - -0.04375408589839935, - -0.00809517502784729, - -0.02401791699230671, - 0.0013781868619844317, - 0.01344066672027111, - 0.007111711893230677, - 0.003144406946375966, - 0.02407143823802471, - 0.01386215165257454, - 0.008884621784090996, - -0.01995025761425495, - -0.014464271254837513, - 0.0033718745689839125, - -0.012029028497636318, - 0.03189900517463684, - -0.025650331750512123, - -0.029356718063354492, - -0.016979796811938286, - -0.001683428417891264, - -0.030989132821559906, - -0.011614235118031502, - 0.003074159612879157, - 0.01085823867470026, - -0.00030085115577094257, - -0.0034003080800175667, - -0.0024168447125703096, - -0.016511481255292892, - 0.016805851832032204, - 0.013253340497612953, - -0.01720726490020752, - -0.019856594502925873, - 0.02021786756813526, - 0.006349025759845972, - -0.0397934727370739, - -0.013594541698694229, - 0.008188838139176369, - -0.002717904979363084, - -0.02276015281677246, - -0.018197419121861458, - -0.004837034270167351, - -0.0025539943017065525, - -0.008242360316216946, - 0.02276015281677246, - 0.023723546415567398, - -0.00843637716025114, - -0.004873830825090408, - 0.005188271403312683, - -0.0118885338306427, - -0.006660121493041515, - 0.005071192514151335, - -0.02021786756813526, - -0.0056097558699548244, - -0.0024553134571760893, - -0.009413150139153004, - 0.0036628996022045612, - -0.0021927219349890947, - 0.021877042949199677, - 0.00010777538409456611, - -0.0028366565238684416, - -0.0359666608273983, - -0.022934099659323692, - 0.00900504644960165, - 0.031738437712192535, - 0.003723111469298601, - -0.027911629527807236, - 0.01490582711994648, - 0.02957080490887165, - 0.014357227832078934, - -0.014143140986561775, - 0.0018147241789847612, - 0.009306106716394424, - -0.016471339389681816, - -0.021609434857964516, - -0.0071317823603749275, - -0.01936151832342148, - -0.013019182719290257, - -0.009934987872838974, - -0.010898380540311337, - -0.02957080490887165, - -0.008315952494740486, - 0.1745881736278534, - -0.008235669694840908, - 0.005318730603903532, - 0.03331733122467995, - 0.007600098382681608, - -0.001884971628896892, - 0.034842703491449356, - 0.007533195894211531, - 0.011400147341191769, - 0.03703710064291954, - -0.0046296375803649426, - -0.024780603125691414, - -0.01450441312044859, - 0.007185304071754217, - -0.0008325151866301894, - -0.019615747034549713, - -0.048704855144023895, - -0.03527087718248367, - -0.04420902207493782, - 0.05081896856427193, - 0.02799191139638424, - 0.011567403562366962, - -0.011948746629059315, - -0.003910438157618046, - 0.022505924105644226, - -0.004944078158587217, - -0.016685428097844124, - 0.0019568915013223886, - -0.00372645677998662, - -0.005643206648528576, - -0.02673414908349514, - -0.001193369273096323, - -0.02455313503742218, - -0.01861221343278885, - -0.020177725702524185, - -0.0016064908122643828, - -0.0027831345796585083, - -0.009279345162212849, - 0.01542766485363245, - 0.02799191139638424, - 0.0014542881399393082, - 0.006559767760336399, - 0.011005423963069916, - -0.02828628197312355, - -0.0014425802510231733, - 0.026038365438580513, - 0.0017996712122112513, - 0.002132510067895055, - 0.0020605900790542364, - -0.002493782201781869, - -0.025904560461640358, - -0.0036361385136842728, - 0.029089108109474182, - 0.02016434632241726, - 0.005419084336608648, - -0.014437510631978512, - 0.04161321371793747, - -0.0026024985127151012, - -0.003793359035626054, - 0.014236804097890854, - -0.029972217977046967, - -0.0021977396681904793, - -0.014611456543207169, - 0.022265076637268066, - 0.002901886124163866, - 0.028420086950063705, - -0.007345869671553373, - 0.004960803780704737, - -0.014798782765865326, - -0.007218755315989256, - -0.019481942057609558, - -0.02067280188202858, - -0.042790696024894714, - 0.004790202714502811, - -0.023830590769648552, - -0.0372244268655777, - 0.03982023522257805, - -0.027831345796585083, - 0.027296127751469612, - 0.017849527299404144, - 0.00017823184316512197, - 0.02673414908349514, - -0.015467805787920952, - 0.015454425476491451, - -0.0068909344263374805, - -0.013206508941948414, - 0.006897624582052231, - 0.012095930986106396, - -0.0016993177123367786, - -0.016230491921305656, - 0.01936151832342148, - 0.009781112894415855, - -0.004228223580867052, - -0.012958970852196217, - 0.007205375004559755, - -0.020271388813853264, - -0.020806606858968735, - -0.004746716469526291, - -0.01142690796405077, - -0.020084062591195107, - -0.003649519057944417, - 0.07252206653356552, - 0.02130168490111828, - -0.02775106392800808, - -0.013280101120471954, - -0.008175457827746868, - 0.007165233604609966, - 0.0038736416026949883, - 0.01720726490020752, - -0.010563869029283524, - 0.01643119938671589, - -0.0009809546172618866, - 0.009761041961610317, - 0.0022947480902075768, - 0.0012686343397945166, - -0.0025690472684800625, - -0.0025841002352535725, - -0.013246649876236916, - 0.021381966769695282, - 0.007305728271603584, - -0.01667204685509205, - 0.01672556810081005, - 0.019548844546079636, - 0.015467805787920952, - 0.007084950804710388, - -0.010302950628101826, - -0.015253718942403793, - -0.014731881208717823, - -0.007633549626916647, - -0.0077874246053397655, - 0.04557383060455322, - -0.006345680914819241, - -0.002381721045821905, - 0.01643119938671589, - -0.013567781075835228, - 0.024232003837823868, - 1.689543751126621e-05, - -0.009379698894917965, - -0.009934987872838974, - -0.03489622473716736, - 0.026453159749507904, - -0.014317086897790432, - 0.013701586052775383, - -0.006225256714969873, - 0.027309508994221687, - 0.001369824050925672, - 0.025342581793665886, - -0.014986108988523483, - -0.008262431249022484, - -0.035859618335962296, - -0.024566514417529106, - -0.017796004191040993, - 0.0010645824950188398, - -0.02748345397412777, - 0.029597565531730652, - 0.00013202746049501002, - -0.03425396606326103, - -0.021381966769695282, - -0.004867140669375658, - 0.037411753088235855, - -0.009807873517274857, - -0.0008011547615751624, - 0.02518201619386673, - -0.04463719576597214, - 0.008376164361834526, - -0.009580405429005623, - -0.16902190446853638, - -0.0056264810264110565, - 0.005104643292725086, - -0.018839679658412933, - 0.014196662232279778, - 0.00639920262619853, - 0.02183690294623375, - 0.011119158007204533, - -0.009674068540334702, - 0.023161567747592926, - 0.024325666949152946, - -0.006526316981762648, - 0.003539130324497819, - -0.001292886445298791, - 0.008944833651185036, - 0.002436915412545204, - -0.03877655789256096, - 0.009533573873341084, - 0.017541775479912758, - 0.034601856023073196, - 0.037144143134355545, - -0.008249050006270409, - 0.0020221213344484568, - 0.0024469506461173296, - 0.010195906274020672, - -0.005261864047497511, - -0.028072195127606392, - 0.03824134171009064, - -0.016016405075788498, - -0.016899514943361282, - -0.01711360178887844, - 0.010222667828202248, - 0.05480634421110153, - 0.010102243162691593, - -0.02488764561712742, - -0.005352181848138571, - -0.019575605168938637, - 0.0027680816128849983, - 0.0034220514353364706, - 0.04062306135892868, - 0.005312040448188782, - 0.00791453942656517, - 0.02413834072649479, - -0.003575926646590233, - -0.03425396606326103, - -0.005419084336608648, - 0.016471339389681816, - 0.0047600967809557915, - 0.024392569437623024, - 0.0018866441678255796, - 0.025342581793665886, - -0.036635685712099075, - -0.0034822633024305105, - 0.011801561340689659, - -0.01010893378406763, - 0.0055160922929644585, - -0.009653998538851738, - -0.008596941828727722, - -0.014772022143006325, - 0.01228994783014059, - 0.007212065160274506, - -0.02983841486275196, - 0.00031924928771331906, - -0.01175472978502512, - -0.003769943257793784, - -0.008162077516317368, - 0.013714966364204884, - 0.005268554203212261, - -0.012356850318610668, - 0.010195906274020672, - -0.020632661879062653, - -0.021435488015413284, - 0.007412772160023451, - -0.017019938677549362, - 0.013146297074854374, - 0.008376164361834526, - -0.014544554054737091, - -0.008489898405969143, - 0.034869465976953506, - -0.02106083557009697, - -0.004268364980816841, - 0.05673312768340111, - -0.020084062591195107, - -0.01463821716606617, - 0.005940922070294619, - -2.710064836719539e-05, - -0.03781316429376602, - 0.010476896539330482, - 0.019040387123823166, - 0.007084950804710388, - 0.021368585526943207, - -0.014143140986561775, - -0.020030541345477104, - -0.026653865352272987, - 0.015360762365162373, - 0.016083307564258575, - -0.007653620094060898, - -0.012584317475557327, - 0.0026342771016061306, - -0.012631149031221867, - 0.006813996471464634, - -0.012751573696732521, - -0.039713189005851746, - 0.018050232902169228, - 0.00923251360654831, - 0.0027898247353732586, - -0.003306644968688488, - 0.015106533654034138, - 0.031711678951978683, - -0.005258518736809492, - -0.021729858592152596, - -0.0035190596245229244, - 0.013480808585882187, - 0.008657154627144337, - 0.013507569208741188, - 0.017407972365617752, - -0.023937633261084557, - -0.011219511739909649, - 0.021221401169896126, - -0.04172025993466377, - 0.03007926233112812, - 0.013574471697211266, - -0.005475951358675957, - 0.0056097558699548244, - -0.013601232320070267, - -0.02159605361521244, - -0.07375306636095047, - -0.01667204685509205, - 0.0501231849193573, - 0.03797373175621033, - 0.014557935297489166, - 0.012878688052296638, - -0.015842458233237267, - 0.02440594881772995, - -0.015280479565262794, - 0.021970706060528755, - -0.008657154627144337, - -0.026814430952072144, - -0.01553470827639103, - 0.007292347960174084, - 0.003973994869738817, - -0.0031527697574347258, - -0.03441452980041504, - -0.03280887380242348, - -0.022291837260127068, - 0.018478408455848694, - 0.007499745115637779, - -0.00349898892454803, - -0.00591416098177433, - -0.019963638857007027, - 0.00584725895896554, - 0.0013639701064676046, - -0.024512993171811104, - 0.02508835308253765, - 0.02407143823802471, - -0.0066166347824037075, - -0.0054157390259206295, - -0.014437510631978512, - 0.02709542028605938, - -0.025489766150712967, - 0.008503278717398643, - -0.0009015081450343132, - -0.021729858592152596, - -0.01113922894001007, - 0.009319487027823925, - 0.006750439293682575, - -0.011955436319112778, - 0.0005205833003856242, - -0.00901842676103115, - -0.019254473969340324, - -0.007653620094060898, - -0.024860884994268417, - -0.026694007217884064, - -0.014076238498091698, - 0.018572071567177773, - -0.011467049829661846, - -0.022599589079618454, - -0.005258518736809492, - 0.00701135816052556, - 0.0053856330923736095, - 0.01885306090116501, - -0.007312418427318335, - 0.0019251129124313593, - -0.02084674872457981, - -0.018799539655447006, - -0.0003888694627676159, - -0.012657910585403442, - 0.005328766070306301, - -0.014571315608918667, - 0.0462963730096817, - 0.0013229924952611327, - -0.0024001190904527903, - -0.054110560566186905, - -0.04027516767382622, - 0.013005802407860756, - -0.010129004716873169, - 0.0021960672456771135, - 0.007740593049675226, - 0.017407972365617752, - 0.004492487758398056, - -0.0224925447255373, - -0.006870863493531942, - -0.028473608195781708, - -0.005686693359166384, - 0.01788966730237007, - -0.006526316981762648, - -0.039204731583595276, - -0.012972351163625717, - 0.002773099346086383, - -0.005810462404042482, - 0.056679606437683105, - 0.024834124371409416, - -0.014651598408818245, - -0.00693776598200202, - 0.003214654279872775, - 0.007700451649725437, - 0.018384745344519615, - 0.02957080490887165, - 0.0160966869443655, - -0.012376920320093632, - -0.010517037473618984, - 0.011339935474097729, - 0.003746527247130871, - -0.01565513201057911, - 0.002448623301461339, - 0.0026677281130105257, - -0.0031979286577552557, - -0.005084572825580835, - -0.04190758615732193, - 0.02831304259598255, - 0.008115245960652828, - -0.01175472978502512, - 0.0015186816453933716, - 0.003796704113483429, - 0.004382099024951458, - 0.008737437427043915, - 0.003266503568738699, - 0.0016223801067098975, - -0.03385255113244057, - -0.0027580461464822292, - -0.008336023427546024, - -0.010476896539330482, - -0.006185115315020084, - -0.017528396099805832, - 0.0025974807795137167, - 0.0052049970254302025, - 0.009968439117074013, - 0.018478408455848694, - -0.02081998810172081, - -0.01124627236276865, - -0.0034488122910261154, - 0.011286413297057152, - -0.02685457281768322, - 0.01582907885313034, - -0.012577627785503864, - 0.02532920055091381, - -0.023977775126695633, - -0.003729801857843995, - 0.03133702650666237, - -0.010470205917954445, - 0.006225256714969873, - 0.02491440623998642, - -0.017648819833993912, - -0.010517037473618984, - -0.006074726581573486, - 0.03976671025156975, - 0.02586441859602928, - 0.040007561445236206, - -0.014731881208717823, - -0.02225169725716114, - 0.026573583483695984, - -0.01616358943283558, - -0.01851855032145977, - -0.002194394590333104, - -0.030480675399303436, - 0.000493404280859977, - -0.0013832044787704945, - -0.006884243804961443, - 0.019856594502925873, - 0.015133294276893139, - 0.011012114584445953, - -0.018478408455848694, - 0.023723546415567398, - -0.0031544421799480915, - 0.00923251360654831, - -0.002843346679583192, - 0.04552030563354492, - -0.02801867201924324, - 0.017822766676545143, - -0.007359249982982874, - 0.01977631263434887, - -0.022117892280220985, - 0.000980118289589882, - -0.008811029605567455, - -0.020204486325383186, - -0.0032163269352167845, - 0.0020388467237353325, - -0.04394141212105751, - -0.026413017883896828, - 0.0031828756909817457, - -0.0044255852699279785, - 0.0009458308923058212, - -0.010175836272537708, - -0.0035458204802125692, - 0.009312796406447887, - 0.014210043475031853, - 0.0022077751345932484, - 0.024392569437623024, - 0.01514667458832264, - 0.02850036881864071, - -0.002684453735128045, - 0.043807610869407654, - 0.017929809167981148, - -0.004485797602683306, - -0.01554808858782053, - -0.010818097740411758, - 0.02726936712861061, - 0.0021007314790040255, - 0.0048303441144526005, - 0.02028477005660534, - 0.008884621784090996, - -0.007660310249775648, - 0.030025741085410118, - 0.005061157047748566, - 0.026533441618084908, - -0.006971216760575771, - 0.010102243162691593, - 0.008563491515815258, - 0.007406081538647413, - -0.0058606392703950405, - 0.029436999931931496, - -0.00487717567011714, - -0.028634173795580864, - 0.017006557434797287, - -0.025396103039383888, - -0.033799029886722565, - -0.019990399479866028, - 0.004057622980326414, - 0.013373764231801033, - -0.018946724012494087, - -0.016324155032634735, - 0.02338903583586216, - -0.0010779629228636622, - 0.003085867501795292, - -0.008509969338774681, - -0.03417368233203888, - -0.01336707454174757, - 0.021368585526943207, - 0.0030992478132247925, - 0.0023215089458972216, - -0.02321508899331093, - 0.016618525609374046, - 0.003790013724938035, - -0.011012114584445953, - 0.01386215165257454, - -0.01113922894001007, - -0.0011699534952640533, - -0.012524105608463287, - 0.0024218622129410505, - -0.0036662446800619364, - -0.014865685254335403, - -0.04883866012096405, - -0.009212443605065346, - -0.023496078327298164, - 0.02290733903646469, - 0.00424829451367259, - 0.016832612454891205, - 0.11143242567777634, - 0.015253718942403793, - -0.018692495301365852, - 0.02231859788298607, - -0.020565759390592575, - 0.0041044545359909534, - 0.01956222578883171, - -0.009312796406447887, - -0.005479296203702688, - -0.009386389516294003, - 0.028875021263957024, - -0.02234536036849022, - 0.026265833526849747, - -0.026038365438580513, - -0.0067972708493471146, - -0.033263809978961945, - 0.0173276886343956, - 0.006703607738018036, - -0.004709919914603233, - 0.012417062185704708, - 0.02634611539542675, - -0.023977775126695633, - 0.014852304942905903, - 0.023562980815768242, - -0.03527087718248367, - -0.019816454499959946, - 0.003917128313332796, - -0.0334511362016201, - -0.02094041183590889, - 0.004833689425140619, - -0.00901842676103115, - 0.00024189353280235082, - -0.07080936431884766, - -0.05368238314986229, - 0.018505169078707695, - -0.009011736139655113, - -0.0022328633349388838, - -0.014437510631978512, - 0.008764198049902916, - 0.00478016771376133, - -0.008576871827244759, - 0.03960614651441574, - -0.008857861161231995, - 0.010349782183766365, - 0.0014735226286575198, - 0.005091262981295586, - -0.009640617296099663, - -0.014932587742805481, - -0.014972728677093983 - ], - "sparse": "SparseEmbedding(values=array([1.6434199 , 1.6434199 , 1.6434199 , 1.6434199 , 1.88140972,\n 1.6434199 , 1.6434199 , 1.6434199 , 1.6434199 , 1.6434199 ]), indices=array([2077811411, 1852771076, 472906682, 1145495814, 164058840,\n 715386164, 1515684580, 819332622, 1841900287, 231980230]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 33, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 11 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000034.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000034.json deleted file mode 100644 index dd5b6b78363841434d40c3c9e86a2b08cbc01e87..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000034.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000034", - "content": "ohne dem Verschattungseffekt durch B\u00e4ume (eigene Darstellung und Berechnung auf Abbildung 18: Vergleichsbild Baumbepflanzung im Stra\u00dfenraum (von links nach rechts:", - "embedding": { - "dense": [ - -0.004079671576619148, - -0.004256054293364286, - 0.009158845990896225, - -0.006274659186601639, - 0.013718671165406704, - 0.01759909652173519, - -0.029606198891997337, - 0.0012052833335474133, - -0.026653418317437172, - -0.0021835551597177982, - -0.0057651083916425705, - 0.01873578503727913, - -0.0180825162678957, - 0.03556402400135994, - -0.009681462310254574, - 0.017390049993991852, - 0.025373009964823723, - -0.0005781440413556993, - 0.02541220560669899, - 0.013823194429278374, - -0.007022653240710497, - 0.034100696444511414, - 0.0124251963570714, - -0.016109639778733253, - -0.002023504115641117, - -0.013548821210861206, - 0.030233338475227356, - -0.03684443235397339, - 0.010132218711078167, - 0.011575945653021336, - -0.007042251527309418, - -0.03250671923160553, - -0.00493545550853014, - -0.02674487605690956, - -0.011641272343695164, - -0.03342129662632942, - -0.00446836743503809, - -0.02767251990735531, - 0.028534837067127228, - 0.001842221594415605, - 0.007493007928133011, - -0.004595755133777857, - -0.020773988217115402, - -0.016958890482783318, - 0.008616631850600243, - 0.007120643742382526, - 0.014136764220893383, - -0.0009268269059248269, - -0.008107081986963749, - 0.01484229601919651, - 0.020316699519753456, - 0.0073427557945251465, - -0.017716683447360992, - 0.011216646991670132, - -0.016083508729934692, - 0.020172979682683945, - -0.007329690270125866, - 0.02722829580307007, - -0.005239225924015045, - -0.00746687687933445, - -0.024719739332795143, - -0.001271426910534501, - -0.021858416497707367, - 0.0030099418945610523, - -0.045284681022167206, - -0.017390049993991852, - -0.002194987377151847, - 0.0020773988217115402, - -0.0022488823160529137, - 0.0013645178405568004, - 0.03376099839806557, - 0.02725442685186863, - -0.0010819785529747605, - -0.020264437422156334, - 0.016749843955039978, - -0.01722019910812378, - -0.014698576182126999, - 0.0044618346728384495, - -0.004550026264041662, - 0.014241287484765053, - 0.02707151137292385, - -0.024654412642121315, - -0.040659528225660324, - 0.04499724134802818, - 0.02511170133948326, - -0.0019549105782061815, - -0.005464604124426842, - 0.011902580969035625, - -0.013483494520187378, - -0.0011040264507755637, - 0.024745870381593704, - 0.015208126977086067, - 0.001966343028470874, - 0.007747782859951258, - -0.0009162112837657332, - -0.004781936760991812, - -0.0026228793431073427, - 0.03185344859957695, - 0.012118159793317318, - -0.023517722263932228, - -0.01537797786295414, - 0.018213169649243355, - -0.021205145865678787, - 0.0018732519820332527, - -0.026379045099020004, - -0.005415609106421471, - 0.016488537192344666, - 0.01988554187119007, - 0.010556844063103199, - -0.026405176147818565, - -0.007499540224671364, - 0.029318761080503464, - -0.021597107872366905, - -0.013365905731916428, - 0.02445843070745468, - -0.025307683274149895, - 0.013378971256315708, - 0.014241287484765053, - -0.005141235422343016, - 0.009681462310254574, - 0.007414615247398615, - -0.005196763202548027, - 0.01462018396705389, - -0.02499411255121231, - 0.02499411255121231, - 0.01974182203412056, - 0.0002882554254028946, - -0.002484059426933527, - -0.03428361192345619, - -0.010511115193367004, - -0.01233373861759901, - 0.03702734783291817, - 0.003341476432979107, - -0.004876661114394665, - -0.014149829745292664, - 0.014424202963709831, - -0.014424202963709831, - 0.020525746047496796, - -0.04335100203752518, - -0.04653896018862724, - -0.0004572890466079116, - 0.0016405244823545218, - -0.025987083092331886, - -0.009955835528671741, - 0.00881914608180523, - 0.02606547623872757, - -0.0012216150062158704, - 0.030651431530714035, - -0.009831714443862438, - -0.02410566620528698, - -0.004533694125711918, - -0.01906242035329342, - 0.021544847637414932, - -0.018383020535111427, - 0.003076902125030756, - -0.024288581684231758, - -0.015861397609114647, - 0.030651431530714035, - 0.0007622845005244017, - 0.004781936760991812, - 0.03339516744017601, - 0.0002919300750363618, - 0.007127176504582167, - -0.018369954079389572, - 0.014567922800779343, - 0.0008819145732559264, - 0.003860826138406992, - 0.0126603739336133, - 0.006647022906690836, - -0.01923227123916149, - 0.014659380540251732, - 0.0029397152829915285, - -0.015234258025884628, - 0.022158920764923096, - -0.0010321667650714517, - 0.01567848213016987, - -0.0023452395107597113, - 0.014071437530219555, - -0.012830223888158798, - -0.03660925477743149, - -0.04904751852154732, - 0.01579607091844082, - 0.020826250314712524, - 0.018866440281271935, - -0.01834382303059101, - -0.015560893341898918, - 0.013254850171506405, - 0.02529461681842804, - -0.004412839189171791, - -0.007205568719655275, - -0.012209617532789707, - 0.020172979682683945, - 0.019585037603974342, - -0.0029740119352936745, - -0.6396820545196533, - -0.017285525798797607, - -0.002660442376509309, - -0.007290494162589312, - 0.018592067062854767, - 0.021976005285978317, - 0.01573074422776699, - -0.009374425746500492, - 0.00023742283519823104, - 0.02356998436152935, - 3.779269536607899e-05, - -0.001089327852241695, - 0.015848331153392792, - -0.002755166497081518, - 0.029553938657045364, - -0.001750763738527894, - 0.005026913248002529, - 0.0013187889708206058, - 0.029501676559448242, - 0.010550311766564846, - 0.003089967416599393, - 0.02641824074089527, - 0.0052620903588831425, - -0.004801535047590733, - 0.01472470723092556, - 0.013522690162062645, - 0.019127747043967247, - -0.006885466631501913, - 0.009949303232133389, - 0.015090538188815117, - -0.018840309232473373, - 0.030599169433116913, - -0.016514668241143227, - 0.022211182862520218, - 0.038098711520433426, - 0.003606050740927458, - -0.011778458952903748, - 0.009629201143980026, - -0.014136764220893383, - 0.021388061344623566, - -0.04429171234369278, - -0.021179014816880226, - 0.001501704566180706, - -0.0022276509553194046, - -0.027594128623604774, - 0.008139745332300663, - 0.028404181823134422, - -0.01742924563586712, - -0.00862316507846117, - -0.01439807191491127, - 0.03444039821624756, - 0.007101045455783606, - -0.012242280878126621, - 0.004670881200581789, - 0.017742814496159554, - 0.0030475049279630184, - 0.030808215960860252, - -0.014659380540251732, - -4.322810491430573e-05, - 0.006735214497894049, - -0.003524392144754529, - 0.01686743274331093, - -0.0057487767189741135, - -0.027620257809758186, - -0.014528726227581501, - 0.039588164538145065, - -0.03211475536227226, - 0.0002555919054429978, - 0.014528726227581501, - -0.034597184509038925, - 0.00021517083223443478, - 0.01193524431437254, - 0.03182731941342354, - -0.015012145973742008, - 0.025634316727519035, - -0.0065816957503557205, - 0.039823342114686966, - -0.007218634244054556, - -0.026143867522478104, - 0.0288222748786211, - -0.0019369457149878144, - -0.01612270623445511, - -0.016253359615802765, - 0.0013106231344863772, - 0.028508706018328667, - -0.03148761764168739, - -0.008910603821277618, - -0.009198042564094067, - -0.024092599749565125, - -0.0010419657919555902, - 0.012379467487335205, - 0.013339774683117867, - -0.021766958758234978, - -0.021388061344623566, - -0.019101615995168686, - 0.026287587359547615, - -0.006339985877275467, - 0.0331338569521904, - 0.003472130512818694, - -0.02466747723519802, - -0.010380461812019348, - 0.005948023870587349, - 0.026013214141130447, - 0.004014344420284033, - 0.009550807997584343, - 0.016397079452872276, - -0.006931195501238108, - -0.016619190573692322, - 0.04165250062942505, - -0.02487652376294136, - 0.004030676558613777, - -0.02211972512304783, - -0.0005340483039617538, - -0.0006471456727012992, - 0.004582689609378576, - -0.028691621497273445, - 0.02387048862874508, - -0.018069449812173843, - -0.014019175432622433, - 0.006944261025637388, - -0.01100106816738844, - -0.024027273058891296, - 0.03072982467710972, - -0.012621177360415459, - 0.02137499675154686, - 0.03232380375266075, - -0.007773913908749819, - -0.012046299874782562, - -0.0015890795039013028, - 0.007858838886022568, - 0.0005740610649809241, - 0.03334290534257889, - 0.012190019711852074, - -0.00747994240373373, - 0.04016304388642311, - 0.0012975577265024185, - 0.007708586752414703, - -0.011059862561523914, - -0.009857845492661, - -0.03796805813908577, - -0.015534762293100357, - 0.006457574665546417, - 0.008368389680981636, - -0.020107652992010117, - -0.019493578001856804, - -0.022616209462285042, - 0.0025444868952035904, - 0.015404107980430126, - -0.0471399687230587, - 0.025333812460303307, - -0.01058297511190176, - -0.01671064831316471, - -0.02520315907895565, - -0.01748150773346424, - -0.0027257693000137806, - -0.0037465039640665054, - -0.007558334618806839, - -0.013150326907634735, - -0.016344817355275154, - 0.0022815456613898277, - 0.023060433566570282, - 0.01635788194835186, - -0.0266011580824852, - -0.0013441031333059072, - -0.013019672594964504, - -0.0005140418652445078, - 0.01736391894519329, - 0.004634951241314411, - 0.0031422290485352278, - -0.03182731941342354, - -0.0030148413497954607, - -0.0186704583466053, - 0.011700066737830639, - 0.007956829853355885, - -0.033238381147384644, - -0.006522901821881533, - -0.020878510549664497, - 0.005353548098355532, - 0.005353548098355532, - -0.007166372612118721, - -0.005817370023578405, - -0.02083931490778923, - -0.023387068882584572, - -0.02769865095615387, - 0.012875952757894993, - 0.01624029316008091, - 0.007930698804557323, - -0.0013661510311067104, - 0.0013857490848749876, - -0.0062844580970704556, - -0.012562383897602558, - 0.022550882771611214, - 0.009962368756532669, - 0.0255559254437685, - -0.01004729326814413, - -0.003416602499783039, - 0.012954345904290676, - 0.01254278514534235, - -0.012993541546165943, - 0.026169998571276665, - 0.03182731941342354, - 0.025137832388281822, - 0.034806229174137115, - -0.01128197368234396, - 0.018369954079389572, - -0.022995106875896454, - 0.007172905374318361, - -0.010458854027092457, - 0.027541866526007652, - 0.0049648527055978775, - 0.005222894251346588, - -0.006630691234022379, - -0.03911781311035156, - -0.009727191179990768, - -0.0005115921376273036, - 0.029762985184788704, - -0.015600088983774185, - 0.003592985449358821, - 0.025751905515789986, - -0.009269902482628822, - -0.008721155114471912, - 0.004487965255975723, - 0.010994534939527512, - -0.025255421176552773, - 0.000419317715568468, - 0.008904071524739265, - 0.010530713945627213, - -0.012203085236251354, - 0.005320884753018618, - -0.013431232422590256, - -0.02538607455790043, - 0.0020806652028113604, - -0.01911468245089054, - 0.017703618854284286, - 0.005716112907975912, - 0.010302068665623665, - 0.020146848633885384, - -0.006346518639475107, - 0.04818519949913025, - 0.012679971754550934, - -0.0009872544324025512, - 0.025333812460303307, - 0.0033300442155450583, - -0.02004232630133629, - 0.00850557629019022, - 0.025346878916025162, - 0.015417173504829407, - 0.028508706018328667, - -0.00850557629019022, - 0.008094016462564468, - 0.005438473541289568, - 0.01745537668466568, - 0.00644124299287796, - 0.008257334120571613, - 0.021296603605151176, - -0.00012738766963593662, - 0.03705347701907158, - 0.016619190573692322, - 0.032637372612953186, - 0.015417173504829407, - 0.007747782859951258, - 0.010217144154012203, - -0.005317618604749441, - -0.005445005837827921, - 0.009936237707734108, - -0.0008541506249457598, - -0.027777044102549553, - -0.008361856453120708, - -0.0010623804992064834, - 0.0036583123728632927, - 0.01748150773346424, - -0.012516654096543789, - -0.008956332691013813, - -0.006800541654229164, - -0.005830435547977686, - 0.007238232530653477, - 0.007662857882678509, - -0.006614359561353922, - 0.0403720885515213, - -0.009093519300222397, - 0.00038869568379595876, - -0.024445366114377975, - -0.010197545401751995, - 0.03998012840747833, - -0.009563873521983624, - -0.006898532155901194, - 0.0033512755762785673, - -0.021531781181693077, - -0.005546262953430414, - -0.006722148973494768, - -0.004226657561957836, - -0.00586963165551424, - -0.0082834642380476, - -0.006617625709623098, - 0.0040862043388187885, - -0.044370103627443314, - 0.04063339903950691, - -0.0035635882522910833, - 0.01252971962094307, - -0.009139248169958591, - 0.005072642117738724, - 0.0026163465809077024, - -0.018918700516223907, - -0.003397004446014762, - 0.03096500225365162, - 0.008348791860044003, - -0.005088973790407181, - -0.02564738318324089, - -0.0020153382793068886, - -0.009465883485972881, - -0.020656399428844452, - 0.007832707837224007, - -0.006310588680207729, - -0.007016120478510857, - -0.01460711844265461, - 0.009263369254767895, - -0.0032565512228757143, - -0.002142725745216012, - 0.028665490448474884, - 0.026561960577964783, - 0.00275679980404675, - -0.008825678378343582, - 0.005030179396271706, - 0.01763829216361046, - 0.02620919607579708, - 0.022302640601992607, - 0.00218192208558321, - -0.0005973338265903294, - 0.002075765747576952, - -0.008316127583384514, - -0.015469435602426529, - -0.051843512803316116, - -0.01769055426120758, - -0.010778956115245819, - -0.008773417212069035, - -0.009315631352365017, - 0.02330867573618889, - -0.022759929299354553, - 0.007773913908749819, - -0.014554857276380062, - 0.007649792358279228, - -0.021218212321400642, - -0.002683306811377406, - 0.0016503235092386603, - -0.001985941082239151, - -0.008597034029662609, - -0.0012910249643027782, - 0.029527807608246803, - 0.0005516048986464739, - -0.01111865695565939, - 0.0013130728621035814, - 0.012235748581588268, - 0.01763829216361046, - 0.004128667060285807, - 0.0046741473488509655, - 0.007649792358279228, - 0.01472470723092556, - 0.028665490448474884, - -0.02722829580307007, - 0.003485195804387331, - -0.005134702660143375, - 0.0029054186306893826, - 0.016214163973927498, - 0.008205072022974491, - 0.02170163206756115, - 0.031539879739284515, - 0.0052457586862146854, - -0.01864432729780674, - 0.005810837261378765, - -0.025137832388281822, - -0.0009006960899569094, - 0.008133212104439735, - 0.009002061560750008, - 0.004677413497120142, - 0.01163474004715681, - -0.02333480678498745, - -0.010772423818707466, - 0.0025510196574032307, - -0.0008990629576146603, - -0.0025069238618016243, - -0.01036086305975914, - 0.009361360222101212, - 0.011706599965691566, - 0.009315631352365017, - -0.023935815319418907, - -0.038725849241018295, - 0.010138751938939095, - -0.015952855348587036, - -0.01173926331102848, - 0.005918626673519611, - 0.00019342917948961258, - -0.0015147699741646647, - -0.0010395159479230642, - 0.004510829690843821, - 0.013679475523531437, - 0.02104836143553257, - -0.023857422173023224, - -0.0019369457149878144, - 0.02434084191918373, - 0.0038706252817064524, - 0.006878933869302273, - -0.00800255872309208, - -0.0007643259596079588, - 0.0004973018658347428, - -0.03953590616583824, - -0.04204446077346802, - -0.010988002642989159, - -0.0024562955368310213, - -0.01932372897863388, - 0.022420229390263557, - -0.030494647100567818, - -0.02795995958149433, - -0.0006165236118249595, - 0.02552979439496994, - 0.00736235361546278, - -0.0024775266647338867, - -0.0003788966278079897, - -0.0030475049279630184, - -0.018004123121500015, - -0.006137472111731768, - 0.02282525599002838, - 0.014489530585706234, - 0.022955909371376038, - -0.01754683442413807, - 0.02588256075978279, - 0.022224247455596924, - -0.0012657108018174767, - -0.0008288364042527974, - 0.019807148724794388, - 0.003592985449358821, - -0.016632255166769028, - 0.013993045315146446, - 0.003896755864843726, - -0.007101045455783606, - 0.018396085128188133, - -0.005598524585366249, - 0.004987717140465975, - -0.019023224711418152, - 0.007401549722999334, - 0.012797560542821884, - -0.013888522051274776, - -0.0035309246741235256, - 0.023387068882584572, - 0.02342626452445984, - 0.007244765292853117, - -0.00736888637766242, - 0.035694677382707596, - 0.0074603441171348095, - -0.028064481914043427, - 0.021322734653949738, - -0.01526038907468319, - -0.013261382468044758, - -0.01953277550637722, - 0.010125686414539814, - -0.0029429816640913486, - 0.00725129758939147, - 0.042880646884441376, - -0.012941280379891396, - -0.04400427266955376, - -0.016736779361963272, - 0.020682530477643013, - -0.0022766462061554193, - -0.021453389897942543, - 0.014580988325178623, - -0.039588164538145065, - 0.02552979439496994, - 0.016462406143546104, - -0.0017017684876918793, - -0.0011930344626307487, - -0.025895625352859497, - -0.02238103188574314, - 0.015142800286412239, - 0.013241784647107124, - 0.029501676559448242, - -0.03464944288134575, - 0.0012395799858495593, - -0.011438759043812752, - -0.0012640776112675667, - -0.03125244006514549, - -0.04847263917326927, - -0.003076902125030756, - -0.011536749079823494, - 0.019193075597286224, - 0.00841411855071783, - 0.018448347225785255, - -0.002573884092271328, - 0.01473777275532484, - 0.002430164720863104, - -0.018605131655931473, - -0.007813110016286373, - 0.015247323550283909, - -0.00874075386673212, - -0.03702734783291817, - 0.035250451415777206, - -0.006104808766394854, - 0.021557912230491638, - 0.010883479379117489, - 0.016998087987303734, - 0.026548895984888077, - 0.021218212321400642, - -0.015639284625649452, - -0.029736854135990143, - -0.013810128904879093, - -0.0006467373459599912, - -0.008100548759102821, - -0.009433220140635967, - 0.004994249902665615, - 0.016880499199032784, - 0.022211182862520218, - 0.011144787073135376, - 0.03935299068689346, - -0.0059937527403235435, - -0.016749843955039978, - 0.008531707338988781, - 0.027594128623604774, - -0.01908855140209198, - 0.03603437542915344, - 0.004465100821107626, - -0.015521696768701077, - -0.0017246330389752984, - 0.006144004873931408, - -4.162044933764264e-05, - -0.019193075597286224, - 0.012712636031210423, - -0.008485978469252586, - -0.0007030818960629404, - 0.010060358792543411, - -0.03689669445157051, - 0.005712846759706736, - 0.02125740796327591, - 0.004778670612722635, - -0.008962864987552166, - -0.0020790318958461285, - -0.021505650132894516, - -0.027411211282014847, - -0.01932372897863388, - -0.014881492592394352, - -0.022276509553194046, - 0.03214088827371597, - 0.014071437530219555, - 0.0028498906176537275, - 0.010289004072546959, - -0.0036354479379951954, - 0.01548250112682581, - 0.010210610926151276, - -0.027646388858556747, - 0.015221192501485348, - 0.009015127085149288, - 0.044579148292541504, - 0.009838247671723366, - -0.024837328121066093, - -0.03551176190376282, - -0.008570902980864048, - -0.00893673487007618, - -0.006885466631501913, - 0.01929759792983532, - 0.007826175540685654, - -0.010230209678411484, - -0.0007651425548829138, - 0.018605131655931473, - 0.02036896161735058, - -0.018356889486312866, - 0.006891999393701553, - 0.030494647100567818, - 0.03318611904978752, - 0.010445788502693176, - -0.01181765552610159, - -0.008597034029662609, - -0.03548562899231911, - 0.022616209462285042, - -0.030285600572824478, - -0.009276434779167175, - -0.014084503054618835, - -0.019911671057343483, - -0.006767877843230963, - 0.03940524905920029, - -0.005582192912697792, - 0.03856906667351723, - -0.00841411855071783, - -0.01923227123916149, - 0.0019516443135216832, - -0.021479519084095955, - 0.0005552795482799411, - 0.026757942512631416, - 0.004193993750959635, - 0.022080527618527412, - 0.01047845184803009, - -0.0006128489621914923, - -0.009812116622924805, - 0.0006696018390357494, - 0.001984307775273919, - -0.017703618854284286, - 0.005007314961403608, - 0.01528652012348175, - -0.003873891429975629, - -0.005938224960118532, - -0.009759854525327682, - 0.006065612658858299, - 0.01722019910812378, - 0.014097568579018116, - -0.011340768076479435, - -0.024680543690919876, - -0.006937728263437748, - -0.01485536154359579, - 0.013888522051274776, - 0.0004133974725846201, - 0.006741747260093689, - 0.0008745653321966529, - -0.012947812676429749, - 0.002061067149043083, - -0.016201097518205643, - -0.021662436425685883, - 0.022041331976652145, - -0.005804304499179125, - -0.0034557986073195934, - 0.028404181823134422, - 0.0005560961435548961, - 0.04429171234369278, - 0.0004058440390508622, - -0.018213169649243355, - -0.017834272235631943, - 0.025072505697607994, - -0.028456443920731544, - 0.018160907551646233, - 0.04126053676009178, - -0.01787346974015236, - -0.007858838886022568, - 0.016070444136857986, - -0.024053404107689857, - -0.020447352901101112, - 0.011105591431260109, - -0.016971956938505173, - -0.015312650240957737, - 0.002866222523152828, - 0.004697011783719063, - -0.004582689609378576, - 0.004723142832517624, - -0.029606198891997337, - 0.027620257809758186, - -0.009080453775823116, - 0.010824684984982014, - -0.030938871204853058, - -0.024366972967982292, - -0.00030070837237872183, - 0.0013375704875215888, - -0.01183072105050087, - 0.020787052810192108, - -0.01944131776690483, - 0.012274944223463535, - -0.029789114370942116, - 0.013993045315146446, - -0.0004576973442453891, - -0.02609160728752613, - -0.0328986793756485, - -0.005846767220646143, - 0.04160023853182793, - -0.038255494087934494, - -0.021570976823568344, - -0.021949874237179756, - -0.03642633929848671, - -0.023948879912495613, - 0.016397079452872276, - -0.00747994240373373, - -0.008159343153238297, - -0.0015466168988496065, - 0.01724633015692234, - -0.02356998436152935, - 0.012706102803349495, - -0.006833204999566078, - 0.0077673811465501785, - -0.0016029614489525557, - 0.00310629908926785, - -0.026692615821957588, - -0.002088831039145589, - -0.00528495479375124, - 0.013770933263003826, - 0.034100696444511414, - -0.03731478750705719, - -0.02431471273303032, - -0.006437976378947496, - -0.04055500775575638, - -0.018605131655931473, - -0.02090464159846306, - -0.006486971862614155, - -0.010733227245509624, - 0.01185685209929943, - -0.002234183717519045, - 0.014241287484765053, - 0.01638401299715042, - 0.013692541047930717, - -0.005823902785778046, - -0.01579607091844082, - 0.002163957105949521, - 0.004746007267385721, - 0.029972031712532043, - 0.012098561972379684, - -0.030886609107255936, - -0.01780814304947853, - 0.015247323550283909, - -0.019702624529600143, - 0.0168021060526371, - 0.00893673487007618, - 0.002095363801345229, - 0.005703047849237919, - 0.0024024005979299545, - -0.0019026490626856685, - 0.005337216425687075, - -0.007512605749070644, - 0.01298700924962759, - -0.04094696789979935, - 0.0033806725405156612, - 0.019258402287960052, - 0.032428327947854996, - -0.04491885006427765, - -0.007512605749070644, - 0.010014629922807217, - -0.008891006000339985, - -0.012908617034554482, - -0.010445788502693176, - -0.013470428995788097, - -0.026235325261950493, - -0.028613228350877762, - 0.02081318385899067, - 0.011882982216775417, - -0.03619116172194481, - 0.029371023178100586, - 0.004203793127089739, - -0.011543282307684422, - -0.007440746296197176, - 0.0035831863060593605, - -0.010034228675067425, - -0.004922389984130859, - 0.009093519300222397, - -0.0026849398855119944, - 0.03467557579278946, - -0.02650970034301281, - 0.0008284281357191503, - -0.012640776112675667, - 0.0431680865585804, - -0.012190019711852074, - -0.01505134254693985, - -0.008107081986963749, - 0.03441426903009415, - 0.02475893497467041, - -0.010386994108557701, - 0.035668544471263885, - 0.0101518165320158, - 0.0070357187651097775, - -0.02270766720175743, - -0.0034068033564835787, - -0.0030507713090628386, - -0.009616135619580746, - -1.3818193110637367e-05, - 0.007512605749070644, - -0.01787346974015236, - -0.026196129620075226, - 0.019310662522912025, - -0.01243826188147068, - -0.03133083134889603, - 0.013640278950333595, - 0.16232454776763916, - -0.016971956938505173, - 0.0034459996968507767, - 0.026078540831804276, - -0.006852802820503712, - -0.012686504982411861, - 0.03935299068689346, - -0.0020839315839111805, - 0.008237735368311405, - 0.013522690162062645, - -0.03268963471055031, - -0.008361856453120708, - -0.006970391608774662, - -0.004781936760991812, - 0.023648375645279884, - -0.02356998436152935, - 0.0006059079896658659, - -0.02193680964410305, - 0.0034198688808828592, - 0.013953848741948605, - 0.01775588095188141, - -0.027332819998264313, - -0.01573074422776699, - -0.0030099418945610523, - 0.018239300698041916, - 0.0008533340296708047, - -0.016096575185656548, - 0.019402120262384415, - 0.00975332222878933, - -0.006846270523965359, - 0.003062203526496887, - -0.0033512755762785673, - -0.00807441771030426, - -0.01701115258038044, - -0.015299584716558456, - 0.00368117680773139, - -0.0010313501115888357, - -0.009400555863976479, - 0.03535497561097145, - 0.04405653476715088, - 0.022276509553194046, - -0.008806080557405949, - -0.0011342401849105954, - 0.02015991508960724, - -0.012686504982411861, - 0.012679971754550934, - -0.0005748776602558792, - -0.0006324470741674304, - 0.01617496646940708, - -0.011144787073135376, - -0.021897612139582634, - -0.0033137125428766012, - 0.031931839883327484, - 0.003397004446014762, - -0.016201097518205643, - 0.002453029155731201, - 0.046173129230737686, - 0.0034786630421876907, - 0.018422216176986694, - 0.01526038907468319, - -0.04502337425947189, - 0.0255559254437685, - -0.006989989895373583, - 0.007283961400389671, - -0.013483494520187378, - -0.00911311712116003, - -0.026757942512631416, - 0.014175960794091225, - 0.010471919551491737, - -0.025660447776317596, - -0.006522901821881533, - -0.02330867573618889, - -0.004987717140465975, - 0.008015623316168785, - -0.022655406966805458, - -0.04086857661604881, - 0.005252291448414326, - -0.009028192609548569, - 0.010282470844686031, - 0.017416179180145264, - -0.0073427557945251465, - -0.003609317122027278, - -0.0189056359231472, - 0.005235959775745869, - -0.016841301694512367, - -0.034152958542108536, - 0.01671064831316471, - 0.0288222748786211, - -0.007675923407077789, - -0.02559512108564377, - 0.003341476432979107, - 0.0038183636497706175, - -0.0024415969382971525, - -0.010890011675655842, - 0.024262450635433197, - 0.0015939789591357112, - -0.0006099909078329802, - 0.008355324156582355, - -0.01462018396705389, - 0.010106087662279606, - 0.003557055490091443, - 0.02653582952916622, - 0.04141732305288315, - -0.022968975827097893, - -0.01789960078895092, - 0.0028907200321555138, - 0.008930201642215252, - 0.016188032925128937, - -0.005987219978123903, - 0.00282049342058599, - -0.016762910410761833, - -0.004533694125711918, - 0.015874462202191353, - -0.013307111337780952, - 0.026588091626763344, - 0.005111838225275278, - -0.006624158471822739, - -0.017285525798797607, - 0.002626145724207163, - -0.003354541724547744, - -0.01923227123916149, - 0.0021868215408176184, - -0.013496560044586658, - 0.03159214183688164, - 0.007747782859951258, - -0.005595257971435785, - -0.04933495447039604, - 0.00561159010976553, - 0.009910106658935547, - -0.021335801109671593, - 0.018252365291118622, - -0.010876947082579136, - -0.005203295964747667, - 0.024484561756253242, - 0.021322734653949738, - 0.030024291947484016, - -0.00863623060286045, - -0.03357808291912079, - -0.013535755686461926, - -0.0004989349981769919, - 0.022367967292666435, - -0.005582192912697792, - -0.00311283185146749, - -0.008557838387787342, - 0.01128197368234396, - -0.007532204035669565, - 0.005115104839205742, - -0.006519635207951069, - -0.002810694510117173, - -0.01712874136865139, - -0.02249862067401409, - -0.00435731140896678, - 0.0017654623370617628, - -0.012327206321060658, - 0.03600824624300003, - 0.007813110016286373, - -0.010968404822051525, - -0.04314195364713669, - -0.0023109428584575653, - 0.02526848576962948, - -0.01506440807133913, - -0.008877940475940704, - -0.01068749837577343, - -0.013202588073909283, - 0.007290494162589312, - 0.00029580885893665254, - -0.16493763029575348, - 0.0035864526871591806, - 0.01495988480746746, - -0.02042122185230255, - 5.60383232368622e-05, - -0.01129503920674324, - 0.03078208491206169, - -0.011112123727798462, - -0.0019206140423193574, - 0.0043834419921040535, - 0.02550366334617138, - 0.0035766535438597202, - -0.024811197072267532, - 0.0107920216396451, - -0.002072499366477132, - 0.01748150773346424, - -0.025490598753094673, - 0.03846454247832298, - 0.03339516744017601, - 0.03530271351337433, - 0.016201097518205643, - -0.020460419356822968, - 0.016096575185656548, - -0.004174395930022001, - -0.00503997877240181, - 0.00633018696680665, - -0.0036975087132304907, - 0.022054398432374, - -0.013627213425934315, - -0.008028688840568066, - -0.011216646991670132, - 0.014097568579018116, - 0.019794082269072533, - -0.023765964433550835, - 0.01297394372522831, - 0.007192503660917282, - -0.007395017426460981, - 0.0035733873955905437, - -0.013979979790747166, - 0.01983327977359295, - 0.016044313088059425, - 0.016789041459560394, - -0.012346804141998291, - 0.020943839102983475, - 0.017089545726776123, - 0.028717752546072006, - 0.026757942512631416, - -0.0034068033564835787, - 0.0011652704561129212, - -0.0045892223715782166, - 0.01288248598575592, - -0.016632255166769028, - -0.0005328233819454908, - 0.03527658432722092, - 0.006271392572671175, - 0.01929759792983532, - -0.002090464113280177, - 0.023975010961294174, - -0.011562880128622055, - -0.00018587574595585465, - -0.007159839849919081, - -0.03444039821624756, - -0.012595047242939472, - -0.0021868215408176184, - -0.02146645449101925, - -0.012725700624287128, - 0.01034779753535986, - 0.013548821210861206, - -0.008244268596172333, - 0.008139745332300663, - -0.027176035568118095, - -0.026431307196617126, - 0.02594788745045662, - -0.027646388858556747, - -0.005644253455102444, - -0.0055364640429615974, - 0.0001193238640553318, - 0.002018604427576065, - 0.030912740156054497, - -0.020316699519753456, - -0.015965919941663742, - 0.08048287034034729, - -0.011771926656365395, - -0.001304090372286737, - -0.004471633583307266, - 0.0017197334673255682, - 3.018822280864697e-05, - -0.0027029048651456833, - 0.012359869666397572, - 0.002877654740586877, - 0.009060855954885483, - -0.0434032641351223, - -0.015025211498141289, - -0.01593978889286518, - 0.010870413854718208, - 0.023935815319418907, - -0.004661081824451685, - -0.02309962920844555, - -0.0007018570322543383, - -0.0032451190054416656, - 0.011928711086511612, - -0.011216646991670132, - -0.023321742191910744, - 0.00446836743503809, - 0.014894557185471058, - 0.0011758861364796758, - 0.0032287873327732086, - -0.006091743241995573, - 0.025307683274149895, - -0.0021753893233835697, - -0.020016195252537727, - -0.009890508837997913, - 0.0015833632787689567, - -0.0011562880827113986, - -0.01976795308291912, - 0.009642266668379307, - -0.003988213837146759, - -0.02683633379638195, - 0.02238103188574314, - -0.01855286955833435, - 0.038281626999378204, - -0.004873394500464201, - -0.01840914972126484, - 0.0032124556601047516, - 0.025843363255262375, - -0.006032949313521385, - -0.07708586752414703, - -0.028848405927419662, - 0.023112695664167404, - 0.013045803643763065, - 0.024471497163176537, - 0.003606050740927458, - 0.0015580491162836552, - 0.022838322445750237, - -0.01591365970671177, - 0.020199110731482506, - -0.017886534333229065, - -0.01724633015692234, - -0.009851312264800072, - -0.022524751722812653, - 0.03187957778573036, - -0.019049355760216713, - -0.02170163206756115, - -0.012967410497367382, - -0.011131721548736095, - 0.016723712906241417, - 0.013901586644351482, - -0.00736888637766242, - -0.0186704583466053, - -0.01763829216361046, - -0.006794008892029524, - 0.004465100821107626, - -0.02146645449101925, - 0.013032738119363785, - 0.02526848576962948, - 0.0046578156761825085, - 0.010040760971605778, - -0.009563873521983624, - 0.036347948014736176, - -0.020564941689372063, - -0.0010607473086565733, - 0.008067885413765907, - 0.0018683524103835225, - -0.017194068059325218, - 0.0029054186306893826, - -0.03140922635793686, - -0.013679475523531437, - -0.01677597500383854, - 0.023622246459126472, - -0.03096500225365162, - -0.013235251419246197, - -0.03692282363772392, - 0.005905561614781618, - 0.013757867738604546, - -0.010739759542047977, - -0.017795076593756676, - -0.02837805263698101, - -0.014032240957021713, - -0.0036583123728632927, - 0.005621389020234346, - 0.027411211282014847, - -0.011373432353138924, - -0.0051445020362734795, - 0.0015751974424347281, - -0.019075486809015274, - 0.013797064311802387, - -0.021505650132894516, - 0.026078540831804276, - -0.024745870381593704, - 0.06271392852067947, - 0.0047068106941878796, - -0.013320176862180233, - -0.02965846098959446, - -0.02268153615295887, - -0.00493545550853014, - -0.01878804713487625, - -0.01810864545404911, - 0.01626642420887947, - 0.0026914726477116346, - 0.014424202963709831, - -0.03182731941342354, - 0.0021182282362133265, - -0.04324647784233093, - -0.00632365420460701, - -0.0003362299466971308, - -0.020969970151782036, - -0.039823342114686966, - -0.022616209462285042, - 0.06449082493782043, - -0.0012028334895148873, - 0.03135696426033974, - 0.009563873521983624, - -0.015861397609114647, - -0.007669390644878149, - 0.006800541654229164, - -0.01037392858415842, - -0.003968615550547838, - 0.013098064810037613, - 0.012431729584932327, - -0.015534762293100357, - -0.011909113265573978, - -0.007048784289509058, - 0.0008696657605469227, - 0.005059576593339443, - -0.006774410605430603, - -0.015926724299788475, - -0.019245335832238197, - 0.0053894780576229095, - -0.041547976434230804, - 0.039849475026130676, - -0.0025967485271394253, - 0.00893673487007618, - -0.0049975160509347916, - 0.014123698696494102, - 0.019153878092765808, - -0.010484985075891018, - -0.006924662739038467, - -0.002408933360129595, - -0.015691546723246574, - 0.0032042895909398794, - -0.0151689313352108, - 0.003988213837146759, - -0.016318686306476593, - -0.026261456310749054, - -0.0060623460449278355, - -0.004452035762369633, - 0.022838322445750237, - 0.032820288091897964, - 0.006349785253405571, - -0.005709580611437559, - 0.0071467747911810875, - 0.008897538296878338, - -0.01855286955833435, - -0.018030254170298576, - -0.013483494520187378, - 0.0027976289857178926, - -0.003926153294742107, - -0.018369954079389572, - 0.016815172508358955, - -0.0035472565796226263, - -0.023112695664167404, - -0.006767877843230963, - 0.01183072105050087, - 0.009145781397819519, - 0.007120643742382526, - 0.014241287484765053, - 0.00904125813394785, - 0.05186964198946953, - -0.029292630031704903, - -0.007715119514614344, - 0.012307608500123024, - -0.03334290534257889, - -0.021662436425685883, - 0.0066764201037585735, - 0.002536321058869362, - -0.0068724011071026325, - 0.0058500333689153194, - -0.01537797786295414, - 0.019872475415468216, - 0.022106658667325974, - 0.0229820404201746, - -0.009903574362397194, - 0.013914652168750763, - -0.04227963835000992, - 0.009178444743156433, - -0.0028302925638854504, - -0.0032108223531395197, - -0.047035444527864456, - 0.04342939332127571, - 0.009407089091837406, - 0.025150896981358528, - -0.025699645280838013, - -0.01232067309319973, - -0.025921756401658058, - -0.024236319586634636, - 0.00460882019251585, - -0.01206589862704277, - -0.022720733657479286, - -0.02464134618639946, - 0.0058500333689153194, - -0.01950664445757866, - 0.0029560469556599855, - 0.0014821065124124289, - -0.007212101481854916, - 0.0070683821104466915, - -0.007414615247398615, - -0.010831218212842941, - 0.02620919607579708, - 0.012314140796661377, - 0.0045728906989097595, - -0.006767877843230963, - 0.0017376983305439353, - 0.018369954079389572, - -0.013274447992444038, - -0.018539804965257645, - 0.001214265706948936, - 0.00884527713060379, - 0.00018965246272273362, - -0.015926724299788475, - 0.01288248598575592, - -0.002263580681756139, - 0.010034228675067425, - 0.01834382303059101, - 0.013966914266347885, - 0.005213095340877771, - -0.019715690985322, - 0.014045306481420994, - 0.013744802214205265, - 0.0007402366609312594, - -0.012405598536133766, - -0.0009423420997336507, - -0.008988996036350727, - -0.013770933263003826, - 0.043533917516469955, - -0.0069573260843753815, - -0.012993541546165943, - -0.012725700624287128, - 0.011288506910204887, - -0.00975332222878933, - 0.004697011783719063, - -0.008910603821277618, - 0.0031422290485352278, - -0.008564370684325695, - 0.03146148845553398, - -0.014071437530219555, - 0.01567848213016987, - -0.019023224711418152, - 0.0008370022987946868, - 0.007721652276813984, - 0.026993120089173317, - -0.003553789108991623, - 0.009158845990896225, - 0.01778201200067997, - -0.007950296625494957, - 0.0024203655775636435, - -0.023844357579946518, - 0.015025211498141289, - -0.018592067062854767, - 0.003269616747274995, - 0.0107920216396451, - -0.02440617047250271, - -0.019101615995168686, - -0.012889018282294273, - -0.0024954916443675756, - 0.023086564615368843, - 0.011125189252197742, - 0.012804093770682812, - 0.09558647871017456, - 0.015299584716558456, - 0.0003805298183578998, - 0.019010158255696297, - -0.004425904713571072, - 0.02921423688530922, - 0.003416602499783039, - 0.002092097420245409, - -0.004079671576619148, - -0.045493729412555695, - 0.009890508837997913, - -0.006134205963462591, - 0.02363531105220318, - -0.05581539496779442, - -0.019219204783439636, - 0.0002449762832839042, - -0.023948879912495613, - 0.01526038907468319, - -0.01573074422776699, - 0.004746007267385721, - 0.035903722047805786, - -0.004876661114394665, - 0.04005851969122887, - 0.013522690162062645, - -0.030416253954172134, - -0.01677597500383854, - 0.0006838921108283103, - -0.003339843126013875, - 0.01070056390017271, - 0.0007010404369793832, - -0.00933522917330265, - 0.006937728263437748, - -0.05388171598315239, - -0.015978986397385597, - 0.0338393896818161, - -0.0012648941483348608, - -0.011262375861406326, - 0.010543778538703918, - 0.026326783001422882, - -0.0024203655775636435, - 0.00020863812824245542, - 0.040476612746715546, - -0.030938871204853058, - -0.02354385331273079, - 0.02730668894946575, - -0.00977945327758789, - -0.007316624745726585, - -0.020983034744858742, - -0.03122630901634693 - ], - "sparse": "SparseEmbedding(values=array([1.6054732, 1.6054732, 1.6054732, 1.6054732, 1.6054732, 1.6054732,\n 1.6054732, 1.6054732, 1.6054732, 1.6054732, 1.6054732, 1.6054732,\n 1.6054732, 1.6054732, 1.6054732, 1.6054732, 1.6054732, 1.6054732,\n 1.6054732, 1.6054732]), indices=array([ 372990882, 1505931685, 1294733183, 1147900472, 255174557,\n 922977895, 911111262, 164058840, 653745147, 2103309648,\n 2077811411, 987377478, 2048811096, 1878145217, 1515684580,\n 2101841856, 1638510030, 446026292, 1092081572, 509972577]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 34, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 20 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000035.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000035.json deleted file mode 100644 index 6da11dd94723f6136fcfabc7eef8d7fd426f6819..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000035.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000035", - "content": "Abbildung 19: Gebietsausschnitte Gromb\u00fchl f\u00fcr die Baumpflanzungsszenarien (eigene Darstellung) ................................................................................................................ 35", - "embedding": { - "dense": [ - -0.0036746738478541374, - -0.02195841632783413, - 0.02668299712240696, - -0.007810282055288553, - -0.003924346528947353, - 0.028117015957832336, - -0.02065243385732174, - 0.0037707018200308084, - -0.016593648120760918, - 0.0010186976287513971, - -0.011011217720806599, - 0.010057338513433933, - -0.013610376976430416, - 0.002925654873251915, - 0.007989534176886082, - 0.029192529618740082, - 0.02678542584180832, - 0.0022982715163379908, - 0.013700002804398537, - 0.0059729451313614845, - 0.01036462839692831, - 0.012771732173860073, - 0.03236785903573036, - -0.011952292174100876, - 0.0024359116796404123, - 0.022406546398997307, - 0.02298271469771862, - -0.026657389476895332, - -0.018885517492890358, - 0.019167199730873108, - -0.0070484597235918045, - 0.0003467013011686504, - -0.00859771203249693, - 0.004209229722619057, - -0.0016172726172953844, - -0.012016311287879944, - 0.013015002943575382, - -0.023802155628800392, - 0.017669163644313812, - 0.008456870913505554, - -0.006475491914898157, - -0.007214908022433519, - -0.0028152226004749537, - -0.02949981950223446, - 0.009340329095721245, - 0.016222340986132622, - 0.0022998719941824675, - 0.0001413412974216044, - -0.023802155628800392, - 0.01586383581161499, - 0.007867898792028427, - 0.03180449455976486, - -0.021459070965647697, - -0.01247724611312151, - -0.019909817725419998, - 0.02372533269226551, - -0.018808696419000626, - 0.001672488753683865, - 0.0002706790983211249, - -0.00589612266048789, - -0.018834304064512253, - -0.011939488351345062, - -0.021228602156043053, - 0.003380187787115574, - -0.043199822306632996, - -0.016017479822039604, - -0.010198179632425308, - -0.0016052690334618092, - 0.013482339680194855, - -0.022112060338258743, - 0.019333649426698685, - 0.014160937629640102, - 0.014801125042140484, - -0.015671778470277786, - 0.013981685042381287, - -0.013930470682680607, - 0.007541403640061617, - -0.006110585294663906, - -0.0021686337422579527, - 0.001954171108081937, - 0.027912156656384468, - -0.0262988843023777, - -0.039077017456293106, - 0.03323851153254509, - 0.025005707517266273, - 0.012784535996615887, - -0.008015141822397709, - 0.006856403313577175, - -0.024224678054451942, - -0.006465889513492584, - 0.02949981950223446, - 0.029448604211211205, - -0.0033673839643597603, - 0.016824116930365562, - -0.01503159198909998, - -0.00809196475893259, - -0.01691374182701111, - 0.006830796133726835, - 0.021625518798828125, - -0.043686363846063614, - -0.012624489143490791, - 0.029371783137321472, - -0.00033409762545488775, - -8.712545968592167e-05, - -0.013239068910479546, - -0.0027720099315047264, - 0.0262988843023777, - -0.006677151191979647, - 0.017925238236784935, - -0.04017813876271248, - -0.013136638328433037, - 0.026913464069366455, - -0.018514210358262062, - 0.010729535482823849, - 0.012669301591813564, - -0.023738136515021324, - 0.03818075731396675, - 0.024519164115190506, - -0.0013683998258784413, - -0.005121496506035328, - 0.017848415300250053, - -0.014801125042140484, - -0.00788070261478424, - -0.02921813726425171, - 0.013968882150948048, - -0.0028312273789197206, - 0.026631781831383705, - 0.00010843168274732307, - -0.005307150539010763, - -0.01544131152331829, - -0.02266262285411358, - 0.029883932322263718, - 0.0004385281354188919, - 0.016017479822039604, - -0.013956078328192234, - 0.013277479447424412, - -0.026030005887150764, - 0.009852479211986065, - -0.03495421260595322, - -0.03175327926874161, - 0.003975561819970608, - 0.03820636495947838, - -0.02157430350780487, - -0.018309349194169044, - 0.017963649705052376, - 0.03444206342101097, - 0.007944721728563309, - 0.023097949102520943, - 0.005143903195858002, - -0.019359257072210312, - 0.011190470308065414, - 0.0016596849309280515, - 0.03413477540016174, - -0.00447810860350728, - 0.006619534455239773, - -0.024506360292434692, - -0.002997675910592079, - 0.024967296048998833, - -0.02505692094564438, - 0.0015140423784032464, - 0.017886826768517494, - 0.0011475352803245187, - 0.005617641378194094, - 0.002683984348550439, - 0.006507501471787691, - 0.01087677851319313, - -0.002375093987211585, - -0.008840983733534813, - 0.027297576889395714, - -0.0193464532494545, - 0.0012147550005465746, - 0.013277479447424412, - -0.015915051102638245, - 0.020921314135193825, - -0.024864865466952324, - 0.005908926483243704, - -0.01614551804959774, - -0.009916497394442558, - -0.016593648120760918, - -0.016235144808888435, - -0.0514710396528244, - 0.013776825740933418, - 0.0100253289565444, - 0.008226403966546059, - -0.03172767162322998, - -0.0027079912833869457, - 0.025287389755249023, - 0.02209925651550293, - 0.001819731667637825, - -0.014429816044867039, - -0.004180421587079763, - 0.010076544247567654, - 0.020063461735844612, - 0.008642525412142277, - -0.6489960551261902, - -0.0036298607010394335, - -0.02129262126982212, - -0.014609068632125854, - 0.026990287005901337, - 0.03920505568385124, - 0.016683274880051613, - -0.00872574932873249, - -0.0017957247328013182, - 0.006427478045225143, - 0.010089348070323467, - -0.004266846925020218, - 0.0020806079264730215, - -0.00475979084149003, - -0.001992582343518734, - -0.021663930267095566, - -0.016363181173801422, - 0.002415105700492859, - 0.0183605644851923, - 0.010799955576658249, - -0.013725610449910164, - 0.004359673708677292, - 0.0019829794764518738, - -0.013027806766331196, - 0.01254766620695591, - 0.00941075012087822, - 0.014813928864896297, - -0.032982438802719116, - -0.006645141635090113, - -0.005371169652789831, - -0.03905140981078148, - 0.022304117679595947, - -0.007400562521070242, - 0.03828318789601326, - 0.032419074326753616, - 0.010070142336189747, - -0.03454449400305748, - 0.0073813567869365215, - -0.000391714449506253, - 0.016900938004255295, - -0.014954769983887672, - -0.007362151052802801, - 0.0009802863933146, - -0.0014540248084813356, - -0.004657360725104809, - 0.014455423690378666, - 0.028398698195815086, - -0.018655050545930862, - -0.007573412731289864, - -0.014903554692864418, - 0.021599911153316498, - 0.007560609374195337, - -0.012426030822098255, - 0.013879255391657352, - 0.01966654695570469, - 0.01304061058908701, - 0.01120967511087656, - -0.01112004928290844, - 0.000631384493317455, - -0.00024307103012688458, - 0.009705236181616783, - 0.017707573249936104, - -0.012541264295578003, - -0.003521028906106949, - -0.01910318247973919, - 0.028245052322745323, - -0.0305241197347641, - -0.0139944888651371, - 0.031241128221154213, - -0.028705988079309464, - -0.021663930267095566, - 0.0127973398193717, - 0.007080468814820051, - -0.03697720542550087, - 0.020857295021414757, - 0.011414535343647003, - 0.006507501471787691, - -0.0021526289638131857, - -0.02143346332013607, - -0.0029320567846298218, - -0.011267292313277721, - -0.014647480100393295, - -0.007336543872952461, - 0.0034346035681664944, - 0.03382748365402222, - -0.020665237680077553, - -0.014916358515620232, - -0.006926823873072863, - -0.011798647232353687, - 0.016440004110336304, - 0.02302112616598606, - 0.018053274601697922, - -0.020601220428943634, - -0.005396776832640171, - 0.006171403452754021, - 0.014058507978916168, - 0.013546357862651348, - 0.04227795451879501, - 0.013405516743659973, - -0.031138699501752853, - -0.013520751148462296, - 0.000568566145375371, - 0.02220168709754944, - 0.0056400480680167675, - 0.014327386394143105, - 0.017361873760819435, - -0.031010661274194717, - -0.002005385933443904, - 0.02978150174021721, - -0.017822807654738426, - 0.010793553665280342, - -0.011427339166402817, - -0.00556962750852108, - 0.009417152032256126, - 0.0007066064863465726, - -0.027963370084762573, - 0.016299162060022354, - -0.008789768442511559, - -0.015671778470277786, - -0.0017813205486163497, - 0.01864224672317505, - -0.00442369282245636, - 0.017144208773970604, - -0.02020430378615856, - 0.014160937629640102, - 0.021446267142891884, - 0.0015548543306067586, - -0.01256687194108963, - -0.01646561175584793, - -0.003713084850460291, - 0.005419183522462845, - 0.0077462634071707726, - 0.03602972626686096, - -0.015851031988859177, - 0.026631781831383705, - -0.005239930935204029, - 0.0274256132543087, - 0.002576753031462431, - -0.0007374154520221055, - -0.039179448038339615, - -0.02241935022175312, - -0.008623319678008556, - 0.025633089244365692, - -0.02241935022175312, - -0.01684972271323204, - 0.008623319678008556, - -0.015479722991585732, - -0.0039339493960142136, - -0.0100253289565444, - 0.0007122081005945802, - 0.0009402747382409871, - -0.008207198232412338, - 0.004833412356674671, - -0.01632476970553398, - 0.020153088495135307, - 0.0009570796391926706, - -0.005739277228713036, - -0.0305241197347641, - -0.010793553665280342, - -0.017861219123005867, - 0.012208367697894573, - 0.015223648399114609, - -0.035056643187999725, - -0.0006493897526524961, - 0.0009570796391926706, - 0.016555236652493477, - -0.010050936602056026, - 0.008181590586900711, - 0.025569071993231773, - -0.02975589409470558, - -0.007170095108449459, - -0.02376374416053295, - 0.0035562391858547926, - 0.005956940818578005, - -0.020498789846897125, - -0.014839536510407925, - -0.01226598396897316, - 0.0020806079264730215, - -0.011715423315763474, - -0.010992011986672878, - 0.006091380026191473, - 0.0032697555143386126, - -0.015428508631885052, - -0.009641217067837715, - 0.018565425649285316, - 0.00971163809299469, - 0.009020235389471054, - 0.024224678054451942, - -0.003140117507427931, - -0.017387481406331062, - -0.001358797075226903, - 0.06125309690833092, - -0.004919837694615126, - 0.028705988079309464, - -0.027656080201268196, - -0.004561332985758781, - -0.007874300703406334, - 0.014301778748631477, - -0.0336226262152195, - 0.03218860551714897, - 0.03200935199856758, - 0.00555042177438736, - 0.01875748112797737, - -0.008527291938662529, - 0.020985331386327744, - -0.025850754231214523, - 0.014442619867622852, - -0.009122665971517563, - 0.023290004581212997, - 0.00033569810329936445, - 0.015454115346074104, - -0.012726918794214725, - -0.026426922529935837, - 0.0038443233352154493, - 2.2419051674660295e-05, - 0.0139944888651371, - 0.002184638287872076, - -0.006561917252838612, - -0.0038539262022823095, - -0.020178696140646935, - 0.007829487323760986, - 0.0019797785207629204, - 0.004817407578229904, - -0.002055000513792038, - -0.016862526535987854, - 0.010729535482823849, - -0.010659114457666874, - 0.004260445013642311, - 0.010870376601815224, - 0.0019605727866292, - -0.015812620520591736, - 0.016580844298005104, - -0.01209313329309225, - 0.006625935900956392, - 0.011395329609513283, - -0.00695243151858449, - 0.01207392755895853, - -0.021369444206357002, - 0.03003757633268833, - 0.011446544900536537, - 0.03090823069214821, - 0.0145578533411026, - 0.013635984621942043, - -0.0068243942223489285, - 0.02213766798377037, - -0.0011211276287212968, - 0.020498789846897125, - 0.022675426676869392, - -0.021497482433915138, - 0.010307012125849724, - -0.022508976981043816, - 0.007938319817185402, - 0.002464720280840993, - 0.005159907508641481, - 0.029038885608315468, - -0.0063378517515957355, - 0.018693462014198303, - 0.014352994039654732, - 0.022112060338258743, - 0.018347760662436485, - 0.007867898792028427, - 0.02400701493024826, - 0.0100253289565444, - -0.005454393569380045, - 0.011113647371530533, - -0.0015028391499072313, - -0.02312355674803257, - -0.033853091299533844, - -0.01288696564733982, - 0.0035178279504179955, - 0.026836641132831573, - 0.00278001232072711, - -0.017502713948488235, - 0.0053743706084787846, - -0.01850140653550625, - 0.0011363320518285036, - -0.020037855952978134, - 0.0038283185567706823, - 0.011356918141245842, - -0.013251871801912785, - -0.012746124528348446, - -0.03428841754794121, - -0.011529768817126751, - 0.03226542845368385, - 0.0016980961663648486, - -0.010070142336189747, - 0.003994767088443041, - 0.011747432872653008, - -0.026273276656866074, - 0.021126173436641693, - 0.006136192940175533, - 0.0052591366693377495, - -0.003055292647331953, - 0.0064946976490318775, - -0.0023958999663591385, - -0.00725331949070096, - 0.004775795619934797, - -0.02207365073263645, - 0.010915189050137997, - -0.0005717670428566635, - -0.018655050545930862, - 0.013648788444697857, - -0.007394160609692335, - -0.010134161449968815, - 0.049012720584869385, - -0.005230328533798456, - -0.027297576889395714, - 0.0040555852465331554, - 0.0036234587896615267, - -0.017182620242238045, - -0.0027720099315047264, - -0.008559300564229488, - -0.013354302383959293, - 0.0021350239403545856, - -0.010985610075294971, - 0.0071572912856936455, - -0.011817852966487408, - -0.01674729399383068, - 0.03451888635754585, - 0.005630445200949907, - -0.007125282194465399, - -0.035056643187999725, - -0.011465750634670258, - -0.00469577219337225, - 0.034032344818115234, - 0.05567066743969917, - 0.015620564110577106, - 0.01422495674341917, - 0.0040395804680883884, - -0.019589724019169807, - -0.007547805551439524, - -0.05408300459384918, - -0.01031341403722763, - -0.0034666128922253847, - -0.008540095761418343, - -0.01337991002947092, - 0.011446544900536537, - -0.029371783137321472, - 0.011113647371530533, - -0.01196509599685669, - 0.007362151052802801, - -0.01833495683968067, - -0.007342945784330368, - 0.007925515994429588, - 0.0005153506062924862, - -0.01656804047524929, - -0.015633368864655495, - 0.05464636906981468, - 0.0003461011219769716, - -0.01115846075117588, - 0.02386617287993431, - 0.008258413523435593, - 0.015018788166344166, - -0.01998664066195488, - -0.0034378045238554478, - 0.007784674875438213, - 0.014596264809370041, - 0.027912156656384468, - -0.026273276656866074, - -0.008476076647639275, - 0.003709884127601981, - -0.02376374416053295, - 0.024595987051725388, - 0.006545912940055132, - 0.019077574834227562, - 0.025812342762947083, - 0.006507501471787691, - -0.025248978286981583, - 0.006664347369223833, - -0.014071311801671982, - -0.01207392755895853, - 0.014954769983887672, - -0.003751496085897088, - -0.00504147307947278, - 0.012931779026985168, - 0.008450469002127647, - -0.006094580981880426, - -0.007336543872952461, - -0.0029864725656807423, - -0.003476215759292245, - 0.00867453496903181, - -0.005140702240169048, - 0.02231692150235176, - -0.024339912459254265, - -0.03211178258061409, - -0.03979402780532837, - -0.009525983594357967, - -0.01394327450543642, - -0.0035914494656026363, - -0.008405656553804874, - -0.019115986302495003, - -0.01628635823726654, - -0.007855094969272614, - -0.007010048255324364, - -3.5235294490121305e-05, - 0.0005937734968028963, - -0.004119603894650936, - -0.0004197226371616125, - 0.0305241197347641, - 0.024263089522719383, - 0.010178973898291588, - -0.002634369768202305, - -0.01006374042481184, - -0.0014692293480038643, - -0.016683274880051613, - -0.037028420716524124, - -0.005761683452874422, - 0.0006641940562985837, - -0.016721686348319054, - 0.01932084560394287, - -0.003924346528947353, - -0.0027143931947648525, - -0.0008442467078566551, - 0.018834304064512253, - 0.005364767741411924, - -0.0035306315403431654, - -0.00021266214025672525, - 0.003290561493486166, - -0.02111336961388588, - -0.001277973409742117, - 0.0035786456428468227, - 0.006773178931325674, - 0.023891780525445938, - -0.01674729399383068, - 0.014826732687652111, - -0.008821777999401093, - -0.009705236181616783, - -0.014583460986614227, - -0.001237961696460843, - 0.010895984247326851, - -0.017861219123005867, - 0.009922899305820465, - -0.009353132918477058, - 0.009833273477852345, - 0.024019818753004074, - -0.006798786576837301, - 0.013328694738447666, - -0.005220725666731596, - -0.011568180285394192, - 0.013507947325706482, - 0.004426893312484026, - -0.0083352355286479, - 0.021651126444339752, - 0.006709160283207893, - 0.025684304535388947, - -0.009551591239869595, - 0.024135053157806396, - -0.008296824060380459, - -0.01763075217604637, - 0.03887216001749039, - -0.014173741452395916, - 0.0030568931251764297, - -0.0200506579130888, - 0.0051022907719016075, - -0.009826871566474438, - 0.02256019227206707, - 0.018731873482465744, - -0.0063026417046785355, - -0.016401592642068863, - -0.012381217442452908, - 0.013443928211927414, - 0.013328694738447666, - -0.017720377072691917, - -0.009980516508221626, - -0.014148133806884289, - 0.011587386019527912, - 0.014762713573873043, - -0.002863236702978611, - -0.015799816697835922, - -0.029448604211211205, - -0.018168509006500244, - 0.020818883553147316, - 0.019935425370931625, - 0.010563086718320847, - -0.017886826768517494, - -0.016273554414510727, - -0.011427339166402817, - 0.00220704497769475, - -0.0183605644851923, - -0.023674117401242256, - 0.005825702100992203, - -0.01829654537141323, - 0.004686169326305389, - 0.007573412731289864, - 0.011574582196772099, - -0.0038955381605774164, - 0.015287667512893677, - -0.001446022535674274, - -0.0076630390249192715, - 0.01699056476354599, - 0.004846216179430485, - -0.002834428334608674, - -0.04363514855504036, - 0.03270075470209122, - -0.01614551804959774, - 0.005486403126269579, - 0.01910318247973919, - 0.007042057812213898, - 0.013981685042381287, - 0.012669301591813564, - -0.020153088495135307, - -0.0013547958806157112, - 0.002834428334608674, - -0.0002748803235590458, - -0.019256826490163803, - -0.0026263673789799213, - 0.0006357857491821051, - -0.009013833478093147, - -0.006760375574231148, - 0.007502992171794176, - 0.037207670509815216, - 0.0019109584391117096, - 0.002034194301813841, - -0.0019749770872294903, - 0.019897013902664185, - -0.025543464347720146, - 0.03723327815532684, - 0.012707713060081005, - 0.005361566785722971, - -0.003521028906106949, - -0.00585130974650383, - -0.025863558053970337, - -0.009551591239869595, - 0.0145578533411026, - -0.009077852591872215, - 0.009167478419840336, - 0.0021430260967463255, - -0.03538954257965088, - 0.0003140917688142508, - -0.004561332985758781, - -0.002363890642300248, - -0.01819411665201187, - 0.0037194867618381977, - -0.01857822947204113, - -0.017771592363715172, - -0.03006318397819996, - -0.0011563379084691405, - -0.0009130667895078659, - 0.04204748570919037, - -0.002253458369523287, - -0.0279889777302742, - 0.03236785903573036, - -0.010371030308306217, - 0.030498512089252472, - 0.015326078049838543, - -0.012054722756147385, - 0.02330280840396881, - 0.0347493551671505, - 0.042252346873283386, - 0.0333409421145916, - -0.03500542789697647, - -0.014007292687892914, - -0.019973836839199066, - -0.010153367184102535, - -0.009513179771602154, - 0.01140173152089119, - 0.003700281260535121, - -0.009058646857738495, - -0.023699725046753883, - -0.008117572404444218, - 0.019410472363233566, - 0.009282712824642658, - -0.011542572639882565, - 0.03774543106555939, - 0.023187575861811638, - 0.016798509284853935, - -0.0038923374377191067, - 0.0172338355332613, - -0.022022435441613197, - 0.016721686348319054, - 0.005745678674429655, - -0.020434770733118057, - 0.014724302105605602, - -0.010588694363832474, - -0.021932808682322502, - 0.019973836839199066, - -0.009903693571686745, - 0.03369944542646408, - -0.010761544108390808, - -0.011068833991885185, - 0.006760375574231148, - -0.012515656650066376, - -0.002600759966298938, - 0.030370473861694336, - 0.007221309933811426, - 0.03485178202390671, - 0.017605144530534744, - -0.011856264434754848, - 0.00844406709074974, - -0.004574136342853308, - 0.005947337951511145, - -0.01702897623181343, - 0.010050936602056026, - 0.025261782109737396, - -0.007637431845068932, - -0.008533693850040436, - -0.003543435363098979, - 0.019167199730873108, - 0.02336682751774788, - 0.012330003082752228, - 0.0061874077655375, - -0.008079160936176777, - -0.007451777346432209, - -0.009321123361587524, - 0.021407855674624443, - 0.007829487323760986, - -0.018373368307948112, - -0.008540095761418343, - -0.004110001027584076, - -0.0057648844085633755, - -0.014852339401841164, - 0.005403178744018078, - 0.010659114457666874, - -0.022534584626555443, - 0.012272385880351067, - 0.03416038304567337, - 0.007323740050196648, - 0.04632393643260002, - -0.002064603380858898, - -0.03656748682260513, - -0.0037642999086529016, - 0.02294430509209633, - -0.032239820808172226, - 0.007618226110935211, - 0.04655440151691437, - 0.0027207951061427593, - -0.006225819233804941, - 0.01590224727988243, - -0.01001252606511116, - -0.01256687194108963, - 0.006446683779358864, - -0.01362318079918623, - -0.01083836704492569, - 0.003015281166881323, - -0.010076544247567654, - 0.012272385880351067, - -0.0028488324023783207, - -0.018040470778942108, - 0.02040916308760643, - -0.025722716003656387, - 0.015121218748390675, - -0.022995518520474434, - -0.015121218748390675, - 0.023840567097067833, - 0.02425028569996357, - 0.01362318079918623, - 0.014455423690378666, - -0.02545383758842945, - 0.012995797209441662, - 0.012009909376502037, - 0.013571965508162975, - 0.0004885427770204842, - -0.02491608075797558, - -0.036004118621349335, - 0.019436080008745193, - 0.03492860496044159, - -0.0036138559225946665, - -0.012445236556231976, - -0.032162997871637344, - -0.024480752646923065, - -0.021510284394025803, - 0.018373368307948112, - 0.0011635399423539639, - -0.016440004110336304, - -0.003959557041525841, - 0.013764021918177605, - -0.014673087745904922, - 0.023341219872236252, - -0.008207198232412338, - 0.006830796133726835, - -0.0021158182062208652, - -0.014096919447183609, - -0.031778886914253235, - -0.0042156316339969635, - -0.008437665179371834, - 0.021727949380874634, - 0.009884487837553024, - -0.028398698195815086, - -0.024826453998684883, - -0.012752526439726353, - -0.03200935199856758, - -0.03203495964407921, - -0.015172433108091354, - -0.00333537464030087, - 0.007118880283087492, - 0.020319538190960884, - -0.004324463661760092, - 0.03687477484345436, - 0.00124916504137218, - 0.01857822947204113, - -0.027758510783314705, - -0.013187853619456291, - 0.014583460986614227, - -0.019858602434396744, - 0.025159351527690887, - -0.010351824574172497, - -0.027476828545331955, - -0.033750660717487335, - 0.00842486135661602, - 0.0013219863176345825, - 0.009423553943634033, - 0.0015564548084512353, - -0.020562808960676193, - 0.01618392951786518, - 0.007003646343946457, - 0.001143534085713327, - -0.003218540456146002, - 0.014993181452155113, - 0.018552621826529503, - -0.0333409421145916, - -0.002509533194825053, - -0.003296963404864073, - 0.03034486621618271, - -0.0255946796387434, - -0.005732875317335129, - -0.004654159769415855, - -0.0071572912856936455, - 0.0033769868314266205, - 0.007867898792028427, - -0.0007526199333369732, - -0.005892921704798937, - -0.0255946796387434, - 0.02760486677289009, - 0.012637292966246605, - -0.009205889888107777, - 0.0015196440508589149, - 0.022252902388572693, - 0.00031269137980416417, - -0.008591310121119022, - -0.008047151379287243, - -0.003863528836518526, - -0.022086454555392265, - 0.00029428600100800395, - -0.02125420980155468, - 0.028398698195815086, - -0.021497482433915138, - 0.006587524898350239, - -0.007400562521070242, - 0.028219446539878845, - -0.01582542434334755, - -0.0006029761862009764, - -0.015134022571146488, - 0.01763075217604637, - 0.03344337269663811, - -0.0007926315884105861, - 0.014173741452395916, - 0.006830796133726835, - 0.0034217997454106808, - -0.009686030447483063, - 0.0049934592097997665, - -0.006120188161730766, - -0.010178973898291588, - -0.0018901523435488343, - -0.008220002055168152, - -0.01450663898140192, - -0.005665655713528395, - 0.004013972822576761, - -0.0032649540808051825, - -0.0229186974465847, - 0.01281014271080494, - 0.17167256772518158, - -0.02104935050010681, - -0.011299301870167255, - 0.008399254642426968, - 0.011939488351345062, - -8.8213273556903e-06, - 0.03321290388703346, - 0.01801486313343048, - 0.023942995816469193, - 0.010473459959030151, - -0.022150471806526184, - -0.01503159198909998, - -0.009852479211986065, - 0.00416761776432395, - 0.012336404994130135, - -0.023072341457009315, - -0.02115178108215332, - 0.0013355902628973126, - 0.0016244746511802077, - 0.02704150229692459, - 0.009551591239869595, - -0.026708604767918587, - -0.004522921517491341, - -0.013866451568901539, - 0.026452530175447464, - 0.0023878978099673986, - -0.030549727380275726, - 0.024839257821440697, - 0.009871684946119785, - 0.013725610449910164, - 0.00805355329066515, - 0.005883319303393364, - -0.0014580260030925274, - -0.015466919168829918, - 0.00751579599454999, - -0.0013243870344012976, - 0.010863974690437317, - 0.0004173219494987279, - 0.03546636179089546, - 0.016235144808888435, - 0.016760097816586494, - -0.004266846925020218, - 0.005486403126269579, - -0.014481031335890293, - -0.01713140495121479, - 0.022304117679595947, - 0.0017381078796461225, - 0.008495282381772995, - 0.00309370388276875, - -0.008386450819671154, - -0.009346731007099152, - 0.008981824852526188, - 0.010703927837312222, - 0.043199822306632996, - 2.4757233404670842e-05, - -0.012541264295578003, - 0.01145934872329235, - -0.014237760566174984, - 0.005147104151546955, - 0.006485094781965017, - -0.03838561475276947, - 0.041714590042829514, - 0.0036074540112167597, - 0.017182620242238045, - -0.026132436469197273, - 0.004340468440204859, - -0.03341776505112648, - 0.012784535996615887, - 0.005646449979394674, - -0.023277200758457184, - -0.0009346731239929795, - -0.02058841660618782, - -0.027963370084762573, - 0.008834581822156906, - -0.01614551804959774, - -0.03344337269663811, - 0.009353132918477058, - -0.016760097816586494, - 0.027271969243884087, - 0.02259860374033451, - 0.004820608533918858, - 0.011056030169129372, - -0.002357488963752985, - -0.020217107608914375, - -0.004446099046617746, - -0.03818075731396675, - 0.00699724443256855, - 0.0075221979059278965, - -0.004135608207434416, - -0.04962730035185814, - -0.0068756090477108955, - 0.008501684293150902, - 0.006837198045104742, - -0.006421076133847237, - 0.007931917905807495, - 0.025069724768400192, - 0.014609068632125854, - 0.028757203370332718, - -0.029064493253827095, - 0.0072085061110556126, - 0.0007010048138909042, - 0.057053472846746445, - 0.025633089244365692, - -0.013162245973944664, - -0.008687338791787624, - -0.004273248836398125, - 0.008386450819671154, - 0.008834581822156906, - 0.0036810755264014006, - 0.007438973523676395, - -0.003296963404864073, - -0.018245331943035126, - 0.012784535996615887, - -0.014442619867622852, - 0.01980738714337349, - 0.0016580844530835748, - 0.008367245085537434, - -0.011062432080507278, - -0.0029064493719488382, - -0.009730842895805836, - -0.022829070687294006, - 0.0010379032464697957, - 0.0040907952934503555, - 0.01769477128982544, - -0.015735797584056854, - -0.0060049546882510185, - -0.04634954407811165, - -0.0023158767726272345, - 0.003850725246593356, - -0.016196733340620995, - 0.022086454555392265, - -0.01133131142705679, - 0.007912712171673775, - -0.011497759260237217, - 0.009852479211986065, - 0.01564617268741131, - -0.017745984718203545, - -0.026452530175447464, - -0.020946919918060303, - -0.0011267291847616434, - 0.033110473304986954, - -0.001078715198673308, - -0.009577198885381222, - -0.010531077161431313, - 0.01737467758357525, - 0.011254488490521908, - 0.003997968044131994, - 0.009090656414628029, - -0.012707713060081005, - -0.031061876565217972, - -0.016196733340620995, - -0.005755281541496515, - -0.015300470404326916, - -0.00024227079120464623, - 0.041791412979364395, - -0.013635984621942043, - -0.02209925651550293, - -0.03828318789601326, - -0.013533554039895535, - 0.023149164393544197, - -0.02153589203953743, - -0.022905893623828888, - 0.004433295223861933, - -0.03070337139070034, - 0.009506777860224247, - 0.012182760052382946, - -0.16081498563289642, - -0.0018533415859565139, - 0.011395329609513283, - -0.03285440057516098, - 0.014685891568660736, - 0.007470983080565929, - 0.02410944551229477, - -0.005774487275630236, - -0.0032553512137383223, - -0.002666379092261195, - 0.03288000822067261, - 0.03034486621618271, - -0.027271969243884087, - -0.0038379214238375425, - 0.00527834240347147, - 0.011113647371530533, - -0.008828179910779, - 0.02844991348683834, - 0.03774543106555939, - 0.026811033487319946, - -0.013290283270180225, - -0.02189439721405506, - -0.0004517319903243333, - 0.0061521977186203, - 0.011561778374016285, - 0.004522921517491341, - -0.017989257350564003, - 0.028219446539878845, - -0.007426169700920582, - 0.0007122081005945802, - -0.018091686069965363, - 0.016337573528289795, - 0.027758510783314705, - -0.033366549760103226, - -0.006312244571745396, - -0.015287667512893677, - 0.00640507135540247, - -0.018206920474767685, - -0.007291730493307114, - 0.016721686348319054, - 0.012470844201743603, - 0.00505107594653964, - -0.0008882595575414598, - 0.006593926809728146, - -0.008232805877923965, - 0.010114955715835094, - 0.005195118021219969, - -0.0063698613084852695, - -0.0018405377632007003, - -0.016516827046871185, - -0.00394035130739212, - -0.017810003831982613, - 0.000756621069740504, - 0.029371783137321472, - 0.01339271292090416, - 0.04194505512714386, - 0.01544131152331829, - 0.019051967188715935, - -0.0034794167149811983, - 0.0029384586960077286, - -0.005790492054075003, - -0.015338881872594357, - -0.015518134459853172, - -0.014481031335890293, - -0.01674729399383068, - -0.015108414925634861, - -0.0005017466028220952, - 0.010390236042439938, - -0.003985164687037468, - -0.0009394744993187487, - 0.002983271609991789, - -0.03200935199856758, - 0.015710189938545227, - -0.020857295021414757, - -0.008476076647639275, - -0.008565702475607395, - -0.009423553943634033, - 0.0008682537009008229, - 0.017745984718203545, - -0.009532385505735874, - -0.01450663898140192, - 0.0690377727150917, - -0.0246087908744812, - -0.020153088495135307, - 0.01642720028758049, - -0.0020245916675776243, - -0.02101093903183937, - 0.015530938282608986, - 0.02058841660618782, - 0.005035071168094873, - -0.008860188536345959, - -0.01670888252556324, - -0.006939627695828676, - -0.03538954257965088, - 0.030293650925159454, - -0.0019349653739482164, - 0.0008978623664006591, - -0.02668299712240696, - -0.011497759260237217, - -0.0006397869437932968, - 0.010921590961515903, - -0.003559440141543746, - -0.04542767256498337, - 0.00280722021125257, - 0.018424583598971367, - 0.010934394784271717, - 0.003959557041525841, - 0.010038132779300213, - 0.030831409618258476, - -0.014545050449669361, - -0.019628135487437248, - -0.013674396090209484, - 0.005668856669217348, - -0.011433741077780724, - -0.012387619353830814, - 0.020665237680077553, - 0.018411779776215553, - -0.03377626836299896, - 0.01578701287508011, - -0.017080191522836685, - 0.01942327618598938, - -0.002014988800510764, - -0.025325799360871315, - 0.0045965430326759815, - 0.004660561680793762, - -0.010473459959030151, - -0.07769310474395752, - 0.011536170728504658, - 0.017963649705052376, - 0.012125142849981785, - 0.02037075161933899, - 0.005598435644060373, - -0.00668995501473546, - 0.026554958894848824, - 0.00277521088719368, - 0.009314721450209618, - -0.037975896149873734, - -0.014532246626913548, - -0.0022438557352870703, - -0.022112060338258743, - 0.03259832412004471, - -0.009468366391956806, - -0.026631781831383705, - -0.016926545649766922, - 0.0029000474605709314, - 0.01582542434334755, - 0.01202271319925785, - 8.462472760584205e-05, - -0.0016036685556173325, - -0.02442953921854496, - 0.0036650709807872772, - -0.015774209052324295, - -0.028014585375785828, - 0.011933086439967155, - 0.040382999926805496, - 0.006350655574351549, - 0.004817407578229904, - -0.03339215740561485, - 0.03923066332936287, - -0.017285050824284554, - -0.007573412731289864, - -0.004827010445296764, - -0.02302112616598606, - -0.016222340986132622, - 0.01245804037898779, - -0.0255946796387434, - -0.014852339401841164, - -0.011126451194286346, - 0.01660645194351673, - -0.0395379513502121, - -0.0020181897561997175, - -0.012874161824584007, - -0.006869207136332989, - 0.0005157507257536054, - 0.0018069279612973332, - -0.008815376088023186, - -0.03062654845416546, - -0.02865477278828621, - -0.0018533415859565139, - 0.022777855396270752, - 0.018514210358262062, - -0.0065107024274766445, - -0.014775517396628857, - -0.01642720028758049, - -0.014660283923149109, - -0.0004733382957056165, - -0.027835333719849586, - 0.008252011612057686, - -0.02545383758842945, - 0.002600759966298938, - 0.00969243235886097, - 0.018770284950733185, - -0.04399365559220314, - -0.02273944392800331, - -0.006116987206041813, - -0.006126590073108673, - -0.022252902388572693, - 0.015018788166344166, - -0.0012387619353830814, - -0.002021390711888671, - -0.035901691764593124, - -0.004814206622540951, - -0.046119075268507004, - -0.008828179910779, - 0.024762434884905815, - -0.02491608075797558, - -0.01632476970553398, - -0.037489354610443115, - 0.028757203370332718, - -0.008552899584174156, - 0.04040860757231712, - 0.022893089801073074, - 0.006734767928719521, - -0.03649066388607025, - 0.025825146585702896, - -0.009436357766389847, - 0.027579259127378464, - 0.013456732034683228, - -0.0063026417046785355, - -0.03779664263129234, - -0.009436357766389847, - 0.0028904445935040712, - 0.00307609885931015, - 0.009077852591872215, - -0.008860188536345959, - -0.006939627695828676, - -0.045453280210494995, - 0.003927547484636307, - -0.06232861056923866, - 0.04363514855504036, - 0.01839897595345974, - 0.0017781195929273963, - -0.038436830043792725, - 0.00110592320561409, - 0.012137946672737598, - 0.01469869539141655, - 0.007727057673037052, - 0.004577337298542261, - 0.004398085176944733, - 0.016977760940790176, - 0.012931779026985168, - 0.002728797262534499, - -0.028680380433797836, - -0.03444206342101097, - -0.0010827163932844996, - 0.015274863690137863, - 0.027502436190843582, - 0.015415704809129238, - -0.01829654537141323, - 0.013091825880110264, - -0.009084254503250122, - -0.009372338652610779, - -0.0347493551671505, - -0.010563086718320847, - 0.0037642999086529016, - 0.007368552964180708, - -0.00809196475893259, - -0.014199349097907543, - 0.013776825740933418, - 0.00499666016548872, - -0.006289837881922722, - 0.019589724019169807, - -0.008232805877923965, - -0.014583460986614227, - 0.014263368211686611, - 0.02873159572482109, - 0.025850754231214523, - 0.047706738114356995, - -0.03195813670754433, - -0.0053423610515892506, - 0.03743813931941986, - -0.03257271647453308, - 0.0017813205486163497, - 0.02093411609530449, - 0.0050094639882445335, - -0.022905893623828888, - 0.016171125695109367, - -0.00959000177681446, - 0.03564561530947685, - 0.016311965882778168, - 0.02030673436820507, - -0.02133103273808956, - 0.017528321593999863, - -0.023699725046753883, - 0.008040749467909336, - 0.021766360849142075, - 0.0027079912833869457, - -0.021100565791130066, - 0.04617029055953026, - 0.014199349097907543, - 0.03316168859601021, - 0.0066835531033575535, - 0.004724580328911543, - -0.0005861712852492929, - -0.019154397770762444, - -0.016017479822039604, - -0.0035914494656026363, - -0.03751496225595474, - -0.02175355702638626, - 0.004276449792087078, - -0.006978039164096117, - 0.03239346668124199, - -0.007541403640061617, - -0.00831602979451418, - 0.007477384991943836, - 0.013968882150948048, - -0.006440281867980957, - 0.03175327926874161, - 0.023456454277038574, - 0.01875748112797737, - -0.019128790125250816, - 0.0010451053967699409, - -0.0004081192601006478, - -0.006882010959088802, - -0.014826732687652111, - 0.005892921704798937, - -0.0025975590106099844, - 0.005025468301028013, - -0.016862526535987854, - 0.034109167754650116, - 0.008226403966546059, - -0.005700865760445595, - -0.008008739911019802, - 0.019410472363233566, - 0.008213600143790245, - -0.010339020751416683, - 0.025005707517266273, - 0.028321875259280205, - -0.009570796974003315, - 0.0305241197347641, - 0.003167325397953391, - -0.02770729549229145, - -0.004164416808634996, - 0.022496173158288002, - 0.02523617446422577, - -0.035517577081918716, - 0.002141425618901849, - 0.012342806905508041, - 0.0016356779960915446, - 0.010185375809669495, - -0.008303225971758366, - -0.011632198467850685, - -0.013047012500464916, - 0.027681687846779823, - -0.011753834784030914, - -0.01604308746755123, - -0.014237760566174984, - 0.02195841632783413, - 0.006206613499671221, - 0.010159769095480442, - -0.0075221979059278965, - 0.010844768956303596, - -0.004650958813726902, - -0.012554068118333817, - -0.002948061330243945, - -0.02640131488442421, - 0.009103460237383842, - -0.01801486313343048, - -0.006549113430082798, - -0.0006549913669005036, - -0.006773178931325674, - -0.01889832131564617, - -0.003047290490940213, - -0.020460378378629684, - 0.004417290911078453, - 0.0037771037314087152, - 0.013226265087723732, - 0.09244301170110703, - 0.02499290369451046, - -0.011888273991644382, - 0.007458179257810116, - -0.01576140522956848, - 0.030191222205758095, - -0.004766192752867937, - 0.01094719860702753, - 0.0026071618776768446, - -0.06345534324645996, - 0.006702758371829987, - -0.00893701147288084, - 0.003188131609931588, - -0.050600387156009674, - -0.015210844576358795, - 0.008155982941389084, - -0.005857711657881737, - 0.015146825462579727, - -0.020537201315164566, - 0.020985331386327744, - 0.024903276935219765, - -0.026068417355418205, - 0.021868789568543434, - 0.029909539967775345, - -0.0293973907828331, - -0.03352019563317299, - 0.007477384991943836, - -0.00613299198448658, - -0.014813928864896297, - 0.0013764022151008248, - 0.0061874077655375, - -0.0030841012485325336, - -0.06458207219839096, - -0.03034486621618271, - 0.018040470778942108, - -0.008815376088023186, - 0.011248086579144001, - -0.005675258114933968, - 0.005070281680673361, - -0.0014740306651219726, - -0.021036546677350998, - 0.03331533446907997, - -0.013315890915691853, - 0.004081192426383495, - 0.003937150351703167, - -0.008277618326246738, - -0.012067526578903198, - -0.016491219401359558, - -0.018949536606669426 - ], - "sparse": "SparseEmbedding(values=array([1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722,\n 1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722]), indices=array([2077811411, 1520550099, 2028297786, 1841900287, 2124172637,\n 1109731834, 52870164, 922977895, 911111262, 593539916]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 35, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 11 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000036.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000036.json deleted file mode 100644 index 8ea8c3bc09f43175112c38c69ee06627bfc1d33f..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000036.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000036", - "content": "Abbildung 20: Gebietsausschnitte Grafenb\u00fchl f\u00fcr die Baumpflanzungsszenarien (eigene Darstellung) ................................................................................................................ 37", - "embedding": { - "dense": [ - 0.0014224841725081205, - -0.016479436308145523, - 0.03119732066988945, - -0.015049771405756474, - -0.000639439735095948, - 0.029844244942069054, - -0.03538419306278229, - -0.006226060912013054, - -0.016339022666215897, - -0.007639769464731216, - -0.011871320195496082, - 0.004940001294016838, - -0.015483776107430458, - 0.004091138020157814, - 0.011667083017528057, - 0.0250701867043972, - 0.02559354528784752, - -0.00318164168857038, - 0.010671423748135567, - 0.004020931199193001, - 0.002348734298720956, - 0.01739850454032421, - 0.030150601640343666, - -0.004844264592975378, - 0.0037879724986851215, - 0.024470238015055656, - 0.013186100870370865, - -0.03293333947658539, - -0.026270084083080292, - 0.011686230078339577, - 0.001462374348193407, - 0.0031289865728467703, - -0.013211631216108799, - 0.0061781927943229675, - -0.012662742286920547, - -0.009005608968436718, - -0.011060751974582672, - -0.025772254914045334, - 0.026027550920844078, - 0.012426592409610748, - -0.011303284205496311, - -0.005584626458585262, - 0.0019817445427179337, - -0.033443935215473175, - -0.0014344512019306421, - 0.012477651238441467, - -0.0008360983920283616, - 0.012164912186563015, - -0.016109254211187363, - 0.017717627808451653, - 0.011609640903770924, - 0.031452618539333344, - -0.03252486512064934, - -0.002335969591513276, - -0.014334938488900661, - 0.020806722342967987, - -0.018470752984285355, - 0.007435531355440617, - 0.0016785792540758848, - -0.010084239766001701, - -0.014283879660069942, - -0.024661710485816002, - -0.014845533296465874, - 0.002021634951233864, - -0.03906047344207764, - -0.01776868663728237, - 0.0006693573668599129, - 0.01097139809280634, - 0.015190184116363525, - -0.024559592828154564, - 0.02069183997809887, - 0.011864937841892242, - 0.011564964428544044, - -0.017513388767838478, - 0.013064835220575333, - -0.013862638734281063, - 0.0073717073537409306, - -0.0065228440798819065, - -0.010984162800014019, - -0.0029423004016280174, - 0.019555766135454178, - -0.022963983938097954, - -0.035486314445734024, - 0.039137061685323715, - 0.019964242354035378, - 0.014322173781692982, - -0.0004627261951100081, - 0.011820261366665363, - -0.02637220174074173, - -0.004707042593508959, - 0.025785019621253014, - 0.029793186113238335, - 0.0038422232028096914, - 0.019683415070176125, - -0.019211115315556526, - -0.0021062020678073168, - -0.0013458949979394674, - 0.00213013612665236, - 0.028133753687143326, - -0.032984402030706406, - -0.003982636611908674, - 0.02398517355322838, - 0.00447089271619916, - 9.424057498108596e-05, - -0.021202433854341507, - -0.013173336163163185, - 0.020155714824795723, - 0.004206021782010794, - 0.013479692861437798, - -0.046847037971019745, - -0.02032165788114071, - 0.02836352027952671, - -0.008903490379452705, - 0.008807754144072533, - 0.015726309269666672, - -0.03168238326907158, - 0.04697468876838684, - 0.009573645889759064, - 0.0017376167234033346, - -0.004190065432339907, - 0.025785019621253014, - -0.021981090307235718, - -0.00015018656267784536, - -0.032626982778310776, - 0.013026540167629719, - 0.0038996650837361813, - 0.024495767429471016, - 0.004975104704499245, - -0.010843749158084393, - -0.015522071160376072, - -0.024074528366327286, - 0.03691597655415535, - 0.003266208805143833, - 0.009880002588033676, - -0.015088065527379513, - 0.007658916525542736, - -0.016134783625602722, - 0.0004711031506303698, - -0.03398006036877632, - -0.028159283101558685, - 0.0077865649946033955, - 0.03540972247719765, - -0.028644347563385963, - -0.019236644729971886, - 0.005016590468585491, - 0.03844776004552841, - 0.00012545465142466128, - 0.016466669738292694, - 0.010237418115139008, - -0.023729875683784485, - 0.009209847077727318, - -0.0064398725517094135, - 0.04005613178014755, - -0.012164912186563015, - 0.001353873056359589, - -0.02884858474135399, - -0.017589978873729706, - 0.01822822168469429, - -0.03043142892420292, - -1.0277956789650489e-05, - 0.027852926403284073, - 0.0062675466760993, - 0.011584111489355564, - 0.014130701310932636, - 0.008271629922091961, - 0.0033124813344329596, - 0.0062452079728245735, - -0.0025210599415004253, - 0.021253492683172226, - -0.021202433854341507, - 0.0049017067067325115, - 0.013926463201642036, - -0.010148064233362675, - 0.011884085834026337, - -0.02388305403292179, - 0.0005688341334462166, - -0.012209589593112469, - -0.007767417933791876, - -0.018891993910074234, - -0.015675248578190804, - -0.042328279465436935, - 0.015279538929462433, - 0.010907573625445366, - 0.016453905031085014, - -0.037452101707458496, - 0.005626112222671509, - 0.035920318216085434, - 0.00739085441455245, - 0.004407068248838186, - -0.006573903374373913, - -0.0017902717227116227, - 0.00829077698290348, - 0.024112822487950325, - 0.006541991140693426, - -0.6523354649543762, - 0.0017679332522675395, - -0.015279538929462433, - -0.00751850288361311, - 0.02304057404398918, - 0.040336959064006805, - 0.018368635326623917, - -0.003985827788710594, - -0.001487904111854732, - -0.0035167192108929157, - 0.0036635149735957384, - -0.00014510056644212455, - -0.004834691062569618, - -0.007173851598054171, - -0.0009541733306832612, - -0.014411527663469315, - -0.018891993910074234, - 0.0002451252075843513, - 0.019160056486725807, - 0.01199258677661419, - -0.013607341796159744, - 0.01254785805940628, - 0.002769974758848548, - -0.012228736653923988, - 0.0077865649946033955, - 0.018113337457180023, - 0.003322055097669363, - -0.029410239309072495, - -0.004081564489752054, - 0.0034401300363242626, - -0.02759762853384018, - 0.023780936375260353, - -0.009152404963970184, - 0.03275463357567787, - 0.03443959355354309, - 0.014271114021539688, - -0.03122285008430481, - 0.0029662344604730606, - 0.003698618384078145, - 0.02472553588449955, - -0.0063856216147542, - -0.002339160768315196, - 0.006956849247217178, - -0.0038390320260077715, - -0.007812094874680042, - 0.011443697847425938, - 0.025236129760742188, - -0.022044913843274117, - -0.0034656596835702658, - -0.019594062119722366, - 0.02153431996703148, - 0.0035486312117427588, - -0.008929019793868065, - 0.010154446586966515, - 0.016134783625602722, - 0.015368892811238766, - 0.012375532649457455, - 0.004975104704499245, - -0.0018461180152371526, - 0.007422766648232937, - 0.0013466927921399474, - 0.013039305806159973, - -0.01094586867839098, - -0.005463360343128443, - -0.021266257390379906, - 0.026129670441150665, - -0.026576440781354904, - -0.01779421605169773, - 0.021674733608961105, - -0.035792671144008636, - -0.014551941305398941, - 0.005552714690566063, - 0.004624071065336466, - -0.033392876386642456, - 0.03734998404979706, - -0.000743154261726886, - 0.004505996126681566, - -0.0036571326199918985, - -0.020347189158201218, - -0.001838139956817031, - -0.01179473102092743, - -0.016109254211187363, - -0.011692612431943417, - 0.005884600803256035, - 0.02470000647008419, - -0.020959900692105293, - -0.020870547741651535, - -0.009056668728590012, - -0.007569562643766403, - 0.018432458862662315, - 0.020921606570482254, - 0.022006619721651077, - -0.03117178939282894, - -0.010262948460876942, - 0.0062643554992973804, - 0.013364809565246105, - 0.011258607730269432, - 0.04666833207011223, - 0.021636439487338066, - -0.033009931445121765, - -0.018470752984285355, - 0.0007938147755339742, - 0.00537081528455019, - 0.006324988789856434, - 0.02112584561109543, - 0.019389823079109192, - -0.033060990273952484, - -0.002388624707236886, - 0.03038036823272705, - -0.02388305403292179, - 0.014117936603724957, - -0.008846048265695572, - -0.0060952212661504745, - 0.0021955561824142933, - 0.0023599036503583193, - -0.027061505243182182, - 0.022159798070788383, - -0.017692096531391144, - -0.027648689225316048, - 0.013096746988594532, - 0.018432458862662315, - -0.006835583131760359, - 0.027852926403284073, - -0.01822822168469429, - 0.006663257256150246, - 0.026576440781354904, - -0.00436877366155386, - -0.018764344975352287, - -0.01300101075321436, - -0.0031465382780879736, - -0.0011855365009978414, - 0.014692354947328568, - 0.035843729972839355, - -0.012471268884837627, - 0.010805455036461353, - -0.0170921478420496, - 0.01987488754093647, - 0.008246100507676601, - -0.00751850288361311, - -0.030890963971614838, - -0.02639773301780224, - -0.021176904439926147, - 0.031758975237607956, - -0.023614993318915367, - -0.015279538929462433, - 0.005667598452419043, - -0.012879745103418827, - 0.0073717073537409306, - -0.008233334869146347, - 0.009892767295241356, - -0.006765376310795546, - -0.014679590240120888, - 0.002974212635308504, - -0.009190700016915798, - 0.022427860647439957, - 0.0005812000599689782, - -0.003318863920867443, - -0.03571607917547226, - -0.007863154634833336, - -0.028440110385417938, - 0.013122277334332466, - 0.013224395923316479, - -0.0355629026889801, - -0.0025673327036201954, - 4.9264384870184585e-05, - 0.01584119163453579, - -0.0012828685576096177, - 0.022593803703784943, - 0.025708429515361786, - -0.029001763090491295, - 0.006063309032469988, - -0.020117420703172684, - -0.0045570554211735725, - 0.0034688508603721857, - -0.03359711542725563, - -0.02552972175180912, - -0.01030762493610382, - -6.317609222605824e-05, - -0.020398247987031937, - -0.010913955979049206, - 0.00627073785290122, - 0.0019290896598249674, - -0.008692869916558266, - -0.0051665776409208775, - 0.020832253620028496, - 0.010639511980116367, - 0.00218279124237597, - 0.017921864986419678, - -0.004569820128381252, - -0.02387028932571411, - 0.0063696657307446, - 0.05642068386077881, - -0.014258349314332008, - 0.031758975237607956, - -0.024980831891298294, - -0.0024364928249269724, - -0.0037337217945605516, - 0.009618322364985943, - -0.02872093766927719, - 0.023283105343580246, - 0.03165685385465622, - 0.008380130864679813, - 0.01981106400489807, - 0.0024923391174525023, - 0.02546589821577072, - -0.01861116662621498, - 0.007965273223817348, - -0.009886384941637516, - 0.027750806882977486, - -0.004620879422873259, - 0.01870052143931389, - -0.001385785173624754, - -0.029971893876791, - 0.007633386645466089, - 0.008890725672245026, - 0.008412043564021587, - 0.007263205945491791, - -0.01991318352520466, - 0.005118709057569504, - -0.012381915003061295, - 0.018815405666828156, - 0.0003943145275115967, - -0.0006565925432369113, - -0.013837109319865704, - -0.016785791143774986, - 0.009873620234429836, - -0.013441398739814758, - 0.0026518998201936483, - 0.009126875549554825, - 0.007869536988437176, - -0.009554498828947544, - 0.0022801232989877462, - -0.01787080615758896, - 0.006347327027469873, - 0.014079641550779343, - 0.00033587540383450687, - 0.01479447353631258, - -0.020436542108654976, - 0.04186874255537987, - 0.0077035934664309025, - 0.02877199649810791, - 0.017219796776771545, - 0.009043904021382332, - -0.005351667758077383, - 0.013326514512300491, - 0.004924044944345951, - 0.0165560245513916, - 0.02195556089282036, - -0.01862393133342266, - 0.003529484150931239, - -0.01626243256032467, - 0.006088838446885347, - 0.0021604527719318867, - 0.005434639751911163, - 0.03678832948207855, - -0.007582327350974083, - 0.021725792437791824, - 0.0031034566927701235, - 0.012649977579712868, - 0.015419951640069485, - 0.011264990083873272, - 0.01944088377058506, - 0.002288101240992546, - -0.00760147487744689, - -0.0034465123899281025, - -0.006676022429019213, - -0.016415610909461975, - -0.02879752591252327, - -0.0007347773062065244, - 0.0020359952468425035, - 0.027418920770287514, - 0.0054123010486364365, - -0.028235873207449913, - 0.011175635270774364, - -0.014603001065552235, - -0.0032805693335831165, - -0.0017695288406684995, - 0.008622663095593452, - 0.00850777979940176, - -0.02067907527089119, - -0.011335196904838085, - -0.0215215552598238, - -0.005744187626987696, - 0.03211639076471329, - 0.010703335516154766, - -0.013926463201642036, - 0.011998969130218029, - 0.01077992469072342, - -0.02683173678815365, - 0.006238825619220734, - 0.007480208296328783, - -0.0010969801805913448, - -0.006561138667166233, - -0.009031139314174652, - -0.008412043564021587, - -0.007161086890846491, - 0.006114368326961994, - -0.014909357763826847, - 0.0038741352036595345, - 0.019274940714240074, - -0.013505223207175732, - 0.002345543121919036, - -0.0013458949979394674, - -0.01827928051352501, - 0.04659174382686615, - -0.011864937841892242, - -0.032626982778310776, - 0.0003829458146356046, - 0.004713424947112799, - -0.02549142763018608, - 0.005058076232671738, - -0.009043904021382332, - -0.01153305172920227, - 0.00873754732310772, - -0.011258607730269432, - 0.008309924043715, - -0.006893024779856205, - -0.015394422225654125, - 0.04554502293467522, - 0.015496540814638138, - -0.006324988789856434, - -0.03520548716187477, - -0.013466928154230118, - 0.00648135831579566, - 0.03673727065324783, - 0.045570552349090576, - 0.009414085187017918, - 0.01663261465728283, - -0.0039666807278990746, - -0.019389823079109192, - -0.006988761480897665, - -0.0495787188410759, - -0.007301500532776117, - -0.0034688508603721857, - -0.005348476581275463, - -0.002840181579813361, - 0.007263205945491791, - -0.022963983938097954, - 0.01277762558311224, - -0.004620879422873259, - -0.003487998154014349, - -0.014934887178242207, - -0.010926720686256886, - 0.01699003018438816, - -0.004509187303483486, - -0.017270857468247414, - -0.005986719857901335, - 0.053357116878032684, - 0.007926978170871735, - -0.012828685343265533, - 0.01503700576722622, - 0.010601216927170753, - 0.008680105209350586, - -0.025606311857700348, - -0.00011677853035507724, - 0.004020931199193001, - 0.01577736809849739, - 0.034669362008571625, - -0.023678816854953766, - -0.001515827258117497, - -0.0032007889822125435, - -0.022095974534749985, - 0.03316310793161392, - 0.005460169166326523, - 0.02310439758002758, - 0.028950704261660576, - 0.011475609615445137, - -0.024036232382059097, - 0.0037209568545222282, - -0.008558839559555054, - -0.015483776107430458, - 0.011213930323719978, - -0.0057409959845244884, - -0.007665298879146576, - 0.0165560245513916, - 0.008067391812801361, - -0.00737808970734477, - -0.01175643689930439, - -0.00538996234536171, - 0.0069313193671405315, - 0.007978037931025028, - -0.008067391812801361, - 0.01983659341931343, - -0.013543517328798771, - -0.029895303770899773, - -0.029001763090491295, - -0.0063696657307446, - -0.01822822168469429, - -0.005437830928713083, - -0.00749297346919775, - -0.015381657518446445, - -0.014054112136363983, - -0.013415868394076824, - 0.001436844700947404, - 0.009445996955037117, - 0.002626370172947645, - -0.004008166491985321, - -0.004170918371528387, - 0.024878714233636856, - 0.020398247987031937, - 0.01153305172920227, - -0.004949574824422598, - -0.0027843352872878313, - -0.0042985668405890465, - -0.013466928154230118, - -0.03921365365386009, - -0.00929920095950365, - -0.0075376504100859165, - -0.022542744874954224, - 0.016530495136976242, - -0.010282095521688461, - -0.006101603619754314, - 0.0033156725112348795, - 0.006758993957191706, - -0.005986719857901335, - -0.014449822716414928, - 0.004713424947112799, - 0.0034975719172507524, - -0.018943052738904953, - -0.011092663742601871, - 0.0022226814180612564, - 0.004930427297949791, - 0.013913698494434357, - -0.01871328614652157, - 0.028950704261660576, - -0.00749935582280159, - -0.015956075862050056, - -0.017998453229665756, - 0.010939485393464565, - 0.010339537635445595, - -0.013632871210575104, - -0.0031241998076438904, - -0.00739085441455245, - 0.01279677264392376, - 0.02683173678815365, - -0.010933103039860725, - 0.016351787373423576, - -0.004566628951579332, - -0.0024412795901298523, - 0.015139125287532806, - 8.06280440883711e-05, - -0.0031433471012860537, - 0.023768171668052673, - 0.011220312677323818, - 0.02961447648704052, - 0.007582327350974083, - 0.03163132444024086, - -0.010811837390065193, - -0.010275713168084621, - 0.04508548974990845, - -0.017334681004285812, - 0.006567521020770073, - -0.0198876541107893, - -0.0013267477042973042, - -0.014462587423622608, - 0.014513647183775902, - 0.0190068781375885, - -0.007135557010769844, - -0.02877199649810791, - -0.007831241935491562, - 0.008884343318641186, - 0.008833283558487892, - -0.017755921930074692, - -0.006021823268383741, - -0.014373233541846275, - 0.00548250786960125, - 0.010894808918237686, - 0.00423793401569128, - -0.015483776107430458, - -0.02508295141160488, - -0.02552972175180912, - 0.011839408427476883, - 0.020091891288757324, - 0.009088580496609211, - -0.02189173735678196, - -0.019351528957486153, - -0.013632871210575104, - -0.0011504330905154347, - -0.014334938488900661, - -0.024610651656985283, - -0.004777249414473772, - -0.012803155928850174, - 0.013517987914383411, - 0.0026965767610818148, - 0.0043974947184324265, - -0.0016083724331110716, - 0.006350518204271793, - -0.00537719763815403, - -0.0052431668154895306, - 0.022147033363580704, - 0.012375532649457455, - -0.011877703480422497, - -0.041179440915584564, - 0.03117178939282894, - -0.025414837524294853, - 0.0056739808060228825, - 0.026653029024600983, - 0.011673465371131897, - 0.024521296843886375, - 0.01475617941468954, - -0.018394164741039276, - -0.0006545979995280504, - -0.0017376167234033346, - 0.0026518998201936483, - -0.019938712939620018, - 0.0015341767575591803, - -0.0012820707634091377, - -0.009477909654378891, - 0.00024372906773351133, - 0.007939743809401989, - 0.04500889778137207, - 0.0026423262897878885, - 0.003564587328583002, - -0.011903232894837856, - 0.01705385372042656, - -0.0314781479537487, - 0.03155473619699478, - 0.014539176598191261, - -0.010039563290774822, - 0.0018732433672994375, - -0.0027348713483661413, - -0.026091376319527626, - -0.014960416592657566, - 0.02749551087617874, - -0.009669382125139236, - 0.008648193441331387, - -0.004228360019624233, - -0.031733445823192596, - -0.001917920308187604, - 0.0015605041990056634, - 0.005811202805489302, - -0.005192107055336237, - -0.0014687568182125688, - -0.019657885655760765, - -0.013849874027073383, - -0.028567759320139885, - -0.00739723676815629, - 0.0007060563657432795, - 0.03602243587374687, - 0.004729380831122398, - -0.022172562777996063, - 0.028899645432829857, - -0.009458761662244797, - 0.01903240755200386, - 0.015075300820171833, - -0.00872478261590004, - 0.03288228064775467, - 0.0341842956840992, - 0.04299205169081688, - 0.03449065238237381, - -0.03620114549994469, - -0.02304057404398918, - -0.02222362346947193, - -0.012905274517834187, - -0.008673722855746746, - 0.011686230078339577, - 0.011124576441943645, - -0.01783251017332077, - -0.017258092761039734, - 0.00025968512636609375, - 0.02683173678815365, - 0.006235634442418814, - -0.013900933787226677, - 0.037069156765937805, - 0.026423262432217598, - 0.018049513921141624, - -0.001491095288656652, - 0.015662483870983124, - -0.01580289751291275, - 0.015330597758293152, - 0.001622732961550355, - -0.01866222731769085, - 0.018955819308757782, - -0.014590236358344555, - -0.018075043335556984, - 0.0251340102404356, - -0.015483776107430458, - 0.03372476249933243, - -0.025044657289981842, - -0.018943052738904953, - 0.0019785533659160137, - -0.011915997602045536, - 0.0035550137981772423, - 0.02589990198612213, - 0.00436239130795002, - 0.03318863734602928, - 0.024585122242569923, - -0.019568530842661858, - 0.0072951181791722775, - -0.010671423748135567, - 0.002844968345016241, - -0.003724148264154792, - 0.0085141621530056, - 0.023168222978711128, - -0.011507522314786911, - -0.0036571326199918985, - -0.017513388767838478, - 0.02267039380967617, - 0.018764344975352287, - 0.020755663514137268, - 0.004017740022391081, - -0.009994885884225368, - -0.003111434867605567, - -0.0003173264558427036, - 0.018879229202866554, - 0.002530633704736829, - -0.013186100870370865, - -0.007780182640999556, - -0.0006426309701055288, - -0.006299458909779787, - -0.012381915003061295, - 0.00017820941866375506, - 0.019594062119722366, - -0.026104141026735306, - 0.0005241570761427283, - 0.03696703538298607, - -0.007690828759223223, - 0.03862646967172623, - 0.006063309032469988, - -0.029920833185315132, - -0.013237160630524158, - 0.019185585901141167, - -0.02951235882937908, - 0.009356643073260784, - 0.04896600544452667, - 0.003689044853672385, - -0.01396475825458765, - 0.020130185410380363, - -0.017270857468247414, - -0.018572872504591942, - 0.012637211941182613, - -0.011047987267374992, - -0.01479447353631258, - 0.008086539804935455, - -0.002335969591513276, - 0.01254785805940628, - 0.0013379169395193458, - -0.013466928154230118, - 0.00973958894610405, - -0.023806465789675713, - 0.019274940714240074, - -0.01818992756307125, - -0.016875145956873894, - 0.011877703480422497, - 0.02074289880692959, - 0.003347584744915366, - 0.011194783262908459, - -0.021266257390379906, - 0.011239459738135338, - 0.008756694383919239, - 0.017615508288145065, - 0.0043145231902599335, - -0.029333651065826416, - -0.04465148225426674, - 0.006924937013536692, - 0.028465639799833298, - -0.00537400646135211, - -0.014283879660069942, - -0.023334166035056114, - -0.013594577088952065, - -0.01399028766900301, - 0.01076715998351574, - -0.001199099118821323, - -0.007307882886379957, - 0.01053739245980978, - 0.022874630987644196, - 0.0005496868398040533, - 0.015624189749360085, - 0.00314175128005445, - 0.00659943325445056, - -0.0033571585081517696, - -0.01356904674321413, - -0.030661195516586304, - -0.006238825619220734, - -0.0005137856351211667, - 0.017181502655148506, - 0.012432974763214588, - -0.018036749213933945, - -0.03209086135029793, - -0.002896027872338891, - -0.025031892582774162, - -0.022466154769062996, - -0.009031139314174652, - -0.0016434758435934782, - -0.0017966541927307844, - 0.027623159810900688, - -0.007001526188105345, - 0.030993081629276276, - -0.0017599551938474178, - 0.011686230078339577, - -0.01737297512590885, - -0.012911656871438026, - 0.019147291779518127, - -0.01979829929769039, - 0.022606568410992622, - -0.007416384294629097, - -0.025874372571706772, - -0.04097520187497139, - 0.0018907950725406408, - 0.006063309032469988, - 0.008220570161938667, - 0.009011992253363132, - -0.02073013409972191, - 0.0071100275963544846, - 0.0074419137090444565, - 0.0003119412867818028, - 0.0051474301144480705, - 0.01420729048550129, - 0.005859070923179388, - -0.043502647429704666, - -0.0064239162020385265, - -0.004636835772544146, - 0.029971893876791, - -0.03699256852269173, - -0.001566886669024825, - 0.004659174010157585, - -0.011118194088339806, - 0.003376305801793933, - 0.006988761480897665, - 0.009043904021382332, - -0.002825821051374078, - -0.024112822487950325, - 0.021789617836475372, - 0.00548889022320509, - -0.008909872733056545, - 0.009643852710723877, - 0.027878455817699432, - -0.005447404459118843, - -0.009024756960570812, - -0.0002764390083029866, - 0.0003432550875004381, - -0.028618818148970604, - 0.001621935167349875, - -0.01199258677661419, - 0.03918812423944473, - -0.015688013285398483, - 0.0028768805786967278, - -0.01300101075321436, - 0.0271125640720129, - -0.0032071713358163834, - -0.004745337180793285, - -0.02023230493068695, - 0.026525380089879036, - 0.040285900235176086, - -0.003756060265004635, - 0.0070142908953130245, - 0.0024843609426170588, - -0.00025649392046034336, - -0.01475617941468954, - -0.013581812381744385, - -0.01987488754093647, - -0.012356385588645935, - -0.007173851598054171, - 0.002047164598479867, - -0.010984162800014019, - -0.002576906234025955, - 0.0031433471012860537, - -0.005718657746911049, - -0.024534063413739204, - 0.015930546447634697, - 0.1721724420785904, - -0.02592543326318264, - -0.008214187808334827, - 0.013913698494434357, - 0.007563180290162563, - 0.001250158529728651, - 0.032958872616291046, - 0.02074289880692959, - 0.01990041881799698, - 0.0020854591857641935, - -0.025299955159425735, - -0.013237160630524158, - -0.014322173781692982, - 0.003695427207276225, - 0.014934887178242207, - -0.0275210402905941, - -0.019274940714240074, - -0.0020391864236444235, - -0.0037815901450812817, - 0.0190707016736269, - 0.011182018555700779, - -0.02269592322409153, - 0.001519018434919417, - -0.017513388767838478, - 0.029410239309072495, - -0.0017200650181621313, - -0.03135049715638161, - 0.018840935081243515, - 0.011399020440876484, - 0.012133000418543816, - 0.010128917172551155, - 0.008616280741989613, - 0.00217960006557405, - -0.007365324534475803, - -0.000849661068059504, - 0.00319121521897614, - 0.01522847916930914, - 0.02074289880692959, - 0.036354321986436844, - 0.02154708467423916, - 0.01984935812652111, - 0.0021205625962466, - 0.0017727200174704194, - -0.012330855242908001, - -0.010352302342653275, - 0.025836078450083733, - 0.007429149001836777, - 0.01154581643640995, - 0.005846306215971708, - -0.012522328644990921, - -0.01979829929769039, - -0.0063696657307446, - 0.00972044188529253, - 0.03811587393283844, - -0.008897108025848866, - -0.0005429054726846516, - 0.015636954456567764, - -0.011915997602045536, - -0.0004411855188664049, - 0.0023216090630739927, - -0.03972424566745758, - 0.03921365365386009, - 0.0065068877302110195, - 0.01619860902428627, - -0.021776853129267693, - -0.004493230953812599, - -0.027316803112626076, - 0.016747497022151947, - 0.004703851416707039, - -0.014437058009207249, - -0.009554498828947544, - -0.023793701082468033, - -0.01520294975489378, - 0.010607599280774593, - -0.010786307044327259, - -0.033877938985824585, - 0.007218529004603624, - -0.00931834802031517, - 0.02634667232632637, - 0.015930546447634697, - -0.002040782244876027, - 0.011105429381132126, - 0.003960297908633947, - -0.017743157222867012, - 0.001251754118129611, - -0.04368135333061218, - 0.012611682526767254, - 0.014475352130830288, - 0.00018020393326878548, - -0.04608114808797836, - -0.005236783996224403, - 0.0007260014535859227, - -0.005587817635387182, - -0.0074546788819134235, - 0.013492457568645477, - 0.022057680413126945, - 0.010594834573566914, - 0.040770966559648514, - -0.03122285008430481, - -0.004592158831655979, - 0.003609264502301812, - 0.07035991549491882, - 0.01898134872317314, - -0.005648450925946236, - -0.004917662590742111, - -0.0018189926631748676, - -0.0010467185638844967, - 0.014143466018140316, - 0.0031241998076438904, - 0.005725040100514889, - 0.0030077204573899508, - -0.0185984019190073, - 0.010862896218895912, - -0.010077857412397861, - 0.016453905031085014, - -0.01155858114361763, - -0.005399536341428757, - -0.011915997602045536, - -0.006650492548942566, - -0.021993855014443398, - -0.031095201149582863, - 0.011641552671790123, - 0.008124833926558495, - 0.021930031478405, - -0.019989771768450737, - 0.00010860104521270841, - -0.045187607407569885, - -0.006031396798789501, - 0.008392895571887493, - -0.021674733608961105, - 0.013415868394076824, - -0.006411151494830847, - 0.0017631463706493378, - -0.008858813904225826, - -0.0015740669332444668, - 0.026601970195770264, - -0.015509305521845818, - -0.016479436308145523, - -0.006631345022469759, - 0.010620363987982273, - 0.0397753082215786, - -0.007116409949958324, - -0.004831499885767698, - -0.003167281160131097, - 0.006567521020770073, - 0.00313856010325253, - -0.003947533201426268, - -0.0007315860711969435, - -0.008048244751989841, - -0.024508532136678696, - -0.01218406017869711, - -0.017896335572004318, - -0.018049513921141624, - -0.0014767348766326904, - 0.046847037971019745, - -0.007754652760922909, - -0.002498721471056342, - -0.036277733743190765, - -0.006238825619220734, - 0.01942811906337738, - -0.01946641318500042, - -0.014871062710881233, - 0.008316307328641415, - -0.02639773301780224, - 0.010007650591433048, - 0.009439614601433277, - -0.1602245271205902, - -0.010224653407931328, - 0.010913955979049206, - -0.031120730563998222, - 0.01032677199691534, - 0.00995020940899849, - 0.022912925109267235, - -0.016351787373423576, - -0.003807119792327285, - -0.007473825942724943, - 0.03691597655415535, - 0.03558843210339546, - -0.024380885064601898, - 0.0009717250359244645, - 0.011679847724735737, - 0.01178196631371975, - -0.00526231387630105, - 0.03410770744085312, - 0.03201426938176155, - 0.02683173678815365, - -0.004582584835588932, - -0.016019901260733604, - 5.38018939550966e-05, - -0.0004519558569882065, - 0.005527184810489416, - -0.007837624289095402, - -0.020359953865408897, - 0.03413323685526848, - -0.008041862398386002, - 0.004094329196959734, - -0.014845533296465874, - 0.020079126581549644, - 0.026270084083080292, - -0.02680620737373829, - -0.010818219743669033, - -0.02478935942053795, - 0.013466928154230118, - -0.01822822168469429, - -0.012196824885904789, - 0.0235639326274395, - 0.01656878925859928, - 0.0006885046605020761, - -0.019760005176067352, - 0.003111434867605567, - -0.004384729545563459, - 0.010345919989049435, - 0.012273414060473442, - 0.0001264519087271765, - -0.005054885055869818, - -0.010422509163618088, - -0.011833026073873043, - -0.019977007061243057, - 0.0029981466941535473, - 0.023295871913433075, - 0.007907831110060215, - 0.04043908044695854, - 0.014066876843571663, - 0.014526411890983582, - -0.0007930169813334942, - 0.008890725672245026, - -0.007231293711811304, - -0.01624966785311699, - -0.02435535378754139, - -0.009650235064327717, - -0.018560107797384262, - -0.018457988277077675, - 0.002332778414711356, - 0.015688013285398483, - 0.00019506302487570792, - -0.0030683535151183605, - -0.005000634118914604, - -0.03081437386572361, - 0.022517215460538864, - -0.005871836096048355, - -0.017117679119110107, - -0.01053739245980978, - -0.009024756960570812, - 0.0036347941495478153, - 0.012260648421943188, - -0.001838139956817031, - -0.01746232993900776, - 0.06877706944942474, - -0.022976750507950783, - -0.024597886949777603, - 0.010250183753669262, - 0.0006761387339793146, - -0.010869279503822327, - 0.01522847916930914, - 0.027316803112626076, - -0.000982096535153687, - -0.0072951181791722775, - -0.025708429515361786, - -0.017960159108042717, - -0.034235358238220215, - 0.026959385722875595, - 0.003564587328583002, - 0.008807754144072533, - -0.022861866280436516, - -0.0125350933521986, - -0.008788607083261013, - 0.019568530842661858, - -0.00015607036766596138, - -0.04776610806584358, - 0.014168995432555676, - 0.011909615248441696, - 0.0017200650181621313, - -0.004694277420639992, - 0.016747497022151947, - 0.02551695704460144, - -0.009816178120672703, - -0.023997938260436058, - 0.002894432283937931, - 0.008092922158539295, - -0.019785534590482712, - -0.0147817088291049, - 0.009024756960570812, - 0.01949194259941578, - -0.035052306950092316, - 0.013620106503367424, - -0.02065354399383068, - 0.020130185410380363, - 0.0025992447044700384, - -0.021815147250890732, - 0.01665814407169819, - 0.006561138667166233, - -0.006746228784322739, - -0.0776614099740982, - 0.005801629275083542, - 0.023295871913433075, - 0.010435273870825768, - 0.018751580268144608, - 0.0018221838399767876, - -0.0074419137090444565, - 0.027878455817699432, - -0.00043201076914556324, - 0.011903232894837856, - -0.03691597655415535, - -0.016517730429768562, - -0.00538038881495595, - -0.014539176598191261, - 0.035511843860149384, - -0.018560107797384262, - -0.016811322420835495, - -0.012898892164230347, - 0.009248142130672932, - 0.021304553374648094, - 0.0149859469383955, - 0.005721848923712969, - 0.00547931669279933, - -0.014743414707481861, - -0.0018987730145454407, - -0.012439357116818428, - -0.022147033363580704, - 0.00659943325445056, - 0.038269054144620895, - 0.006213296204805374, - 0.012918039225041866, - -0.0356905497610569, - 0.03696703538298607, - -0.021266257390379906, - 0.0011895254720002413, - -0.006905789952725172, - -0.01299462839961052, - -0.019134527072310448, - 0.00853969156742096, - -0.02103649079799652, - -0.013390338979661465, - -0.006411151494830847, - 0.01658155396580696, - -0.04592796787619591, - 0.004844264592975378, - -0.009892767295241356, - -0.013135042041540146, - -0.003452894976362586, - -0.001514231669716537, - -0.0147817088291049, - -0.03313757851719856, - -0.028669876977801323, - 0.006816435605287552, - 0.017194267362356186, - 0.00972044188529253, - 0.0015030623180791736, - -0.009324731305241585, - -0.01032677199691534, - -0.007269588299095631, - 0.002042377833276987, - -0.03203980252146721, - -0.0014831172302365303, - -0.028465639799833298, - 0.007844006642699242, - 0.008016332983970642, - 0.016734732314944267, - -0.05279546603560448, - -0.010365067049860954, - -0.0077865649946033955, - -0.0034656596835702658, - -0.03043142892420292, - 0.004617688246071339, - 0.002262571593746543, - 0.0029917643405497074, - -0.03313757851719856, - -0.007524885702878237, - -0.042379338294267654, - -0.007639769464731216, - 0.019594062119722366, - -0.029844244942069054, - -0.017666567116975784, - -0.029691066592931747, - 0.028976233676075935, - -0.00649412302300334, - 0.042762283235788345, - 0.0035071454476565123, - 0.003487998154014349, - -0.02476383000612259, - 0.02713809348642826, - -0.014717884361743927, - 0.026167964562773705, - 0.0010395384160801768, - 0.005061267409473658, - -0.03438853472471237, - -0.013939227908849716, - 0.003756060265004635, - 0.013300985097885132, - 0.0032119581010192633, - -0.012579770758748055, - -0.00971405953168869, - -0.035843729972839355, - 0.011201165616512299, - -0.0591268353164196, - 0.029716596007347107, - 0.02061524987220764, - 0.0002870099269784987, - -0.024508532136678696, - -0.0039666807278990746, - 0.007850388996303082, - 0.0149859469383955, - -0.013581812381744385, - -0.0029678300488740206, - -0.00627392902970314, - 0.021151375025510788, - 0.008226952515542507, - 0.011347961612045765, - -0.026857268065214157, - -0.02803163416683674, - 0.0013634467031806707, - 0.014896593056619167, - 0.022121503949165344, - 0.011998969130218029, - -0.014079641550779343, - 0.01580289751291275, - 0.008252482861280441, - -0.014679590240120888, - -0.022440625354647636, - -0.012579770758748055, - 0.008360983803868294, - 0.0019227071898058057, - -0.009426849894225597, - -0.019325999543070793, - 0.015139125287532806, - 0.0053293295204639435, - -0.006784523371607065, - 0.01626243256032467, - -0.013428634032607079, - -0.018062278628349304, - 0.014360468834638596, - 0.026270084083080292, - 0.021636439487338066, - 0.05345923826098442, - -0.016377316787838936, - -0.009050286374986172, - 0.029818715527653694, - -0.03326522931456566, - 0.004024122375994921, - 0.017717627808451653, - 0.004531525541096926, - -0.019160056486725807, - 0.018330339342355728, - -0.008660958148539066, - 0.02925706095993519, - 0.010799072682857513, - 0.006155854091048241, - -0.016938969492912292, - 0.009618322364985943, - -0.03214192017912865, - 0.005680363159626722, - 0.030176131054759026, - 0.010709717869758606, - -0.01822822168469429, - 0.038013756275177, - 0.007990802638232708, - 0.040362488478422165, - 0.007792947348207235, - 0.0038103109691292048, - 0.0014480139361694455, - -0.02103649079799652, - 0.004857029765844345, - -0.004735763184726238, - -0.018955819308757782, - -0.015956075862050056, - 0.004020931199193001, - -0.007065350655466318, - 0.02757209911942482, - -0.0057569523341953754, - -0.012866979464888573, - 0.01051186304539442, - 0.018930288031697273, - -0.010045945644378662, - 0.02555525116622448, - 0.02061524987220764, - 0.007665298879146576, - -0.02310439758002758, - -0.004857029765844345, - 0.007346177473664284, - -0.00994382705539465, - -0.016926204785704613, - 0.006513270083814859, - -0.003947533201426268, - -0.0011089473264291883, - -0.00954811554402113, - 0.021227963268756866, - 0.008597133681178093, - -0.000689701410010457, - -0.009445996955037117, - 0.017130443826317787, - 0.014168995432555676, - -0.009037521667778492, - 0.018726050853729248, - 0.029971893876791, - -0.0016283175209537148, - 0.025721194222569466, - 0.007588709704577923, - -0.024470238015055656, - -0.008903490379452705, - 0.016377316787838936, - 0.019708944484591484, - -0.0550420805811882, - 0.0016610275488346815, - -0.00404007826000452, - -0.011922379955649376, - 0.01737297512590885, - -0.007850388996303082, - -0.011201165616512299, - -0.0190068781375885, - 0.03191215172410011, - -0.020117420703172684, - -0.007563180290162563, - -0.027393391355872154, - 0.01660708338022232, - 0.008009950630366802, - 0.018509048968553543, - -0.003353967098519206, - 0.010333155281841755, - 0.007435531355440617, - 0.0015277942875400186, - 0.01071610115468502, - -0.020436542108654976, - -0.004113476257771254, - -0.014283879660069942, - -0.020500367507338524, - 0.005211254581809044, - -0.013709460385143757, - -0.020028065890073776, - -0.0039539155550301075, - -0.021636439487338066, - 0.0025322292931377888, - -0.0035039542708545923, - 0.006624962668865919, - 0.09251971542835236, - 0.02070460468530655, - -8.696061559021473e-05, - 0.006190957501530647, - -0.010703335516154766, - 0.024917008355259895, - 0.0005285450024530292, - 0.017513388767838478, - 0.004062416963279247, - -0.05591009184718132, - 0.0034337476827204227, - -0.017168737947940826, - 0.0017424034886062145, - -0.05103391408920288, - -0.013479692861437798, - 0.012037264183163643, - -0.005035737529397011, - 0.026653029024600983, - -0.02877199649810791, - 0.02071736939251423, - 0.016492201015353203, - -0.015930546447634697, - 0.017653802409768105, - 0.0295634176582098, - -0.02872093766927719, - -0.02021954022347927, - 0.005070840939879417, - -0.009024756960570812, - -0.011903232894837856, - -0.007007908541709185, - 0.002955065341666341, - -0.0059197042137384415, - -0.0558590330183506, - -0.030533546581864357, - 0.02471277117729187, - -0.011660700663924217, - 0.0033699232153594494, - -0.013683930970728397, - 0.007410001941025257, - 0.013186100870370865, - -0.016351787373423576, - 0.03678832948207855, - -0.01744956523180008, - -2.3111379050533287e-05, - 0.00750573817640543, - -0.014194524846971035, - -0.018100572749972343, - -0.01668367348611355, - -0.01154581643640995 - ], - "sparse": "SparseEmbedding(values=array([1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722,\n 1.64774722, 1.64774722, 1.64774722, 1.64774722, 1.64774722]), indices=array([2077811411, 163077544, 2028297786, 627407068, 2124172637,\n 1109731834, 52870164, 922977895, 911111262, 1813251204]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 36, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 11 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000037.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000037.json deleted file mode 100644 index 1406ccb87b8a88c4dc92406eb8a01ef9e5102072..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000037.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000037", - "content": "(eigene", - "embedding": { - "dense": [ - 0.0031306720338761806, - -0.0011713117128238082, - 0.00582758616656065, - -0.036528367549180984, - 0.0028508815448731184, - 0.015813948586583138, - -0.03748197481036186, - -0.011728016659617424, - -0.007443416863679886, - -0.015522570349276066, - 0.005357405636459589, - 0.021681269630789757, - 0.0017565536545589566, - 0.0020230994559824467, - -0.012251175008714199, - 0.022396473214030266, - 0.035256896167993546, - -0.009754584170877934, - 0.023005720227956772, - -0.011006190441548824, - -0.005890497472137213, - 0.009463205002248287, - 0.014436519704759121, - 0.0020346883684396744, - -0.010906857438385487, - -0.008754623122513294, - -0.0076288399286568165, - -0.02895250730216503, - -0.015032523311674595, - -0.01065521128475666, - 0.012873667292296886, - -0.013006112538278103, - -0.013588870875537395, - 0.00872151181101799, - -0.01630399562418461, - -0.014648431912064552, - -0.0033458953257650137, - 0.00703283678740263, - 0.03321724012494087, - 0.015310658141970634, - -0.009257915429770947, - 0.01679404266178608, - 0.0033078172709792852, - -0.01000623032450676, - -0.029800156131386757, - -0.006907013710588217, - -0.007708306889981031, - 0.010529388673603535, - -0.019985971972346306, - 0.012953134253621101, - 0.03891238197684288, - 0.026753917336463928, - -0.009761206805706024, - 0.0006485672784037888, - -0.007827507331967354, - 0.006075920537114143, - -0.005671963095664978, - 0.006168632302433252, - 0.0013426626101136208, - 0.0028641261160373688, - -0.00763546209782362, - -0.003198550082743168, - -0.04725642502307892, - -0.00023943597625475377, - -0.020396551117300987, - -0.010158541612327099, - 0.0029369709081947803, - -0.006367300171405077, - -0.002107533160597086, - -0.018370140343904495, - 0.04259435459971428, - -0.0022300449199974537, - -0.003950176294893026, - 0.010264498181641102, - 0.015363635495305061, - -0.01961512491106987, - -0.013416692614555359, - -0.0023393123410642147, - -0.0033227172680199146, - 0.010390320792794228, - 0.009582405909895897, - -0.05138871446251869, - -0.012820689007639885, - 0.007820885628461838, - 0.008734757080674171, - 0.004016398917883635, - -0.034859560430049896, - 0.02507186494767666, - -0.02356198988854885, - 0.001509046764113009, - 0.020939575508236885, - 0.00989365205168724, - -0.004486578982323408, - -0.0015164967626333237, - -0.032766927033662796, - -0.0023608345072716475, - -0.005360716953873634, - 0.013317358680069447, - 0.005754741374403238, - -0.04074012488126755, - 0.006287832744419575, - 0.03864749148488045, - -0.002888959599658847, - -0.005311049986630678, - -0.004466712474822998, - -0.00012220133794471622, - 0.007489772513508797, - -0.0032117946539074183, - -0.0012069062795490026, - -0.020687930285930634, - -0.0010935001773759723, - 0.009622138924896717, - -0.012794200330972672, - -0.007562617305666208, - 0.014370297081768513, - -0.019548902288079262, - 0.0031935833394527435, - -0.001644803094677627, - -0.026793651282787323, - -0.008966535329818726, - 0.0025313575752079487, - 0.019310500472784042, - 0.01736355759203434, - -0.006695101503282785, - 0.01614506170153618, - 0.01366833783686161, - -0.01720462366938591, - 0.006036187056452036, - 0.0017830426804721355, - -0.0072315046563744545, - 0.0204230397939682, - 0.01317829079926014, - 0.007688440382480621, - 0.015721237286925316, - -0.015059011988341808, - 0.010708189569413662, - -0.013549137860536575, - 0.01213859673589468, - -0.026171158999204636, - -0.01969459094107151, - 0.0019717770628631115, - 0.01801253855228424, - -0.03329670801758766, - -0.003026371356099844, - 0.004685246851295233, - 0.010641966946423054, - 0.01896614395081997, - 0.0185820534825325, - 0.0018939654109999537, - -0.01109890267252922, - 0.0017399979988113046, - -0.02332358807325363, - 0.037958774715662, - -0.026250626891851425, - -0.01728408969938755, - 0.008880446664988995, - -0.01339020300656557, - 0.01848934032022953, - -0.019482679665088654, - -0.011496237479150295, - 0.009171825833618641, - -0.0021257444750517607, - 0.02966771088540554, - -0.02267460711300373, - 0.010224764235317707, - 0.016754310578107834, - 0.0005980725982226431, - 0.020158149302005768, - 0.017098667100071907, - -0.019747570157051086, - -0.018714498728513718, - 0.009112225845456123, - -0.01169490534812212, - 0.0225156731903553, - -0.028820062056183815, - 0.007602350786328316, - 0.007681817747652531, - 0.010251253843307495, - -0.028926018625497818, - -0.015787459909915924, - -0.010840634815394878, - 0.019588636234402657, - 0.03345564007759094, - 0.019098589196801186, - -0.017416534945368767, - -0.010668455623090267, - 0.006807680241763592, - 0.02218456007540226, - 0.008012930862605572, - -0.02436990477144718, - 0.006082542706280947, - 0.013933228328824043, - 0.005665340926498175, - -0.01049627736210823, - -0.6781191229820251, - -0.019389968365430832, - 0.001082738977856934, - -0.007132170721888542, - 0.01729733496904373, - 0.03520391881465912, - 0.011900195851922035, - -0.00667192367836833, - -0.009536050260066986, - 0.02990611270070076, - -0.003681974718347192, - 0.017813870683312416, - -0.004006465431302786, - -0.008317554369568825, - 0.007708306889981031, - -0.008794357068836689, - 0.011165125295519829, - -0.015085500665009022, - 0.00453955726698041, - 0.010317476466298103, - -0.002177066868171096, - 0.00780101865530014, - -0.0065196119248867035, - -0.011833973228931427, - 0.03414435684680939, - -0.01961512491106987, - -0.00332602858543396, - -0.01487358845770359, - -0.00872151181101799, - 0.0329788401722908, - -0.032422568649053574, - 0.025204310193657875, - 0.0059037418104708195, - -0.00035118655068799853, - 0.04270031303167343, - 0.017734404653310776, - -0.022131582722067833, - 0.02289976365864277, - -0.020065438002347946, - 0.023773901164531708, - 0.0005496473168022931, - 0.006115654017776251, - -0.001406401745043695, - -0.004628957714885473, - -0.002955182222649455, - 0.0010587333235889673, - 0.010913479141891003, - -0.009072491899132729, - -0.01113863568753004, - -0.016780799254775047, - 0.018118495121598244, - -0.02499239705502987, - -0.008489733561873436, - 0.001172967255115509, - -0.003681974718347192, - 0.012125352397561073, - -0.013549137860536575, - -0.018197961151599884, - -0.009185070171952248, - 0.006294454913586378, - 0.008251331746578217, - 0.01913832314312458, - -0.005344161298125982, - -0.03046238236129284, - 0.019191300496459007, - -0.011893573217093945, - -0.022224294021725655, - -0.018833698704838753, - -0.008006308227777481, - -0.01825094036757946, - -0.005837519187480211, - 0.02844921499490738, - -0.01606559567153454, - -0.01290677860379219, - 0.014145140536129475, - 0.021760735660791397, - -0.00128554564435035, - -0.002425401471555233, - -0.015734482556581497, - -0.0007959125214256346, - 0.020846864208579063, - -0.021588556468486786, - -0.01729733496904373, - -0.0002241220063297078, - 0.020052194595336914, - -0.03149545192718506, - -0.022648118436336517, - 0.00872151181101799, - -0.014078917913138866, - -0.010277742519974709, - 0.016118573024868965, - 0.01647617481648922, - -0.0021257444750517607, - 0.001053766580298543, - 0.00419851066544652, - 0.020687930285930634, - -0.020356817170977592, - 0.03530987352132797, - 0.020634952932596207, - -0.03658134862780571, - -0.0030313380993902683, - -0.017548980191349983, - 0.023509012535214424, - 0.002388979075476527, - -0.006622256711125374, - 0.02235673926770687, - -0.030992161482572556, - 0.00840364396572113, - 0.03173385560512543, - -0.04081959277391434, - 0.025442710146307945, - -0.015072256326675415, - 0.002544602146372199, - -0.004340889398008585, - 0.002225078409537673, - -0.014860344119369984, - 0.011244592256844044, - 0.0015347080770879984, - 0.011324059218168259, - -0.018542319536209106, - 0.009244670160114765, - 0.001195317367091775, - 0.03038291446864605, - -0.0004271355574019253, - 0.011966418474912643, - 0.033084794878959656, - -0.009019513614475727, - -0.0230586975812912, - -0.014171629212796688, - -0.007979819551110268, - 0.015019278973340988, - -0.014939811080694199, - 0.015535814687609673, - -0.005075959954410791, - 0.020780641585588455, - -0.014330564066767693, - 0.026104936376214027, - -0.0012375342193990946, - 0.0037117749452590942, - -0.008595689199864864, - -0.034859560430049896, - 0.007112303748726845, - 0.0123041532933712, - -0.017866849899291992, - -0.0027200919575989246, - -0.04765376076102257, - 0.00606929836794734, - -0.0007834957796148956, - -0.026952585205435753, - 0.033402662724256516, - -0.004291222430765629, - -0.007602350786328316, - -0.0034501957707107067, - 0.016211284324526787, - 0.030250469222664833, - -0.022687852382659912, - -0.006370611023157835, - -0.012588909827172756, - -0.005281249992549419, - -0.009423471055924892, - 0.007430172059684992, - 0.010423432104289532, - -0.01985352672636509, - 0.013482915237545967, - -0.010185031220316887, - -0.0060295648872852325, - 0.019548902288079262, - -5.2020932344021276e-05, - -0.0204230397939682, - -0.025349998846650124, - -0.001172967255115509, - 0.013562382198870182, - 0.005691829603165388, - -0.019893258810043335, - 0.0004689385532401502, - -0.017231112346053123, - -0.03141598775982857, - -0.009900273755192757, - -0.016780799254775047, - 0.00048094140947796404, - 0.018833698704838753, - -0.00556931784376502, - -0.009463205002248287, - -0.008092397823929787, - 0.005830897018313408, - 0.015443103387951851, - 0.012800822034478188, - 0.024250704795122147, - -0.015257679857313633, - 0.006075920537114143, - -0.0002423332043690607, - 0.006777879782021046, - -0.010231386870145798, - 0.040952038019895554, - -0.005215027369558811, - 0.0004027159884572029, - 0.009516183286905289, - 0.03779984265565872, - 0.015164968557655811, - 0.020290594547986984, - 0.026727428659796715, - -0.0164894200861454, - 0.02572084590792656, - -0.019681347534060478, - 0.015522570349276066, - -0.05901755392551422, - 0.015217945910990238, - -0.008204976096749306, - 0.03530987352132797, - 0.02297923155128956, - -0.0031190828885883093, - -0.019893258810043335, - -0.03764090687036514, - 0.003635619068518281, - 0.03957460820674896, - 0.045534636825323105, - 0.0007230676710605621, - -0.00013741182920057327, - 0.01688675582408905, - -0.0007983958348631859, - 0.003403840120881796, - -0.022846786305308342, - 0.01976081356406212, - -0.008191731758415699, - 0.0143967866897583, - -0.0003230419533792883, - 0.007973196916282177, - 0.015164968557655811, - 0.01994623802602291, - -0.0013120346702635288, - -0.027522100135684013, - -0.00988702941685915, - -0.014211363159120083, - 0.014966300688683987, - 0.0016986088594421744, - 0.013986206613481045, - 0.017906581982970238, - -0.02297923155128956, - 0.015376880764961243, - 0.0015115301357582211, - -0.002115810988470912, - 0.03772037476301193, - 0.022965986281633377, - 0.0007346566417254508, - 0.003403840120881796, - 0.001556230359710753, - 0.02660822868347168, - 0.006390477996319532, - -0.013734560459852219, - 0.02876708284020424, - 0.008701645769178867, - -0.006774568930268288, - 0.004953448195010424, - -0.01318491343408823, - 0.013052468188107014, - 0.009853918105363846, - 0.014476253651082516, - 0.002440301701426506, - 0.006873902399092913, - 0.019085343927145004, - 0.015125234611332417, - -0.00803279783576727, - 0.001207734108902514, - -0.02050250768661499, - 0.016913244500756264, - -0.010032719001173973, - -0.011244592256844044, - -0.02708503045141697, - -0.011191613972187042, - 0.016833776608109474, - 0.009350626729428768, - -0.017390046268701553, - 0.02611818164587021, - 0.008946669287979603, - 0.01839662902057171, - -0.003721708431839943, - 0.0023343455977737904, - 0.013337225653231144, - 0.0002237081207567826, - 0.028926018625497818, - -0.044898901134729385, - -0.03430328890681267, - 0.013092202134430408, - 0.03425031155347824, - -0.006801057606935501, - -0.0036091299261897802, - -0.016052350401878357, - -0.009946629405021667, - -0.010622099973261356, - 0.007489772513508797, - 0.003943554125726223, - -0.00023095120559446514, - -0.001461863168515265, - 0.007052703760564327, - -0.010953213088214397, - -0.004817691631615162, - -0.0020181327126920223, - -0.037985265254974365, - 0.02491293102502823, - 0.0031273607164621353, - 0.006224921438843012, - -0.0038475312758237123, - 0.0015570581890642643, - 0.0008149514906108379, - 0.025932757183909416, - -0.013840517029166222, - 0.00015313968469854444, - -0.011350547894835472, - -0.01093996874988079, - -0.00667192367836833, - -0.009622138924896717, - -0.0021803779527544975, - -0.011562460102140903, - 0.008867202326655388, - -0.016436440870165825, - -0.0024999019224196672, - -0.026330092921853065, - -0.02064819633960724, - 0.03896535933017731, - 0.021681269630789757, - -0.006479878444224596, - -0.025297021493315697, - -0.004609090741723776, - 0.019734324887394905, - -0.005496473051607609, - -0.003258150303736329, - 0.00018055997497867793, - -0.004158777184784412, - 0.010595611296594143, - -0.004218377638608217, - -0.015496080741286278, - -0.06240814924240112, - 0.015204701572656631, - -0.007767907343804836, - -0.0020677996799349785, - -0.00620836578309536, - 0.016039106994867325, - -0.0027267143595963717, - 0.023840123787522316, - 0.0018525763880461454, - -0.007059325929731131, - -0.00659576803445816, - 0.013542515225708485, - 0.007979819551110268, - -0.008178487420082092, - 0.0010256220120936632, - 0.022793808951973915, - 0.009926763363182545, - 0.006009697914123535, - -0.033720530569553375, - 0.02548244409263134, - 0.021363399922847748, - 0.006476567126810551, - -0.006132209673523903, - -0.005893808789551258, - 0.018277429044246674, - 0.0031058385502547026, - 0.003206827910616994, - -0.03544231876730919, - 0.006655368022620678, - -0.00659576803445816, - 0.016754310578107834, - 0.03176034241914749, - 0.0006452561356127262, - 0.023177899420261383, - 0.01839662902057171, - 0.004152155015617609, - -0.023588478565216064, - 0.0043177115730941296, - -0.014515986666083336, - 4.7416393499588594e-05, - 0.02226402796804905, - 0.0002041517582256347, - -0.0017333757132291794, - 9.229770512320101e-05, - 0.0071387928910553455, - -0.0026075136847794056, - -0.011946551501750946, - -0.024012302979826927, - -0.00823808740824461, - 0.01044992171227932, - 0.00659576803445816, - 0.004758091643452644, - 0.013516026549041271, - -0.01495305635035038, - -0.014926566742360592, - -0.009668494574725628, - -0.01418487448245287, - 0.003335961839184165, - 0.0032200724817812443, - -0.02340305596590042, - 0.0008882101974450052, - -0.0260519590228796, - -0.013747804798185825, - 0.017588714137673378, - 0.008178487420082092, - -0.00703283678740263, - 0.001310379127971828, - 0.0170324444770813, - 0.008118886500597, - 0.01582719385623932, - -0.019482679665088654, - -0.002441957127302885, - 0.018052272498607635, - -0.005390516947954893, - -0.02635658159852028, - -0.003281328361481428, - 0.00023074426280800253, - -0.028263792395591736, - 0.01229753065854311, - -0.020846864208579063, - -0.007291104644536972, - 0.009536050260066986, - 0.02258189581334591, - 0.04270031303167343, - -0.013105446472764015, - -0.004185266327112913, - 0.008257954381406307, - 0.005675273947417736, - -0.020873352885246277, - 0.027469120919704437, - 0.010065830312669277, - -0.007284482475370169, - -0.00927778147161007, - 0.021601801738142967, - -0.018846942111849785, - -0.012357131578028202, - -0.000889865739736706, - 0.0018542319303378463, - 0.010264498181641102, - -0.011575705371797085, - 0.009959874674677849, - 0.0008257126319222152, - 0.02218456007540226, - 0.027283698320388794, - 0.01527092419564724, - -0.004662069026380777, - -0.0023343455977737904, - -0.008370532654225826, - -0.0026455915067344904, - -0.01278757769614458, - 0.004463401157408953, - 0.008132131770253181, - -0.0003739505773410201, - 0.009920140728354454, - -0.01257566548883915, - 0.03279341757297516, - 0.013867005705833435, - -0.0029121374245733023, - -0.006142143160104752, - 0.013681583106517792, - -0.011496237479150295, - -0.01704568974673748, - -0.004516378976404667, - 0.006986481137573719, - 0.02048926241695881, - -0.017217867076396942, - 0.0015876861289143562, - -0.03491253778338432, - -0.01962837018072605, - -0.008443377912044525, - 0.005036226473748684, - -0.00907911453396082, - 0.00310418289154768, - -0.012641888111829758, - -0.01048965472728014, - -0.003930309321731329, - -0.005830897018313408, - 0.0026373136788606644, - -0.033958934247493744, - -0.016608620062470436, - 0.005665340926498175, - 0.008774490095674992, - 0.036210499703884125, - -0.004976626019924879, - -0.0020164772868156433, - 0.0027118141297250986, - -0.015006033703684807, - -0.006317633204162121, - -0.04627633094787598, - 0.0006626395625062287, - 0.005082582123577595, - 0.019906504079699516, - 0.022224294021725655, - 0.0022813675459474325, - -0.009992985986173153, - 0.029243886470794678, - 0.008423510938882828, - 0.02113824337720871, - 0.004056132398545742, - 0.00847648922353983, - -0.016224529594182968, - -0.038938868790864944, - 0.02099255472421646, - 0.0030214046128094196, - 0.017588714137673378, - 0.015072256326675415, - -0.000635736680123955, - -0.02115148864686489, - 0.025614889338612556, - -0.02091308683156967, - -0.025124842301011086, - -0.004917025566101074, - -0.01711191236972809, - -0.005562695674598217, - 0.002208522753790021, - -0.007847374305129051, - 0.006145454477518797, - -0.0205687303096056, - 0.002544602146372199, - 0.0267009399831295, - -0.028740594163537025, - -0.008019553497433662, - -0.004777958150953054, - 0.01560203731060028, - -0.016264263540506363, - 0.017496002838015556, - -0.008297687396407127, - 0.004960070364177227, - 0.0026008912827819586, - -0.005575940478593111, - 0.014582209289073944, - -0.017072178423404694, - 0.020687930285930634, - 0.017813870683312416, - -0.01554905902594328, - -0.022648118436336517, - -0.005066026467829943, - -0.0017995983362197876, - 0.033720530569553375, - -0.009953252039849758, - -0.01687351055443287, - -0.008344043977558613, - -0.011555838398635387, - -0.017668182030320168, - -0.012251175008714199, - -0.0004018882173113525, - -0.013535892590880394, - 0.005009737331420183, - 0.016184795647859573, - -0.003698530374094844, - 0.03342915326356888, - 0.008834091015160084, - -0.019734324887394905, - -0.003403840120881796, - 0.0016646698350086808, - 0.008158620446920395, - -0.010204898193478584, - 0.018144983798265457, - 0.008781112730503082, - -0.036607835441827774, - -0.030488871037960052, - -0.05009075254201889, - -0.016661597415804863, - -0.01121148094534874, - -0.008748001419007778, - 0.01905885525047779, - -0.00028351537184789777, - -0.009529427625238895, - 0.01346304826438427, - -0.0011191613739356399, - -0.032846394926309586, - 0.004711735527962446, - 0.031177585944533348, - 0.008185109123587608, - 0.004575979430228472, - -0.014078917913138866, - 0.007397060748189688, - 0.005893808789551258, - 0.026793651282787323, - -0.004615712910890579, - -0.0008008792065083981, - -0.018476096913218498, - 0.0002446096041239798, - -0.014661676250398159, - 0.028316769748926163, - -0.0026687695644795895, - 0.010906857438385487, - 0.01793307065963745, - -0.009151958860456944, - -0.009238048456609249, - -0.015774216502904892, - -0.0006800229893997312, - 0.024568572640419006, - -0.008860579691827297, - 0.041932132095098495, - -0.005284560844302177, - -0.019191300496459007, - -0.0077215516939759254, - -0.0018740986706689, - -0.024714263156056404, - -0.0010338998399674892, - -0.011132013984024525, - 0.01591990515589714, - -0.011926684528589249, - 0.019734324887394905, - -0.012112108059227467, - -0.006681857164949179, - 0.016780799254775047, - 0.022767318412661552, - -0.0039865984581410885, - -0.010800900869071484, - -0.002345934510231018, - -0.00888706836849451, - 0.0060295648872852325, - 0.0032465613912791014, - -0.005168671254068613, - -0.019151566550135612, - -0.02629035897552967, - -0.019178055226802826, - -0.01174126099795103, - -0.02048926241695881, - -0.00020911845786031336, - -0.0007917736074887216, - 7.291596375580411e-07, - -0.01000623032450676, - -0.008973157964646816, - 0.009065869264304638, - 0.010204898193478584, - -0.017734404653310776, - -0.013112068176269531, - 0.015774216502904892, - -0.029455797746777534, - 0.01695297844707966, - -6.177323666634038e-05, - -0.005460050888359547, - -0.015880171209573746, - 0.021575313061475754, - -0.007463283371180296, - -0.02009192667901516, - 0.025257287546992302, - -0.006592456717044115, - -0.019495924934744835, - -0.0007797707221470773, - -0.019641613587737083, - 0.0019634992349892855, - 0.00016772934759501368, - -0.013814027421176434, - 0.0035727075301110744, - 0.00010031684360001236, - -2.770483297354076e-05, - -0.03515093773603439, - -0.02708503045141697, - 0.006413655821233988, - -0.0021522333845496178, - -0.0027647921815514565, - 0.02884655073285103, - 0.00639378884807229, - -8.593413076596335e-05, - 0.021959403529763222, - -0.001890654326416552, - -0.009231425821781158, - -0.014939811080694199, - -0.020317083224654198, - 0.009046003222465515, - 0.01913832314312458, - -0.002304545370861888, - 0.006324255373328924, - 0.01663510873913765, - -0.023495767265558243, - -0.015443103387951851, - 0.02235673926770687, - -0.008390399627387524, - -0.02380039170384407, - -0.024727506563067436, - 0.013959717005491257, - 0.0028094924055039883, - 0.0016828810330480337, - -0.013529270887374878, - -0.003883953671902418, - -0.0022913007996976376, - -0.014198118820786476, - -0.0020065438002347946, - -0.006496434099972248, - -0.017866849899291992, - 0.030276957899332047, - 0.017151644453406334, - -0.03872695937752724, - -0.00634743319824338, - 0.019654858857393265, - -0.025283776223659515, - 0.007529505994170904, - -0.012569043785333633, - -0.0013120346702635288, - 0.02034357376396656, - 0.020078683272004128, - -0.016184795647859573, - 0.016290752217173576, - -0.0006208365666680038, - 0.015959639102220535, - -0.029376331716775894, - -0.02010517194867134, - 0.012714733369648457, - -0.0037183971144258976, - -0.0030975607223808765, - 0.005056092981249094, - -0.01614506170153618, - 0.017628448083996773, - 0.015800705179572105, - -0.010072452947497368, - 0.0034071512054651976, - 0.005496473051607609, - 0.007006347645074129, - -0.00034642682294361293, - 0.0023492455948144197, - 0.024806974455714226, - 0.018065515905618668, - 0.003559462958946824, - 0.014145140536129475, - -0.031468965113162994, - 0.017217867076396942, - 0.0034501957707107067, - 0.015535814687609673, - -0.04558761790394783, - 0.0005715835723094642, - 0.01097307913005352, - -0.006019631400704384, - -0.003559462958946824, - -0.003738264087587595, - -0.008529466576874256, - -0.01695297844707966, - 0.005731563083827496, - 0.011324059218168259, - 0.0019072099821642041, - -0.010986324399709702, - 0.020767398178577423, - -0.022621629759669304, - -0.008575822226703167, - -0.006847413722425699, - -0.00812550913542509, - -0.03970705345273018, - -0.014158384874463081, - -0.0017366869142279029, - -0.025349998846650124, - 0.00261248042806983, - -0.005546140018850565, - 0.02692609652876854, - -0.0374554842710495, - 0.03062131628394127, - -0.018039027228951454, - 0.011178369633853436, - -0.008979780599474907, - 0.007993063889443874, - 0.012469709850847721, - -0.020846864208579063, - 0.0013385236961767077, - -0.013840517029166222, - 0.012363753281533718, - -0.0026323471684008837, - -0.012496198527514935, - 0.0042084441520273685, - -0.004072688054293394, - 0.017416534945368767, - 0.012867044657468796, - 0.02283354103565216, - -0.03689921647310257, - -0.0023062010295689106, - -0.0014196463162079453, - -0.008423510938882828, - 0.01170152798295021, - 0.15098746120929718, - 0.005936853121966124, - -0.004930270370095968, - 0.044978369027376175, - -0.019310500472784042, - -0.022634873166680336, - 0.0408460795879364, - 0.008834091015160084, - 0.0002261914632981643, - -0.005370650440454483, - -0.012469709850847721, - -0.01769467070698738, - -0.0012996179284527898, - -0.012284286320209503, - 0.02146935649216175, - -0.052289340645074844, - -0.019336989149451256, - -0.01076778955757618, - -0.01394647266715765, - 0.009251292794942856, - 0.01962837018072605, - -0.034038398414850235, - -0.01033072080463171, - 0.0062182992696762085, - 0.02289976365864277, - -0.006337499711662531, - -0.013131935149431229, - 0.02410501427948475, - 0.01880721002817154, - -0.007277860306203365, - -0.00944333802908659, - 0.01590666174888611, - 0.010741300880908966, - -0.007046081125736237, - -0.005158738233149052, - -0.001275612274184823, - 0.016767553985118866, - 0.008582444861531258, - 0.03960109502077103, - 0.03422382473945618, - 0.017138401046395302, - 0.0009213215089403093, - -0.00014155074313748628, - -0.013814027421176434, - 0.00038947147550061345, - 0.037905797362327576, - -0.00013875697914045304, - 0.008615556173026562, - 0.007072570268064737, - 0.0004821830661967397, - -0.022860029712319374, - -0.0038475312758237123, - -0.005493162199854851, - 0.0183304063975811, - -0.029641222208738327, - 0.01752249151468277, - 0.032104700803756714, - 0.01081414520740509, - -0.013655093498528004, - 0.002791281323879957, - -0.007940085604786873, - 0.008304310031235218, - 0.0043044667690992355, - 0.033323194831609726, - -0.021098509430885315, - -0.0010446610394865274, - -0.014317319728434086, - -0.005516340024769306, - 0.022475939244031906, - -0.019734324887394905, - -0.012383620254695415, - -0.012641888111829758, - -0.01422460749745369, - -0.00868177879601717, - -0.01680728793144226, - -0.04346849396824837, - 0.011913440190255642, - 0.0074963946826756, - 0.007152037229388952, - 0.027522100135684013, - -0.016661597415804863, - 0.004443534184247255, - -0.02362821251153946, - 0.008582444861531258, - -0.002235011663287878, - -0.03250203654170036, - -0.006469944957643747, - 0.015244435518980026, - -0.014886833727359772, - -0.03809121996164322, - -0.016370218247175217, - 0.000360912992618978, - 0.004254799801856279, - -0.022131582722067833, - -0.004628957714885473, - 0.016582131385803223, - -0.0072315046563744545, - 0.02757507748901844, - 0.006787813268601894, - 0.010290986858308315, - -0.022965986281633377, - 0.05138871446251869, - 0.028873039409518242, - 0.0009966496145352721, - -0.020515751093626022, - 0.0003623616066761315, - -0.017654936760663986, - 0.017866849899291992, - 0.008615556173026562, - 0.0022118338383734226, - -0.023257365450263023, - -0.010615477338433266, - 0.008906935341656208, - -0.005870630498975515, - 0.002768103266134858, - -0.0021886557806283236, - 0.0009643661323934793, - -0.01825094036757946, - 0.01334384735673666, - -0.015257679857313633, - -0.01606559567153454, - -0.006582523230463266, - -0.010754545219242573, - 0.007403683383017778, - 0.0027151252143085003, - 0.008231465704739094, - -0.04074012488126755, - 0.0016265917802229524, - 0.02636982686817646, - -0.0012987900990992785, - 0.01329749170690775, - 0.014727898873388767, - 0.017893338575959206, - 0.0034369511995464563, - 0.016608620062470436, - 0.0170324444770813, - -0.01630399562418461, - 0.003582641016691923, - 0.0013203124981373549, - 0.026502272114157677, - 0.005460050888359547, - 0.003754819743335247, - 0.002638969337567687, - -0.0015264302492141724, - -0.010992946103215218, - 0.0037614419125020504, - 0.016356974840164185, - 0.00719839334487915, - -0.02348252199590206, - -0.03676677122712135, - -0.01186046190559864, - -0.008026175200939178, - -0.011595571413636208, - 0.004158777184784412, - 0.03663432598114014, - 0.029243886470794678, - -0.04206457734107971, - -0.005052782129496336, - -0.0006974064162932336, - 0.010158541612327099, - -0.019668102264404297, - -0.008324177004396915, - 0.009469827637076378, - -0.033561598509550095, - -0.026343338191509247, - -0.008973157964646816, - -0.17111912369728088, - 0.025787068530917168, - 0.0023326899390667677, - -0.006493122782558203, - 0.0006444283644668758, - -0.012224686332046986, - 0.03266097232699394, - 0.017482757568359375, - -0.01005258597433567, - 0.0012375342193990946, - 0.030091535300016403, - -0.011105524376034737, - -0.020952820777893066, - -0.02629035897552967, - 0.003273050533607602, - 0.002794592408463359, - -0.01815822906792164, - 0.012608776800334454, - 0.02741614356637001, - 0.010277742519974709, - 0.03787931054830551, - -0.019085343927145004, - 0.010668455623090267, - 0.0013468015240505338, - -0.005463361740112305, - 0.03470062464475632, - 0.0006142143392935395, - 0.03213119134306908, - 0.00719839334487915, - 0.0029618043918162584, - 0.0035031738225370646, - 0.022939497604966164, - 0.024661283940076828, - 0.03062131628394127, - 0.009575783275067806, - -0.004168710671365261, - -0.009542671963572502, - -0.007688440382480621, - 0.004609090741723776, - 0.021244199946522713, - 0.02860814891755581, - 0.03305830433964729, - 0.006688479334115982, - 0.02516457624733448, - 0.008370532654225826, - 0.009999607689678669, - 0.014489497989416122, - -0.0056951409205794334, - 0.0035131073091179132, - -0.014025939628481865, - 0.000949466077145189, - -0.0049203368835151196, - 0.004006465431302786, - 0.03144247457385063, - 0.016979467123746872, - -0.0010446610394865274, - 0.017019199207425117, - 0.02154882438480854, - -0.007039458956569433, - -0.0043177115730941296, - -0.013231269083917141, - -0.027681034058332443, - 0.008794357068836689, - -0.0022499116603285074, - -0.0008348182309418917, - -0.02950877696275711, - -0.00884733535349369, - 0.009085736237466335, - -0.01137703750282526, - 0.03385297581553459, - -0.03687272593379021, - -0.025270532816648483, - 0.02074090763926506, - -0.014449764043092728, - 0.0028343258891254663, - -0.006781191099435091, - -0.009694984182715416, - -0.0058077191933989525, - 0.006377233192324638, - -0.002890615025535226, - -0.03353510797023773, - 0.07316269725561142, - -0.018105249851942062, - -0.03281990438699722, - 0.023018965497612953, - 0.01246308721601963, - -0.012198196724057198, - -0.01745626889169216, - -0.010191652923822403, - -0.008834091015160084, - 0.016052350401878357, - -0.022158071398735046, - -0.03385297581553459, - -0.019588636234402657, - -0.005724940914660692, - 0.009873785078525543, - -0.000737139955163002, - -0.004989870358258486, - -0.005546140018850565, - -0.01993299275636673, - 0.018515830859541893, - -0.007589106447994709, - -0.026025468483567238, - 0.03334968537092209, - 0.018211206421256065, - -0.02797241322696209, - 0.01825094036757946, - -0.0010156886419281363, - 0.02654200606048107, - -0.014701410196721554, - -0.015337146818637848, - -0.01817147247493267, - -0.0076487064361572266, - 0.01952241361141205, - 0.005231583025306463, - 0.014264341443777084, - -0.009072491899132729, - -0.01960187964141369, - 0.03827664628624916, - -0.022555407136678696, - 0.032475546002388, - -0.010125430300831795, - -0.003319406183436513, - 0.008814224041998386, - 0.003291261615231633, - -0.007205015514045954, - -0.04717695713043213, - -0.01801253855228424, - 0.023111676797270775, - 0.015866927802562714, - 0.011681661009788513, - 0.02250242792069912, - 0.006509678438305855, - 0.028025390580296516, - -0.022714341059327126, - 0.02091308683156967, - -0.0009138714522123337, - -0.027707522734999657, - -0.015244435518980026, - 0.005175293888896704, - 0.004675313364714384, - 0.00292372633703053, - -0.02097930945456028, - -0.020303839817643166, - -0.044898901134729385, - 0.011324059218168259, - 0.02451559528708458, - -0.012151841074228287, - -0.006860658060759306, - -0.019429702311754227, - 0.021204466000199318, - -0.007416927721351385, - -0.03281990438699722, - 0.031230563297867775, - 0.031786832958459854, - -0.029296863824129105, - -0.008231465704739094, - 1.2112780495954212e-05, - 0.01994623802602291, - -0.03385297581553459, - -0.0062050544656813145, - -0.0001823190104914829, - -0.013734560459852219, - -0.014582209289073944, - 0.024409638717770576, - -0.013370336964726448, - 0.02194615826010704, - 0.006085854023694992, - 0.0038276645354926586, - -0.005483228713274002, - -0.005781230051070452, - -0.012939889915287495, - 1.6633246559649706e-05, - -0.0018856875831261277, - 0.01695297844707966, - 0.006688479334115982, - -0.006714968476444483, - -0.00464220205321908, - -0.02958824299275875, - -0.010112185962498188, - 0.017164889723062515, - -0.009774451144039631, - 0.008489733561873436, - -0.005883875302970409, - -0.023575235158205032, - -0.02749560959637165, - -0.01033072080463171, - -0.011516104452311993, - 0.0027465810999274254, - 0.03125705197453499, - 0.00314557203091681, - 0.0077414182014763355, - -0.014794121496379375, - -0.03207821398973465, - -0.00329788401722908, - -0.005979897920042276, - 0.003850842360407114, - -0.009761206805706024, - 0.010761166922748089, - 0.029959090054035187, - -0.040952038019895554, - 0.01515172328799963, - -0.03848855569958687, - -0.03271394968032837, - 0.007993063889443874, - -0.029084952548146248, - 0.002304545370861888, - -0.012867044657468796, - 0.016502663493156433, - -0.029455797746777534, - 0.027204230427742004, - 0.014317319728434086, - -0.01229753065854311, - 0.019906504079699516, - -0.0012052507372573018, - -0.03501849249005318, - 0.010231386870145798, - 0.02083362080156803, - -0.0009610550478100777, - -0.000635736680123955, - 0.015363635495305061, - -0.013423314318060875, - 0.007668573409318924, - -0.011827350594103336, - 0.010807523503899574, - -0.0024369906168431044, - 0.0010595611529424787, - -0.01680728793144226, - -0.053348902612924576, - 0.03239608183503151, - -0.02291300892829895, - 0.0013045845553278923, - 0.0022830229718238115, - 0.0029965711291879416, - 0.013052468188107014, - -0.019019121304154396, - -0.013972962275147438, - 0.026475783437490463, - -0.007522883825004101, - 0.00791359692811966, - 0.005311049986630678, - 0.002589302370324731, - -0.0374554842710495, - -0.022290516644716263, - 0.007655329070985317, - -0.0008265404612757266, - 0.005566006992012262, - 0.01574772596359253, - 0.016290752217173576, - 0.00907911453396082, - 0.019880015403032303, - 0.010290986858308315, - -0.01614506170153618, - 0.002122433390468359, - 0.005423628259450197, - 0.011006190441548824, - -0.0038144199643284082, - -0.010794278234243393, - 0.011867084540426731, - -0.018833698704838753, - -0.027469120919704437, - 0.014317319728434086, - -0.009410226717591286, - -0.020462773740291595, - -0.009800939820706844, - 0.02805187925696373, - 0.01719137839972973, - 0.049084167927503586, - -0.023535501211881638, - -0.009065869264304638, - 0.040316298604011536, - -0.018025783821940422, - -0.013986206613481045, - -0.013959717005491257, - 0.00030690021230839193, - -0.0024204349610954523, - 0.01088699046522379, - 0.012661755084991455, - 0.03393244370818138, - 0.019654858857393265, - -0.014105407521128654, - -0.03144247457385063, - 0.0037183971144258976, - -0.03305830433964729, - 0.030594825744628906, - -0.000949466077145189, - 0.0008112264913506806, - -0.005883875302970409, - 0.022846786305308342, - -0.0019187988946214318, - 0.00011951103806495667, - 0.005019670818001032, - -0.024065282195806503, - -0.02145611308515072, - -0.0149927893653512, - -0.0034700625110417604, - 0.015403369441628456, - -0.035097960382699966, - -0.016436440870165825, - 0.021085266023874283, - -0.007317593786865473, - 0.020197883248329163, - 0.02372092381119728, - 0.007661951240152121, - 0.022767318412661552, - 0.0011100558331236243, - 0.0007027870160527527, - 0.010827389545738697, - -0.0056189848110079765, - 0.007582484278827906, - -0.02500564232468605, - 0.0032018611673265696, - -0.002759825438261032, - 0.029376331716775894, - -0.033402662724256516, - -0.0061255875043570995, - 0.022807052358984947, - 0.0007764596375636756, - 0.007688440382480621, - 0.02572084590792656, - 0.008211598731577396, - 0.008973157964646816, - 0.014078917913138866, - -0.0019568768329918385, - -0.00940360501408577, - 0.022965986281633377, - 0.031230563297867775, - 0.029641222208738327, - 0.02203887142241001, - -0.0019072099821642041, - 0.008324177004396915, - -0.006539478432387114, - -0.01663510873913765, - 0.014317319728434086, - -0.009456582367420197, - -0.025270532816648483, - -0.026422804221510887, - 0.0070262146182358265, - 0.006748079787939787, - 0.014754388481378555, - -0.02283354103565216, - 0.007966575212776661, - -0.019336989149451256, - 0.028237303718924522, - -0.013602115213871002, - -0.0034369511995464563, - -0.017668182030320168, - 0.026899607852101326, - 0.027469120919704437, - 0.021509090438485146, - -0.0149927893653512, - -0.0037448862567543983, - 0.031680878251791, - -0.012171708047389984, - -0.00029510431340895593, - -0.02402554824948311, - 0.006718279793858528, - -0.0032449059654027224, - -0.0011183336609974504, - -0.0007272065849974751, - -0.005407072603702545, - -0.018462851643562317, - -0.021191222593188286, - -0.000752453925088048, - 0.004893847741186619, - 0.027522100135684013, - -0.018211206421256065, - 0.10574419796466827, - 0.013734560459852219, - -0.00584745267406106, - 0.021336911246180534, - 0.008708267472684383, - 0.0017466202843934298, - -0.00043375781388022006, - -0.005370650440454483, - -0.017721159383654594, - -0.015469592064619064, - 0.01874098740518093, - -0.026833385229110718, - 0.010999568738043308, - -0.013721316121518612, - -0.021403133869171143, - 0.00791359692811966, - 0.005476606544107199, - 0.02403879165649414, - -0.01319153606891632, - -0.015337146818637848, - 0.030515359714627266, - 0.02934984304010868, - 0.015655014663934708, - 0.008052663877606392, - -0.028661128133535385, - -0.01033072080463171, - 0.02394608035683632, - -0.007900352589786053, - -0.029959090054035187, - -0.022767318412661552, - 0.009337382391095161, - 0.015138478949666023, - -0.06669937074184418, - -0.004446845501661301, - 0.01785360462963581, - -0.035813163965940475, - -0.007205015514045954, - 0.0024883130099624395, - 0.004453467670828104, - 0.01044992171227932, - -0.02362821251153946, - 0.007900352589786053, - -0.03753495216369629, - -0.010178408585488796, - 0.04627633094787598, - -0.027283698320388794, - -0.01141677051782608, - 0.01590666174888611, - -0.01671457663178444 - ], - "sparse": "SparseEmbedding(values=array([1.68774348]), indices=array([922977895]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 37, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 1 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000038.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000038.json deleted file mode 100644 index d9de93a396bf9902aceeb3ebf5bec1913433b491..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000038.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000038", - "content": "VI Abbildungsverzeichnis Abbildung 21: Zunahme des Gr\u00fcnanteils im Gebietsausschnitt II (Datengrundlage CGSC und eigene Berechnungen) ......................................................................................... 39 Abbildung 22: Monatlicher Heiz- und K\u00fchlbedarf im Gebietsausschnitt I (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse).................... 40 Abbildung 23: Spezifischer Heiz- und K\u00fchlbedarf im Status Quo, in Szenario A und in Szenario B des Gebietsausschnitts I (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse .......................................................................................... 41 Abbildung 24: T\u00e4gliche Evapotranspiration im Gebietsausschnitt I (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse) ...................................... 44 Abbildung 25: T\u00e4gliche Evapotranspiration im Status Quo (oben), in Szenario A (mitte) und in Szenario B (unten) im Gebietsausschnitt I (eigene Berechnungen auf Grundlage der Simulationsergebnisse) ......................................................................................... 45 Abbildung 26: Globalstrahlung auf den Gebietsausschnitt I in Szenario B ohne (oben) und mit (unten) Ber\u00fccksichtigung des Energieentzugs durch Evapotranspiration (eigene Berechnungen auf Grundlage der Simulationsergebnisse) ......................................... 47 Abbildung 27: T\u00e4gliche Temperatur\u00e4nderung im Gebietsausschnitt I (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse) ...................................... 48 Abbildung 28: St\u00fcndliche Temperaturver\u00e4nderung durch Evapotranspiration in einem Jahr f\u00fcr den Status Quo (oben), das Szenario A (mitte) und das Szenario B (unten) in Gebietsausschnitt I (eigene Berechnungen auf Grundlage der Simulationsergebnisse) ................................................................................................................................... 49", - "embedding": { - "dense": [ - 0.015127359889447689, - -0.010842135176062584, - 0.029790056869387627, - -0.01756684109568596, - 0.007124831434339285, - 0.009544950909912586, - -0.023258961737155914, - -0.00612774258479476, - -0.009719199500977993, - -0.02171008475124836, - 0.027260225266218185, - -0.0001802988990675658, - -0.016211573034524918, - 0.0001299805735470727, - 0.0013907619286328554, - 0.012429733760654926, - 0.0372246652841568, - 0.0008793100714683533, - 0.027853962033987045, - 0.006982851307839155, - 0.010119326412677765, - 0.01818639039993286, - 0.0076733920723199844, - -0.0010930872522294521, - 0.010119326412677765, - 0.018844664096832275, - -0.000644155137706548, - -0.031364746391773224, - -0.019541658461093903, - -0.0011213220423087478, - 0.007996074855327606, - 0.004052893258631229, - -0.024446433410048485, - -0.0015585569199174643, - -0.007757289335131645, - -0.020161207765340805, - -0.006150329951196909, - -0.020277373492717743, - 0.02007085643708706, - -0.013720463961362839, - -0.001581144635565579, - 0.005614676978439093, - -0.002905756700783968, - -0.002744415309280157, - 0.00804770365357399, - 0.022381264716386795, - 0.0032607074826955795, - 0.015772724524140358, - -0.04003845527768135, - 0.039264015853405, - 0.010629164054989815, - 0.030771011486649513, - -0.013578482903540134, - -0.006185825448483229, - -0.00033881672425195575, - 0.018947921693325043, - -0.017360324040055275, - 0.004256183281540871, - 0.0007816985598765314, - -0.003688262077048421, - -0.01594051904976368, - -0.007757289335131645, - -0.022187653928995132, - 0.009022205136716366, - -0.041277557611465454, - -0.031054971739649773, - -0.01996759884059429, - -0.00043562150676734746, - 0.016366461291909218, - -0.03172615170478821, - 0.023142796009778976, - 0.04579511284828186, - -0.002850900636985898, - -0.02527249976992607, - 0.021464845165610313, - -0.0057308427058160305, - 0.00352692068554461, - 0.0017198981950059533, - -0.00826712790876627, - 0.008641439490020275, - 0.014301292598247528, - -0.02096146158874035, - -0.029738428071141243, - 0.028163736686110497, - 0.011410056613385677, - 0.03972867876291275, - -0.009280350990593433, - 0.03807654604315758, - -0.020754944533109665, - 0.010590442456305027, - 0.026188919320702553, - 0.01714089885354042, - 0.015746910125017166, - 0.02186497300863266, - -0.0014488447923213243, - -0.004223915282636881, - -0.014068961143493652, - 0.0211163479834795, - 0.012532991357147694, - -0.047473061829805374, - -0.02140031009912491, - 0.007260358426719904, - -0.002339448779821396, - -0.005556594114750624, - -0.032113369554281235, - -0.009732106700539589, - 0.02790559083223343, - 0.020716222003102303, - 0.005030621774494648, - -0.032991066575050354, - -0.024601319804787636, - 0.030203090980648994, - -0.012797591276466846, - 0.0019602966494858265, - 0.010093511082231998, - -0.031855225563049316, - 0.02598240226507187, - -0.002957385964691639, - -0.026317991316318512, - -0.012345835566520691, - 0.0027089202776551247, - -0.011758553795516491, - 0.00043199132778681815, - -0.018999550491571426, - 0.019683638587594032, - 0.014714325778186321, - 0.005934132728725672, - -0.01093893963843584, - -0.026034031063318253, - -0.02039353922009468, - -0.018134761601686478, - 0.007247450761497021, - 0.017928244546055794, - 0.012378104031085968, - -0.021219607442617416, - 0.014533624053001404, - -0.022536152973771095, - 0.004359441809356213, - -0.00939006358385086, - -0.029041433706879616, - -0.011952162720263004, - 0.019296418875455856, - -0.017902430146932602, - -0.013733371160924435, - 0.004075481090694666, - 0.0196320079267025, - 0.013158995658159256, - 0.01933514140546322, - 0.016740772873163223, - -0.006476239766925573, - -0.00044449526467360556, - -0.013759185560047626, - 0.02009667083621025, - -0.012449094094336033, - 0.009951530955731869, - -0.0016860165633261204, - -0.018121853470802307, - -0.00546946981921792, - -0.016069592908024788, - 0.0038173350039869547, - 0.00431426614522934, - -0.01529515441507101, - 0.0036753546446561813, - -0.0057695647701621056, - 0.012668518349528313, - 0.005472696851938963, - -0.0008873771294020116, - -0.02834443934261799, - 0.016289016231894493, - -0.010506545193493366, - 0.014520716853439808, - 0.01596633531153202, - -0.01609540730714798, - 0.018431629985570908, - -0.007370070554316044, - 0.01906408742070198, - -0.002037740545347333, - 0.002531444886699319, - -0.017837893217802048, - -0.026227639988064766, - -0.020148301497101784, - 0.030203090980648994, - -0.0058728232979774475, - 0.003652766812592745, - -0.03732792288064957, - -0.013655927032232285, - 0.030048202723264694, - 0.02793140523135662, - -0.009738560765981674, - -0.010312935337424278, - 0.006776334252208471, - 0.00944814644753933, - 0.014017331413924694, - -0.0023200877476483583, - -0.6364849805831909, - -0.00019270200573373586, - -0.015062822960317135, - -0.015475857071578503, - 0.01462397538125515, - 0.02749255672097206, - 0.018534887582063675, - 0.014740141108632088, - -0.019838524982333183, - 0.019399676471948624, - 0.004549824632704258, - -0.005650172010064125, - -0.017683006823062897, - -0.0038270154036581516, - -0.0016005056677386165, - -0.035985562950372696, - -0.009957985021173954, - 0.0030751649755984545, - 0.012913757003843784, - 0.012449094094336033, - -0.026343805715441704, - -0.0012528151273727417, - 0.007144192699342966, - 0.02026446722447872, - 0.01596633531153202, - 0.008338117972016335, - 0.0018070224905386567, - -0.01934804767370224, - 0.008228406310081482, - 0.023091165348887444, - -0.016456812620162964, - 0.019890155643224716, - -0.005617904011160135, - 0.01623738743364811, - 0.043626684695482254, - 0.005753430537879467, - -0.008221952244639397, - -0.002665358129888773, - 0.007105470634996891, - 0.024407710880041122, - -0.02731185406446457, - -0.00063326460076496, - 0.019309327006340027, - -0.009712746366858482, - -0.0030348298605531454, - 0.018831755965948105, - 0.023426756262779236, - -0.008660800755023956, - -0.001218126737512648, - -0.01446908712387085, - 0.014365828596055508, - 0.015875983983278275, - -0.005404933355748653, - 0.019619101658463478, - 0.022213470190763474, - 0.007763742934912443, - 0.011539129540324211, - 0.0026330898981541395, - 0.01113900262862444, - 0.013733371160924435, - -0.006511734798550606, - -0.00011959423136431724, - 0.0029331848490983248, - -0.005062889773398638, - -0.03149382025003433, - 0.030099831521511078, - -0.03572741523385048, - -0.003852830035611987, - 0.012875035405158997, - -0.012074782513082027, - -0.025479016825556755, - 0.0026540642138570547, - 0.015269340015947819, - -0.011623026803135872, - 0.019838524982333183, - 0.008654346689581871, - 0.014675604179501534, - 0.0038141082040965557, - 0.012610435485839844, - -0.00011646824714262038, - -0.011855358257889748, - -0.02393014170229435, - -0.006053525488823652, - 0.005595316179096699, - 0.013797907158732414, - -0.03469483181834221, - -0.004733753390610218, - 0.005272633396089077, - -0.014675604179501534, - 0.028034662827849388, - 0.012171586975455284, - 0.0212712362408638, - -0.013810815289616585, - -0.005020941141992807, - -0.0032607074826955795, - 0.03696651756763458, - -0.016224481165409088, - 0.04189710691571236, - 0.018560701981186867, - -0.04370412975549698, - -0.020935647189617157, - -0.018405815586447716, - 0.012320021167397499, - 0.019903061911463737, - 0.03288780897855759, - 0.0054952846840023994, - -0.03727629408240318, - -0.003523693885654211, - 0.04094196856021881, - -0.026485787704586983, - -0.004052893258631229, - -0.017386138439178467, - -0.012081236578524113, - -0.0012173200957477093, - -0.014753048308193684, - -0.02336221933364868, - 0.03503042086958885, - 0.0052887676283717155, - -0.0067247049883008, - 0.020483890548348427, - 0.016869844868779182, - -0.0024814291391521692, - 0.021297050639986992, - -0.03208755701780319, - -0.004294905345886946, - 0.03392039239406586, - 0.0036011377815157175, - -0.0013117047492414713, - -0.008815688081085682, - -0.022691039368510246, - 0.008538180962204933, - 0.0066924369893968105, - 0.019877247512340546, - -0.011552036739885807, - 0.0247949305921793, - -0.006866685580462217, - 0.02645997144281864, - 0.010848588310182095, - -0.005298448260873556, - -0.02083238773047924, - -0.021374493837356567, - -0.014714325778186321, - 0.03043542243540287, - -0.02453678473830223, - -0.01726997271180153, - -0.00036503467708826065, - -0.008667253889143467, - 0.012913757003843784, - -0.004943497478961945, - 8.475459617329761e-05, - -0.021013090386986732, - -0.0007449934491887689, - 0.013565575703978539, - 0.008073518052697182, - 0.00661499286070466, - 0.008396200835704803, - 0.002397531643509865, - -0.025466110557317734, - -0.01816057600080967, - -0.031080786138772964, - 0.009932169690728188, - 0.0254144798964262, - -0.03381713479757309, - -0.005805059801787138, - -0.023413848131895065, - 0.006037391256541014, - -0.007783104199916124, - 0.021245421841740608, - -0.01670205034315586, - -0.035985562950372696, - -0.01905117928981781, - 0.002487882738932967, - -0.002466908423230052, - 0.01596633531153202, - -0.026408342644572258, - -0.018805941566824913, - -0.01653425581753254, - -0.001629547099582851, - -0.004181966185569763, - -0.014856306836009026, - 0.01608250103890896, - 0.00694412924349308, - -0.002058714861050248, - -0.013604298233985901, - 0.021929508075118065, - 0.0052564991638064384, - 0.01129389088600874, - 0.017037641257047653, - 0.0010196770308539271, - 0.007073202170431614, - 0.010667886584997177, - 0.04065800458192825, - -0.01160366553813219, - 0.01683112420141697, - -0.01461106725037098, - -0.010583989322185516, - 0.01996759884059429, - 0.009964438155293465, - -0.015398412942886353, - 0.002857354236766696, - 0.0534878671169281, - 0.008738244883716106, - 0.020122487097978592, - -0.015501671470701694, - 0.026098567992448807, - -0.035959746688604355, - 0.012029606848955154, - -0.009002843871712685, - 0.026059845462441444, - 0.026214733719825745, - 0.026821376755833626, - -0.00967402383685112, - -0.021490659564733505, - -0.00520809693261981, - 0.002515310887247324, - 0.03637278079986572, - -0.014946657232940197, - -0.02112925611436367, - 0.001147943316027522, - -0.0014343240763992071, - 0.0211163479834795, - 0.009435239247977734, - 0.013862444087862968, - -0.009725653566420078, - -0.005350077524781227, - 0.013217078521847725, - 0.002710533794015646, - 0.00782827939838171, - 0.004498195368796587, - 0.0074216993525624275, - -0.020187022164463997, - 0.0018102492904290557, - 6.609951378777623e-05, - 0.004059346858412027, - 0.021968230605125427, - 0.0229104645550251, - 0.030254719778895378, - -0.013939888216555119, - 0.025337036699056625, - 0.008893132209777832, - 0.006250361911952496, - 0.016443904489278793, - 0.01889629289507866, - -0.02066459320485592, - 0.023452570661902428, - 0.010842135176062584, - 0.022549059242010117, - 0.01239746529608965, - -0.038334690034389496, - 0.01759265549480915, - -0.006660168524831533, - 0.0062697227112948895, - -0.004620814695954323, - -0.0031025931239128113, - 0.009783736430108547, - 0.000596962810959667, - 0.008770512416958809, - 0.006005122791975737, - 0.026201825588941574, - 0.02363327331840992, - 0.007221636362373829, - -0.002155519789084792, - -0.00944814644753933, - -0.013655927032232285, - 0.0029589992482215166, - -0.01035165786743164, - -0.029790056869387627, - -0.031080786138772964, - -0.006592405494302511, - 0.00929325819015503, - 0.010016067884862423, - 0.0026088887825608253, - -0.03438505530357361, - 0.023078259080648422, - 0.0017779810586944222, - -0.004256183281540871, - 0.0030170821119099855, - -0.008615625090897083, - 0.0032978160306811333, - -0.007808918599039316, - 0.0038141082040965557, - -0.029790056869387627, - -0.006343939807265997, - 0.015579115599393845, - -0.0003914543194696307, - -0.006356847006827593, - -0.01086149550974369, - -0.004394936840981245, - -0.025233779102563858, - 0.015191895887255669, - -0.026821376755833626, - -0.01248136255890131, - -0.0024556145071983337, - -0.0023233145475387573, - -0.009260990656912327, - -0.008796327747404575, - -0.00011636740964604542, - -0.017941152676939964, - -0.004278771113604307, - 0.02230381965637207, - 0.0005687280790880322, - -0.0010309708304703236, - -0.005053209140896797, - 0.0009156118612736464, - 0.05550140514969826, - 0.005672759842127562, - -0.002202308736741543, - -0.00705384137108922, - -0.0093061663210392, - -0.00886731781065464, - -0.012068328447639942, - -0.027724888175725937, - -0.012855674140155315, - 0.02746674232184887, - -0.018083132803440094, - 0.005843781866133213, - 0.00029162439750507474, - -0.021516475826501846, - 0.043626684695482254, - -0.001401249086484313, - 0.002274912316352129, - -0.01803150400519371, - -0.02155519649386406, - 0.0015214483719319105, - 0.0186123326420784, - 0.024575505405664444, - 0.01210059691220522, - 0.02025155909359455, - 0.008241313509643078, - -0.01264270395040512, - 0.0007877488969825208, - -0.034901347011327744, - -0.0027186009101569653, - -0.014223848469555378, - -0.00380120100453496, - 0.006621446926146746, - 0.012165133841335773, - -0.021477753296494484, - 0.026511602103710175, - -0.012462001293897629, - 0.0025992081500589848, - -0.024020491167902946, - 0.0062632691115140915, - 0.006469785701483488, - -0.009480414912104607, - -0.005240365397185087, - -0.0024297998752444983, - 0.059476856142282486, - 0.004959631245583296, - 0.009190000593662262, - 0.034643203020095825, - 0.03585648909211159, - 0.016005055978894234, - -0.0027492556255310774, - -0.021451938897371292, - 0.019735267385840416, - -0.0075249578803777695, - 0.027957219630479813, - -0.018405815586447716, - -0.013010562397539616, - 0.004233595449477434, - -0.01699891872704029, - 0.04331691190600395, - 0.003797973971813917, - 0.012952479533851147, - 0.007783104199916124, - 0.002829926321282983, - -0.013707556761801243, - -0.00153193564619869, - -0.0063600740395486355, - -0.014572345651686192, - 0.03115823119878769, - -0.014017331413924694, - -0.00848655216395855, - 0.0063665276393294334, - -0.0022039220202714205, - -0.0183025561273098, - 0.004840238951146603, - -0.024640042334794998, - 0.01596633531153202, - -0.002487882738932967, - -0.028292808681726456, - 0.0169731043279171, - -0.02390432544052601, - -0.040967781096696854, - -0.02777651697397232, - 5.9431577028590254e-06, - -0.021077627316117287, - 0.0023830109275877476, - 0.006621446926146746, - -0.005230684764683247, - -0.011345519684255123, - -0.018263835459947586, - 0.0076733920723199844, - 0.03074519708752632, - -0.02718278206884861, - -0.014146404340863228, - 0.010945393703877926, - 0.012113504111766815, - 0.009241629391908646, - 0.003968995995819569, - 0.005362984724342823, - -0.0128621282055974, - -0.013617205433547497, - -0.005575954914093018, - -0.019012458622455597, - -0.0052887676283717155, - -0.011151909828186035, - -0.021219607442617416, - 0.02261359617114067, - 0.0010608190204948187, - -0.005617904011160135, - -0.012674972414970398, - 0.010080603882670403, - -0.006089020520448685, - -0.013978609815239906, - 0.014585252851247787, - 0.0021732673048973083, - -0.007028026971966028, - -0.00878987368196249, - 0.0020425808615982533, - 0.009041566401720047, - 0.02245870791375637, - -0.012849221006035805, - 0.03882516920566559, - 0.0037657057400792837, - -0.015579115599393845, - -0.013165449723601341, - 0.001732805510982871, - -0.005911544896662235, - -0.025659719482064247, - 0.0019199614180251956, - -0.005888957064598799, - -0.005592089146375656, - 0.014675604179501534, - -0.018354184925556183, - 0.013810815289616585, - -0.026408342644572258, - -0.011268076486885548, - 0.00564694544300437, - 0.008815688081085682, - -0.011255168356001377, - 0.017386138439178467, - 0.01847035065293312, - 0.021013090386986732, - -0.010461369529366493, - 0.0431620217859745, - 0.005463016219437122, - 0.009415877982974052, - 0.017966967076063156, - -0.00922872219234705, - 0.015114452689886093, - -0.0351853109896183, - -0.005811513401567936, - 0.0018328371224924922, - 0.020290281623601913, - -0.0007925890968181193, - -0.0024991766549646854, - -0.011558490805327892, - -0.009402970783412457, - 0.0026298630982637405, - 0.02365908771753311, - -0.020587150007486343, - 0.0018199298065155745, - -0.02318151667714119, - 0.0037140767090022564, - 0.004365895409137011, - 0.011506861075758934, - 0.010803412646055222, - -0.026382528245449066, - 0.005521099083125591, - 0.012081236578524113, - 0.012229669839143753, - 0.0009043179452419281, - -0.020638778805732727, - -0.03056449443101883, - -0.00635361997410655, - 0.01085504237562418, - -0.002247484168037772, - -0.045562781393527985, - -0.012752415612339973, - -0.010170955210924149, - 0.019748173654079437, - 0.016792401671409607, - 0.023246053606271744, - -0.00975146796554327, - 0.017450673505663872, - 0.0044239782728254795, - -0.007989620789885521, - 0.014740141108632088, - 0.01013223361223936, - -0.007247450761497021, - -0.04101940989494324, - 0.026085659861564636, - -0.0016698824474588037, - 0.0074797822162508965, - 0.017450673505663872, - -0.0003880258009303361, - 0.02718278206884861, - 0.035520900040864944, - -0.02584042213857174, - -0.013307429850101471, - -0.007537865079939365, - -0.023104073479771614, - -0.002349129179492593, - 0.0037302107084542513, - 0.009615940973162651, - -0.0007748415810056031, - -0.026769747957587242, - -0.006479466333985329, - 0.053229719400405884, - -0.004724073223769665, - 0.0038786446675658226, - -0.01130034402012825, - 0.020135393366217613, - -0.024136656895279884, - 0.026976265013217926, - 0.013539761304855347, - -0.00011596405238378793, - -0.0010317775886505842, - -0.009557858109474182, - -0.02080657333135605, - -0.03040960803627968, - 0.030771011486649513, - -0.018870478495955467, - 0.00590831832960248, - 0.00019713889923878014, - -0.017695913091301918, - 0.0006949776434339583, - -0.0075765871442854404, - 0.00779601139947772, - -0.01507573015987873, - 0.02421410195529461, - -0.001288310275413096, - -0.0074797822162508965, - -0.024743301793932915, - -0.009603033773601055, - -0.015566208399832249, - 0.03510786592960358, - -0.0074668750166893005, - -0.0006397182587534189, - 0.030048202723264694, - -0.0168182160705328, - 0.02365908771753311, - 0.02658904530107975, - -0.004478834569454193, - 0.029790056869387627, - 0.017063455656170845, - 0.04429786652326584, - 0.029351208359003067, - -0.012933118268847466, - -0.010261306539177895, - -0.055449776351451874, - -0.01594051904976368, - -0.008983483538031578, - 0.01366883423179388, - -0.0021894013043493032, - 0.01091957837343216, - -0.01801859587430954, - -0.0005586442421190441, - 0.016753679141402245, - 0.007441060617566109, - -0.011848905123770237, - 0.03281036391854286, - 0.02658904530107975, - -0.0017812078585848212, - -0.012694332748651505, - 0.0061600105836987495, - -0.0031832638196647167, - 0.014585252851247787, - 0.0016037324676290154, - -0.022639410570263863, - -0.002405598759651184, - -0.006731158588081598, - -0.00517582893371582, - 0.051500141620635986, - -0.007073202170431614, - 0.02377525344491005, - -0.007557226344943047, - 0.02050970494747162, - -0.008280035108327866, - -0.026640674099326134, - -0.0006744065904058516, - 0.029093062505126, - 0.00384314963594079, - 0.01890919916331768, - -0.006324578542262316, - -0.010512998327612877, - 0.0056275841780006886, - -0.01197797805070877, - -0.004504648968577385, - -0.01239746529608965, - -0.0046240417286753654, - 0.014636882580816746, - 0.014081868343055248, - -0.020135393366217613, - -0.007008665706962347, - 0.009512682445347309, - 0.02363327331840992, - 0.008847956545650959, - -0.0057824719697237015, - -0.002515310887247324, - 0.0008518820395693183, - -0.011848905123770237, - 0.0074216993525624275, - -0.0001204009386128746, - -0.021361587569117546, - -0.020032135769724846, - -0.007879909127950668, - -0.008292942307889462, - -0.021826250478625298, - -0.007776650600135326, - 0.02524668537080288, - -0.03727629408240318, - 0.016727864742279053, - 0.034798089414834976, - -0.00020550847693812102, - 0.03859283775091171, - -0.0016860165633261204, - -0.017386138439178467, - -0.018108947202563286, - 0.019141530618071556, - -0.049873821437358856, - 0.0328361801803112, - 0.052068062126636505, - -0.0052564991638064384, - 0.01041619386523962, - 0.008776966482400894, - -0.021167978644371033, - -0.025078890845179558, - 0.039238203316926956, - -0.0005352497682906687, - -0.03306851163506508, - -0.009680477902293205, - -0.0047563412226736546, - 0.013926981016993523, - -0.01055172085762024, - -0.0011068013263866305, - 0.0019135077018290758, - 0.006324578542262316, - -0.0076733920723199844, - -0.022987907752394676, - -0.02022574469447136, - 0.02615019679069519, - 0.018715590238571167, - -0.006982851307839155, - 0.019696544855833054, - -0.023607458919286728, - 0.03265547752380371, - -0.0035624157171696424, - 0.008602717891335487, - -0.020135393366217613, - -0.01919316127896309, - -0.016508441418409348, - 0.004352988209575415, - 0.014520716853439808, - 0.0016255135415121913, - -0.001144716516137123, - 0.0009607874089851975, - -0.01755393296480179, - -0.014817584306001663, - 0.0121199581772089, - 0.00813160091638565, - 0.005947039928287268, - 0.003523693885654211, - 0.006124515552073717, - -0.023297682404518127, - 0.002421732759103179, - 0.0003607994585763663, - -0.002165200188755989, - -0.006489146966487169, - -0.012203855440020561, - -0.034617386758327484, - 0.006292310543358326, - -0.004782156087458134, - 0.010442008264362812, - 0.019619101658463478, - -0.033300843089818954, - -0.009048019535839558, - -0.007182914298027754, - -0.048170056194067, - -0.02362036518752575, - -0.009693385101854801, - -0.0004876540624536574, - 3.052879765164107e-05, - 0.015191895887255669, - -0.017773356288671494, - 0.032578032463788986, - 0.0006195505848154426, - 0.0033913939259946346, - -0.04680188372731209, - -0.01217804104089737, - 0.004023851826786995, - 0.001966750482097268, - 0.03650185465812683, - -0.020587150007486343, - -0.024782022461295128, - -0.017089270055294037, - 0.011416509747505188, - 0.01667623594403267, - -0.005185509100556374, - 0.013410688377916813, - -0.010106418281793594, - 0.00037007659557275474, - -0.004536917433142662, - 0.01019676961004734, - -0.016469718888401985, - 0.01107446663081646, - -0.004159378353506327, - -0.03828306123614311, - 0.00797025952488184, - 0.00908674206584692, - 0.012113504111766815, - -0.035520900040864944, - 0.0009172252612188458, - 0.0038818714674562216, - 0.009919262491166592, - -0.01729578711092472, - 0.021064719185233116, - -0.0030412834603339434, - -0.030925899744033813, - -0.00967402383685112, - 0.030254719778895378, - 0.035520900040864944, - -0.007344255689531565, - -0.00034890056122094393, - 0.01770882122218609, - -0.010241945274174213, - -0.01055817399173975, - 0.005847008433192968, - -0.018225112929940224, - -0.007176460698246956, - 0.018263835459947586, - -0.007750835735350847, - 0.027724888175725937, - -0.02702789381146431, - 0.016366461291909218, - -0.0028799420688301325, - 0.019980505108833313, - -0.0006227773847058415, - -0.02080657333135605, - -0.017231250181794167, - 0.010984115302562714, - 0.03028053417801857, - -0.02023865282535553, - 0.023465478792786598, - 0.0024685217067599297, - -0.009331980720162392, - -0.0026976263616234064, - -0.008422015234827995, - 0.0014020558446645737, - -0.042181067168712616, - -0.004317493177950382, - -0.0015884049935266376, - 0.0029315713327378035, - 0.006527868565171957, - -0.012720148079097271, - 0.0005634845001623034, - -0.010984115302562714, - 0.021361587569117546, - 0.18028922379016876, - -0.013681741431355476, - -0.008234859444200993, - 0.03528856858611107, - -0.0068021491169929504, - -0.02868002839386463, - 0.026795562356710434, - 0.00184574443846941, - 0.022071488201618195, - 0.030667753890156746, - -0.02731185406446457, - 0.005947039928287268, - -0.005521099083125591, - 0.0008543021394871175, - 0.0008793100714683533, - -0.024743301793932915, - -0.02880910225212574, - 0.0084091080352664, - 0.006585951428860426, - 0.04220688343048096, - 0.03141637519001961, - -0.031390562653541565, - 0.007221636362373829, - -0.019683638587594032, - 0.04060637578368187, - -0.004269090481102467, - -0.013772092759609222, - -0.007583040744066238, - 0.029041433706879616, - -0.0008103366708382964, - 0.005049982573837042, - 0.0011616572737693787, - -0.00959012657403946, - -0.023517107591032982, - -0.019012458622455597, - -0.001574691035784781, - 0.013294522650539875, - -0.007170007098466158, - 0.022045673802495003, - 0.010041882283985615, - -0.0018134762067347765, - 0.0013810815289616585, - -0.015191895887255669, - -0.011713378131389618, - -0.023852696642279625, - 0.025775885209441185, - 0.002665358129888773, - -0.001604539225809276, - -0.005617904011160135, - -0.018070224672555923, - -0.029454465955495834, - -0.01875431276857853, - -0.004056120291352272, - 0.04212943837046623, - -0.024278638884425163, - 0.0014335174346342683, - 0.02911887690424919, - -0.015914704650640488, - 0.009880540892481804, - 0.0040335324592888355, - -0.030177276581525803, - 0.03557252883911133, - -0.029325393959879875, - 0.01652134768664837, - 0.0023313816636800766, - 0.008292942307889462, - -0.030616123229265213, - 0.0036011377815157175, - -0.016198666766285896, - -0.004766021855175495, - -0.019619101658463478, - -0.0315970778465271, - -0.008983483538031578, - 0.015101545490324497, - -0.020161207765340805, - -0.014740141108632088, - 0.005540459882467985, - 0.004220688249915838, - 0.01803150400519371, - 0.0168182160705328, - 0.008376839570701122, - 0.009906355291604996, - 0.006130969151854515, - -0.01726997271180153, - -0.016934381797909737, - -0.034772276878356934, - 0.030796825885772705, - 0.0226006880402565, - -0.004359441809356213, - -0.03621789440512657, - -0.013320337049663067, - 0.004181966185569763, - -0.016882752999663353, - -0.007408792153000832, - -2.997418778249994e-05, - 0.0033042696304619312, - -0.0005844588158652186, - 0.01182308979332447, - -0.0012633022852241993, - 0.013346151448786259, - 0.003268774598836899, - 0.06169690936803818, - 0.04323946684598923, - -0.010345203801989555, - 0.006718251388520002, - 0.00431426614522934, - -0.0049047754146158695, - 0.013126728124916553, - -0.0026927862782031298, - -0.007215182762593031, - 0.007860547862946987, - -0.02038063295185566, - 0.00909319519996643, - 0.005650172010064125, - 0.002594368066638708, - 0.007873455062508583, - -0.004736980423331261, - -0.02125832810997963, - 0.018367093056440353, - -0.013133181259036064, - -0.018147669732570648, - -0.0039948103949427605, - 0.006821509916335344, - 0.0033204038627445698, - -0.011913441121578217, - -0.03399783745408058, - -0.018134761601686478, - 0.011055105365812778, - -0.013772092759609222, - -0.016663329675793648, - 0.007215182762593031, - -0.025233779102563858, - 0.0016844031633809209, - -0.007402338553220034, - 0.015411320142447948, - 0.02759581431746483, - 0.0024894962552934885, - -0.0312873050570488, - -0.01077759824693203, - 0.013423595577478409, - 0.007712113671004772, - -0.01219740230590105, - 0.011945709586143494, - 0.004811197519302368, - 0.028731657192111015, - -0.007176460698246956, - 0.0025701667182147503, - 0.0007599174859933555, - -0.029609354212880135, - -0.0331459566950798, - -0.008318756707012653, - -0.002597594866529107, - -0.006660168524831533, - -0.0006086600478738546, - 0.02953191101551056, - -2.6016283300123177e-05, - -0.018947921693325043, - -0.04243921488523483, - 0.009325526654720306, - 0.015243525616824627, - 0.0006094667478464544, - 0.00557918194681406, - -0.0034946524538099766, - -0.02584042213857174, - 0.006866685580462217, - 0.018728498369455338, - -0.16128966212272644, - -0.012190948240458965, - 0.018199298530817032, - -0.042000364512205124, - 0.007873455062508583, - 0.01529515441507101, - -0.003170356387272477, - -0.010022521018981934, - -0.008854410611093044, - -0.0048983218148350716, - 0.03293943777680397, - 0.003968995995819569, - -0.018986644223332405, - 0.004507876001298428, - -0.0049628582783043385, - 0.026485787704586983, - -0.03335247188806534, - 0.02793140523135662, - 0.022781390696763992, - 0.019528750330209732, - 0.025078890845179558, - -0.01071306224912405, - 0.009241629391908646, - 0.007544319145381451, - 0.021206699311733246, - 0.013604298233985901, - -0.023968862369656563, - 0.028576770797371864, - 0.0019683637656271458, - 0.0029896541964262724, - 0.0063019911758601665, - 0.007279719226062298, - 0.03962542116641998, - -0.013991517014801502, - 0.003536601085215807, - -0.021013090386986732, - -0.007989620789885521, - -0.0014762728242203593, - -0.010913125239312649, - 0.03446250036358833, - 0.005695347674190998, - -0.016443904489278793, - 0.003404301358386874, - 0.016366461291909218, - -0.026950450614094734, - 0.002174880588427186, - 0.005682440474629402, - -0.0056792134419083595, - -0.009719199500977993, - -0.016947289928793907, - 0.0023813974112272263, - -0.015708187595009804, - -0.014998286962509155, - 0.0196320079267025, - 0.0029251177329570055, - 0.027518371120095253, - 0.002034513745456934, - 0.019903061911463737, - 0.009945077821612358, - -0.004536917433142662, - -1.7243350157514215e-05, - -0.0005989795317873359, - -0.0009099649032577872, - -0.0028137920890003443, - 0.008893132209777832, - -0.028731657192111015, - 0.00458531966432929, - 0.01756684109568596, - -0.015320969745516777, - 0.004404617473483086, - 0.003073551692068577, - -0.03371387720108032, - 0.011119642294943333, - -0.01188117265701294, - 0.011055105365812778, - -0.0021022770088166, - -0.008144508115947247, - 0.0020296734292060137, - 0.01625029556453228, - 0.0006534322164952755, - -0.013643019832670689, - 0.052248764783144, - -0.021348679438233376, - -0.0043271733447909355, - 0.0012503950856626034, - -0.004633721895515919, - -0.009699838235974312, - -8.218322182074189e-05, - 0.02349129319190979, - 0.011629480868577957, - -0.007015119306743145, - -0.022549059242010117, - -0.032552219927310944, - -0.011803729459643364, - -0.005563047714531422, - -0.006195505615323782, - 0.010538813658058643, - -0.013062191195786, - 0.0050080339424312115, - -0.016159944236278534, - 0.030693568289279938, - -0.005582408979535103, - -0.030925899744033813, - -0.002195855136960745, - 0.010312935337424278, - 0.0011705311480909586, - -0.0212712362408638, - 0.002726667793467641, - 0.02600821666419506, - -0.015088638290762901, - -0.023104073479771614, - -0.022987907752394676, - 0.007195821963250637, - -0.005701801273971796, - -0.003276841714978218, - 0.009983799420297146, - -0.00115439691580832, - -0.02922213450074196, - 0.011913441121578217, - -0.011481046676635742, - 0.03291362524032593, - -0.0032816820312291384, - -0.021167978644371033, - -0.0012148999376222491, - 0.002178107388317585, - -0.014288385398685932, - -0.09525590389966965, - -0.008312303572893143, - 0.042335957288742065, - 0.03830887749791145, - 0.025659719482064247, - -0.0023701037280261517, - -0.012578167021274567, - 0.026511602103710175, - -0.004749887622892857, - 0.012210309505462646, - -0.0419229231774807, - -0.03115823119878769, - -0.023155702278017998, - -0.0015884049935266376, - 0.025466110557317734, - -0.011371334083378315, - -0.011068012565374374, - -0.02510470524430275, - -0.007240997161716223, - 0.03557252883911133, - 0.02158101089298725, - 0.001072112936526537, - -0.001391568686813116, - -0.02568553388118744, - -0.0024281865917146206, - -0.011629480868577957, - -0.03513368219137192, - 0.020354818552732468, - 0.013436502777040005, - 0.007531411480158567, - 0.009654663503170013, - -0.01610831543803215, - 0.02764744497835636, - -0.028860731050372124, - -0.008434922434389591, - -0.011119642294943333, - -0.0076153092086315155, - -0.018999550491571426, - 0.02746674232184887, - -0.02852514013648033, - -0.012816952541470528, - 0.002594368066638708, - 0.020780758932232857, - -0.03071938268840313, - 0.007996074855327606, - -0.025904959067702293, - -0.0022829794324934483, - -0.010229038074612617, - -0.005650172010064125, - -0.02365908771753311, - -0.016869844868779182, - -0.017902430146932602, - 0.00702157337218523, - 0.02922213450074196, - -0.004611134063452482, - 0.018121853470802307, - 0.015424227342009544, - -0.010170955210924149, - -0.01520480401813984, - -0.008254220709204674, - -0.029480282217264175, - 0.012152226641774178, - -0.04280062019824982, - 0.025762977078557014, - 0.016947289928793907, - 0.020612964406609535, - -0.03867028281092644, - 0.0033784867264330387, - -0.002394304843619466, - -0.014378735795617104, - -0.024149565026164055, - 0.020483890548348427, - -0.0025508059188723564, - 0.009222268126904964, - -0.036269523203372955, - -0.009738560765981674, - -0.03601137548685074, - 0.003423662157729268, - 0.02746674232184887, - -0.03149382025003433, - -0.033894579857587814, - -0.028834916651248932, - 0.0007631443440914154, - -0.00042957119876518846, - 0.024756208062171936, - 0.013268708251416683, - -0.010074150748550892, - -0.02066459320485592, - 0.012449094094336033, - -0.015320969745516777, - 0.011919895187020302, - -0.00443365890532732, - 0.013630112633109093, - -0.02125832810997963, - 0.010061243548989296, - 0.006082566920667887, - -0.006272949744015932, - 0.009628848172724247, - 0.003221985651180148, - -0.010893763974308968, - -0.032448962330818176, - -0.004714392591267824, - -0.047782838344573975, - 0.023968862369656563, - 0.009435239247977734, - -0.006711797788739204, - -0.020057950168848038, - -0.0008841502713039517, - 0.0008930240874178708, - 0.013217078521847725, - -0.0020183795131742954, - -0.008305849507451057, - -0.016030870378017426, - 0.022252190858125687, - -0.008318756707012653, - -0.017799172550439835, - -0.023246053606271744, - -0.024911096319556236, - 0.006001896224915981, - 0.029790056869387627, - 0.016069592908024788, - 0.0036108181811869144, - -0.012326475232839584, - 0.011590758338570595, - -0.00590831832960248, - -0.00037370677455328405, - -0.017644284293055534, - 0.016327738761901855, - 0.0032478002831339836, - -0.0036592206452041864, - 0.0012802431592717767, - 0.0015763044357299805, - 0.015243525616824627, - -0.0062180934473872185, - -0.008054157719016075, - 0.018702682107686996, - -0.009338433854281902, - -0.013371966779232025, - -0.0053016748279333115, - 0.03663092851638794, - 0.033300843089818954, - 0.03606300801038742, - -0.026511602103710175, - -0.013423595577478409, - 0.026330899447202682, - -0.025737162679433823, - -0.014649789780378342, - -0.0007292626542039216, - -0.0033236306626349688, - -0.005485604051500559, - 0.012294206768274307, - -0.020625870674848557, - 0.03681163117289543, - 0.009073834866285324, - 0.018199298530817032, - -0.006621446926146746, - 0.026382528245449066, - -0.0342559851706028, - 0.009344887919723988, - 0.011558490805327892, - 0.021297050639986992, - -0.009738560765981674, - 0.03928983211517334, - -0.005020941141992807, - 0.02216183952987194, - -0.002652450930327177, - 0.018405815586447716, - -0.006176144815981388, - -0.020032135769724846, - 0.0026298630982637405, - 0.0008551088394597173, - -0.029144691303372383, - -0.0023862377274781466, - -0.024136656895279884, - 0.006198732648044825, - 0.0257242564111948, - 0.009409423917531967, - -0.0014367442345246673, - 0.017812078818678856, - 0.025466110557317734, - 0.020729130133986473, - 0.030925899744033813, - 0.014869214035570621, - 0.02007085643708706, - -0.02039353922009468, - 0.0226006880402565, - 0.022355450317263603, - 0.0098934480920434, - -0.018793033435940742, - 0.010674339719116688, - -0.026034031063318253, - 0.0044756075367331505, - 0.010364565066993237, - 0.016211573034524918, - 0.006363300606608391, - -0.014262570068240166, - 0.02287174202501774, - 0.023000815883278847, - 0.02026446722447872, - -0.0322166308760643, - -0.0013052510330453515, - 0.03859283775091171, - -0.0029832005966454744, - 0.006392342038452625, - -0.00937070231884718, - -0.014830491505563259, - -0.005453335586935282, - 0.010312935337424278, - -0.011106735095381737, - -0.05896056443452835, - -0.01698601059615612, - -0.009254536591470242, - -0.013152542524039745, - 0.014972472563385963, - 0.007331348489969969, - 0.005637264810502529, - -0.025479016825556755, - 0.015979241579771042, - -0.027724888175725937, - 0.0007821019389666617, - -0.019606193527579308, - 0.022665224969387054, - 0.01404314674437046, - 0.0014173833187669516, - 0.006350393407046795, - 0.004559504799544811, - 0.016030870378017426, - 0.004675670526921749, - 0.02098727598786354, - 0.003685035277158022, - 0.0006857005064375699, - 0.010345203801989555, - 0.012694332748651505, - -0.0030654845759272575, - -0.002579847350716591, - -0.03650185465812683, - -0.02158101089298725, - -0.014507809653878212, - 0.029170505702495575, - 0.01498537976294756, - 0.011422963812947273, - 0.1179211288690567, - 0.029635168612003326, - -0.011965070851147175, - 0.0063600740395486355, - -0.007144192699342966, - 0.01446908712387085, - 0.00939006358385086, - 0.007537865079939365, - -0.010867949575185776, - -0.05792797729372978, - -0.00760240200906992, - -0.019915970042347908, - -0.00047434339649043977, - -0.04628559201955795, - -0.017218342050909996, - -0.0005792152369394898, - 0.00380120100453496, - 0.005127426236867905, - -0.018728498369455338, - 0.021374493837356567, - 0.026795562356710434, - -0.02244580164551735, - 0.026034031063318253, - 0.03526275232434273, - -0.030306348577141762, - -0.017244158312678337, - 0.012384558096528053, - -0.012571713887155056, - -0.006566590629518032, - 0.006234227679669857, - -0.012249031104147434, - -0.009564312174916267, - -0.052661798894405365, - -0.028705842792987823, - 0.012674972414970398, - -0.016301924362778664, - -0.008970576338469982, - -0.01831546425819397, - 0.009951530955731869, - 0.008331664837896824, - -0.0021668134722858667, - 0.04323946684598923, - -0.025608090683817863, - -0.0033752599265426397, - -0.011861812323331833, - -0.0026476106140762568, - -0.008802780881524086, - -0.017050547525286674, - -0.03162289410829544 - ], - "sparse": "SparseEmbedding(values=array([1.17235637, 1.17235637, 1.98274952, 1.17235637, 1.17235637,\n 1.7025393 , 1.17235637, 1.95516763, 1.98274952, 1.17235637,\n 1.17235637, 1.17235637, 2.03762663, 1.98274952, 1.80454982,\n 1.17235637, 1.17235637, 1.17235637, 1.52960348, 1.52960348,\n 1.80454982, 1.80454982, 1.98274952, 1.95516763, 1.95516763,\n 1.95516763, 1.17235637, 1.17235637, 1.17235637, 1.7025393 ,\n 1.7025393 , 1.95516763, 1.80454982, 1.17235637, 1.17235637,\n 1.7025393 , 1.80454982, 1.17235637, 1.17235637, 1.7025393 ,\n 1.52960348, 1.7025393 , 1.17235637, 1.17235637, 1.17235637,\n 1.52960348, 1.17235637, 1.17235637, 1.17235637, 1.17235637,\n 1.52960348, 1.17235637, 1.17235637, 1.17235637, 1.17235637,\n 1.17235637, 1.17235637, 1.17235637, 1.17235637, 1.17235637,\n 1.17235637, 1.52960348, 1.17235637]), indices=array([ 747690075, 337416142, 2077811411, 1207234426, 1587158528,\n 47951928, 1035540178, 1515684580, 2028297786, 524783164,\n 230800482, 909246637, 164058840, 922977895, 740705568,\n 834769235, 312050228, 2019288601, 1145495814, 715386164,\n 911111262, 653745147, 2103309648, 1721868368, 408270109,\n 424222366, 1784631546, 1695437089, 472906682, 900543307,\n 407244595, 855741121, 1780580861, 697211857, 2075059736,\n 461504077, 482341621, 395514983, 1246280156, 62479299,\n 790540635, 1151255635, 1360744857, 494070171, 327670196,\n 651773314, 372990882, 231980230, 1208548439, 1967433918,\n 1147900472, 262725337, 1381820790, 970264187, 1536080379,\n 2112545234, 474005373, 777673919, 1354425271, 2137308367,\n 2124172637, 1413554298, 43552621]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 38, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 188 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000039.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000039.json deleted file mode 100644 index bdb503ac5529c307fbe88606749c7b9f8edd9294..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000039.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000039", - "content": "VII Tabellenverzeichnis", - "embedding": { - "dense": [ - -0.0005022596451453865, - -0.006226062774658203, - 0.003949587233364582, - -0.022229881957173347, - -0.02405628003180027, - 0.014715556055307388, - -0.024251965805888176, - -0.004086567088961601, - -0.00561291491612792, - -0.010867072269320488, - 0.015367841348052025, - 0.0043409583158791065, - -0.0009025997715070844, - 0.006953360978513956, - 0.006718538235872984, - 0.012249917723238468, - 0.03311000019311905, - 0.004575781058520079, - 0.02035130001604557, - -0.0038550058379769325, - -0.0011227460345253348, - 0.0019275029189884663, - -0.004458369687199593, - 0.001777477329596877, - -0.0037897774018347263, - 0.005260680802166462, - 0.006933792494237423, - -0.012895680032670498, - 0.008799328468739986, - 0.0016714810626581311, - 0.016281040385365486, - -0.009647299535572529, - -0.010501792654395103, - -0.03381446748971939, - -0.01772911287844181, - 0.011369332671165466, - -0.027422072365880013, - -0.010410472750663757, - 0.0030086657498031855, - -0.004670362453907728, - -0.006281507201492786, - -0.003962633199989796, - -0.009601639583706856, - 0.004513814114034176, - 0.005557470489293337, - -0.0035516934003680944, - 0.022960441187024117, - 0.020612213760614395, - -0.007592600770294666, - 0.020533939823508263, - 0.014663373120129108, - 0.01937287300825119, - -0.008284023031592369, - -0.008257931098341942, - 0.005648790393024683, - 0.006385872606188059, - -0.019385918974876404, - 0.012204257771372795, - 0.004507291130721569, - -0.008447093889117241, - -0.018263988196849823, - -0.015133018605411053, - -0.022712573409080505, - 0.009562501683831215, - -0.026874152943491936, - -0.019046729430556297, - -0.00037180259823799133, - 0.002537389751523733, - -0.0038647903129458427, - 0.004177886992692947, - 0.01418068166822195, - 0.04018077254295349, - 0.007618691772222519, - -0.013854539021849632, - 0.01608535461127758, - -0.01982947252690792, - -0.012967430986464024, - -0.008303591050207615, - -0.004605134017765522, - -0.004226808436214924, - 0.030866138637065887, - -0.0006482084863819182, - -0.01433723047375679, - 0.017298605293035507, - 0.030709590762853622, - 0.014598144218325615, - 0.02496948093175888, - 0.015954896807670593, - -0.029848573729395866, - -0.016659365966916084, - 0.011532403528690338, - 0.047434184700250626, - -0.007781763095408678, - 0.01737687923014164, - 0.0015328703448176384, - 0.010860550217330456, - -0.01297395396977663, - 0.02286912128329277, - 0.009582070633769035, - -0.03595396503806114, - -0.0015459160786122084, - 0.01195638906210661, - -0.00615431135520339, - 0.00048065269947983325, - -0.022503841668367386, - 0.011597632430493832, - 0.0032173970248550177, - 0.010012579150497913, - -0.0017138795228675008, - -0.01187159214168787, - -0.007429529447108507, - 0.009034151211380959, - 0.0029793130233883858, - -0.008923262357711792, - 0.018864089623093605, - -0.007409960497170687, - 0.025373896583914757, - 0.00017020569066517055, - -0.02807435765862465, - -0.027187250554561615, - 0.017115965485572815, - 0.011545449495315552, - 0.025308668613433838, - -0.012354282662272453, - 0.0004152203327976167, - -0.0030266037210822105, - 0.004562735557556152, - -0.0017285560024902225, - 0.006141265854239464, - 0.003535386174917221, - 0.029065832495689392, - 0.011989003047347069, - 0.01958160474896431, - -0.015550481155514717, - 0.009516841731965542, - 0.02580440603196621, - -0.01891627348959446, - 0.009503796696662903, - -0.019699014723300934, - -0.03681498020887375, - 0.01074966136366129, - 0.016802867874503136, - -0.006946837995201349, - -0.037258535623550415, - 0.016346268355846405, - 0.01256953738629818, - 0.012028140015900135, - 0.02486511506140232, - -0.002821133704856038, - -0.01754647307097912, - -0.016737639904022217, - -0.028909282758831978, - 0.04226808622479439, - -0.015498298220336437, - 0.006881609559059143, - -0.01557657215744257, - -0.021734144538640976, - 0.006457624025642872, - -0.004918231163173914, - -0.012947862967848778, - 0.005084563512355089, - -0.0005373199819587171, - 0.024108463898301125, - -0.0016845266800373793, - 0.028022175654768944, - 0.022634299471974373, - -0.019699014723300934, - -0.015172155573964119, - -0.0021949398797005415, - -0.016828959807753563, - -0.005971671547740698, - 0.022373385727405548, - -0.007977448403835297, - 0.021447138860821724, - -0.03042258508503437, - -0.0013437076704576612, - 0.015459161251783371, - -0.02419978380203247, - -0.022321201860904694, - -0.010801844298839569, - -0.030083397403359413, - 0.016267994418740273, - 0.028491821140050888, - 0.0015907606575638056, - -0.022751709446310997, - 0.013789311051368713, - 0.008414479903876781, - 0.014115453697741032, - 0.009927782230079174, - -0.01870754174888134, - 0.01495037879794836, - 0.012647811323404312, - -0.021251454949378967, - 0.0034603732638061047, - -0.6725322008132935, - -0.02971811778843403, - -0.016698503866791725, - 0.008277500048279762, - 0.012393420562148094, - 0.03373619541525841, - -0.004389879759401083, - 0.007057726848870516, - -0.01423286460340023, - 0.018511855974793434, - 0.007566509302705526, - -0.0036625817883759737, - 0.004497507121413946, - 0.010390904732048512, - 0.009360293857753277, - -0.013528396375477314, - -0.006698969751596451, - -0.015798348933458328, - 0.023873640224337578, - 0.014885149896144867, - 0.0036593202967196703, - 0.004552951082587242, - 0.027604712173342705, - 0.004451847169548273, - 0.012686948291957378, - 0.006464147008955479, - 0.0023710569366812706, - -0.02776126191020012, - 0.003988724201917648, - -0.00747518939897418, - 0.005567254964262247, - 0.007677397690713406, - -0.01947723887860775, - 0.014480733312666416, - 0.04513813927769661, - 0.019359827041625977, - -0.02062525972723961, - 0.015889668837189674, - 0.020794853568077087, - 0.02630014158785343, - -0.02174719050526619, - -0.0031521685887128115, - -0.018159622326493263, - -0.005570515990257263, - -0.013684945181012154, - 0.025060800835490227, - 0.023834504187107086, - 0.005218282341957092, - 0.009660344570875168, - -0.003620183328166604, - 0.023925824090838432, - -0.016489772126078606, - -0.006415225565433502, - 0.006529375445097685, - 0.030657406896352768, - 0.015133018605411053, - -0.005877090152353048, - -0.021916784346103668, - -0.0075860777869820595, - 0.024121509864926338, - -0.0010958393104374409, - 0.0022536455653607845, - -0.000878954422660172, - -0.034388478845357895, - -0.02877882681787014, - -0.00945813674479723, - -0.03271862864494324, - -0.0020889434963464737, - 0.032640356570482254, - -0.021029677242040634, - -0.020168660208582878, - 0.002252014819532633, - -0.01047570165246725, - 0.0008345174719579518, - 0.0312575101852417, - -0.006131481379270554, - 0.023769274353981018, - -0.0025308667682111263, - -0.008642779663205147, - 0.008270977064967155, - -0.002367795445024967, - -0.016241902485489845, - -0.008381865918636322, - 0.011949866078794003, - 0.021316682919859886, - -0.019529420882463455, - -0.0365801565349102, - -0.001469272538088262, - -0.014885149896144867, - 0.0137762650847435, - 0.030161671340465546, - 0.0032500114757567644, - -0.008427525870501995, - 0.0352494977414608, - -0.027996083721518517, - 0.04545123875141144, - -0.010110422037541866, - 0.025439126417040825, - -0.0016356053529307246, - -0.03671061620116234, - 0.017142057418823242, - -0.0033021941781044006, - 0.00624237023293972, - -0.009275496937334538, - 0.020325209945440292, - 0.021134043112397194, - -0.020925311371684074, - 0.004791035316884518, - 0.02357359044253826, - -0.005511810537427664, - -0.007788286078721285, - -0.005622698925435543, - -0.003509294707328081, - 0.01664632000029087, - -0.0027004610747098923, - -0.027578622102737427, - 0.02783953584730625, - 0.0006698154611513019, - -0.01286958809942007, - -0.01916414126753807, - 0.019098913297057152, - 0.008336205966770649, - 0.032222893089056015, - -0.01839444413781166, - 0.0030608486849814653, - 0.015446115285158157, - 0.0020155615638941526, - -0.016137538477778435, - 0.005668358877301216, - -0.014193727634847164, - 0.01864231377840042, - 0.008081814274191856, - 0.03227507695555687, - -0.002460746094584465, - 0.003161952830851078, - -0.018616221845149994, - -0.0024183476343750954, - -0.007175137754529715, - -0.0031717370729893446, - 0.000246033858275041, - -0.010077807120978832, - 0.004432278219610453, - -0.005126962438225746, - -0.02433023974299431, - -0.005166099406778812, - -0.013750173151493073, - -0.025008616968989372, - 0.029378928244113922, - -0.01305875089019537, - 0.025165164843201637, - -0.016763731837272644, - 0.014063270762562752, - -0.005710757337510586, - 0.014754693023860455, - 0.04093742370605469, - -0.014102407731115818, - -0.03290126845240593, - -0.009086334146559238, - -0.01716814748942852, - -0.011323672719299793, - 0.0030151887331157923, - -0.003049433697015047, - -0.012262962758541107, - -0.009529887698590755, - -0.009927782230079174, - -0.009666867554187775, - -0.009973442181944847, - 0.022321201860904694, - -0.029144106432795525, - -0.03245771676301956, - 0.00868843961507082, - -0.011525880545377731, - 0.004409448243677616, - 0.00565531337633729, - -0.023873640224337578, - 0.0008667240617796779, - 0.007723057642579079, - -0.0009922889294102788, - 0.015641801059246063, - -0.006607649847865105, - 0.001115407794713974, - -0.015198246575891972, - 0.006353258620947599, - 0.010319152846932411, - 0.02783953584730625, - -0.007005543913692236, - 0.009373338893055916, - 0.0035843076184391975, - -0.012406465597450733, - -0.00919722206890583, - -0.0031766293104737997, - 0.018381398171186447, - 0.00691422400996089, - -0.001384475501254201, - -0.0021574334241449833, - 0.018785815685987473, - 0.004735590890049934, - 0.0049247536808252335, - 0.00804267730563879, - 0.0318315215408802, - 0.03504076600074768, - -0.0025814189575612545, - 0.00795788038522005, - -0.031492333859205246, - 0.015863576903939247, - -0.02101663127541542, - -0.0023710569366812706, - -0.013241390697658062, - 0.033475279808044434, - 0.01551134418696165, - 0.028752734884619713, - -0.01678982377052307, - -0.02594790793955326, - 0.00010834050772245973, - 0.023978006094694138, - 0.033475279808044434, - -0.0011105156736448407, - -0.012706517241895199, - 0.0029793130233883858, - -0.002080790000036359, - 0.021864602342247963, - -0.013645808212459087, - 0.030500859022140503, - 0.007468666415661573, - -0.0037212874740362167, - 0.00023523037089034915, - 0.01587662287056446, - -0.016059262678027153, - -0.000649431545753032, - -0.0018867352046072483, - -0.038824018090963364, - -0.028230907395482063, - -0.0020644827745854855, - 0.003841960337013006, - 0.02433023974299431, - 0.008225317113101482, - 0.008577551692724228, - -0.024238919839262962, - -8.26185532787349e-06, - 0.01131062675267458, - -0.0044290171936154366, - 0.021251454949378967, - 0.01699855364859104, - 0.012262962758541107, - 0.007573031820356846, - 0.009927782230079174, - 0.010143036022782326, - 0.03000512160360813, - -0.0234692245721817, - 0.011460652574896812, - 0.001982947112992406, - 0.0073708235286176205, - -0.00369845749810338, - 0.018303124234080315, - 0.012015094980597496, - -0.020129524171352386, - 0.020168660208582878, - 0.013463168404996395, - 0.004595349542796612, - 0.02164282463490963, - 0.018994547426700592, - -0.0085514597594738, - 0.006098867394030094, - 0.02667846716940403, - 0.0031929363030940294, - -0.02303871512413025, - -0.030813956633210182, - 0.011004052124917507, - -0.014324184507131577, - -0.007970926351845264, - -0.008375342935323715, - -0.011271489784121513, - -0.0010746399639174342, - 0.016881143674254417, - 0.013945858925580978, - -0.032014161348342896, - 0.007755672093480825, - 0.011212783865630627, - 0.012354282662272453, - 0.014585098251700401, - -0.015146063640713692, - -0.031701065599918365, - 0.0035973533522337675, - 0.030761772766709328, - -0.008388388901948929, - -0.0024346548598259687, - -0.012595628388226032, - 0.01566789299249649, - -0.005130223464220762, - -0.015224338509142399, - -0.022438613697886467, - 0.016111446544528008, - 0.005120439454913139, - -0.016346268355846405, - -0.015654847025871277, - 0.0008059800020419061, - 0.022490795701742172, - -0.022882167249917984, - -0.013254436664283276, - 0.016385406255722046, - -0.0024134553968906403, - -0.0013885522494092584, - -0.0008561244467273355, - -0.005521595012396574, - 0.06220192462205887, - -0.016215812414884567, - -0.009823416359722614, - 0.007997017353773117, - -0.006692446768283844, - -0.008453616872429848, - 0.009184177033603191, - -0.017050737515091896, - -0.01660718210041523, - -0.006519591435790062, - -0.00750780338421464, - 0.007194706704467535, - -0.019242415204644203, - 0.0157722570002079, - 0.029248472303152084, - -0.022151608020067215, - 0.0009588593384250998, - -0.032535988837480545, - -0.010788798332214355, - 0.004777989815920591, - 0.001357568777166307, - 0.02630014158785343, - -0.00793831143528223, - 0.005215020850300789, - 0.0009376600501127541, - -0.034492846578359604, - -0.014689464122056961, - -0.044459763914346695, - 0.005208497866988182, - 0.008284023031592369, - 0.003279364202171564, - -0.024852069094777107, - 0.011806363239884377, - -0.02258211560547352, - 0.01845967397093773, - -0.007220798172056675, - 0.01161067746579647, - -0.006307598669081926, - 0.03013557940721512, - -0.007912220433354378, - -0.022712573409080505, - 0.007377346511930227, - 0.012178165838122368, - 0.02667846716940403, - 0.0112584438174963, - -0.028935374692082405, - 0.012002049013972282, - 0.022216835990548134, - 0.0011626984924077988, - -0.033866651356220245, - -0.021603688597679138, - 0.026704559102654457, - -0.0007839653408154845, - 0.03825000673532486, - -0.023730138316750526, - 0.0049247536808252335, - 0.0037571631837636232, - -0.013606670312583447, - 0.03905884176492691, - -0.0004101243684999645, - 0.013932812958955765, - 0.011780272237956524, - 0.010769229382276535, - -0.0025161905214190483, - 0.008473185822367668, - -0.01112146396189928, - -0.017781296744942665, - 0.0034408047795295715, - -0.006842472590506077, - -0.02734379842877388, - -0.009927782230079174, - 0.017089873552322388, - -0.011382377706468105, - -0.010573544539511204, - -0.007331686560064554, - -0.0014847643906250596, - -0.0023449654690921307, - -0.006421748548746109, - -0.013932812958955765, - -0.008538413792848587, - -0.0031456456054002047, - -0.013737128116190434, - 0.022112470120191574, - -0.0018051995430141687, - 0.010795321315526962, - -0.0059423185884952545, - -0.025830496102571487, - -0.009014582261443138, - -0.01916414126753807, - -0.0009034150862134993, - 0.02359968051314354, - -0.009869076311588287, - -0.0016943110385909677, - -0.013645808212459087, - 0.024186737835407257, - 0.006089082919061184, - 0.007599123287945986, - -0.01864231377840042, - -0.015406978316605091, - 0.006868564058095217, - -0.02041652984917164, - -0.022073334082961082, - -0.01877276971936226, - -0.01922936923801899, - 0.010136513039469719, - -0.004588827025145292, - 0.010247401893138885, - 0.006392395589500666, - 0.02815263159573078, - 0.007573031820356846, - -0.007527371868491173, - -0.02867446094751358, - 0.016555000096559525, - -0.017533428966999054, - 0.032431624829769135, - -0.022295109927654266, - 0.010586589574813843, - -0.005094347987323999, - 0.0008247331716120243, - -0.00686204107478261, - 0.015289566479623318, - -0.01236080564558506, - 0.0007146600401028991, - -0.01489819586277008, - 0.01552438922226429, - 0.005694450344890356, - -0.01064529549330473, - 0.021408002823591232, - -0.0006200787029229105, - 0.00552485603839159, - 0.010958392173051834, - -0.004122443031519651, - 0.007696966174989939, - -0.0008055723155848682, - -2.3377802790491842e-05, - 0.023860596120357513, - 0.015863576903939247, - 0.01045613270252943, - 0.027213340625166893, - -0.01618972048163414, - 0.0041517955251038074, - -0.0161505825817585, - 0.0035647389013320208, - 0.026743697002530098, - -0.0006343474378809333, - 0.02982248179614544, - 0.002038391539826989, - -0.021512368693947792, - 0.0007558355573564768, - -0.0021411264315247536, - -0.0003561069897841662, - 0.014832966960966587, - -0.004859525244683027, - 0.018837999552488327, - -0.012582582421600819, - -5.269241955829784e-05, - -0.0005532194627448916, - -0.00013035513984505087, - -0.024069325998425484, - -0.0021623256616294384, - 0.0029287608340382576, - -0.01668545790016651, - -0.00494758365675807, - 0.029013648629188538, - -0.04080696776509285, - -0.022255973890423775, - -0.018798861652612686, - 0.017911752685904503, - 0.007305595092475414, - 0.0029711592942476273, - 0.00624889275059104, - -0.009418999776244164, - -0.012419511564075947, - 0.001449704053811729, - -0.018120484426617622, - -0.019712060689926147, - -0.018903227522969246, - -0.003161952830851078, - 0.011193214915692806, - 0.01491124089807272, - 0.0023319197352975607, - 0.026600193232297897, - 0.0004349927476141602, - 0.001193682081066072, - -0.0029923587571829557, - 0.017950890585780144, - -0.006848995573818684, - -0.023090898990631104, - -0.04232027009129524, - 0.003783254651352763, - -0.0005405814154073596, - 0.0031913057900965214, - 0.002369426190853119, - -0.009184177033603191, - 0.04686017334461212, - 0.005965149030089378, - -0.017259467393159866, - 0.005293294787406921, - 0.005831430200487375, - -0.0016576199559494853, - -0.0011667752405628562, - 0.00432791281491518, - 0.012804360128939152, - 0.010964915156364441, - -0.014454641379415989, - -0.011675906367599964, - 0.023717092350125313, - -0.009092857129871845, - -0.02395191602408886, - 0.014272001571953297, - 0.013384893536567688, - -0.021251454949378967, - 0.03712807595729828, - 0.0021867863833904266, - -0.02097749523818493, - -0.012863065116107464, - 0.01797698251903057, - -0.0023205047473311424, - -0.029457202181220055, - 0.020090386271476746, - -0.012510831467807293, - 0.014467687346041203, - 0.0030396494548767805, - 0.006411964073777199, - -0.009803847409784794, - 0.016098400577902794, - 0.02877882681787014, - 0.0004928830312564969, - -0.011075804010033607, - -0.005759678781032562, - -0.023938870057463646, - -0.018368354067206383, - -0.013352279551327229, - -0.017781296744942665, - 0.01281740516424179, - -0.004099613055586815, - -0.013091365806758404, - 0.026339279487729073, - -0.03206634521484375, - -0.01321529969573021, - 0.00691422400996089, - -0.0038941430393606424, - 0.03780645504593849, - -0.005345477722585201, - 0.02426501177251339, - 0.0032043512910604477, - -0.0016690349439159036, - -0.011271489784121513, - -0.0519740916788578, - -0.016633274033665657, - 0.0006005101022310555, - 0.019255461171269417, - 0.025295622646808624, - 0.0002484799188096076, - -0.02580440603196621, - 0.0015630385605618358, - 0.0135153504088521, - -0.013437076471745968, - -0.016007080674171448, - 0.030161671340465546, - 0.02189069427549839, - 0.010821412317454815, - -0.013300096616148949, - -0.011395423673093319, - -0.02517821080982685, - 0.021603688597679138, - -0.008133997209370136, - 0.00753389485180378, - -0.0009254297474399209, - -0.017950890585780144, - -0.006411964073777199, - 0.005342216230928898, - -0.014219818636775017, - 0.026482781395316124, - -0.0009865814354270697, - -0.024278057739138603, - -0.009569024667143822, - -0.0373368076980114, - -0.02059916965663433, - 0.0014806875260546803, - -0.027317706495523453, - 0.034179747104644775, - 0.011845500208437443, - -0.01695941761136055, - -0.003845221595838666, - -0.011917252093553543, - -0.014585098251700401, - -0.00556073198094964, - 0.005661836359649897, - 0.01720728538930416, - -0.02247774973511696, - -0.010886641219258308, - 0.009184177033603191, - 0.0065717739053070545, - 0.005479196086525917, - -0.008068769238889217, - 0.009008059278130531, - 0.004520337097346783, - -0.0010958393104374409, - 0.0012760331155732274, - -0.004018077161163092, - 0.009601639583706856, - -0.011108417995274067, - -0.017285559326410294, - -0.006855518091470003, - -0.018929319456219673, - -0.02870055101811886, - -0.0020302378106862307, - 0.01727251335978508, - -0.03718025982379913, - -0.009660344570875168, - -0.01622885838150978, - 0.0238475501537323, - 0.01972510665655136, - -0.012947862967848778, - -0.027787351980805397, - 0.003391883336007595, - 0.029926847666502, - -0.04999114200472832, - 0.013645808212459087, - 0.02590877190232277, - 0.00631086016073823, - -0.0161505825817585, - 0.011095372028648853, - 0.005126962438225746, - -0.0022781062871217728, - 0.02794390171766281, - -0.008864556439220905, - -0.024943388998508453, - -0.004517075605690479, - -0.009373338893055916, - 0.012967430986464024, - -0.010873595252633095, - -0.009223314002156258, - -0.0002138272684533149, - 0.014741647057235241, - 0.01622885838150978, - 0.003207612782716751, - -0.0023205047473311424, - 0.014141544699668884, - 0.014806875959038734, - -0.0043670497834682465, - 0.011793317273259163, - -0.038380466401576996, - -0.0018280295189470053, - 0.01412849873304367, - -0.011832455173134804, - 0.0035647389013320208, - -0.027630804106593132, - -0.01316311676055193, - 0.0073447320610284805, - 0.0208078995347023, - -0.018407490104436874, - -0.02174719050526619, - 0.001784000196494162, - -0.013450122438371181, - -0.0013339234283193946, - 0.011147554963827133, - 0.011858546175062656, - -0.007136000785976648, - 0.012073799967765808, - 0.011401946656405926, - 0.004807342309504747, - -0.01731165125966072, - 0.0021411264315247536, - -0.009288541972637177, - 0.02195592224597931, - 0.0035777846351265907, - -0.013052227906882763, - -0.002550435485318303, - -0.017703022807836533, - -0.0074164834804832935, - 0.025921816006302834, - -0.01297395396977663, - -0.007683920674026012, - -0.009712527506053448, - -0.03297954425215721, - -0.008284023031592369, - -0.01052788458764553, - -0.006907701026648283, - -0.0026531703770160675, - 0.007357778027653694, - 0.0061282203532755375, - 0.019242415204644203, - -0.014376367442309856, - -0.001056702109053731, - -0.024917297065258026, - -0.0296920258551836, - 0.01178679522126913, - 0.020325209945440292, - 0.03543213754892349, - 0.004288775846362114, - -0.013123979791998863, - -0.022816939279437065, - 0.011865069158375263, - 0.006304337177425623, - 0.0002531682257540524, - -0.013371848501265049, - -0.005981456022709608, - 0.006650048308074474, - -0.01192377507686615, - 0.013815402053296566, - -0.008747145533561707, - 0.01860317587852478, - 0.024043235927820206, - -0.021094905212521553, - 0.0043409583158791065, - -0.03224898502230644, - -0.0014994407538324594, - -0.020090386271476746, - -0.009412476792931557, - -0.009034151211380959, - -0.011688952334225178, - -0.0033690533600747585, - 0.012589105404913425, - -0.02646973542869091, - -0.004252899903804064, - 0.02399105206131935, - 0.020364345982670784, - 0.0029711592942476273, - -0.01594185270369053, - 0.011062758043408394, - -0.013476213440299034, - -0.0035647389013320208, - -0.014206773601472378, - 0.016137538477778435, - -0.030553042888641357, - -0.019190233200788498, - 0.015707029029726982, - -0.003799561643972993, - 0.014767738990485668, - -0.013998041860759258, - 0.016281040385365486, - -0.021460184827446938, - 0.00788612850010395, - -0.03198806941509247, - -0.01839444413781166, - -0.004389879759401083, - 0.013854539021849632, - 0.023156126961112022, - -0.016842005774378777, - 0.005361784715205431, - 0.007162092253565788, - 0.006855518091470003, - -0.015367841348052025, - -0.011701997369527817, - -0.01243255753070116, - -0.010280015878379345, - -0.02318221889436245, - 0.006679401267319918, - 0.004282252863049507, - 0.032301165163517, - -0.005795554723590612, - -0.026195775717496872, - -0.017115965485572815, - 0.01489819586277008, - 0.18702323734760284, - -0.014506824314594269, - 0.0021199272014200687, - 0.022673435509204865, - -0.006046684458851814, - 0.0008120951824821532, - 0.0386674702167511, - -0.010410472750663757, - 0.024134555831551552, - 0.006604388356208801, - 0.0030200807377696037, - -0.014454641379415989, - 0.011982480064034462, - 0.0011186692863702774, - 0.025478262454271317, - -0.04125051945447922, - -0.04936495050787926, - -0.028804916888475418, - -0.003109770128503442, - -0.00884498842060566, - 0.021238408982753754, - -0.010012579150497913, - -0.002243861323222518, - -0.005723803304135799, - 0.022216835990548134, - -0.006637002807110548, - -0.041354887187480927, - 0.013437076471745968, - 0.03003121353685856, - 0.012099891901016235, - -0.0025439125020056963, - 0.025673948228359222, - -0.020273026078939438, - 0.0017236638814210892, - -0.026874152943491936, - -0.0040963515639305115, - 0.021199271082878113, - 0.008597119711339474, - 0.028439637273550034, - 0.035640865564346313, - -0.004722545389086008, - -0.004895401187241077, - -0.01804221048951149, - -0.03832828253507614, - 0.011891160160303116, - 0.042920369654893875, - -0.0016356053529307246, - 0.003212505020201206, - -0.004513814114034176, - -0.006561989895999432, - -0.014859058894217014, - 0.00373759469948709, - 0.003052694955840707, - 0.029326746240258217, - -0.018903227522969246, - -0.007781763095408678, - 0.009823416359722614, - -0.0021280806977301836, - -0.008942831307649612, - 0.010123467072844505, - -0.00943856779485941, - 0.015850532799959183, - -0.014650327153503895, - 0.02640450745820999, - 0.002905930858105421, - 0.02447374351322651, - -0.029744207859039307, - 0.004256161395460367, - 0.002387364162132144, - -0.039711128920316696, - 0.0028325486928224564, - -0.0137762650847435, - -0.014311138540506363, - 0.015211292542517185, - -0.02318221889436245, - -0.017115965485572815, - 0.010364812798798084, - 0.0159157607704401, - -0.0016315284883603454, - 0.019568558782339096, - -0.032849084585905075, - -0.004944322165101767, - -0.01860317587852478, - 0.0060140700079500675, - -0.011264966800808907, - -0.01793784461915493, - 0.013039182871580124, - 0.02825699746608734, - -0.011382377706468105, - 0.006376088596880436, - 0.011643292382359505, - -0.008512322790920734, - -0.013234867714345455, - 0.009692959487438202, - 0.018942363560199738, - 0.023051761090755463, - 0.005850998684763908, - 0.023925824090838432, - 0.006261938717216253, - -0.009295064955949783, - -0.025621766224503517, - 0.077908955514431, - 0.04357265681028366, - -0.018524901941418648, - -0.013234867714345455, - 0.00041623954894021153, - -0.0012817406095564365, - 0.011812886223196983, - 0.005466150585561991, - -0.004057214595377445, - -0.017285559326410294, - -0.014650327153503895, - 0.0017301866319030523, - 0.0014203512109816074, - 0.015172155573964119, - 0.0029434373136609793, - -0.018094392493367195, - -0.0005789031856693327, - 0.022216835990548134, - -0.023821458220481873, - 0.006082559935748577, - -0.031727153807878494, - 0.02817872352898121, - 0.020442619919776917, - -0.003450589021667838, - -0.03256208077073097, - -0.046625349670648575, - -0.0002835402556229383, - -0.00568140484392643, - -0.01179984025657177, - 0.03793691098690033, - -0.021799374371767044, - 0.020429573953151703, - -0.0005907258600927889, - -0.016515862196683884, - 0.025399988517165184, - 0.006268461234867573, - 0.002341704210266471, - -0.0012018355773761868, - -0.00375390169210732, - 0.012386897578835487, - -0.015824440866708755, - -0.003991985693573952, - 0.0035777846351265907, - 0.009503796696662903, - 0.005880351644009352, - 0.025921816006302834, - -0.025713086128234863, - -0.010319152846932411, - -0.044981591403484344, - -0.0049247536808252335, - -0.024486789479851723, - 0.013580579310655594, - -0.00812747422605753, - 0.03827609866857529, - 0.0013322926824912429, - -0.022999579086899757, - -0.03277081251144409, - 0.004308344330638647, - 0.01702464558184147, - -0.009086334146559238, - 0.012080322951078415, - 0.022438613697886467, - -0.013450122438371181, - -0.017181193456053734, - -0.009066765196621418, - -0.167611226439476, - 0.018472718074917793, - 0.011643292382359505, - -0.021616734564304352, - -0.0013347386848181486, - -0.010188695974647999, - 0.028961466625332832, - 0.0058966586366295815, - 0.006594603881239891, - 0.010951870121061802, - 0.018616221845149994, - -0.006147788837552071, - -0.02870055101811886, - 0.008955876342952251, - -0.013541442342102528, - -0.006985975429415703, - -0.004738852381706238, - 0.007188183721154928, - 0.03303172439336777, - 0.014702510088682175, - 0.02534780651330948, - 0.0065163299441337585, - -0.0014806875260546803, - 0.0017823694506660104, - 0.0020351300481706858, - 0.03224898502230644, - -0.020964449271559715, - 0.019072821363806725, - 0.018472718074917793, - -0.012354282662272453, - -0.004706238396465778, - 0.011023621074855328, - 0.010710524395108223, - -0.006539159920066595, - -0.018837999552488327, - -0.01361971627920866, - -0.0072990721091628075, - -0.007520849350839853, - 0.005306340754032135, - 0.00745562044903636, - 0.019490282982587814, - 0.012745654210448265, - -0.007716534659266472, - 0.0027852579951286316, - -0.004960629623383284, - 0.024121509864926338, - 0.0035419089253991842, - -0.018785815685987473, - -0.001679634558968246, - 0.00028720934642478824, - 0.02765689603984356, - -0.02083399146795273, - 0.017363833263516426, - 0.010619204491376877, - 0.0011912359623238444, - 0.024447651579976082, - -0.0037343332078307867, - -0.022229881957173347, - 0.00975818745791912, - 0.008981968276202679, - -0.018316170200705528, - -0.012165119871497154, - 0.0037636859342455864, - 0.005117177963256836, - 0.0021688484121114016, - -0.0349624902009964, - -0.019868608564138412, - 0.013137025758624077, - -0.011943343095481396, - 0.016320178285241127, - -0.0045562125742435455, - -0.020194752141833305, - 0.011695475317537785, - -0.02713506668806076, - 0.0007256673416122794, - -0.004960629623383284, - -0.01800307258963585, - -0.008055723272264004, - -0.008205749094486237, - 0.00631086016073823, - -0.01367189921438694, - 0.04899967089295387, - 5.3813535487279296e-05, - -0.020925311371684074, - -0.000583795306738466, - 0.017963936552405357, - -0.00924940500408411, - 0.0020498065277934074, - -0.0033152399118989706, - -0.004233331419527531, - 0.02282998524606228, - -0.02549130842089653, - -0.0355365015566349, - 0.0025895724538713694, - 0.015459161251783371, - 0.01479382999241352, - -0.011401946656405926, - 0.015746166929602623, - -0.005237850826233625, - -0.011656337417662144, - 0.016033172607421875, - -0.0006213017040863633, - -0.03775427117943764, - 0.009066765196621418, - 0.018968455493450165, - 0.01891627348959446, - -0.013150070793926716, - 0.011304103769361973, - 0.02828308939933777, - 0.0061836643144488335, - -0.027317706495523453, - 0.00031065085204318166, - 0.003652797546237707, - 0.015459161251783371, - 0.007194706704467535, - 0.006320644170045853, - -0.027265524491667747, - -0.03483203426003456, - 0.015367841348052025, - 0.022021150216460228, - 0.061106085777282715, - 0.004001770168542862, - -0.007846991531550884, - -0.0016698503168299794, - -0.010345244780182838, - -0.0159157607704401, - -0.04605133831501007, - -0.007214275188744068, - 0.04088523983955383, - 0.021029677242040634, - -0.015641801059246063, - 0.011186692863702774, - -0.004504029639065266, - 0.019085867330431938, - 0.023338766768574715, - 0.006330428645014763, - -0.02262125350534916, - -0.010462655685842037, - -0.02734379842877388, - -0.009588593617081642, - 0.027161158621311188, - 0.03235334903001785, - -0.015485252253711224, - -0.01382844801992178, - -0.032822996377944946, - 0.03845873847603798, - 0.005782508756965399, - 0.007175137754529715, - -0.002433024113997817, - -0.02101663127541542, - -0.005922750104218721, - 0.0036136603448539972, - -0.02451288141310215, - 0.03892838582396507, - 0.016985507681965828, - -0.014154590666294098, - -0.005515072029083967, - -0.0017269252566620708, - 0.011538926512002945, - -0.027996083721518517, - -0.01995992846786976, - -0.0012434187810868025, - -0.005312863737344742, - -0.0135153504088521, - 0.019568558782339096, - -0.012152074836194515, - -0.0028080882038921118, - 0.004031123127788305, - -0.010632249526679516, - -0.033266548067331314, - 0.01587662287056446, - -0.003988724201917648, - -0.020820945501327515, - -0.0038778360467404127, - 0.01286958809942007, - -0.016007080674171448, - -0.020442619919776917, - -0.012139028869569302, - 0.005035642068833113, - 0.0075860777869820595, - 8.413460454903543e-05, - -0.00865582562983036, - 0.011558495461940765, - 0.0011757442262023687, - -0.0015891300281509757, - 0.004060475621372461, - -0.011538926512002945, - 0.004618179518729448, - -0.01702464558184147, - 0.050225965678691864, - -0.002419978380203247, - -0.007892651483416557, - 0.011643292382359505, - -0.010762707330286503, - 0.02282998524606228, - -0.02139495685696602, - -0.005782508756965399, - 0.0038289146032184362, - -0.017598656937479973, - 0.018629267811775208, - -0.01800307258963585, - 0.020638305693864822, - -0.037154167890548706, - 0.0009816893143579364, - 0.037989094853401184, - -0.027291616424918175, - 0.0035973533522337675, - -0.033866651356220245, - -0.000642908678855747, - 0.013254436664283276, - 0.017703022807836533, - 0.04646880179643631, - -0.010299584828317165, - -0.007357778027653694, - 0.00994735024869442, - -0.017676930874586105, - 0.00945813674479723, - -0.008120951242744923, - 0.01664632000029087, - -0.03840655833482742, - -0.0014521500561386347, - 0.012693471275269985, - 0.01671154797077179, - -0.029039740562438965, - 0.009706004522740841, - 0.008160089142620564, - -0.024747703224420547, - 0.0030722636729478836, - -0.07874387502670288, - 0.015994034707546234, - -0.02682197093963623, - -0.005303079262375832, - -0.02006429433822632, - -0.003522340441122651, - 0.00498998211696744, - -0.0019177186768501997, - -0.01569398306310177, - 0.000518159125931561, - -0.0061282203532755375, - 0.006095605902373791, - 0.006408702582120895, - -0.0018133530393242836, - -0.006010808981955051, - -0.024630291387438774, - 0.004892139695584774, - -0.005195452366024256, - -0.00016245979350060225, - -0.002951590809971094, - -0.024538971483707428, - 0.0017236638814210892, - -0.0010730092180892825, - 0.005808600224554539, - -0.024486789479851723, - 0.017363833263516426, - -0.006868564058095217, - -0.003044541459530592, - -0.022373385727405548, - 0.02116013504564762, - 0.021408002823591232, - -0.008694962598383427, - -0.022438613697886467, - 0.014363321475684643, - -0.01129105780273676, - -0.013763219118118286, - -0.017220331355929375, - 0.021564550697803497, - 0.012452125549316406, - 0.05891440436244011, - -0.011565017513930798, - -0.007781763095408678, - 0.03138796612620354, - -0.018590129911899567, - 0.006565251387655735, - -0.009516841731965542, - 0.017181193456053734, - 0.018511855974793434, - 0.008623211644589901, - -0.0250347089022398, - 0.01372408214956522, - 0.01702464558184147, - 0.01678982377052307, - -0.0099995331838727, - 0.013084842823445797, - -0.010906210169196129, - 0.00438661826774478, - -0.024004098027944565, - 0.022490795701742172, - -0.039711128920316696, - 0.025960953906178474, - -0.0019992543384432793, - -0.011395423673093319, - -0.007240366656333208, - -0.00017917460354510695, - -0.018277034163475037, - -0.014519870281219482, - 0.00015175824228208512, - 0.0034995104651898146, - -0.021799374371767044, - -0.008681916631758213, - -0.0030918321572244167, - -0.006610911339521408, - 0.019633786752820015, - -0.007331686560064554, - 0.02657410129904747, - 0.011728089302778244, - 0.031414058059453964, - -0.004158318508416414, - 0.0019438101444393396, - 0.023417040705680847, - 0.005916227586567402, - -0.02409541793167591, - 0.0015980988973751664, - 0.017846524715423584, - 0.01604621857404709, - -0.022216835990548134, - 0.02796999178826809, - -0.0035908303689211607, - -0.006486976984888315, - -0.006098867394030094, - 0.018133530393242836, - -0.002025345806032419, - -0.006927269510924816, - -0.003318501403555274, - 0.0028129802085459232, - -0.01254996843636036, - -0.005358523689210415, - 0.0073447320610284805, - 0.028230907395482063, - -0.008864556439220905, - -0.005955364555120468, - 0.00555094750598073, - 0.007266458123922348, - -0.010599635541439056, - 0.005955364555120468, - -0.005143269430845976, - -0.03913711756467819, - 0.012947862967848778, - 0.003825653111562133, - -0.012967430986464024, - 0.021107951179146767, - 0.004001770168542862, - 0.008120951242744923, - -0.006601126864552498, - 0.0012629873817786574, - -0.002860270906239748, - -0.0015043328749015927, - -0.026769787073135376, - 0.015954896807670593, - 0.006927269510924816, - 0.04216371849179268, - 0.011532403528690338, - -0.00868843961507082, - 0.01660718210041523, - -0.02314308099448681, - 0.01506778970360756, - -0.036449700593948364, - -0.01989470049738884, - 0.003858267329633236, - -0.03574523329734802, - 0.0037767316680401564, - -0.005899920128285885, - -0.00745562044903636, - -0.011408469639718533, - 0.005945580080151558, - 0.0098103703930974, - 0.02909192256629467, - 0.016907233744859695, - 0.11480220407247543, - -0.006868564058095217, - -0.02014256827533245, - -0.0011822670930996537, - -0.0009474443504586816, - 0.006692446768283844, - 0.002224292838945985, - 0.009112425148487091, - -0.027917809784412384, - -0.020051248371601105, - 0.011304103769361973, - -0.0011643292382359505, - 0.002243861323222518, - -0.014219818636775017, - -0.00863625667989254, - -0.007214275188744068, - 0.007018589414656162, - -0.0018263987731188536, - -0.01989470049738884, - 0.010077807120978832, - 0.03965894505381584, - -0.004807342309504747, - 0.018159622326493263, - 0.012021617963910103, - -0.016072308644652367, - -0.0008887386647984385, - 0.026978518813848495, - -0.022190744057297707, - 0.00250477553345263, - -0.02290825918316841, - 0.000265602400759235, - -0.016985507681965828, - -0.03976330906152725, - -0.020964449271559715, - 0.014506824314594269, - -0.039006657898426056, - -0.008981968276202679, - 0.0035060334485024214, - 0.024956434965133667, - -0.008029631339013577, - -0.026626285165548325, - 0.04245072603225708, - -0.033866651356220245, - -0.006340212654322386, - 0.019242415204644203, - -0.013919767923653126, - -0.004722545389086008, - -0.005570515990257263, - -0.02776126191020012 - ], - "sparse": "SparseEmbedding(values=array([1.68320383, 1.68320383]), indices=array([ 284862250, 1987903417]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 39, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 2 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000040.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000040.json deleted file mode 100644 index 099f784cf564cbb0d1bdf8ea79c1117b90f7571c..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000040.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000040", - "content": "Tabellenverzeichnis Tabelle 1: Baumpflanzungsszenarien in Gromb\u00fchl (eigene Berechnungen) ............... 34 Tabelle 2: Baumpflanzungsszenarien in Grafenb\u00fchl (eigene Berechnungen) ............. 36 Tabelle 3: \u00dcbersicht aller Baumpflanzungsszenarien (eigene Berechnungen) ............ 38 Tabelle 4: Zu- bzw. Abnahme der CO2e-Emissionen in t nach Szenarien (gerundete Werte) (eigene Berechnungen auf Grundlage der Simulationsergebnisse) ................. 43 Tabelle 5: Auflistung der \u00fcber die Monate gemittelte prozentuale Verringerung der Globalstrahlung (eigene Berechnungen auf Grundlage der Simulationsergebnisse) ... 46", - "embedding": { - "dense": [ - 0.007855458185076714, - -0.016904316842556, - 0.01993371732532978, - -0.019973060116171837, - -0.010707816109061241, - 0.009645558893680573, - -0.03483154997229576, - 0.0006979259778745472, - -0.030425148084759712, - -0.011153701692819595, - 0.002311393152922392, - 0.0054916078224778175, - -0.013651973567903042, - 0.024720432236790657, - 0.019868146628141403, - 0.028064576908946037, - 0.04183457791805267, - 0.010117673315107822, - 0.022635260596871376, - 0.0043146004900336266, - 0.004983429331332445, - 0.01518634520471096, - 0.004678522236645222, - 0.004868679214268923, - 0.002647446934133768, - 0.015435516834259033, - 0.022084461525082588, - -0.021861517801880836, - -0.022674603387713432, - 0.01658957451581955, - 0.00466212909668684, - -0.0006282563554123044, - -0.007383344229310751, - -0.005409643519669771, - -0.015855174511671066, - -0.017350202426314354, - -0.003986743278801441, - 0.0011647127103060484, - 0.01658957451581955, - -0.009986530058085918, - -0.009357044473290443, - 0.00574077945202589, - -0.02019600383937359, - -0.014307687990367413, - 0.0256253182888031, - 0.014937173575162888, - 0.01721905916929245, - 0.011337301693856716, - -0.01758625917136669, - 0.004393286537379026, - 0.00922590121626854, - 0.029795661568641663, - -0.020064860582351685, - 0.011193044483661652, - -0.018714088946580887, - 0.013494602404534817, - -0.019553402438759804, - 0.009468515403568745, - 0.008727558888494968, - 0.002065500244498253, - -0.02342211827635765, - -0.01421588845551014, - -0.013507716357707977, - 0.011763515882194042, - -0.0369560644030571, - -0.013507716357707977, - -0.004642457701265812, - 0.0009483269532211125, - -0.013520830310881138, - -0.014635545201599598, - 0.013238873332738876, - 0.030582519248127937, - 0.004619508050382137, - -0.02104843221604824, - 0.01721905916929245, - -0.01576337404549122, - -0.00421952223405242, - -0.0029851398430764675, - -0.008478387258946896, - 0.00919311586767435, - 0.022294288501143456, - -0.014596202410757542, - -0.02402537502348423, - 0.035592176020145416, - 0.014648659154772758, - 0.024261431768536568, - -0.013356901705265045, - 0.03672000765800476, - -0.0405493788421154, - -0.002119596814736724, - 0.03157920390367508, - 0.033651262521743774, - 0.007068600971251726, - 0.026018746197223663, - 0.0015540431486442685, - -0.000780709960963577, - -0.017179716378450394, - 0.025756461545825005, - 0.009461958892643452, - -0.05185389518737793, - -0.016838746145367622, - 0.011907773092389107, - 0.011494672857224941, - -0.004239193629473448, - -0.016379745677113533, - -0.008642315864562988, - 0.029271090403199196, - 0.01217005867511034, - 0.008511172607541084, - -0.02451060339808464, - -0.010065215639770031, - 0.028956348076462746, - -0.016025660559535027, - 0.012589716352522373, - 0.0019933716394007206, - -0.024353232234716415, - 0.0363265760242939, - 0.012032358907163143, - -0.009875059127807617, - 0.00015306832210626453, - 0.028353089466691017, - -0.02397291734814644, - 0.018976373597979546, - -0.03627412021160126, - 0.011101244948804379, - 0.02034026011824608, - -0.002908093389123678, - -0.004032643511891365, - -0.007789887022227049, - -0.02245166152715683, - -0.012891344726085663, - 0.025048289448022842, - 0.008458715863525867, - 0.019461603835225105, - -0.017376432195305824, - 0.02911371923983097, - -0.016576459631323814, - 0.0174420028924942, - -0.04393286257982254, - -0.04131000488996506, - -0.010196358896791935, - 0.019291117787361145, - -0.028379319235682487, - -0.013507716357707977, - 0.014963402412831783, - 0.01927800290286541, - 0.017140373587608337, - 0.03323160484433174, - -0.0011401233496144414, - -0.02588760480284691, - -0.0012688073329627514, - 0.002881864784285426, - 0.024327004328370094, - 0.001546666375361383, - 0.01990748941898346, - -0.03472663462162018, - -0.009239016100764275, - 0.025205660611391068, - -0.03281194716691971, - -5.450625758385286e-05, - 0.02453683316707611, - 0.01168483030050993, - 0.004753929562866688, - 0.013330673798918724, - 0.002637611236423254, - 0.00030265317764133215, - -0.005796515382826328, - -0.014438831247389317, - 0.010937316343188286, - -0.023474575951695442, - 0.0004991625901311636, - 0.01930423080921173, - -0.015566660091280937, - 0.025992518290877342, - -0.029585832729935646, - 0.006878443993628025, - -0.0104520870372653, - 0.0031048075761646032, - -0.007422687020152807, - -0.03328406438231468, - -0.040942806750535965, - 0.02365817502140999, - 0.01471423078328371, - 0.0032507041469216347, - -0.037454407662153244, - -0.015855174511671066, - 0.02087794616818428, - 0.0197370033711195, - 0.004022807814180851, - -0.014661774039268494, - -0.008248887024819851, - 0.018740316852927208, - 0.023238517343997955, - -0.006983358412981033, - -0.633682370185852, - 0.0026802325155586004, - -0.008334130048751831, - -0.003990021999925375, - 0.02239920385181904, - 0.03417583554983139, - 0.016432203352451324, - -0.0005171947414055467, - -0.008445600979030132, - 0.020209116861224174, - 0.018294431269168854, - -0.004153950605541468, - 0.0065309153869748116, - -0.012183173559606075, - -0.00035183175350539386, - -0.02276640385389328, - -0.0029687469359487295, - -0.0029753041453659534, - 0.014176544733345509, - 0.004019529093056917, - -0.01405851636081934, - 0.017625601962208748, - 0.007048929575830698, - -0.0005934215150773525, - 0.023605717346072197, - 0.018294431269168854, - -0.00843904446810484, - -0.023028690367937088, - -0.006806315388530493, - -0.015632230788469315, - -0.0018737039063125849, - 0.025585975497961044, - -0.006924343761056662, - 0.015855174511671066, - 0.039474006742239, - 0.0012827413156628609, - -0.03181526064872742, - -0.0021884466987103224, - -0.0012335627106949687, - 0.019802574068307877, - -0.018320661038160324, - -0.011356973089277744, - -0.000706532271578908, - 0.0015630591660737991, - -0.009730801917612553, - 0.02194020338356495, - 0.017205946147441864, - -0.020930403843522072, - 0.0013392966939136386, - -0.017520688474178314, - 0.017651831731200218, - 0.0202746894210577, - -0.00759317260235548, - 0.010629130527377129, - 0.02688428945839405, - 0.028877662494778633, - 0.024038489907979965, - -0.010622573085129261, - -0.0048621222376823425, - 0.00616371538490057, - -0.0031802149023860693, - 0.008917715400457382, - 0.004075265023857355, - -0.017468230798840523, - -0.01773051731288433, - 0.03220869228243828, - -0.04925726354122162, - -0.0132847735658288, - 0.01630106009542942, - -0.03205132111907005, - -0.011147144250571728, - 0.00474081514403224, - 0.004439186304807663, - -0.03131692111492157, - 0.012006130069494247, - 0.013848687522113323, - 0.023264747112989426, - 0.004521150607615709, - -0.014950288459658623, - 0.010386516340076923, - -0.007304658181965351, - -0.003908057697117329, - -0.013029045425355434, - -0.004153950605541468, - 0.03247097507119179, - -0.03247097507119179, - -0.014819145202636719, - 0.002783507574349642, - -0.011966787278652191, - 0.015579774044454098, - 0.02407783269882202, - 0.02044517546892166, - -0.030451375991106033, - -0.00823577307164669, - 0.0031572647858411074, - 0.039395321160554886, - 0.005488329567015171, - 0.035198748111724854, - -0.009724244475364685, - -0.030818575993180275, - -0.023959804326295853, - 0.00215566111728549, - 0.043775491416454315, - 0.008498058654367924, - 0.024274546653032303, - 0.008209544233977795, - -0.039369091391563416, - -0.005714551080018282, - 0.02625480480492115, - -0.014517516829073429, - 0.0009040661971084774, - -0.020576316863298416, - -0.009534087032079697, - 0.006714515388011932, - 0.0002782687952276319, - -0.026936747133731842, - 0.04490332305431366, - -0.009593101218342781, - -0.017061688005924225, - 0.004291650839149952, - 0.010819287039339542, - 0.00383920781314373, - 0.011363530531525612, - -0.016655145213007927, - 0.01405851636081934, - 0.03792652115225792, - 0.00807840097695589, - -0.003553972113877535, - -0.0009212787263095379, - -0.012845444492995739, - 0.0047867149114608765, - 0.008734115399420261, - 0.027382632717490196, - -0.005970279686152935, - 0.016209259629249573, - -0.00816364400088787, - 0.02371063269674778, - 0.0014466699212789536, - -0.0034916792064905167, - -0.012773316353559494, - -0.02877274714410305, - -0.015278145670890808, - 0.011061902157962322, - -0.03501514717936516, - -0.007344000972807407, - 0.016051888465881348, - -0.006996472366154194, - 0.012386444956064224, - -0.006409608293324709, - 0.007645629812031984, - -0.0011614341055974364, - -0.003570364788174629, - 0.014019173569977283, - 0.004593279212713242, - 0.013560174033045769, - 0.0033703718800097704, - -0.028536690399050713, - -0.046031150966882706, - -0.004911300726234913, - -0.014596202410757542, - 0.020864831283688545, - 0.018609173595905304, - -0.03286440670490265, - -0.012838887982070446, - 0.0036064290907233953, - -0.00263105402700603, - -0.01025537308305502, - 0.012779873795807362, - 0.009160330519080162, - -0.03501514717936516, - -0.009422616101801395, - -0.029507147148251534, - 0.012852001935243607, - 0.019002603366971016, - -0.028536690399050713, - -0.013822459615767002, - -0.014661774039268494, - -0.004721143748611212, - -0.006160436663776636, - -0.010045544244349003, - 0.008661987259984016, - -0.0039113364182412624, - -0.004898186307400465, - 0.0012040555011481047, - 0.03100217692553997, - 0.02482534758746624, - 0.0022458217572420835, - 0.009770144708454609, - -0.0027261325158178806, - 0.006370265502482653, - 0.0005344072123989463, - 0.03561840578913689, - -0.006399772595614195, - 0.02402537502348423, - -0.017232174053788185, - -0.013304444961249828, - -0.00931114424020052, - 0.012484801933169365, - -0.021809060126543045, - 0.020838603377342224, - 0.02911371923983097, - 0.009350487031042576, - 0.02102220430970192, - 0.003113004146143794, - 0.017664946615695953, - -0.018084602430462837, - 0.016379745677113533, - -0.006753858178853989, - 0.022032003849744797, - 0.013081502169370651, - 0.026018746197223663, - 0.0002887192531488836, - -0.031474292278289795, - 0.0006466983468271792, - 0.010943872854113579, - 0.02116646058857441, - 0.0006245679687708616, - -0.02613677643239498, - 0.014845374040305614, - -0.0036916721146553755, - 0.02843177691102028, - 0.005944050848484039, - 0.01119960192590952, - 0.009894730523228645, - -0.011088130064308643, - 0.026818718761205673, - -0.014596202410757542, - 0.006586650852113962, - 0.005478493869304657, - 0.00892427284270525, - -0.025245003402233124, - -0.0037638007197529078, - -0.004396564792841673, - 0.004750650841742754, - 0.02431388944387436, - 0.00846527237445116, - 0.03572332113981247, - -0.013468373566865921, - 0.02390734665095806, - 0.015802716836333275, - 0.009770144708454609, - 0.02874651923775673, - 0.015553545206785202, - -0.015828944742679596, - 0.015802716836333275, - 0.008202986791729927, - 0.015461745671927929, - 0.01910751685500145, - -0.01910751685500145, - -0.0010294716339558363, - -0.024877803400158882, - 0.01615680195391178, - -0.0030048112384974957, - -0.010458644479513168, - 0.019684545695781708, - -0.0052457149140536785, - 0.009120986796915531, - 0.010320944711565971, - 0.013888031244277954, - 0.021061547100543976, - -0.0007573501206934452, - 0.010983215644955635, - 9.733260230859742e-05, - 0.0008532483479939401, - -0.0020146823953837156, - -0.015579774044454098, - -0.02565154619514942, - -0.03409714996814728, - -0.013206087984144688, - -0.002144186059013009, - 0.007835786789655685, - 0.0020163217559456825, - -0.010675030760467052, - 0.0043146004900336266, - 0.013291331008076668, - -0.006058800965547562, - -0.005209650844335556, - -0.010301273316144943, - 0.00956687331199646, - 0.0013786394847556949, - -0.01259627379477024, - -0.024353232234716415, - -0.0014925699215382338, - 0.029139947146177292, - -0.013330673798918724, - -0.01175695937126875, - 0.014281459152698517, - 0.004934250842779875, - -0.01404540240764618, - -0.0017032180912792683, - -0.015776488929986954, - -0.007075158413499594, - -0.0178485456854105, - 0.002886782633140683, - 0.013901145197451115, - -0.018123945221304893, - 0.005452265031635761, - -0.015894517302513123, - 0.022635260596871376, - 0.008589858189225197, - -0.005373579449951649, - 0.016969887539744377, - -0.021297603845596313, - -0.020694347098469734, - 0.035565949976444244, - -0.0005786679685115814, - -0.014386373572051525, - 0.0037310149054974318, - 0.0056129153817892075, - -0.02533680386841297, - 0.00855051539838314, - -0.02056320384144783, - -0.0037638007197529078, - 0.0031671004835516214, - -0.018228860571980476, - 0.014858487993478775, - -0.005668650846928358, - -0.009514415636658669, - 0.025992518290877342, - 0.004812943749129772, - -0.01799280382692814, - -0.021586118265986443, - -0.006150600966066122, - 0.01724528893828392, - 0.019527174532413483, - 0.041362464427948, - 0.01178318727761507, - 0.012858559377491474, - 0.0011155341053381562, - -0.013389687985181808, - 1.896705180115532e-05, - -0.05382103845477104, - -0.003258900484070182, - 0.011317630298435688, - 0.004271979443728924, - -0.003080218331888318, - 0.002311393152922392, - -0.031762804836034775, - 0.020353375002741814, - -0.015251916833221912, - 0.006189943756908178, - -0.025061404332518578, - 0.016235487535595894, - 0.006740743760019541, - -0.020038632676005363, - -0.022871317341923714, - 0.0069046723656356335, - 0.058279894292354584, - 0.0031310361810028553, - 0.005242436658591032, - 0.03420206159353256, - 0.01881900243461132, - 0.006747301202267408, - -0.009920958429574966, - -0.010989773087203503, - 0.017087917774915695, - 0.012852001935243607, - 0.02591383270919323, - -0.023172946646809578, - -0.015973202884197235, - 0.011638930067420006, - -0.016065003350377083, - 0.026333490386605263, - 0.0022786075714975595, - 0.015461745671927929, - 0.019461603835225105, - 0.00900951586663723, - -0.021887745708227158, - 0.0028113755397498608, - -0.01311428751796484, - -0.014491287991404533, - 0.006491572596132755, - 0.0050981794483959675, - -0.020143546164035797, - 0.0012048751814290881, - 0.00030265317764133215, - -0.0062751867808401585, - -0.0062424009665846825, - -0.0020736968144774437, - 0.004416236653923988, - 0.022320518270134926, - -0.014491287991404533, - 0.013173301704227924, - -0.007658744230866432, - -0.03157920390367508, - -0.03792652115225792, - 0.012956916354596615, - -0.005114572122693062, - -0.020471403375267982, - -0.01753380335867405, - -0.004409679211676121, - 0.0020851718727499247, - -0.00862264446914196, - -0.008576744236052036, - 0.015055202879011631, - -0.02908749133348465, - -0.017468230798840523, - -0.023435233160853386, - 0.027880975976586342, - 0.006114536896348, - 0.006468622479587793, - 0.008386586792767048, - -0.0246810894459486, - 0.004163786303251982, - -0.020969746634364128, - -0.043486978858709335, - -0.013107731007039547, - -0.00789480097591877, - -0.025153204798698425, - 0.009678344242274761, - -0.010294715873897076, - 0.0022310682106763124, - 0.008183315396308899, - -0.0003258080978412181, - -0.007803001441061497, - -0.018779659643769264, - 0.006478458177298307, - -0.007691530045121908, - 0.007081715390086174, - -0.012753644958138466, - 0.011094687506556511, - 0.0038588792085647583, - 0.015999430790543556, - -0.023920461535453796, - 0.022386088967323303, - -0.012674959376454353, - -0.0014778162585571408, - -0.023920461535453796, - -0.006347315385937691, - -0.011442216113209724, - -0.02133694663643837, - 0.0011532376520335674, - -0.002096646698191762, - -0.01569780334830284, - 0.01627483032643795, - -0.01319953054189682, - 0.021979546174407005, - -0.01251103077083826, - 0.00979637261480093, - 0.00909475889056921, - 0.015133888460695744, - -0.003780193394050002, - 0.031133320182561874, - 0.0275137759745121, - 0.025612203404307365, - -0.002411389723420143, - 0.04579509422183037, - 0.00862264446914196, - 0.001911407453007996, - 0.033808633685112, - -0.023382775485515594, - 0.013704431243240833, - -0.01915997453033924, - 0.010058659128844738, - -0.005950608290731907, - 0.022215602919459343, - 0.020891061052680016, - -0.00672762980684638, - -0.018032146617770195, - -0.016917431727051735, - 0.0060620796866714954, - 0.014661774039268494, - -0.01901571825146675, - -0.00015808864554855973, - -0.018609173595905304, - 0.018268203362822533, - 0.005976836662739515, - 0.020864831283688545, - -0.002065500244498253, - -0.02559909038245678, - -0.011035673320293427, - 0.013953601941466331, - 0.020576316863298416, - 0.005950608290731907, - -0.009547201916575432, - -0.029218632727861404, - -0.02371063269674778, - 0.005855529569089413, - -0.004629343748092651, - -0.021114002913236618, - -0.011088130064308643, - -0.009422616101801395, - 0.010766830295324326, - -0.00025880226166918874, - 0.007147287018597126, - 0.004642457701265812, - 0.02165168896317482, - 0.0034818435087800026, - -0.009048858657479286, - 0.016694488003849983, - -0.0017442002426832914, - -0.012537259608507156, - -0.05001789331436157, - 0.0015589609974995255, - -0.022845089435577393, - 0.005652258172631264, - 0.013127402402460575, - -0.00210976111702621, - 0.025546632707118988, - 0.00796693004667759, - -0.016996117308735847, - -0.01564534567296505, - -0.010465201921761036, - -0.008963615633547306, - -0.02271394617855549, - 0.011330744251608849, - 0.010668473318219185, - 0.011402873322367668, - -0.015042087994515896, - -0.0015212573343887925, - 0.03456926345825195, - -0.0031900506000965834, - 0.008209544233977795, - -0.0036490506026893854, - 0.023330317810177803, - -0.03171034902334213, - 0.037139661610126495, - 0.005058836657553911, - -0.005091622471809387, - 0.013468373566865921, - -0.010930758900940418, - -0.027985889464616776, - -0.03375617787241936, - 0.004511314909905195, - -0.02625480480492115, - 0.017940346151590347, - 0.0011204519541934133, - -0.02502206154167652, - -0.004914579447358847, - -0.0040588718838989735, - 0.004973593633621931, - -0.005721108056604862, - 0.012314315885305405, - -0.006570258177816868, - -0.02119268849492073, - -0.02264837548136711, - 0.010412744246423244, - -0.01647154614329338, - 0.018084602430462837, - -0.003963793627917767, - -0.016366630792617798, - 0.031133320182561874, - -0.003094971878454089, - 0.008478387258946896, - 0.018150174990296364, - -0.017691174522042274, - 0.03139560669660568, - 0.02809080481529236, - 0.04007726535201073, - 0.03220869228243828, - -0.03231360390782356, - -0.0174420028924942, - -0.0382150337100029, - 0.0013720823917537928, - -0.012786430306732655, - 0.008891487494111061, - 0.014819145202636719, - -0.010701258666813374, - -0.019356688484549522, - 0.008727558888494968, - 0.00900951586663723, - -3.10952054860536e-05, - -0.010393072851002216, - 0.031107090413570404, - 0.021258261054754257, - 0.0001804239145712927, - -0.02336966060101986, - 0.00969801563769579, - -0.019435374066233635, - -0.004094936419278383, - 0.0013688037870451808, - -0.019264888018369675, - 0.02622857503592968, - -0.021979546174407005, - -0.006301415152847767, - 0.028195718303322792, - -0.002573678968474269, - 0.029480919241905212, - -0.0033392254263162613, - -0.026097433641552925, - 0.00466212909668684, - -0.021835289895534515, - -0.002637611236423254, - 0.025861375033855438, - -0.008373472839593887, - 0.044719722121953964, - 0.01567157357931137, - -0.020182888954877853, - -0.004026086535304785, - -0.019068174064159393, - -0.006871887017041445, - -0.019212432205677032, - -0.011442216113209724, - 0.025218775495886803, - -0.0036129863001406193, - 0.001444210996851325, - -0.012294644489884377, - 0.010976659134030342, - 0.025848262012004852, - 0.012891344726085663, - -0.008629200980067253, - -0.008255444467067719, - -0.004553936421871185, - -0.005596522241830826, - 0.013337230309844017, - 0.014110974036157131, - -0.02591383270919323, - -0.006091586779803038, - -0.007481701206415892, - -0.01790100336074829, - -0.011697945185005665, - -0.0014614234678447247, - 0.007553829811513424, - -0.03310046344995499, - 0.03068743273615837, - 0.03184149041771889, - 0.02639906108379364, - 0.04343452304601669, - -0.006917786784470081, - -0.027880975976586342, - -0.013251988217234612, - 0.015553545206785202, - -0.02194020338356495, - 0.0113963158801198, - 0.05083097890019417, - -0.000386256753699854, - -0.0065210796892642975, - 0.023868003860116005, - -0.019094403833150864, - -0.0003618723712861538, - 0.003803143510594964, - -0.016681374981999397, - -0.02182217501103878, - 0.010675030760467052, - 0.00608502933755517, - 0.0022032002452760935, - -0.011593030765652657, - -0.013481487520039082, - 0.012760202400386333, - -0.0012950359378010035, - 0.011343859136104584, - -0.015343716368079185, - -0.018202630802989006, - 0.007481701206415892, - 0.0142290024086833, - -0.006976800970733166, - 0.008248887024819851, - -0.01736331731081009, - 0.02356637455523014, - -0.004711308050900698, - -0.008648872375488281, - -0.00741612957790494, - -0.013317558914422989, - -0.01758625917136669, - 0.005429315380752087, - 0.038713376969099045, - 0.001962225418537855, - -0.0015589609974995255, - -0.02179594710469246, - -0.022635260596871376, - -0.015212574042379856, - 0.019028831273317337, - -0.0076325153931975365, - -0.0015179788460955024, - 0.0026490860618650913, - 0.0055801295675337315, - -0.009586544707417488, - 0.015212574042379856, - 0.016773173585534096, - 0.0004499840142671019, - -0.0010261930292472243, - -0.017769860103726387, - -0.03189394623041153, - 0.003101529087871313, - -0.00288842199370265, - 0.006448951084166765, - 0.02036648988723755, - -0.021415632218122482, - -0.028562918305397034, - -0.012609387747943401, - -0.03517251834273338, - -0.01959274522960186, - -0.0018081323942169547, - -0.0020359931513667107, - -0.0036851149052381516, - 0.021061547100543976, - -0.006858772598206997, - 0.04482463747262955, - -0.011088130064308643, - 0.02136317454278469, - -0.05460789427161217, - -0.012556931003928185, - 0.00534735107794404, - -0.003980186302214861, - 0.03451680392026901, - 0.008288229815661907, - -0.02201888896524906, - -0.0183862317353487, - 0.013317558914422989, - -0.006747301202267408, - -0.00336381490342319, - 0.0069702439941465855, - -0.02276640385389328, - 0.0031212004832923412, - 0.012792987748980522, - -0.003767079208046198, - 0.01470111683011055, - 0.006586650852113962, - 0.003494957694783807, - -0.03669377788901329, - 0.0045408220030367374, - 0.012943802401423454, - 0.018268203362822533, - -0.03944777697324753, - -0.028694061562418938, - 0.0029326826333999634, - -0.016392860561609268, - 0.0008507894235663116, - 0.011088130064308643, - -0.010858630761504173, - 0.0008466911967843771, - -0.005560458172112703, - 0.0159600879997015, - 0.0041342792101204395, - -0.022609032690525055, - 0.011507787741720676, - 0.01702234521508217, - -0.017809202894568443, - -0.006268629804253578, - 0.011002887040376663, - -0.012707744725048542, - -0.019002603366971016, - 0.014740459620952606, - -0.009960301220417023, - 0.029244862496852875, - -0.015514202415943146, - 0.002119596814736724, - -0.014333916828036308, - 0.004989986307919025, - -0.017428888007998466, - -0.003008089726790786, - -0.012563487514853477, - 0.02882520481944084, - 0.04146737977862358, - -0.03887074813246727, - 0.016340402886271477, - 0.0060948655009269714, - -0.017835430800914764, - 0.0033703718800097704, - -0.01710103079676628, - -0.003806421998888254, - -0.0237368606030941, - -0.01988125964999199, - -0.0018179682083427906, - -0.00336381490342319, - 0.004757207818329334, - 0.0053670224733650684, - -0.006957129575312138, - -0.021546775475144386, - 0.014465059153735638, - 0.16565968096256256, - -0.015396174043416977, - -0.010098001919686794, - 0.025677775964140892, - 0.007704643998295069, - -0.017284631729125977, - 0.03294309228658676, - 0.011697945185005665, - 0.025323688983917236, - 0.014084745198488235, - -0.01807148940861225, - -0.008084958419203758, - 0.0031687398441135883, - -0.000724564422853291, - 0.0053014508448541164, - -0.018517374992370605, - -0.03643149137496948, - -0.002322868211194873, - 0.01146844495087862, - 0.023527031764388084, - 0.01990748941898346, - -0.037113435566425323, - -0.017284631729125977, - -0.009973416104912758, - 0.021809060126543045, - 0.020458288490772247, - -0.030818575993180275, - 0.0037310149054974318, - 0.02136317454278469, - 0.0075866156257689, - -0.010334058664739132, - 0.005927658174186945, - -0.013212645426392555, - -0.015343716368079185, - -0.01471423078328371, - -0.0003344143333379179, - 0.026608889922499657, - 0.0009802930289879441, - 0.023041803389787674, - 0.02007797546684742, - -0.0024392574559897184, - -0.0028015398420393467, - -0.02399914711713791, - -0.023815546184778214, - -0.013651973567903042, - 0.0303464625030756, - 0.012301201932132244, - 0.007619401440024376, - 0.0037179007194936275, - -0.01799280382692814, - -0.02559909038245678, - 0.00789480097591877, - 0.010104558430612087, - 0.035906918346881866, - -0.016209259629249573, - -0.017861660569906235, - 0.017520688474178314, - -0.009888173080980778, - 0.009619330056011677, - 0.026163004338741302, - -0.031212005764245987, - 0.04385417699813843, - -0.0007069420535117388, - 0.013874916359782219, - -0.028667833656072617, - -0.023946689441800117, - -0.04364435002207756, - 0.015828944742679596, - 0.014019173569977283, - -0.018228860571980476, - -0.020327145233750343, - -0.03386108949780464, - -0.0069374581798911095, - 0.011579915881156921, - -0.012347102165222168, - -0.02322540432214737, - -0.002354014664888382, - 0.00560635793954134, - 0.019173089414834976, - 0.014491287991404533, - -0.007888244464993477, - 0.006753858178853989, - -0.021376289427280426, - -0.027723604813218117, - -0.0034916792064905167, - -0.032759491354227066, - 0.006858772598206997, - 0.0031507075764238834, - -0.013153630308806896, - -0.029900576919317245, - 0.0007585795829072595, - 0.012655287981033325, - -0.004334272351115942, - -0.013232316821813583, - 0.00853740144520998, - 0.009173444472253323, - 0.016799403354525566, - 0.01719283126294613, - -0.01821574568748474, - -0.005799793638288975, - -0.009540644474327564, - 0.0613224096596241, - 0.040969036519527435, - -0.007514487020671368, - -0.0016917431494221091, - 0.0025097469333559275, - -0.006452229805290699, - 0.015894517302513123, - 0.003553972113877535, - 0.007127615623176098, - -0.00710794422775507, - -0.014451945200562477, - 0.017861660569906235, - -0.007153843995183706, - 0.00900951586663723, - -0.004947365261614323, - 0.0058358581736683846, - -0.024300774559378624, - 0.0073964581824839115, - -0.03257589042186737, - -0.010596344247460365, - -0.012937244959175587, - 0.012320873327553272, - 0.021691031754016876, - -0.0012024162570014596, - -0.030739890411496162, - -0.038739606738090515, - -0.0015950253000482917, - -0.02087794616818428, - -0.009514415636658669, - 0.029244862496852875, - -0.017402660101652145, - -0.009212787263095379, - 0.003822814906015992, - 0.013560174033045769, - 0.01392737403512001, - -0.010497987270355225, - -0.026608889922499657, - -0.007809558417648077, - 0.01790100336074829, - 0.021953318268060684, - -0.002363850362598896, - -0.0052686650305986404, - -0.0032211970537900925, - 0.006491572596132755, - -0.0024966325145214796, - 0.02053697407245636, - -0.005891593638807535, - -0.022386088967323303, - -0.03386108949780464, - -0.015396174043416977, - -0.0022704110015183687, - -0.008373472839593887, - -0.0041244435124099255, - 0.049781836569309235, - -0.012150387279689312, - -0.02065500244498253, - -0.04833926633000374, - -0.0006290759774856269, - 0.021245146170258522, - -0.032130006700754166, - 0.005242436658591032, - 0.005662093870341778, - -0.033808633685112, - 0.003822814906015992, - 0.009029187262058258, - -0.1648203730583191, - -0.004668686538934708, - 0.021271374076604843, - -0.03921172022819519, - 0.015881402418017387, - 0.013560174033045769, - 0.023500803858041763, - -0.007166958414018154, - -0.0021900860592722893, - -0.006344036664813757, - 0.035277433693408966, - 0.0312906913459301, - -0.02228117547929287, - -0.007770215626806021, - 0.004822779446840286, - 0.012648730538785458, - -0.011455330066382885, - 0.046608179807662964, - 0.03721834719181061, - 0.01910751685500145, - -0.00383920781314373, - -0.03257589042186737, - 0.008498058654367924, - -0.007573501206934452, - 0.0015876485267654061, - 0.020130431279540062, - -0.0112848449498415, - 0.029979262501001358, - -0.0003989612159784883, - -0.003635936416685581, - -0.028562918305397034, - 0.008045615628361702, - 0.022609032690525055, - -0.017494460567831993, - -0.008661987259984016, - -0.025376146659255028, - -0.0024671254213899374, - -0.020838603377342224, - -0.00012233172310516238, - 0.010229144245386124, - 0.01727151684463024, - -0.008543958887457848, - -0.023645060136914253, - 0.008124301210045815, - -0.01950094662606716, - 0.00431787921115756, - 0.023409003391861916, - -0.004701472353190184, - -0.020891061052680016, - -0.010779944248497486, - 0.01864851638674736, - -0.01500274520367384, - -0.007166958414018154, - 0.015081430785357952, - 0.014740459620952606, - 0.03257589042186737, - 0.01830754615366459, - 0.0024031931534409523, - -0.009330815635621548, - -0.006412886548787355, - -0.01590763032436371, - -0.013861802406609058, - -0.0022458217572420835, - 0.0011311073321849108, - -0.002626136178150773, - -0.011717616580426693, - 0.0035015149042010307, - 0.017179716378450394, - -0.004350665025413036, - -0.001404868089593947, - -0.012786430306732655, - -0.007803001441061497, - 0.01262905914336443, - -0.019894374534487724, - -0.0030523505993187428, - -0.020930403843522072, - -0.014688001945614815, - -0.014110974036157131, - 0.01927800290286541, - -0.003076939843595028, - -0.010412744246423244, - 0.06536161154508591, - -0.024733547121286392, - -0.00855051539838314, - 0.011435658670961857, - 0.006012901198118925, - 0.00559980096295476, - 0.025467947125434875, - 0.014084745198488235, - 0.009002958424389362, - 0.005071950610727072, - -0.01927800290286541, - -0.01630106009542942, - -0.03477909043431282, - 0.026018746197223663, - -0.004730979446321726, - 0.004478529095649719, - -0.02494337595999241, - 0.00336381490342319, - -0.00957998726516962, - 0.010852073319256306, - 0.008976729586720467, - -0.048549093306064606, - 0.00875378679484129, - 0.026989204809069633, - -0.0016171556198969483, - -0.015278145670890808, - 0.0008290688856504858, - 0.03262834995985031, - -0.014032288454473019, - -0.016917431727051735, - -0.0013409359380602837, - 0.008675101213157177, - -0.0007716938853263855, - 0.003101529087871313, - -0.006462065503001213, - -0.00798004399985075, - -0.029848119243979454, - -0.008216101676225662, - -0.0005757992039434612, - 0.016169916838407516, - -0.003332668449729681, - -0.01615680195391178, - 0.004494922235608101, - 0.009120986796915531, - -0.006288301199674606, - -0.09164264053106308, - 0.004973593633621931, - 0.007042372599244118, - 0.013409359380602837, - 0.008517730049788952, - 0.001263069803826511, - -0.006740743760019541, - 0.035592176020145416, - 0.017573146149516106, - 0.011540573090314865, - -0.04228046536445618, - -0.02651708945631981, - -0.015999430790543556, - 0.007940701209008694, - 0.0449557788670063, - -0.010806173086166382, - -0.029035033658146858, - -0.03060874715447426, - -0.016655145213007927, - 0.03194640576839447, - 0.030477605760097504, - -0.0032130004838109016, - -0.0015868288464844227, - -0.023527031764388084, - 0.004871957935392857, - -0.01950094662606716, - -0.02382866106927395, - 0.012052030302584171, - 0.0250876322388649, - 0.0026343325152993202, - -0.00023072950716596097, - -0.033048003911972046, - 0.027356404811143875, - -0.021061547100543976, - -0.017953459173440933, - -0.005029329564422369, - -0.022005774080753326, - -0.03538234904408455, - 0.0008167742635123432, - -0.04364435002207756, - -0.014294574037194252, - -0.00823577307164669, - 0.03480532020330429, - -0.021900860592722893, - -0.004203129094094038, - -0.019291117787361145, - -0.02453683316707611, - 0.0074948156252503395, - -0.010550444945693016, - -0.01818951778113842, - -0.01584205962717533, - -0.025612203404307365, - 0.00957998726516962, - 0.009448844008147717, - 0.010838959366083145, - 0.009068530052900314, - 0.0034916792064905167, - 0.019986175000667572, - 0.001909768208861351, - -0.006714515388011932, - -0.026753148064017296, - 0.00617027236148715, - -0.03818880766630173, - 0.01988125964999199, - 0.006344036664813757, - 0.0008098072721622884, - -0.025494175031781197, - -0.013468373566865921, - 0.0013958519557490945, - -0.007127615623176098, - -0.031185775995254517, - 0.010596344247460365, - 0.004052314907312393, - 0.007921029813587666, - -0.02448437549173832, - 0.0062751867808401585, - -0.037506863474845886, - -0.012504473328590393, - 0.018609173595905304, - -0.03226114809513092, - -0.006019458174705505, - -0.03233983367681503, - 0.03595937788486481, - -0.005380136426538229, - 0.0241434033960104, - 0.018779659643769264, - 0.0020573039073497057, - -0.025245003402233124, - 0.02811703272163868, - -0.020891061052680016, - 0.010491429828107357, - -0.005009658169001341, - -0.004642457701265812, - -0.014963402412831783, - 0.00023441789380740374, - 0.002642529085278511, - 0.004265422001481056, - 0.00045039382530376315, - 0.01581583172082901, - -0.001922882511280477, - -0.03692983463406563, - -0.009330815635621548, - -0.05681109428405762, - 0.03184149041771889, - 0.016904316842556, - 0.00512768654152751, - -0.026241689920425415, - 0.0007987421122379601, - 0.011363530531525612, - 0.01175695937126875, - -0.002098286058753729, - 0.008825915865600109, - 0.008471829816699028, - 0.017625601962208748, - 0.002388439606875181, - -0.0067669725976884365, - -0.010484873317182064, - -0.014674887992441654, - 0.008780015632510185, - 0.012202844955027103, - 0.020471403375267982, - 0.012065145187079906, - -0.03131692111492157, - 0.02010420337319374, - -0.0031785755418241024, - 0.0010393073316663504, - -0.0312906913459301, - 0.0005143259768374264, - 0.0007298920536413789, - 0.0006274367333389819, - -0.010314387269318104, - -0.01678628847002983, - 0.01687808893620968, - 0.009999644942581654, - -0.004521150607615709, - 0.0019638645462691784, - -0.009448844008147717, - -0.009455401450395584, - 0.0235139187425375, - 0.02170414663851261, - 0.045690178871154785, - 0.06001098081469536, - -0.020746802911162376, - 0.0027654755394905806, - 0.028667833656072617, - -0.02843177691102028, - -0.008747230283915997, - 0.024300774559378624, - 0.017297744750976562, - 0.0032179183326661587, - 0.024982718750834465, - -0.017284631729125977, - 0.040287092328071594, - 0.012570044957101345, - 0.015330602414906025, - -0.009002958424389362, - 0.012176616117358208, - -0.03126446157693863, - 0.003599872114136815, - 0.016143688932061195, - 0.00741612957790494, - -0.03281194716691971, - 0.03611674904823303, - 0.004449022002518177, - 0.021441860124468803, - 0.003309718333184719, - 0.00019343574240338057, - -0.0004987527499906719, - -0.019291117787361145, - -0.001411425182595849, - -0.011120916344225407, - -0.029297318309545517, - -0.013494602404534817, - -0.0005528492038138211, - -0.00759317260235548, - 0.034962691366672516, - -0.015383060090243816, - -0.0016933823935687542, - 0.003301521996036172, - 0.02911371923983097, - 0.009199673309922218, - 0.024471260607242584, - 0.02022223174571991, - 0.004334272351115942, - -0.028956348076462746, - 0.016392860561609268, - 0.0043473863042891026, - 0.011835644952952862, - -0.019671432673931122, - 0.004714586306363344, - 0.0005577670526690781, - -0.017179716378450394, - -0.0071931867860257626, - 0.019514059647917747, - 0.005265386775135994, - -0.005275222472846508, - 0.03126446157693863, - 0.02291066013276577, - 0.010006201453506947, - -0.007547272834926844, - 0.028562918305397034, - 0.041624750941991806, - -0.009822601452469826, - 0.023041803389787674, - 0.0013679841067641973, - -0.017782974988222122, - 0.0013540502404794097, - 0.019697660580277443, - 0.0013925734674558043, - -0.04102149233222008, - 0.00037847014027647674, - 0.013822459615767002, - -0.020773032680153847, - 0.013953601941466331, - -0.013638859614729881, - -0.0057702865451574326, - -0.0057604508474469185, - 0.03323160484433174, - -0.027697375044226646, - 0.0002817522909026593, - -0.0212189182639122, - 0.022976232692599297, - 0.011061902157962322, - 0.012943802401423454, - 0.004694914910942316, - 0.00011792613804573193, - 0.02176971733570099, - 0.0041900151409208775, - 0.01003898773342371, - -0.007383344229310751, - 0.019632088020443916, - -0.02274017594754696, - 0.00522604351863265, - 0.01707480289041996, - -0.011494672857224941, - -0.01470111683011055, - -0.00853740144520998, - -0.020209116861224174, - 0.009219344705343246, - 0.0027376075740903616, - 0.01804525963962078, - 0.11372710764408112, - 0.022464774549007416, - -0.01947471685707569, - 0.01901571825146675, - -0.010032430291175842, - 0.027776062488555908, - -0.0019737002439796925, - 0.011947115883231163, - 0.0036588863003998995, - -0.04645080864429474, - -0.006871887017041445, - -0.003504793392494321, - -0.014150316826999187, - -0.04815566539764404, - -0.004645736422389746, - 0.011717616580426693, - 0.010157016105949879, - 0.004950643517076969, - -0.03136937692761421, - 0.016392860561609268, - 0.035697091370821, - -0.012550373561680317, - 0.024235203862190247, - 0.03732326254248619, - -0.02748754806816578, - -0.03202509135007858, - 0.02816949039697647, - -0.001883539604023099, - -0.0025179432705044746, - -0.010104558430612087, - -0.012956916354596615, - -0.0058030723594129086, - -0.050726063549518585, - -0.012432345189154148, - 0.014189659617841244, - -0.022687718272209167, - -0.012668401934206486, - -0.0027146576903760433, - -0.0019523896044120193, - -0.006944015622138977, - -0.0006012081285007298, - 0.02075991779565811, - -0.03060874715447426, - -0.019343575462698936, - 0.003986743278801441, - -0.016222374513745308, - 0.003544136183336377, - -0.027251489460468292, - -0.031421832740306854 - ], - "sparse": "SparseEmbedding(values=array([1.45266959, 1.99475809, 1.45266959, 1.87795932, 1.45266959,\n 1.99475809, 1.99475809, 1.45266959, 1.45266959, 1.45266959,\n 1.45266959, 1.45266959, 1.45266959, 1.45266959, 1.45266959,\n 1.45266959, 1.45266959, 1.45266959, 1.45266959, 1.99475809,\n 1.45266959, 1.45266959, 1.45266959, 1.45266959, 1.45266959,\n 1.45266959, 1.74988349, 1.74988349, 1.74988349, 1.45266959,\n 1.45266959, 1.45266959, 1.45266959, 1.45266959, 1.45266959,\n 1.45266959, 1.45266959, 1.45266959, 1.45266959, 1.45266959]), indices=array([1987903417, 1451991922, 1810453357, 52870164, 1841900287,\n 922977895, 740705568, 427558391, 19522071, 627407068,\n 877198705, 264741300, 605378321, 428565317, 1351999665,\n 516830072, 1174634009, 2106376835, 2036720317, 408270109,\n 178503735, 1066874362, 1092081572, 394884850, 1677462196,\n 1118169497, 2103309648, 1721868368, 424222366, 417110197,\n 1394226660, 402228202, 1610176724, 1109731834, 278194484,\n 1804666400, 2030333490, 403065061, 327670196, 233295601]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 40, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 69 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000041.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000041.json deleted file mode 100644 index f8215de42dea439e4284003b4ae3514ef35aa768..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000041.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000041", - "content": "VIII Einleitung", - "embedding": { - "dense": [ - 0.0069699957966804504, - -0.00516344653442502, - 0.0019264385337010026, - -0.013585250824689865, - -0.0020693200640380383, - 0.0068583181127905846, - -0.019865473732352257, - -0.014386702328920364, - 0.001041229348629713, - 0.0019297231920063496, - 0.008349542506039143, - 0.008520343340933323, - -0.013585250824689865, - 0.01848592609167099, - 0.006109421607106924, - 0.006352484691888094, - 0.03463319316506386, - 0.0030103682074695826, - 0.002670408459380269, - 0.005987890064716339, - -0.02476614899933338, - 0.006838610395789146, - 0.001198891899548471, - -0.00020262094039935619, - -0.006086429115384817, - -0.010432001203298569, - 0.024017252027988434, - -0.010661926120519638, - 0.018866945058107376, - -0.011108635924756527, - -0.019445041194558144, - -0.01359838992357254, - -0.010904989205300808, - -0.006129129324108362, - -0.001609471277333796, - 0.0098276287317276, - -0.010175799950957298, - -0.012389644049108028, - 0.015989603474736214, - 0.004976222291588783, - 0.002322237007319927, - -0.000991959823295474, - 0.006818902678787708, - -0.006395184900611639, - -0.015700556337833405, - -0.001379546825774014, - 0.004086086060851812, - 0.005688988137990236, - 0.005265270359814167, - 0.014189624227583408, - 0.025291690602898598, - 0.013329049572348595, - -0.006592263001948595, - -0.0037313455250114202, - 0.0003247683052904904, - -0.013585250824689865, - -0.022979307919740677, - 0.013407880440354347, - 8.221852476708591e-05, - -0.01814432442188263, - -0.010405723936855793, - -0.004220756236463785, - -0.024306301027536392, - 0.012744384817779064, - -0.04157034307718277, - 0.009242963045835495, - -0.012888908386230469, - 0.007732031401246786, - -0.014386702328920364, - 0.01648886874318123, - 0.027985092252492905, - 0.03442297503352165, - 0.005166731309145689, - -0.027065394446253777, - 0.020469846203923225, - -0.013243649154901505, - -0.006943718995898962, - -0.017566228285431862, - -0.003875869559124112, - 0.0032435772009193897, - 0.004923668224364519, - -0.03208431601524353, - -0.017408566549420357, - 0.028642019256949425, - 0.027117948979139328, - 0.009834197349846363, - 0.005173300392925739, - 0.00958456564694643, - -0.016988134011626244, - -0.013506419956684113, - 0.005958328023552895, - 0.024753009900450706, - -0.006523285526782274, - 0.031217172741889954, - -0.009715951047837734, - 0.0006729396409355104, - -0.011739286594092846, - 0.023820174857974052, - 0.0131122637540102, - -0.04028276726603508, - -0.0003118350578006357, - 0.0006639069179072976, - -0.0026342773344367743, - -0.001891949912533164, - -0.015227568335831165, - 0.004417834337800741, - -0.003898862050846219, - -0.0006643174565397203, - 0.019353071227669716, - 0.012987447902560234, - 0.002450337866321206, - 0.0024322723038494587, - 0.0036328064743429422, - -0.00885537639260292, - 0.00885537639260292, - -0.019129715859889984, - 0.02391214482486248, - 0.005186439026147127, - -0.0053900862112641335, - -0.017815861850976944, - 0.020588092505931854, - 0.011174328625202179, - -0.016423175111413002, - -0.024017252027988434, - 0.004601773805916309, - -0.00951230339705944, - 2.8201671739225276e-05, - 0.0057284035719931126, - -0.0010929623385891318, - -0.00975536648184061, - 0.0036820759996771812, - 0.008605743758380413, - 0.018328264355659485, - -0.022519458085298538, - -0.014715165831148624, - 0.0213107131421566, - -0.03988860920071602, - 0.02385959029197693, - -0.02279536798596382, - -0.035185012966394424, - 0.012251689098775387, - 0.006382046267390251, - -0.012836354784667492, - -0.03862731158733368, - 0.01506990659981966, - 0.006546278018504381, - 0.016935579478740692, - 0.011102067306637764, - 0.013191094622015953, - -0.009821059182286263, - 0.010543678887188435, - -0.033608388155698776, - 0.03534267470240593, - -0.013394742272794247, - -0.004575497005134821, - 0.00028637913055717945, - -0.01753995195031166, - 0.009853905998170376, - 0.005794096272438765, - -0.0019560002256184816, - 0.011246590875089169, - 0.009623981080949306, - 0.03295145928859711, - -0.012258258648216724, - 0.013703498058021069, - 0.03011353500187397, - 0.021534068509936333, - -0.0029348216485232115, - 0.0025439499877393246, - -0.013079416938126087, - -0.014925382100045681, - 0.03902146592736244, - -0.004674036055803299, - 0.030034704133868217, - -0.028983620926737785, - 0.02262456715106964, - 0.011194036342203617, - 0.0010289120255038142, - -0.02585664764046669, - -0.0081853112205863, - -0.03413392975926399, - 0.002640846651047468, - 0.012980878353118896, - 0.008691145107150078, - -0.020075690001249313, - 0.020535539835691452, - -0.010294046252965927, - 0.00028494209982454777, - 0.008244434371590614, - 0.0016579196089878678, - 0.0014665896305814385, - 0.016620254144072533, - -0.0036820759996771812, - 0.0011652243556454778, - -0.6684889793395996, - -0.008402097038924694, - -0.008303557522594929, - -0.0047200205735862255, - 0.00770575413480401, - 0.027985092252492905, - 0.01656769961118698, - 0.00720648979768157, - 0.003015295136719942, - 0.03213687241077423, - 0.0030793454498052597, - -0.005403224844485521, - 0.0038298845756798983, - -0.010366308502852917, - -0.018735559657216072, - 0.00012532935943454504, - -0.00869771372526884, - -0.01914285309612751, - 0.0013154963962733746, - -4.7421919589396566e-05, - 0.003672222141176462, - 0.010215215384960175, - 0.00418462511152029, - 0.00068648875458166, - 0.007876555435359478, - 0.015503478236496449, - 0.012895477935671806, - -0.001570055610500276, - 0.01625237427651882, - 0.0063886153511703014, - 0.0028724134899675846, - 0.01894577592611313, - -0.016580838710069656, - -0.0013491639401763678, - 0.04953229799866676, - 0.009532011114060879, - -0.018840666860342026, - 0.026697514578700066, - 0.012836354784667492, - 0.03639375790953636, - -0.02848435565829277, - -0.006382046267390251, - -0.016304928809404373, - -0.006983134429901838, - -0.01470202673226595, - 0.0064871544018387794, - 0.037812720984220505, - 0.010333462618291378, - 0.012310812249779701, - 0.01634434424340725, - 0.010661926120519638, - 0.003885723417624831, - -0.007337875198572874, - -0.00998529139906168, - -0.006891164463013411, - 0.010234923101961613, - 0.0047528669238090515, - 0.001612755935639143, - -0.010911557823419571, - -0.005932051222771406, - -0.002075889380648732, - 0.01600274257361889, - 0.003156534396111965, - -0.01106922049075365, - -0.04443454369902611, - 0.01376919075846672, - -0.0327412448823452, - 0.011345130391418934, - 0.04517030343413353, - -0.0067597790621221066, - -0.006657955702394247, - 0.03468574583530426, - -0.025554461404681206, - -0.008218157105147839, - 0.0327937975525856, - -0.010392585769295692, - 0.00532767828553915, - -0.0005284156650304794, - -0.011062650941312313, - -0.008093341253697872, - -0.00869771372526884, - -0.005692272912710905, - -0.0106553565710783, - 0.004253602586686611, - 0.02405666746199131, - -0.027301887050271034, - -0.0262245275080204, - -0.012376504950225353, - -0.012304243631660938, - 0.0042371791787445545, - 0.009775074198842049, - 0.005567456595599651, - -0.010721049271523952, - 0.0046773203648626804, - 0.005557602737098932, - 0.03967839479446411, - -0.01524070743471384, - 0.018275709822773933, - 0.015950188040733337, - -0.04280536621809006, - 0.010859004221856594, - -0.0001729565701680258, - -0.008060494437813759, - 0.0004976222408004105, - 0.01863045059144497, - 0.02082458697259426, - -0.03174271434545517, - -0.0026342773344367743, - 0.024963228031992912, - -0.020469846203923225, - 0.028326693922281265, - 0.0038627309259027243, - 0.008303557522594929, - -0.012291104532778263, - -0.013453865423798561, - -0.027328165248036385, - 0.002440484007820487, - 0.007883124053478241, - 0.00861231330782175, - -0.010760464705526829, - 0.01919540762901306, - -0.010786741971969604, - 0.023268355056643486, - -0.009873613715171814, - 0.0005165088805370033, - 0.022900477051734924, - -0.028431802988052368, - -0.029509162530303, - -0.015503478236496449, - 0.0005842545069754124, - 0.0040401010774075985, - 0.012021765112876892, - 0.03762878105044365, - -0.0006060152081772685, - 0.0028297132812440395, - -0.022243550047278404, - 0.004411265254020691, - -0.008421804755926132, - -0.005107607692480087, - -0.0042043328285217285, - -0.03426531329751015, - 0.0011545493034645915, - 0.01376919075846672, - -0.01916913129389286, - -0.010957542806863785, - -0.02062750980257988, - -0.019747227430343628, - 0.007961955852806568, - -0.01960270293056965, - 0.028405524790287018, - -0.009262671694159508, - 0.015648001804947853, - -0.007961955852806568, - 0.008211587555706501, - 0.012639276683330536, - -0.01164074707776308, - 0.0001030041094054468, - -0.015214430168271065, - -0.016528284177184105, - -0.02337346412241459, - 0.010681633837521076, - 0.029903318732976913, - -0.013677220791578293, - 0.009637119248509407, - -0.0055543179623782635, - -0.013046571053564548, - 0.039441898465156555, - 0.010405723936855793, - -0.016107851639389992, - -0.03797038272023201, - 0.013493281789124012, - -0.006924010813236237, - -0.001129914540797472, - -0.004618197213858366, - -0.019155992195010185, - 0.0011446953285485506, - -0.022099025547504425, - -0.008704283274710178, - -0.002203990239650011, - -0.011121775023639202, - 0.00934150256216526, - -0.010215215384960175, - -0.013125401921570301, - 0.008901361376047134, - 0.011187467724084854, - 0.02337346412241459, - 0.012586722150444984, - 0.0006294182385317981, - -0.00508461520075798, - -0.0019100153585895896, - -0.0053999400697648525, - 0.007948816753923893, - 0.011266298592090607, - -0.009118147194385529, - -0.003931708168238401, - 0.016528284177184105, - -0.004611627664417028, - 0.007272182498127222, - -0.0067926254123449326, - 0.015897633507847786, - 0.03886380419135094, - 0.0066842325031757355, - 0.027590936049818993, - -0.013834883458912373, - 0.0237676203250885, - -0.03250474855303764, - -0.00745612196624279, - -0.003176242345944047, - 0.02208588644862175, - 0.007613784167915583, - 0.019786642864346504, - -0.007902832701802254, - -0.010044414550065994, - 0.009571426548063755, - 0.0051141767762601376, - 0.03789155185222626, - -0.019234823063015938, - -0.00016269208572339267, - -0.012350228615105152, - -0.0014468817971646786, - -0.007672907784581184, - -0.010977250523865223, - 0.004145209677517414, - 0.009032746776938438, - -0.025672709569334984, - -0.00019851514662150294, - 0.03442297503352165, - 0.007475829683244228, - 0.001990488963201642, - -0.007850278168916702, - -0.018709281459450722, - 0.015201292000710964, - -0.016015881672501564, - 0.007324736565351486, - -0.0022154864855110645, - -0.0021038088016211987, - 0.01851220428943634, - -0.025620155036449432, - 0.0147414430975914, - 0.0130991255864501, - -0.003015295136719942, - 0.027985092252492905, - 0.00778458546847105, - -0.010799880139529705, - 0.004033531993627548, - -0.007009411696344614, - 0.0180523544549942, - 0.03303029015660286, - -0.020443569868803024, - 0.031190896406769753, - -0.01048455573618412, - 0.0032764235511422157, - 0.0024700455833226442, - -0.010583094321191311, - 0.007732031401246786, - -0.046641819179058075, - 0.011548777110874653, - 0.01342758908867836, - -0.005974751431494951, - 0.03628864884376526, - 0.01458378043025732, - -0.0024224184453487396, - -0.0020906704012304544, - 0.013394742272794247, - -0.003087557153776288, - -0.014623195864260197, - 0.001980635104700923, - 0.00894077681005001, - -0.011673593893647194, - -0.0041287862695753574, - 0.003422589972615242, - -0.0020693200640380383, - -0.0030662070494145155, - -0.007094812113791704, - 0.025554461404681206, - -0.013900576159358025, - 0.01585821807384491, - 0.006283507216721773, - 0.010228353552520275, - 0.001116776023991406, - -0.03500107303261757, - -0.01880125142633915, - 0.014570641331374645, - 0.023780759423971176, - -0.0025078188627958298, - -0.016331207007169724, - -0.008822530508041382, - 0.011680162511765957, - 0.000945974956266582, - -0.023478573188185692, - -0.014334147796034813, - -0.003803607542067766, - -0.0010174157796427608, - -0.013375034555792809, - -0.006740071345120668, - 0.006779487244784832, - 0.021731145679950714, - -0.01571369543671608, - 0.010648787021636963, - -0.006119275465607643, - 0.0076269228011369705, - 0.0018492495873942971, - 0.00466418219730258, - -0.02422746829688549, - 0.0524490550160408, - -0.015608586370944977, - -0.0003461184387560934, - -0.00680576404556632, - 0.006119275465607643, - -0.011614469811320305, - -0.004286448936909437, - -0.010372878052294254, - -0.019379347562789917, - -0.012179426848888397, - 0.009538580663502216, - -0.004210902377963066, - -0.0051371692679822445, - 0.008316696621477604, - 0.03707696124911308, - -0.00368536077439785, - 0.013237079605460167, - -0.028379248455166817, - -0.0011208817595615983, - 0.014150208793580532, - 0.02094283327460289, - 0.024069806560873985, - 0.005475487094372511, - 0.017474258318543434, - 0.019576426595449448, - 0.00679919496178627, - -0.008802821859717369, - -0.06017451733350754, - 0.0023665796034038067, - 0.004926952999085188, - 0.004066378343850374, - -0.008205018937587738, - 0.010077260434627533, - 0.0008942419080995023, - 0.023990975692868233, - 0.0006782771670259535, - 0.008264142088592052, - 0.00011609132343437523, - 0.02714422531425953, - 0.008480927906930447, - 0.0003257947391830385, - 0.024569071829319, - -0.012323951348662376, - 0.013848021626472473, - 0.006579124368727207, - -0.04049298167228699, - 0.007961955852806568, - 0.013105694204568863, - -0.0034948517568409443, - -0.027669766917824745, - -0.004063093569129705, - 0.003688645316287875, - 0.0033224085345864296, - 0.027012839913368225, - -0.03676163777709007, - 0.01714579574763775, - -0.0033552548848092556, - 0.012133442796766758, - 0.03408137336373329, - -0.012521029449999332, - 0.006290076300501823, - 0.0037477687001228333, - -0.0005604408797807992, - -0.0038791541010141373, - 0.01688302494585514, - -0.004000685643404722, - -0.02123188227415085, - 0.011062650941312313, - 0.004148494452238083, - -0.022611428052186966, - -0.0026654815301299095, - 0.002246690448373556, - -0.022782228887081146, - -0.02668437547981739, - 0.00975536648184061, - -0.0020775317680090666, - 0.006460877601057291, - 0.0010855719447135925, - 0.004201048519462347, - 0.007751739118248224, - -0.013874298892915249, - -0.04180683568120003, - -0.012140011414885521, - -0.024385131895542145, - -0.003547406056895852, - -0.020101968199014664, - -0.017158934846520424, - 0.008073633536696434, - -0.02982448786497116, - 0.015372092835605145, - 0.012810077518224716, - -0.015280122868716717, - -0.006204675883054733, - -0.009150994010269642, - 0.014439255930483341, - 0.022506320849061012, - 0.008651728741824627, - -0.03211059421300888, - -0.012718107551336288, - -0.006733502261340618, - -0.019957443699240685, - -0.0244902390986681, - 0.0007382217445410788, - -0.01072761882096529, - 0.0061455522663891315, - -0.0076597691513597965, - 0.0050484840758144855, - 0.0063984692096710205, - 0.037760164588689804, - 0.02439827099442482, - 0.011765562929213047, - -0.014977936632931232, - -0.00048489426262676716, - -0.00442768819630146, - 0.008296988904476166, - -0.007351013366132975, - -0.0076926155015826225, - -0.005314539652317762, - -0.00011219082080060616, - 0.00039600383024662733, - 0.006217814516276121, - -0.018157463520765305, - -0.026106281206011772, - -0.016751639544963837, - 0.037444841116666794, - 0.009604273363947868, - -0.0035605444572865963, - 0.005045199766755104, - 0.005669280420988798, - 0.029666824266314507, - 0.019353071227669716, - -0.021731145679950714, - 0.011174328625202179, - -0.007502106949687004, - -0.013690359890460968, - 0.04280536621809006, - 0.0054656327702105045, - 0.042700257152318954, - 0.01785527728497982, - -0.010195507667958736, - -0.0031614613253623247, - -0.02188880927860737, - 0.010799880139529705, - 0.02308441698551178, - 0.009374348446726799, - 0.02113991230726242, - 0.0005325214588083327, - 0.00014616626140195876, - -0.018709281459450722, - -0.012678692117333412, - 0.001852534245699644, - 0.03266241401433945, - 0.0029348216485232115, - 0.003504705848172307, - -0.01602901890873909, - 0.015989603474736214, - -0.015674280002713203, - -0.007824000902473927, - -0.016791054978966713, - -0.0004249496851116419, - -0.01836767978966236, - -0.023189524188637733, - 0.007094812113791704, - 0.018840666860342026, - -0.03334561735391617, - -0.029246391728520393, - -0.014071376994252205, - 0.007075104396790266, - -0.009860474616289139, - 0.016410037875175476, - -0.0070028421469032764, - -0.009518872946500778, - -0.020377876237034798, - 0.022808507084846497, - -0.020706340670585632, - -0.03006098046898842, - 0.002289390657097101, - -0.004802136681973934, - 0.02322893962264061, - 0.021192466840147972, - 0.0029643832240253687, - 0.013164818286895752, - 0.0024486954789608717, - 0.011561916209757328, - 0.0005752217257395387, - 0.007081673480570316, - -0.005603587720543146, - -0.0013524485984817147, - -0.032846350222826004, - 0.029640547931194305, - 0.004739728756248951, - 0.005777673330157995, - 0.015818802639842033, - -0.009262671694159508, - 0.02205961011350155, - -0.0028527057729661465, - -0.029193837195634842, - 0.0010486197425052524, - -0.02014138363301754, - -0.008119618520140648, - -0.018617311492562294, - 0.006546278018504381, - 0.0062342374585568905, - 0.009532011114060879, - -0.014715165831148624, - -0.007107950747013092, - 0.0089999008923769, - -0.0024684034287929535, - -0.02025962993502617, - 0.010668494738638401, - 0.008914499543607235, - -0.011502792127430439, - 0.022374935448169708, - 0.012586722150444984, - -0.03247847408056259, - 0.0071013811975717545, - 0.016620254144072533, - -0.016304928809404373, - 0.008618882857263088, - 0.03334561735391617, - -0.009013039059937, - 0.002828070893883705, - -0.010872142389416695, - -0.010872142389416695, - -0.001241592108272016, - 0.00704882713034749, - 0.021809978410601616, - -0.012652414850890636, - -0.009945875033736229, - -0.0017523529240861535, - -0.013939991593360901, - -0.011003527790307999, - -0.0130991255864501, - -0.018354540690779686, - 0.01254073716700077, - 0.010675064288079739, - -0.011804979294538498, - 0.020877141505479813, - -0.03592076897621155, - -0.020075690001249313, - 0.011443668976426125, - -0.004877683240920305, - 0.02848435565829277, - -0.008645160123705864, - 0.04997900873422623, - 0.011148052290081978, - -0.025107750669121742, - -0.02345229499042034, - -0.06196135655045509, - -0.009637119248509407, - -0.012008626013994217, - 0.009788213297724724, - 0.00875683780759573, - 0.004467104095965624, - 0.0022581866942346096, - -0.01634434424340725, - 0.015464062802493572, - -0.00998529139906168, - 0.005363809410482645, - 0.04128129407763481, - 0.008093341253697872, - 0.008710852824151516, - -0.007226197514683008, - -0.013013724237680435, - -0.028615741059184074, - 0.03507990390062332, - 0.006845179945230484, - -0.005987890064716339, - -0.013953130692243576, - 0.0019888465758413076, - 0.004312726203352213, - 0.007883124053478241, - 0.008934208191931248, - 0.03710323944687843, - -0.0007382217445410788, - -0.03140111267566681, - 0.00033339046058245003, - -0.030639076605439186, - -0.027091670781373978, - 0.0059156278148293495, - -0.01097068190574646, - 0.03208431601524353, - -0.006818902678787708, - -0.012777230702340603, - 0.0027344587724655867, - -0.014307870529592037, - 0.0031499650795012712, - -0.005097753833979368, - 0.011325421743094921, - 0.02074575610458851, - -0.004197763744741678, - -0.0020578240510076284, - -0.0016505292151123285, - 0.006703940220177174, - 0.0037411993835121393, - -0.008632021024823189, - 0.024608487263321877, - -0.019694672897458076, - 0.006605401169508696, - -0.01375605259090662, - -0.00909843947738409, - -0.016817331314086914, - -0.008750268258154392, - -0.009131286293268204, - -0.009196978993713856, - -0.012488182634115219, - -0.025357384234666824, - -0.007140797097235918, - 0.004772575106471777, - -0.02311069332063198, - -0.02634277381002903, - -0.02159976027905941, - 0.009453180246055126, - 0.03502735123038292, - -0.011660454794764519, - -0.010267769917845726, - 0.0035342674236744642, - 0.034160204231739044, - -0.03368721902370453, - 0.017434842884540558, - 0.012100595980882645, - 0.005265270359814167, - 0.0005259522004052997, - 0.024674179032444954, - 0.0020873856265097857, - -0.012429059483110905, - 0.0393105149269104, - 0.006129129324108362, - -0.013210802339017391, - -0.01617354340851307, - -0.013624667190015316, - 0.010425431653857231, - -0.002013481454923749, - -0.001418962376192212, - -0.004647758789360523, - 0.009006469510495663, - 0.005294831935316324, - 0.006700655911117792, - -0.015175014734268188, - 0.0012867557816207409, - 0.004253602586686611, - -0.008750268258154392, - 0.00352112902328372, - -0.03657769784331322, - -0.009394057095050812, - 0.011450238525867462, - 0.0033256930764764547, - -0.0050057838670909405, - -0.029850764200091362, - -0.026605544611811638, - -0.021126773208379745, - -0.004723305348306894, - -0.02194136381149292, - -0.009959014132618904, - 0.022466905415058136, - -0.02471359446644783, - -0.010057552717626095, - 0.006891164463013411, - 0.009623981080949306, - -0.016777915880084038, - -0.010878711938858032, - 0.01970781199634075, - -0.001326992642134428, - -0.013545835390686989, - -0.007738600485026836, - -0.004089370835572481, - 0.0026654815301299095, - 0.006976565346121788, - -0.008822530508041382, - 0.004201048519462347, - -0.020049413666129112, - 0.020193936303257942, - 0.033582109957933426, - -0.009676535613834858, - -0.023701926693320274, - -0.012402782216668129, - -0.03810176998376846, - -0.02848435565829277, - 0.0020282622426748276, - 0.001753995195031166, - -0.02150779217481613, - 0.0014279951574280858, - 0.014202762395143509, - -0.0006704761763103306, - -0.0013409523526206613, - 0.01162760891020298, - -0.022033333778381348, - -0.009545150212943554, - -0.014150208793580532, - -0.0147414430975914, - 0.021757423877716064, - -0.009367779828608036, - -0.017119519412517548, - -0.0031220456585288048, - 0.014728303998708725, - -0.002279536798596382, - -0.015319538302719593, - -0.00941376481205225, - 0.002443768549710512, - -0.018577896058559418, - -0.007475829683244228, - 0.00934150256216526, - 0.008323265239596367, - 0.026697514578700066, - 0.02877340465784073, - -0.013315911404788494, - -0.00762035371735692, - 0.006605401169508696, - -0.029377777129411697, - -0.03145366534590721, - -0.005314539652317762, - 0.0018016224494203925, - -0.002841209527105093, - 0.003143395995721221, - 0.005761249922215939, - -0.015792526304721832, - -0.00965682789683342, - 0.0016201463295146823, - 0.03410765156149864, - 0.004486811812967062, - 0.01048455573618412, - -0.013348757289350033, - -0.002676977775990963, - -0.004230610094964504, - -0.04015138000249863, - 0.008349542506039143, - -0.02225668728351593, - 0.005830227397382259, - 0.010096968151628971, - -0.010648787021636963, - 0.010734187439084053, - -0.006615255493670702, - -0.0018640304915606976, - -0.012672122567892075, - 0.005715265404433012, - -0.046957146376371384, - -0.01600274257361889, - 0.002608000300824642, - 0.01591077260673046, - 0.030323751270771027, - 0.016212958842515945, - 0.004049955401569605, - -0.0058499351143836975, - -0.006897734012454748, - -0.016672808676958084, - -0.02451651729643345, - -0.0032008769921958447, - -0.00769918505102396, - -0.013677220791578293, - -0.010615941137075424, - 0.021061081439256668, - 0.02485811896622181, - -0.020272769033908844, - -0.026014311239123344, - -0.018275709822773933, - 0.019734088331460953, - 0.19434529542922974, - -0.029535438865423203, - -0.02057495526969433, - 0.02554132416844368, - -0.01819687895476818, - -0.03142739087343216, - 0.03213687241077423, - 0.004509804304689169, - 0.001839395728893578, - 0.014137069694697857, - -0.006753209978342056, - 0.002276252256706357, - -0.004122217185795307, - -0.0015872999792918563, - 0.010780172422528267, - -0.03213687241077423, - -0.023925282061100006, - -0.03169016167521477, - 0.019037745893001556, - -0.01535895373672247, - 0.02719677984714508, - -0.011594762094318867, - -0.009486026130616665, - -0.019353071227669716, - 0.015989603474736214, - 0.0025242420379072428, - -0.021245021373033524, - 0.011804979294538498, - 0.012343659065663815, - 0.0036492296494543552, - -0.0006014988175593317, - 0.010865572839975357, - 0.026421604678034782, - 0.0071670738980174065, - -0.02583037130534649, - 0.001524070743471384, - 0.020299045369029045, - 0.017132656648755074, - 0.014820273965597153, - 0.02228296548128128, - 0.013742913492023945, - -0.00762035371735692, - -0.012277966365218163, - -0.011824687011539936, - -0.0010248061735183, - 0.04230610281229019, - 0.0041944789700210094, - -0.010734187439084053, - -0.012048041447997093, - 0.014649473130702972, - -0.02719677984714508, - 0.017592506483197212, - 0.011864102445542812, - 0.04545935243368149, - -0.018420234322547913, - -0.017842138186097145, - 0.004109078552573919, - 0.010064122267067432, - -0.016528284177184105, - 0.0076269228011369705, - -0.0022089171689003706, - 0.01524070743471384, - -0.011371406726539135, - 0.021245021373033524, - 0.009262671694159508, - 0.034580640494823456, - -0.03316167742013931, - -0.005363809410482645, - 0.00654956279322505, - -0.0377076119184494, - -0.011338560841977596, - -0.010136384516954422, - -0.013966268859803677, - 0.0047430130653083324, - -0.028247863054275513, - -0.022690260782837868, - 0.012724677100777626, - 0.013138541020452976, - 0.0070685348473489285, - 0.020719477906823158, - -0.02468731813132763, - -0.006753209978342056, - -0.002690116176381707, - -0.026329636573791504, - -0.0196815337985754, - -0.021757423877716064, - 0.030665354803204536, - 0.038495924323797226, - -0.024069806560873985, - -0.005794096272438765, - -0.004076232202351093, - -0.007797724101692438, - -0.019445041194558144, - 0.012691830284893513, - 0.016410037875175476, - -0.004066378343850374, - 0.026776345446705818, - 0.03310912102460861, - 0.0077911545522511005, - 0.009072162210941315, - -0.014058238826692104, - 0.0685306265950203, - 0.026014311239123344, - -0.013040001504123211, - -0.021954501047730446, - 0.014110792428255081, - -0.013900576159358025, - 0.01668594591319561, - -0.0025406652130186558, - -0.02451651729643345, - -0.018236294388771057, - -0.012396213598549366, - 0.015634862706065178, - 0.018328264355659485, - 0.021192466840147972, - -0.004289733711630106, - -0.00712765846401453, - 0.010372878052294254, - 0.013394742272794247, - -0.018919499590992928, - -0.01573997177183628, - -0.012356797233223915, - -0.00035371416015550494, - 0.02468731813132763, - 0.009466318413615227, - -0.029561717063188553, - -0.037523671984672546, - -0.00027980987215414643, - 0.002604715758934617, - 0.003222227096557617, - 0.027301887050271034, - -0.022335520014166832, - 0.021126773208379745, - 0.008645160123705864, - -0.013519558124244213, - 0.041780561208724976, - 0.011010097339749336, - -0.014846551232039928, - 0.018866945058107376, - -0.02162603847682476, - 0.03150622174143791, - -0.010543678887188435, - 0.003143395995721221, - -0.0057284035719931126, - 0.009492595680058002, - -0.007778015919029713, - 0.013414449989795685, - 0.00044178342795930803, - -0.01164074707776308, - -0.024043530225753784, - -0.017750168219208717, - -0.0008195164846256375, - -0.001859103562310338, - -0.011240021325647831, - 0.04067692160606384, - 0.022650843486189842, - -0.025291690602898598, - -0.03006098046898842, - -0.018748696893453598, - 0.010379447601735592, - -0.005475487094372511, - 0.003967839293181896, - -0.0038955772761255503, - -0.03476458042860031, - -0.013348757289350033, - -0.019129715859889984, - -0.16880397498607635, - 0.0073969983495771885, - -0.008907930925488472, - -0.021126773208379745, - 0.044697314500808716, - -0.010064122267067432, - 0.032241977751255035, - 0.015109322033822536, - -0.006027305498719215, - 0.01648886874318123, - 0.013085986487567425, - -0.00027118768775835633, - -0.039757225662469864, - -0.00721305888146162, - -0.01753995195031166, - -0.005665995646268129, - -0.022519458085298538, - 0.010773603804409504, - 0.046037446707487106, - 0.01245533674955368, - 0.014807135798037052, - -0.008165603503584862, - -0.0023961414117366076, - 0.016935579478740692, - -0.012475044466555119, - 0.013092556037008762, - 0.003530982881784439, - 0.0028986905235797167, - 0.0013327407650649548, - -0.017842138186097145, - -0.011489653959870338, - 0.0147545812651515, - 0.02974565699696541, - 0.009834197349846363, - 0.010957542806863785, - -0.004046670626848936, - -0.0038397384341806173, - 0.014596918597817421, - -0.008296988904476166, - 0.02485811896622181, - 0.020469846203923225, - 0.02422746829688549, - 0.008014509454369545, - 0.011673593893647194, - -0.015648001804947853, - 0.020193936303257942, - -0.0016431387048214674, - -0.014360425062477589, - 0.002158005256205797, - -0.017526812851428986, - 0.01836767978966236, - -0.02585664764046669, - 0.003869300242513418, - 0.01074075698852539, - 0.01625237427651882, - 0.013191094622015953, - -0.011174328625202179, - -0.00540650961920619, - 0.0038463077507913113, - 0.023636234924197197, - -0.00859917514026165, - -0.00835611205548048, - 0.009683104231953621, - -0.00778458546847105, - -0.009275809861719608, - -0.02648729830980301, - -0.021468374878168106, - 0.02291361428797245, - -0.013624667190015316, - 0.012731245718896389, - 0.022335520014166832, - -0.013467004522681236, - -0.0023173100780695677, - -0.018407095223665237, - -0.003455436322838068, - 0.0062342374585568905, - -0.018958915024995804, - -0.007797724101692438, - 0.003964554518461227, - -0.008224726654589176, - -0.015201292000710964, - 0.03529012203216553, - -0.019155992195010185, - -0.02882595919072628, - -0.008829099126160145, - 0.022808507084846497, - 0.01191665604710579, - 0.0018508919747546315, - 0.01088528148829937, - -0.011634177528321743, - 0.005518187303096056, - -0.028878511860966682, - -0.03731345757842064, - 0.004049955401569605, - 0.00482841394841671, - 0.024450823664665222, - 0.0024585493374615908, - -0.007633492350578308, - -0.010615941137075424, - -0.014662611298263073, - -0.0009344787104055285, - -0.004969653207808733, - -0.023005584254860878, - 0.00425688736140728, - 0.012034903280436993, - 0.004772575106471777, - 0.007061965763568878, - 0.010392585769295692, - 0.02162603847682476, - -0.023636234924197197, - -0.018301988020539284, - 0.0006885416805744171, - 0.012363366782665253, - 0.03762878105044365, - 0.012908616103231907, - 0.03134856000542641, - -0.009157562628388405, - -0.010845865122973919, - 0.025291690602898598, - 0.01191665604710579, - 0.05032061040401459, - -0.0029364638030529022, - -0.028931066393852234, - 0.013900576159358025, - -0.008737129159271717, - -0.020246490836143494, - -0.07331305742263794, - -0.005307970568537712, - 0.022650843486189842, - 0.017592506483197212, - 0.005353955551981926, - 0.030218644067645073, - -0.018223155289888382, - 0.019103437662124634, - 0.03371349722146988, - 0.00474958261474967, - -0.010464848019182682, - -0.03179526701569557, - -0.012994016520678997, - -0.014662611298263073, - 0.021153051406145096, - 0.0004840730980504304, - -0.023307770490646362, - -0.028642019256949425, - -0.021704869344830513, - 0.04409294202923775, - -0.0023173100780695677, - 0.01294146291911602, - 0.003307627746835351, - -0.02877340465784073, - -0.006526570301502943, - 0.006851749029010534, - -0.03571055456995964, - 0.03373977169394493, - 0.01631806790828705, - -0.012034903280436993, - -0.010057552717626095, - -0.006943718995898962, - 0.024989504367113113, - -0.015818802639842033, - 0.018525343388319016, - -0.0021333706099539995, - -0.008835668675601482, - -0.0030859147664159536, - 0.03208431601524353, - -0.003869300242513418, - 0.0030941262375563383, - 0.014793996699154377, - -0.0011184182949364185, - -0.03891635686159134, - -0.0018788112793117762, - -0.008645160123705864, - -0.014242177829146385, - 0.003370035672560334, - 0.01404509972780943, - -0.013913714326918125, - -0.048612602055072784, - -0.021954501047730446, - -0.014307870529592037, - 0.016896164044737816, - 0.0033322623930871487, - -0.0056528570130467415, - 0.0012046399060636759, - -0.013545835390686989, - -0.012002057395875454, - -0.009315225295722485, - 0.0024864687584340572, - 0.002269682940095663, - -0.016620254144072533, - 0.027012839913368225, - -0.004388272762298584, - 0.002778801368549466, - -0.001819687895476818, - 0.002220413414761424, - -0.005117461550980806, - -0.018735559657216072, - -0.004473673179745674, - -0.006648101843893528, - 0.009059024043381214, - 0.02600117214024067, - -0.023846451193094254, - 0.003530982881784439, - -0.02780115231871605, - -0.007488968316465616, - 0.024188052862882614, - -0.009532011114060879, - -0.027669766917824745, - -0.038154322654008865, - 0.009242963045835495, - -0.004273310303688049, - 0.009768504649400711, - 0.045380521565675735, - 0.011621039360761642, - -0.005012353416532278, - -0.017776446416974068, - 0.007259043864905834, - 0.009479457512497902, - -0.0014074661303311586, - 0.015437785536050797, - -0.02877340465784073, - -0.0077254618518054485, - 0.013243649154901505, - -0.0037970382254570723, - -0.003570398548617959, - 0.021928224712610245, - 0.027012839913368225, - -0.011128343641757965, - -0.003530982881784439, - -0.0819844976067543, - 0.008106479421257973, - 0.0046773203648626804, - -0.0326361358165741, - -0.010037845000624657, - 0.004299587570130825, - 0.0008942419080995023, - 0.0038068920839577913, - -0.02583037130534649, - 0.004674036055803299, - -0.02722305618226528, - 0.010707911103963852, - 0.024017252027988434, - 0.0032156577799469233, - -0.02653985284268856, - -0.03623609617352486, - 0.006010882556438446, - -0.0030267913825809956, - -0.005271839443594217, - 0.018275709822773933, - 0.007442983333021402, - 0.013434157706797123, - 0.006060151848942041, - 0.010477986186742783, - -0.023807035759091377, - -0.001819687895476818, - -0.005298116710036993, - 0.01831512525677681, - 0.0016644889255985618, - -0.00020159449195489287, - 0.0017030833987519145, - -0.012238550931215286, - -0.008691145107150078, - 0.02383331209421158, - 1.5422388969454914e-05, - -0.012422489933669567, - 0.009853905998170376, - 0.03794410452246666, - -0.004056524485349655, - 0.08040787279605865, - -0.014991074800491333, - -0.008080202154815197, - 0.024621624499559402, - -0.00842837430536747, - -0.0021005242597311735, - -0.0020676779095083475, - 0.012225411832332611, - 0.02077203243970871, - 0.022861061617732048, - -0.022099025547504425, - 0.015188152901828289, - 0.006638247519731522, - -0.007337875198572874, - -0.0034849978983402252, - 0.0027574512641876936, - -0.0001741883170325309, - 0.014268455095589161, - -0.015201292000710964, - -0.0036656528245657682, - -0.026960285380482674, - 0.0327937975525856, - -0.015332677401602268, - -0.004979507066309452, - -0.00418462511152029, - -0.003261642763391137, - -0.02140268310904503, - -0.01541150826960802, - -0.007475829683244228, - -0.014504948630928993, - -0.023334048688411713, - -0.009886751882731915, - 0.0010617583757266402, - -0.010445140302181244, - 0.02885223552584648, - 0.007311597932130098, - 0.014557503163814545, - 0.022637706249952316, - 0.00031758315162733197, - 0.005216000601649284, - 0.0014132142532616854, - 0.012645845301449299, - 0.026986563578248024, - -0.03468574583530426, - 0.0064214617013931274, - 0.031269725412130356, - 0.0474826879799366, - -0.017894692718982697, - 0.02573840133845806, - -0.01851220428943634, - -0.006424746476113796, - 0.007817431353032589, - 0.0075940764509141445, - 2.3159243937698193e-05, - 0.016015881672501564, - -0.0029249675571918488, - -0.004933522082865238, - -0.005344101693481207, - -0.0075612301006913185, - 0.019353071227669716, - 0.013131971471011639, - 0.004224041011184454, - -0.00020960078109055758, - 0.008342972956597805, - -0.002844494068995118, - -0.014728303998708725, - 0.009518872946500778, - -0.009446610696613789, - -0.046668097376823425, - 0.010911557823419571, - 0.024477101862430573, - -0.02383331209421158, - 0.02914128266274929, - -0.002394499024376273, - 0.010057552717626095, - -0.03668280690908432, - 0.020614370703697205, - -0.00851377472281456, - -0.005189723800867796, - -0.03077046200633049, - 0.02057495526969433, - 0.007094812113791704, - 0.0443294383585453, - 0.006017451640218496, - -0.027774875983595848, - 0.009315225295722485, - -0.018262572586536407, - -0.002811647718772292, - -0.02405666746199131, - -0.0003292846668045968, - 0.017080102115869522, - 0.004355426412075758, - 0.017303457483649254, - -0.03134856000542641, - -0.010103537701070309, - -0.0019445039797574282, - -0.005869643297046423, - 0.013637805357575417, - 0.01999685913324356, - 0.01032689306885004, - 0.10442512482404709, - 0.014163346961140633, - -0.01262613758444786, - 0.011667024344205856, - 2.1106347048771568e-05, - -0.0018968768417835236, - 0.002606357913464308, - 0.008835668675601482, - -0.01634434424340725, - -0.018525343388319016, - 0.00409265561029315, - -0.004450680688023567, - 0.00172114884480834, - -0.014531225897371769, - -0.03368721902370453, - 0.01648886874318123, - -0.001602080767042935, - 0.003140111221000552, - -0.003005441278219223, - 0.009157562628388405, - 0.024753009900450706, - 0.008080202154815197, - 0.0016636677319183946, - 0.008730560541152954, - -0.02274281345307827, - -0.004693743772804737, - 0.010261200368404388, - -0.0065955473110079765, - -0.00192479626275599, - -0.03857475519180298, - -0.0077583082020282745, - -0.012389644049108028, - -0.05402567982673645, - -0.019891750067472458, - 0.021166188642382622, - -0.019392486661672592, - 0.003655798966065049, - -0.019064022228121758, - 0.0077911545522511005, - 0.0060798595659434795, - -0.02094283327460289, - 0.03197920694947243, - -0.018012939020991325, - -0.01376919075846672, - 0.01294146291911602, - -0.0069699957966804504, - 0.002414206974208355, - 0.007679476868361235, - -0.013138541020452976 - ], - "sparse": "SparseEmbedding(values=array([1.68320383, 1.68320383]), indices=array([1877620790, 1691249474]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 41, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 2 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000042.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000042.json deleted file mode 100644 index 1dcafaa1930fdad406a77cbf9703f514b0349597..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000042.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000042", - "content": "1 Einleitung Die Auswirkungen des Klimawandels werden zunehmend sp\u00fcrbar. In den kommenden Jahrzenten ist eine Zunahme an H\u00e4ufigkeit und Intensit\u00e4t von Extremwetterlagen zu erwarten. Hitzewellen treten immer h\u00e4ufiger auf, Starkregenereignisse verursachen wachsende Sch\u00e4den, und erneut war das vergangene Jahr 2023 das w\u00e4rmste seit Beginn der Wetteraufzeichnungen. (Bundesministerium f\u00fcr Wohnen, Stadtentwicklung und Bauwesen 2024a) Aktuelle st\u00e4dtische Strukturen sind h\u00e4ufig nicht auf zuk\u00fcnftige klimatische Bedingungen ausgelegt. Ein hoher Versiegelungsgrad, dichte Bebauung, Oberfl\u00e4chenmaterialien, hohes Verkehrsaufkommen und verh\u00e4ltnism\u00e4\u00dfig kleine Gr\u00fcnfl\u00e4chen tragen zu einer hohen \u00f6kologischen Belastung und sinkender Lebensqualit\u00e4t in St\u00e4dten bei. Urbane Gebiete sind f\u00fcr etwa 75 % der weltweiten CO2- Emissionen verantwortlich, 39 % der energiebezogenen Treibhausgasemissionen sind auf den Erhalt und die Instandsetzung von Geb\u00e4uden zur\u00fcckzuf\u00fchren. St\u00e4dte nutzen 75 % der weltweit verf\u00fcgbaren Ressourcen und dennoch spielen sie gleichzeitig eine zentrale Rolle in der nachhaltigen Entwicklung als Wirtschafts- und Lebensraum. (vgl. Die Bundesregierung 2020, S. 265) dunkle Die Urbanisierung f\u00fchrt zu lokal ver\u00e4nderten und zum Umland unterschiedlichen klimatischen Bedingungen im urbanen Raum. Die st\u00e4dtische Bebauungsstruktur f\u00f6rdert einen Temperaturunterschied zwischen Stadt und Umland, der besonders nachts ausgepr\u00e4gt ist \u2013 ein Ph\u00e4nomen, das als W\u00e4rme- oder Hitzeinseleffekt (Urban Heat Island, UHI) bekannt ist. Mit einer zunehmenden Urbanisierung wird die Temperatur in st\u00e4dtischen Gebieten weiter ansteigen. (vgl. Revi et al. 2015, S. 551) Es wird prognostiziert, dass ohne gezielte Ma\u00dfnahmen zur Minderung der Klimafolgen die Jahresmitteltemperatur in Deutschland im Vergleich zu dem Zeitraum von 1970 \u2013 2000 um 4,7 \u00b0C ansteigt. Abbildung 1 verdeutlicht die voraussichtlich zunehmende Jahresmitteltemperatur des Bundesgebiets. 1971:2000 2071-2100 ee En nn) 4567809 \u0131 \u01312 13 14 rc] Abbildung 1: 30-Jahresmitteltemperatur f\u00fcr den historischen Zeitraum (1970-2000), f\u00fcr die nahe Zukunft (2031-2060) und f\u00fcr die ferne Zukunft (2071-2100) nach dem RCP8.5-Szenario (vgl. Deutscher Wetterdienst) 1 Einleitung Der sechste Sachstandsbericht (Synthesis Report) des Intergovernmental Panel on Climate Change (IPCC) betont das Potential und den erheblichen Handlungsspielraum von St\u00e4dten bei der Umsetzung von Klimaanpassungsstrategien. Neben einer emissionsarmen Bauweise, einer erneuerbaren Energieversorgung und der Reduktion verkehrsbedingter Emissionen stellen urbane Gr\u00fcn- und Wasserfl\u00e4chen eine entscheidende Stellschraube f\u00fcr die Anpassung st\u00e4dtischer Gebiete an den Klimawandel dar. (vgl. Lee et al. 2023, S. 105) Angesichts des erheblichen Handlungsbedarfs, St\u00e4dte an zuk\u00fcnftige klimatische Bedingungen anzupassen, ist es unerl\u00e4sslich, eine ganzheitliche Betrachtungsweise zu verfolgen und die vielf\u00e4ltigen Wechselwirkungen zwischen Mobilit\u00e4t, Energie- und Wasserhaushalt, st\u00e4dtischem Gr\u00fcn und den Bed\u00fcrfnissen der Bev\u00f6lkerung zu ber\u00fccksichtigen. Hier setzt das Forschungsprojekt CircularGreenSimCity (CGSC) an der Hochschule f\u00fcr Technik (HfT) Stuttgart an. Ziel des Projekts ist es, verschiedene Planungsdimensionen zu einem iterativen Planungsprozess zusammenzuf\u00fchren, der zum einen eine Lebenszykluskostenbetrachtung und zum anderen die Wechselwirkungen der genannten st\u00e4dtischen Dimensionen ber\u00fccksichtigt. Zur Definition von Leitlinien und zur Validierung des modellhaften Ansatzes werden mit der Software SimStadt Simulationen im Bereich des Energiebedarfs im aktuellen Zustand und f\u00fcr Zukunftsszenarien in Bestandsquartieren durchgef\u00fchrt. Ein m\u00f6gliches Zukunftsszenario zur klimaresilienten Gestaltung von St\u00e4dten ist die Erh\u00f6hung des Gr\u00fcnanteils innerhalb der Quartiere. Dies erfordert jedoch eine Reduktion des MIV, um Landnutzungskonflikte zu l\u00f6sen. Die Schwerpunkte dieser Arbeit liegen auf der Analyse freiwerdender Potentialfl\u00e4chen in unterschiedlichen Mobilit\u00e4tsszenarien und der Aufstellung daraus resultierender Baumpflanzungsszenarien, sowie der Simulation der Auswirkung dieser erh\u00f6hten Begr\u00fcnung auf den thermischen Geb\u00e4udeenergiebedarf und die Evapotranspiration der B\u00e4ume. Beispielhaft wird das Modell auf die Fallstudiengebiete Gromb\u00fchl (Stadt W\u00fcrzburg) und Grafenb\u00fchl (Stadt Asperg) angewandt. Beide St\u00e4dte sind Praxispartner des Projekts CGSC. Welche Auswirkungen die Erh\u00f6hung des st\u00e4dtischen Gr\u00fcns auf den Energiebedarf der Geb\u00e4ude hat, wie diese mit einer \u00c4nderung des Mobilit\u00e4tsverhaltens zusammenh\u00e4ngt und inwieweit das Tool in der Praxis anwendbar ist, wird in der vorliegenden Arbeit in den zwei Fallstudiengebieten Gromb\u00fchl und Grafenb\u00fchl simuliert und analysiert. 2 Theorieteil", - "embedding": { - "dense": [ - 0.02993725799024105, - -0.005764417815953493, - 0.014578482136130333, - -0.021978264674544334, - 0.004883336368948221, - 0.017374534159898758, - -0.024033037945628166, - 0.00435663852840662, - -0.01395424734801054, - -0.030535483732819557, - 0.008440174162387848, - 0.0034430448431521654, - -0.012965875677764416, - 0.022628510370850563, - -0.0024351656902581453, - -0.004730529151856899, - 0.05186350271105766, - 0.006892592180520296, - 0.02502140961587429, - -0.006648750510066748, - -0.00813455879688263, - 0.019169209524989128, - 0.008908350020647049, - -0.000849381904117763, - -0.004798804875463247, - 0.01857098378241062, - 0.02902691625058651, - -0.032512225210666656, - -0.008966872468590736, - -0.0067690457217395306, - 0.0018158078892156482, - -0.005374270956963301, - -0.0365697517991066, - -0.005201956257224083, - -0.00970815122127533, - -0.0013728287303820252, - -0.001916595734655857, - -0.007633870933204889, - 0.001571153406985104, - -0.014916609972715378, - -0.0018987139919772744, - -0.0005299493204802275, - 0.0018304383847862482, - -0.01831088587641716, - 0.009298496879637241, - 0.03285035490989685, - 0.015098677948117256, - -0.0038201867137104273, - -0.020248614251613617, - 0.019559355452656746, - 0.035139214247465134, - 0.03815634921193123, - -0.0075038219802081585, - -0.0011810066644102335, - -0.036283645778894424, - -0.0024221609346568584, - -0.02926100417971611, - 0.010514453984797001, - 0.007055153138935566, - -0.01675029844045639, - -0.014058287255465984, - -0.0035405815578997135, - -0.01395424734801054, - 0.016191089525818825, - -0.022940626367926598, - -0.018818076699972153, - -0.019273247569799423, - -0.0042656040750443935, - 0.005809934809803963, - -0.014773556031286716, - 0.046583518385887146, - 0.03930078074336052, - 0.017959754914045334, - -0.013128437101840973, - 0.008342637680470943, - 0.000626673165243119, - 0.002506692660972476, - -0.0007689141784794629, - -0.011015142314136028, - 0.009278989396989346, - 0.013538091443479061, - -0.020495707169175148, - -0.019520340487360954, - 0.04132954403758049, - 0.019273247569799423, - 0.010494946502149105, - -0.007542836479842663, - 0.014370404183864594, - -0.010306376032531261, - 0.007770422380417585, - -0.0015996015863493085, - 0.011132186278700829, - 0.0008656380232423544, - 0.03350059688091278, - -0.008615740574896336, - -0.01139228418469429, - 0.00027594753191806376, - 0.009148940443992615, - 0.015345770865678787, - -0.01963738538324833, - -0.01585296168923378, - -0.008316627703607082, - 0.0006002570153214037, - -0.00791347585618496, - -0.041225504130125046, - 0.009682141244411469, - 0.0077249049209058285, - 0.011814943514764309, - 0.012777305208146572, - -0.019325267523527145, - -0.020872849971055984, - 0.036023546010255814, - -0.028922876343131065, - -0.0207948200404644, - 0.01564488373696804, - -0.03446296229958534, - 0.03758413344621658, - -0.004626489710062742, - -0.005123926792293787, - -0.025840718299150467, - 0.02435816079378128, - 0.0030594004783779383, - -0.010885093361139297, - -0.009760170243680477, - 0.007887465879321098, - 0.01059898640960455, - -0.011164698749780655, - 0.006391903851181269, - -0.025840718299150467, - -0.02684209495782852, - -0.03735004737973213, - 0.0056928908452391624, - 0.012101050466299057, - -0.006362642627209425, - -0.02318771928548813, - 0.03748009353876114, - -0.020443689078092575, - -0.005045897793024778, - -0.030327405780553818, - -0.04645346850156784, - -0.01832389086484909, - 0.01629512757062912, - -0.031393807381391525, - -0.01330400351434946, - -0.0052149612456560135, - 0.027310270816087723, - 0.014721536077558994, - 0.02368190698325634, - 0.01115819625556469, - -0.01611305959522724, - 0.005757915321737528, - -0.01227011438459158, - 0.017244484275579453, - 0.011164698749780655, - 0.0015906606568023562, - 0.006482937838882208, - -0.014773556031286716, - 0.000504345924127847, - -0.02884484827518463, - -0.0021019154228270054, - 0.027648398652672768, - -0.02031363919377327, - 0.018623003736138344, - 0.00680155772715807, - 0.015800941735506058, - 0.001419971464201808, - 0.007490816991776228, - 0.0007640373078174889, - 0.02232939749956131, - -0.023772940039634705, - -0.01811581291258335, - 0.026464952155947685, - -0.036517731845378876, - 0.0365697517991066, - 0.006736533250659704, - 0.032512225210666656, - -0.0007697269902564585, - 0.028532730415463448, - -0.018466945737600327, - -0.031211737543344498, - -0.029625141993165016, - 0.005263729486614466, - 0.013707154430449009, - 0.02101590298116207, - -0.024722296744585037, - -0.01383720338344574, - 0.03976895660161972, - 0.01273829024285078, - -0.000876204518135637, - 0.001965364208444953, - 0.007627368438988924, - 0.021835211664438248, - 0.010885093361139297, - -0.00382343796081841, - -0.639632523059845, - 0.01719246618449688, - -0.0014744295040145516, - -0.008511700667440891, - 0.0035015668254345655, - 0.01850595884025097, - 0.03300641104578972, - 0.015709908679127693, - -0.005364517215639353, - 0.03969092667102814, - -0.0013037403114140034, - 0.007672885432839394, - -0.019572360441088676, - -0.005289739463478327, - 0.004431416746228933, - -0.01117120124399662, - 0.0013728287303820252, - -0.0028236869256943464, - 0.02435816079378128, - 0.005221463739871979, - 0.006925104185938835, - 0.02835066244006157, - -0.0009176576277241111, - 0.005822939798235893, - 0.018948126584291458, - 0.023369789123535156, - -0.009337511844933033, - -0.03771418333053589, - 0.0029065930284559727, - 0.016906358301639557, - -0.006180574186146259, - 0.028870858252048492, - -0.018909111618995667, - 0.014799566008150578, - 0.05410034582018852, - 0.0132779935374856, - -0.006704021245241165, - 0.01271228026598692, - 0.00836214516311884, - 0.007958993315696716, - -0.006092791445553303, - -0.00530274398624897, - -0.008589730598032475, - 0.009441550821065903, - 0.007620865944772959, - 0.019585365429520607, - 0.03612758591771126, - -0.028974896296858788, - 0.01184095349162817, - -0.019026154652237892, - 0.019299257546663284, - 0.0068535772152245045, - 0.014539468102157116, - 0.013590110465884209, - 0.012822822667658329, - 0.008771798573434353, - 0.026712045073509216, - 0.004051023628562689, - -0.012465187348425388, - 0.008238598704338074, - -0.005078409798443317, - 0.013486071489751339, - -0.008693769574165344, - -0.019143199548125267, - -0.020040536299347878, - 0.04686962813138962, - -0.03776620328426361, - -0.009461058303713799, - -0.004116048105061054, - -0.026660025119781494, - -0.007692392915487289, - 0.012985383160412312, - -0.001106228563003242, - -0.011951494961977005, - 0.016711285337805748, - -0.005166193004697561, - 0.031601883471012115, - -0.0065902285277843475, - -0.011535338126122952, - 0.03266828507184982, - 0.008037022314965725, - -0.008914852514863014, - -0.015748921781778336, - 0.0027131452225148678, - 0.015436805784702301, - -0.034723058342933655, - -0.015085672959685326, - -0.0033910253550857306, - -0.021289005875587463, - 0.0047012679278850555, - 0.009851205162703991, - 0.01694537326693535, - -0.033864736557006836, - -0.027830466628074646, - -0.0004893090226687491, - 0.03461901843547821, - -0.007386778015643358, - 0.04504894092679024, - 0.0014654885744675994, - -0.039899006485939026, - -0.020716790109872818, - 0.0032219616696238518, - 0.007094168104231358, - 0.01677630841732025, - 0.016802318394184113, - 0.004844321869313717, - -0.013264988549053669, - 0.002929351758211851, - 0.029078936204314232, - -0.0066389967687428, - 0.001439478830434382, - 0.0006669070571660995, - -0.0026529976166784763, - -0.018375910818576813, - -0.01408429630100727, - -0.01607404462993145, - 0.02368190698325634, - -0.009252979420125484, - 0.014149321243166924, - 0.014006267301738262, - 0.027518348768353462, - 0.007737909909337759, - 0.012965875677764416, - -0.03264227509498596, - -0.007991505786776543, - 0.022446440532803535, - -0.001040391274727881, - -0.009207462891936302, - -0.017959754914045334, - -0.02457924373447895, - 0.020625757053494453, - 0.014318385161459446, - 0.04863829165697098, - -0.0049646170809865, - 0.02482633665204048, - -0.005673383362591267, - 0.0326162651181221, - -0.007367270532995462, - 0.0009095295681618154, - 0.004828065633773804, - -0.014578482136130333, - 0.0007502196240238845, - 0.006352889351546764, - -0.03011932782828808, - -0.010572976432740688, - -0.016659265384078026, - -0.01608704961836338, - 0.001906842109747231, - -0.01238715834915638, - 0.0064439233392477036, - -0.016815323382616043, - -0.00872628204524517, - 0.011203713715076447, - 0.01517670787870884, - 0.003813684219494462, - 0.015553849749267101, - 0.0031569371931254864, - -0.02007955126464367, - -0.014643507078289986, - -0.033188480883836746, - 0.01061849296092987, - 0.016347147524356842, - -0.03995102271437645, - 0.01340804249048233, - -0.02010556124150753, - 0.01061849296092987, - -0.004281860310584307, - 0.01965039037168026, - -0.019377287477254868, - -0.026243869215250015, - -0.007464807480573654, - -0.03378670662641525, - -0.0010363272158429027, - 0.023551857098937035, - -0.016594240441918373, - -0.014656512066721916, - -0.03259025514125824, - -0.009435048326849937, - -0.006414662580937147, - 0.0027619136963039637, - 0.01762162707746029, - -0.02169215865433216, - -0.016802318394184113, - -0.024020032957196236, - -0.0015865967143326998, - 0.00791347585618496, - 0.024046042934060097, - 0.0048475731164216995, - -0.01698438823223114, - 0.013460061512887478, - 0.008992881514132023, - 0.030769571661949158, - -0.010039775632321835, - 0.009500072337687016, - -0.010579478926956654, - -0.018596993759274483, - -0.0067690457217395306, - 0.020274624228477478, - -0.02342180907726288, - 0.01137927919626236, - 0.05118725076317787, - -0.0017020150553435087, - 0.010241351090371609, - -0.007672885432839394, - 0.01694537326693535, - -0.024709291756153107, - 0.009396033361554146, - 0.00665200175717473, - 0.0270241629332304, - 0.008973374962806702, - 0.03927477076649666, - -0.012322134338319302, - -0.034488968551158905, - -0.00614806218072772, - -0.012185582891106606, - 0.035607390105724335, - -0.01676330342888832, - -0.011242727749049664, - 0.004051023628562689, - -0.008063032291829586, - 0.002856199163943529, - -0.0004206269222777337, - 0.023746930062770844, - -0.011210216209292412, - -0.028298642486333847, - 0.02546357549726963, - -0.027310270816087723, - 0.017738670110702515, - 0.0031731934286653996, - -0.002783046569675207, - -0.016373157501220703, - 0.005224714986979961, - -0.0008892093901522458, - 0.004424914252012968, - 0.005881461780518293, - 0.024293135851621628, - 0.00681456271559, - -0.022862598299980164, - 0.033188480883836746, - 0.010807064361870289, - 0.004392401780933142, - 0.014721536077558994, - 0.003904718440026045, - -0.0219002366065979, - 0.03321449086070061, - 0.005270231980830431, - 0.04060126841068268, - 0.027830466628074646, - -0.0046329922042787075, - 0.012744792737066746, - -0.00686007970944047, - 0.010026770643889904, - 0.014682522043585777, - -0.018427930772304535, - 0.016477197408676147, - -0.0221343245357275, - 0.025775693356990814, - -0.014175331220030785, - 0.02699815295636654, - 0.018167832866311073, - -0.0006457741255871952, - 0.0013208092423155904, - 0.00928549189120531, - -0.012523709796369076, - 0.0017897981451824307, - -0.015592863783240318, - -0.013317008502781391, - -0.004691514186561108, - -0.012770802713930607, - 0.009675638750195503, - 0.010078790597617626, - -0.0028594504110515118, - -0.010956620797514915, - -0.0019995018374174833, - 0.0011736913584172726, - -0.001698763808235526, - 0.009513077326118946, - 0.009461058303713799, - 0.002430289052426815, - 0.01284232921898365, - 0.003407281357795, - -0.01610005460679531, - -0.01768665201961994, - 0.032486218959093094, - -0.015124687924981117, - -0.040549248456954956, - -0.0053255027160048485, - 0.0007603797130286694, - -0.015983011573553085, - -0.005019887816160917, - -0.014136316254734993, - -0.0015321386745199561, - -0.014604492112994194, - -0.011359771713614464, - 0.017920739948749542, - -0.008407661691308022, - 0.021718166768550873, - -0.021341025829315186, - 0.006346386857330799, - 0.0026237366255372763, - 0.0069901286624372005, - -0.009044901467859745, - -0.011366274207830429, - -0.0059074717573821545, - 0.03017134591937065, - 0.006261854898184538, - -0.0004763041215483099, - 0.01329099852591753, - -0.006892592180520296, - -0.0051369317807257175, - -0.0017410297878086567, - -0.02409806288778782, - -0.005543334875255823, - 0.022706538438796997, - -0.014474443159997463, - 0.012731787748634815, - 0.013310506008565426, - -0.013811194337904453, - 0.0411214642226696, - 0.0048215631395578384, - 0.011814943514764309, - -0.02902691625058651, - -0.018479948863387108, - 0.009844702668488026, - 0.04138156399130821, - 0.009012388996779919, - -0.009890219196677208, - 0.013889223337173462, - 0.0211979728192091, - -0.01677630841732025, - -0.009734160266816616, - -0.04372244328260422, - -0.002922849263995886, - -0.005253975745290518, - 0.013251983560621738, - -0.008225593715906143, - 0.019468320533633232, - -0.01810280792415142, - 0.01364213041961193, - 0.008069534786045551, - 0.0031618140637874603, - -0.019741423428058624, - 0.0012444055173546076, - 0.019468320533633232, - -0.0041225505992770195, - -0.009799185208976269, - 0.0076143634505569935, - 0.05321601405739784, - 0.017569607123732567, - 0.012894349172711372, - 0.02949509210884571, - 0.03331853076815605, - -0.0029163467697799206, - -0.008745788596570492, - -0.006944611668586731, - 0.021093932911753654, - 0.004493189975619316, - 0.02435816079378128, - -0.022862598299980164, - 0.007419290021061897, - 0.0008875837665982544, - -0.035581380128860474, - 0.03438493236899376, - -0.013037403114140034, - 0.019923493266105652, - 0.0008940862608142197, - 0.002609106246381998, - -0.012627748772501945, - 0.00871327705681324, - -0.019962508231401443, - 0.007594855967909098, - 0.021757181733846664, - -0.005809934809803963, - -0.01723148114979267, - 0.005006882827728987, - -0.015566853806376457, - -0.022602500393986702, - -0.01717946119606495, - -0.007783426903188229, - -0.015371780842542648, - 0.028038544580340385, - -0.019949503242969513, - 0.006460179574787617, - -0.008102047257125378, - -0.035581380128860474, - -0.02408505789935589, - -0.016243109479546547, - -0.01604803465306759, - -0.008661257103085518, - -0.010325883515179157, - -0.0071461875922977924, - 0.015085672959685326, - -0.02297964133322239, - -0.0010785930790007114, - 0.040731318295001984, - -0.023343779146671295, - -0.02281057834625244, - 0.008472686633467674, - 0.012016518972814083, - 0.004333879798650742, - 0.01383720338344574, - -0.0137461693957448, - -0.008628744632005692, - -0.015970006585121155, - -0.015254736877977848, - -0.01789472997188568, - 0.0016678771935403347, - -0.018922116607427597, - -0.005562841892242432, - 0.0011541841086000204, - -0.011047654785215855, - -0.009968249127268791, - -0.002196200890466571, - 0.028740808367729187, - -0.024293135851621628, - -0.011593859642744064, - 0.0061643184162676334, - 0.014370404183864594, - -0.01215307042002678, - 0.009461058303713799, - 0.019065169617533684, - -0.0072827390395104885, - 0.02454022876918316, - -0.039222750812768936, - 0.027622388675808907, - -0.00019598776998464018, - -0.0026578744873404503, - 0.004187574610114098, - 0.005364517215639353, - -0.0031683165580034256, - -0.013694150373339653, - 0.007841949351131916, - -0.009565097279846668, - -0.0008270297548733652, - 0.0335526168346405, - -0.03266828507184982, - 0.03279833495616913, - -0.006573972292244434, - -0.018453940749168396, - 0.008173573762178421, - 0.009929234161973, - 0.0031244249548763037, - 0.026660025119781494, - -0.014864590018987656, - -0.0011574352392926812, - -0.036049555987119675, - 0.046973664313554764, - 0.014630502089858055, - 0.019988516345620155, - -4.810793689102866e-05, - 0.003966491669416428, - 0.02186122164130211, - -0.034280892461538315, - -0.009948741644620895, - -0.006209835410118103, - 0.015553849749267101, - 0.021249990910291672, - -0.0002889524039346725, - -0.010377902537584305, - -0.00382343796081841, - 0.004090038128197193, - 0.0037714182399213314, - -0.03441094234585762, - 0.0008932734490372241, - -0.030067307874560356, - -0.002999252872541547, - -0.012042528949677944, - 0.010774551890790462, - 0.009539087302982807, - -0.024423185735940933, - -0.027596378698945045, - -0.007900470867753029, - -0.0001782076433300972, - 0.014409419149160385, - -0.017114436253905296, - -0.026230864226818085, - -0.02567165344953537, - 0.00608954019844532, - -0.0061545646749436855, - -0.03906669095158577, - 0.02344781719148159, - -0.024176092818379402, - 0.0038104329723864794, - 0.00376491597853601, - 0.02035265415906906, - -0.005657127592712641, - 0.04806607589125633, - 0.00245304754935205, - -0.02214732952415943, - 0.0020970385521650314, - -0.0028090563137084246, - -0.004899592604488134, - -0.03079558163881302, - 0.030249375849962234, - -0.00697712367400527, - 0.015475819818675518, - -0.0014671141980215907, - -0.0007437171880155802, - 0.005380773451179266, - 0.03253823518753052, - -0.024033037945628166, - -0.019351277500391006, - -0.023395799100399017, - -0.0379742793738842, - -0.012029523961246014, - 0.023486832156777382, - -0.00030216050799936056, - 0.010748541913926601, - -0.028038544580340385, - 0.00603101821616292, - 0.024670278653502464, - -0.002633490366861224, - -0.0013614494819194078, - -0.009265984408557415, - 0.0036998915020376444, - -0.015996014699339867, - 0.03175794333219528, - 0.013941243290901184, - -0.009090418927371502, - -0.012686271220445633, - -0.016243109479546547, - -0.015163702890276909, - -0.02209530957043171, - 0.03441094234585762, - -0.02188723161816597, - -0.005484812892973423, - -0.006583726033568382, - -0.004288362804800272, - -0.004655750934034586, - -0.002958612749353051, - 0.004541958216577768, - -0.008206086233258247, - 0.010358395054936409, - 0.0027944259345531464, - -0.005517324898391962, - -0.004327377304434776, - 0.0030528982169926167, - -0.03454098850488663, - 0.024293135851621628, - -0.0214320607483387, - -0.006834070198237896, - 0.040757328271865845, - -0.023603877052664757, - 0.01790773496031761, - 0.013772179372608662, - 0.004268855322152376, - 0.030769571661949158, - -0.002254722872748971, - 0.03334454074501991, - 0.011028147302567959, - -0.02030063420534134, - -0.014552473090589046, - -0.04013309255242348, - -0.01162637211382389, - -0.010475439950823784, - 0.009896721690893173, - -0.01610005460679531, - -0.008648252114653587, - -0.01829788088798523, - 0.0026464953552931547, - 0.01542380079627037, - 0.007081163115799427, - -0.0015996015863493085, - 0.04174569994211197, - 0.03105567954480648, - 0.00083718984387815, - -0.017491577193140984, - -0.001187509042210877, - -0.00413230387493968, - 0.0060082594864070415, - -0.004002254921942949, - -0.00468176044523716, - -0.004353387281298637, - -0.01372015941888094, - 0.015462814830243587, - 0.044086579233407974, - 1.9723238438018598e-05, - 0.02519047260284424, - -0.004363141022622585, - -0.0041973283514380455, - 0.0010981004452332854, - -0.017153451219201088, - 0.011658884584903717, - 0.028740808367729187, - -0.002220585010945797, - 0.022446440532803535, - 0.006560967303812504, - -0.018896106630563736, - 0.010013765655457973, - -0.01940329745411873, - 0.008388154208660126, - 0.01385020837187767, - 0.004698016680777073, - 0.0203266441822052, - -0.009818692691624165, - 0.004571218974888325, - 0.0027456574607640505, - 0.003165065310895443, - 0.011008639819920063, - 0.0062390961684286594, - -0.0026643769815564156, - -0.014396414160728455, - -0.005276734475046396, - -0.007185202091932297, - 0.008791306056082249, - 0.00937652587890625, - -0.0001593099150341004, - -0.015072667971253395, - -0.018453940749168396, - -0.004369643516838551, - -0.012341640889644623, - -0.01587897166609764, - 0.007367270532995462, - -0.03061351366341114, - 0.0034202863462269306, - 0.014448433183133602, - -0.0016662515699863434, - 0.019533345475792885, - -0.0030659029725939035, - -0.026621012017130852, - -0.0035340790636837482, - 0.026477957144379616, - -0.030483463779091835, - 0.01651621051132679, - 0.03976895660161972, - 0.0030902870930731297, - 0.017712661996483803, - 0.01923423260450363, - -0.006352889351546764, - -0.01768665201961994, - 0.023148706182837486, - -0.0009989382233470678, - -0.026048796251416206, - 0.011808441020548344, - -0.020014526322484016, - 0.011398786678910255, - -0.012660261243581772, - -0.0004828065575566143, - 0.020638762041926384, - 0.009682141244411469, - -0.015488824807107449, - -0.02052171714603901, - -0.017933744937181473, - 0.03300641104578972, - 0.00382343796081841, - -0.008563720621168613, - 0.05410034582018852, - -0.025580620393157005, - 0.02123698592185974, - 0.005822939798235893, - 0.013238978572189808, - -0.021054917946457863, - -0.018219852820038795, - -0.02253747545182705, - -0.00903839897364378, - 0.02811657451093197, - 0.0014256611466407776, - -0.004090038128197193, - 2.0485242202994414e-05, - -0.023955008015036583, - -0.02013157121837139, - 0.022173339501023293, - -7.330490916501731e-05, - 0.014461438171565533, - 0.004912597592920065, - 0.015072667971253395, - -0.014552473090589046, - 0.010800561867654324, - -0.0017182711744681, - -0.01551483478397131, - -0.0013289372436702251, - -0.0017459065420553088, - -0.042499981820583344, - 0.0007376211578957736, - -0.0071006701327860355, - 0.03188799321651459, - 0.0101633220911026, - -0.030457453802227974, - -0.018180837854743004, - 0.0043761455453932285, - -0.05077109485864639, - -0.01877906173467636, - 0.0002712738933041692, - -0.0052832369692623615, - 0.012647256255149841, - 0.016035029664635658, - -0.012257109396159649, - 0.03776620328426361, - 0.0024790572933852673, - 0.026061801239848137, - -0.021627133712172508, - -0.001926349475979805, - -0.011808441020548344, - -0.013121934607625008, - 0.03909270092844963, - 0.017491577193140984, - -0.019598370417952538, - -0.011652382090687752, - 0.017023401334881783, - 0.001591473468579352, - 0.001571153406985104, - 0.027778446674346924, - -0.001838566386140883, - 0.0044801849871873856, - -0.008739287033677101, - 0.010189332067966461, - -0.006404908839613199, - 0.020404674112796783, - 0.0017329016700387, - -0.045673176646232605, - 0.011997011490166187, - 0.02589273825287819, - -0.004389150533825159, - -0.02543756552040577, - -0.0007091729203239083, - 0.0067690457217395306, - -0.019169209524989128, - -0.006808060221374035, - 0.023811955004930496, - -0.039222750812768936, - -0.012705778703093529, - -0.017933744937181473, - 0.01833689585328102, - 0.005286488216370344, - 0.0038592014461755753, - 0.02006654627621174, - 0.008875837549567223, - -0.006730030756443739, - -0.019169209524989128, - 0.0031179224606603384, - -0.021262995898723602, - 0.0037389060016721487, - 0.015098677948117256, - 0.004506194498389959, - 0.02145806886255741, - -0.019819453358650208, - 0.01655522547662258, - -0.017127441242337227, - 0.006430918350815773, - -0.02790849469602108, - -0.014630502089858055, - -0.0036803840193897486, - 0.014175331220030785, - 0.018805071711540222, - -0.010989132337272167, - 0.018935121595859528, - -0.004867080133408308, - -0.025359537452459335, - -0.012133562937378883, - -0.009669136255979538, - 0.008472686633467674, - -0.026451947167515755, - -0.001862950623035431, - 0.014175331220030785, - -0.016646260395646095, - -0.010293371044099331, - -0.0016418674495071173, - 0.0045907264575362206, - -0.023824959993362427, - 0.017153451219201088, - 0.18747851252555847, - -0.010690020397305489, - -0.007276236545294523, - 0.011385781690478325, - -0.008778301067650318, - -0.01630813255906105, - 0.028688788414001465, - -0.005826191045343876, - -0.018011773005127907, - 0.019143199548125267, - -0.016438182443380356, - 0.018818076699972153, - 0.014760551042854786, - 0.0015719662187620997, - 0.012484694831073284, - -0.002058024052530527, - -0.04354037344455719, - 0.0027082685846835375, - 0.008966872468590736, - 0.02415008284151554, - 0.03128976747393608, - -0.01606103964149952, - 0.0009493569959886372, - -0.018701033666729927, - 0.034072812646627426, - 0.003508069319650531, - 0.003761664731428027, - -0.011567850597202778, - 0.028064554557204247, - 0.008063032291829586, - 0.0015784685965627432, - 0.005231217481195927, - 0.004675258416682482, - -0.01784271001815796, - 0.008459681645035744, - 0.0035340790636837482, - 0.030197355896234512, - -0.017725666984915733, - 0.018948126584291458, - 0.013330012559890747, - 8.864661504048854e-05, - -0.0075363339856266975, - -0.010742039419710636, - -0.017101431265473366, - -0.005227966234087944, - 0.017998768016695976, - -0.01162637211382389, - 0.0017052663024514914, - -0.007094168104231358, - -0.010455932468175888, - -0.0075363339856266975, - -0.012335139326751232, - 0.012777305208146572, - 0.043202247470617294, - -0.01193198747932911, - 0.0019523592200130224, - 0.013980257324874401, - -0.01723148114979267, - 0.007861456833779812, - -0.0032999911345541477, - -0.03287636488676071, - 0.029599132016301155, - -0.002787923440337181, - 0.017985763028264046, - -0.013577106408774853, - 0.0006725966813974082, - -0.031003659591078758, - 0.013219471089541912, - -0.003182946937158704, - 0.0026156087405979633, - -0.030483463779091835, - -0.017933744937181473, - -0.022693533450365067, - 0.02611382119357586, - -0.012881344184279442, - -0.014877595007419586, - 0.019143199548125267, - 0.0043858992867171764, - 0.023785945028066635, - 0.020885854959487915, - -0.019169209524989128, - 0.014110306277871132, - 0.01349907647818327, - -0.040757328271865845, - -0.0004161565157119185, - -0.04398253932595253, - 0.02299264632165432, - 0.010579478926956654, - -0.013811194337904453, - -0.018141822889447212, - -0.012114055454730988, - 0.010364897549152374, - 0.00629761815071106, - -0.013121934607625008, - 0.02096388302743435, - 0.0008282489725388587, - 0.008414164185523987, - 0.010729034431278706, - -0.00894736498594284, - 0.010794059373438358, - -0.005822939798235893, - 0.05763767659664154, - 0.03277232497930527, - -0.02658199705183506, - 0.005149936769157648, - 0.008719779551029205, - -0.01764763705432415, - 0.023265749216079712, - -0.003664128016680479, - -0.023590872064232826, - 0.0021376789081841707, - -0.03277232497930527, - 0.008895345032215118, - -0.0065999822691082954, - -0.008739287033677101, - 0.022706538438796997, - 0.0058294422924518585, - -0.015137692913413048, - -0.006678011268377304, - -0.027388300746679306, - -0.02456623874604702, - 0.0018889603670686483, - 0.012569227255880833, - -0.0008851453894749284, - 0.011723908595740795, - -0.027414308860898018, - -0.04247397184371948, - 0.007783426903188229, - -0.015449809841811657, - 0.004158313851803541, - 0.013447057455778122, - -0.02476131170988083, - -0.0026156087405979633, - 0.004161565098911524, - 0.003706393763422966, - 0.03014533594250679, - 0.012146567925810814, - -0.04957464337348938, - 0.008485691621899605, - 0.017530592158436775, - 0.011639377102255821, - -0.02438417077064514, - 0.009370023384690285, - -0.013356022536754608, - 0.01194499246776104, - -0.004704519174993038, - 0.005904220510274172, - -0.002672505099326372, - -0.020261619240045547, - -0.00894736498594284, - -0.00212467391975224, - -0.006161067169159651, - -0.00791347585618496, - -0.0133950375020504, - 0.026438942179083824, - 0.0030528982169926167, - -0.014786561019718647, - -0.02946908213198185, - 0.005738407839089632, - 0.01699739135801792, - -0.008882340043783188, - 0.010969625785946846, - -0.005595354363322258, - -0.020365659147500992, - -0.0039762454107403755, - 0.009636623784899712, - -0.16344547271728516, - 0.01095011830329895, - 0.016230104491114616, - -0.03802629932761192, - 0.01026736106723547, - 0.004034767393022776, - -0.00805652979761362, - -0.007380275521427393, - -0.0137461693957448, - -0.01127524022012949, - 0.03329252079129219, - -0.0011647505452856421, - -0.03526926413178444, - -0.009012388996779919, - -0.013694150373339653, - 0.004314372316002846, - -0.018596993759274483, - 0.03511320427060127, - 0.028948886319994926, - 0.014266365207731724, - 0.012900851666927338, - -0.03409882262349129, - 0.013050408102571964, - -0.007126680109649897, - 0.013538091443479061, - -0.009987755678594112, - -0.013212968595325947, - 0.0066389967687428, - 0.010351893492043018, - -0.019065169617533684, - -0.01240016333758831, - 0.0045907264575362206, - 0.027752436697483063, - -0.015683898702263832, - -0.0025522098876535892, - -0.004629740957170725, - 0.0067690457217395306, - -0.01785571500658989, - -0.013915233314037323, - 0.023577867075800896, - 0.037662163376808167, - -0.010299873538315296, - -0.013180457055568695, - 0.015488824807107449, - -0.032954394817352295, - 0.009890219196677208, - 0.007744412403553724, - 0.0043013677932322025, - -0.014019272290170193, - 0.003654374275356531, - 0.01782970502972603, - -0.003296739887446165, - -0.015475819818675518, - 0.010566473938524723, - 2.4434970328002237e-05, - 0.024670278653502464, - 0.0040185111574828625, - 0.0006205771351233125, - 0.007711900398135185, - -0.0028301894199103117, - -0.0008237785659730434, - -0.01104115229099989, - 0.0046329922042787075, - 0.014006267301738262, - 0.003914472181349993, - -0.012874841690063477, - 0.01126223523169756, - 0.016932368278503418, - -0.010559971444308758, - 0.013193462044000626, - -0.00155164604075253, - 0.0012127060908824205, - 0.012406665831804276, - 0.008375149220228195, - 0.00022616317437496036, - 0.0032723555341362953, - -0.0017394041642546654, - 0.0035926010459661484, - -0.005211709998548031, - -0.011808441020548344, - -0.03061351366341114, - 0.056857381016016006, - -0.026946133002638817, - -0.012549719773232937, - -0.02454022876918316, - -0.003228464163839817, - 0.0032999911345541477, - -0.0019572360906749964, - -5.811560549773276e-05, - 0.012556222267448902, - 0.004789051134139299, - -0.0221343245357275, - -0.03701191768050194, - -0.009461058303713799, - -0.0028464454226195812, - -0.019988516345620155, - 0.006440672092139721, - 0.005595354363322258, - -0.009916229173541069, - -0.03017134591937065, - 0.009012388996779919, - -0.010143814608454704, - -0.024657273665070534, - -0.004850824363529682, - 0.014773556031286716, - 0.018024777993559837, - -0.0053255027160048485, - 0.012315631844103336, - 0.03508719429373741, - -0.010514453984797001, - -0.014409419149160385, - -0.015384785830974579, - 0.018662018701434135, - -0.00407378189265728, - -0.007406285498291254, - 0.003062651725485921, - 0.017517587170004845, - -0.01372015941888094, - 0.002433540066704154, - -0.004340382292866707, - 0.023538852110505104, - -0.0067560407333076, - -0.032954394817352295, - 0.00304477009922266, - 0.005006882827728987, - -0.020950879901647568, - -0.08562420308589935, - 0.008394656702876091, - 0.007672885432839394, - 0.01541079580783844, - 0.026269879192113876, - 0.01362912543118, - -0.011788933537900448, - 0.020716790109872818, - 0.00100381497759372, - 0.012510704807937145, - -0.04936656355857849, - -0.02811657451093197, - -0.002048270311206579, - 0.00530274398624897, - 0.014851585030555725, - -0.03058750368654728, - -0.011879967525601387, - -0.024423185735940933, - -0.025866728276014328, - 0.031419817358255386, - 0.014786561019718647, - -0.014630502089858055, - -0.020807825028896332, - -0.02615283615887165, - -0.005130429286509752, - 0.004434667527675629, - -0.021770186722278595, - 0.015007643960416317, - 0.014474443159997463, - -0.006226091645658016, - 0.017257489264011383, - 0.002163688652217388, - 0.0058034323155879974, - -0.024904366582632065, - 0.014396414160728455, - 0.00469476543366909, - -0.0067430357448756695, - -0.026438942179083824, - 0.022888608276844025, - -0.03581546992063522, - 0.0004511071601882577, - 0.006388652604073286, - 0.035191234201192856, - -0.032928384840488434, - -0.0029504846315830946, - -0.013095924630761147, - -0.012543217279016972, - -0.0013037403114140034, - -0.004372894298285246, - -0.024735301733016968, - -0.037193987518548965, - -0.024501213803887367, - 0.010696522891521454, - 0.01284232921898365, - 0.006684513762593269, - 0.013447057455778122, - -0.002162063028663397, - -0.0038266892079263926, - -0.01318695954978466, - 0.0214320607483387, - -0.010969625785946846, - 0.014916609972715378, - -0.031861983239650726, - 0.03456699848175049, - 0.008141061291098595, - -0.007841949351131916, - -0.028636770322918892, - -0.0032024544198065996, - 0.0014232227113097906, - -0.03350059688091278, - -0.01383720338344574, - 0.005182448774576187, - -0.011704402044415474, - 0.0057189008221030235, - -0.02520347759127617, - 0.003485310822725296, - -0.024410180747509003, - -0.005319000221788883, - 0.008927857503294945, - -0.00793948583304882, - -0.024943379685282707, - -0.025775693356990814, - 0.020885854959487915, - -0.010195834562182426, - 0.020872849971055984, - 0.006060278974473476, - 0.002952110255137086, - -0.018883101642131805, - 0.011912479996681213, - -0.014656512066721916, - 0.02054772712290287, - -0.0008262169430963695, - 0.015449809841811657, - -0.008693769574165344, - 0.007042148150503635, - 0.011522333137691021, - -0.0004340382292866707, - 0.004619987215846777, - 0.01260824128985405, - 0.012562724761664867, - -0.022628510370850563, - -0.01148331817239523, - -0.04785799980163574, - 0.028038544580340385, - 0.010813566856086254, - -0.02275855839252472, - -0.012920359149575233, - -0.0014898728113621473, - 0.0020011274609714746, - 0.011977504007518291, - 0.0048215631395578384, - 0.009695146232843399, - 0.004184323828667402, - 0.023265749216079712, - 0.003982747904956341, - -0.011886470019817352, - -0.007133182603865862, - -0.008823818527162075, - -0.0006896656122989953, - 0.03378670662641525, - 0.003999003674834967, - -0.015787936747074127, - -0.019533345475792885, - -0.0003184166271239519, - -0.015579858794808388, - 0.01630813255906105, - -0.02321372926235199, - 0.008648252114653587, - -0.012803315185010433, - 0.0019539848435670137, - 0.004220087081193924, - -0.011671889573335648, - 0.002183196134865284, - -0.008745788596570492, - -0.011925484985113144, - -0.006762543227523565, - 0.004863829351961613, - -0.015241731889545918, - 0.007029143627732992, - 0.03906669095158577, - 0.0032951142638921738, - 0.07277537137269974, - -0.028948886319994926, - -0.019858468323946, - 0.010865585878491402, - -0.022212352603673935, - 0.001437040395103395, - -0.008908350020647049, - 0.011216718703508377, - 0.009831697680056095, - 0.014227350242435932, - -0.018636008724570274, - 0.039196740835905075, - 0.019364282488822937, - 0.01015031710267067, - -0.011587358079850674, - 0.012816320173442364, - -0.026972142979502678, - -0.00880431104451418, - 0.01115819625556469, - -0.0037681669928133488, - -0.01606103964149952, - 0.030483463779091835, - 0.008154066279530525, - 0.015904981642961502, - 0.010156819596886635, - 0.036751821637153625, - -0.02145806886255741, - -0.03084760159254074, - 0.003992501646280289, - 0.013063413091003895, - -0.03149784356355667, - -0.00949356984347105, - -0.01695837825536728, - 0.007438797503709793, - 0.03690788149833679, - -0.01385020837187767, - -0.008940862491726875, - 0.02366890199482441, - 0.00816056877374649, - 0.00884332600980997, - 0.01923423260450363, - 0.013551096431910992, - 0.02928701415657997, - -0.02054772712290287, - 0.0015939119039103389, - 0.018623003736138344, - 0.00680155772715807, - -0.005458802916109562, - -0.010787556879222393, - -0.02035265415906906, - -0.0008412538445554674, - 0.02391599491238594, - 0.002303491346538067, - -0.0021848217584192753, - -0.008953867480158806, - 0.018466945737600327, - 0.010852580890059471, - -0.0023701414465904236, - -0.01789472997188568, - 0.016256112605333328, - 0.03581546992063522, - 0.002890337025746703, - -0.0021181716583669186, - -0.012887846678495407, - -0.02167915366590023, - -0.012133562937378883, - 0.0137461693957448, - -0.002908218652009964, - -0.03235616907477379, - -0.013980257324874401, - 0.022004274651408195, - -0.023525847122073174, - 0.02503441460430622, - 0.008888842537999153, - -0.006635745521634817, - -0.011801938526332378, - 0.03438493236899376, - -0.0277264267206192, - -0.012010016478598118, - -0.018258865922689438, - 0.003725901246070862, - 0.014383409172296524, - 0.006456928327679634, - -0.008641749620437622, - -0.004740282893180847, - 0.021783191710710526, - 0.019377287477254868, - -0.0009558594902046025, - -0.003475557081401348, - 0.01741354912519455, - -0.011366274207830429, - 0.02593175135552883, - 0.00209053629077971, - -0.029417062178254128, - -0.014123311266303062, - -0.03311045095324516, - -0.013473066501319408, - 0.013538091443479061, - 0.033578626811504364, - 0.02052171714603901, - 0.09035798162221909, - 0.042760081589221954, - -0.002563589019700885, - 0.010904600843787193, - -0.011164698749780655, - 0.019338272511959076, - -0.001862950623035431, - 0.011925484985113144, - -0.002529451157897711, - -0.04986074939370155, - 0.0028464454226195812, - -0.00805652979761362, - 0.010325883515179157, - -0.04715573415160179, - -0.016906358301639557, - 0.016230104491114616, - 0.0024075303226709366, - 0.007120177615433931, - -0.003706393763422966, - 0.026061801239848137, - 0.027778446674346924, - -0.006382150109857321, - 0.024475203827023506, - 0.026738055050373077, - -0.0401851125061512, - -0.022030284628272057, - 0.019559355452656746, - -0.010514453984797001, - -0.014279370196163654, - 0.0049256025813519955, - -0.028246622532606125, - -0.004766292404383421, - -0.04999079927802086, - -0.010722532868385315, - 0.02811657451093197, - 0.00034036237047985196, - -0.007906973361968994, - -0.04000304266810417, - 0.007042148150503635, - -0.0014703654451295733, - 0.014227350242435932, - 0.004372894298285246, - -0.026712045073509216, - -0.030223365873098373, - -0.016867343336343765, - -0.01695837825536728, - -0.0023555108346045017, - -0.021354030817747116, - -0.02811657451093197 - ], - "sparse": "SparseEmbedding(values=array([1.39673879, 1.02316287, 1.96240533, 1.02316287, 1.84610342,\n 1.02316287, 1.02316287, 1.02316287, 0.66658776, 1.75215182,\n 0.66658776, 0.66658776, 1.65584443, 1.75215182, 0.66658776,\n 0.66658776, 2.02117352, 0.66658776, 1.65584443, 0.66658776,\n 1.70867306, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 1.02316287, 1.65584443, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 1.65584443, 0.66658776,\n 0.66658776, 1.02316287, 0.66658776, 0.66658776, 0.66658776,\n 2.00757474, 0.66658776, 0.66658776, 1.70867306, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 1.02316287,\n 0.66658776, 1.39673879, 0.66658776, 1.02316287, 1.02316287,\n 1.24519124, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 1.50676869, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 1.24519124,\n 1.02316287, 1.24519124, 1.02316287, 0.66658776, 1.02316287,\n 0.66658776, 0.66658776, 1.02316287, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 1.24519124, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 1.39673879,\n 0.66658776, 0.66658776, 1.39673879, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 1.02316287, 0.66658776, 0.66658776,\n 0.66658776, 1.24519124, 1.02316287, 1.02316287, 0.66658776,\n 1.39673879, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 1.02316287, 0.66658776, 1.02316287, 1.24519124, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 1.24519124, 0.66658776, 1.39673879, 0.66658776, 1.24519124,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 1.02316287,\n 0.66658776, 0.66658776, 1.24519124, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 1.39673879, 0.66658776,\n 0.66658776, 1.24519124, 0.66658776, 0.66658776, 1.02316287,\n 1.02316287, 1.02316287, 1.24519124, 1.02316287, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 1.02316287, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 1.02316287, 1.02316287,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 1.02316287, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 1.02316287, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 1.02316287, 0.66658776, 0.66658776,\n 1.02316287, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 1.02316287, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 1.02316287,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 1.02316287, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 1.02316287, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 1.02316287, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 1.02316287, 1.02316287, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 1.02316287,\n 0.66658776, 1.02316287, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776, 0.66658776, 0.66658776, 0.66658776, 0.66658776,\n 0.66658776]), indices=array([1810453357, 1691249474, 1109731834, 108945121, 47951928,\n 838945752, 915344176, 699825431, 975765490, 651773314,\n 506334517, 1785227261, 99212807, 1047604504, 1587158528,\n 1208028576, 164058840, 1140376922, 1638510030, 498496356,\n 1174634009, 258560089, 93438707, 1850420847, 1218324294,\n 1783291875, 2103309648, 311438388, 1398876242, 1495307869,\n 1501966315, 807526556, 1822615852, 1413554298, 748888480,\n 2137308367, 423733604, 488375650, 1093696873, 1732131204,\n 408270109, 571178080, 1946192279, 2124172637, 192302745,\n 1427900950, 555487974, 1088799695, 146333812, 400876399,\n 822399569, 641040124, 367467701, 808465105, 382187393,\n 428160610, 1591939066, 913724707, 318501217, 1030955491,\n 1582585314, 1102504127, 1121363733, 607287212, 1024670918,\n 1635435222, 1782143793, 132109433, 147047731, 1803932182,\n 1819996810, 1505037308, 1138540918, 147714150, 476704413,\n 1793743868, 1894123915, 742036956, 1081324513, 2058237543,\n 1911467613, 2038194400, 1066874362, 789330528, 834769235,\n 1169214655, 141823437, 999490782, 950628459, 1778304801,\n 265511938, 504370091, 205475750, 823974444, 1883614094,\n 1160767104, 1654882988, 1219901924, 197670987, 927751723,\n 82935738, 1055508231, 1975311753, 1381219851, 433708589,\n 2098979715, 500123114, 1669595920, 1434424779, 2135250061,\n 1818659887, 1073413113, 643934111, 1392079869, 540303681,\n 1066675059, 828667247, 893265301, 71239985, 28500618,\n 1515684580, 1362353402, 1553747220, 1744804570, 2106105284,\n 1282568013, 797211407, 1095274335, 1407327463, 1531476926,\n 1075837329, 2063101419, 1712457005, 1049975174, 1033482951,\n 2040456907, 1144702808, 553861595, 1885258611, 189842624,\n 231980230, 707979273, 1286817522, 37224978, 1082106827,\n 1717424474, 1680012685, 89823139, 333768011, 843816345,\n 1293336596, 1462510408, 1769347644, 1825892659, 912658635,\n 372990882, 1970084420, 1839611937, 338063690, 676854506,\n 1759735764, 1241890442, 2004181058, 984697402, 1505931685,\n 988198683, 1807920195, 2137593377, 1079921207, 516830072,\n 602572328, 516762017, 1817407415, 2077811411, 414090603,\n 198710382, 1764473430, 1569862925, 397244766, 1093290825,\n 311345964, 1972196547, 66322283, 777390559, 1754743405,\n 967119411, 1219669695, 1749031367, 798011118, 749129358,\n 637845195, 705826487, 1115513404, 1494156540, 1726718598,\n 1380383012, 1092081572, 766120536, 1394226660, 855741121,\n 1584422431, 2079643764, 119164318, 469326669, 693793127,\n 62221562, 1903781279, 1225409782, 1001381969, 617246313,\n 1425902633, 906021300, 1993503267, 2072446047, 807166244,\n 124322104, 1355181920, 686262413, 726769548, 769624815,\n 1484440301, 603353734, 190652800, 914356476, 2067298431,\n 720732358, 1953704466, 691794919, 2030516310, 1255579020,\n 1936173730, 151305406, 1627368638, 694434812, 1322447240,\n 1965475559, 444697724, 875915388, 482339917, 1964033376,\n 1971262126, 1980122787, 496086325, 649860119, 1742567733,\n 692459969, 1331803338, 1063399690, 472518677, 1737956964,\n 2003342940, 1126216074, 1820185893, 1195786455, 909246637,\n 685289368, 22476906, 376450507, 908425398, 1955583600,\n 993732989, 1167073666, 1406112700, 1354425271, 1736359995,\n 1617841679, 1291856360, 1599767248, 1827422926, 1090203479,\n 999597208, 100619008, 640494850, 959969231, 108859953,\n 673463665, 738624403, 1464642605, 391312375, 2063317649,\n 454272156, 1214749696, 145979375, 533594689, 1078043482,\n 2134972325, 1550900382, 499733850, 573762842, 131550712,\n 188536152, 1935340272, 1035540178, 617657993, 1918983413,\n 267025598, 991653233, 1661696679, 436011292, 191730296,\n 747406218, 812080723, 1692320747, 2087955258, 2124672130,\n 86021254, 1603606855, 1533870308, 1386751543, 1183504796,\n 2062423197, 52870164, 311286247, 1125382419, 2004579270,\n 766175632, 994276901, 1187567306, 502919461, 482341621,\n 255174557, 827577783, 1172383616, 819332622, 1841900287,\n 1231416528, 627407068, 1762295101, 983781286, 417709063,\n 897351732, 739092865, 2022840656, 1788212450, 1485265044,\n 220308237, 76479261, 419537214, 2046399687, 1880218938,\n 935122659, 1116117978, 1050229580, 1417744586, 1497566411,\n 2002512088, 250462830, 1071406278, 2024811619, 19522071,\n 1416371393]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 42, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 584 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000043.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000043.json deleted file mode 100644 index e93e6c297f30383d98b13c0d1b6d156c7e46c89e..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000043.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000043", - "content": "2 Theorieteil Dieses Kapitel dient der Einordnung des Themas dieser Bachelorarbeit in die aktuelle Thematik der Stadtentwicklung und hebt die Bedeutung der Ausweitung st\u00e4dtischen Gr\u00fcns hervor.", - "embedding": { - "dense": [ - 0.016835620626807213, - 0.0009836904937401414, - 0.005902142729610205, - -0.019067469984292984, - -0.018474029377102852, - 0.010946379043161869, - -0.03434208780527115, - 0.003213926451280713, - -0.01901586540043354, - -0.034032464027404785, - 0.0006039214786142111, - -0.005479639861732721, - -0.005266775842756033, - 0.009785301052033901, - 0.01268154475837946, - -0.022899024188518524, - 0.03287138789892197, - -0.017454862594604492, - -0.007592155598104, - 0.012088105082511902, - -0.008546818979084492, - -0.008250099606812, - 0.020176943391561508, - -0.01781608536839485, - -0.007082571741193533, - 0.019351288676261902, - 0.018641741946339607, - -0.03248436376452446, - -0.006005350034683943, - 0.007695362437516451, - -0.002738207345828414, - -0.01722264662384987, - -0.02408590354025364, - -0.004786218516528606, - -0.006611690390855074, - -0.009572437033057213, - 0.008708079345524311, - 0.0019399666925892234, - 0.018293417990207672, - 0.014668276533484459, - 0.0017077511874958873, - -0.013920026831328869, - 0.005640900693833828, - -0.03583858534693718, - -0.0029155940283089876, - 0.0036670691333711147, - 0.02131221815943718, - -0.01831921935081482, - -0.024627739563584328, - 0.01967380940914154, - 0.008579071611166, - 0.03821234405040741, - -0.013403992168605328, - -0.0033767998684197664, - -0.015300418250262737, - 0.005479639861732721, - -0.027607837691903114, - 0.011268900707364082, - -0.0035670874640345573, - -0.026227446272969246, - -0.008566169999539852, - -0.018151508644223213, - -0.01361040584743023, - -0.0032945568673312664, - -0.027685243636369705, - 0.009933661669492722, - -0.03361963853240013, - 0.0006901959422975779, - 0.00354451104067266, - -0.0038057533092796803, - 0.03460010513663292, - 0.015094004571437836, - 0.004454021342098713, - -0.019867323338985443, - 0.04012167081236839, - -0.003557411953806877, - -0.02098969742655754, - 0.003934761974960566, - 0.0013175002532079816, - 0.022447494789958, - 0.0030897557735443115, - -0.013571703806519508, - -0.035709578543901443, - 0.045204609632492065, - 0.01536492258310318, - 0.02711760625243187, - -0.0014981122221797705, - 0.024318119511008263, - -0.013791018165647984, - 0.006585888564586639, - 0.013662009499967098, - 0.019441595301032066, - 0.006824554409831762, - 0.01843532733619213, - -0.011017333716154099, - -0.010004616342484951, - -0.008140441961586475, - 0.004289535805583, - 0.025672709569334984, - -0.03777371346950531, - -0.012784751132130623, - 0.017132339999079704, - -0.00487329950556159, - -0.006473005749285221, - -0.029620371758937836, - -0.0009256366174668074, - 0.00419600447639823, - 0.011139892041683197, - 0.03488392382860184, - -0.0076631102710962296, - -0.015403625555336475, - 0.044507961720228195, - -0.0037412489764392376, - -0.017067836597561836, - 0.006792302243411541, - -0.013126623816788197, - 0.01403613481670618, - -0.008579071611166, - 0.011397908441722393, - -0.0028430267702788115, - 0.013300785794854164, - -0.014900492504239082, - 0.002485028002411127, - 0.00046201201621443033, - 0.009204762987792492, - 0.0038928340654820204, - -0.010501299053430557, - -0.010707712732255459, - -0.030394423753023148, - -0.022653907537460327, - -0.01590675860643387, - 0.012733147479593754, - 0.0019899574108421803, - 0.0015472967643290758, - -0.02532438561320305, - 0.018112806603312492, - -0.01620347797870636, - 0.013010515831410885, - -0.04334688559174538, - -0.04515300691127777, - -0.01148176472634077, - 0.010462597012519836, - -0.03258756920695305, - -0.02083488740026951, - 0.004176652990281582, - 0.016293784603476524, - 0.0035703126341104507, - 0.031994130462408066, - 0.001009492203593254, - -0.00983690470457077, - -0.012907309457659721, - -0.025027666240930557, - 0.0334390252828598, - 0.011546269059181213, - -0.0038928340654820204, - -0.006147259380668402, - -0.01839662529528141, - 0.0003033717512153089, - -0.022357188165187836, - -0.012887958437204361, - 0.03011060506105423, - -0.015571336261928082, - 0.011720430105924606, - 0.005092613864690065, - 0.026420958340168, - 0.0020093086641281843, - 0.01272024679929018, - 0.01911907270550728, - 0.01443606149405241, - -0.02258940413594246, - -0.023750482127070427, - 0.017648374661803246, - -0.03142649307847023, - 0.018590137362480164, - -0.012655742466449738, - 0.013545901514589787, - 0.0076115066185593605, - 0.006298844236880541, - -0.04646889492869377, - -0.009320870973169804, - -0.01865464262664318, - 0.01241062581539154, - 0.020009232684969902, - 0.03390345722436905, - -0.011636574752628803, - 0.023221546784043312, - 0.0252985842525959, - 0.008133991621434689, - 0.0034251781180500984, - 0.0006297231884673238, - 0.018590137362480164, - 0.005515117198228836, - 0.019738314673304558, - 0.010423894040286541, - -0.6415339112281799, - 0.007392192259430885, - 0.005418360698968172, - -0.027943260967731476, - 0.017841888591647148, - 0.019183577969670296, - 0.023415058851242065, - 0.018370823934674263, - 0.005740882363170385, - 0.022860322147607803, - -0.023234447464346886, - -0.01722264662384987, - -0.0008708079694770277, - -0.006124682724475861, - -0.01941579207777977, - -0.007792118936777115, - 0.005311928689479828, - -0.010649658739566803, - 0.019209379330277443, - 0.020963896065950394, - -0.016629207879304886, - 0.005644125863909721, - -0.011720430105924606, - 0.004495949484407902, - 0.020525267347693443, - 0.026472562924027443, - -0.006318195722997189, - -0.021737948060035706, - 0.008127541281282902, - 0.01544232852756977, - -0.00487329950556159, - 0.03000739775598049, - -0.017532266676425934, - 0.02638225629925728, - 0.045385222882032394, - 0.025272782891988754, - -0.01791929267346859, - 0.0006527028162963688, - 0.011546269059181213, - 0.011655925773084164, - -0.011101189069449902, - -0.015235913917422295, - -0.015506832860410213, - 0.012481581419706345, - 0.021583136171102524, - 0.006876157596707344, - 0.04892005771398544, - -0.014255449175834656, - -0.006314970552921295, - -0.0016134136822074652, - 0.0019206153228878975, - -0.011636574752628803, - 0.01352010015398264, - 0.003986365627497435, - 0.011339855380356312, - 0.018770750612020493, - 0.018241815268993378, - -0.007147075608372688, - -0.01487469021230936, - -0.019789917394518852, - -0.004234706982970238, - -0.003941212315112352, - -0.028149673715233803, - -0.025853320956230164, - -0.01620347797870636, - 0.031297482550144196, - -0.030497631058096886, - -0.005369982682168484, - 0.013223380781710148, - -0.016113173216581345, - -0.018641741946339607, - 0.013507199473679066, - -0.00355418655090034, - -0.009411176666617393, - 0.013971630483865738, - 0.010791568085551262, - 0.018641741946339607, - -0.0010917352046817541, - -0.025117972865700722, - 0.020847788080573082, - -0.006553636398166418, - -0.013087921775877476, - -0.011359206400811672, - 0.013094372116029263, - 0.043450091034173965, - -0.03625141456723213, - -0.03924441337585449, - -0.0078050196170806885, - -0.0023721454199403524, - 0.006618140731006861, - 0.023995596915483475, - 0.020628472790122032, - -0.02851089835166931, - -0.000216694112168625, - -0.00560219818726182, - 0.04892005771398544, - -0.0019593180622905493, - 0.046159274876117706, - 0.01821601204574108, - -0.046081867069005966, - -0.006366573739796877, - -0.005689278710633516, - 0.012687995098531246, - -0.0033348719589412212, - -0.006895509082823992, - 0.004089572466909885, - 0.006676194258034229, - 0.007598605938255787, - 0.03991525620222092, - -0.023737579584121704, - 0.014255449175834656, - 0.0033767998684197664, - -0.012455779127776623, - 0.004392742644995451, - -0.02719501033425331, - -0.02306673489511013, - 0.02602103166282177, - -0.015339121222496033, - 0.024718046188354492, - 0.02087358944118023, - 0.016990430653095245, - 0.005647351033985615, - 0.02080908603966236, - -0.028743114322423935, - -0.015493931248784065, - 0.01975121535360813, - -0.020099537447094917, - 0.0016964629758149385, - -0.040353886783123016, - -0.011636574752628803, - 0.003350998042151332, - 0.005531243048608303, - 0.053925588726997375, - -0.0002004672569455579, - 0.03310360386967659, - -0.008630674332380295, - 0.013894225470721722, - -0.01704203523695469, - -0.004444345831871033, - -0.023273149505257607, - -0.016951728612184525, - -0.011514016427099705, - 0.01809990592300892, - -0.03730928525328636, - -0.01777738332748413, - -0.03927021473646164, - -0.0026769281830638647, - 0.005879566539078951, - -0.02956876903772354, - 0.027143407613039017, - -0.02197016216814518, - -0.004915227182209492, - -0.014345754869282246, - -0.004679786507040262, - 0.01115279272198677, - 0.00651493389159441, - 0.0068181040696799755, - -0.012984714470803738, - -0.008366206660866737, - -0.01628088392317295, - 0.01063675805926323, - 0.027582036331295967, - -0.038418758660554886, - -0.0006962432526051998, - -0.0321231372654438, - 0.005389333702623844, - -0.0029381706845015287, - 0.013533000834286213, - -0.023750482127070427, - -0.034471094608306885, - 0.0006398019613698125, - -0.014294151216745377, - -0.010856072418391705, - -0.014281250536441803, - -0.03266497328877449, - -0.02693699300289154, - -0.02342795953154564, - -0.022641006857156754, - -0.004831371828913689, - -0.013765216805040836, - 0.009649842046201229, - 0.0003271577297709882, - -0.0020786509849131107, - 3.880336407746654e-06, - 0.010359389707446098, - -0.009475680999457836, - 0.015210112556815147, - 0.005073262844234705, - 0.008017883636057377, - 0.01879655197262764, - 0.008398459292948246, - 0.05299672856926918, - -0.017325853928923607, - 0.003305845195427537, - -0.012687995098531246, - 0.0058473143726587296, - -0.0022157225757837296, - 0.010604506358504295, - -0.027969062328338623, - 0.01751936599612236, - 0.0405086986720562, - 0.006631041411310434, - 0.016526000574231148, - 0.0030607287771999836, - 0.005608648527413607, - -0.018112806603312492, - 0.003305845195427537, - 0.005673152860254049, - 0.02420201152563095, - -0.011675277724862099, - 0.025492096319794655, - -0.016177676618099213, - -0.039657238870859146, - -0.0009635328897275031, - 0.009385375306010246, - 0.03485812246799469, - -0.011236648075282574, - 0.0014723105123266578, - -0.01678401790559292, - -0.008675827644765377, - 0.007308336440473795, - 0.006798752583563328, - 0.012030051089823246, - -0.0017222646856680512, - -0.03795432671904564, - 0.004231481812894344, - 0.011262449435889721, - 0.004237932153046131, - 0.008295251987874508, - -0.01945449598133564, - -0.012294518761336803, - 0.02853669971227646, - -0.011597871780395508, - 0.0009522446198388934, - -0.00585698988288641, - -0.003392925951629877, - 0.01377811748534441, - -0.026253247633576393, - 0.018074102699756622, - 0.004112148657441139, - 0.01590675860643387, - 0.025311484932899475, - -0.0013150812592357397, - -0.018306318670511246, - 0.03145229443907738, - -0.007301886100322008, - 0.02430521883070469, - 0.03723187744617462, - -0.009953012689948082, - 0.01835792139172554, - -0.014939194545149803, - 0.004428219981491566, - 0.012778300791978836, - -0.02657577022910118, - 0.03011060506105423, - -0.008727431297302246, - 0.008637124672532082, - -0.007624407764524221, - 0.022215278819203377, - 0.025814618915319443, - -0.0054731895215809345, - 0.008862890303134918, - 0.0021399299148470163, - -0.01091412641108036, - -0.011462412774562836, - -1.5067799722601194e-05, - -0.013803918845951557, - 0.0003209088754374534, - -0.02255070209503174, - -0.0038089784793555737, - 0.017183944582939148, - 0.0021737946663051844, - 0.01014652568846941, - 0.011862339451909065, - -0.005531243048608303, - -0.009624040685594082, - 0.008482314646244049, - 0.0065278345718979836, - 0.0034445293713361025, - -0.0004051676078233868, - -0.02438262291252613, - -0.00271885609254241, - -0.020318852737545967, - 0.03441949188709259, - -0.0048249210231006145, - -0.01795799471437931, - 0.0006224664393812418, - 0.014823086559772491, - -0.02149283140897751, - 0.002438262337818742, - -0.014681177213788033, - -0.007966279983520508, - -0.02160893939435482, - -0.008804836310446262, - -0.008533918298780918, - -0.018590137362480164, - 0.013597505167126656, - -0.002568883588537574, - 0.011326953768730164, - -0.0076631102710962296, - 0.0050184340216219425, - -0.027091803029179573, - -0.008230747655034065, - -0.011172143742442131, - 0.03547736257314682, - 0.010198129341006279, - -0.02098969742655754, - -0.001272347173653543, - -0.006208538543432951, - -0.02095099538564682, - -0.014913393184542656, - -0.010023967362940311, - -3.3291523777734255e-06, - 0.0018754623597487807, - -0.01173333078622818, - 0.002831738442182541, - 0.007366390433162451, - 0.0029236571863293648, - 0.04143755882978439, - -0.0043540396727621555, - 0.009011249989271164, - -0.0440177321434021, - 0.0013973242603242397, - 0.028743114322423935, - 0.056299347430467606, - 0.027607837691903114, - 0.001991569995880127, - 0.017506465315818787, - 0.009585337713360786, - -0.018409525975584984, - 0.016087371855974197, - -0.022279784083366394, - 0.004037968814373016, - -0.009353122673928738, - -0.00470881350338459, - -0.00850166566669941, - 0.024769648909568787, - -0.0037122222129255533, - 0.008591972291469574, - 0.01164302509278059, - 0.0032219896093010902, - -0.0027559460140764713, - 0.015068203210830688, - 0.002928494941443205, - -0.006208538543432951, - -0.0005051492480561137, - -0.004418544005602598, - 0.013945828191936016, - 0.009256366640329361, - -0.005931169725954533, - 0.04817180708050728, - 0.008114640600979328, - -0.0049507045187056065, - -0.0252985842525959, - -0.0045475526712834835, - 0.03263917192816734, - 0.009856256656348705, - 0.02380208484828472, - -0.04316627234220505, - 0.027349820360541344, - 0.012288068421185017, - -0.009249916300177574, - 0.030213812366127968, - 0.005070037674158812, - 0.015545534901320934, - 0.0015319769736379385, - 0.010739965364336967, - -0.020241446793079376, - 0.016487298533320427, - -0.016113173216581345, - 0.0015303643885999918, - 0.021105805411934853, - -0.008991898968815804, - -0.024614838883280754, - 0.008521017618477345, - -0.017945094034075737, - -0.027736846357584, - -0.0032123138662427664, - 0.01682271994650364, - -0.019686710089445114, - 0.017235547304153442, - 0.006418177392333746, - 0.025105072185397148, - -0.010578704066574574, - -0.021479930728673935, - -0.040095869451761246, - -0.01598416455090046, - -0.02434392087161541, - 0.014952095225453377, - -0.023182842880487442, - -0.03000739775598049, - -0.00901770032942295, - -0.0312458798289299, - -0.003305845195427537, - 0.03328421711921692, - -0.01843532733619213, - -0.008095288649201393, - -0.011339855380356312, - 0.04236641898751259, - 0.003621916053816676, - 0.009914309717714787, - -0.008327504619956017, - -0.0019206153228878975, - 0.005744107533246279, - -0.016435693949460983, - -0.030858853831887245, - -0.013829721137881279, - -0.017751581966876984, - -0.0071922289207577705, - 0.00039770928560756147, - -0.01953190006315708, - -0.010365840047597885, - 0.008250099606812, - 0.029981596395373344, - -0.003460655454546213, - -0.024240713566541672, - 0.006476231385022402, - 0.00021548465883824974, - -0.019583504647016525, - -0.0014932744670659304, - 0.011159243062138557, - 0.004247607663273811, - 0.022395890206098557, - -0.015223013237118721, - 0.008108190260827541, - 0.014706979505717754, - -0.013765216805040836, - -0.0009957849979400635, - 0.018809452652931213, - 0.014990798197686672, - -0.01799669861793518, - 0.0001941176160471514, - -0.003931536804884672, - 0.01795799471437931, - 0.029388155788183212, - -0.022511998191475868, - 0.01759677194058895, - 0.012726697139441967, - 0.0014287701342254877, - 0.030497631058096886, - 0.016448594629764557, - 0.008314603939652443, - 0.046959128230810165, - -0.023337652906775475, - -0.004292760975658894, - -0.02145412750542164, - 0.04375971481204033, - 0.01889975741505623, - 0.006253691390156746, - 0.010507749393582344, - 0.009075754322111607, - 0.02358276955783367, - -0.020705878734588623, - -0.007282535079866648, - -0.015713246539235115, - 0.005589297041296959, - 0.007198679260909557, - -0.009959463030099869, - -0.022176576778292656, - 0.009333771653473377, - -0.005060361698269844, - 0.00033562391763553023, - -0.0167195126414299, - -0.014771483838558197, - -0.019686710089445114, - -0.0025850096717476845, - 0.0053248293697834015, - 0.02073168009519577, - 0.005024884361773729, - -0.028330286964774132, - -0.014848888851702213, - 0.00708902208134532, - 0.003476781537756324, - 0.02565980888903141, - -0.015106906183063984, - -0.00017980572010856122, - -0.016448594629764557, - 0.02208627015352249, - -0.0002858346560969949, - -0.02145412750542164, - 0.019944727420806885, - -0.038160741329193115, - 0.016216380521655083, - 0.005321604199707508, - 0.02544049359858036, - 0.010894775390625, - 0.022460395470261574, - 0.005927944555878639, - -0.0020302727352827787, - -0.005044235847890377, - -0.00904995296150446, - -0.0026575769297778606, - -0.021699244156479836, - 0.046365685760974884, - 0.008895142003893852, - 0.0065729874186217785, - 0.0057795848697423935, - 0.013042768463492393, - 0.006269817240536213, - 0.019815718755126, - -0.02869150973856449, - -0.01288150716573, - -0.0075276512652635574, - -0.0001405992079526186, - -0.027788450941443443, - 0.010991531424224377, - 7.967288547661155e-05, - 0.011630124412477016, - -0.029465561732649803, - -0.009540185332298279, - 0.013907126151025295, - 0.01082382071763277, - -0.013803918845951557, - -0.004579804837703705, - 0.02102839946746826, - -0.028304483741521835, - 0.024898657575249672, - 0.030239613726735115, - 0.00619563739746809, - 0.005424811039119959, - -0.003941212315112352, - -0.015958363190293312, - -0.011978447437286377, - 0.03898639604449272, - 0.015635840594768524, - 0.005266775842756033, - 0.006147259380668402, - -0.01809990592300892, - 0.007798569276928902, - -0.0028414141852408648, - 0.010011066682636738, - -0.016126073896884918, - 0.004334688652306795, - -0.0004071833682246506, - 0.006992265582084656, - -0.013662009499967098, - -0.0010272308718413115, - -0.02051236480474472, - 0.01911907270550728, - -0.012210663408041, - -0.019970528781414032, - 0.022537801414728165, - 0.004886200185865164, - 0.009862706996500492, - 0.023556968197226524, - -0.013365290127694607, - 0.0299299918115139, - -0.0010586767457425594, - 0.02504056692123413, - 0.0061988625675439835, - -0.03116847574710846, - -0.027762647718191147, - -0.014977897517383099, - 0.0068632569164037704, - -0.017764482647180557, - 0.01096573006361723, - -0.0009207988041453063, - -0.029826786369085312, - -0.007605056278407574, - 0.004318562336266041, - 0.024550333619117737, - -0.005195820704102516, - -0.007746965624392033, - 0.02536308951675892, - 0.030497631058096886, - -0.007630858104676008, - 0.0007369615486823022, - 0.0070438687689602375, - -0.014087737537920475, - 0.008159792982041836, - 0.018706245347857475, - -0.000922411389183253, - -0.00850166566669941, - 0.0071406252682209015, - 0.0018561111064627767, - 0.020460762083530426, - 0.0019899574108421803, - 0.029465561732649803, - -0.004841047339141369, - -0.023518266156315804, - -0.018590137362480164, - -0.02470514550805092, - -0.013197578489780426, - 0.01949319802224636, - 0.008837088011205196, - 0.04254703223705292, - 0.00932732131332159, - -0.026033934205770493, - 0.014758582226932049, - 0.0022221729159355164, - -0.0034316284582018852, - 0.003154260106384754, - 0.011830087751150131, - 0.029439760372042656, - 0.005576396360993385, - 0.0009095105342566967, - -0.003773501142859459, - 0.019389990717172623, - 0.02171214483678341, - 0.005869891028851271, - -0.002344731008633971, - -0.030575035139918327, - -0.01478438451886177, - -0.016809819266200066, - 0.013894225470721722, - 0.014100639149546623, - -0.012933110818266869, - -0.010191679000854492, - -0.005927944555878639, - -0.013803918845951557, - -0.02466644160449505, - -0.009901409037411213, - 0.017906391993165016, - -0.022279784083366394, - 0.0033574486151337624, - 0.0004966830601915717, - 0.001456184429116547, - 0.02701439894735813, - -0.020447861403226852, - -0.010572253726422787, - 0.00039287147228606045, - 0.030317017808556557, - -0.018886856734752655, - 0.011688178405165672, - 0.010223930701613426, - -0.007688912097364664, - 0.0030462152790278196, - 0.017429061233997345, - -0.012623490765690804, - -0.02565980888903141, - 0.04409513622522354, - -0.015261716209352016, - -0.023776283487677574, - -0.0006522996700368822, - -0.01049484871327877, - -0.0036960961297154427, - -0.018964262679219246, - 0.004737840499728918, - 0.004744290839880705, - -0.0059892237186431885, - 0.004528201650828123, - -0.00470881350338459, - -0.02825288102030754, - 0.039321817457675934, - 0.013674910180270672, - -0.030936259776353836, - 0.03968304023146629, - -0.015790650621056557, - 0.019828619435429573, - 0.008579071611166, - -0.007875974290072918, - -0.014345754869282246, - -0.032097335904836655, - -0.009301519021391869, - -0.037902723997831345, - 0.012920210137963295, - -0.021686343476176262, - -0.004092797636985779, - 0.002912368858233094, - -0.023556968197226524, - -0.012746048159897327, - 0.005224847700446844, - 0.009682094678282738, - 0.000837749510537833, - 0.002360857091844082, - -0.004376616328954697, - -0.01202360074967146, - 0.01235257275402546, - -0.010778667405247688, - 0.000857100822031498, - 0.001415062928572297, - -0.0023511815816164017, - -0.04332108423113823, - 0.0029043059330433607, - -0.017506465315818787, - 0.018087003380060196, - 0.012539634481072426, - -0.040095869451761246, - -0.004576579667627811, - 0.011288251727819443, - -0.035786982625722885, - -0.01708073727786541, - 0.010507749393582344, - -0.010340038686990738, - 0.005898917559534311, - 0.009527284651994705, - -0.005092613864690065, - 0.008733881637454033, - -0.009030601009726524, - 0.007050319574773312, - -0.025388890877366066, - -0.005408685188740492, - -0.006811653729528189, - -0.008462963625788689, - 0.020705878734588623, - -0.0002691038534976542, - -0.01839662529528141, - -0.01945449598133564, - 0.02083488740026951, - 0.005589297041296959, - 0.009572437033057213, - 0.01492629386484623, - -0.006211763713508844, - 0.006140809040516615, - -0.015829354524612427, - 0.014590871520340443, - -0.008940295316278934, - 0.013932927511632442, - 0.018964262679219246, - -0.027401424944400787, - 0.005137767177075148, - 0.015687445178627968, - 0.001699688145890832, - -0.030936259776353836, - -0.002233461244031787, - -0.017454862594604492, - -0.012823454104363918, - 0.0020318853203207254, - 0.005179694853723049, - -0.023531166836619377, - -0.011694628745317459, - 0.002001245738938451, - 0.026369355618953705, - 0.017312953248620033, - 0.002834963845089078, - 0.006192412227392197, - 0.02591782622039318, - -0.006934211589396, - -0.020925194025039673, - 0.013339487835764885, - -0.02704020030796528, - -0.0017367781838402152, - 0.003030089195817709, - -0.013997431844472885, - 0.041411757469177246, - -0.02446002885699272, - 0.0032848811242729425, - -0.02390529215335846, - 0.01173333078622818, - -0.009133808314800262, - -0.007359940093010664, - -0.0046281833201646805, - -0.0020109214819967747, - 0.026885390281677246, - 0.007037418428808451, - 0.003754149889573455, - 0.008901592344045639, - 0.0145263671875, - 0.002772072097286582, - -0.010610956698656082, - -0.004399192985147238, - -0.02719501033425331, - -0.008462963625788689, - -0.004592705983668566, - 0.0008667764486745, - 0.013984531164169312, - -0.007617956958711147, - -0.013597505167126656, - -0.034290481358766556, - 0.01664210855960846, - 0.19382250308990479, - -0.002102839993312955, - 0.0033832502085715532, - 0.010294885374605656, - -0.019428692758083344, - -0.007630858104676008, - 0.026782182976603508, - -0.005657026544213295, - -0.004537877161055803, - 0.017893491312861443, - -0.021763749420642853, - 0.005082938354462385, - 0.009894958697259426, - -0.001709363772533834, - 0.009424077346920967, - -0.028459295630455017, - -0.03204573318362236, - -0.00988850835710764, - 0.019648008048534393, - 0.017067836597561836, - 0.019699610769748688, - -0.021699244156479836, - -0.0024060101713985205, - -0.007837272249162197, - 0.02420201152563095, - -0.010572253726422787, - -0.012384824454784393, - 0.008256549946963787, - 0.021557334810495377, - 0.012546085752546787, - 0.010082021355628967, - -0.00946923065930605, - 0.019028766080737114, - 0.003850906388834119, - -0.0073341382667422295, - 0.003068791702389717, - 0.027582036331295967, - -0.02514377422630787, - 0.029542967677116394, - -0.0032461786177009344, - 0.001410225173458457, - -0.013636208139359951, - -0.014577970840036869, - -0.008288801647722721, - 0.0052119470201432705, - 0.03263917192816734, - -0.02175084874033928, - 0.005350631196051836, - 0.0011820412473753095, - -0.0025511449202895164, - -0.02033175341784954, - -0.011410810053348541, - 0.02095099538564682, - 0.03573537990450859, - -0.006082755047827959, - -0.003689645556733012, - 0.017803184688091278, - -0.017158143222332, - -0.002457613591104746, - -0.0023463438265025616, - -0.02438262291252613, - 0.03222634643316269, - -0.008920944295823574, - 0.026627372950315475, - -0.011759133078157902, - 0.006508483551442623, - -0.0017851563170552254, - 0.015481030568480492, - 0.004899101331830025, - -0.017648374661803246, - 0.008256549946963787, - -0.025130873546004295, - -0.011881691403687, - 0.01403613481670618, - -0.019480297341942787, - -0.015313319861888885, - 0.028407691046595573, - -0.005476414691656828, - 0.020925194025039673, - 0.02105420082807541, - -0.022692611441016197, - 0.004576579667627811, - 0.0022511999122798443, - -0.043011464178562164, - 0.004221806302666664, - -0.0523516871035099, - 0.021286416798830032, - 0.011965546756982803, - -0.015223013237118721, - -0.032535966485738754, - -0.01975121535360813, - -0.007501849438995123, - 0.008217846974730492, - -0.019170675426721573, - 0.02386658824980259, - 0.002122191246598959, - 0.008217846974730492, - 0.04572064429521561, - -0.010094922035932541, - 0.03047182783484459, - -0.01553263422101736, - 0.07652789354324341, - 0.03470331057906151, - -0.021183209493756294, - -0.014100639149546623, - 0.007637308444827795, - -0.02149283140897751, - 0.030523432418704033, - 0.008869340643286705, - -0.010230381041765213, - -0.004499174654483795, - -0.012817003764212132, - 0.008849989622831345, - 0.004966830834746361, - 0.01919647864997387, - 0.017029134556651115, - 0.011172143742442131, - -0.00741799408569932, - -0.000501117727253586, - -0.017609672620892525, - -0.0202543493360281, - 0.00652460940182209, - 0.0032639172859489918, - 0.0062504662200808525, - 0.014061936177313328, - -0.0035380604676902294, - -0.02274421416223049, - -0.009024150669574738, - -0.008508116006851196, - -0.005769909359514713, - 0.007811469957232475, - -0.029026933014392853, - -0.0030413775239139795, - 0.02288612350821495, - -0.012597688473761082, - 0.01941579207777977, - -0.0034058268647640944, - -0.023531166836619377, - -0.003480006707832217, - 0.001219131168909371, - 0.025337286293506622, - -0.005676378030329943, - -0.032432761043310165, - -0.012778300791978836, - 0.0002004672569455579, - -0.011565620079636574, - -0.006908409763127565, - 0.007314786780625582, - -0.013713613152503967, - -0.026627372950315475, - 0.005963421892374754, - -0.01813860796391964, - 0.0010231994092464447, - -0.026472562924027443, - 0.026150040328502655, - -0.00618596188724041, - -0.0076631102710962296, - -0.023931093513965607, - 0.001352171297185123, - 0.015416526235640049, - -0.0026640272699296474, - 0.010327138006687164, - 0.005337730515748262, - -0.02149283140897751, - -0.016887225210666656, - 0.004441120661795139, - -0.16244761645793915, - 0.011842988431453705, - 0.010243281722068787, - -0.03503873199224472, - 0.01588095724582672, - -0.005102289840579033, - 0.01740325801074505, - 0.004244382493197918, - -0.009030601009726524, - 0.019157774746418, - 0.04218580946326256, - 0.020047934725880623, - -0.027762647718191147, - 0.003399376291781664, - -0.004870074335485697, - 0.008695178665220737, - -0.024589037522673607, - -0.004821695853024721, - 0.023402158170938492, - 0.013584604486823082, - 0.003126845695078373, - -0.017132339999079704, - 0.019467396661639214, - 0.012217113748192787, - -0.0010659334948286414, - 0.009495032019913197, - -0.013674910180270672, - 0.0252985842525959, - 0.00801143329590559, - -0.02095099538564682, - -0.005766683723777533, - 0.015610039234161377, - 0.025892022997140884, - -0.003947662655264139, - 0.01656470261514187, - -0.00010224938887404278, - 0.0024334245827049017, - 0.002136704744771123, - -0.004363715648651123, - 0.00794047862291336, - 0.02175084874033928, - -0.015313319861888885, - -0.013326587155461311, - -0.012500932440161705, - -0.021699244156479836, - 0.013636208139359951, - 0.005131316836923361, - 0.014281250536441803, - -0.003118782537057996, - -0.026395156979560852, - 0.008895142003893852, - -0.0031832868698984385, - -0.016293784603476524, - -0.0010473885340616107, - 0.004334688652306795, - 0.02434392087161541, - -0.01342979446053505, - 0.019983431324362755, - -0.0005563495215028524, - 0.03537415340542793, - 0.005498990882188082, - -0.009211213327944279, - 0.0029446210246533155, - 0.007785668130964041, - -0.012597688473761082, - -0.023015132173895836, - -0.0006631847936660051, - 0.010959279723465443, - -0.017183944582939148, - -0.002568883588537574, - -0.004495949484407902, - -0.007476047612726688, - 0.009720797650516033, - -0.008075937628746033, - -0.007746965624392033, - -0.0051667941734194756, - -0.0018625615630298853, - -0.010036868043243885, - -0.006063403561711311, - 0.004424994811415672, - 0.005373207852244377, - 0.0444563589990139, - -0.015958363190293312, - -0.02434392087161541, - 0.0013408829690888524, - 0.0041573019698262215, - -0.0003144584479741752, - -0.0016916251042857766, - 0.02400849759578705, - -0.017054935917258263, - 0.01875784806907177, - -0.050055332481861115, - -0.03000739775598049, - -0.01839662529528141, - 0.001791606773622334, - 0.009333771653473377, - 0.009611140005290508, - 0.006676194258034229, - -0.005792485550045967, - -0.01949319802224636, - 0.011688178405165672, - -0.0043379138223826885, - -0.037464093416929245, - -0.0031236205250024796, - -0.0005301446653902531, - 0.024472929537296295, - -0.003276818199083209, - 0.011655925773084164, - 0.03594179451465607, - -0.0022415241692215204, - -0.010372290387749672, - -0.010610956698656082, - 0.004886200185865164, - 0.0028527025133371353, - 0.005840864032506943, - 0.006208538543432951, - 0.01202360074967146, - -0.002738207345828414, - 0.010778667405247688, - 0.0059730978682637215, - 0.0470881350338459, - 0.01361040584743023, - -0.03320680931210518, - 0.027504630386829376, - 0.01937709003686905, - -0.026962794363498688, - -0.07843722403049469, - 0.004315337166190147, - 0.017209745943546295, - 0.014539267867803574, - 0.019841520115733147, - 0.018925560638308525, - -0.003563862293958664, - -0.00808238796889782, - 0.0031042692717164755, - 0.015158508904278278, - -0.04554003104567528, - -0.029465561732649803, - -0.009953012689948082, - -0.007753416430205107, - 0.016887225210666656, - -0.0046281833201646805, - 0.002223785500973463, - -0.01120439637452364, - -0.019080370664596558, - 0.02288612350821495, - 0.024653540924191475, - -0.011617223732173443, - -0.012217113748192787, - -0.019480297341942787, - -0.023789184167981148, - 0.006466555409133434, - -0.019815718755126, - 0.009095105342566967, - 0.02974938042461872, - -0.0032026381231844425, - 0.023157041519880295, - -0.01849983260035515, - 0.017416158691048622, - -0.02825288102030754, - 0.035890188068151474, - -0.001781931146979332, - -0.014410259202122688, - -0.001123181078583002, - 0.011765583418309689, - -0.02478254958987236, - -0.014577970840036869, - 0.005137767177075148, - 0.031194277107715607, - -0.025969428941607475, - -0.024769648909568787, - -0.009946562349796295, - -0.02446002885699272, - -0.021144507452845573, - 0.024472929537296295, - -0.02667897567152977, - -0.02817547507584095, - 0.0013771667145192623, - 0.008301702328026295, - -0.0018948136130347848, - -0.005702179856598377, - -0.01051419973373413, - -0.00997881405055523, - -0.002083488740026951, - 0.0012949237134307623, - 0.0028188377618789673, - 0.004412093665450811, - -0.005979548208415508, - -0.025414692237973213, - 0.008546818979084492, - 0.002486640587449074, - 0.010894775390625, - -0.030420225113630295, - -0.01963510736823082, - -0.007934028282761574, - -0.02649836428463459, - -0.009875607676804066, - 0.007695362437516451, - 0.007198679260909557, - 0.0027543334290385246, - -0.022537801414728165, - -0.011339855380356312, - -0.04236641898751259, - -0.012178410775959492, - -0.0026091986801475286, - -0.01722264662384987, - -0.0246406402438879, - -0.028820518404245377, - 0.02412460558116436, - -0.011288251727819443, - 0.033929258584976196, - 0.0035509613808244467, - -0.002344731008633971, - -0.013223380781710148, - 0.02897532843053341, - -0.014190944842994213, - 0.020718779414892197, - 0.0020125340670347214, - 0.025195376947522163, - -0.017764482647180557, - 0.0029591345228254795, - 0.004637858830392361, - 0.01773868128657341, - 0.008675827644765377, - 0.004747516009956598, - -0.00036283666850067675, - -0.008275900967419147, - -0.0387541800737381, - -0.05609293282032013, - 0.017583871260285378, - 0.0076631102710962296, - -0.01412644051015377, - -0.013178227469325066, - 0.0004567710275296122, - 0.013113723136484623, - 0.0065117087215185165, - -0.0037702759727835655, - -0.01435865554958582, - 0.006934211589396, - 0.0039121853187680244, - 0.013881323859095573, - -0.008230747655034065, - -0.027272416278719902, - -0.029955795034766197, - 0.02138962410390377, - 0.029955795034766197, - 0.001922228024341166, - 0.011159243062138557, - -0.01686142198741436, - -0.010004616342484951, - 0.030265415087342262, - 0.022124972194433212, - -0.027091803029179573, - -0.0033219712786376476, - -0.011423710733652115, - -0.011262449435889721, - -0.007521200925111771, - -0.022641006857156754, - 0.00030377492657862604, - -0.010327138006687164, - 0.0017738681053742766, - -0.0036541682202368975, - -0.012171960435807705, - -0.0023189294151961803, - -0.0016722738509997725, - 0.04249542951583862, - 0.02149283140897751, - 0.07879844307899475, - -0.008050136268138885, - -0.02809807099401951, - 0.022382989525794983, - -0.029155941680073738, - -0.00717932777479291, - -0.01461667288094759, - 0.004276634659618139, - 0.006037602201104164, - 0.028020665049552917, - -0.01879655197262764, - 0.02851089835166931, - 0.012817003764212132, - 0.0014577970141544938, - -0.015029500238597393, - -0.005821512546390295, - -0.030162207782268524, - 0.008766133338212967, - 0.014977897517383099, - -0.010011066682636738, - -0.025672709569334984, - 0.037902723997831345, - 0.0006168223335407674, - 0.001991569995880127, - 0.02580171823501587, - 0.02109290473163128, - -0.006421402562409639, - -0.01849983260035515, - 0.01693882793188095, - 0.008856439962983131, - -0.027324018999934196, - -0.012242915108799934, - -0.008920944295823574, - 0.0027736846823245287, - 0.031839318573474884, - -0.008643575012683868, - -0.009082204662263393, - 0.026008130982518196, - -0.011397908441722393, - -0.010681911371648312, - 0.020009232684969902, - 0.012610589154064655, - 0.024834154173731804, - -0.030084803700447083, - 0.003947662655264139, - 0.013133074156939983, - 0.01620347797870636, - -0.005508666858077049, - 0.009288618341088295, - -0.015223013237118721, - -0.003102656453847885, - 0.007456696592271328, - 0.017867689952254295, - -0.008140441961586475, - -0.003844456048682332, - -0.006811653729528189, - -0.0068181040696799755, - -0.005070037674158812, - -0.0016464721411466599, - 0.01700333133339882, - 0.021363822743296623, - 0.003650943050161004, - 0.011423710733652115, - 0.012668643146753311, - -0.01262994110584259, - -0.016126073896884918, - 0.004770092666149139, - -0.0049345786683261395, - -0.03795432671904564, - -0.01342979446053505, - 0.016087371855974197, - -0.019364189356565475, - 0.027840053662657738, - 0.012455779127776623, - -0.0022350738290697336, - -0.016693711280822754, - 0.03823814541101456, - -0.009785301052033901, - -0.02095099538564682, - -0.024576136842370033, - 0.020267250016331673, - -0.0032800433691591024, - 0.013455595821142197, - -0.007243832107633352, - -0.0073857419192790985, - 0.006092430558055639, - 0.013087921775877476, - 0.00843071099370718, - 0.0056989542208611965, - 0.01202360074967146, - 0.0005845701671205461, - 0.0036348169669508934, - -0.020099537447094917, - -0.027427226305007935, - -0.009946562349796295, - 0.003350998042151332, - -0.0060408273711800575, - 0.002826900687068701, - 0.033052001148462296, - 0.018125707283616066, - 0.10609666258096695, - 0.028201278299093246, - -0.0064310780726373196, - -0.002689829096198082, - 0.010152976028621197, - 0.013907126151025295, - 0.007405092939734459, - 0.017183944582939148, - -0.008611323311924934, - -0.04814600571990013, - -0.009675644338130951, - -0.019699610769748688, - 0.0005212753312662244, - -0.013210479170084, - -0.029001131653785706, - 0.030936259776353836, - -0.013300785794854164, - 0.017467763274908066, - 0.00015309691661968827, - 0.020086636766791344, - 0.027427226305007935, - 0.005015208851546049, - 0.02153153344988823, - 0.031839318573474884, - -0.04014747217297554, - -0.006576213054358959, - 0.019828619435429573, - -0.02197016216814518, - 0.00743734510615468, - -0.0015247202245518565, - -0.014255449175834656, - 0.005508666858077049, - -0.06223374232649803, - -0.013855522498488426, - 0.0233247522264719, - -0.006811653729528189, - 0.0007680042763240635, - -0.017132339999079704, - 0.011849438771605492, - -0.000446692225523293, - 0.00455400301143527, - 0.02809807099401951, - -0.039657238870859146, - -0.020976796746253967, - -0.03627721592783928, - 0.003412277204915881, - -0.013584604486823082, - -0.02296352945268154, - -0.017054935917258263 - ], - "sparse": "SparseEmbedding(values=array([1.58513932, 1.58513932, 1.58513932, 1.58513932, 1.58513932,\n 1.94811484, 1.58513932, 1.58513932, 1.58513932, 1.58513932,\n 1.58513932, 1.84263046, 1.58513932, 1.58513932, 1.58513932,\n 1.58513932, 1.58513932, 1.58513932, 1.58513932, 1.58513932,\n 1.58513932, 1.58513932]), indices=array([ 19522071, 1416371393, 76479261, 795595028, 1890084991,\n 408270109, 1185438219, 47951928, 1740121004, 812080723,\n 7751124, 1109731834, 146333812, 285518910, 1427900950,\n 164058840, 702599562, 1725631217, 1016026407, 1082106827,\n 2022840656, 1888174767]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 43, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 26 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000044.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000044.json deleted file mode 100644 index c98cfe30e38c0dd3b47136084551a69bc73c8dab..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000044.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000044", - "content": "2.1 Nachhaltige Stadtentwicklung Die Grundidee der nachhaltigen Entwicklung wurde erstmals in dem Brundtland-Bericht im Jahr 1987 definiert. Demnach stellt eine nachhaltige Entwicklung sicher, dass nach einer Befriedigung der gegenw\u00e4rtigen Bed\u00fcrfnisse die M\u00f6glichkeit auch f\u00fcr zuk\u00fcnftige Generationen gewahrt wird, ihre eigenen Bed\u00fcrfnisse zu decken (vgl. World Commission on Environment and Development 1987). Bott et al. 2018 definieren den Begriff der Nachhaltigkeit als eine enge Verkn\u00fcpfung der drei Dimensionen \u00d6kologie, \u00d6konomie und Soziales. Als zentralen Gedanken formulieren Bott et al., dass \u201eohne den Schutz der Umwelt und die nachhaltige Nutzung der zu Verf\u00fcgung stehenden Ressourcen [\u2026] eine Gesellschaft nicht [langfristig] \u00fcberlebensf\u00e4hig [ist]\u201c (vgl. Bott et al. 2018, S. 13). Leistungen der Natur, die den Menschen direkt oder indirekt in wirtschaftlicher, materieller, gesundheitlicher und psychologischer Hinsicht beeinflussen, werden unter dem Begriff der \u00d6kosystemdienstleistungen zusammengefasst und wirken in allen drei Bereichen der Nachhaltigkeit (vgl. Kampusch 2018, S. 18). Der Erhalt dieser \u00d6kosystemdienstleistungen spielt f\u00fcr eine nachhaltige Stadtentwicklung eine zentrale Rolle. Um St\u00e4dte an zuk\u00fcnftige Gegebenheiten anzupassen, ist es unabdingbar, alle drei Dimensionen der Nachhaltigkeit in einem ganzheitlichen Rahmen zu betrachten und integriert zu denken. Zuk\u00fcnftige Stadtplanung muss das Ziel verfolgen die Lebensqualit\u00e4t gegenw\u00e4rtiger sowie zuk\u00fcnftiger Generationen zu gew\u00e4hrleisten (vgl. Bott et al. 2018, S. 13). 2.1.1 Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene Auf internationaler sowie nationaler Ebene gibt es verschiedene Strategiepapiere und Handlungsanweisungen zur Integration einer nachhaltigen Stadtentwicklung in den Planungsprozess. Im internationalen Kontext sind die Ziele der nachhaltigen Entwicklung (engl. Sustainable Development Goals, SDG) der Vereinten Nationen (United Nations, UN), die Neue Urbane Agenda und die Leipzig Charta 2020 zu nennen. Auf nationaler Ebene nehmen sich die Deutsche Nachhaltigkeitsstrategie und die Deutsche Stadtentwicklungspolitik dieses Themas an. Die Vereinten Nationen definierten 2015 im Rahmen der Agenda 2030 siebzehn Ziele mit 169 Unterzielen einer nachhaltigen Entwicklung, die sogenannten Sustainable Development Goals (SDG). Die Weltgemeinschaft m\u00f6chte mit der Umsetzung der SDG erreichen, dass auf der ganzen Welt menschenw\u00fcrdiges Leben m\u00f6glich ist und die nat\u00fcrliche Lebensgrundlage gewahrt wird. Durch die Sicherung von Frieden und Wohlstand f\u00fcr den Menschen und einen verantwortungsvollen Umgang mit den Ressourcen der Natur soll insgesamt global ein menschenw\u00fcrdiger Lebensstandard erreicht werden. (vgl. United Nations 2024) 3 Theorieteil Die Agenda 2030 definiert unter anderem auch Ziele f\u00fcr die Entwicklung von urbanen Gebieten. Das SDG 11 nachhaltige St\u00e4dte und Gemeinden bezieht sich auf die nachhaltige Stadtentwicklung. Es verfolgt eine inklusive, sichere, widerstandsf\u00e4hige und nachhaltige Gestaltung von St\u00e4dten und Siedlungen. (\u201eMake cities and humans settlements inclusive, safe, resilient and sustainable\u201c (United Nations 2024)). In den zehn Unterzielen des SDG 11 werden alle drei Dimensionen der Nachhaltigkeit gleicherma\u00dfen ber\u00fccksichtigt. W\u00e4hrend sich das SDG 11 explizit auf die Entwicklung von St\u00e4dten fokussiert, finden sich in anderen Nachhaltigkeitszielen Elemente, die durch die Begr\u00fcnung urbaner Quartiere erreicht werden k\u00f6nnen. Gr\u00fcne St\u00e4dte tragen zu einer Verbesserung der Gesundheit und des Wohlergehens der Bev\u00f6lkerung bei (SDG 3), sind eine Ma\u00dfnahme, die zum Klimaschutz beitr\u00e4gt (SDG 13) und f\u00f6rdern das Leben an Land (SDG 15) (vgl. United Nations 2024). Zum Erreichen der SDG ist es notwendig, diese in internationales, nationales Recht und lokales Handeln zu \u00fcbertragen. Mit dem Fokus auf der nachhaltigen Stadtentwicklung verabschiedeten die Vereinten Nationen auf der Konferenz Habitat III in Rio de Janeiro im Jahr 2016 die Neue Urbane Agenda mit der Vision \u201eSt\u00e4dte f\u00fcr alle\u201c (vgl. United Nations 2016). Die Mitglieder der Vereinten Nationen definieren in dieser Agenda Grunds\u00e4tze und Verpflichtungen im Hinblick auf eine klimaresiliente, zukunftsorientierte und nachhaltige Stadtentwicklung. Grundlage aller Grunds\u00e4tze und Verpflichtungen bilden wiederum die drei Dimensionen der Nachhaltigkeit: Soziales, \u00d6konomie und \u00d6kologie (vgl. United Nations 2016, S. 11). Auf europ\u00e4ischer Ebene bildet die neue Leipzig Charta 2020, als Weiterentwicklung der Leipzig Charta 2007, ein strategisches Rahmenwerk zur nachhaltigen Stadtentwicklung (vgl. Bundesministerium f\u00fcr Wohnen, Stadtentwicklung und Bauwesen 2024b). Ausgehend von dem Spannungsfeld aus \u00d6konomie, \u00d6kologie und Sozialem zeichnet die neue Leipzig Charta 2020 das Leitbild der produktiven (\u00d6konomie), der gr\u00fcnen (\u00d6kologie) und der gerechten Stadt (Soziales). Nach diesem Leitbild schafft die produktive Stadt innerhalb eines innovativen, wettbewerbsf\u00e4higen, klima- und umweltfreundlichen Rahmens die Basis f\u00fcr das \u00f6konomische Handeln in dem urbanen Raum. Die gr\u00fcne Stadt stellt die \u00f6kologischen Merkmale des st\u00e4dtischen Raums in den Mittelpunkt. Dazu z\u00e4hlt beispielsweise ein verantwortungsbewusster Umgang mit der Ressource Boden, eine nachhaltige Energieversorgung und Mobilit\u00e4t, sowie die Schaffung von zug\u00e4nglichen Gr\u00fcnfl\u00e4chen. Der soziale Aspekt des Nachhaltigkeitsdreiecks wird durch die gerechte Stadt verk\u00f6rpert, indem durch Inklusion und Chancengleichheit die Teilhabe der Bev\u00f6lkerung am sozialen Leben erm\u00f6glicht wird. (vgl. Bundesministerium f\u00fcr Wohnen, Stadtentwicklung und Bauwesen 2024b) Die deutsche Nachhaltigkeitsstrategie (DNS) verfolgt seit 2015 das Ziel, auf nationaler Ebene die 17 SDG der Agenda 2030 umzusetzen. Zur Zielerreichung definiert die Bundesregierung sechs Transformationsbereiche, welche die Forderungen der SDG ber\u00fccksichtigen und die Wechselwirkungen betonen (vgl. Die Bundesregierung 2020, S. 16). Zu jedem SDG wurden Indikatoren, politische Priorit\u00e4ten und Ma\u00dfnahmen niedergeschrieben. Trotz der bereits erw\u00e4hnten Wechselwirkungen zwischen den einzelnen Zielen der Agenda 30, liegt der Fokus dieser Arbeit auf dem SDG 11, welches die Rahmenbedingungen einer nachhaltigen Stadtentwicklung vereint. Ziel der Bundesregierung ist es, \u201ein unseren St\u00e4dten und Gemeinden eine gemeinwohlorientierte, partnerschaftliche und resiliente Stadtentwicklung umzusetzen, die nachhaltige und leistungsf\u00e4hige Strukturen schafft\u201c (Die Bundesregierung 2020, S. 265). Die DNS definiert bestimmte Handlungsschwerpunkte, wie beispielsweise die 4 Theorieteil sichere und hochwertige Gestaltung \u00f6ffentlicher R\u00e4ume, die Entwicklung einer ressourcenschonenden und inklusiven Infrastruktur, sowie die Forcierung der W\u00e4rme- und Verkehrswende. Bei der Umsetzung der Ma\u00dfnahmen d\u00fcrfen St\u00e4dte nicht ausschlie\u00dflich eigenst\u00e4ndig betrachtet werden. Vielmehr darf die Verflechtung mit dem Umland und den l\u00e4ndlichen Regionen nicht au\u00dfer Acht gelassen werden (vgl. Die Bundesregierung 2020, S. 266). Die Bedeutung des st\u00e4dtischen Gr\u00fcns wird in den Schwerpunkten der Bundesregierung zur Umsetzung des SDG 11 nicht explizit benannt, obwohl es nach dem Unterziel SDG 11.7 Teil der Agenda 2030 ist.", - "embedding": { - "dense": [ - 0.019215425476431847, - 0.0014624898321926594, - 0.012540592812001705, - 0.011598784476518631, - -0.0029913485050201416, - 0.015827441588044167, - -0.014702328480780125, - 0.01857069693505764, - -0.01398175023496151, - -0.03858254849910736, - 0.023323986679315567, - 0.012262474745512009, - -0.010701221413910389, - 0.006083831191062927, - -0.008874491788446903, - 0.0026737251318991184, - 0.03784932941198349, - -0.019341841340065002, - 0.005018765572458506, - -0.0025030618999153376, - -0.015359697863459587, - -0.001071386388503015, - 0.02940465696156025, - -0.011251136660575867, - -0.002755896421149373, - 0.02121281810104847, - 0.030087308958172798, - -0.020593373104929924, - -0.008255047723650932, - 0.005360092036426067, - -0.00597005570307374, - -0.01242049690335989, - -0.001186742098070681, - 0.019379766657948494, - -0.010619050823152065, - 0.004832299891859293, - -0.015486115589737892, - -0.013817407190799713, - 0.006469403859227896, - -0.010486312210559845, - -0.005407498683780432, - -0.00036779523361474276, - 4.565342533169314e-05, - -0.014714970253407955, - -0.012540592812001705, - 0.03645874187350273, - -0.00929799024015665, - -0.0036566194612532854, - -0.023576820269227028, - 0.019455617293715477, - 0.02725556306540966, - 0.03807688131928444, - -0.02237585559487343, - 0.005454905331134796, - -0.014854028820991516, - -0.0074396561831235886, - -0.037950463593006134, - 0.005973216146230698, - 0.016206692904233932, - -0.028292184695601463, - -0.025725914165377617, - -0.001055584172718227, - -0.009424407035112381, - 0.02872200310230255, - -0.03686327487230301, - -0.007035120856016874, - -0.03650930896401405, - -0.0026041956152766943, - 0.008097026497125626, - -0.0033089721109718084, - 0.04872121661901474, - 0.035068150609731674, - 0.037040259689092636, - 0.004996642470359802, - 0.0289495550096035, - 0.006896061822772026, - 0.0050788139924407005, - 0.000697270268574357, - -0.010176589712500572, - 0.009993284940719604, - -0.003498598001897335, - -0.021339235827326775, - -0.0323881059885025, - 0.03734366223216057, - 0.01312211249023676, - 0.02915182150900364, - -0.019442975521087646, - 0.015840083360671997, - 0.017976535484194756, - 0.0037166676484048367, - 0.005764627363532782, - -0.0003990044933743775, - -0.0027242922224104404, - 0.025991389527916908, - -0.019923361018300056, - -0.003190455725416541, - 0.00025797024136409163, - -0.006459922529757023, - 0.01567574217915535, - -0.018469562754034996, - -0.012970412150025368, - 0.016295185312628746, - 0.0035238813143223524, - -0.008564770221710205, - -0.024727217853069305, - -0.0036629403475672007, - 0.00265002204105258, - 0.014285150915384293, - 0.02554892934858799, - -0.018937306478619576, - -0.015738949179649353, - 0.03299490734934807, - -0.010182910598814487, - -0.013311738148331642, - 0.020214121788740158, - -0.015094221569597721, - 0.011845298111438751, - -0.0002581677690614015, - 0.007540789898484945, - -0.0054011777974665165, - 0.02310907654464245, - -0.009032513946294785, - 0.003643977688625455, - -0.020150912925601006, - 0.007622961420565844, - -0.00117489043623209, - -0.003899972653016448, - 0.005148343276232481, - -0.034840598702430725, - -0.0255110040307045, - -0.026395926252007484, - 0.016257259994745255, - 0.002800142392516136, - 0.013817407190799713, - -0.028342751786112785, - 0.01878560520708561, - -0.0048449416644871235, - 0.014044958166778088, - -0.033601708710193634, - -0.049833688884973526, - 0.0056413705460727215, - 0.01999921165406704, - -0.026395926252007484, - -0.009184214286506176, - 0.019405050203204155, - 0.01276814378798008, - 0.003975823055952787, - 0.024929486215114594, - 0.004851262550801039, - 0.0018804568098857999, - 0.006023782771080732, - -0.012332004494965076, - 0.021516218781471252, - -0.007648244965821505, - -0.02482835203409195, - -0.005021926015615463, - -0.002126970561221242, - 0.015195355750620365, - -0.002126970561221242, - -0.005998499225825071, - 0.02725556306540966, - -0.02993560954928398, - -0.009974322281777859, - -0.004728005733340979, - 0.007888437248766422, - 0.014651761390268803, - 0.01448741927742958, - 0.022464348003268242, - -0.004225497134029865, - -0.010359895415604115, - -0.009121006354689598, - 0.040832776576280594, - -0.038203299045562744, - 0.024524949491024017, - -0.010808676481246948, - 0.0011946432059630752, - 0.012610122561454773, - 0.014664403162896633, - -0.03372812643647194, - -0.014904595911502838, - -0.000574013392906636, - 0.011876902543008327, - 0.003846245352178812, - 0.034385498613119125, - -0.025270812213420868, - 0.005198910366743803, - 0.040150124579668045, - 0.019278634339571, - 0.012009640224277973, - 0.010397820733487606, - 0.006788607221096754, - 0.006523130927234888, - 0.01690198853611946, - -0.01314739603549242, - -0.6326931715011597, - -0.0020084544084966183, - 0.011042548343539238, - -0.022502273321151733, - 0.01637103594839573, - 0.02461344189941883, - 0.024158339947462082, - 0.0010310908546671271, - -0.010985660366714, - 0.029960893094539642, - -0.019126933068037033, - -0.004222336690872908, - -0.022274723276495934, - -0.01194011140614748, - -0.009525541216135025, - -0.008710149675607681, - -0.0015067358035594225, - -0.012471063993871212, - 0.04171769693493843, - 0.014816103503108025, - -0.00989847257733345, - 0.012281437404453754, - -0.009253744035959244, - -0.012837673537433147, - 0.012325683608651161, - 0.03286848962306976, - 0.0005368783604353666, - -0.029480507597327232, - 0.017243314534425735, - 0.02413305640220642, - 0.0002919448888860643, - 0.010814997367560863, - -0.025220245122909546, - 0.021756412461400032, - 0.04636985436081886, - 0.0168767049908638, - -0.014651761390268803, - 0.019190141931176186, - 0.0096393171697855, - 0.007180500775575638, - 0.00029846327379345894, - 0.0017651011003181338, - -0.0033437367528676987, - -0.0031936161685734987, - 0.014436852186918259, - 0.012243512086570263, - 0.036736857146024704, - -0.025877615436911583, - -0.00705408351495862, - -0.02506854385137558, - 0.007129934150725603, - -0.0263200756162405, - 0.01831786148250103, - 0.008198159746825695, - 0.017218032851815224, - -0.009127327241003513, - 0.024524949491024017, - -0.005119899287819862, - 0.010277723893523216, - -0.005044049117714167, - 0.016345752403140068, - -0.0013107890263199806, - -0.003242603037506342, - -0.021162251010537148, - -0.01119424868375063, - 0.05135069414973259, - -0.03183186799287796, - 0.0005827046115882695, - -0.014044958166778088, - -0.00041915226029232144, - -0.016598587855696678, - 0.029581639915704727, - 0.017255956307053566, - -0.034815315157175064, - 0.01736973226070404, - 0.018760323524475098, - 0.019405050203204155, - -0.010031210258603096, - -0.004984000697731972, - 0.021592069417238235, - -0.004939754959195852, - -0.0123004000633955, - -0.002534666331484914, - 0.004674278665333986, - 0.03471418097615242, - -0.02389286458492279, - -0.02075771614909172, - -0.0058562797494232655, - -0.0020969463512301445, - 0.017268598079681396, - 0.020694507285952568, - 0.013703632168471813, - 0.007837871089577675, - -0.021832263097167015, - 0.000651839014608413, - 0.05006123706698418, - -0.012970412150025368, - 0.02290680818259716, - 0.0009599811164662242, - -0.030087308958172798, - -0.03140204772353172, - 0.005587643478065729, - 0.038683682680130005, - 0.004067475441843271, - 0.013096828944981098, - 0.0006056177080608904, - -0.010783392935991287, - 0.006681152619421482, - 0.04872121661901474, - -0.024664008989930153, - 0.0075723943300545216, - -0.003685063449665904, - -0.022729825228452682, - -0.013400230556726456, - -0.015397623181343079, - -0.0097530921921134, - 0.026168374344706535, - -0.020188838243484497, - 0.02003713697195053, - 0.022565482184290886, - 0.007344843354076147, - -0.007667207159101963, - 0.035320986062288284, - -0.025207603350281715, - -0.018444279208779335, - 0.02945522405207157, - -0.020163554698228836, - 0.020416388288140297, - -0.021566785871982574, - -0.009734129533171654, - -0.0005281871417537332, - 0.005527595058083534, - 0.030921664088964462, - -0.007496544159948826, - 0.027811799198389053, - 0.004263422451913357, - 0.00868486613035202, - -0.0068075698800385, - -0.016990480944514275, - -0.027381980791687965, - -0.0020432190503925085, - 0.0013676767703145742, - 0.004200213588774204, - -0.05046577379107475, - -0.020922057330608368, - -0.027811799198389053, - -0.013830048963427544, - -0.003947379067540169, - -0.019822226837277412, - 0.005622407887130976, - -0.024183623492717743, - -0.004355074837803841, - -0.022489631548523903, - 0.022287365049123764, - 0.013412872329354286, - 0.006580018904060125, - 0.003855726681649685, - -0.014537985436618328, - -0.01506893802434206, - -0.015372339636087418, - 0.00243827304802835, - 0.009102043695747852, - -0.037520647048950195, - -0.010770751163363457, - -0.003982143942266703, - 0.0050788139924407005, - -0.007344843354076147, - 0.017736343666911125, - -0.012843994423747063, - -0.03827914968132973, - -0.013084187172353268, - -0.011320666410028934, - -0.014297792688012123, - 0.011624068021774292, - 0.014133450575172901, - -0.010808676481246948, - -0.04222336784005165, - -0.022034529596567154, - 0.024449098855257034, - 0.010372537188231945, - 0.015384981408715248, - -0.029227672144770622, - -0.019619960337877274, - -0.00365029857493937, - 0.013058903627097607, - -0.014019674621522427, - 0.001640264061279595, - 0.0028996961191296577, - 0.008255047723650932, - 0.0059068468399345875, - 0.015827441588044167, - 0.027331413701176643, - -0.010745467618107796, - 0.000952080066781491, - -0.012597480788826942, - -0.008432031609117985, - -0.013716273941099644, - 0.00016295975365210325, - -0.013880616053938866, - 0.018861455842852592, - 0.05013708770275116, - -0.004475171212106943, - -0.006592660676687956, - 0.00613755825906992, - -0.0016126103000715375, - -0.024967409670352936, - 0.0062544941902160645, - 0.004984000697731972, - 0.013197963126003742, - -0.0006415676325559616, - 0.02406984753906727, - -0.01779955066740513, - -0.03610477223992348, - -0.008830246515572071, - -0.013172679580748081, - 0.05109785869717598, - -0.008798642084002495, - -0.00025243949494324625, - -0.008678545244038105, - -0.006554735358804464, - 0.013855332508683205, - 0.006434638984501362, - 0.01400703378021717, - -0.011459724977612495, - -0.023538894951343536, - -0.002492000348865986, - -0.024701934307813644, - 0.010189231485128403, - -0.006605302449315786, - -0.016282543540000916, - 0.002850709483027458, - 0.0016157707432284951, - -0.008830246515572071, - 0.0031035440042614937, - -0.005211551673710346, - 0.011010943911969662, - 0.0059321303851902485, - -0.015119505114853382, - 0.020100345835089684, - -0.006361949257552624, - 0.014234584756195545, - 0.017230672761797905, - 0.005047209560871124, - -0.0023956072982400656, - 0.019910719245672226, - -0.009474974125623703, - 0.043057721108198166, - 0.02801406756043434, - -0.013589856214821339, - 0.010220835916697979, - -0.00891873799264431, - 0.005688777193427086, - -0.008356181904673576, - -0.025864973664283752, - 0.00040196740883402526, - -0.02508118562400341, - -0.005274760536849499, - -0.006655869074165821, - 0.012502667494118214, - 0.00705408351495862, - 0.003817801596596837, - 0.014398926869034767, - 0.01565045863389969, - -0.004193892702460289, - 0.006529451813548803, - -0.01119424868375063, - -0.003022952936589718, - -0.01661122962832451, - -0.018722398206591606, - -0.0015106863575056195, - 0.009664599783718586, - -0.011870581656694412, - 0.012091811746358871, - -0.0012823451543226838, - 0.00927270669490099, - -0.006030103657394648, - -0.0009260064689442515, - 0.000529767363332212, - 0.002250227378681302, - 0.028823137283325195, - -0.0214530099183321, - 0.0123004000633955, - -0.008899775333702564, - 0.04462529718875885, - -0.004955556709319353, - -0.025005334988236427, - 0.0035080790985375643, - -0.00011150397767778486, - -0.018418995663523674, - -0.002817524829879403, - -0.01931655779480934, - -0.012281437404453754, - -0.029531074687838554, - -0.01002488937228918, - 0.012565876357257366, - -0.02558685466647148, - 0.011624068021774292, - -0.008520524017512798, - 0.0007525777909904718, - -0.0016054993029683828, - 0.02214830555021763, - -0.01951882615685463, - -0.0057488251477479935, - -0.005941611714661121, - 0.021541502326726913, - -0.015182713977992535, - -0.023551536723971367, - 0.0011669894447550178, - -0.00021293408644851297, - -0.03501758351922035, - -0.008021175861358643, - -0.025157036259770393, - -0.006156520918011665, - -0.012622764334082603, - 0.005290562752634287, - 0.010890848003327847, - -0.0038968122098594904, - 0.0028206852730363607, - 0.044018492102622986, - -0.01110575720667839, - 0.009664599783718586, - -0.05165409669280052, - 0.013197963126003742, - 0.008324577473104, - 0.06634378433227539, - -0.0010816577123478055, - 0.007964287884533405, - 0.025157036259770393, - 0.009702525101602077, - -0.004102240316569805, - 0.019910719245672226, - -0.02505590207874775, - -0.007920041680335999, - -0.006839174311608076, - 0.008052780292928219, - -0.009614033624529839, - 0.01565045863389969, - -0.002951843198388815, - 0.012003319337964058, - -0.0027938217390328646, - 0.005612926557660103, - -0.011358591727912426, - 0.011883223429322243, - 0.010852922685444355, - 0.008710149675607681, - 0.0019073205767199397, - 0.0034322289284318686, - 0.05021293833851814, - 0.005432782229036093, - -0.0121866250410676, - 0.030466562137007713, - 0.0072816344909369946, - -0.0012452100636437535, - -0.018709756433963776, - 0.0042318180203437805, - 0.029101254418492317, - 0.008160234428942204, - 0.01879824697971344, - -0.036307040601968765, - 0.008640619926154613, - 0.010555841960012913, - -0.015258564613759518, - 0.030820529907941818, - -0.00036107932101003826, - 0.028292184695601463, - 0.010758109390735626, - 0.013665706850588322, - -0.021844904869794846, - 0.008368822745978832, - -0.01279342733323574, - 0.0031762339640408754, - 0.009569787420332432, - -0.01399439200758934, - -0.017736343666911125, - 0.013577214442193508, - -0.028570301830768585, - -0.024916844442486763, - -0.0008778098854236305, - 0.013337021693587303, - -0.03312132507562637, - 0.02361474558711052, - -0.011845298111438751, - -0.0028696719091385603, - -0.03443606570363045, - -0.0323881059885025, - -0.02993560954928398, - -0.008501561358571053, - -0.019657885655760765, - -0.00044838624307885766, - -0.011535575613379478, - -0.018431637436151505, - 0.02889898791909218, - -0.015587248839437962, - 0.002100106794387102, - 0.03527041897177696, - -0.02534666284918785, - -0.027634814381599426, - 0.001717694685794413, - 0.007167859002947807, - 0.009961680509150028, - 0.02652234211564064, - 0.0036281757056713104, - 0.002002133522182703, - 0.0056666540913283825, - -0.0021743769757449627, - -0.016054993495345116, - -0.004914471413940191, - -0.011996998451650143, - -0.007559752557426691, - 0.010796034708619118, - -0.015195355750620365, - -0.013476081192493439, - 0.0019089007982984185, - 0.011308024637401104, - -0.007009837310761213, - -0.0028917950112372637, - -0.002218622947111726, - 0.026446493342518806, - -0.02700272761285305, - -0.005442263558506966, - 0.03274207189679146, - -0.003215739270672202, - 0.02341247722506523, - -0.030921664088964462, - 0.01195275317877531, - 0.018520129844546318, - -0.01738237403333187, - -0.006788607221096754, - 0.031452614814043045, - 0.003776715835556388, - -0.02748311497271061, - 0.007774662226438522, - -0.0008225023630075157, - -0.0012278277426958084, - 0.030188443139195442, - -0.03741951286792755, - 0.024449098855257034, - 0.004127523861825466, - -0.008488919585943222, - 0.009847905486822128, - 0.028620868921279907, - 0.0068075698800385, - 0.031022798269987106, - -0.007515506818890572, - -0.0037451116368174553, - -0.027331413701176643, - 0.04123731330037117, - 0.007901079021394253, - 0.013210604898631573, - 0.014904595911502838, - 0.0016228817403316498, - 0.021554144099354744, - -0.0265476256608963, - 0.007357485126703978, - 0.0033753409516066313, - 0.03064354509115219, - 0.010555841960012913, - 0.007180500775575638, - -0.0030071507208049297, - 0.004197053145617247, - 0.008501561358571053, - -0.0015399203402921557, - -0.031427331268787384, - -0.013349663466215134, - -0.017786908894777298, - -0.006361949257552624, - -0.0022533878218382597, - 0.0212254598736763, - 0.0096393171697855, - -0.027811799198389053, - -0.02504326030611992, - -0.007686169818043709, - 0.000651839014608413, - 0.03185715153813362, - -0.039416905492544174, - -0.017432941123843193, - -0.023045867681503296, - 0.021541502326726913, - -0.002686366904526949, - -0.024297399446368217, - 0.02170584537088871, - -0.04247620329260826, - 0.018027102574706078, - 0.016598587855696678, - -0.004892348311841488, - -0.007117292378097773, - 0.006738040596246719, - 0.0020606014877557755, - 0.0023244975600391626, - -0.0115861427038908, - -0.017673134803771973, - 0.007028799969702959, - -0.0096393171697855, - 0.0337534099817276, - 0.006896061822772026, - 0.01565045863389969, - -0.00819183886051178, - -0.002983447629958391, - 0.003792518051341176, - 0.03539683669805527, - -0.02169320359826088, - -0.04151543229818344, - -0.02535930462181568, - -0.029000122100114822, - -0.020568089559674263, - 0.017888043075799942, - -0.012711256742477417, - 0.019898077473044395, - -0.03160431608557701, - -0.008823925629258156, - 0.00531268585473299, - 0.01661122962832451, - -0.012540592812001705, - 0.00421917624771595, - 0.0030276936013251543, - -0.01400703378021717, - 0.016295185312628746, - 0.026926878839731216, - -0.0002858215302694589, - -0.007989571429789066, - -0.008552128449082375, - -0.026446493342518806, - -0.002409829292446375, - 0.011655672453343868, - -0.012458422221243382, - 0.003590250387787819, - 0.014361001551151276, - -0.009222139604389668, - 0.011055190116167068, - 0.007768341340124607, - 0.006624264642596245, - -0.022805675864219666, - 0.00831193570047617, - -0.012799748219549656, - 0.0016718683764338493, - -0.02053016424179077, - -0.01508157979696989, - -0.022717183455824852, - 0.0041812509298324585, - -0.009879509918391705, - -0.011124719865620136, - 0.038456134498119354, - -0.0021933396346867085, - -0.010903489775955677, - 0.016952555626630783, - -0.005527595058083534, - 0.003184134839102626, - -0.003154110861942172, - 0.038203299045562744, - 0.009892151691019535, - -0.035118717700242996, - -0.037495363503694534, - -0.030264293774962425, - -0.006915024481713772, - -0.02485363557934761, - 0.0180776696652174, - -0.01458855252712965, - -0.020656581968069077, - -0.02626950852572918, - 0.005372733809053898, - 0.022363215684890747, - -0.019834868609905243, - -0.010897168889641762, - 0.03683799132704735, - 0.02725556306540966, - -0.009563466534018517, - 0.004781733267009258, - -0.0029392014257609844, - 0.007755699567496777, - 0.008830246515572071, - 0.026926878839731216, - -0.0054517448879778385, - -0.00954450387507677, - 0.008160234428942204, - -0.0036028921604156494, - 0.017508791759610176, - -0.02578912302851677, - 0.025245528668165207, - 0.021882828325033188, - -0.004658476449549198, - -0.017698418349027634, - -0.027811799198389053, - -0.006459922529757023, - 0.019367124885320663, - 0.011921148747205734, - 0.043967925012111664, - 0.005552878603339195, - -0.022047171369194984, - 0.006877099629491568, - -0.008368822745978832, - 0.0012112354161217809, - 0.012983053922653198, - 0.019683169201016426, - 0.023943429812788963, - -0.006554735358804464, - -0.027078578248620033, - 0.007774662226438522, - 0.006181804463267326, - 0.012527951039373875, - -0.0014087624149397016, - -0.012875598855316639, - -0.013210604898631573, - -0.026446493342518806, - -0.01905108243227005, - -0.004500454757362604, - 0.02365267090499401, - 0.009487615898251534, - -0.012603801675140858, - -0.001736657228320837, - -0.027786515653133392, - -0.017673134803771973, - -0.023450402542948723, - 0.028620868921279907, - -0.010568483732640743, - -0.001382688875310123, - 0.001240469398908317, - -0.0021411925554275513, - 0.015283848159015179, - -0.015283848159015179, - -0.0038272826932370663, - -0.0173950158059597, - 0.01931655779480934, - -0.021124325692653656, - 0.007035120856016874, - 0.03585193678736687, - 0.006219729781150818, - -0.007066725287586451, - 0.001586536760441959, - 0.0005933710490353405, - -0.019417691975831985, - 0.02649705857038498, - 0.010189231485128403, - -0.019101649522781372, - 0.013223246671259403, - -0.004781733267009258, - 0.0032931698951870203, - -0.0024161499459296465, - -0.0025757518596947193, - 0.027786515653133392, - -0.01618141122162342, - 0.00857109110802412, - -0.015840083360671997, - -0.023513611406087875, - 0.03130091726779938, - 0.013235888443887234, - -0.018962590023875237, - 0.024158339947462082, - -0.021313952282071114, - 0.01543554849922657, - 0.005707739852368832, - -0.0005151503719389439, - -0.004026390146464109, - -0.022805675864219666, - -0.01811559498310089, - -0.0004902619402855635, - 0.026168374344706535, - -0.014664403162896633, - -0.007825229316949844, - -0.0012207167455926538, - -0.008716470561921597, - 0.0022707702592015266, - 0.0200244951993227, - -0.007370126899331808, - -0.004968198481947184, - -0.0054011777974665165, - 0.007237388752400875, - 0.0021238101180642843, - -0.004162288736552, - 0.004886027425527573, - -0.007458618842065334, - -0.009095722809433937, - -0.001426934963092208, - -0.0322616882622242, - -0.006166002247482538, - 0.0036882238928228617, - 0.029834475368261337, - 0.004696401301771402, - -0.031225064769387245, - 0.01324852928519249, - 0.01444949395954609, - -0.042754318565130234, - -0.01787540130317211, - 0.012881919741630554, - -0.0012357288505882025, - 0.01810295321047306, - 0.01785011775791645, - -0.005733022931963205, - 0.03185715153813362, - -0.013754199258983135, - 0.03504286706447601, - -0.0255110040307045, - -0.01949354261159897, - 0.011238494887948036, - -0.0070161581970751286, - 0.022300006821751595, - 0.01505629625171423, - -0.03400624543428421, - 0.014259868301451206, - 0.034410782158374786, - 0.0023260777816176414, - -0.003457512240856886, - -0.0021032672375440598, - -0.0011796311009675264, - -0.005853119306266308, - -0.016585946083068848, - 0.02218623086810112, - 0.006978233344852924, - -0.009392802603542805, - 0.02366531267762184, - -0.015309130772948265, - 0.015738949179649353, - 0.012578518129885197, - 0.002913918113335967, - -0.03499229997396469, - 0.0077240951359272, - -0.004936594516038895, - -0.02748311497271061, - 0.0024161499459296465, - 0.0048133376985788345, - -0.025713272392749786, - -0.012414176017045975, - -0.0004657686222344637, - 0.0265476256608963, - 0.011902186088263988, - 0.007268992718309164, - 0.023513611406087875, - 0.007376447785645723, - -0.015625175088644028, - -0.01542290672659874, - 0.0002640935708768666, - -0.034865882247686386, - 0.012344646267592907, - 0.0006656659534201026, - -0.014386285096406937, - 0.039214637130498886, - -0.02776123210787773, - -0.0032647259067744017, - -0.019152216613292694, - -0.0008517363457940519, - -0.012995694763958454, - -0.010461028665304184, - -0.0343349315226078, - -0.005758306477218866, - 0.00019594676268752664, - 0.004835460335016251, - -0.0021159090101718903, - -0.004892348311841488, - -0.003155691083520651, - -0.0013566153356805444, - -0.004317149519920349, - 0.003305811667814851, - -0.029126537963747978, - -0.024246832355856895, - -3.313515117042698e-05, - -0.0067506819032132626, - -0.018039744347333908, - -0.015612532384693623, - -0.011978035792708397, - -0.012085490860044956, - 0.027432547882199287, - 0.19235651195049286, - 0.004569984041154385, - -0.0032836885657161474, - 0.011175286956131458, - -0.02388022281229496, - -0.012155020609498024, - 0.03499229997396469, - -0.007964287884533405, - 0.000319203594699502, - 0.02680046111345291, - -0.0487465001642704, - 0.010606409050524235, - 0.028570301830768585, - 0.004671118222177029, - 0.013197963126003742, - -0.049302734434604645, - -0.041389014571905136, - -0.0022612889297306538, - 0.01495516300201416, - 0.025371946394443512, - 0.018204087391495705, - -0.021592069417238235, - -0.005960574373602867, - -0.017205391079187393, - 0.026143090799450874, - 0.006535772699862719, - -0.003198356833308935, - 0.018494846299290657, - 0.013425514101982117, - 0.00906411837786436, - 0.008362501859664917, - -0.02237585559487343, - 0.006314542610198259, - 0.002430371940135956, - 0.010783392935991287, - 0.0010113382013514638, - 0.024790426716208458, - -0.024790426716208458, - 0.004807016812264919, - 0.01157350093126297, - 0.013286454603075981, - 0.010195552371442318, - -0.005884723737835884, - -0.02915182150900364, - 0.010941414162516594, - 0.024967409670352936, - -0.01568838208913803, - 0.008988267742097378, - 0.007268992718309164, - -0.0035839295014739037, - -0.013412872329354286, - 0.0047627706080675125, - 0.015473473817110062, - 0.02897483855485916, - -0.009323273785412312, - 0.020429030060768127, - -0.0036123734898865223, - 0.005897365510463715, - -0.010416782461106777, - 0.016598587855696678, - -0.031250350177288055, - 0.030087308958172798, - 0.0009267965797334909, - 0.03286848962306976, - -0.017293881624937057, - 0.006456762086600065, - -0.005540236830711365, - 0.013412872329354286, - 0.017698418349027634, - 0.0016086597461253405, - -0.017774267122149467, - -0.0311239305883646, - -0.025991389527916908, - 0.020163554698228836, - -0.0008770197746343911, - -0.031149214133620262, - 0.017900684848427773, - 0.01398175023496151, - 0.0289495550096035, - 0.03549796715378761, - -0.012319362722337246, - -0.01145340409129858, - -0.010404141619801521, - -0.03620590642094612, - 0.014361001551151276, - -0.03858254849910736, - 0.023956071585416794, - -0.005521274171769619, - -0.022287365049123764, - -0.018987873569130898, - -0.0013542450033128262, - -0.0010089678689837456, - 0.011661993339657784, - -0.02074507437646389, - 0.014563268981873989, - -0.0007158377557061613, - 0.02243906445801258, - 0.014651761390268803, - -0.011472366750240326, - 0.004171770066022873, - -0.004728005733340979, - 0.07696283608675003, - 0.0168767049908638, - -0.004500454757362604, - 0.006245012860745192, - -0.009772054851055145, - -0.025852331891655922, - 0.006725398823618889, - 0.006731719709932804, - -0.02262869104743004, - -0.01715482398867607, - -0.01686406321823597, - -0.0028333270456641912, - -0.025890257209539413, - -7.693676161579788e-05, - 0.04945443570613861, - -0.0009765734430402517, - 0.002057441044598818, - -0.016712363809347153, - -0.013804765418171883, - -0.008292973041534424, - -0.01360249798744917, - -0.007250030525028706, - -0.016042351722717285, - -0.000801959540694952, - -0.012072849087417126, - -0.017925968393683434, - -0.002721131779253483, - -0.00879232119768858, - -0.008103346452116966, - 0.0171674657613039, - -0.04285545274615288, - -0.014550627209246159, - 0.0002334768942091614, - -0.010290365666151047, - 0.027230279520154, - 0.006068028975278139, - -0.012907203286886215, - 0.0037735553923994303, - -0.009822621941566467, - 0.005609766114503145, - 0.001559672993607819, - -0.022843601182103157, - -0.011996998451650143, - 0.008596374653279781, - -0.0183052197098732, - 0.00018409514450468123, - -0.004111721646040678, - -0.0035017584450542927, - -0.025966107845306396, - 0.02242642268538475, - -0.0036724216770380735, - 0.014323076233267784, - -0.026092523708939552, - 0.008855530060827732, - -0.00028759927954524755, - -0.016029709950089455, - -0.0180776696652174, - 0.02118753455579281, - 0.011636709794402122, - -0.016244618222117424, - 0.0021032672375440598, - 0.0031414690893143415, - -0.0197969451546669, - -0.016522737219929695, - 0.02221151441335678, - -0.15594834089279175, - 0.009329594671726227, - 0.019278634339571, - -0.025675347074866295, - -0.006115435156971216, - -0.00451941741630435, - 0.002817524829879403, - 0.012603801675140858, - -0.010909810662269592, - -0.0035302022006362677, - 0.041641850024461746, - -0.007357485126703978, - -0.04879706725478172, - -0.016737645491957664, - -0.014158734120428562, - 0.0071488963440060616, - -0.020441671833395958, - 0.035573817789554596, - 0.0018646547105163336, - 0.008027496747672558, - 0.009715166874229908, - -0.021276026964187622, - 0.005360092036426067, - 0.0015557225560769439, - 0.01265436876565218, - 0.008786000311374664, - -0.004225497134029865, - 0.020909415557980537, - -0.004980840254575014, - -0.0026531824842095375, - 0.006371430121362209, - -0.01253427192568779, - 0.03668629005551338, - -0.019822226837277412, - -0.013374947011470795, - 0.014917237684130669, - 0.023475686088204384, - -0.015005730092525482, - -0.008356181904673576, - 0.03210998699069023, - 0.027154428884387016, - -2.713526919251308e-05, - 0.003302651224657893, - -7.441829075105488e-05, - -0.017445582896471024, - 0.010966697707772255, - 0.00016819422307889909, - -0.003173073520883918, - -0.01194011140614748, - -0.00783155020326376, - 0.009146288968622684, - 0.0007059614290483296, - -0.005859440192580223, - 0.008609016425907612, - 0.007092008832842112, - 0.0037988389376550913, - -0.004933434072881937, - 0.023349270224571228, - -0.01083396002650261, - 0.00820448063313961, - -0.005439103115350008, - -0.014765537343919277, - 0.01360249798744917, - 0.003261565463617444, - 0.0012918264837935567, - -0.016712363809347153, - -0.002357681980356574, - 0.007793624419718981, - -0.030340144410729408, - 0.010126023553311825, - -0.0016062894137576222, - -0.017546717077493668, - 0.011845298111438751, - 0.007907399907708168, - -0.00013550350558944046, - -0.007768341340124607, - -0.006270296406000853, - 0.009196856059134007, - 0.005685616750270128, - 0.0055844830349087715, - -0.02556157112121582, - 0.039416905492544174, - -0.012862957082688808, - -0.00954450387507677, - -0.023298703134059906, - -0.0038841706700623035, - -0.01591593399643898, - 0.0014553788350895047, - -0.003146209754049778, - 0.010814997367560863, - 0.012439459562301636, - -0.03931577131152153, - -0.02410777285695076, - 0.011554538272321224, - -0.002071663038805127, - -0.008021175861358643, - 0.0013060483615845442, - 0.002765377750620246, - -0.01227511651813984, - -0.009955359622836113, - -0.003546004416421056, - -0.007989571429789066, - -0.031199781224131584, - 0.0018377910600975156, - 0.011320666410028934, - 0.027887649834156036, - 0.0030276936013251543, - 0.005688777193427086, - 0.04717892408370972, - 0.003448030911386013, - -0.02078299969434738, - -0.002719551557675004, - 0.023968713358044624, - 0.011813693679869175, - -0.010555841960012913, - 0.013728915713727474, - 0.0015091061359271407, - -0.0010137084173038602, - 0.009228460490703583, - -0.007104650605469942, - 0.030188443139195442, - -0.0018994194688275456, - -0.029834475368261337, - 0.003457512240856886, - 0.008552128449082375, - -0.038936518132686615, - -0.09005966037511826, - 0.010998302139341831, - 0.015144788660109043, - 0.0357002355158329, - 0.012850315310060978, - 0.01881088875234127, - 0.00771145336329937, - -0.008646940812468529, - 0.002420890610665083, - 0.006292419508099556, - -0.04894876480102539, - -0.023500969633460045, - 0.004690080881118774, - -9.975112334359437e-05, - 0.027887649834156036, - -0.021996604278683662, - -0.006263975519686937, - -0.002789081074297428, - -0.03011259250342846, - 0.021655278280377388, - 0.014146092347800732, - -0.008027496747672558, - -0.009822621941566467, - -0.008457315154373646, - -0.03377869352698326, - 0.013450797647237778, - -0.02702801115810871, - 0.011883223429322243, - 0.015410264953970909, - 9.955359564628452e-05, - 0.006693794392049313, - -0.01240785513073206, - 0.03332359343767166, - -0.026876311749219894, - 0.022072454914450645, - -0.005138861946761608, - -0.015827441588044167, - -0.028620868921279907, - 0.026446493342518806, - -0.023677954450249672, - -0.008590053766965866, - -0.020188838243484497, - 0.013185321353375912, - -0.023728521540760994, - -0.01097301859408617, - -0.011055190116167068, - -0.0030624582432210445, - 0.002329238224774599, - -0.003296330338343978, - -0.004980840254575014, - -0.04750761017203331, - -0.010265082120895386, - 0.0038494057953357697, - -0.006668510846793652, - 0.0016339431749656796, - -0.0018757162615656853, - -0.01110575720667839, - -0.023956071585416794, - -0.017698418349027634, - 0.020327895879745483, - -0.004067475441843271, - 0.02243906445801258, - -0.0370655432343483, - 0.017015764489769936, - 0.005413819570094347, - 0.008602695539593697, - -0.046850237995386124, - -0.0014759215991944075, - 0.007458618842065334, - -0.026699326932430267, - -0.00584679888561368, - 0.0018046065233647823, - 0.00021767473663203418, - 0.008722791448235512, - -0.02291944995522499, - 0.012983053922653198, - -0.03903765231370926, - -0.00869750790297985, - 0.01688934676349163, - -0.019417691975831985, - -0.01444949395954609, - -0.022287365049123764, - 0.03400624543428421, - -0.024487024173140526, - 0.024423817172646523, - -0.006902382709085941, - 0.00615020003169775, - -0.010745467618107796, - 0.025435155257582664, - -0.02341247722506523, - 0.023273419588804245, - 0.00044957140926271677, - 0.018406353890895844, - -0.0017540395492687821, - 0.029834475368261337, - 0.017913326621055603, - 0.01506893802434206, - 0.0009726228308863938, - 0.008002213202416897, - 0.00565717276185751, - -0.008330898359417915, - -0.012932486832141876, - -0.046647973358631134, - 0.012774464674293995, - 0.015043654479086399, - 0.002624738495796919, - -0.02262869104743004, - 0.0016845101490616798, - 0.010517916642129421, - -0.0009244262473657727, - -0.005366412922739983, - 0.013665706850588322, - -0.015372339636087418, - 0.005742504261434078, - 0.02720499597489834, - -0.003776715835556388, - -0.026926878839731216, - -0.013690990395843983, - 0.01853277161717415, - 0.027558963745832443, - 0.00867222435772419, - -0.0050788139924407005, - -0.011251136660575867, - -0.016118202358484268, - -0.005808873567730188, - 0.011270099319517612, - -0.029556358233094215, - 0.002463556593284011, - -0.008507882244884968, - -0.0016734485980123281, - 0.009045155718922615, - -0.013463439419865608, - 0.020100345835089684, - -0.009329594671726227, - 0.0014782919315621257, - 0.0004456208844203502, - -0.017306523397564888, - -0.016118202358484268, - 0.0231722854077816, - 0.028342751786112785, - -0.0035238813143223524, - 0.08965512365102768, - -0.03210998699069023, - -0.03016315959393978, - -0.00724370963871479, - -0.035371553152799606, - 0.005543397273868322, - -0.002577332081273198, - 0.0021032672375440598, - -0.006933987140655518, - 0.025877615436911583, - -0.010113381780683994, - 0.04189468175172806, - 0.014133450575172901, - 0.002703749341890216, - 0.011162645183503628, - 0.02194603718817234, - -0.04090862721204758, - 0.009102043695747852, - 0.025182319805026054, - 0.0010050173150375485, - -0.015132146887481213, - 0.044726431369781494, - -0.007098329719156027, - 0.017483508214354515, - 0.016017068177461624, - 0.01592857576906681, - -0.02849445305764675, - -0.0183052197098732, - -0.0026516022626310587, - -0.007635603193193674, - -0.012414176017045975, - -0.016231976449489594, - -0.023804372176527977, - -0.0022786713670939207, - 0.020909415557980537, - -0.012502667494118214, - -0.023690596222877502, - 0.007616640534251928, - -0.028620868921279907, - -0.013855332508683205, - 0.03613005578517914, - 0.002240746049210429, - 0.019822226837277412, - -0.026345359161496162, - 0.014386285096406937, - 0.01508157979696989, - 0.013905899599194527, - -0.0034259080421179533, - 0.004614230245351791, - -0.005928969942033291, - 0.00857109110802412, - 0.0033279345370829105, - 0.012079169973731041, - -0.0016054993029683828, - -0.008981946855783463, - 0.008482598699629307, - 0.011333308182656765, - 0.016762929037213326, - 0.006548414472490549, - -0.0048133376985788345, - 0.02243906445801258, - -0.010018568485975266, - 0.008716470561921597, - 0.029581639915704727, - -0.007648244965821505, - -0.022262081503868103, - 0.02073243260383606, - -0.031149214133620262, - -0.022502273321151733, - -0.019430333748459816, - 0.014993088319897652, - -0.030011460185050964, - 0.03157903254032135, - 0.01691463030874729, - -0.0032046777196228504, - -0.019834868609905243, - 0.047355908900499344, - -0.004393000155687332, - -0.01110575720667839, - -0.025966107845306396, - 0.015359697863459587, - 0.016699722036719322, - 0.01542290672659874, - 0.0031493701972067356, - -0.017660493031144142, - 0.02222415618598461, - 0.0021032672375440598, - 0.01618141122162342, - 0.003473314456641674, - 0.014677044935524464, - -0.010979339480400085, - -0.004317149519920349, - -0.008052780292928219, - -0.014398926869034767, - 0.004911310970783234, - -0.01312211249023676, - -0.041389014571905136, - 0.014917237684130669, - 0.02436060830950737, - 0.03299490734934807, - 0.07423222064971924, - 0.042779602110385895, - 0.008520524017512798, - 0.006554735358804464, - 0.010593767277896404, - 0.006542093586176634, - 0.0011282741324976087, - 0.014297792688012123, - 0.004541540518403053, - -0.033879827708005905, - 0.019683169201016426, - -0.016067635267972946, - 0.005587643478065729, - -0.0084383524954319, - -0.007085687946528196, - 0.03367755934596062, - -0.020656581968069077, - 0.0185959804803133, - -0.009146288968622684, - 0.02166792005300522, - 0.036736857146024704, - -0.008406748063862324, - 0.0027843404095619917, - 0.02937937341630459, - -0.03863311558961868, - 0.0021601549815386534, - 0.02481571026146412, - -0.02725556306540966, - -0.00038735041744075716, - -0.011516612954437733, - -0.0009504998452030122, - 0.009557145647704601, - -0.05334808677434921, - -0.02728084661066532, - 0.018166162073612213, - -0.002686366904526949, - -0.0011938530951738358, - -0.01955675147473812, - 0.029556358233094215, - 0.002251807600259781, - 0.03448662906885147, - 0.018886739388108253, - -0.02338719554245472, - -0.029075970873236656, - -0.018760323524475098, - -0.009070439264178276, - -0.013577214442193508, - -0.019278634339571, - -0.02290680818259716 - ], - "sparse": "SparseEmbedding(values=array([0.79960247, 1.01495765, 1.66865085, 1.70292539, 2.05861231,\n 0.488592 , 2.04112204, 1.46628482, 1.46628482, 0.488592 ,\n 0.488592 , 1.53007097, 0.488592 , 0.488592 , 1.29370147,\n 0.79960247, 0.79960247, 1.17290571, 0.488592 , 0.79960247,\n 1.75972504, 1.01495765, 1.01495765, 1.01495765, 1.38907387,\n 0.488592 , 0.488592 , 0.79960247, 0.488592 , 0.79960247,\n 1.53007097, 1.17290571, 0.79960247, 0.79960247, 1.29370147,\n 0.488592 , 0.488592 , 1.58365358, 0.488592 , 1.70292539,\n 0.488592 , 0.488592 , 0.488592 , 1.01495765, 1.17290571,\n 1.17290571, 1.46628482, 1.17290571, 0.79960247, 1.66865085,\n 0.79960247, 1.29370147, 0.488592 , 0.488592 , 1.29370147,\n 1.17290571, 1.17290571, 1.17290571, 2.01432511, 1.17290571,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.79960247,\n 0.488592 , 1.17290571, 0.488592 , 0.488592 , 1.38907387,\n 1.01495765, 0.488592 , 0.79960247, 0.79960247, 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 1.38907387, 0.79960247,\n 0.79960247, 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 1.01495765, 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 1.29370147, 0.488592 ,\n 0.488592 , 1.38907387, 0.488592 , 1.01495765, 0.488592 ,\n 0.488592 , 1.01495765, 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 1.46628482, 1.38907387, 0.488592 ,\n 0.488592 , 0.488592 , 1.17290571, 0.488592 , 1.70292539,\n 1.01495765, 1.29370147, 1.29370147, 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 1.17290571, 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.79960247, 0.488592 , 1.01495765,\n 0.79960247, 1.80487512, 1.17290571, 1.17290571, 1.38907387,\n 1.38907387, 0.488592 , 1.17290571, 1.01495765, 1.53007097,\n 1.17290571, 1.17290571, 1.38907387, 0.488592 , 0.488592 ,\n 1.17290571, 1.01495765, 0.79960247, 0.488592 , 0.79960247,\n 0.488592 , 0.488592 , 0.79960247, 1.17290571, 0.488592 ,\n 1.46628482, 0.488592 , 0.79960247, 0.488592 , 0.488592 ,\n 0.488592 , 1.01495765, 0.79960247, 0.488592 , 0.488592 ,\n 0.79960247, 1.01495765, 0.488592 , 0.488592 , 0.488592 ,\n 1.17290571, 0.488592 , 1.38907387, 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.79960247, 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.79960247, 1.01495765, 0.79960247,\n 0.79960247, 0.488592 , 0.79960247, 0.488592 , 1.46628482,\n 0.79960247, 0.488592 , 0.79960247, 0.79960247, 0.488592 ,\n 0.79960247, 1.01495765, 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 1.38907387, 0.488592 , 0.488592 , 0.488592 ,\n 0.79960247, 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.79960247,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.79960247,\n 0.79960247, 0.488592 , 0.79960247, 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.79960247, 0.488592 , 0.79960247, 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 1.01495765, 0.488592 , 0.488592 , 0.79960247,\n 0.79960247, 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.79960247,\n 0.79960247, 0.79960247, 0.79960247, 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.79960247, 0.488592 ,\n 0.488592 , 0.488592 , 1.17290571, 0.488592 , 0.79960247,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.79960247, 0.488592 ,\n 0.488592 , 0.79960247, 0.488592 , 0.488592 , 0.488592 ,\n 0.79960247, 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.79960247, 0.488592 ,\n 0.488592 , 0.79960247, 0.488592 , 1.38907387, 0.488592 ,\n 0.488592 , 0.79960247, 0.488592 , 0.488592 , 0.79960247,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.79960247, 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 , 0.488592 , 0.488592 , 0.488592 ,\n 0.488592 , 0.488592 ]), indices=array([ 19522071, 1810453357, 1480001521, 1427900950, 1109731834,\n 1348083103, 408270109, 1975311753, 1381219851, 1162941628,\n 1794730081, 1505931685, 755926846, 1302770114, 1515684580,\n 2137308367, 15380440, 267236283, 1182958118, 148163374,\n 1047604504, 1247820726, 912658635, 1092081572, 147047731,\n 432846507, 293128021, 1779724648, 1470230192, 2053391496,\n 2124172637, 808465105, 1173588400, 294417235, 1286817522,\n 154621355, 1425081645, 1174634009, 735797397, 1669595920,\n 74040069, 289317480, 655576192, 659326392, 1612226653,\n 843816345, 433708589, 378174453, 277400992, 651773314,\n 830792979, 1880984647, 840747077, 363211781, 562659716,\n 999597208, 2141189226, 454160048, 164058840, 1589814399,\n 427800532, 1446850098, 1570279607, 372990882, 1448945211,\n 1757934436, 940461617, 646018091, 2022169168, 1160767104,\n 73907278, 367467701, 1524118738, 457259117, 99212807,\n 1219669695, 872719015, 916214203, 913777079, 990385963,\n 1033482951, 1250753071, 1281511502, 1000845101, 512795157,\n 1513587683, 1963377208, 1536259167, 915344176, 565373295,\n 1780067147, 538769186, 1927841000, 1304076062, 1920874545,\n 364305688, 987377478, 999490782, 812080723, 1693284273,\n 82935738, 1055508231, 1079921207, 504370091, 1821780382,\n 444697724, 1769347644, 576243895, 192819851, 1354425271,\n 582292205, 728497482, 1782292956, 614387093, 110234102,\n 1535770478, 466949017, 1413554298, 1955583600, 1971262126,\n 147714150, 920842695, 311286247, 1794747217, 2103309648,\n 1340347458, 1997030039, 651063971, 1762723307, 1167073666,\n 576280510, 1817689384, 338063690, 1836140557, 1617841679,\n 2122108701, 106814265, 641040124, 1087229392, 1264823322,\n 1117092987, 210844029, 1280290679, 2033999361, 1510964117,\n 306285114, 955771676, 1692528561, 1894123915, 1736030173,\n 1933400130, 580903046, 2135250061, 628943834, 1510198529,\n 717918380, 1666082760, 2097485727, 1515776560, 76479261,\n 1740121004, 1337361765, 1293336596, 1082143356, 579973860,\n 231980230, 126679035, 1938199691, 530956379, 671668793,\n 1419260974, 124322104, 730270397, 1000907808, 1287002443,\n 583722290, 2003710827, 499733850, 62357295, 594472476,\n 1147900472, 1783493815, 1638510030, 279615635, 806590645,\n 1282568013, 1641383905, 1177169128, 719521820, 844514337,\n 1122754679, 1958460138, 990918675, 1555540962, 264741300,\n 1416371393, 457652548, 1362353402, 1717424474, 1734550606,\n 193831121, 621876938, 204345709, 853810000, 1843938566,\n 188536152, 476704413, 998260387, 917062287, 1966288579,\n 1082468256, 1939172666, 50210505, 693328709, 1147485540,\n 1322085252, 47951928, 1060986471, 100619008, 404895453,\n 2048355960, 80777783, 877908919, 1827422926, 330665210,\n 2115907048, 994276901, 1918983413, 963966427, 1618153130,\n 132109433, 562850081, 423477467, 1831058354, 472518677,\n 1793743868, 868289168, 828667247, 502467026, 1923631478,\n 617132444, 142582585, 697303812, 357609272, 509972577,\n 540303681, 1701744857, 743435915, 525617825, 415303215,\n 1260263029, 560035976, 591160358, 369617079, 543259558,\n 975478946, 218603535, 738409095, 1789724163, 2129980371,\n 31551153, 260913582, 2147055907, 1615400702, 1721868368,\n 428565317, 916176425, 1327159833, 2067996345, 1704939506,\n 1822852313, 624122466, 1114167007, 1293676246, 1946192279,\n 192302745, 555487974, 887327011, 1403471297, 904391936,\n 176244452, 1459109293, 344959277, 1733315339, 742311859,\n 1219188223, 2086542785, 1407327463, 935622057, 1955339301,\n 1049267386, 617657993, 312766046, 652277073, 1156973226,\n 988457187, 1772413527, 1657799547, 1553747220, 1819996810,\n 1689357290, 1082106827, 1055463565, 1439547398, 1479759183,\n 1239234285, 1243820322, 412120895, 1566907605, 603353734,\n 649860119, 1475735686, 1076883329, 1782143793, 1439750652,\n 1613215433, 816473563, 174840510, 999122703, 1340609500,\n 295945903, 1928137580, 1185887606, 304522637, 1093696873,\n 1852771076, 1235706950, 382377353, 1434424779, 350185031,\n 2026875092, 739092865, 2040016926, 1737956964, 496086325,\n 1884990000, 1012568720, 1686095082, 1448994436, 943086991,\n 640485586, 1256877376, 1839611937, 168362797, 880356403,\n 230107829, 988930212, 1095274335, 997168741, 669283045,\n 749129358, 218125280, 1692320747, 1039059326, 439767940,\n 33848118, 1525409953, 517043180, 1735537904, 403286721,\n 822399569, 1818659887, 1332909437, 1398771021, 220308237,\n 516830072, 2128902381, 1226210254, 1034760247, 1095141339,\n 908949234, 160566303, 760660503, 1049975174, 637923213,\n 992943682, 2034018142, 1844275409, 735402461, 784370437,\n 604704176, 64166489, 893265301, 1798245528, 2085059943,\n 2085165576, 829191440, 761563882, 1203209786, 1725631217,\n 2022840656, 1587409733, 1513130772, 2027326372, 347721291,\n 602572328, 2128748954]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 44, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 936 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000045.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000045.json deleted file mode 100644 index eb9ba52b3ea95c12c47a64e66f41a813729abdd1..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000045.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000045", - "content": "2.1.2 Mehrwert nachhaltiger Stadtentwicklung Der Mehrwert nachhaltiger Stadtentwicklung ist schwer messbar, da viele Faktoren subjektiv beeinflusst werden. Bott et al. unterscheiden zwischen dem \u00f6konomischen, dem \u00f6kologischen Mehrwert und dem sozialen Mehrwert f\u00fcr Mensch und Gesellschaft. Au\u00dferdem zeigen sie die Komplexit\u00e4t einer nachhaltigen Stadtplanung auf: Zwischen den einzelnen Komponenten der Dimensionen gibt es unterschiedliche Wechselwirkungen, die in der Planung ber\u00fccksichtigt werden m\u00fcssen. In Abbildung 2 sind m\u00f6gliche Wechselwirkungen zwischen Stadtgr\u00fcn, Energiebedarf und Mobilit\u00e4t dargestellt. Dies macht die Planung deutlich komplexer und zeitintensiver, wird aber im Ergebnis die Resilienz der St\u00e4dte auf lange Sicht steigern. (Bott et al. 2018, 28 ff) Verschattung Durchl\u00fcftung Stadtklima Verdunstung thermischer Komfort urbaner Wasserhaushalt Stadtgr\u00fcn Energiebedarf Wohlbefinden Biodiversit\u00e4t Freiraum FI Gesundheit Mobilit\u00e4t Versiegelung Dichte Verkehrsaufkommen Abbildung 2: Dimensionen urbaner Nachhaltigkeit (eigene Darstellung nach Bott et al. 2018, S. 31) Die Wechselwirkungen, aber auch resultierende Interessenskonflikte zwischen den einzelnen Dimensionen, zeigt das folgende Beispiel (angelehnt an Bott et al. 2018, S. 31). Das Platzangebot in dem urbanen Raum ist begrenzt. Bei der Umstrukturierung freiwerdender Fl\u00e4chen entsteht ein Interessenskonflikt zwischen Entsiegelung und Nachverdichtung. Nachverdichtung bedeutet die Schaffung neuen Wohnraums, der vor allem in Zeiten von Wohnungsmangel dringend ben\u00f6tigt wird (Mehrwert f\u00fcr Mensch und Gesellschaft). In der Folge entsteht ein erh\u00f6hter Mobilit\u00e4tsbedarf nachverdichteten Gebieten, der zwar zu einer effizienteren Nutzung der bestehenden Verkehrssystemen f\u00fchrt, aber meist auch zu einer Erschlie\u00dfung neuer Verkehrswege zwingt und damit die Versiegelung erh\u00f6ht. Dies steht h\u00e4ufig im Widerspruch zu der \u00f6kologischen Dimension der nachhaltigen Stadtentwicklung. Den Versiegelungsgrad zu in den 5 Theorieteil senken und das Gr\u00fcnangebot in der Stadt zu erh\u00f6hen, f\u00f6rdert den thermischen Komfort der Bev\u00f6lkerung (Mehrwert f\u00fcr Mensch und Gesellschaft), ist f\u00fcr den Erhalt der Biodiversit\u00e4t im urbanen Raum essenziell (Mehrwert \u00d6kologie) und senkt die Energiekosten (Mehrwert \u00d6konomie) (vgl. Bott et al. 2018, S. 31). Die Erh\u00f6hung des Gr\u00fcnvolumens stellt einen wichtigen Faktor in der klimaresilienten Anpassung von St\u00e4dten dar und sollte deshalb verst\u00e4rkt in die Planung integriert werden. In Kapitel 2.3 wird auf die Wirkungsweise und den Mehrwert von Stadtgr\u00fcn n\u00e4her eingegangen.", - "embedding": { - "dense": [ - 0.028410008177161217, - -0.008530687540769577, - 0.021595705300569534, - -0.012565473094582558, - 0.0007677298854105175, - 0.02037886530160904, - -0.017842715606093407, - -0.00868439394980669, - -0.01367984153330326, - -0.03758113831281662, - 0.010496844537556171, - 0.019520673900842667, - -0.015191284939646721, - 0.014538033865392208, - -0.006465262267738581, - -0.015216902829706669, - 0.04688035696744919, - -0.013756695203483105, - 0.007384296506643295, - -0.007621260359883308, - -0.015729255974292755, - 0.01367984153330326, - 0.0067118327133357525, - -0.021493233740329742, - -0.01086189690977335, - 0.031227953732013702, - 0.0368894599378109, - -0.030305717140436172, - -0.013372429646551609, - 0.0004611182666849345, - 0.0038842810317873955, - -0.004700844641774893, - -0.013244341127574444, - 0.012821649201214314, - -0.012943333946168423, - 0.00993325561285019, - -0.004892976954579353, - 0.00860113650560379, - 0.0222233384847641, - -0.006289140786975622, - 0.01187379565089941, - -0.00673104589805007, - 0.001190421637147665, - 0.0047392710112035275, - -0.011752110905945301, - 0.026219697669148445, - 0.003890685271471739, - -0.009785953909158707, - -0.02290220744907856, - 0.021160203963518143, - 0.017740244045853615, - 0.021582895889878273, - -0.018688097596168518, - 0.011252566240727901, - -0.012936929240822792, - -0.009734719060361385, - -0.014627696014940739, - 0.013513326644897461, - 0.0033014786895364523, - -0.019482247531414032, - -0.02920415624976158, - -0.015421844087541103, - -0.02012268826365471, - 0.023273663595318794, - -0.03407151624560356, - -0.01644655130803585, - -0.027820801362395287, - -0.004899381659924984, - 0.020430101081728935, - -0.008780459873378277, - 0.04780259355902672, - 0.040142904967069626, - 0.027385301887989044, - -0.003426364855840802, - 0.02140357345342636, - 0.007128119934350252, - 0.0007180956308729947, - 0.008069569244980812, - -0.006465262267738581, - 0.007794179487973452, - 0.0013049006229266524, - -0.019328540191054344, - -0.023440178483724594, - 0.042986467480659485, - 0.017817096784710884, - 0.034942518919706345, - -0.00143138796556741, - 0.02643744647502899, - 0.013782312162220478, - 0.01019583735615015, - -0.002856371458619833, - 0.004742473363876343, - -0.0020526167936623096, - 0.012898502871394157, - -0.0011095658410340548, - -0.006023357156664133, - -0.006763068027794361, - -0.015255329199135303, - 0.025976328179240227, - -0.009561799466609955, - -0.012328509241342545, - -0.0007477160543203354, - -0.007659686729311943, - -0.002614604542031884, - -0.03112548217177391, - 0.0009246381814591587, - -0.0054533639922738075, - 0.023337706923484802, - 0.01838068664073944, - -0.010727403685450554, - -0.020084261894226074, - 0.03970740735530853, - -0.027615860104560852, - -0.02215929515659809, - 0.003570464439690113, - -0.021762220188975334, - 0.025041284039616585, - 0.007774966303259134, - 0.00808878242969513, - -0.008991805836558342, - 0.013410856015980244, - -0.010573698207736015, - 0.011508743278682232, - -0.01971280574798584, - 0.03220142424106598, - 0.013474900275468826, - 0.002974853152409196, - 0.008742033503949642, - -0.043780617415905, - -0.02776956744492054, - -0.014358710497617722, - 0.018662480637431145, - 0.010554485023021698, - 0.002084638923406601, - -0.03391781076788902, - 0.025374313816428185, - -0.012776818126440048, - 0.004707248881459236, - -0.03399466350674629, - -0.03973302245140076, - -0.0026802499778568745, - 0.005712742917239666, - -0.021429190412163734, - -0.014883873052895069, - 0.002187109552323818, - 0.02214648574590683, - 0.012008287943899632, - 0.03079245239496231, - 0.0043197814375162125, - -0.01187379565089941, - -0.0018909050850197673, - -0.03143289312720299, - 0.008409003727138042, - 0.010125388391315937, - -0.021710984408855438, - 0.005607069935649633, - -0.004960223566740751, - -0.0018556808354333043, - -0.015127240680158138, - -0.0013769504148513079, - 0.019341349601745605, - -0.02792327292263508, - 0.00455354293808341, - 0.006004143971949816, - 0.012168399058282375, - -0.0036697329487651587, - 0.0036441150587052107, - -0.005370106548070908, - 0.008882931433618069, - -0.010407183319330215, - -0.01802203804254532, - 0.03606969490647316, - -0.028384391218423843, - 0.024477694183588028, - -0.020494144409894943, - 0.018828995525836945, - 0.021672558039426804, - 0.014973534271121025, - -0.023119958117604256, - -0.027129124850034714, - -0.015460270456969738, - 0.00885090883821249, - 0.018662480637431145, - 0.03307242691516876, - -0.011982670053839684, - 0.00885731354355812, - 0.0397842600941658, - 0.03138165920972824, - 0.010932345874607563, - 3.387338074389845e-05, - 0.005539823789149523, - 0.01279603224247694, - 0.007986311800777912, - -0.012392553500831127, - -0.6349086165428162, - 0.011355036869645119, - 0.003893887624144554, - -0.01729193516075611, - 0.010765830986201763, - 0.009203151799738407, - 0.040808964520692825, - 0.013577370904386044, - 0.0025089315604418516, - 0.0348912812769413, - -0.0070512667298316956, - 0.00404759356752038, - -0.030741218477487564, - 0.0006656594341620803, - 0.003359118476510048, - -0.01569082960486412, - 0.00943371094763279, - -0.021083351224660873, - 0.03104862943291664, - 0.018675290048122406, - -0.004973032511770725, - 0.013910400681197643, - -0.0028659780509769917, - -0.006285938434302807, - 0.014614887535572052, - 0.02214648574590683, - 0.0054533639922738075, - -0.023952532559633255, - -0.0005980127607472241, - 0.021698176860809326, - 0.0018812984926626086, - 0.03002392314374447, - -0.029562804847955704, - 0.021954352036118507, - 0.05210636556148529, - 0.028051361441612244, - -0.0058728535659611225, - 0.0007405111100524664, - 0.006164254620671272, - 0.0019581515807658434, - 0.00160991121083498, - 0.0020830377470701933, - -0.009081467986106873, - -0.004652811214327812, - 0.008575518615543842, - 0.010791447944939137, - 0.039297524839639664, - -0.010554485023021698, - -0.019828084856271744, - -0.015280947089195251, - 0.007666090968996286, - -0.012110758572816849, - 0.014307474717497826, - 0.014807019382715225, - 0.0217237938195467, - 0.001080745947547257, - 0.024131854996085167, - -0.017407214269042015, - 0.0023792420979589224, - -0.0035736665595322847, - 7.635269867023453e-05, - -0.004105233587324619, - -0.01086189690977335, - -0.030587511137127876, - -0.00876124668866396, - 0.041987378150224686, - -0.023004677146673203, - -0.0003708559670485556, - -0.007986311800777912, - -0.018585627898573875, - -0.025105327367782593, - 0.026616770774126053, - 0.006987222470343113, - -0.022210529074072838, - 0.020609425380825996, - 0.0071345241740345955, - 0.03373848646879196, - -0.016907669603824615, - -0.006234703119844198, - 0.025528019294142723, - 0.0014089724281802773, - -0.016075095161795616, - -0.005264433566480875, - 0.004732866771519184, - 0.013948827050626278, - -0.03299557417631149, - -0.014205004088580608, - -0.0035256333649158478, - 0.012911311350762844, - 0.011329419910907745, - 0.02146761678159237, - 0.009728314355015755, - -0.010176624171435833, - -0.023606693372130394, - -0.005059491842985153, - 0.0510048046708107, - -0.01417938619852066, - 0.0381191112101078, - 0.012495024129748344, - -0.04890415444970131, - -0.04580441489815712, - 0.0010607321746647358, - 0.033431075513362885, - -0.0062507144175469875, - 0.001115169725380838, - -0.0038266412448138, - -0.00656453100964427, - 0.005363701842725277, - 0.03873393312096596, - -0.028384391218423843, - 0.0034455780405551195, - 0.011720089241862297, - -0.007871032692492008, - -0.004191692918539047, - -0.009971682913601398, - -0.013500518165528774, - 0.04306332394480705, - -0.015959816053509712, - 0.020109880715608597, - 0.019277304410934448, - 0.001508240937255323, - 0.007326656952500343, - 0.02869180217385292, - -0.021032115444540977, - 0.007550811395049095, - 0.04347320646047592, - -0.0218903087079525, - 0.020071452483534813, - -0.021326718851923943, - -0.008056760765612125, - 0.0038362478371709585, - 0.023043103516101837, - 0.034020282328128815, - -0.0019229272147640586, - 0.0362234003841877, - 0.002182306256145239, - 0.015972623601555824, - -0.007781370542943478, - -0.019687188789248466, - -0.0218903087079525, - 0.006170658860355616, - -0.010215050540864468, - 0.0003786613524425775, - -0.062302201986312866, - -0.023965340107679367, - -0.026821712031960487, - -0.01702294871211052, - 0.00307091954164207, - -0.02769271284341812, - 0.011841773055493832, - -0.02332489937543869, - -0.009484946727752686, - -0.03127918764948845, - 0.00698081823065877, - 0.0010855492437258363, - 0.0062923431396484375, - 0.003852258902043104, - -0.005731956101953983, - -0.01535779982805252, - -0.019174834713339806, - -0.0010134995682165027, - 0.006052177399396896, - -0.03860584646463394, - -0.011604809202253819, - -0.014691740274429321, - -0.008972592651844025, - -0.002374438801780343, - -0.0009446520125493407, - -0.00851147435605526, - -0.031253572553396225, - -0.005299658048897982, - -0.01195064838975668, - -0.007704517804086208, - 0.014986343681812286, - -0.011592000722885132, - -0.011092456057667732, - -0.02397814951837063, - -0.022364236414432526, - 0.0017355979653075337, - -0.0028115406166762114, - 0.014153769239783287, - -0.004335792735219002, - -0.034097135066986084, - -0.007800584193319082, - 0.010586506687104702, - -0.007422723341733217, - 0.002491319552063942, - -0.007896650582551956, - 0.0062507144175469875, - 0.010074153542518616, - 0.02399095892906189, - 0.029716510325670242, - -0.0018732929602265358, - 0.006820707581937313, - -0.013923210091888905, - -0.013987254351377487, - -0.017086993902921677, - -0.0010975574841722846, - -0.022838162258267403, - 0.019251687452197075, - 0.04887853562831879, - 0.013513326644897461, - -0.006189872045069933, - 0.003455184865742922, - 0.007269016932696104, - -0.017471259459853172, - -0.0019309327472001314, - 0.012053119018673897, - 0.01043920498341322, - 0.0011760116321966052, - 0.01821417175233364, - 0.0055078016594052315, - -0.027872037142515182, - -0.0024272752925753593, - -0.011649640277028084, - 0.04109076038002968, - -0.007371488027274609, - 0.0071345241740345955, - -0.008274511434137821, - -0.014512416906654835, - 0.01476859301328659, - -0.021429190412163734, - 0.02247951552271843, - -0.008063165470957756, - -0.006570935249328613, - -0.0051747714169323444, - -0.018816186115145683, - 0.02584823966026306, - -0.010208645835518837, - -0.014538033865392208, - 0.004066806752234697, - 0.0192260704934597, - 0.005680720787495375, - 0.0009182337671518326, - -0.0006788685568608344, - 0.01827821508049965, - 0.017304744571447372, - -0.019776849076151848, - 0.03179154172539711, - 0.013013781979680061, - 0.014538033865392208, - 0.025143753737211227, - 0.0021646940149366856, - -0.008140018209815025, - 0.02592509426176548, - -0.009055850096046925, - 0.03294433653354645, - 0.02507971040904522, - 0.008376982063055038, - 0.015011961571872234, - -0.01526813767850399, - 0.003058110596612096, - 0.006910369731485844, - -0.027129124850034714, - 0.009158320724964142, - -0.02131391130387783, - 0.012187612242996693, - -0.013359621167182922, - 0.03071559965610504, - 0.00776215735822916, - -0.004694439936429262, - 0.012552663683891296, - 0.0067822812125086784, - -0.00467842910438776, - 0.005667911842465401, - -0.0008990205242298543, - 0.0009414497762918472, - -0.009677079506218433, - -0.013782312162220478, - 0.0030244875233620405, - -0.0005551832146011293, - -0.011758515611290932, - -0.014909490942955017, - 0.009004615247249603, - 0.005360499955713749, - -0.00810159184038639, - -0.010637742467224598, - 0.007198568433523178, - 0.008607541210949421, - 0.008319341577589512, - -0.0070768846198916435, - 0.00927360076457262, - -0.008210467174649239, - 0.04347320646047592, - -0.012693560682237148, - -0.022876588627696037, - -0.011803346686065197, - 0.009465733543038368, - -0.013705459423363209, - -0.006583744194358587, - -0.012911311350762844, - -0.015498696826398373, - -0.03245760127902031, - -0.018828995525836945, - 0.009651461616158485, - -0.014512416906654835, - 0.009990896098315716, - -0.023606693372130394, - 0.008895739912986755, - -0.003455184865742922, - 0.003091733902692795, - -0.019674379378557205, - -0.013423665426671505, - -0.003900292096659541, - 0.012328509241342545, - 0.0074419365264475346, - -0.025899475440382957, - -0.013513326644897461, - -0.009728314355015755, - -0.03635149076581001, - -0.020071452483534813, - -0.032431986182928085, - 0.002568172523751855, - 0.0012480614241212606, - 0.005984930787235498, - 0.009151916950941086, - 0.00030320926452986896, - -0.0042781527154147625, - 0.04147502779960632, - -0.004665620159357786, - 0.013180296868085861, - -0.03366163372993469, - 0.011713684536516666, - 0.01162402331829071, - 0.04798191785812378, - 0.004611182492226362, - 0.010496844537556171, - 0.014307474717497826, - 0.005139547400176525, - -0.010285499505698681, - 0.01044560968875885, - -0.017573729157447815, - -0.02013549767434597, - -0.014563651755452156, - 0.0011319812620058656, - -0.024362415075302124, - 0.01726631633937359, - -0.004790506325662136, - 0.016151947900652885, - 0.0008461840334348381, - 0.0023216023109853268, - -0.01877775974571705, - 0.018585627898573875, - 0.0012312497710809112, - 0.015024770051240921, - -0.019597526639699936, - -0.0017868332797661424, - 0.050620537251234055, - 0.004995448049157858, - 0.019520673900842667, - 0.03983549401164055, - 0.021160203963518143, - 0.005418139509856701, - -0.00860113650560379, - 0.014666122384369373, - 0.02559206448495388, - 0.013987254351377487, - 0.014243430458009243, - -0.04050155356526375, - 0.0034936112351715565, - 0.015972623601555824, - -0.00509471632540226, - 0.028333155438303947, - 0.011220544576644897, - 0.026949800550937653, - 0.0207247044891119, - -0.005306062288582325, - -0.0059304931201040745, - 0.019341349601745605, - -0.009741123765707016, - -0.003688946133479476, - 0.027231594547629356, - -0.001266474137082696, - -0.013692650943994522, - -5.298657197272405e-05, - -0.030766835436224937, - -0.03071559965610504, - -0.015485888347029686, - -0.0036249018739908934, - -0.02515656314790249, - 0.018406303599476814, - -0.013487708754837513, - -0.005017863120883703, - -0.01362860668450594, - -0.03045942261815071, - -0.01870090700685978, - -0.00018132514378521591, - -0.017599347978830338, - 0.0020750320982187986, - -0.0016003045020624995, - 0.0025137350894510746, - 0.003980347421020269, - -0.022364236414432526, - 0.0054405550472438335, - 0.03404589742422104, - -0.01401287131011486, - -0.011290992610156536, - -0.011150095611810684, - 0.0017291934927925467, - 0.010669764131307602, - 0.021787837147712708, - -0.0058312248438596725, - -0.0021374751813709736, - -0.001748406793922186, - -0.0009046243503689766, - -0.01187379565089941, - -0.011816155165433884, - -0.022018397226929665, - -0.01920045167207718, - -0.0063788024708628654, - -0.01712542027235031, - -0.022761309519410133, - -0.008485857397317886, - 0.01636969856917858, - -0.0008902144036255777, - -0.0018124509369954467, - 0.00792226754128933, - 0.016215993091464043, - -0.005450161639600992, - 0.002822748152539134, - 0.004976234398782253, - -0.007909459061920643, - 0.04201299697160721, - -0.03245760127902031, - 0.023273663595318794, - 0.01077863946557045, - 0.008748438209295273, - -0.012495024129748344, - 0.015332181937992573, - 0.0019213261548429728, - -0.022530751302838326, - 0.011374250054359436, - 0.0007609251770190895, - 0.007768562063574791, - 0.024183090776205063, - -0.021749410778284073, - 0.018150126561522484, - 0.0035256333649158478, - -0.020353248342871666, - 0.011860986240208149, - 0.019187644124031067, - -0.0011047625448554754, - 0.03227827697992325, - -0.010311116464436054, - -0.01010617520660162, - -0.031176717951893806, - 0.03307242691516876, - 0.0006484475452452898, - 0.020327629521489143, - 0.005190782714635134, - 0.0015362603589892387, - 0.02433679811656475, - -0.02659115381538868, - 0.004441465716809034, - -0.005796000361442566, - 0.016728345304727554, - 0.015152858570218086, - 0.004704046528786421, - -0.004479892086237669, - -0.01161121390759945, - 0.011764920316636562, - 0.012078736908733845, - -0.03386657312512398, - 0.006679810583591461, - -0.01405129861086607, - 0.01401287131011486, - 0.003861865494400263, - 0.021441999822854996, - 0.014512416906654835, - -0.02574576996266842, - -0.018329450860619545, - 0.007800584193319082, - -0.015460270456969738, - 0.030920540913939476, - -0.030741218477487564, - -0.012155589647591114, - -0.026821712031960487, - 0.013180296868085861, - -0.014397136867046356, - -0.021915925666689873, - 0.019482247531414032, - -0.03817034512758255, - 0.008063165470957756, - 0.00944011565297842, - 0.013167488388717175, - 0.004050795920193195, - 0.019571907818317413, - -0.0016491382848471403, - -0.004034784622490406, - -0.011764920316636562, - 0.0059433020651340485, - 0.008460239507257938, - -0.006654192693531513, - 0.05177333578467369, - 0.015024770051240921, - 0.019149215891957283, - 0.001996577950194478, - 0.01576768234372139, - 0.015742065384984016, - 0.05126098170876503, - -0.017804289236664772, - -0.0342252217233181, - -0.03840090334415436, - -0.0151400500908494, - -0.008357768878340721, - 0.014320284128189087, - -0.0022543559316545725, - 0.012046714313328266, - -0.02987021580338478, - -0.011380654759705067, - 0.013103444129228592, - 0.016484977677464485, - -0.012302891351282597, - 0.011060433462262154, - 0.015818918123841286, - -0.035531725734472275, - 0.023606693372130394, - 0.017407214269042015, - -0.002161491895094514, - 0.008396195247769356, - -0.013923210091888905, - -0.026616770774126053, - -0.030920540913939476, - 0.013244341127574444, - -0.01753530278801918, - -0.0006352384225465357, - 0.010753021575510502, - -0.0198921300470829, - -0.0006204282399266958, - -0.01070178672671318, - 0.005882460158318281, - -0.03604407608509064, - 0.009542586281895638, - -0.012770414352416992, - 0.005799202714115381, - -0.010720999911427498, - -0.02073751389980316, - -0.039809875190258026, - 0.012751201167702675, - -0.008421813137829304, - -0.00960022583603859, - 0.03714563697576523, - -0.008370577357709408, - 0.01870090700685978, - 0.019238878041505814, - -7.505180110456422e-05, - 0.011521551758050919, - 0.0019437415758147836, - 0.042832762002944946, - 0.005165164824575186, - -0.04488217830657959, - -0.011777728796005249, - -0.0342252217233181, - 0.0025777791161090136, - -0.016459360718727112, - 0.02046852745115757, - -0.005568643566220999, - -0.02677047625184059, - -0.024477694183588028, - 0.0007613254711031914, - -0.00480331527069211, - -0.01888023130595684, - -0.004617587197571993, - 0.0384521409869194, - 0.031407278031110764, - -0.010400778613984585, - 0.00015610775153618306, - -0.011592000722885132, - 0.00013599386147689074, - -0.0050498852506279945, - 0.007794179487973452, - -0.006500486750155687, - 0.005366904195398092, - 0.004383825697004795, - -0.0050050546415150166, - 0.03304680809378624, - -0.002311995718628168, - 0.007230590563267469, - 0.015421844087541103, - -0.0192260704934597, - -0.01963595300912857, - -0.024951621890068054, - -0.003919505048543215, - 0.013641415163874626, - 0.01543465256690979, - 0.025028474628925323, - 0.00451191421598196, - -0.004873763769865036, - 0.01930292323231697, - -0.013756695203483105, - -0.0009118293528445065, - 0.014486799016594887, - 0.00901101902127266, - 0.021685367450118065, - 0.01103481650352478, - -0.01720227301120758, - -0.006942391861230135, - -0.00047472765436396003, - 0.01795799471437931, - 0.0012352525955066085, - -0.007333061192184687, - -0.026821712031960487, - -0.014076915569603443, - -0.005603867582976818, - 0.00433899462223053, - 0.028896745294332504, - -0.0014337896136566997, - -0.00290440465323627, - -0.004111637827008963, - -0.014333092607557774, - -0.006036166101694107, - -0.014089724980294704, - 0.02725721336901188, - -0.012469406239688396, - -0.0006076193531043828, - -0.00513634504750371, - -0.0033719271887093782, - 0.022633221000432968, - -0.021531661972403526, - -0.01954629085958004, - -0.021160203963518143, - 0.02397814951837063, - -0.02013549767434597, - 0.014627696014940739, - 0.03791416808962822, - 0.01002291776239872, - -0.011547169648110867, - 0.010093366727232933, - -0.0009558597230352461, - -0.018739333376288414, - 0.018854614347219467, - 0.00455354293808341, - -0.03320051357150078, - 0.018252598121762276, - -0.019520673900842667, - 0.003717765910550952, - -0.0213907640427351, - -0.0005471776821650565, - 0.01712542027235031, - -0.011175713501870632, - -0.0042077042162418365, - -0.01770181767642498, - -0.01578049175441265, - 0.032508838921785355, - 0.008236084133386612, - -0.01962314359843731, - 0.04273029416799545, - -0.029076067730784416, - 0.007749348413199186, - 0.005245220381766558, - 0.0021358742378652096, - -0.011912222020328045, - -0.010215050540864468, - -0.024388032034039497, - -0.01405129861086607, - 0.029152920469641685, - -0.01384635642170906, - -0.01161761861294508, - 0.003442375920712948, - -0.028999214991927147, - -0.01602385938167572, - 0.021083351224660873, - 0.0037978212349116802, - -0.0010375160491093993, - -0.0071217152290046215, - 0.008242488838732243, - -0.009837189689278603, - 0.006852729711681604, - 0.0058760554529726505, - -0.025873858481645584, - -0.0027827206067740917, - 0.0004831334517803043, - -0.02466982789337635, - -0.023888487368822098, - -0.009965278208255768, - 0.026796095073223114, - 0.018150126561522484, - -0.042064230889081955, - 0.00518437847495079, - 0.019431011751294136, - -0.055487897247076035, - -0.04203861579298973, - 0.001349731581285596, - -0.004620789084583521, - 0.0006188271217979491, - 0.011508743278682232, - -0.023709164932370186, - 0.04055279120802879, - 0.004931403789669275, - 0.027615860104560852, - -0.01245659776031971, - -0.025694534182548523, - -0.0018188554095104337, - -0.009894829243421555, - 0.023171192035079002, - 0.010733808390796185, - -0.032508838921785355, - 0.005456566344946623, - 0.01620318368077278, - -0.0029780555050820112, - -0.01170728076249361, - 0.00238084327429533, - -0.004415847826749086, - 0.003304680809378624, - -0.021749410778284073, - 0.03414836898446083, - 0.023427369073033333, - -0.00792867224663496, - 0.020519763231277466, - -0.0200586449354887, - 0.0017452045576646924, - 0.022018397226929665, - 0.0006224295939318836, - -0.03314927965402603, - 0.00901742372661829, - -0.003852258902043104, - -0.0223898533731699, - -0.0007208975730463862, - 0.026616770774126053, - -0.01936696656048298, - -0.006410824600607157, - -0.01043920498341322, - 0.013859165832400322, - 0.02230019122362137, - -0.010592911392450333, - 0.01827821508049965, - 0.016241610050201416, - -0.002374438801780343, - -0.029818981885910034, - 0.010970772244036198, - -0.01743283122777939, - 0.009030232205986977, - 0.014397136867046356, - 0.0033014786895364523, - 0.020660659298300743, - -0.036120928823947906, - 0.00800552498549223, - -0.01743283122777939, - -0.0018140521133318543, - -0.012834458611905575, - -0.01679239049553871, - -0.023209618404507637, - -0.00826810672879219, - 0.015409035608172417, - 0.006763068027794361, - -0.003977145068347454, - -0.015588358975946903, - -0.01417938619852066, - -0.014704548753798008, - -0.007877437397837639, - -0.0016619471134617925, - -0.011598405428230762, - -0.01729193516075611, - 0.01679239049553871, - -0.011758515611290932, - -0.0036152952816337347, - 0.003801023354753852, - -0.0014538033865392208, - -0.009734719060361385, - 0.02273569256067276, - 0.18598437309265137, - -0.0004919395432807505, - -0.0033431074116379023, - 0.021352337673306465, - -0.002207923913374543, - -0.005674316547811031, - 0.03512183949351311, - -0.01996898278594017, - 0.006132232490926981, - 0.024541739374399185, - -0.024964431300759315, - 0.01845753937959671, - 0.014512416906654835, - 0.0032262266613543034, - 0.014947917312383652, - -0.02692418359220028, - -0.027129124850034714, - 0.009324835613369942, - 0.01754811219871044, - 0.026642387732863426, - 0.012322104535996914, - -0.02028920315206051, - -0.0038586631417274475, - -0.013359621167182922, - 0.023850060999393463, - 5.713943755836226e-05, - 0.003852258902043104, - 0.0006296345964074135, - 0.023452987894415855, - 0.01060571987181902, - 0.007275421638041735, - -0.012975355610251427, - -0.005341286770999432, - 0.001975763589143753, - 0.005709540564566851, - -0.005699933972209692, - 0.013654224574565887, - -0.03606969490647316, - 0.025015665218234062, - 0.025182180106639862, - 0.011937839910387993, - -0.007544407155364752, - -0.02314557507634163, - -0.026386212557554245, - 0.007608451414853334, - 0.02104492485523224, - -0.024477694183588028, - 0.013692650943994522, - 0.006317960564047098, - -0.017138229683041573, - -0.020161114633083344, - 0.0012120365863665938, - 0.012892098166048527, - 0.03706878423690796, - -0.009062254801392555, - 0.014422754757106304, - 0.0005315669113770127, - -0.022044014185667038, - -0.0015098421135917306, - 0.023196810856461525, - -0.030305717140436172, - 0.02358107641339302, - -0.010407183319330215, - 0.020519763231277466, - -0.030100775882601738, - -0.005270837806165218, - -0.021915925666689873, - 0.012943333946168423, - 0.00012398557737469673, - -0.0018668884877115488, - -0.012911311350762844, - -0.022953443229198456, - -0.03273939713835716, - 0.02792327292263508, - -0.006891156081110239, - -0.027615860104560852, - 0.017970804125070572, - 0.004489498678594828, - 0.018175745382905006, - 0.02910168655216694, - -0.009869211353361607, - -0.00047672903747297823, - -0.011425485834479332, - -0.04672665148973465, - 0.010753021575510502, - -0.036786992102861404, - 0.029972687363624573, - 0.00968988798558712, - -0.01617756485939026, - -0.008710011839866638, - -0.009452924132347107, - 0.006615766324102879, - 0.011675258167088032, - -0.03353354334831238, - 0.029716510325670242, - 0.01818855293095112, - 0.015460270456969738, - 0.008159231394529343, - -0.021352337673306465, - 0.011969861574470997, - 0.00388107867911458, - 0.07270298153162003, - 0.01870090700685978, - -0.013436473906040192, - 0.003938718698918819, - -0.00801833439618349, - -0.011022007092833519, - 0.013948827050626278, - 0.0047232601791620255, - -0.014999152161180973, - -0.010573698207736015, - -0.03491690009832382, - -0.0026178068947046995, - -0.01652340404689312, - -0.003061312949284911, - 0.023043103516101837, - 0.006071390584111214, - -0.00021875098173040897, - -0.004742473363876343, - -0.004527925048023462, - -0.003954729530960321, - 0.004281355068087578, - 0.015383417718112469, - -0.01830383390188217, - 0.01578049175441265, - -0.01417938619852066, - -0.0227228831499815, - -0.010708190500736237, - -0.014256239868700504, - -0.010541675612330437, - 0.020097071304917336, - -0.019776849076151848, - -0.01153436116874218, - 3.990254117525183e-05, - -0.003522431245073676, - 0.024964431300759315, - 0.0066990237683057785, - -0.03524992987513542, - -0.009068659506738186, - 0.0029700498562306166, - 0.0028195460326969624, - -0.012046714313328266, - -0.008075973950326443, - -0.017330361530184746, - 0.012687156908214092, - -9.821778803598136e-05, - -0.00488657271489501, - -0.005274040158838034, - -0.01617756485939026, - -0.018982701003551483, - 0.018508775159716606, - -0.01329557690769434, - 0.01127818413078785, - -0.02817944996058941, - 0.005238815676420927, - -0.0015874956734478474, - -0.02281254529953003, - -0.02616846188902855, - 0.026488682255148888, - 0.004848146345466375, - -0.007621260359883308, - 0.01526813767850399, - -0.009043041616678238, - -0.011905817314982414, - -0.011764920316636562, - 0.01996898278594017, - -0.15893208980560303, - 0.012693560682237148, - 0.015229711309075356, - -0.027539007365703583, - 0.013218723237514496, - -0.019943365827202797, - -0.00206542550586164, - -0.0070512667298316956, - -0.018585627898573875, - 0.005293253343552351, - 0.03883640468120575, - -0.006084199529141188, - -0.025284651666879654, - -0.026539918035268784, - -0.012091545388102531, - 0.012155589647591114, - -0.020942455157637596, - 0.030689982697367668, - -0.006388409063220024, - 0.014371518976986408, - 0.019994599744677544, - -0.02961403876543045, - 0.013180296868085861, - -0.006916773971170187, - 0.01077223476022482, - -0.004905785899609327, - -0.001011898391880095, - 0.03215019032359123, - -0.009888424538075924, - -0.006807898636907339, - 0.0072049726732075214, - -0.018316641449928284, - 0.050133801996707916, - -0.0033431074116379023, - -0.005760775879025459, - 0.0008629956282675266, - 0.02181345596909523, - -0.008140018209815025, - 0.004508711863309145, - 0.02500285767018795, - 0.03550610691308975, - -0.004607980605214834, - -0.0058760554529726505, - 0.019584717229008675, - -0.03865708038210869, - 0.014986343681812286, - 0.012968950904905796, - 0.00700643565505743, - -0.014832637272775173, - 0.008473047986626625, - 0.012168399058282375, - -0.0015386620070785284, - -0.020237967371940613, - 0.00818484928458929, - 0.006285938434302807, - 0.013871974311769009, - 0.006871942896395922, - 0.020763130858540535, - 0.0011912222253158689, - -0.004707248881459236, - 0.006032963749021292, - -0.010592911392450333, - 0.006068188231438398, - -0.004374219104647636, - -0.0054117352701723576, - -0.030510658398270607, - 0.00036365099367685616, - -0.0045983740128576756, - -0.02869180217385292, - 0.008165636099874973, - 0.00021594905410893261, - -0.0054245442152023315, - 0.02031482197344303, - 0.02028920315206051, - 0.0009894829709082842, - 0.003989954013377428, - 0.005546228028833866, - 0.004124446772038937, - 0.0037081593181937933, - -0.0012464603642001748, - -0.024464884772896767, - 0.051619626581668854, - -0.020020218566060066, - -0.010714595206081867, - -0.025451166555285454, - 0.004057200159877539, - -0.0032662544399499893, - -0.0002751899301074445, - 0.012674347497522831, - 0.011559979058802128, - 0.012334913946688175, - -0.03407151624560356, - -0.03212457150220871, - -0.010054940357804298, - -0.0015402630669996142, - -0.007992716506123543, - 0.02071189507842064, - 0.004086020402610302, - -0.007659686729311943, - -0.03120233677327633, - 0.0071345241740345955, - -0.014320284128189087, - -0.02308153174817562, - -0.005402128677815199, - 0.0037529903929680586, - 0.025707343593239784, - -0.008908548392355442, - 0.006542115472257137, - 0.0358903706073761, - -0.005283646751195192, - -0.016254419460892677, - -0.01279603224247694, - 0.017061375081539154, - 0.010054940357804298, - -0.009965278208255768, - 0.008607541210949421, - 0.012443788349628448, - -0.014678931795060635, - 0.007377892266958952, - -0.0039291116409003735, - 0.047776974737644196, - 0.0016891658306121826, - -0.03373848646879196, - 0.001719586900435388, - 0.011399867944419384, - -0.02887112647294998, - -0.1013435497879982, - 0.012680752202868462, - 0.003096537198871374, - 0.022697266191244125, - 0.013282767497003078, - 0.01962314359843731, - 0.005203591659665108, - 0.009331240318715572, - 0.017471259459853172, - 0.013346811756491661, - -0.043242644518613815, - -0.01954629085958004, - 0.0020558189135044813, - -0.01187379565089941, - 0.026744859293103218, - -0.02215929515659809, - -0.011470316909253597, - 7.370086677838117e-05, - -0.027667095884680748, - 0.03509622439742088, - 0.015383417718112469, - -0.01284086238592863, - -0.01229008287191391, - -0.014871063642203808, - -0.0010070950957015157, - 0.00835136417299509, - -0.024042194709181786, - 0.0035000157076865435, - 0.01136784628033638, - -9.151316044153646e-05, - 0.023529840633273125, - -0.016241610050201416, - 0.03847775608301163, - -0.030331334099173546, - 0.012251656502485275, - -0.007877437397837639, - -0.001039917697198689, - -0.028076978400349617, - -0.0051587605848908424, - -0.014807019382715225, - -0.009318431839346886, - -0.006609361618757248, - 0.010336734354496002, - -0.030638746917247772, - -0.020430101081728935, - -0.008364172652363777, - -0.021941544488072395, - 0.000715693982783705, - 0.000826170202344656, - -0.011169308796525002, - -0.037709228694438934, - -0.01643374189734459, - -0.015639593824744225, - -0.005501396954059601, - 0.005946504417806864, - -0.005040278658270836, - -0.01086830161511898, - -0.00801833439618349, - -0.007281825877726078, - 0.01861124485731125, - -0.01162402331829071, - 0.017227889969944954, - -0.039220668375492096, - 0.021915925666689873, - 0.013180296868085861, - 0.004361410159617662, - -0.02735968306660652, - -0.004623991437256336, - -0.0011688066879287362, - -0.026565534994006157, - -0.010810661129653454, - 0.0015226509422063828, - 0.006801494397222996, - -0.004908988252282143, - -0.03624901920557022, - 0.006891156081110239, - -0.02509251795709133, - -0.02232581004500389, - 0.010970772244036198, - -0.027052272111177444, - -0.014115342870354652, - -0.027795184403657913, - 0.03565981239080429, - -0.028333155438303947, - 0.017983611673116684, - -4.753280882141553e-05, - -0.0008814083412289619, - -0.009036636911332607, - 0.018675290048122406, - -0.018239788711071014, - 0.0035832731518894434, - -0.0013673437060788274, - 0.03499375283718109, - -0.02140357345342636, - 0.0025249426253139973, - -0.0027282831724733114, - 0.008978997357189655, - -0.006471666973084211, - 0.013398047536611557, - -0.006074592471122742, - -0.02458016574382782, - -0.007691708859056234, - -0.03668452054262161, - 0.013244341127574444, - 0.011803346686065197, - 0.0018877028487622738, - -0.00472005782648921, - 0.004313377197831869, - 0.010080557316541672, - 0.006993627175688744, - 0.00538611738011241, - 0.003845854429528117, - -0.017074184492230415, - 0.020532570779323578, - 0.021006498485803604, - -0.01567802019417286, - -0.01535779982805252, - 0.0013265155721455812, - 0.017227889969944954, - 0.030664363875985146, - 0.009760336950421333, - -0.009247982874512672, - -0.012655134312808514, - -0.007518789265304804, - -0.007563620340079069, - 0.002175901783630252, - -0.0427815280854702, - 0.004169277846813202, - -0.028307538479566574, - -0.003046903060749173, - -0.011944243684411049, - -0.007608451414853334, - 0.011931435205042362, - -0.008485857397317886, - 0.006916773971170187, - 0.009203151799738407, - -0.007691708859056234, - 0.001480221631936729, - 0.008473047986626625, - 0.03699193149805069, - -0.005001852288842201, - 0.06634979695081711, - -0.0407833494246006, - -0.02710350602865219, - 0.003002071985974908, - -0.02618126943707466, - 0.0034231627359986305, - -0.01102841179817915, - 0.0029092079494148493, - 0.0038586631417274475, - 0.027564624324440956, - -0.00792867224663496, - 0.04004043713212013, - 0.01018943265080452, - 0.004912190604954958, - -0.012674347497522831, - 0.023939723148941994, - -0.02710350602865219, - -0.003772203577682376, - 0.003046903060749173, - 0.0008245691424235702, - -0.030485041439533234, - 0.04990324378013611, - 0.004028380382806063, - 0.008306533098220825, - 0.0012704768450930715, - 0.018393496051430702, - -0.035608578473329544, - -0.024388032034039497, - 0.007019244600087404, - 0.01895708404481411, - -0.019174834713339806, - -0.02776956744492054, - -0.020084261894226074, - 0.007851819507777691, - 0.022594794631004333, - -0.0050915139727294445, - -0.0017516089137643576, - 0.031919632107019424, - -0.021454807370901108, - 0.0001723189343465492, - 0.03717125579714775, - 0.008421813137829304, - 0.0017708222148939967, - -0.02264603041112423, - 0.0007220983970910311, - 0.011758515611290932, - 0.011694471351802349, - -0.02356826700270176, - -0.005690327379852533, - -0.007787775248289108, - 0.008889335207641125, - 0.009914042428135872, - 0.007710922043770552, - -0.003037296235561371, - -0.014883873052895069, - 0.010400778613984585, - 0.01388478372246027, - 0.007781370542943478, - 0.007800584193319082, - 0.005696732085198164, - 0.02533588744699955, - -0.007416318636387587, - 0.01455084327608347, - 0.020583806559443474, - -0.003897089743986726, - -0.022031206637620926, - 0.005629485473036766, - -0.01421781349927187, - -0.01946943812072277, - -0.015716446563601494, - 0.029588421806693077, - -0.017650581896305084, - 0.029844598844647408, - 0.0036249018739908934, - -0.01593419723212719, - -0.027487771585583687, - 0.033431075513362885, - 0.012309296056628227, - -0.0033302984666079283, - -0.02928100898861885, - 0.007646877784281969, - 0.01978965848684311, - 0.011323015205562115, - 0.006055379286408424, - -0.005770382937043905, - 0.03263692557811737, - 0.0220568235963583, - -0.006231500767171383, - -0.009254387579858303, - 0.019674379378557205, - -0.007634068839251995, - 0.010247072204947472, - -0.01384635642170906, - -0.01493510790169239, - 0.001314507215283811, - -0.01912359893321991, - -0.025976328179240227, - -0.0009966879151761532, - 0.01745845004916191, - 0.02725721336901188, - 0.08684393763542175, - 0.029127303510904312, - 0.013180296868085861, - 0.00028039352037012577, - -0.0013041000347584486, - 0.015024770051240921, - 0.009299218654632568, - 0.020686278119683266, - 0.006596553139388561, - -0.04454914852976799, - 0.012860075570642948, - -0.013423665426671505, - 0.01220682542771101, - -0.013602988794445992, - -0.017919568344950676, - 0.03606969490647316, - -0.025387121364474297, - 0.020686278119683266, - -0.0017179857240989804, - 0.03240636736154556, - 0.03138165920972824, - -0.020173924043774605, - 0.011463912203907967, - 0.02876865677535534, - -0.04096267372369766, - -0.01962314359843731, - 0.0302801001816988, - -0.008793269284069538, - -0.0025793802924454212, - 0.010567293502390385, - -0.015370609238743782, - 0.02098088152706623, - -0.058357078582048416, - -0.023107148706912994, - 0.01921326108276844, - -0.005763978231698275, - -0.013154678978025913, - -0.019687188789248466, - 0.012565473094582558, - 0.01578049175441265, - 0.025771386921405792, - 0.015537124127149582, - -0.016484977677464485, - -0.01771462708711624, - -0.006506890989840031, - -0.01676677167415619, - -0.004364612512290478, - -0.017650581896305084, - -0.029716510325670242 - ], - "sparse": "SparseEmbedding(values=array([1.71299957, 0.90853363, 1.89992129, 1.28599155, 1.49271137,\n 2.00956255, 1.49271137, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 1.49271137,\n 1.71299957, 1.71299957, 1.71299957, 0.90853363, 1.71299957,\n 1.6231717 , 0.90853363, 1.28599155, 1.96699555, 0.90853363,\n 1.6231717 , 1.49271137, 1.49271137, 0.90853363, 0.90853363,\n 0.90853363, 1.98315231, 0.90853363, 1.49271137, 1.28599155,\n 0.90853363, 1.49271137, 1.82865625, 1.28599155, 0.90853363,\n 1.49271137, 0.90853363, 0.90853363, 0.90853363, 1.49271137,\n 1.49271137, 0.90853363, 0.90853363, 1.28599155, 0.90853363,\n 0.90853363, 1.49271137, 1.28599155, 1.28599155, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 1.49271137,\n 1.49271137, 1.49271137, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 1.6231717 , 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 1.28599155, 1.28599155, 0.90853363, 0.90853363,\n 1.28599155, 0.90853363, 0.90853363, 0.90853363, 1.28599155,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 1.49271137, 1.28599155, 0.90853363, 1.28599155,\n 0.90853363, 1.49271137, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 1.28599155, 1.28599155, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 1.28599155, 1.28599155,\n 0.90853363, 1.28599155, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 1.49271137,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 1.71299957,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363, 0.90853363, 0.90853363,\n 0.90853363, 0.90853363, 0.90853363]), indices=array([ 19522071, 1810453357, 544882233, 1480001521, 1427900950,\n 408270109, 99212807, 1471235886, 1442982217, 593807351,\n 1948205106, 1453712511, 1046719369, 1206728042, 915344176,\n 1612226653, 843816345, 433708589, 247928399, 1095274335,\n 1505931685, 1235044772, 1819996810, 164058840, 1928137580,\n 2124172637, 732421865, 73907278, 712295674, 1788297724,\n 197670987, 1109731834, 1905782711, 147047731, 1975311753,\n 1535770478, 2103309648, 651773314, 997168741, 1812441733,\n 999597208, 1762723307, 1769347644, 101344405, 496086325,\n 111478241, 100619008, 997885597, 2077811411, 641040124,\n 499733850, 860787312, 1214749696, 649860119, 700853502,\n 1916904579, 1197269750, 490388968, 1235404957, 1286817522,\n 1947841087, 1515684580, 745397317, 247251680, 504370091,\n 839637767, 1404348804, 1487914755, 378174453, 2112545234,\n 138150050, 1496316063, 1349386400, 1626154326, 810405031,\n 1751984035, 731494756, 1894123915, 692459969, 1485365850,\n 1273509924, 1223538931, 1836344936, 423477467, 840124970,\n 1030955491, 607287212, 1880984647, 922977895, 911111262,\n 1092081572, 538856249, 2053391496, 2062423197, 499241977,\n 866872027, 1413554298, 525629482, 1620799, 2076072361,\n 430915596, 1362353402, 1553747220, 1367644868, 1793743868,\n 970779119, 86021254, 586235759, 176529870, 1047604504,\n 189092582, 719827503, 1432264639, 1475735686, 2094190344,\n 1748164599, 1260730820, 530489452, 1154043627, 1638510030,\n 591158446, 38838833, 1314093197, 2054116652, 792074474,\n 2083353631, 287632858, 1717424474, 761762142, 1174634009,\n 215687233, 940461617, 1980672832, 355210833, 1392079869,\n 734837451, 236272952, 431038374, 1645122071, 1146383296,\n 566928813, 1006541757, 1217513728, 1783291875, 1357108444,\n 1034394088, 318501217, 1394226660, 1416371393, 464909109,\n 1181259354, 1407327463, 1667662795, 2106105284, 1187567306,\n 472518677, 999490782, 124114158, 2141189226, 1079999565,\n 1112230396, 454160048, 1669595920, 1935340272, 47951928,\n 1341181070, 148163374, 1282568013, 88627685, 459537588,\n 131550712, 1255579020, 476704413, 151305406, 1717339334,\n 386834064, 1273602034, 614387093, 795595028, 264741300,\n 1095393922, 511190135, 1213745560]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 45, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 330 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000046.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000046.json deleted file mode 100644 index 1e7d73f45552342b585c8a8fab3ba6a892a5c7a0..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000046.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000046", - "content": "2.2 Das Stadtklima Die klimatischen Bedingungen in einer Stadt unterschieden sich stark von denen des Umlands. Der Deutsche Wetterdienst (DWD) definiert das Stadtklima als \u201eein gegen\u00fcber dem Umland durch die Bebauung und anthropogene Emissionen modifiziertes Mesoklima\u201c (Deutscher Wetterdienst 2024b). Die Eigenschaften verwendeter Baustoffe hinsichtlich W\u00e4rmespeicherungskapazit\u00e4t und Reflexion, der hohe Versiegelungsgrad, das Fehlen von st\u00e4dtischem Gr\u00fcn, die Oberfl\u00e4chenrauigkeit und damit verbundenen geringeren Windgeschwindigkeiten sowie anthropogene Emissionen aus Verkehr und Geb\u00e4udeenergiebedarf beeinflussen das Stadtklima (vgl. Deutscher Wetterdienst 2024b; vgl. Mehra 2021, S. 76). Infolgedessen sind die Temperaturen in der Stadt im Vergleich zum Umland deutlich h\u00f6her. Die Temperaturdifferenz zwischen st\u00e4dtischen Raum und dem Umland kann 7-11 \u00b0C betragen (vgl. Feldmann et al. 2023, S. 9). Aufgrund unterschiedlicher Quartierstypologien weist das Klima einer Stadt eine gro\u00dfe Varianz verschiedener Mikroklimata auf, die abh\u00e4ngig von der Bebauungsstruktur und dem Vorhandensein blauer und gr\u00fcner Infrastruktur ist. Dadurch k\u00f6nnen beispielsweise lokal auftretende Hitzeinseln oder erh\u00f6hte Windgeschwindigkeiten in Stra\u00dfenschluchten entstehen (vgl. Deutscher Wetterdienst 2024b). Ebenso bildet sich um die Vegetation ein eigenes Klima aus, das sogenannte Bioklima. Das Bioklima wird von jeder Pflanze individuell gepr\u00e4gt und ist sowohl von H\u00f6he und Art der Vegetation als auch von der Interaktion der Pflanze mit der Umwelt abh\u00e4ngig (vgl. Feldmann et al. 2023, S. 9). Die heutige Bebauung in St\u00e4dten erweist sich aus klimatologischer Sicht als ineffizient, denn die Geb\u00e4ude sind an die mikroklimatischen Bedingungen in dem urbanen Raum nicht angepasst. Deshalb entstehen im Winter hohe Transmissionsw\u00e4rmeverluste, die die Lufttemperatur in der Stadt erh\u00f6hen. Im Sommer hingegen m\u00fcssen die Geb\u00e4ude mit hohem Energieaufwand gek\u00fchlt werden. (vgl. Mehra 2021, S. 76) Diese spezifischen klimatischen Bedingungen im urbanen Raum haben weitreichende Folgen auf den thermischen und lufthygienischen Komfort der Bev\u00f6lkerung. Der hohe Versiegelungsgrad und die Bebauung f\u00fchren lokal zu steigenden Lufttemperaturen. Dieser W\u00e4rme- oder Hitzeinseleffekt f\u00fchrt vor allem im Sommer zu einer negativen Beeinflussung des thermischen Wohlbefindens der Menschen und steigert die Zahl der hitzebedingten Krankheits- und Todesf\u00e4lle. (vgl. Mehra 2021, S. 77) Doch nicht nur auf die Gesundheit der Bev\u00f6lkerung hat der W\u00e4rmeinseleffekt eine Auswirkung. Eine zunehmende Erw\u00e4rmung des urbanen Raums f\u00fchrt zu einem steigenden Energiebedarf f\u00fcr die K\u00fchlung im Sommer, was wiederum die Energiekosten und die CO2-Emissionen ansteigen l\u00e4sst. Hitzeperioden f\u00fchren zu einer Senkung des Grundwasserspiegels und gleichzeitig zu einem erh\u00f6hten Wasserbedarf, was vor allem in den Sommermonaten zu einem Problem f\u00fcr Mensch und Natur wird. Zunehmende 6 Theorieteil Hitze f\u00fchrt dazu, dass Frei- und Gr\u00fcnfl\u00e4chen k\u00fcnstlich bew\u00e4ssert werden m\u00fcssen, was wiederum einen erh\u00f6hten Wasser- und Energiebedarf mit sich bringt. Freiraum und Gr\u00fcnfl\u00e4chen gewinnen aber immer mehr an Bedeutung, da ein steigender Bedarf an Kaltluftentstehungsgebieten und Erholungsfl\u00e4chen abzusehen ist. (vgl. Kampusch 2018, S. 10) Eine durch Bebauung ver\u00e4nderte Oberfl\u00e4chenrauigkeit beeinflusst die Windzirkulation und damit den Luftaustausch. Dies f\u00fchrt entweder zu Windschneisen mit erh\u00f6hten Luftgeschwindigkeiten oder zu g\u00e4nzlich fehlender Frischluftzufuhr. Bei unzureichender Windzirkulation wird schadstoffbelastete Luft nicht abtransportiert, die Luftqualit\u00e4t sinkt und die Niederschlagsbildung wird beeintr\u00e4chtigt. Resultat k\u00f6nnen ausbleibende Niederschl\u00e4ge oder aber lokale Starkregenereignisse sein, die vor allem in St\u00e4dten auf Grund des hohen Versiegelungsgrades schnell zu \u00dcberschwemmungen f\u00fchren. Weitere Folgen sind im Vergleich zum Umland eine geringere Luftfeuchte, weniger Frosttage und eine verminderte Global- sowie Ultraviolette- (UV) Strahlung. (vgl. Mehra 2021, S. 77) Im Hinblick auf den Klimawandel und einer zu erwartenden Steigerung der klimatischen Bedingungen hin zu Extremen besteht akuter Handlungsbedarf. Ein wichtiger Faktor zur Erreichung einer klimaresilienten Stadt ist, wie bereits erw\u00e4hnt, die gr\u00fcne Infrastruktur, welche in Kapitel 2.3 n\u00e4her beleuchtet wird.", - "embedding": { - "dense": [ - 0.03402963653206825, - 0.008388991467654705, - 0.01681537739932537, - -0.028594868257641792, - -0.004481192212551832, - 0.021265406161546707, - -0.015631195157766342, - 0.001955457730218768, - -0.006675044074654579, - -0.03390498831868172, - -0.0005149631178937852, - 0.004587145056575537, - -0.00515742227435112, - 0.007310762535780668, - -0.005590583197772503, - -0.005905326455831528, - 0.037819016724824905, - 0.0031474297866225243, - 0.00968535803258419, - -0.013063391670584679, - -0.003967008087784052, - 0.012527394108474255, - 0.001543331309221685, - 0.010813446715474129, - -0.01373650599271059, - 0.017127003520727158, - 0.026475805789232254, - -0.014097992330789566, - -0.007435413543134928, - -0.004512354731559753, - 0.0027454313822090626, - -0.004802167881280184, - -0.036846742033958435, - -0.001885341596789658, - -0.012913811020553112, - -0.0007389448583126068, - -0.016179658472537994, - -0.025466134771704674, - 0.005073282867670059, - 0.0038049621507525444, - -1.1290381735307164e-05, - -0.003108476521447301, - 0.005584350787103176, - -0.002633245661854744, - 0.017264120280742645, - 0.03694646432995796, - 0.014683851040899754, - 0.0005714455037377775, - -0.007553831674158573, - 0.00764108682051301, - 0.03537586331367493, - 0.027497941628098488, - -0.01215344201773405, - -0.0010649842442944646, - -0.033431313931941986, - -0.003770683193579316, - -0.01725165545940399, - 0.010227588936686516, - -0.001858853385783732, - -0.016802912577986717, - -0.0388910137116909, - -0.0066189514473080635, - -0.008501176722347736, - 0.015568871051073074, - -0.03006574511528015, - -0.018809787929058075, - -0.022885866463184357, - 0.009816241450607777, - 0.016428960487246513, - -0.0008702176273800433, - 0.04517341032624245, - 0.0432039275765419, - 0.010757354088127613, - -0.006304208654910326, - 0.0032471504528075457, - 0.010850842110812664, - 0.011710931546986103, - 0.015257243998348713, - -0.02246205322444439, - 0.014172783121466637, - 0.008613361977040768, - -0.03938961774110794, - -0.011324514634907246, - 0.03552544489502907, - 0.02001889981329441, - 0.017949698492884636, - 0.0006033872487023473, - 0.01285148598253727, - -0.000366745691280812, - 0.008114759810268879, - -0.007528901565819979, - 0.01933332160115242, - 0.008812803775072098, - 0.028171055018901825, - 0.005060818046331406, - -0.005397374741733074, - 0.0030181047040969133, - 0.010688796639442444, - 0.014447014778852463, - -0.008900059387087822, - -0.012913811020553112, - 0.0023823862429708242, - 0.005618629511445761, - -0.01148656103760004, - -0.04457508400082588, - 0.014222643338143826, - 0.019420577213168144, - 0.005007841158658266, - 0.01620458997786045, - -0.027622591704130173, - -0.016865238547325134, - 0.03196043521165848, - -0.009111965075135231, - -0.03921510651707649, - 0.016678262501955032, - -0.01843583583831787, - 0.01609240286052227, - -0.014235108159482479, - -0.001170158269815147, - -0.017326446250081062, - 0.013836226426064968, - 0.013100787065923214, - -0.011567583307623863, - -0.007815597578883171, - 0.01854802295565605, - 0.006724904291331768, - -0.016117334365844727, - -0.0033686847891658545, - -0.031262390315532684, - -0.023135166615247726, - -0.025329019874334335, - 0.01702728308737278, - 0.02163935825228691, - 0.000542620022315532, - -0.030015885829925537, - 0.026725107803940773, - -0.022761214524507523, - -8.389575668843463e-05, - -0.017874907702207565, - -0.027672452852129936, - -0.013275298289954662, - 0.007217274513095617, - -0.030763790011405945, - -0.026126783341169357, - 0.013100787065923214, - 0.020330527797341347, - 0.01325036771595478, - 0.013724040240049362, - 0.001952341408468783, - -0.016765518113970757, - 0.01218460500240326, - -0.0226864255964756, - -0.003103801980614662, - -0.0010961469961330295, - -0.005397374741733074, - 0.0196200180798769, - -0.01366171520203352, - 0.003739520674571395, - -0.018784858286380768, - -0.010769818909466267, - 0.035151492804288864, - -0.011617443524301052, - 0.025042323395609856, - 0.004845795221626759, - 0.006363417487591505, - -0.0026254551485180855, - 0.009492149576544762, - 0.0027236174792051315, - 0.00024735371698625386, - -0.016104869544506073, - -0.0179995596408844, - 0.02238726243376732, - -0.03891594335436821, - 0.043403368443250656, - 0.009853636845946312, - 0.017613142728805542, - -0.004393936600536108, - 0.03649771958589554, - -0.024655906483530998, - -0.031262390315532684, - -0.034827399998903275, - 0.0020956897642463446, - 0.012988601811230183, - 0.012041255831718445, - -0.03128732368350029, - -0.008002573624253273, - 0.033605825155973434, - 0.024456463754177094, - 0.001249623135663569, - 0.0015261918306350708, - 0.009610568173229694, - 0.015506545081734657, - 0.010776052251458168, - -0.016553610563278198, - -0.6461891531944275, - 0.017039747908711433, - -0.0020956897642463446, - -0.014122922904789448, - 0.004225658252835274, - 0.006291743367910385, - 0.0342041477560997, - 0.014110458083450794, - -0.0078280633315444, - 0.036024048924446106, - 0.0020863409154117107, - 0.004749190993607044, - -0.01124972477555275, - 0.01227809302508831, - -0.004546633921563625, - -0.02469330094754696, - -0.002489897422492504, - 0.01459659542888403, - 0.023920467123389244, - 0.011499025858938694, - 0.000560149026568979, - 0.017700396478176117, - -0.0071175540797412395, - -0.0076722498051822186, - -0.0013501227367669344, - 0.012465068139135838, - -0.008345363661646843, - -0.036846742033958435, - 0.004718028474599123, - 0.03353103622794151, - -0.018124209716916084, - 0.012327953241765499, - -0.0006661021034233272, - 0.011131306178867817, - 0.057937636971473694, - 0.008582199923694134, - -0.009460987523198128, - 0.010246286168694496, - 0.013960876502096653, - 0.00356500968337059, - 0.016927562654018402, - -0.00981000903993845, - -0.011168701574206352, - 0.007223507389426231, - 0.01839844137430191, - 0.004004403483122587, - 0.031187601387500763, - -0.025179438292980194, - 0.009217917919158936, - -0.01706467941403389, - 0.025042323395609856, - -0.014746176078915596, - 0.009747684001922607, - 0.022923260927200317, - 0.025029858574271202, - -0.011561350896954536, - 0.028669657185673714, - -0.01504533737897873, - -0.02066708356142044, - 0.009529544971883297, - -0.004562214948236942, - 0.013674180023372173, - -0.004291099961847067, - -0.03038983792066574, - -0.021689219400286674, - 0.04612075537443161, - -0.016927562654018402, - -0.020829129964113235, - -0.007092623971402645, - -0.012253162451088428, - -0.021826334297657013, - 0.02257423847913742, - -0.007902853190898895, - -0.0158431027084589, - 0.0024696416221559048, - 0.013811295852065086, - 0.0352761447429657, - -0.012676974758505821, - -0.0009543568012304604, - 0.018236394971609116, - 0.010358472354710102, - -0.018872113898396492, - -0.015344499610364437, - -0.005983232986181974, - 0.013960876502096653, - -0.03978849947452545, - -0.003281429409980774, - 0.00973521824926138, - -0.017127003520727158, - 0.012091116979718208, - 0.013699110597372055, - 0.022885866463184357, - -0.02512957900762558, - -0.03412935882806778, - -0.012016326189041138, - 0.05359979346394539, - -0.0051106782630085945, - 0.026974407956004143, - 0.0023636885453015566, - -0.03714590519666672, - -0.01504533737897873, - 0.007965179160237312, - 0.010670098476111889, - 0.0038891013246029615, - 0.004007519688457251, - 0.0021626893430948257, - -0.010202658362686634, - -0.0035992886405438185, - 0.02099117636680603, - -0.012327953241765499, - 0.009616800583899021, - -0.007242204621434212, - 0.012658277526497841, - -0.023022981360554695, - 0.008557269349694252, - -0.011667303740978241, - 0.04193248972296715, - 0.009460987523198128, - 0.021539637818932533, - 0.006874485407024622, - 0.013524599373340607, - -0.006519231013953686, - 0.021327732130885124, - -0.029866304248571396, - -0.018660208210349083, - 0.026126783341169357, - 0.0016157844802364707, - 0.014870827086269855, - -0.010794749483466148, - -0.016678262501955032, - 0.006291743367910385, - 0.04011259227991104, - 0.03171113505959511, - -0.011823117733001709, - 0.01710207387804985, - -0.0012215767055749893, - 0.02303544618189335, - -0.009947124868631363, - 0.008214480243623257, - -0.0027719195932149887, - -0.006344719789922237, - -0.007896620780229568, - -0.008470013737678528, - -0.03330666199326515, - -0.01119363121688366, - -0.02148977853357792, - -0.006855787709355354, - -0.00429421616718173, - -0.028395425528287888, - 0.001089135417714715, - -0.02966686338186264, - -0.019956575706601143, - -0.01215344201773405, - 0.01373650599271059, - -0.00032584468135610223, - 0.0010649842442944646, - 0.011785722337663174, - -0.012240697629749775, - -0.007323227822780609, - -0.021577034145593643, - 0.0018868998158723116, - 0.0009808450704440475, - -0.028894029557704926, - 0.010451960377395153, - -0.02325981855392456, - 0.011299584992229939, - 0.014721246436238289, - 0.017949698492884636, - -0.016902633011341095, - -0.03796859830617905, - 0.004019984509795904, - -0.012620882131159306, - 0.0006766195292584598, - 0.019146345555782318, - -0.004596494138240814, - -0.02347172424197197, - -0.04270532354712486, - -0.003293894464150071, - -0.01756328158080578, - -0.007653552107512951, - 0.02167675457894802, - -0.012645811773836613, - -0.017451096326112747, - -0.022412193939089775, - 0.018448300659656525, - 0.0008195782429538667, - 0.022998051717877388, - 0.002494571963325143, - -0.007884155958890915, - 0.02901867963373661, - 0.017363840714097023, - 0.01976959966123104, - -0.009224150329828262, - 0.01540682464838028, - -0.006762299686670303, - -0.024244558066129684, - 0.0005017190123908222, - 0.011187398806214333, - -0.0037021252792328596, - 0.0038049621507525444, - 0.02368362993001938, - 0.0004651028721127659, - 0.018086815252900124, - -0.007123786490410566, - 0.009174290113151073, - -0.03208508715033531, - 0.009473452344536781, - 0.008052434772253036, - 0.019782064482569695, - 0.012689439579844475, - 0.025428740307688713, - 0.001868202118203044, - -0.03719576448202133, - -0.006868252996355295, - -0.008501176722347736, - 0.048015445470809937, - -0.008158387616276741, - -0.003049267455935478, - -0.008563501760363579, - -0.015319569036364555, - 0.014434549026191235, - 0.0038579388055950403, - 0.02423209324479103, - -0.014122922904789448, - -0.026575526222586632, - 0.008924989029765129, - -0.012533626519143581, - 0.0023325260262936354, - 0.0018339231610298157, - -0.01528217364102602, - -0.010140333324670792, - -0.012826555408537388, - -0.005998814478516579, - 0.003664730116724968, - 0.003228452755138278, - 0.03682181239128113, - -0.006743601989001036, - -0.03121253103017807, - 0.0158431027084589, - 0.008924989029765129, - 0.0073045301251113415, - 0.014609060250222683, - 0.011480328626930714, - -0.029068540781736374, - 0.03535093367099762, - -0.00019574053294491023, - 0.034328799694776535, - 0.0228609349578619, - -0.001925853081047535, - -0.0025849435478448868, - -0.010009449906647205, - -0.0051324921660125256, - 0.007821830920875072, - -0.01775025762617588, - -0.0008289270335808396, - -0.03629827871918678, - 0.012284325435757637, - -0.02228754200041294, - 0.03542572632431984, - 0.011068981140851974, - 0.004013752099126577, - 0.0046930983662605286, - 0.0009270894806832075, - -0.012714370153844357, - 0.010003217495977879, - 0.0011569141643121839, - -0.013362553901970387, - -0.025079717859625816, - -0.01695249415934086, - 0.005120026879012585, - 0.00830173585563898, - -0.00689318310469389, - -0.009136895649135113, - -0.00822694506496191, - 0.007616156712174416, - 0.0066189514473080635, - -0.0014771106652915478, - 0.01821146532893181, - 0.01782504841685295, - 0.018660208210349083, - -0.004113472532480955, - -0.008544804528355598, - -0.01872253231704235, - 0.042281512171030045, - -0.007192344404757023, - -0.022374797612428665, - -0.011567583307623863, - -0.0034403589088469744, - -0.015444220043718815, - 0.01055168081074953, - -0.024606045335531235, - -0.016977423802018166, - -0.02901867963373661, - -0.01002814806997776, - 0.01483343169093132, - -0.014160318300127983, - 0.009510847739875317, - -0.021153220906853676, - 0.013935946859419346, - 0.008607129566371441, - 0.009136895649135113, - -0.023646235466003418, - -0.003480870509520173, - -0.002343432977795601, - 0.009710288606584072, - 0.005952070467174053, - -0.0022795493714511395, - 0.010794749483466148, - 0.00575262913480401, - -0.013811295852065086, - -0.020692013204097748, - -0.026774967089295387, - -0.013985807076096535, - 0.03764450550079346, - 0.002455618465319276, - 0.004599610343575478, - 0.005980116780847311, - -0.02343432977795601, - 0.047292470932006836, - -0.013188042677938938, - 0.008663223125040531, - -0.01792476885020733, - -0.018734999001026154, - 0.010626470670104027, - 0.03667223080992699, - -0.009716521017253399, - 0.0017980861011892557, - 0.015381895005702972, - 0.011654838919639587, - -0.013100787065923214, - -0.001009670551866293, - -0.03876636177301407, - 0.007591226603835821, - 0.005070166662335396, - -0.007067693863064051, - -0.024244558066129684, - 0.004777237307280302, - -0.0049392832443118095, - 0.010495588183403015, - 0.00799010880291462, - -0.008463781327009201, - -0.014384688809514046, - 0.008245643228292465, - 0.029641933739185333, - -0.004624540451914072, - 0.0016422728076577187, - 0.007161181885749102, - 0.049486320465803146, - 0.014409619383513927, - 0.013574459590017796, - 0.020243272185325623, - 0.010869540274143219, - 0.008283037692308426, - -0.013985807076096535, - -0.009030941873788834, - 0.0219634510576725, - 0.0068059274926781654, - 0.023995257914066315, - -0.019395647570490837, - 0.00283580319955945, - 0.0018728765426203609, - -0.039589058607816696, - 0.020529968664050102, - -0.010289913974702358, - 0.02516697347164154, - 0.018734999001026154, - 0.006824625190347433, - -0.024718230590224266, - 0.01470878068357706, - -0.015307104215025902, - 0.0248428825289011, - 0.01382376067340374, - 0.00894368626177311, - -0.011823117733001709, - 0.014870827086269855, - -0.006787229795008898, - -0.00952331256121397, - -0.017513422295451164, - 0.003758218139410019, - -0.01767546683549881, - 0.03268340975046158, - -0.017949698492884636, - -0.010589076206088066, - -0.009510847739875317, - -0.02941756136715412, - -0.03771929815411568, - -0.006419510114938021, - -0.004316030070185661, - -0.014584130607545376, - -0.014110458083450794, - -0.00023274619888979942, - 0.03163634240627289, - -0.010520517826080322, - -0.0007884156075306237, - 0.041857700794935226, - -0.01944550685584545, - -0.016753051429986954, - 0.013973342254757881, - 0.01229679025709629, - 0.0036086372565478086, - 0.021327732130885124, - -0.03390498831868172, - -0.00024151070101652294, - -0.0060299769975245, - -0.009647962637245655, - -0.008987314067780972, - 0.010713726282119751, - -0.010264984332025051, - -0.013163112103939056, - 0.007566296495497227, - -0.006282394751906395, - -0.006469370797276497, - -0.0009816241217777133, - 0.01717686466872692, - -0.022773681208491325, - -0.0019990853033959866, - -0.0004452366556506604, - 0.01504533737897873, - -0.018336115404963493, - -0.00228578201495111, - 0.021502243354916573, - 0.005861698649823666, - 0.009068337269127369, - -0.04205714166164398, - 0.02261163480579853, - 0.008438851684331894, - 0.00502342265099287, - 0.025117112323641777, - 0.0029900583904236555, - -0.014372223988175392, - -0.006967973429709673, - 0.0061421627178788185, - -0.014509339816868305, - 0.010327309370040894, - 0.027522871270775795, - -0.022985586896538734, - 0.028171055018901825, - -0.010501820594072342, - -0.01789983920753002, - 0.001854178961366415, - -0.007472808472812176, - 0.005562536884099245, - 0.03462795913219452, - -0.014920687302947044, - -0.0009753915946930647, - -0.03697139397263527, - 0.0342041477560997, - 0.022661494091153145, - 0.01591789349913597, - 0.004883190616965294, - 0.010508053004741669, - 0.013337623327970505, - -0.04193248972296715, - -0.022549308836460114, - -0.013050926849246025, - 0.0014490642352029681, - 0.017438631504774094, - -0.004593377932906151, - 0.005254026502370834, - -0.009068337269127369, - 0.020716944709420204, - 0.017413699999451637, - -0.03909045457839966, - -0.0077657378278672695, - -0.02739822119474411, - 0.009990752674639225, - -0.011424235068261623, - 0.013935946859419346, - 0.00830173585563898, - -0.027896823361516, - -0.027946684509515762, - -0.016591006889939308, - -0.006612719036638737, - 0.012352882884442806, - -0.013237902894616127, - -0.020367922261357307, - -0.02625143527984619, - 0.007616156712174416, - 0.002965128282085061, - -0.033107221126556396, - 0.024581115692853928, - -0.03422907739877701, - -0.005004724953323603, - 0.009722753427922726, - 0.013275298289954662, - 0.0016952493460848927, - 0.04387704282999039, - -0.004593377932906151, - -0.022910796105861664, - -0.007840528152883053, - 1.0206992556049954e-05, - -0.002391735091805458, - -0.024793021380901337, - 0.023047911003232002, - 0.005924023687839508, - 0.010321076959371567, - -0.0013150647282600403, - 0.007728342432528734, - -0.002569362288340926, - 0.03345624357461929, - -0.01788737252354622, - -0.022698890417814255, - -0.018984299153089523, - -0.013063391670584679, - 0.005880395881831646, - 0.022960657253861427, - -0.005497095175087452, - 0.024568650871515274, - -0.020367922261357307, - -0.0053568631410598755, - 0.015219848603010178, - -0.015830637887120247, - -0.009074569679796696, - -0.016902633011341095, - 0.00858843233436346, - -0.013561994768679142, - 0.023895535618066788, - 0.004876958206295967, - -0.01710207387804985, - -0.005961419083178043, - 0.005266491323709488, - -0.022225217893719673, - -0.01897183433175087, - 0.033132150769233704, - -0.009641730226576328, - -0.007310762535780668, - -0.015269708819687366, - -0.013399948365986347, - -0.005550071597099304, - 0.001787179266102612, - 0.007447878364473581, - -0.02163935825228691, - 0.003406079951673746, - 0.0016968074487522244, - -0.008457548916339874, - 0.0025148275308310986, - -0.010595308616757393, - -0.025316555052995682, - 0.01828625611960888, - -0.011997628957033157, - 0.008619595319032669, - 0.05100706219673157, - -0.024319348856806755, - 0.019283460453152657, - 0.019482901319861412, - -0.00799010880291462, - 0.008738012984395027, - -0.013686645776033401, - 0.04255574569106102, - 0.005559420678764582, - -0.027846964076161385, - -0.014945616945624352, - -0.0478907935321331, - -0.013811295852065086, - -0.014633990824222565, - 0.011062748730182648, - -0.01285148598253727, - 0.000973833492025733, - -0.005624862387776375, - 0.00937996432185173, - 0.022050706669688225, - 0.013125717639923096, - 0.004113472532480955, - 0.039913151413202286, - 0.025727901607751846, - -0.0037769158370792866, - -0.020903920754790306, - 0.0033250569831579924, - 0.0007708866032771766, - -0.008582199923694134, - -0.00937996432185173, - -0.007915318943560123, - -0.007609924301505089, - -0.007996341213583946, - 0.009629265405237675, - 0.04492410644888878, - -0.0031941737979650497, - 0.025578320026397705, - 0.012814090587198734, - 0.005406723357737064, - 0.008532339707016945, - -0.03512656316161156, - -0.006668811663985252, - 0.030614208430051804, - 0.011767025105655193, - 0.022187821567058563, - -0.013848691247403622, - -0.012689439579844475, - 0.0015885172178968787, - -0.019607553258538246, - -0.00399505440145731, - 0.01649128645658493, - 0.010071775875985622, - 0.017874907702207565, - -0.005780675448477268, - -0.000769328442402184, - 6.885002949275076e-05, - 0.014796036295592785, - 0.013474739156663418, - 0.01285148598253727, - -0.00250703701749444, - -0.004830214194953442, - 0.0036709627602249384, - -0.007161181885749102, - -0.0028841053135693073, - 0.019208671525120735, - 0.019956575706601143, - -0.020442713052034378, - -0.0179995596408844, - -0.008457548916339874, - -0.0001398424938088283, - -0.017650537192821503, - 0.01666579581797123, - -0.01548161543905735, - 0.004590261727571487, - 0.00808359682559967, - -0.013075856491923332, - 0.004562214948236942, - -0.010109170340001583, - -0.016104869544506073, - -0.013674180023372173, - 0.02362130582332611, - -0.039115384221076965, - 0.036447860300540924, - 0.04312913864850998, - 0.01731397956609726, - 0.006332254968583584, - 0.011667303740978241, - -0.0051324921660125256, - -0.01373650599271059, - 0.033755406737327576, - 0.0016578540671616793, - -0.033605825155973434, - 0.0028607333078980446, - -0.0024260140489786863, - 0.012658277526497841, - -0.01191660575568676, - 0.0035681258887052536, - 0.015992682427167892, - -0.000942670798394829, - -0.011467862874269485, - -0.01735137589275837, - -0.01626691408455372, - 0.028195984661579132, - -0.006260580848902464, - -0.002455618465319276, - 0.047541771084070206, - -0.020617224276065826, - 0.022125497460365295, - 0.01864774338901043, - 0.02110336162149906, - -0.015743382275104523, - -0.011019120924174786, - -0.021140756085515022, - 0.0006485730991698802, - 0.016615936532616615, - 0.007865458726882935, - 0.004855144303292036, - -0.00033110339427366853, - -0.01738877035677433, - -0.016005147248506546, - 0.02314763329923153, - 0.004827097989618778, - 0.006600253749638796, - 0.01495808269828558, - 0.013935946859419346, - -0.021801404654979706, - 0.01717686466872692, - -0.001894690445624292, - -0.015631195157766342, - 0.00741671584546566, - 0.00174355146009475, - -0.04853897541761398, - 0.004263053648173809, - -0.003770683193579316, - 0.03617363050580025, - 0.0053786770440638065, - -0.01698988862335682, - -0.010614005848765373, - 0.015531475655734539, - -0.04836446791887283, - -0.018772393465042114, - 0.008314200676977634, - -0.00301498849876225, - 0.012122279033064842, - 0.008102294988930225, - -0.0013446692610159516, - 0.03577474504709244, - 0.013724040240049362, - 0.030913369730114937, - -0.03113774210214615, - -0.014484409242868423, - -0.002161131240427494, - -0.003695892868563533, - 0.04180784150958061, - 0.01944550685584545, - -0.00501407403498888, - -0.0008632059907540679, - 0.009704056195914745, - -0.018660208210349083, - 0.0021315268240869045, - 0.017725327983498573, - 0.003948310390114784, - -0.0078280633315444, - -0.008868896402418613, - 0.022960657253861427, - -0.0014825641410425305, - 0.01771286316215992, - 0.004945516120642424, - -0.02560325153172016, - 0.01483343169093132, - 0.02139005810022354, - 0.004689982160925865, - -0.025503531098365784, - 0.012701905332505703, - 0.00609230250120163, - -0.014347294345498085, - -0.007055229041725397, - 0.03552544489502907, - -0.03884115442633629, - -0.01847323216497898, - -0.03298257291316986, - 0.008407688699662685, - 0.02274874970316887, - -0.009367499500513077, - 0.011206096969544888, - -0.0044406806118786335, - -0.01994410902261734, - -0.032134946435689926, - -0.0039638918824493885, - -0.02869458869099617, - 0.019570156931877136, - 0.002302921377122402, - 0.009006012231111526, - 0.020816665142774582, - -0.02325981855392456, - 0.02192605473101139, - -0.01897183433175087, - 0.0033468708861619234, - -0.027697382494807243, - -0.020542433485388756, - -0.0033063595183193684, - 0.018946904689073563, - 0.013337623327970505, - 0.0037831482477486134, - 0.009641730226576328, - -0.00916182529181242, - -0.013674180023372173, - -0.006269929464906454, - -0.013125717639923096, - 0.013811295852065086, - -0.024356743320822716, - -0.005291421432048082, - 0.007697179913520813, - -0.01847323216497898, - 0.006269929464906454, - -0.011530188843607903, - -0.001463087392039597, - -0.02941756136715412, - 0.004048030823469162, - 0.17481012642383575, - -0.00878164079040289, - -0.0009987636003643274, - 0.016516216099262238, - -0.00632602209225297, - -0.008544804528355598, - 0.010165263898670673, - -0.0052633751183748245, - -0.01652868092060089, - 0.019495368003845215, - -0.01164860650897026, - 0.01900922879576683, - 0.020255737006664276, - 0.00792155135422945, - 0.017974628135561943, - -0.024294419214129448, - -0.019532762467861176, - -0.012377813458442688, - 0.001543331309221685, - 0.025653110817074776, - 0.022948190569877625, - -0.018635276705026627, - 0.011929070577025414, - -0.002837361302226782, - 0.044949036091566086, - 0.01272683497518301, - -0.00312249967828393, - -0.005693420302122831, - 0.04370253160595894, - 0.0009302057442255318, - -0.006880717817693949, - 0.009217917919158936, - 0.004624540451914072, - -0.009947124868631363, - 0.009535777382552624, - 0.005777559243142605, - 0.021826334297657013, - -0.02181386947631836, - 0.017014818266034126, - 0.021090896800160408, - -0.006054907105863094, - -0.0045777964405715466, - -0.008108527399599552, - -0.030788719654083252, - 0.0074416459538042545, - 0.02362130582332611, - -0.015942823141813278, - 0.005677838809788227, - -0.007510203868150711, - -0.013237902894616127, - -0.0012021000729873776, - -0.0174635611474514, - 0.012789160013198853, - 0.03956412896513939, - -0.01378636620938778, - 0.008862663991749287, - 0.018086815252900124, - -0.015444220043718815, - -0.001209890702739358, - -0.015332034789025784, - -0.014222643338143826, - 0.03407949581742287, - -0.019532762467861176, - 0.027547800913453102, - -0.013512134552001953, - 0.011636141687631607, - -0.023521583527326584, - 0.016728121787309647, - 0.008669455535709858, - 0.005693420302122831, - -0.017687931656837463, - -0.024007722735404968, - -0.01933332160115242, - 0.014858361333608627, - 0.007915318943560123, - -0.019844388589262962, - 0.020430248230695724, - 0.01947043649852276, - 0.017613142728805542, - 0.0338301956653595, - -0.02570297196507454, - 0.015705985948443413, - -0.00031863831100054085, - -0.030015885829925537, - 0.015007942914962769, - -0.04367760196328163, - 0.026326224207878113, - -0.0016796679701656103, - -0.024132372811436653, - -0.018410906195640564, - -0.01353706419467926, - -4.41390038758982e-05, - 0.0038174272049218416, - -0.006198255345225334, - 0.04412634298205376, - -0.0008491827757097781, - 0.026002133265137672, - 0.009841172024607658, - -0.014384688809514046, - 0.0024696416221559048, - -0.0010065543465316296, - 0.04809023439884186, - 0.029118400067090988, - -0.006450673099607229, - 0.0019461088813841343, - 0.0004409518151078373, - -0.01588049717247486, - 0.023558979853987694, - 0.003508916823193431, - -0.0050545851700007915, - 0.014459479600191116, - -0.02383321151137352, - 0.0020068760495632887, - -0.011156236752867699, - 0.0018931323429569602, - 0.03764450550079346, - 0.003658497706055641, - -0.02549106441438198, - -0.004247472155839205, - -0.02909347042441368, - -0.004761656280606985, - 0.014571664854884148, - 0.012433906085789204, - -0.003365568583831191, - 0.025802692398428917, - -0.023097772151231766, - -0.049660831689834595, - 0.017338911071419716, - 0.007198577281087637, - -0.014646455645561218, - 0.03358089551329613, - -0.027123989537358284, - -0.005740164313465357, - 0.019607553258538246, - -0.00167187734041363, - 0.02148977853357792, - 0.01836104691028595, - -0.04467480629682541, - 0.0010688796173781157, - 0.017800118774175644, - 0.023060377687215805, - -0.030788719654083252, - -0.0008889152086339891, - -0.02091638557612896, - 0.015132592990994453, - -0.008177084848284721, - 0.0011047166772186756, - -0.016466354951262474, - -0.02110336162149906, - -0.004471843130886555, - 0.005042120348662138, - -0.013050926849246025, - 0.0012581928167492151, - -0.01717686466872692, - 0.019034160301089287, - 0.0052041662856936455, - -0.016478819772601128, - -0.0151201281696558, - 0.010701261460781097, - 0.01735137589275837, - -0.0016999237705022097, - -0.0023278514854609966, - -0.0174635611474514, - -0.02844528667628765, - -0.010439494624733925, - 0.004929934628307819, - -0.153370201587677, - 0.013836226426064968, - 0.014571664854884148, - -0.03764450550079346, - 0.007086391560733318, - 0.008071132004261017, - -0.007578761782497168, - -0.007335692644119263, - -0.013163112103939056, - -0.0059115588665008545, - 0.02238726243376732, - 0.005207282491028309, - -0.011573816649615765, - 0.002262410009279847, - -0.0089997798204422, - -0.009467219933867455, - -0.015082732774317265, - 0.018921975046396255, - 0.014434549026191235, - 0.009105732664465904, - 0.01883471943438053, - -0.025254229083657265, - 0.006469370797276497, - -0.02030559629201889, - 0.017775187268853188, - -8.092556527117267e-05, - -0.006363417487591505, - 0.005662257317453623, - 0.0038548223674297333, - -0.031661275774240494, - -0.00878164079040289, - -0.005388026125729084, - 0.02610185369849205, - -0.00020820560166612267, - 0.001854178961366415, - -0.0025459902826696634, - 0.013998271897435188, - -0.012901346199214458, - -0.02239972911775112, - 0.020131085067987442, - 0.014796036295592785, - -0.015132592990994453, - -0.019894249737262726, - 0.01576831191778183, - -0.029716722667217255, - 0.016005147248506546, - -0.003773799631744623, - 0.013549529947340488, - -0.00880033802241087, - 0.007092623971402645, - 0.016827842220664024, - -0.002743873279541731, - -0.014073062688112259, - 0.00443756440654397, - -0.0018572951667010784, - 0.01882225275039673, - -0.0016609703889116645, - 0.02091638557612896, - -0.009373731911182404, - -0.0009598102769814432, - 0.012988601811230183, - -0.011224794201552868, - 0.0077657378278672695, - 0.02318502776324749, - 0.010327309370040894, - -0.005758861545473337, - 0.0043814717791974545, - 0.010900702327489853, - -0.0030087558552622795, - 0.009785078465938568, - 0.0007814039709046483, - -0.019059089943766594, - 0.018448300659656525, - 0.003988821990787983, - -0.00016136420890688896, - -0.003920264076441526, - -0.018448300659656525, - -0.007852992974221706, - 0.0012932508252561092, - -0.007298297714442015, - -0.03290778025984764, - 0.04976055398583412, - -0.01990671455860138, - -0.011941535398364067, - -0.038392409682273865, - 0.002742315176874399, - -0.005129375495016575, - -0.011062748730182648, - -0.008152155205607414, - 0.013150647282600403, - 0.010844609700143337, - -0.02473069541156292, - -0.04322885721921921, - -0.0031941737979650497, - -0.0037114741280674934, - -0.0031894994899630547, - 0.00444691302254796, - -0.004820865113288164, - -0.01280162576586008, - -0.04507368803024292, - 0.016329240053892136, - -0.011785722337663174, - -0.03211001679301262, - 0.00428486755117774, - 0.0008367177215404809, - 0.036024048924446106, - -0.006936810445040464, - 0.011835582554340363, - 0.03510163351893425, - -0.004998492542654276, - -0.017700396478176117, - -0.01114377100020647, - 0.022773681208491325, - -0.008881361223757267, - -0.0011389956343919039, - 0.010264984332025051, - 0.015543940477073193, - -0.012689439579844475, - 0.005849233362823725, - -0.013761435635387897, - 0.02455618605017662, - -0.00939866155385971, - -0.02837049588561058, - 0.009548242203891277, - 0.002641036408022046, - -0.018734999001026154, - -0.08575966954231262, - 0.013150647282600403, - 0.02660045586526394, - 0.015830637887120247, - 0.015718450769782066, - 0.01459659542888403, - -0.00668750936165452, - 0.0059707676991820335, - -0.0009660428040660918, - 0.022624099627137184, - -0.033605825155973434, - -0.02203824184834957, - 0.005331933032721281, - -0.012091116979718208, - 0.014783571474254131, - -0.012190837413072586, - -0.0003583707148209214, - -0.030339976772665977, - -0.022486982867121696, - 0.02135266177356243, - 0.018697602674365044, - -0.009361266158521175, - -0.02779710292816162, - -0.015444220043718815, - -0.005347514525055885, - 0.0029807095415890217, - -0.02886909805238247, - 0.008694385178387165, - 0.018373511731624603, - -0.01983192376792431, - 0.01591789349913597, - -0.012720602564513683, - 0.00689318310469389, - -0.03525121510028839, - 0.019246065989136696, - 0.007042763754725456, - -0.008189549669623375, - -0.025578320026397705, - 0.026949478313326836, - -0.03218480572104454, - -0.01215344201773405, - -0.00582430325448513, - 0.03388005495071411, - -0.023671165108680725, - 0.017264120280742645, - -0.016927562654018402, - -0.01958262361586094, - -0.006818392314016819, - -0.008887593634426594, - -0.011673537082970142, - -0.022412193939089775, - -0.02764752134680748, - 0.004593377932906151, - 0.0014467270812019706, - 0.0035151492338627577, - 0.018298720940947533, - -0.010807214304804802, - -0.021502243354916573, - -0.01828625611960888, - 0.008644524961709976, - -0.011174933984875679, - 0.018423371016979218, - -0.030788719654083252, - 0.032882850617170334, - 0.01169846672564745, - -0.027198780328035355, - -0.022486982867121696, - -0.004029333591461182, - -0.006378998979926109, - -0.024506324902176857, - 0.0005098992260172963, - 0.0013415530556812882, - 0.0008172410307452083, - -0.008470013737678528, - -0.012022558599710464, - 0.004961097147315741, - -0.033107221126556396, - -0.020293131470680237, - -0.008158387616276741, - -0.017737792804837227, - -0.021514708176255226, - -0.012546091340482235, - 0.03153662383556366, - -0.01843583583831787, - 0.022873401641845703, - 0.020168481394648552, - -0.005328816827386618, - -0.02909347042441368, - 0.006949275732040405, - -0.02876937761902809, - 0.005007841158658266, - -0.0040012868121266365, - 0.015032872557640076, - -0.0020224573090672493, - 0.0074416459538042545, - -0.0014919128734618425, - -0.002352781593799591, - -0.0031598948407918215, - 0.0069430433213710785, - 0.0029557794332504272, - -0.010271216742694378, - -0.023446794599294662, - -0.03884115442633629, - 0.008189549669623375, - 0.011598746292293072, - -0.017476025968790054, - -0.010732424445450306, - -0.001904039178043604, - 0.015257243998348713, - 0.003730171825736761, - 0.00235745613463223, - 0.012035023421049118, - -0.006098534911870956, - 0.01285148598253727, - -0.0008928105235099792, - -0.019856853410601616, - -0.01330022793263197, - 0.01528217364102602, - -0.01634170487523079, - 0.028569936752319336, - 0.007329460233449936, - -0.0006384452572092414, - -0.019021695479750633, - -0.007597459480166435, - -0.014584130607545376, - 0.027747241780161858, - -0.028320636600255966, - 0.008575967513024807, - -0.012390278279781342, - 0.010844609700143337, - 0.011112608946859837, - -0.008738012984395027, - 0.016653330996632576, - -0.004621424246579409, - -0.00522909639403224, - 0.0008787873084656894, - -0.007067693863064051, - 0.004602726548910141, - 0.011966465972363949, - 0.04273025691509247, - -0.009510847739875317, - 0.07518929243087769, - -0.027622591704130173, - -0.022300006821751595, - 0.02329721301794052, - -0.024755626916885376, - -0.0025537810288369656, - -0.012963671237230301, - 0.018298720940947533, - 0.0029199423734098673, - 0.013636784628033638, - -0.03502684459090233, - 0.03801845759153366, - 0.020043829455971718, - 0.007965179160237312, - -0.009816241450607777, - -0.0019679227843880653, - -0.028495145961642265, - 0.012720602564513683, - 0.0004947074339725077, - -0.0023013632744550705, - -0.01789983920753002, - 0.04838939756155014, - 0.012776695191860199, - 0.020367922261357307, - 0.004113472532480955, - 0.030290117487311363, - -0.026874687522649765, - -0.03320694342255592, - 0.004605842754244804, - 0.0050171902403235435, - -0.01475864090025425, - -0.01836104691028595, - -0.021764010190963745, - 0.013287763111293316, - 0.014347294345498085, - -0.007553831674158573, - 0.0049174693413078785, - 0.03520135208964348, - -0.0070739262737333775, - 0.014920687302947044, - 0.020043829455971718, - 0.013873620890080929, - 0.03071392886340618, - -0.027173848822712898, - -0.007965179160237312, - 0.02516697347164154, - -0.0004900330095551908, - -0.025291623547673225, - -0.013462274335324764, - -0.02941756136715412, - 0.005151189398020506, - 0.008251875638961792, - -0.0025272925850003958, - 0.008463781327009201, - -0.01605500839650631, - 0.03248396888375282, - 0.016254449263215065, - -9.811372001422569e-05, - -0.018747463822364807, - 0.007229739800095558, - 0.03836748003959656, - -0.0060268607921898365, - -0.010776052251458168, - -0.006961741019040346, - -0.012627114541828632, - -0.019806994125247, - 0.0001250402128789574, - -0.01524477917701006, - -0.036447860300540924, - -0.01630431041121483, - 0.03402963653206825, - -0.024468930438160896, - 0.022836005315184593, - 0.0070801591500639915, - -0.013636784628033638, - -0.014945616945624352, - 0.042929697781801224, - -0.019782064482569695, - 0.0010369379306212068, - -0.008787873201072216, - -0.01366171520203352, - -0.0009356592199765146, - 0.020866524428129196, - 0.009249080903828144, - 0.0024244559463113546, - 0.003624218748882413, - 0.004621424246579409, - -0.015519010834395885, - -0.002641036408022046, - 0.005500211380422115, - 0.0033686847891658545, - 0.022698890417814255, - 0.016067473217844963, - -0.019744668155908585, - -0.015456684865057468, - -0.010738656856119633, - -0.02909347042441368, - 0.021739080548286438, - 0.02206317149102688, - 0.015469149686396122, - 0.07618650048971176, - 0.04093528538942337, - 0.008738012984395027, - 0.022836005315184593, - -0.0034902191255241632, - 0.01689016819000244, - 0.0053568631410598755, - 0.00625434797257185, - 0.004655702970921993, - -0.050234224647283554, - 0.006413277704268694, - -0.00437523890286684, - 0.029966024681925774, - -0.01454673521220684, - -0.01535696443170309, - 0.008931221440434456, - -0.0015230756253004074, - -0.00019496146705932915, - 0.005182352382689714, - 0.02102857083082199, - 0.023646235466003418, - 0.008364060893654823, - 0.020442713052034378, - 0.01337501872330904, - -0.04165825992822647, - -0.027448080480098724, - 0.02282354049384594, - -0.008931221440434456, - -0.00747904134914279, - 0.007578761782497168, - -0.009722753427922726, - 0.012720602564513683, - -0.06980438530445099, - -0.025515995919704437, - 0.0212404765188694, - -0.0074416459538042545, - -0.021689219400286674, - -0.024344278499484062, - 0.01110637653619051, - 0.001276111346669495, - 0.01983192376792431, - 0.018498161807656288, - -0.03682181239128113, - -0.031586483120918274, - -0.008881361223757267, - -0.028495145961642265, - 0.0036616139113903046, - -0.019969040527939796, - -0.024456463754177094 - ], - "sparse": "SparseEmbedding(values=array([1.26533363, 1.67100411, 1.26533363, 2.02721748, 1.26533363,\n 1.41569786, 1.60661817, 1.52438694, 0.68407628, 1.41569786,\n 0.68407628, 1.60661817, 0.68407628, 1.52438694, 1.52438694,\n 1.93236549, 0.68407628, 1.41569786, 0.68407628, 0.68407628,\n 1.52438694, 1.80091453, 0.68407628, 1.41569786, 1.0436394 ,\n 1.41569786, 2.01403603, 1.0436394 , 1.26533363, 0.68407628,\n 0.68407628, 1.26533363, 1.26533363, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 1.26533363,\n 1.26533363, 0.68407628, 0.68407628, 0.68407628, 1.0436394 ,\n 1.0436394 , 0.68407628, 0.68407628, 1.0436394 , 1.0436394 ,\n 1.26533363, 0.68407628, 0.68407628, 0.68407628, 1.76533278,\n 1.41569786, 1.41569786, 1.0436394 , 0.68407628, 1.26533363,\n 0.68407628, 1.72278515, 1.0436394 , 1.0436394 , 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 1.41569786,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 1.0436394 , 1.0436394 , 1.0436394 , 1.0436394 , 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 1.0436394 , 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 1.52438694, 1.0436394 ,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 1.0436394 ,\n 1.41569786, 0.68407628, 1.0436394 , 0.68407628, 1.26533363,\n 0.68407628, 0.68407628, 1.41569786, 0.68407628, 0.68407628,\n 1.0436394 , 0.68407628, 0.68407628, 0.68407628, 1.0436394 ,\n 0.68407628, 0.68407628, 1.0436394 , 1.52438694, 0.68407628,\n 1.0436394 , 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 1.41569786, 0.68407628,\n 0.68407628, 1.0436394 , 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 1.0436394 , 0.68407628, 1.26533363,\n 1.26533363, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 1.26533363, 0.68407628, 1.0436394 ,\n 0.68407628, 0.68407628, 0.68407628, 1.0436394 , 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 1.0436394 , 1.41569786,\n 1.0436394 , 0.68407628, 0.68407628, 1.0436394 , 1.26533363,\n 1.83111164, 1.0436394 , 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 1.41569786, 1.26533363, 1.26533363, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 1.0436394 , 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 1.0436394 , 0.68407628, 1.26533363, 1.0436394 , 1.0436394 ,\n 0.68407628, 1.0436394 , 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 1.26533363, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 1.0436394 , 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 1.0436394 , 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 1.0436394 , 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628, 0.68407628,\n 0.68407628, 0.68407628, 0.68407628, 0.68407628]), indices=array([ 19522071, 1413554298, 1626154326, 1109731834, 28500618,\n 428160610, 147047731, 1407327463, 1657210460, 717918380,\n 1679017401, 1638510030, 1268912444, 47951928, 893265301,\n 408270109, 1666082760, 2079643764, 753079005, 267236283,\n 433708589, 1047604504, 1905284006, 1505931685, 1147900472,\n 1582585314, 164058840, 710072597, 1066874362, 1343004881,\n 1711867778, 1584422431, 887327011, 1234674187, 677983129,\n 2062387593, 1027520875, 157590126, 778346751, 1121363733,\n 318501217, 2038301804, 1331803338, 720732358, 415827001,\n 566928813, 1549212557, 80898441, 1107943786, 311286247,\n 176244452, 1052851227, 502919461, 1536259167, 1669595920,\n 720266233, 1087744415, 2026929461, 924828232, 641040124,\n 1413040712, 1515684580, 984697402, 828667247, 1197269750,\n 107589052, 1022495767, 1095274335, 1082106827, 1553747220,\n 560980618, 602572328, 1734550606, 516762017, 1943982163,\n 517681357, 843816345, 423733604, 613148321, 855146281,\n 101344405, 2113121315, 1961637446, 1156973226, 913546892,\n 450068086, 1167073666, 467587753, 2103309648, 685049228,\n 1744804570, 1333980576, 637528916, 820459760, 160566303,\n 99212807, 1902112151, 963966427, 1239234285, 540303681,\n 1580790541, 1795285850, 1033482951, 1006541757, 1315313953,\n 1004792096, 1993318581, 1704939506, 1079921207, 559860000,\n 922977895, 1964296865, 1468276446, 1286817522, 185279944,\n 2101753038, 1838337001, 203321992, 1915491584, 1916510910,\n 205205340, 2053391496, 1232819956, 231980230, 1757934436,\n 325353231, 476704413, 966200711, 1424201284, 1404348804,\n 1366574169, 1523566255, 1788212450, 1109071562, 1362353402,\n 367467701, 1282192778, 386834064, 2043717068, 1424470978,\n 759690987, 1667662795, 1131799396, 519997706, 997885597,\n 1848912140, 1912832529, 1550092898, 915344176, 76479261,\n 942746868, 440587275, 2114452584, 1512646464, 651773314,\n 1187567306, 1912016597, 731494756, 472518677, 1064492184,\n 1174634009, 1427136389, 1872745375, 812080723, 1049975174,\n 2040456907, 1392079869, 1260730820, 530489452, 15990937,\n 706316646, 1485365850, 913777079, 1219118053, 281277483,\n 1587271345, 2021437189, 912978796, 1435640861, 211312638,\n 290749275, 423477467, 1485265044, 1687138866, 2004579270,\n 699825431, 2000448973, 1354425271, 1214749696, 2124172637,\n 1674023358, 1327159833, 1112230396, 2038194400, 89823139,\n 399605361, 607698446, 475208706, 1782392735, 927751723,\n 766175632, 315277844, 1180476291, 2115005279, 732421865,\n 916214203, 670727360, 1416371393, 1337990789, 1439547398,\n 912658635, 907170695, 1782143793, 1567882197, 1633914191,\n 1282568013, 1952376732, 12237026, 1223538931, 1138834227,\n 1947841087, 1218324294, 290796208, 1725631217, 593807351,\n 582298818, 1657209590, 39488241, 1312781014, 38381488,\n 364305688, 378174453, 2031875777, 1225768742, 1206728042,\n 2078819125, 7379950, 1015887210, 1944242519, 514391713,\n 955073128, 1299873008, 400811692, 1793743868, 1960078089,\n 1807653720, 114406085, 1244022852, 1267522393, 1733082335,\n 300328802, 253722189, 193272739, 190207237, 1951760550,\n 311438388, 1903657883, 597643829, 1803932182, 1443927810,\n 1124322075, 1680012685, 1967079466, 1187191429, 595940204,\n 1258136387, 243634540, 1122754679, 2087128316, 1098758338,\n 948554980, 260913582, 838945752, 568077329, 1781008795,\n 992648258, 310698810, 1557900895, 158915579, 1965475559,\n 236167652, 459537588, 338063690, 1461723308, 131550712,\n 220308237, 230107829, 437805613, 1618153130, 739092865,\n 795595028, 264741300, 511190135, 1591103625]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 46, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 563 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000047.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000047.json deleted file mode 100644 index c755604468dc7d6e089427f48b5a433d1d3424da..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000047.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000047", - "content": "2.3 Gr\u00fcne Infrastruktur Das Wei\u00dfbuch Stadtgr\u00fcn der Bundesregierung und die Deutsche Anpassungsstrategie an den Klimawandel unterstreichen die besondere Bedeutung von gr\u00fcner Infrastruktur als effektive Klimaanpassungsstrategie (vgl. Feldmann et al. 2023, S. 7). Die Ausweitung der gr\u00fcnen Infrastruktur ist nicht nur f\u00fcr die nachhaltige Stadtentwicklung entscheidend, sondern wirkt auch dem W\u00e4rmeinseleffekt entgegen (vgl. Kampusch 2018, S. 26). Unter gr\u00fcner Infrastruktur, auch als Stadtgr\u00fcn oder urbanes Gr\u00fcn bezeichnet, wird die Vernetzung nat\u00fcrlicher und naturnah gestalteter Fl\u00e4chen in St\u00e4dten verstanden (vgl. Kampusch 2018, S. 18). Dies umfasst ein Netzwerk aus gro\u00dffl\u00e4chig begr\u00fcnten Freir\u00e4umen, begr\u00fcnten Geb\u00e4uden und der Begr\u00fcnung von Stra\u00dfenr\u00e4umen (vgl. Mehra 2021, S. 144). Zus\u00e4tzlich zu begr\u00fcnten Parkfl\u00e4chen oder zu Dach- und Fassadenbegr\u00fcnung sind insbesondere Stadtb\u00e4ume eine optimale Vegetationsform, um dem W\u00e4rmeinseleffekt entgegenzuwirken und einen K\u00fchlungseffekt im st\u00e4dtischen Raum zu erzielen (vgl. Kampusch 2018, S. 20). 7 Theorieteil Die folgende Grafik des IPCC in Abbildung 3 veranschaulicht die Auswirkungen verschiedener st\u00e4dtischer Elemente auf die Temperatur im urbanen Raum. Die anthropogenen Einfl\u00fcsse, wie die zunehmende Urbanisierung, dunkle Oberfl\u00e4chen und Transmissionsw\u00e4rmeverluste, f\u00fchren zu einer Erh\u00f6hung der Temperatur um bis zu 2 \u00b0C gegen\u00fcber dem Umland. Im Gegensatz dazu steht die blaue und gr\u00fcne Infrastruktur, welche zu einer Reduktion der Temperatur um bis zu 3 \u00b0C beitr\u00e4gt. COOLING \u20ac Local effect on temperature (C) \u2014> WARMING -3 -2 1 0 +1 +2 R T T T T T ' T ' T City geometry J Building density, city layout, heigh os and size Heat from human activities % Domestic/ industrial heating y Heat-retaining 2 Water ( : Sea, river, is lakes, irrigation Cities often lack vegetation and water Vegetation Parks, forests gardens | \u0131 | \u0131 | \u0131 | | N -3 -2 1 0 +1 +2 COOLING \u20ac Local effect on temperature ((C) \u2014> WARMING Abbildung 3: Auswirkungen ausgew\u00e4hlter urbaner Elemente auf die Temperatur in der Stadt (Doblas-Reyes et al., S. 1463) Die vorliegende Arbeit fokussiert sich auf die gr\u00fcne Infrastruktur, speziell auf Stadtb\u00e4ume. In Kapitel 2.3.1 wird der K\u00fchlungseffekt durch Stadtb\u00e4ume, in Kapitel 2.3.2 der Mehrwert dieser f\u00fcr den urbanen Raum und in Kapitel 2.3.3 m\u00f6gliche Herausforderungen des st\u00e4dtischen Gr\u00fcns erl\u00e4utert.", - "embedding": { - "dense": [ - 0.02041507326066494, - -0.003115598112344742, - 0.03027767315506935, - -0.02302125096321106, - 0.004522487986832857, - 0.009300483390688896, - -0.03224508464336395, - -0.0030660934280604124, - 0.010814366862177849, - -0.0322195328772068, - 0.002331508556380868, - 0.000873517245054245, - -0.006298266816884279, - 0.0188309233635664, - -0.0065218363888561726, - -0.019060881808400154, - 0.04072794318199158, - 0.013874072581529617, - 0.010054231621325016, - 0.001830074586905539, - -0.0265217088162899, - 0.007971842773258686, - 0.005927780643105507, - -0.002633327152580023, - 0.002791422652080655, - 0.01940581575036049, - 0.007856864482164383, - -0.026930520310997963, - -0.014819451607763767, - 0.005257072858512402, - 0.009600705467164516, - -0.010635511949658394, - -0.01608421467244625, - 0.003698475193232298, - -0.01008617039769888, - -0.011242343112826347, - -0.0016911422135308385, - -0.0132097527384758, - 0.001461185165680945, - -0.011721420101821423, - 0.015087734907865524, - -0.00984982494264841, - 0.0038230353966355324, - -0.011536176316440105, - 0.0028505087830126286, - 0.034544654190540314, - 0.007716335356235504, - -0.0006088271620683372, - -0.017821667715907097, - 0.02307235263288021, - 0.01761726289987564, - 0.023775000125169754, - -0.01967409998178482, - 0.002599791856482625, - -0.029383396729826927, - 0.007345849182456732, - -0.030482079833745956, - 0.013797421008348465, - 0.011101813055574894, - -0.0151132857427001, - -0.0189331267029047, - -0.01622474379837513, - -0.008355104364454746, - 0.011433973908424377, - -0.029996614903211594, - -0.008846957236528397, - -0.01124873012304306, - 0.0009573557763360441, - 0.01066106278449297, - -0.011421198025345802, - 0.046272460371255875, - 0.055342987179756165, - 0.026342853903770447, - 0.0017773760482668877, - -0.0002281604683957994, - -0.006499479524791241, - 0.002048853086307645, - -0.0016895452281460166, - -0.01869039423763752, - 0.002807391807436943, - 0.004394733812659979, - -0.030073266476392746, - -0.02041507326066494, - 0.03697197884321213, - 0.008981098420917988, - 0.003308825893327594, - 0.0005154071259312332, - 0.019137533381581306, - 0.004298918414860964, - 0.0015689774882048368, - -0.0012879190035164356, - 0.013478036038577557, - 0.01530491653829813, - 0.030865341424942017, - -0.013248078525066376, - -0.000484267104184255, - -0.005586039274930954, - -0.0005154071259312332, - 0.027697043493390083, - -0.008412593975663185, - -0.012053580023348331, - 0.00444583548232913, - -0.0027546933852136135, - 0.0004922517109662294, - -0.044816065579652786, - -0.0005573263624683022, - -0.0027834379579871893, - 0.017131797969341278, - 0.02507808990776539, - -0.034238044172525406, - -0.010865468531847, - 0.03899049013853073, - -0.02800365351140499, - -0.026981621980667114, - 0.005317755974829197, - -0.01625029556453228, - 0.02836136519908905, - -0.01625029556453228, - -0.011753357946872711, - -0.0151005107909441, - 0.011491462588310242, - 0.0031283735297620296, - -3.800179183599539e-05, - -0.01256459578871727, - 0.01844766177237034, - 0.02098996564745903, - 0.005905423779040575, - 0.0007685195305384696, - -0.03676757216453552, - -0.030430978164076805, - -0.02091331221163273, - 0.010584410279989243, - 0.0031523273792117834, - 0.011025161482393742, - -0.018051626160740852, - 0.016748536378145218, - -0.002785034943372011, - 0.00927493255585432, - -0.029613353312015533, - -0.03485126420855522, - -0.006525030359625816, - 0.003589884378015995, - -0.049645163118839264, - -0.020300094038248062, - -0.006515448447316885, - 0.028489118441939354, - 0.025985142216086388, - 0.02290627360343933, - 0.004560814239084721, - -0.02120714634656906, - -0.008642550557851791, - -0.005349694285541773, - -0.001841253018938005, - 0.0019466499797999859, - -0.001454797456972301, - 0.02077278308570385, - -0.016735760495066643, - 0.00046949557145126164, - -0.024094384163618088, - 0.011957764625549316, - 0.0265217088162899, - -0.02680276706814766, - 0.006515448447316885, - -0.001644831383600831, - 0.023059578612446785, - 0.0038358105812221766, - -0.003775127697736025, - 0.014691698364913464, - 0.015279365703463554, - -0.00965819414705038, - -0.004356408026069403, - 0.03712528198957443, - -0.040268026292324066, - 0.029383396729826927, - 0.00907052680850029, - 0.022420808672904968, - 0.01002868078649044, - 0.025716859847307205, - -0.016569679602980614, - -0.032704997807741165, - -0.012047192081809044, - 0.006783731747418642, - 0.0034014475531876087, - 0.025831837207078934, - -0.02053005062043667, - 0.0024816193617880344, - 0.0395781584084034, - 0.020798334851861, - 0.00831677857786417, - 0.014091254211962223, - -0.0007313910755328834, - 0.012615697458386421, - 0.016096990555524826, - -0.0003173885925207287, - -0.6307976245880127, - 0.022152526304125786, - 0.014219008386135101, - -0.014104030095040798, - 0.012679574079811573, - 0.016454702243208885, - 0.030507629737257957, - 0.027058275416493416, - 0.0020760009065270424, - 0.020478948950767517, - 0.0018236868781968951, - 0.005458285100758076, - -0.010150047019124031, - -0.0019131145672872663, - 0.012104681693017483, - -0.018652068451046944, - 0.010852693580091, - 0.004605527967214584, - 0.026393955573439598, - 0.005764894653111696, - 0.004318081773817539, - 0.0197890792042017, - -0.005678660701960325, - -0.004365989472717047, - 0.02871907502412796, - 0.03027767315506935, - -0.006560162641108036, - -0.04913414642214775, - -8.74315737746656e-05, - 0.01059079822152853, - -0.004235041793435812, - 0.030763138085603714, - -0.01249433122575283, - 0.014461740851402283, - 0.05621171370148659, - 0.0320151261985302, - -0.0246054008603096, - 0.01780889369547367, - 0.0032449490390717983, - 0.015688179060816765, - -0.004599140025675297, - -0.010526920668780804, - 0.003197041107341647, - 0.011906662955880165, - -0.0025838224682956934, - 0.022867947816848755, - 0.028463568538427353, - -0.025065314024686813, - 6.926656351424754e-05, - -0.01168948132544756, - 0.018920352682471275, - -0.017885545268654823, - 0.008661714382469654, - 0.018971452489495277, - 0.026981621980667114, - 0.0011074665235355496, - 0.026342853903770447, - 3.877530252793804e-05, - -0.005518968217074871, - 0.009441012516617775, - 0.0006176102324388921, - 0.005496611353009939, - -0.022101424634456635, - -0.021194370463490486, - -0.025205843150615692, - 0.03198957443237305, - -0.036460962146520615, - -0.015828708186745644, - -0.0073905629105865955, - -0.016697434708476067, - 0.00039244399522431195, - 0.008604224771261215, - 0.0045384569093585014, - -0.011951376684010029, - 0.010201148688793182, - 0.01397627592086792, - 0.03400808572769165, - -0.0008878895896486938, - -0.00908330176025629, - 0.03027767315506935, - 0.001648025237955153, - -0.020811108872294426, - -0.0027530963998287916, - -0.009517665021121502, - 0.018613742664456367, - -0.029741106554865837, - -0.02328953519463539, - -0.014755574986338615, - -0.022241953760385513, - 0.001457192818634212, - 0.01658245548605919, - 0.010756878182291985, - -0.016326947137713432, - -0.03101864643394947, - -0.008917221799492836, - 0.030354324728250504, - 0.0015122867189347744, - 0.025985142216086388, - -0.006333399564027786, - -0.03669091686606407, - -0.00907052680850029, - 0.004803546238690615, - 0.020210666581988335, - 0.005448703654110432, - 0.017004042863845825, - 0.002831345656886697, - -0.004694955423474312, - 0.01020753663033247, - 0.03186182305216789, - -0.021807590499520302, - -0.00946656335145235, - 2.4402990675298497e-05, - -0.006358949933201075, - -0.007633295375853777, - -0.00755664287135005, - -0.01161921676248312, - 0.029255641624331474, - -0.011280668899416924, - 0.018204929307103157, - 0.014321211725473404, - 0.024758704006671906, - 0.001962619135156274, - 0.012487943284213543, - -0.02989441156387329, - 0.009044975973665714, - 0.01912475749850273, - -0.007058402523398399, - 0.0027706625405699015, - -0.0170168187469244, - -0.024822581559419632, - 0.003755964571610093, - 0.027032723650336266, - 0.036128800362348557, - 0.0038421982899308205, - 0.03730413690209389, - 0.0076907845214009285, - 0.024541523307561874, - -0.0007010495173744857, - -0.00580960838124156, - -0.009900926612317562, - -0.022037547081708908, - -0.003922044765204191, - 0.009504890069365501, - -0.03592439368367195, - -0.021833140403032303, - -0.016531353816390038, - -0.014985531568527222, - 0.0068028951063752174, - -0.013171426951885223, - 0.002989441156387329, - -0.031504109501838684, - -0.0018588191596791148, - 0.0020696131978183985, - 0.011363709345459938, - -0.0019833792466670275, - -0.0025534809101372957, - 0.0056850481778383255, - -0.036077700555324554, - -0.0032385613303631544, - -0.02206309698522091, - 0.008923609741032124, - 0.016901839524507523, - -0.025601880624890327, - 0.0022101423237472773, - -0.0321173295378685, - 0.0014212620444595814, - -0.0029495181515812874, - 0.022752968594431877, - -0.014321211725473404, - -0.03142745792865753, - -0.003749576862901449, - -0.02381332591176033, - 0.005410377401858568, - -0.0034174167085438967, - -0.013005346059799194, - -0.02323843352496624, - -0.027824798598885536, - -0.012596533633768559, - -0.0032385613303631544, - 0.007064790464937687, - 0.017642812803387642, - -0.0038390045519918203, - -0.01706792041659355, - -0.02041507326066494, - 0.013120325282216072, - 0.00992008950561285, - 0.018805373460054398, - 0.0037112506106495857, - -0.016339723020792007, - 0.005681854672729969, - 0.005678660701960325, - 0.030482079833745956, - -0.006841220892965794, - 0.006502673029899597, - -0.017527833580970764, - -0.024439319968223572, - -0.006962587125599384, - 0.02159040793776512, - -0.02764594368636608, - 0.005579651333391666, - 0.03434024751186371, - -0.000971728062722832, - 0.013797421008348465, - -0.006751793436706066, - 0.013050060719251633, - -0.01737453043460846, - 0.014180682599544525, - -0.004388346336781979, - 0.014959980733692646, - -0.001940262271091342, - 0.029408946633338928, - 0.007186156697571278, - -0.031069748103618622, - -0.018434887751936913, - -0.002251662313938141, - 0.04456055909395218, - -0.023174555972218513, - 0.0028600902296602726, - -0.009549603797495365, - -0.013912399299442768, - 0.00641324557363987, - 0.0010268219048157334, - 0.018013298511505127, - -0.024873683229088783, - -0.019495245069265366, - 0.018179379403591156, - -0.006346174515783787, - 0.02153930626809597, - 0.01679963804781437, - -0.01079520396888256, - -0.0070456271059811115, - 0.0077674370259046555, - -0.024567073211073875, - 0.005416765343397856, - -0.0007936710608191788, - 0.01668465882539749, - -0.0002505173906683922, - -0.028897931799292564, - 0.04606805369257927, - 0.006486704107373953, - 0.030865341424942017, - 0.03334376588463783, - 0.007460827473551035, - -0.028565770015120506, - 0.04261869937181473, - 0.005825577769428492, - 0.020760007202625275, - 0.03066093474626541, - 0.004784383345395327, - 0.00868726521730423, - -0.0028425240889191628, - 0.005320949945598841, - 0.002206948585808277, - -0.010507757775485516, - 0.01340138353407383, - -0.023123454302549362, - 0.03520897403359413, - -0.0026796378660947084, - 0.02647060714662075, - 0.021884242072701454, - 0.01959744654595852, - -0.007077565882354975, - 0.00900026224553585, - -0.014691698364913464, - -0.0011960958363488317, - 0.0029463241808116436, - 0.0005002363468520343, - -0.01926528662443161, - -0.023583369329571724, - 0.008348717354238033, - 0.017412856221199036, - -0.009313259273767471, - -0.00945378839969635, - 0.01257737074047327, - 8.438743680017069e-05, - 0.01377187017351389, - -0.0018604161450639367, - 0.02167983539402485, - -0.004209490958601236, - 0.002598194871097803, - 0.008706428110599518, - -0.020466173067688942, - 0.003318407339975238, - 0.036026597023010254, - -0.004548038821667433, - -0.023928305134177208, - 0.002689219545572996, - 0.014397864229977131, - -0.025831837207078934, - -0.010609961114823818, - -0.02441377006471157, - 0.0036314043682068586, - -0.029562251642346382, - -0.0065537746995687485, - 0.011727807112038136, - -0.022152526304125786, - 0.030890891328454018, - -0.015522098168730736, - 0.006055534817278385, - -0.007237258367240429, - 0.00447458028793335, - -0.011331770569086075, - -0.016889065504074097, - 0.005381632596254349, - 0.01723400130867958, - 0.007646070793271065, - -0.015189938247203827, - 0.011191241443157196, - 0.015381569042801857, - -0.0026668624486774206, - -0.014423415064811707, - -0.00463746627792716, - -0.0010004726937040687, - 0.0027754532638937235, - -0.02323843352496624, - 0.00983704999089241, - -0.001559395925141871, - -0.016531353816390038, - 0.03738078847527504, - 0.010833530686795712, - 0.00794629193842411, - -0.03939929977059364, - -0.013133100233972073, - 0.009076913818717003, - 0.0453270822763443, - 0.008763916790485382, - 0.003262515179812908, - 0.024669276550412178, - 0.006090667098760605, - -0.02036397159099579, - 0.0035100383684039116, - -0.029230091720819473, - -0.011050712317228317, - -0.025742409750819206, - -0.003762352280318737, - -0.0006647194968536496, - 0.024860907346010208, - -0.01397627592086792, - 0.007984618656337261, - 0.011229567229747772, - -0.0024576655123382807, - -0.02376222424209118, - 0.004723700229078531, - 0.004231847822666168, - -0.001165754278190434, - -0.007058402523398399, - -0.007901578210294247, - 0.05329892411828041, - 0.019444143399596214, - 0.007262808736413717, - 0.033497072756290436, - 0.015266590751707554, - 0.012781777419149876, - -0.014640596695244312, - 0.002342686988413334, - 0.016454702243208885, - 0.01904810592532158, - 0.005911811254918575, - -0.04277200251817703, - 0.0023586563766002655, - 0.010175597853958607, - -0.019418591633439064, - 0.029741106554865837, - 0.006547387223690748, - 0.03431469574570656, - 0.03209177777171135, - 0.0021973669063299894, - -0.02581906132400036, - -0.00212390860542655, - -0.021219922229647636, - -0.004915331024676561, - 0.024452095851302147, - -0.013490810990333557, - -0.00800378154963255, - 0.00838704314082861, - -0.006662365514785051, - -0.03400808572769165, - -0.004995177499949932, - 0.00830400362610817, - -0.021769262850284576, - 0.011791684664785862, - -0.010073394514620304, - 0.012532657012343407, - -0.02247191034257412, - -0.02546135149896145, - -0.0357966423034668, - -0.012551819905638695, - -0.02488645911216736, - 0.006103442516177893, - -0.01581593230366707, - -0.0012168558314442635, - 0.012481555342674255, - -0.014142355881631374, - -0.006346174515783787, - 0.025141965597867966, - -0.026342853903770447, - -0.022203626111149788, - 0.01397627592086792, - 0.0011058696545660496, - 0.00793351698666811, - 0.01871594600379467, - -0.009690132923424244, - 0.007467214949429035, - -0.00736501207575202, - -0.01022031158208847, - -0.027773696929216385, - -0.003283275058493018, - -0.035311177372932434, - 0.008872508071362972, - -0.009460176341235638, - -0.014257335104048252, - -0.024809805676341057, - -0.01835823431611061, - 0.026393955573439598, - -0.02192256785929203, - -0.005474254488945007, - 0.003318407339975238, - 0.014257335104048252, - -0.017872769385576248, - 0.01020753663033247, - 0.011842786334455013, - 0.0010883035138249397, - 0.03055873140692711, - -0.04795881360769272, - 0.031171949580311775, - 0.011593665927648544, - 0.006560162641108036, - -0.008431756868958473, - 0.016710208728909492, - 0.006087473127990961, - -0.024324340745806694, - 0.005748925264924765, - -0.007237258367240429, - -0.00535608222708106, - 0.019137533381581306, - -0.02721158042550087, - 0.02096441388130188, - 0.0002944328007288277, - -0.01359301432967186, - 0.012794552370905876, - 0.016020338982343674, - 0.0005142094451002777, - 0.02268909104168415, - -0.0264195054769516, - -0.014282885007560253, - -0.036435410380363464, - 0.03181071951985359, - 0.019967934116721153, - 0.01168948132544756, - 0.0012168558314442635, - -0.013011734001338482, - 0.04923634976148605, - -0.03280720114707947, - -0.00984982494264841, - -0.011900275014340878, - 0.017412856221199036, - 0.02017234079539776, - 0.018064400181174278, - -0.005186808295547962, - -0.012008866295218468, - 0.010922958143055439, - 0.013656890951097012, - -0.04757555201649666, - 0.0066048763692379, - -0.031120847910642624, - 0.00774188619107008, - 0.01193221379071474, - 0.018652068451046944, - 0.0007848879904486239, - -0.02419658750295639, - -0.015202713198959827, - 0.007997393608093262, - 0.00539760198444128, - 0.027875900268554688, - -0.017655588686466217, - -0.0132097527384758, - -0.011938601732254028, - 0.014487291686236858, - -0.011370096355676651, - -0.03850502520799637, - 0.016403600573539734, - -0.029357844963669777, - 0.02299570105969906, - 0.015266590751707554, - 0.005854322109371424, - -0.013452485203742981, - 0.03551558405160904, - 0.014704473316669464, - -0.02058115229010582, - -0.01060357317328453, - -0.004522487986832857, - 0.000870323390699923, - -0.017093470320105553, - 0.02282962016761303, - 0.0003401447320356965, - 0.00965819414705038, - 0.006291879341006279, - -0.0009421849972568452, - 0.00870004016906023, - 0.032270632684230804, - -0.019776303321123123, - -0.017668364569544792, - -0.023136230185627937, - -0.012098293751478195, - -0.006097054574638605, - 0.0284124668687582, - -0.012028029188513756, - 0.005410377401858568, - -0.01641637459397316, - 0.00463746627792716, - 0.014461740851402283, - -0.0032241889275610447, - 0.009939253330230713, - -0.0008487649611197412, - 0.02113049477338791, - -0.03444245085120201, - 0.026240650564432144, - 0.002719561103731394, - -7.949685823405161e-05, - -0.0032241889275610447, - -0.01811550185084343, - -0.02601069211959839, - -0.0340336374938488, - 0.01943136751651764, - -0.0077674370259046555, - -0.017119022086262703, - -0.003478099824860692, - -0.01529214158654213, - 0.001753422198817134, - -0.017668364569544792, - 0.025882938876748085, - -0.0340336374938488, - 0.005352888256311417, - -0.009811499156057835, - -0.009830662049353123, - -0.015164387412369251, - -0.0023602531291544437, - -0.0340336374938488, - 0.019827404990792274, - -0.023660020902752876, - -0.010609961114823818, - 0.02723713032901287, - -0.008252901956439018, - 0.017502283677458763, - 0.017885545268654823, - 0.0017023206455633044, - 0.035285625606775284, - -0.01720844954252243, - 0.042490944266319275, - 0.007531092036515474, - -0.024899234995245934, - -0.003516425844281912, - -0.03129970282316208, - -0.006560162641108036, - -0.010233086533844471, - 0.020478948950767517, - -0.0026828318368643522, - -0.02104106731712818, - -0.01866484433412552, - 0.008214575238525867, - 0.011210404336452484, - 0.01660800725221634, - -0.0027658718172460794, - 0.042516496032476425, - 0.031938474625349045, - 0.00989453960210085, - -0.012954245321452618, - -0.0161097664386034, - -0.012730675749480724, - -0.0011585680767893791, - 0.010731327347457409, - -0.010124496184289455, - 0.003222591942176223, - 0.010699388571083546, - 0.008074046112596989, - 0.059073399752378464, - 0.002029689960181713, - 0.03656316548585892, - -0.02041507326066494, - -0.013235303573310375, - -0.006809282582253218, - -0.020926088094711304, - 0.010807979851961136, - 0.017489507794380188, - 0.009255769662559032, - 0.0340336374938488, - 0.006266328506171703, - -0.020874986425042152, - 0.01808995194733143, - -0.018153827637434006, - 0.009377135895192623, - 0.014078479260206223, - 0.013273629359900951, - 0.02096441388130188, - -0.0001061954244505614, - -0.0005609194631688297, - -0.011331770569086075, - 0.023915529251098633, - 0.017770566046237946, - 0.0016608006553724408, - 0.0004667009343393147, - -0.0018172991694882512, - -0.0019083238439634442, - -0.019763527438044548, - -0.0021478624548763037, - 0.016365274786949158, - -0.006892322562634945, - -0.010616349056363106, - -0.007792987395077944, - 0.0025486901868134737, - -0.012136620469391346, - -0.007313910406082869, - 0.0376618467271328, - -0.024094384163618088, - -0.013529137708246708, - -0.004088124725967646, - -0.010054231621325016, - 0.02537192404270172, - -0.013695217669010162, - -0.01869039423763752, - -0.021449878811836243, - 0.02285517193377018, - -0.03730413690209389, - 0.020542826503515244, - 0.04228653758764267, - 0.00989453960210085, - 0.010501369833946228, - 0.01238573994487524, - -0.004985595587641001, - -0.011746970936655998, - 0.026649462059140205, - -0.002984650433063507, - -0.027722595259547234, - 0.007658846210688353, - -0.007818538695573807, - 0.002915982622653246, - -0.017962196841835976, - -0.003109210403636098, - 0.018038850277662277, - -0.007096728775650263, - -0.0036952814552932978, - -0.014270110055804253, - -0.01718289963901043, - 0.024464871734380722, - 0.011791684664785862, - -0.022816846147179604, - 0.0566716268658638, - -0.03198957443237305, - 0.009179117158055305, - 0.004286142997443676, - 0.016186418011784554, - -0.025474127382040024, - -0.012353802099823952, - -0.0188309233635664, - -0.021066617220640182, - 0.008744753897190094, - -0.008674489334225655, - 0.0019674100913107395, - 0.024950334802269936, - -0.03099309466779232, - -0.033497072756290436, - 0.010616349056363106, - 0.007224482949823141, - 0.013011734001338482, - 0.025959592312574387, - 0.01268596202135086, - -0.010239474475383759, - 0.02132212556898594, - -0.010507757775485516, - -0.018371010199189186, - -0.02022344246506691, - -0.005876678973436356, - -0.039808113127946854, - 0.003506844397634268, - 0.003979533910751343, - 0.014985531568527222, - 0.01296063233166933, - -0.025857388973236084, - 0.0004163978446740657, - 0.012788164429366589, - -0.039527054876089096, - -0.023366186767816544, - 0.005349694285541773, - -0.0044873557053506374, - 0.012998959049582481, - 0.010846305638551712, - -0.008763916790485382, - 0.0264450553804636, - 0.001758212922140956, - 0.022178076207637787, - 0.0009581542108207941, - -0.011178465560078621, - 0.002104745479300618, - 0.004273367580026388, - 0.03278164938092232, - 0.01303089689463377, - -0.005145288072526455, - -0.01154895219951868, - 0.01773224025964737, - -0.010654674842953682, - 0.0028457180596888065, - 0.021820364519953728, - 0.004774801898747683, - 0.0033375704661011696, - -0.015688179060816765, - 0.0011529788607731462, - 0.006528223864734173, - 0.006643202621489763, - 0.005221940577030182, - -0.04187772795557976, - 0.007601356599479914, - 0.02151375636458397, - 0.004005084745585918, - -0.0255380030721426, - 0.015879809856414795, - -0.00603637145832181, - -0.0008966726600192487, - -0.003909269347786903, - 0.008355104364454746, - -0.024682052433490753, - -0.012462392449378967, - -0.02038952149450779, - 0.01377187017351389, - 0.017630036920309067, - 0.003925238270312548, - 0.010801591910421848, - 0.0008559511043131351, - -0.016045888885855675, - -0.0050750235095620155, - -0.007435276638716459, - -0.022931823506951332, - 0.026904970407485962, - 0.0170168187469244, - 0.002328314818441868, - 0.02687941864132881, - -0.01874149590730667, - 0.015241039916872978, - -0.02206309698522091, - 0.0073905629105865955, - -0.01622474379837513, - -0.004305306356400251, - 0.0020552407950162888, - -0.002064822241663933, - 0.0001699725689832121, - 0.0005653109983541071, - -0.005078217480331659, - -0.013120325282216072, - -0.002218127017840743, - -0.008112371899187565, - -0.005793638993054628, - -0.005110155791044235, - -0.01756616123020649, - -0.003177878214046359, - 0.011299831792712212, - -0.0207216814160347, - -0.023302311077713966, - -0.007773824501782656, - 0.015777606517076492, - -0.021271023899316788, - 0.015752054750919342, - 0.16863514482975006, - 0.0037463828921318054, - -0.0005605202168226242, - 0.021079393103718758, - -0.01665910705924034, - -0.011785296723246574, - 0.015253814868628979, - 0.00561797758564353, - -0.023225657641887665, - 0.022190852090716362, - -0.015253814868628979, - 0.014231784269213676, - -0.009434625506401062, - -0.0001730666117509827, - 0.020811108872294426, - -0.03324156254529953, - -0.03390588238835335, - -0.004774801898747683, - 0.002609373303130269, - 0.03219398111104965, - 0.03847947344183922, - -0.021603183820843697, - 0.007269196677953005, - -0.007729110773652792, - 0.0019003391498699784, - 0.007607744541019201, - 0.003205025801435113, - 0.011727807112038136, - 0.02436266839504242, - 0.015330467373132706, - 0.006809282582253218, - 0.0051612574607133865, - 0.003602659795433283, - -0.024682052433490753, - 0.006218420807272196, - 0.009792336262762547, - 0.022535787895321846, - -0.02000625990331173, - 0.0161097664386034, - 0.018728721886873245, - -0.014027377590537071, - -0.012903143651783466, - -0.020619478076696396, - -0.006560162641108036, - -0.016786862164735794, - 0.02084943652153015, - -0.028182508423924446, - -0.00311080738902092, - -0.008872508071362972, - -0.0008655326091684401, - -0.01212384458631277, - -0.013490810990333557, - 0.016620781272649765, - 0.04384513571858406, - -0.01008617039769888, - 0.019444143399596214, - 0.015049409121274948, - -0.017604487016797066, - 0.022267503663897514, - -0.0029479211661964655, - -0.03970590978860855, - 0.04180107265710831, - -0.013133100233972073, - 0.030022164806723595, - -0.0016232728958129883, - -0.0024991855025291443, - -0.016620781272649765, - 0.019942382350564003, - -0.001360578928142786, - -0.0018188960384577513, - -0.029613353312015533, - -0.017195673659443855, - -0.02307235263288021, - 0.01808995194733143, - -0.022459134459495544, - -0.008112371899187565, - 0.02762039192020893, - -0.009434625506401062, - 0.024848133325576782, - 0.011574503034353256, - -0.0302521213889122, - 0.010807979851961136, - 0.005745731294155121, - -0.024375442415475845, - 0.02230582945048809, - -0.03377813100814819, - 0.027748145163059235, - 0.01326085440814495, - 0.0027546933852136135, - -0.018997004255652428, - 0.009357973001897335, - 0.0077674370259046555, - 5.993454033159651e-05, - -0.008540348149836063, - 0.015241039916872978, - -0.0008559511043131351, - 0.007888803258538246, - 0.0015801560366526246, - -0.0021127299405634403, - 0.020261768251657486, - -0.00410409364849329, - 0.055342987179756165, - 0.03855612501502037, - -0.015854258090257645, - -0.014052928425371647, - 0.010686613619327545, - -0.004950463306158781, - 0.01359301432967186, - 0.00021518547146115452, - -0.011408423073589802, - -0.0033247950486838818, - -0.026930520310997963, - 0.0024656502064317465, - -0.007269196677953005, - -0.006087473127990961, - 0.025601880624890327, - 0.004017860163003206, - -0.028105856850743294, - -0.009313259273767471, - -0.004908943548798561, - -0.02228027954697609, - 0.0032305766362696886, - 0.022970151156187057, - -0.013644115999341011, - 0.01718289963901043, - -0.009217443875968456, - -0.042874205857515335, - 0.016403600573539734, - -0.003024573437869549, - -0.007761049084365368, - 0.023736674338579178, - -0.021309349685907364, - 0.00029183781589381397, - 0.001370160491205752, - -0.0004663017170969397, - 0.02877017669379711, - 0.019737977534532547, - -0.04205658286809921, - 0.00581599585711956, - 0.0072947475127875805, - 0.004915331024676561, - -0.040549084544181824, - -0.00018893602828029543, - -0.022344157099723816, - 0.00900026224553585, - -0.007288359571248293, - -0.007288359571248293, - 0.0022740194108337164, - -0.02532082237303257, - -0.018434887751936913, - 0.008751141838729382, - -0.0005389617290347815, - 0.005017534364014864, - -0.016531353816390038, - 0.017604487016797066, - -0.004691761918365955, - -0.009549603797495365, - -0.03101864643394947, - 0.009096077643334866, - 0.017463957890868187, - 0.003516425844281912, - 0.010405554436147213, - -0.008648938499391079, - -0.016352498903870583, - -0.016544129699468613, - 0.00755025539547205, - -0.15821042656898499, - 0.0025646593421697617, - 0.017221225425601006, - -0.039833664894104004, - -0.0026684594340622425, - -0.011683093383908272, - -0.012053580023348331, - -0.02244635857641697, - 0.003273693611845374, - 0.007818538695573807, - 0.029741106554865837, - 0.005784057546406984, - -0.02228027954697609, - -0.013759094290435314, - -0.020185114815831184, - 0.0007046425598673522, - -0.014627820812165737, - 0.02866797335445881, - 0.02378777600824833, - 0.0032593212090432644, - 0.008674489334225655, - -0.03431469574570656, - 0.01605866476893425, - -0.0055892327800393105, - 0.01754060946404934, - -0.004991983529180288, - -0.027032723650336266, - 0.019201410934329033, - 0.0030836595688015223, - -0.023085128515958786, - -0.005835159216076136, - 0.01151062548160553, - 0.017170123755931854, - -0.015688179060816765, - 0.010507757775485516, - -0.018588190898299217, - 0.011804459616541862, - -0.015560423955321312, - -0.005918199196457863, - 0.03582219034433365, - 0.03740634024143219, - -0.020325643941760063, - -0.01572650484740734, - 0.022561337798833847, - -0.03883718326687813, - -0.003166699782013893, - 0.011893888004124165, - 0.010654674842953682, - -0.0018508345820009708, - 0.00015360409452114254, - 0.002791422652080655, - -0.01032890286296606, - -0.01940581575036049, - 0.007435276638716459, - -0.003864555386826396, - 0.02019789069890976, - -0.0023123454302549362, - 0.021283799782395363, - 0.00010639504034770653, - -0.0003231774317100644, - 0.007352236658334732, - -0.017272327095270157, - -0.005212359130382538, - 0.02192256785929203, - 0.0023554624058306217, - -0.01950801908969879, - 0.008655326440930367, - 0.0027994071133434772, - -0.02005736157298088, - 0.014065703377127647, - -0.043283019214868546, - -0.021730937063694, - 0.024707604199647903, - -0.0007944695535115898, - -0.005368857644498348, - 0.0061513502150774, - -0.012519882060587406, - 0.01677408628165722, - -0.0032513365149497986, - -0.009760397486388683, - -0.02685386873781681, - 0.062139496207237244, - -0.026049019768834114, - -0.011523401364684105, - -0.021641509607434273, - 0.005716986954212189, - -0.0009821080602705479, - -0.0007637287490069866, - 0.011849173344671726, - 0.003583496669307351, - 0.01797497272491455, - -0.040216926485300064, - -0.0320662260055542, - -0.018294358626008034, - -0.0006595294689759612, - -0.008680877275764942, - 0.029306743294000626, - 0.0019913639407604933, - 0.00019582276581786573, - -0.03510677069425583, - 0.014474516734480858, - -0.002973472001031041, - -0.027007173746824265, - -0.014078479260206223, - 0.013452485203742981, - 0.023519491776823997, - -0.009594317525625229, - 0.013835746794939041, - 0.04617025703191757, - 0.012979796156287193, - -0.013554688543081284, - -0.00736501207575202, - 0.01940581575036049, - -0.0008743157377466559, - -0.017911095172166824, - -0.0014779528137296438, - 0.010654674842953682, - -0.02017234079539776, - -0.004688567947596312, - -0.013554688543081284, - 0.022957375273108482, - 0.0016943360678851604, - -0.037253037095069885, - 0.00107233424205333, - 0.006327011622488499, - -0.01959744654595852, - -0.0828867256641388, - 0.006282297894358635, - 0.028974583372473717, - 0.03250059112906456, - 0.016863513737916946, - -0.004912137053906918, - 0.009115240536630154, - 0.01161921676248312, - 0.0017869576113298535, - 0.020734457299113274, - -0.057233743369579315, - -0.02907678671181202, - 0.0008854941697791219, - 0.0036569552030414343, - 0.0127690015360713, - -0.009856212884187698, - -0.010533308610320091, - -0.012967020273208618, - -0.0284124668687582, - 0.02984330989420414, - 0.015317692421376705, - -0.011414810083806515, - -0.024924784898757935, - -0.004372376948595047, - 8.294022700283676e-05, - 0.0028441210743039846, - -0.029281193390488625, - 0.01416790671646595, - 0.016211969777941704, - 0.006173707079142332, - 0.015752054750919342, - -0.007901578210294247, - 0.03285830095410347, - -0.03288385272026062, - 0.014282885007560253, - -0.008105984888970852, - -0.0037112506106495857, - -0.03163186460733414, - 0.004449029453098774, - -0.01677408628165722, - -0.016863513737916946, - -0.018485989421606064, - 0.042567599564790726, - -0.02912788838148117, - -0.0003640986105892807, - -0.009805111214518547, - -0.013937950134277344, - -0.013503586873412132, - -0.004385152366012335, - -0.02869352512061596, - -0.03487681224942207, - -0.02022344246506691, - 0.006429214961826801, - 0.008399819023907185, - 0.02159040793776512, - 0.020325643941760063, - 0.011114588938653469, - -0.020708905532956123, - -0.002349074697121978, - 4.975415504304692e-05, - -0.007722722832113504, - 0.022740192711353302, - -0.027288231998682022, - 0.04195437952876091, - -0.003573915222659707, - -0.012347414158284664, - -0.03198957443237305, - -0.0022740194108337164, - -0.0031299705151468515, - -0.028054755181074142, - -0.017911095172166824, - -0.002831345656886697, - -0.0010124496184289455, - -0.0001755617995513603, - -0.018511539325118065, - -0.0020504500716924667, - -0.03165741637349129, - -0.005368857644498348, - -0.0008327956893481314, - -0.020862210541963577, - -0.040165822952985764, - -0.039884764701128006, - 0.02905123494565487, - -0.006956199649721384, - 0.016288621351122856, - 0.005362469702959061, - -0.003963564522564411, - -0.01649302802979946, - 0.018792597576975822, - -0.011414810083806515, - 0.018818149343132973, - -0.00877030473202467, - 0.015943685546517372, - -0.006540999282151461, - 0.006256747059524059, - 0.0019035330042243004, - 0.010820754803717136, - -0.007396950386464596, - -0.003007007297128439, - 0.0005613186513073742, - -0.023276759311556816, - -0.004548038821667433, - -0.03932264819741249, - 0.020785558968782425, - 0.004500131122767925, - -0.01584148220717907, - -0.004608721937984228, - 0.007684396579861641, - 0.012775389477610588, - 0.0075183166190981865, - 0.005758506711572409, - 0.0009014634415507317, - -0.013145876117050648, - 0.016952941194176674, - 0.01104432437568903, - -0.009670970030128956, - 0.0018013298977166414, - -0.003969952464103699, - 0.002344283973798156, - 0.016326947137713432, - 0.015790380537509918, - -0.0035451706498861313, - -0.016339723020792007, - 0.007735498249530792, - -0.005841546691954136, - 0.00679011968895793, - -0.024592624977231026, - 0.004618303384631872, - -0.02348116599023342, - -0.006815670523792505, - -0.004602333996444941, - -0.023327860981225967, - 0.010578022338449955, - -0.005158063489943743, - -0.022484686225652695, - 0.00387413683347404, - -0.0026556840166449547, - -0.02307235263288021, - 0.010629124008119106, - 0.030865341424942017, - -0.000532973266672343, - 0.061832886189222336, - -0.0359499454498291, - -0.03561778739094734, - 0.0075183166190981865, - -0.027467086911201477, - -0.0011330173583701253, - -0.010252250358462334, - 0.012539044953882694, - 0.003580302931368351, - 0.007499153725802898, - -0.014385088346898556, - 0.03316491097211838, - 0.017655588686466217, - 0.0036218229215592146, - -0.003966758493334055, - 0.010942121036350727, - -0.025359148159623146, - 0.011580890975892544, - 0.029332295060157776, - -0.0029926348943263292, - -0.01761726289987564, - 0.04072794318199158, - -0.00017336603195872158, - 0.009485726244747639, - 0.010967671871185303, - 0.04836762323975563, - -0.03817286342382431, - -0.027467086911201477, - 0.007652458269149065, - 0.017438406124711037, - -0.03242393955588341, - -0.026317302137613297, - -0.002836136380210519, - 0.0123027004301548, - 0.018920352682471275, - -0.013439709320664406, - 0.004458610899746418, - 0.03663981705904007, - -0.016160868108272552, - 0.008719203062355518, - 0.0321684293448925, - 0.0031283735297620296, - 0.024375442415475845, - -0.026342853903770447, - -0.006975362543016672, - 0.017834443598985672, - 0.01093573309481144, - -0.007939904928207397, - -0.006540999282151461, - -0.015419894829392433, - 0.015470996499061584, - 0.013733543455600739, - 0.0039380136877298355, - -0.008815018460154533, - -0.002740320982411504, - 0.017476731911301613, - 0.006968975067138672, - 0.021066617220640182, - -0.01036084070801735, - 0.00972845871001482, - 0.031938474625349045, - 0.0007421702612191439, - 0.0012432050425559282, - 0.0076141320168972015, - -0.01998070999979973, - -0.010003129951655865, - 0.01268596202135086, - -0.006049146875739098, - -0.04525043070316315, - -0.023327860981225967, - 0.02838691510260105, - -0.0378662534058094, - 0.0284124668687582, - -0.002987844171002507, - -0.007147830445319414, - -0.016326947137713432, - 0.04806101694703102, - -0.009977579116821289, - -0.002700397977605462, - -0.027390435338020325, - -0.005902229808270931, - 0.023915529251098633, - 0.005870291497558355, - -0.0015234651509672403, - 0.006956199649721384, - 0.017655588686466217, - 0.012871204875409603, - -0.012762614525854588, - -0.011197628453373909, - 0.005962912924587727, - 0.00016298601985909045, - 0.01658245548605919, - -0.005554100498557091, - -0.024899234995245934, - -0.014397864229977131, - -0.016135316342115402, - -0.018511539325118065, - 0.005174032878130674, - 0.012890367768704891, - 0.04277200251817703, - 0.08533959835767746, - 0.040600188076496124, - 0.0026349241379648447, - 0.002430517924949527, - -0.009696520864963531, - 0.0028441210743039846, - -0.0008423772524110973, - 0.009817887097597122, - -0.0027642748318612576, - -0.050411686301231384, - 0.009498502127826214, - -0.020683355629444122, - 0.019137533381581306, - -0.020542826503515244, - -0.019916832447052002, - 0.023340636864304543, - -0.008406206034123898, - 0.01756616123020649, - -0.025384698063135147, - 0.020887762308120728, - 0.0284124668687582, - -0.015560423955321312, - 0.016940167173743248, - 0.01742563210427761, - -0.03704863041639328, - -0.01720844954252243, - 0.006968975067138672, - -0.019495245069265366, - 0.008463695645332336, - 0.010629124008119106, - -0.001258375821635127, - -6.577329622814432e-05, - -0.06127076968550682, - -0.014065703377127647, - 0.02534637227654457, - -0.008642550557851791, - -0.020926088094711304, - -0.026598360389471054, - 0.03339486941695213, - 0.0066495900973677635, - 0.022484686225652695, - 0.021066617220640182, - -0.036128800362348557, - -0.05025838315486908, - -0.007256421260535717, - -0.010463044047355652, - -0.016288621351122856, - -0.03214288130402565, - -0.03715083375573158 - ], - "sparse": "SparseEmbedding(values=array([1.94989299, 1.9279748 , 1.49628055, 1.78115117, 0.9125081 ,\n 0.9125081 , 1.28996793, 1.87016437, 0.9125081 , 1.87016437,\n 2.01085404, 0.9125081 , 0.9125081 , 1.28996793, 0.9125081 ,\n 0.9125081 , 0.9125081 , 0.9125081 , 1.28996793, 1.28996793,\n 1.62633555, 0.9125081 , 0.9125081 , 1.71581769, 0.9125081 ,\n 1.28996793, 0.9125081 , 1.28996793, 0.9125081 , 0.9125081 ,\n 0.9125081 , 0.9125081 , 0.9125081 , 1.28996793, 0.9125081 ,\n 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 , 1.28996793,\n 1.49628055, 1.28996793, 0.9125081 , 1.49628055, 1.49628055,\n 0.9125081 , 0.9125081 , 1.28996793, 1.28996793, 0.9125081 ,\n 0.9125081 , 1.28996793, 0.9125081 , 0.9125081 , 0.9125081 ,\n 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 ,\n 0.9125081 , 1.28996793, 0.9125081 , 0.9125081 , 0.9125081 ,\n 1.49628055, 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 ,\n 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 , 1.83094928,\n 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 ,\n 1.49628055, 0.9125081 , 0.9125081 , 1.49628055, 0.9125081 ,\n 0.9125081 , 1.28996793, 1.49628055, 1.28996793, 1.49628055,\n 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 ,\n 1.28996793, 0.9125081 , 1.28996793, 0.9125081 , 1.28996793,\n 0.9125081 , 0.9125081 , 1.28996793, 1.62633555, 1.78115117,\n 1.28996793, 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 ,\n 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 ,\n 1.28996793, 0.9125081 , 1.28996793, 1.62633555, 0.9125081 ,\n 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 ,\n 0.9125081 , 0.9125081 , 0.9125081 , 1.28996793, 1.28996793,\n 1.28996793, 1.28996793, 1.71581769, 1.28996793, 0.9125081 ,\n 1.49628055, 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 ,\n 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 , 1.49628055,\n 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 ,\n 1.28996793, 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 ,\n 0.9125081 , 0.9125081 , 1.28996793, 0.9125081 , 0.9125081 ,\n 0.9125081 , 1.49628055, 0.9125081 , 0.9125081 , 0.9125081 ,\n 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 ,\n 0.9125081 , 0.9125081 , 0.9125081 , 1.49628055, 0.9125081 ,\n 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 , 0.9125081 ,\n 0.9125081 ]), indices=array([ 19522071, 264741300, 1618153130, 160566303, 1413554298,\n 2122227266, 860787312, 408270109, 1434424779, 164058840,\n 1109731834, 1666082760, 1979773326, 651773314, 838945752,\n 119523897, 308377216, 1725631217, 1638510030, 820459760,\n 433708589, 650015492, 1140918658, 1669595920, 517681357,\n 843816345, 423733604, 602572328, 1016026407, 1219188223,\n 99212807, 367467701, 290749275, 2124172637, 1480001521,\n 1427900950, 691794919, 364823643, 1295520201, 2053391496,\n 1505931685, 1687138866, 1329229094, 364305688, 378174453,\n 494070171, 565373295, 1033482951, 1894123915, 720732358,\n 100755915, 1286817522, 1636301946, 62357295, 1485542859,\n 463117491, 586235759, 476704413, 50579337, 987377478,\n 2058219930, 1047604504, 885814673, 176244452, 1467313664,\n 2110341203, 786469680, 1778304801, 994276901, 464723026,\n 720266233, 1087744415, 319869068, 580417171, 1174634009,\n 36213175, 667400858, 358966492, 641040124, 221927294,\n 1475906442, 1739591421, 154063765, 1079921207, 2063419615,\n 1282568013, 1041901940, 1515684580, 1082106827, 1553747220,\n 2024552059, 163077544, 1416371393, 525629482, 1753164810,\n 47951928, 1425902633, 2077811411, 1462186005, 108945121,\n 1167073666, 1936173730, 2115907048, 2103309648, 37224978,\n 1362353402, 1055164894, 109717416, 220308237, 699825431,\n 643934111, 1073413113, 935488190, 1424470978, 1064492184,\n 147047731, 1935340272, 1356962648, 516762017, 1905284006,\n 893265301, 217252537, 1439547398, 1217513728, 1285142779,\n 739092865, 190652800, 1923631478, 1243225570, 30662561,\n 243669559, 1830093894, 1810453357, 764297089, 1553167345,\n 1966288579, 79735003, 898344391, 2087367745, 81427202,\n 104962468, 936045299, 599857600, 309782534, 1144702808,\n 1082468256, 116350199, 733345611, 91759785, 113387672,\n 918197339, 1815470626, 12344922, 1037406681, 422399162,\n 1285937727, 834323496, 559860000, 1189334739, 2131585778,\n 1232744358, 1754743405, 967714644, 1648569344, 1407327463,\n 1734313546, 1641421362, 46497643, 483925762, 1692320747,\n 80777783, 717918380, 541262143, 795595028, 1147900472,\n 544882233, 812080723, 499733850, 702141502, 2022840656,\n 703464077]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 47, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 348 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000048.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000048.json deleted file mode 100644 index 6e98709d2f06b8cfaefdcdd99cf6e26d878f0350..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000048.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000048", - "content": "2.3.1 K\u00fchlungseffekt durch Stadtb\u00e4ume Stadtb\u00e4ume beeinflussen durch Verschattung und Verdunstung \u201edie Lufttemperatur, die Strahlungsverh\u00e4ltnisse, die W\u00e4rmespeicherung der verschatteten Bereiche, die Windgeschwindigkeit, die relative Luftfeuchtigkeit, die Oberfl\u00e4chenalbedo sowie die Oberfl\u00e4chenrauheit des Bodens\u201c (vgl. Mehra 2021, S. 121). Winde in der Stadt sind essenziell, um Frischluft zuzuf\u00fchren und k\u00fchlere Luft aus dem Umland in die erw\u00e4rmten St\u00e4dte zu transportieren. Die Verwirbelung bodennaher Winde f\u00f6rdert die Zufuhr von Kaltluft ins Stadtinnere, wobei eine m\u00f6glichst heterogene Oberfl\u00e4che in Bodenn\u00e4he die Verwirbelung beg\u00fcnstigt. Neben der Bebauung beeinflusst auch die Vegetation ma\u00dfgeblich die Oberfl\u00e4chenrauheit in der Stadt. Pflanzen tragen zur Verwirbelung der Luft bei und k\u00f6nnen gezielt als Steuerungselemente der 8 Theorieteil Windrichtung eingesetzt werden, d\u00fcrfen jedoch nicht zu einer Windstille f\u00fchren. (vgl. Feldmann et al. 2023, S. 18) Durch die Verschattung haben Stadtb\u00e4ume einen direkten Einfluss auf die Temperaturen in der Stadt und den Energiebedarf der Geb\u00e4ude. Der Schattenwurf der B\u00e4ume tr\u00e4gt ma\u00dfgeblich zur Reduktion der thermischen Aufheizung des st\u00e4dtischen Raums bei. Er h\u00e4ngt von der Form, der Gr\u00f6\u00dfe und der Belaubungsdichte der Baumkorne ab. \u00dcber den Blattfl\u00e4chenindex (Leaf Area Index, LAI), der das Verh\u00e4ltnis der Blattfl\u00e4che pro Bodenfl\u00e4che angibt und somit den \u00dcberdeckungsgrad der Baumkrone misst, kann der Verschattungseffekt bestimmt werden. Je h\u00f6her der \u00dcberdeckungsgrad des Baums, desto st\u00e4rker wird die eintreffende solare Strahlung abgeschw\u00e4cht und desto sp\u00fcrbarer ist der Schatten. (vgl. Feldmann et al. 2023, S. 20) Folglich ist der LAI bei einer Sonneneinstrahlung von 90\u00b0 am geringsten. Eine Zunahme des LAI um eine Einheit kann an hei\u00dfen Sommertagen eine Abnahme der Oberfl\u00e4chentemperatur von 1,2 Kelvin bewirken (vgl. Mehra 2021, S. 122). Die Strahlungsintensit\u00e4t nimmt durch die Laubschichten exponentiell ab (Feldmann et al. 2023, S. 20). Bei vollbelaubter Baumkrone k\u00f6nnen B\u00e4ume bis zu 90 % der Strahlung absorbieren (vgl. Kampusch 2018, S. 27). Ein gro\u00dfer Teil dieser absorbierten Strahlung wird f\u00fcr die Photosynthese genutzt, w\u00e4hrend nur ein kleiner Teil wieder an die Umgebung abgegeben wird. Durch den Verschattungseffekt, abh\u00e4ngig von Baumart und Belaubungsdichte, kann die Lufttemperatur lokal unter B\u00e4umen um bis zu 10\u201312 \u00b0C sinken (vgl. Kampusch 2018, S. 27; vgl. Feldmann et al. 2023, S. 21). Es ist zu beachten, dass der tats\u00e4chliche K\u00fchlungseffekt nicht nur durch den Baum selbst erzielt wird. Die tats\u00e4chliche Temperatur der Bodenfl\u00e4che im Baumschatten wird zus\u00e4tzlich von der Beschaffenheit und F\u00e4rbung des Bodenmaterials und damit von seinem Reflexions- bzw. Absorptionsverm\u00f6gen beeinflusst. Durch die Verwendung geeigneter Baumaterialien und die Gestaltung der Umgebung der Vegetation kann der K\u00fchlungseffekt weiter gesteigert werden. (Feldmann et al. 2023, S. 21) Ein weiterer Beitrag zur K\u00fchlung des Stadtklimas ist die Verdunstung. Die Verdunstung beschreibt den physikalischen Prozess, bei welchem Wasser von dem fl\u00fcssigen in den gasf\u00f6rmigen Aggregatzustand \u00fcbergeht. Dieser Phasen\u00fcbergang erfordert Energie, die der Umgebung entzogen wird. Diese Energieentnahme f\u00fchrt zu einer Temperaturabsenkung, die auch als \"Verdunstungsk\u00e4lte\" bezeichnet wird. (vgl. Deutscher Wetterdienst 2022) Die Verdunstung kann in die Transpiration und die Evaporation unterteilt werden. Transpiration beschreibt den Vorgang, bei dem Pflanzen \u00fcber ihre Wurzeln Wasser aus dem Boden aufnehmen und dieses haupts\u00e4chlich \u00fcber ihre Bl\u00e4tter in Form von Wasserdampf an die Umgebung abgeben. Die f\u00fcr diesen Prozess ben\u00f6tigte Energie wird der eingestrahlten Globalstrahlung und somit der Umgebung entnommen. \u00dcber die Transpiration verlieren B\u00e4ume pro Tag bis zu 500 l Wasser, was einer K\u00fchlleistung von bis zu 350 kWh entspricht. (vgl. Mehra 2021, S. 121). Die Evaporation beschreibt die Verdunstung von Wasserfl\u00e4chen und von sowohl bewachsenen als auch von versiegelten Oberfl\u00e4chen, bevor das Oberfl\u00e4chenwasser abgeleitet wird. B\u00e4ume tragen durch ihr Bl\u00e4tterdach zu einer Erh\u00f6hung der Gesamtoberfl\u00e4che f\u00fcr die Verdunstung, speziell nach Regenereignissen, bei. (vgl. Kampusch 2018, S. 18) 9 Theorieteil Eine genaue Aufteilung der Verdunstungsmengen nach Transpiration und Evaporation ist kaum m\u00f6glich. Deshalb werden die beiden Verdunstungsprozesse unter dem Begriff Evapotranspiration zusammengefasst (vgl. Mehra 2021, S. 118). Die Teilprozesse sind in Abbildung 4 schematisch dargestellt. Evapotranspiration \"nn N ! 4 Qr Globalstrahlung \\ Transpiration Evaporation n\\\\ DD nassen Bl\u00e4ttern 060 ua | Wasseraufnahme AS Evaporation des Bodens Evaporation von Wasserfl\u00e4chen \u2014 \u00fcber die Wurzeln Abbildung 4: Schematische Darstellung Evapotranspiration (eigene Darstellung nach Zhang et al. 2020) Wie der Verschattungseffekt ist auch der K\u00fchlungseffekt von der Art und den Eigenschaften der Pflanzen, aber auch von dem Verh\u00e4ltnis von begr\u00fcnten zu bebauten bzw. versiegelten Fl\u00e4chen, abh\u00e4ngig. Eine erh\u00f6hte Sonneneinstrahlung sowie hohe Lufttemperaturen in Verbindung mit niedriger relativer Luftfeuchtigkeit f\u00f6rdern die Verdunstung. Im Gegensatz dazu f\u00fchrt ein Anstieg der Luftfeuchtigkeit zu einer Abnahme der Verdunstungsmenge. (vgl. Deutscher Wetterdienst 2022) Die Verdunstung ist eng mit dem Vorhandensein unversiegelter Fl\u00e4chen verbunden. In St\u00e4dten sind auf Grund des hohen Grads an Versiegelung kaum Verdunstungspotentiale vorhanden, da die versiegelte Oberfl\u00e4che das Einsickern des Regenwassers in die oberen Bodenschichten und somit eine Zwischenspeicherung der Wassermengen verhindert. Ohne eine Erh\u00f6hung des Gr\u00fcnanteils kann dieses K\u00fchlpotential nicht oder nur zu einem geringen Teil genutzt werden. Dabei stellen B\u00e4ume die wirksamste Vegetationsform zur Erzielung von K\u00fchlungseffekten dar. Je mehr B\u00e4ume gepflanzt werden, desto sp\u00fcrbarer ist der Effekt. (vgl. Feldmann et al. 2023, S. 24)", - "embedding": { - "dense": [ - 0.015785519033670425, - -0.003697367152199149, - 0.03152060508728027, - -0.023262208327651024, - 0.011177207343280315, - 0.02516605146229267, - -0.025178659707307816, - -0.003037010319530964, - -0.004110286943614483, - -0.02748596854507923, - -0.0070038787089288235, - 0.007161481771618128, - -0.011965221725404263, - 0.023728711530566216, - -0.0018124348716810346, - 0.01178240217268467, - 0.04236369580030441, - -0.00255159311927855, - 0.014386004768311977, - -0.005897505208849907, - -0.013616901822388172, - 0.01265237107872963, - 0.004680810030549765, - 0.004192240536212921, - -0.015735086053609848, - 0.01491555105894804, - 0.030083267018198967, - -0.03043629787862301, - -0.009607480838894844, - 0.00760277034714818, - 0.02652774192392826, - -0.007407342549413443, - -0.018634982407093048, - -0.009802908636629581, - -0.010855697095394135, - -0.0028967438265681267, - -0.010370279662311077, - -0.026981638744473457, - 0.01742459088563919, - -0.010805264115333557, - 0.02284613624215126, - -0.009639001451432705, - -0.004520054906606674, - -0.005043297074735165, - 0.020690126344561577, - 0.02362784557044506, - 0.009059022180736065, - -0.003252926515415311, - -0.008302527479827404, - 0.027460752055048943, - 0.03641260415315628, - 0.015924209728837013, - -0.015634220093488693, - -0.0015516018029302359, - -0.02507779374718666, - 0.000599285529460758, - -0.02302265167236328, - 0.007609074469655752, - 0.005626428406685591, - -0.0032497744541615248, - -0.022127466276288033, - -0.006111845374107361, - -0.007892759516835213, - 0.015268581919372082, - -0.04087592288851738, - -0.009632697328925133, - -0.014789468608796597, - -0.0006319881649687886, - -0.0012466399930417538, - -0.013478211127221584, - 0.040951572358608246, - 0.05005472153425217, - 0.024359123781323433, - -0.00038061130908317864, - -0.011372635141015053, - -0.007388430181890726, - 0.0072938683442771435, - 0.015230757184326649, - -0.016075508669018745, - 0.002650883048772812, - 0.007085832301527262, - -0.01549553032964468, - -0.022190507501363754, - 0.051996391266584396, - 0.025897329673171043, - 0.009569656103849411, - -0.00566740520298481, - 0.017979353666305542, - 0.0019306371686980128, - 0.005487737711519003, - 0.008296223357319832, - 0.010805264115333557, - 0.011088949628174305, - 0.018546724691987038, - -0.0066067189909517765, - 0.004447557497769594, - 0.011795010417699814, - 0.017096776515245438, - 0.0071488735266029835, - -0.0070038787089288235, - -0.01936626061797142, - 0.004992864094674587, - -0.026300793513655663, - -0.003473570803180337, - -0.046373117715120316, - 0.010471145622432232, - 0.004006268922239542, - 0.020248837769031525, - 0.014865118078887463, - -0.03835427388548851, - -0.021295322105288506, - 0.030738895758986473, - -0.013856458477675915, - -0.027183370664715767, - 0.019088879227638245, - -0.02108098194003105, - 0.022278765216469765, - 0.003369552781805396, - -0.022039208561182022, - -0.0012899808352813125, - 0.0273346696048975, - 0.01118981558829546, - -0.010244197212159634, - -0.023552196100354195, - 0.02550647407770157, - -0.001754121738485992, - 0.008983372710645199, - -0.012444335035979748, - -0.04276715964078903, - -0.018634982407093048, - -0.01175718568265438, - 0.02287135273218155, - 0.009084238670766354, - -0.00788645539432764, - -0.019328435882925987, - 0.024510422721505165, - -0.02670425735414028, - -0.0018565637292340398, - -0.011126774363219738, - -0.02713293768465519, - -0.009008589200675488, - 0.002323068678379059, - -0.039615098387002945, - -0.02113141492009163, - 0.004973951727151871, - 0.03232753276824951, - 0.02023622952401638, - 0.02695642225444317, - 0.009714650921523571, - -0.029402421787381172, - -0.015079458244144917, - -0.018055003136396408, - 0.0016674400540068746, - -0.02525430917739868, - 0.019996672868728638, - -0.0011709905229508877, - -0.013188221491873264, - -0.005941634066402912, - -0.018975405022501945, - 0.0030133698601275682, - 0.05214769020676613, - -0.007010182831436396, - 0.008567300625145435, - -0.005314374342560768, - 0.007501904387027025, - 0.00593532994389534, - -0.006319881416857243, - 0.00020921802206430584, - 0.006364010274410248, - -4.80442977277562e-05, - 0.010824176482856274, - 0.03802645951509476, - -0.043700169771909714, - 0.03411790356040001, - -0.0025232245679944754, - 0.014083406887948513, - -0.005238724872469902, - 0.030083267018198967, - -0.007760373409837484, - -0.035378728061914444, - -0.02907460741698742, - -0.0016958086052909493, - 0.01355386059731245, - 0.01814326085150242, - -0.028746793046593666, - 0.0011150414356961846, - 0.015760302543640137, - 0.014032973907887936, - -0.004803740419447422, - -0.012091304175555706, - -0.0014231554232537746, - 0.014436437748372555, - 0.009021197445690632, - -0.02099272422492504, - -0.6427177786827087, - 0.012349773198366165, - 0.0012655523605644703, - -0.010546795092523098, - 0.006338793784379959, - 0.012066087685525417, - 0.04006899520754814, - 0.011265465058386326, - -0.0028951677959412336, - 0.032655347138643265, - 0.02157270349562168, - 0.005273397546261549, - 6.16621837252751e-05, - 0.014259922318160534, - -0.0008092915522865951, - -0.018256735056638718, - -0.008409697562456131, - 0.013427778147161007, - 0.03154582157731056, - 0.0016043988289311528, - -0.008258398622274399, - 0.024447381496429443, - 0.0004393184499349445, - -0.003549220273271203, - 0.018622374162077904, - 0.03237796574831009, - -0.008775336667895317, - -0.03540394455194473, - -0.0014720122562721372, - 0.015155107714235783, - -0.006219015456736088, - 0.02385479398071766, - -0.00921662524342537, - 0.02012275531888008, - 0.0531059168279171, - 0.01992102339863777, - 0.0026051781605929136, - 0.003360096598044038, - -0.00805666670203209, - -0.003725735703483224, - -0.011473501101136208, - -0.023199167102575302, - 0.0054751294665038586, - -0.008655558340251446, - -0.004630377050489187, - -0.0024822477716952562, - 0.0444062314927578, - -0.029931968078017235, - -0.012860407121479511, - -0.014070798642933369, - 0.03199971839785576, - -0.002040959196165204, - 0.023640453815460205, - 0.0029786971863359213, - 0.015848560258746147, - 0.012009350582957268, - 0.02371610328555107, - -0.02104315720498562, - -0.01520554069429636, - 0.0021938341669738293, - 0.001056728302501142, - 0.008390785194933414, - -0.007445167284458876, - -0.014688602648675442, - -0.02429608255624771, - 0.049096494913101196, - -0.030562380328774452, - -0.007615378592163324, - 0.008403393439948559, - -0.024182608351111412, - -0.009399444796144962, - 0.013705159537494183, - 0.007123657036572695, - -0.014902942813932896, - 0.008699687197804451, - -0.001457040081731975, - 0.039236851036548615, - -0.012910840101540089, - -0.017058951780200005, - 0.03308402746915817, - -0.0066067189909517765, - -0.024623896926641464, - -0.01956799253821373, - -0.00673280144110322, - 0.011145686730742455, - -0.028418978676199913, - -0.014928159303963184, - -0.007344301324337721, - -0.013314303942024708, - -0.007848630659282207, - 0.012816278263926506, - 0.04049767553806305, - -0.025531690567731857, - -0.03648825362324715, - -0.023703495040535927, - 0.04980255663394928, - -0.018042394891381264, - 0.010023552924394608, - 0.0019810700323432684, - -0.040195077657699585, - 0.0010906129609793425, - 0.0240943506360054, - 0.004245825577527285, - 0.008497955277562141, - 0.013163005001842976, - 0.005995219107717276, - -0.006947141606360674, - -0.007880151271820068, - 0.04044724255800247, - -0.026048628613352776, - 0.000788015138823539, - -0.008649254217743874, - -0.003360096598044038, - -0.0001090415971702896, - 0.0006997574819251895, - -0.013276479206979275, - 0.038455139845609665, - -0.005153619218617678, - 0.010099202394485474, - -0.0051126424223184586, - 0.015356839634478092, - -0.01207239180803299, - 0.010300934314727783, - -0.04054810851812363, - 0.0014696482103317976, - 0.009872253984212875, - -0.0010724886087700725, - 0.005128402728587389, - -0.023211775347590446, - -0.010471145622432232, - 0.007508208509534597, - 0.04473404586315155, - 0.03268056362867355, - -0.0038833387661725283, - 0.026048628613352776, - -0.006074020639061928, - 0.016794178634881973, - 0.0024523031897842884, - 0.008548388257622719, - -0.027813782915472984, - -0.023816969245672226, - 0.004255281761288643, - 0.007810806389898062, - -0.020450569689273834, - -0.006083476822823286, - -0.024649113416671753, - -0.009330099448561668, - 0.002329372800886631, - -0.027082504704594612, - 0.01175718568265438, - -0.028570277616381645, - -0.010975475423038006, - -0.01471381913870573, - 0.007558641489595175, - 0.011070037260651588, - 0.00552241038531065, - 0.004327779170125723, - -0.010508970357477665, - -0.011883268132805824, - -0.020084930583834648, - 0.01698330231010914, - 0.010969171300530434, - -0.03328575938940048, - -0.005566539242863655, - -0.03162147104740143, - -0.018193693831562996, - 0.01809282787144184, - 0.010969171300530434, - -0.022127466276288033, - -0.037875160574913025, - 0.016340281814336777, - -0.02983110211789608, - 0.01715981774032116, - 0.0026729474775493145, - -0.012614546343684196, - -0.012646066956222057, - -0.027006855234503746, - -0.00602358765900135, - -0.004702874459326267, - -0.0033033594954758883, - 0.027259020134806633, - -0.008586212992668152, - -0.005273397546261549, - -0.031091926619410515, - 0.018269343301653862, - 0.017954137176275253, - 0.02179965190589428, - 0.015810735523700714, - -0.01230564434081316, - 0.008914027363061905, - 0.01976972445845604, - 0.03956466540694237, - -0.005938482005149126, - 0.005490889772772789, - -0.009059022180736065, - -0.023098301142454147, - 0.0103198466822505, - 0.01731111668050289, - -0.012135433033108711, - 0.0075838579796254635, - 0.021585311740636826, - 0.013074747286736965, - 0.032428398728370667, - -0.015697261318564415, - 0.0160629004240036, - -0.023186558857560158, - 0.006332489661872387, - -0.00032781431218609214, - 0.008819465525448322, - 0.009664217941462994, - 0.03386573866009712, - 0.0008376601035706699, - -0.031873635947704315, - -0.017235467210412025, - -0.010111810639500618, - 0.053206782788038254, - -0.009349011816084385, - -0.012021958827972412, - -0.0014113351935520768, - -0.026679040864109993, - 0.0033884651493281126, - -0.010830480605363846, - 0.012154345400631428, - -0.01939147710800171, - -0.009065326303243637, - 0.02380436100065708, - -0.008100795559585094, - 0.004466469865292311, - 0.004403428640216589, - -0.014814685098826885, - -0.011341114528477192, - -0.011952613480389118, - -0.018924972042441368, - 0.016390714794397354, - 0.0010449080727994442, - 0.018067611381411552, - 0.01453730370849371, - -0.034975264221429825, - 0.047381773591041565, - 0.012809974141418934, - 0.012021958827972412, - 0.03588305786252022, - -0.002248995238915086, - -0.024623896926641464, - 0.04496099427342415, - 0.018622374162077904, - 0.024838237091898918, - 0.01626463234424591, - -0.0029503286350518465, - 0.0021623135544359684, - -0.006360858213156462, - 0.0003737161750905216, - 0.01011811476200819, - -0.016252024099230766, - 0.015508138574659824, - -0.017903704196214676, - 0.03487439826130867, - -0.008012537844479084, - 0.023148734122514725, - 0.015180324204266071, - 0.01317561324685812, - -0.01355386059731245, - 0.015394664369523525, - -0.020450569689273834, - 0.0011812347220256925, - 0.002726532518863678, - 0.002874679397791624, - -0.014701210893690586, - -0.02215268276631832, - -0.01207239180803299, - 0.0178532712161541, - -0.002613058313727379, - -0.01355386059731245, - 0.0036374779883772135, - 0.01684461161494255, - 0.009954207576811314, - -0.0027013160288333893, - 0.025872113183140755, - 0.009664217941462994, - 0.021749218925833702, - 0.001643799594603479, - -0.009229233488440514, - -0.026628607884049416, - 0.0470791757106781, - -0.011328506283462048, - -0.014701210893690586, - -0.009733563289046288, - -0.00011170114885317162, - -0.012999097816646099, - -0.011776098050177097, - -0.01482729334384203, - -0.010798959992825985, - -0.03240318223834038, - -0.008895114995539188, - -0.0029566327575594187, - -0.01702112704515457, - 0.017374157905578613, - -0.013440386392176151, - 0.02507779374718666, - 0.0019905262161046267, - -0.0055098021402955055, - 0.005840768106281757, - -0.02771291695535183, - -0.007123657036572695, - 0.02092968299984932, - 0.012141737155616283, - -0.0032497744541615248, - 0.006395530886948109, - 0.0021370970644056797, - -0.010433320887386799, - -0.019933631643652916, - -0.013591685332357883, - -0.011933701112866402, - 0.004721786826848984, - -0.007981017231941223, - 0.011561758816242218, - 0.019492343068122864, - -0.010653965175151825, - 0.047558289021253586, - 0.0035618285182863474, - -0.01549553032964468, - -0.010433320887386799, - -0.007060615811496973, - 0.011561758816242218, - 0.04259064421057701, - -0.000949558278080076, - -0.0072938683442771435, - 0.012173257768154144, - 0.002438118914142251, - -0.015066849999129772, - 9.48080705711618e-05, - -0.0350256972014904, - 0.0018849322805181146, - -0.004075614269822836, - -0.010761135257780552, - -0.01404558215290308, - 0.008510563522577286, - -0.019605817273259163, - 0.00901489332318306, - 0.00016430116374976933, - 0.00016656670777592808, - -0.036110006272792816, - -0.0012277276255190372, - 0.003265534760430455, - -0.006865188013762236, - -0.0017052647890523076, - 0.0026430028956383467, - 0.05305548384785652, - 0.021850084885954857, - 0.027586834505200386, - 0.02385479398071766, - 0.013692551292479038, - 0.013415169902145863, - -0.014373396523296833, - -0.0042048487812280655, - 0.009992032311856747, - 0.0051126424223184586, - 0.022303981706500053, - -0.022127466276288033, - 1.9183244148734957e-05, - 0.011126774363219738, - -0.02434651553630829, - 0.020601868629455566, - 0.002835278632119298, - 0.033033594489097595, - 0.027838999405503273, - -0.003410529578104615, - -0.019025838002562523, - 0.014776860363781452, - -0.017765013501048088, - 0.01620159111917019, - 0.017777621746063232, - -0.01060983631759882, - -0.008384481072425842, - 0.0064617241732776165, - -0.017374157905578613, - -0.011839139275252819, - 0.0011828107526525855, - 0.0038833387661725283, - -0.020576652139425278, - 0.012078695930540562, - 0.0031961894128471613, - 0.0067895385436713696, - -0.014587736688554287, - -0.038253407925367355, - -0.02371610328555107, - 0.007451471406966448, - -0.00892663560807705, - -0.0030244020745158195, - -0.010212676599621773, - 0.01393210794776678, - 0.013099963776767254, - 0.003290751250460744, - -0.001752545707859099, - 0.03908555209636688, - -0.00421745702624321, - -0.021648352965712547, - -0.009412053041160107, - 0.02612427808344364, - 0.01250737626105547, - 0.016718529164791107, - -0.007085832301527262, - 0.0011347418185323477, - -0.011858051642775536, - -0.022114858031272888, - -0.02753640152513981, - -0.001221423503011465, - -0.029679803177714348, - -0.004192240536212921, - -0.004970799665898085, - -0.004318322986364365, - -0.013528644107282162, - -0.015672044828534126, - 0.019151920452713966, - -0.01570986956357956, - 0.0030307061970233917, - 0.018055003136396408, - -0.0022048663813620806, - -0.01814326085150242, - 0.013969932682812214, - 0.024081742390990257, - 0.004762763623148203, - 0.02191312611103058, - -0.041279386729002, - 0.022694837301969528, - 0.019908415153622627, - 0.012469551526010036, - 0.010363975539803505, - 0.00852317176759243, - 0.004393972456455231, - -0.010824176482856274, - 0.004520054906606674, - -0.005686317570507526, - 0.0050748176872730255, - 0.027385102584958076, - -0.01395732443779707, - 0.026275577023625374, - -0.011940005235373974, - -0.006688672583550215, - 0.005525562446564436, - 0.004772219806909561, - 0.008214269764721394, - 0.024220433086156845, - -0.01066657342016697, - -0.013528644107282162, - -0.035756975412368774, - 0.03986726328730583, - -0.003328575985506177, - 0.00962639320641756, - -0.007419950794428587, - -0.013389953412115574, - 0.007899063639342785, - -0.024913886561989784, - 0.003259230637922883, - -0.0033411842305213213, - 0.004646137356758118, - 0.025178659707307816, - -0.00445070955902338, - -0.025178659707307816, - -0.01649158075451851, - 0.012961273081600666, - 0.018458466976881027, - -0.053963277488946915, - 0.008214269764721394, - -0.04014464467763901, - 0.022077033296227455, - -0.002575233578681946, - 0.020690126344561577, - 0.01308735553175211, - -0.023930443450808525, - -0.0061717345379292965, - 0.012923448346555233, - 0.02672947384417057, - 0.018950188532471657, - -0.03255448117852211, - -0.03270578011870384, - -0.012412814423441887, - 0.004687114153057337, - -0.030864978209137917, - -0.044809695333242416, - 0.027738133445382118, - -0.02670425735414028, - 0.012400206178426743, - -0.006776930298656225, - 0.013717767782509327, - -0.00745777552947402, - 0.022720053791999817, - -0.001826619147323072, - -0.017437199130654335, - -0.007054311688989401, - -0.004173328168690205, - 0.003836057847365737, - -0.02597297914326191, - 0.027410319074988365, - 0.0034987872932106256, - 0.007092136424034834, - 0.01591160148382187, - 0.002583113731816411, - 0.01335212867707014, - 0.04198544844985008, - -0.00820166151970625, - -0.02284613624215126, - -0.017386766150593758, - -0.0018171629635617137, - -0.0022316589020192623, - 0.02652774192392826, - -0.011328506283462048, - 0.009607480838894844, - -0.002360893413424492, - -0.007193002384155989, - 0.03174755349755287, - -0.0036059573758393526, - -0.00653106952086091, - -0.012141737155616283, - -0.003618565620854497, - -0.03676563501358032, - 0.017777621746063232, - 0.00015809554315637797, - -0.015659436583518982, - -0.003483026986941695, - -4.6123510401230305e-05, - -0.008516867645084858, - -0.03817775845527649, - 0.018735848367214203, - -0.006808450911194086, - -0.002761205192655325, - -0.013591685332357883, - -0.01811804436147213, - -0.0164033230394125, - 0.0028841355815529823, - 0.02693120576441288, - -0.018370209261775017, - 0.0020929682068526745, - 0.002288396004587412, - -0.0321258008480072, - -0.0055098021402955055, - -0.017197642475366592, - -0.033815305680036545, - 0.013163005001842976, - -0.004286802373826504, - -0.0013774505350738764, - 0.03928728401660919, - 2.1701198420487344e-06, - 0.024913886561989784, - 0.009040109813213348, - 0.007791894022375345, - 0.02525430917739868, - -0.0009093694970943034, - 0.035756975412368774, - 0.011549150571227074, - -0.009790300391614437, - -0.011549150571227074, - -0.04130460321903229, - -0.008605125360190868, - -0.01867280714213848, - 0.004400276578962803, - -0.005169379524886608, - -0.009166192263364792, - -0.014575128443539143, - 0.01502902526408434, - 0.010540490970015526, - 0.01162480004131794, - 0.009613784961402416, - 0.039236851036548615, - 0.030158916488289833, - 0.0053994799964129925, - -0.017147209495306015, - -0.012141737155616283, - -0.010168547742068768, - -0.00965160969644785, - -0.009128367528319359, - -0.016920261085033417, - 0.00031954015139490366, - -0.00765950744971633, - 0.004737547133117914, - 0.046398334205150604, - 0.006915620993822813, - 0.015041633509099483, - -0.004986559972167015, - -0.00030850793700665236, - -0.0022742117289453745, - -0.015344231389462948, - 0.003971596248447895, - 0.01901322975754738, - -0.001035451889038086, - 0.028772009536623955, - -0.011259160935878754, - -0.012412814423441887, - 0.009292274713516235, - -0.01765153929591179, - 0.009204016998410225, - 0.011013300158083439, - -0.00481319660320878, - 0.015419880859553814, - -0.010256805457174778, - 0.009910078719258308, - -0.017638931050896645, - 0.015255973674356937, - 0.02525430917739868, - 0.003804537234827876, - -0.003990508615970612, - -0.005106338299810886, - 0.018168477341532707, - -0.007098440546542406, - 0.0053269825875759125, - 0.006909316871315241, - -0.0029471765737980604, - -0.007060615811496973, - -0.019240178167819977, - -0.00837817694991827, - -0.004548423457890749, - -0.018357601016759872, - 0.0018691719742491841, - -0.021673569455742836, - -0.0033506404142826796, - 0.009765083901584148, - -0.010761135257780552, - 0.020891858264803886, - -0.005995219107717276, - -0.01889975555241108, - -0.018534116446971893, - 0.026603391394019127, - -0.03310924395918846, - 0.025052577257156372, - 0.036311738193035126, - 0.008113403804600239, - 0.0051473150961101055, - 0.0018155869329348207, - -0.00979660451412201, - -0.011303289793431759, - 0.024649113416671753, - -0.006814755033701658, - -0.02226615697145462, - 0.004535815212875605, - -0.002934568328782916, - 0.026653824374079704, - -0.012097608298063278, - -0.009002285078167915, - 0.020917074754834175, - -0.0015523898182436824, - -0.0011575942626222968, - -0.011700448580086231, - -0.01529379840940237, - 0.01954277604818344, - -0.00048541734577156603, - -0.016630271449685097, - 0.045238375663757324, - -0.01889975555241108, - 0.00846643466502428, - 0.005308070220053196, - 0.02983110211789608, - -0.02119445614516735, - -0.015659436583518982, - -0.021560095250606537, - -0.02728423662483692, - 0.01095656305551529, - -0.004428645130246878, - -0.00436245184391737, - 0.011353722773492336, - -0.016882436349987984, - -0.017147209495306015, - 0.021270105615258217, - 0.0025736575480550528, - 0.01789109595119953, - 0.0161763746291399, - 0.01829455979168415, - -0.025430824607610703, - 0.025821680203080177, - 0.004882541950792074, - -0.009575960226356983, - 0.010471145622432232, - -0.006259992253035307, - -0.0484156496822834, - -0.0008731207926757634, - 0.0038518181536346674, - 0.02304786816239357, - 0.030688462778925896, - -0.022619187831878662, - 0.004945583175867796, - 0.0058281603269279, - -0.04922257736325264, - -0.017185034230351448, - 0.015659436583518982, - 0.004479078110307455, - -0.0008376601035706699, - 0.009475094266235828, - -0.012709108181297779, - 0.01520554069429636, - 0.006105541251599789, - 0.032050151377916336, - -0.015306406654417515, - -0.016655487939715385, - -0.011114166118204594, - 0.0034546584356576204, - 0.02748596854507923, - 0.0005271821282804012, - -0.01511728297919035, - -0.01847107522189617, - 0.005966850556433201, - -0.02481302060186863, - 0.003470418741926551, - 0.011776098050177097, - -0.0072560436092317104, - -0.0006674488540738821, - -0.0081449244171381, - 0.012620850466191769, - 0.008907723240554333, - 0.018748456612229347, - -0.0020567195024341345, - -0.0457427054643631, - -0.0008297799504362047, - 0.028242463245987892, - 0.008844682015478611, - -0.04995385557413101, - 0.0014042430557310581, - 0.004321475047618151, - -0.01089982595294714, - 0.001650103717111051, - 0.014159056358039379, - -0.033613573759794235, - -0.001271068467758596, - -0.022215723991394043, - 0.019782332703471184, - 0.015104674734175205, - -0.005541322752833366, - 0.00820166151970625, - 0.00019769329810515046, - -0.0284441951662302, - -0.014398613013327122, - 0.0008258398738689721, - -0.024333907291293144, - 0.018660198897123337, - 0.012148041278123856, - 0.010225284844636917, - 0.020072322338819504, - -0.020488394424319267, - 0.010584619827568531, - -0.016857219859957695, - 0.015747694298624992, - -0.01916452869772911, - -0.01124655269086361, - -0.008151228539645672, - 0.027208587154746056, - 0.01916452869772911, - -0.0019542775116860867, - 0.02186269313097, - 0.0013924228260293603, - -0.006972358096390963, - -0.011858051642775536, - -0.00034790870267897844, - -0.0016406475333496928, - -0.011731969192624092, - 0.009494006633758545, - 0.01122133620083332, - -0.013616901822388172, - -0.002332524862140417, - -0.007060615811496973, - 0.007243435364216566, - -0.030284998938441277, - 0.013364736922085285, - 0.17641453444957733, - -0.015369447879493237, - -0.013339520432054996, - 0.009323795326054096, - -0.01925278641283512, - -0.012009350582957268, - 0.005821856204420328, - 0.007905367761850357, - -0.019202353432774544, - 0.016226807609200478, - -0.012671283446252346, - -0.000393219554098323, - -0.004983407910913229, - 0.007520816754549742, - 0.015659436583518982, - -0.010036161169409752, - -0.005645340774208307, - 0.0027501729782670736, - -0.0001305150071857497, - 0.029528504237532616, - 0.02927633933722973, - -0.02449781447649002, - 0.00244284700602293, - -0.0009582264465279877, - 0.047583505511283875, - 0.01060983631759882, - 0.007262347731739283, - -0.0020472633186727762, - 0.02496431954205036, - 0.01002985704690218, - 0.0034294419456273317, - 0.0036816068459302187, - -0.002512192353606224, - -0.026679040864109993, - -0.0032009175047278404, - -0.0020630236249417067, - 0.01221738662570715, - -0.011454588733613491, - 0.03182320296764374, - 0.02385479398071766, - 0.003807689296081662, - -0.02099272422492504, - -0.013251262716948986, - -0.011876964010298252, - -0.021320538595318794, - 0.029982401058077812, - -0.011341114528477192, - -0.003144180402159691, - -0.020450569689273834, - 0.00019168468134012073, - -0.0257712472230196, - -0.012835190631449223, - 0.013742984272539616, - 0.02907460741698742, - -0.010540490970015526, - 0.004296258557587862, - 0.020387528464198112, - -0.003077987115830183, - 0.010149635374546051, - -0.0017399374628439546, - -0.024485206231474876, - 0.036513470113277435, - -0.025821680203080177, - 0.010218980722129345, - -0.014297747053205967, - -0.00423321733251214, - -0.033840522170066833, - 0.021030548959970474, - -0.0019527015974745154, - 0.0007454623118974268, - -0.016630271449685097, - -0.008895114995539188, - -0.022316589951515198, - 0.020425353199243546, - -0.0074010384269058704, - -0.02168617770075798, - 0.004551575519144535, - 0.0021733457688242197, - 0.01540727261453867, - 0.010187460109591484, - -0.016050292178988457, - 0.012406510300934315, - -0.002728108549490571, - -0.023791752755641937, - 0.014398613013327122, - -0.04773480445146561, - 0.024510422721505165, - 0.009323795326054096, - 0.011788706295192242, - -0.01744980737566948, - -0.008069274947047234, - 0.006556286010891199, - 0.006776930298656225, - -0.017954137176275253, - 0.03489961475133896, - -0.008352960459887981, - 0.016277240589261055, - 0.011435676366090775, - -0.014373396523296833, - 0.015356839634478092, - -0.005941634066402912, - 0.015949426218867302, - 0.04090113937854767, - -0.022984826937317848, - 0.00687779625877738, - 0.006512157153338194, - 0.0019747659098356962, - 0.004847869277000427, - 0.000804563460405916, - 0.003662694478407502, - 0.004283650312572718, - -0.02884765900671482, - 0.012179561890661716, - -0.0013049531262367964, - 0.008743816055357456, - 0.017903704196214676, - 0.005903809331357479, - -0.019504951313138008, - 0.002575233578681946, - -0.020891858264803886, - -0.009002285078167915, - 0.011864355765283108, - 0.012948664836585522, - 0.005415240302681923, - 0.02282091975212097, - -0.015155107714235783, - -0.060166534036397934, - 0.01760110631585121, - -0.004573639947921038, - -0.002182801952585578, - 0.03800124302506447, - -0.02690598927438259, - -0.011561758816242218, - 0.017613714560866356, - 0.0038486660923808813, - 0.019353652372956276, - -0.001053576241247356, - -0.03250404819846153, - 0.012532592751085758, - -0.00204411125741899, - 0.010660269297659397, - -0.03376487269997597, - 0.002546865027397871, - -0.010010944679379463, - 0.007533424999564886, - 0.001500380807556212, - -0.0015823344001546502, - -0.01568465307354927, - -0.01579812727868557, - -0.000999203184619546, - -0.004715482704341412, - -0.00544991297647357, - -0.005768271163105965, - -0.025720814242959023, - 0.011202423833310604, - 0.0038108413573354483, - -0.020450569689273834, - -0.028166813775897026, - 0.0010937650222331285, - 0.02150966227054596, - -0.0014901366084814072, - 0.015672044828534126, - -0.013452994637191296, - -0.027259020134806633, - 0.002584689762443304, - -0.0064617241732776165, - -0.15603961050510406, - 0.011177207343280315, - 0.012709108181297779, - -0.03255448117852211, - 0.01934104412794113, - 0.002758053131401539, - -0.004627224989235401, - -0.004148111678659916, - -0.015596396289765835, - 0.006196951027959585, - 0.0271077211946249, - 0.011612191796302795, - -0.01731111668050289, - -0.017954137176275253, - -0.005421544425189495, - -0.009033805690705776, - -0.005024384707212448, - 0.023060476407408714, - 0.023728711530566216, - 0.01988319866359234, - 0.01802978664636612, - -0.027990298345685005, - 0.012122824788093567, - -0.017172425985336304, - 0.016516797244548798, - -0.0005453064804896712, - -0.014852509833872318, - -0.00026497009093873203, - 0.005055905319750309, - -0.02490127831697464, - -0.0034861790481954813, - 0.013137788511812687, - 0.008094491437077522, - -0.01500380877405405, - 0.013591685332357883, - -0.010282021947205067, - 0.010855697095394135, - -0.010994387790560722, - -0.005771423224359751, - 0.036110006272792816, - 0.032478831708431244, - 0.0035366120282560587, - -0.026275577023625374, - 0.019214961677789688, - -0.022568754851818085, - 0.007873847149312496, - 0.010691789910197258, - 0.011126774363219738, - -0.003653238294646144, - -0.007627986837178469, - 0.017285900190472603, - -0.012122824788093567, - -0.0015555418794974685, - 0.01413383986800909, - -0.0005287581589072943, - 0.018798889592289925, - 0.013125180266797543, - 0.02012275531888008, - -0.007949496619403362, - -0.007142569404095411, - 0.008296223357319832, - -0.01615115813910961, - -0.014839901588857174, - 0.021118806675076485, - 0.005226116627454758, - -0.022026600316166878, - -0.0003276173083577305, - 0.00293141626752913, - -0.009147279895842075, - 0.0004074038297403604, - -0.0021355210337787867, - 0.0026004500687122345, - 0.03835427388548851, - -0.0065688942559063435, - -0.016882436349987984, - 0.013099963776767254, - -0.0023467091377824545, - 0.002906200010329485, - -0.00736951781436801, - -0.0040220292285084724, - -0.02947807125747204, - 0.06556285917758942, - -0.02253093011677265, - -0.010918738320469856, - -0.03394138813018799, - 0.007760373409837484, - 1.539092045277357e-05, - -0.011397851631045341, - 0.0034136816393584013, - 0.009349011816084385, - -0.003766712499782443, - -0.032655347138643265, - -0.03310924395918846, - -0.009607480838894844, - 0.010137027129530907, - -0.007464079651981592, - 0.028923308476805687, - -0.014209489338099957, - -0.005484585650265217, - -0.026502525433897972, - 0.015356839634478092, - -0.019794940948486328, - -0.02463650517165661, - -0.00696605397388339, - -0.0013372617540881038, - 0.018370209261775017, - -0.0058470722287893295, - 0.01733633317053318, - 0.04881911352276802, - -0.005790335591882467, - -0.007527120877057314, - -0.010282021947205067, - 0.02490127831697464, - -0.014159056358039379, - -0.012129128910601139, - 0.007445167284458876, - 0.018597157672047615, - -0.022619187831878662, - -0.0007013335125520825, - -0.018824106082320213, - 0.027561618015170097, - -0.0011465620482340455, - -0.031470172107219696, - 0.011259160935878754, - 0.00637031439691782, - -0.014373396523296833, - -0.08155011385679245, - -0.011353722773492336, - 0.017121993005275726, - 0.01669331267476082, - 0.020778384059667587, - 0.006549981888383627, - -0.007407342549413443, - 0.009689434431493282, - 0.005200900137424469, - 0.01666809618473053, - -0.038076892495155334, - -0.019794940948486328, - 0.0028872876428067684, - -0.00968313030898571, - -0.005090577993541956, - 5.619533112621866e-05, - -0.009052718058228493, - -0.014032973907887936, - -0.020084930583834648, - 0.022984826937317848, - 0.010200068354606628, - -0.006726497318595648, - -0.013200829736888409, - -0.0062095592729747295, - -0.005194596014916897, - 0.0013892707647755742, - -0.030890194699168205, - 0.00994159933179617, - 0.026653824374079704, - -0.0023372529540210962, - 0.00805666670203209, - -0.003156788647174835, - 0.015142499469220638, - -0.023375680670142174, - -0.004286802373826504, - -0.003965292125940323, - -0.0013640542747452855, - -0.02391783520579338, - 0.007300172466784716, - -0.036135222762823105, - -0.011719360947608948, - -0.006795842666178942, - 0.061326492577791214, - -0.04281759262084961, - 0.006083476822823286, - -0.020097538828849792, - -0.019895806908607483, - -0.006865188013762236, - 0.004627224989235401, - -0.005166227463632822, - -0.034420501440763474, - -0.028772009536623955, - -0.0006390803027898073, - 0.017172425985336304, - 0.012034567072987556, - 0.014776860363781452, - -0.007905367761850357, - -0.019492343068122864, - -0.021446621045470238, - -0.0088698985055089, - -0.011637408286333084, - 0.028015514835715294, - -0.019492343068122864, - 0.03268056362867355, - 0.004551575519144535, - -0.02353958785533905, - -0.021585311740636826, - -0.013679943047463894, - -0.002759629162028432, - -0.018748456612229347, - -0.014096015132963657, - 0.0017478176159784198, - 0.00808818731456995, - -0.001721025095321238, - -0.020564043894410133, - 0.0010953410528600216, - -0.04296889156103134, - -0.016542013734579086, - -0.0022395390551537275, - -0.03295794501900673, - -0.02017318829894066, - -0.031293656677007675, - 0.0370430164039135, - -0.012122824788093567, - 0.024018701165914536, - 0.004100830759853125, - -0.003046466503292322, - -0.0286711435765028, - 0.01250737626105547, - -0.030940627679228783, - -0.009204016998410225, - -0.001613855012692511, - 0.012267819605767727, - -0.010218980722129345, - -0.01582334376871586, - 0.009374228306114674, - 0.0017793382285162807, - -0.002405022270977497, - 0.018622374162077904, - 0.005585451610386372, - -0.02104315720498562, - -0.01771458052098751, - -0.028418978676199913, - 0.017147209495306015, - 5.58013234694954e-05, - 0.0014940766850486398, - -0.0008912451448850334, - 0.007375821936875582, - 0.03096584416925907, - 0.007615378592163324, - 0.01579812727868557, - -0.012349773198366165, - -0.006203255150467157, - 0.018055003136396408, - -0.001862867851741612, - -0.011618495918810368, - -0.003687910968437791, - -0.0035712847020477057, - -0.011637408286333084, - 0.014600344933569431, - 0.012400206178426743, - 0.006004675291478634, - -0.016327673569321632, - 0.013717767782509327, - -0.01599985919892788, - 0.006984966341406107, - -0.02632601000368595, - 0.008712295442819595, - -0.010168547742068768, - -0.010212676599621773, - -0.0067895385436713696, - 0.005424696486443281, - -0.0023010042496025562, - -0.0010417560115456581, - -0.011145686730742455, - 0.0004144959675613791, - 0.0009661065996624529, - -0.0038202975410968065, - 0.008510563522577286, - 0.0368160679936409, - 0.00307641108520329, - 0.047760020941495895, - -0.043271489441394806, - -0.03754734620451927, - 0.012255211360752583, - -0.04024551063776016, - -0.014789468608796597, - 0.003981052432209253, - 0.009475094266235828, - 0.013301695697009563, - 0.018218910321593285, - -0.028545061126351357, - 0.04221239686012268, - 0.02284613624215126, - 0.016340281814336777, - -0.011063733138144016, - 0.021030548959970474, - -0.029906751587986946, - 0.0020504153799265623, - 0.001089824945665896, - -0.0178532712161541, - -0.03623608872294426, - 0.021156631410121918, - 0.011309593915939331, - 0.014562520198523998, - -0.0025578972417861223, - 0.031697120517492294, - -0.02362784557044506, - -0.03996812924742699, - -0.00921662524342537, - 0.012236298993229866, - -0.017109384760260582, - -0.016214199364185333, - 0.0009621665230952203, - 0.019706683233380318, - 0.007508208509534597, - -0.006783234421163797, - 0.0004074038297403604, - 0.01760110631585121, - -0.0143355717882514, - 0.007230827119201422, - 0.02351437136530876, - 0.019025838002562523, - 0.011107861995697021, - -0.02021101303398609, - -0.01142306812107563, - 0.04400276765227318, - 0.0053994799964129925, - -0.03222666680812836, - -0.014083406887948513, - 0.0019211809849366546, - 0.00452320696786046, - 0.007230827119201422, - 0.002734412671998143, - 0.004765915684401989, - -0.0028825595509260893, - 0.03338662534952164, - 0.007949496619403362, - 0.003618565620854497, - -0.033613573759794235, - 0.010704398155212402, - 0.03351270779967308, - -0.0047848280519247055, - -0.005572843365371227, - -0.0012009351048618555, - -0.0033916172105818987, - -0.012551505118608475, - 0.0175128486007452, - -0.007356909569352865, - -0.04317062348127365, - -0.01395732443779707, - 0.018017178401350975, - -0.014121231622993946, - 0.015735086053609848, - -0.0005425484268926084, - -0.0008668166701681912, - -0.010338759049773216, - 0.03873252123594284, - -0.01649158075451851, - 0.002212746534496546, - -0.011687840335071087, - -0.010981779545545578, - 0.01491555105894804, - 0.017550673335790634, - 0.008598821237683296, - 0.012608242221176624, - -0.00032072217436507344, - 0.013566468842327595, - -0.0057997917756438255, - -0.014386004768311977, - 0.016025075688958168, - -0.004866781644523144, - 0.030461514368653297, - -0.003153636585921049, - -0.02947807125747204, - -0.003514547599479556, - -0.00524818105623126, - -0.007653203327208757, - 0.027259020134806633, - 0.021320538595318794, - 0.003877034643664956, - 0.08079361915588379, - 0.01529379840940237, - -0.004573639947921038, - -0.00284158275462687, - -0.011145686730742455, - 0.022140074521303177, - -0.0010819447925314307, - 0.01364211831241846, - 0.0014444318367168307, - -0.053559813648462296, - 0.009758779779076576, - -0.008806857280433178, - 0.0302345659583807, - -0.037698645144701004, - -0.025645164772868156, - 0.01963103376328945, - 0.0017147209728136659, - -0.008888810873031616, - 0.003445202251896262, - 0.01190218050032854, - 0.04455753043293953, - -0.00365639035589993, - 0.01939147710800171, - 0.02438434027135372, - -0.028141597285866737, - -0.02922590635716915, - 0.0038896428886801004, - -0.003188309259712696, - -0.011126774363219738, - 0.008384481072425842, - -0.011769793927669525, - 0.01838281750679016, - -0.06631935387849808, - -0.015180324204266071, - 0.030663246288895607, - -0.015356839634478092, - -0.016743745654821396, - -0.02150966227054596, - 0.009809212759137154, - 0.02313612587749958, - 0.009821821004152298, - 0.02811638079583645, - -0.026502525433897972, - -0.026275577023625374, - -0.00304016238078475, - -0.012910840101540089, - 0.008189053274691105, - -0.027990298345685005, - -0.040573325008153915 - ], - "sparse": "SparseEmbedding(values=array([0.87507769, 0.54615981, 0.87507769, 1.25211205, 1.59591952,\n 1.09486781, 0.54615981, 0.87507769, 1.88319215, 1.59591952,\n 2.06129221, 0.87507769, 0.54615981, 0.54615981, 2.05526512,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 1.09486781,\n 0.54615981, 0.87507769, 0.87507769, 1.68865435, 1.09486781,\n 1.78436342, 1.25211205, 1.25211205, 0.87507769, 0.87507769,\n 1.09486781, 1.09486781, 0.54615981, 1.09486781, 0.54615981,\n 0.54615981, 0.54615981, 0.87507769, 0.87507769, 1.5356809 ,\n 0.54615981, 0.54615981, 0.54615981, 1.75670618, 0.54615981,\n 1.09486781, 0.54615981, 0.54615981, 0.54615981, 1.88319215,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 1.75670618,\n 0.54615981, 0.54615981, 0.87507769, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.87507769, 1.37018295, 0.87507769,\n 0.87507769, 1.09486781, 0.87507769, 1.25211205, 1.5356809 ,\n 0.87507769, 0.54615981, 1.68865435, 0.54615981, 0.54615981,\n 0.87507769, 0.54615981, 0.54615981, 1.5356809 , 0.54615981,\n 0.54615981, 1.09486781, 1.46209761, 0.54615981, 0.54615981,\n 1.46209761, 1.5356809 , 1.46209761, 0.87507769, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.87507769, 0.54615981,\n 1.64614186, 0.54615981, 0.54615981, 0.54615981, 1.46209761,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.87507769, 0.54615981,\n 0.87507769, 0.54615981, 0.87507769, 1.37018295, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 1.09486781, 1.09486781,\n 0.87507769, 0.54615981, 0.87507769, 0.87507769, 0.54615981,\n 1.09486781, 0.87507769, 0.87507769, 0.54615981, 1.46209761,\n 1.09486781, 0.54615981, 0.87507769, 0.54615981, 0.87507769,\n 1.09486781, 0.54615981, 1.64614186, 0.54615981, 0.54615981,\n 1.09486781, 0.54615981, 0.87507769, 1.59591952, 0.54615981,\n 0.87507769, 0.54615981, 0.87507769, 0.87507769, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.87507769,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 1.25211205,\n 0.54615981, 1.09486781, 1.09486781, 0.87507769, 0.54615981,\n 1.09486781, 0.87507769, 0.54615981, 1.09486781, 0.54615981,\n 0.87507769, 0.54615981, 1.09486781, 0.54615981, 0.54615981,\n 1.37018295, 0.54615981, 0.87507769, 0.54615981, 0.54615981,\n 0.87507769, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.87507769, 0.54615981, 0.54615981, 0.54615981,\n 0.87507769, 0.54615981, 0.54615981, 0.54615981, 0.87507769,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.87507769, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.87507769,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 1.09486781,\n 0.54615981, 0.87507769, 0.54615981, 1.09486781, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.87507769, 0.54615981, 1.09486781, 0.54615981, 0.87507769,\n 0.54615981, 0.54615981, 0.54615981, 0.87507769, 0.87507769,\n 0.87507769, 1.37018295, 1.46209761, 0.54615981, 0.54615981,\n 1.09486781, 0.87507769, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.87507769, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.87507769, 0.54615981, 0.54615981, 0.87507769, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.87507769,\n 0.54615981, 0.54615981, 1.09486781, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.87507769, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 1.09486781,\n 0.54615981, 0.54615981, 0.54615981, 0.87507769, 1.09486781,\n 0.87507769, 0.54615981, 0.54615981, 0.87507769, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.87507769, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.87507769, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.87507769, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981, 0.54615981, 0.54615981, 0.54615981, 0.54615981,\n 0.54615981]), indices=array([ 19522071, 264741300, 1810453357, 1041901940, 1147900472,\n 1475906442, 1536259167, 1496316063, 164058840, 810405031,\n 1109731834, 759690987, 434469208, 528293002, 408270109,\n 974723201, 454272156, 210203600, 1338150097, 1256003941,\n 124844986, 311286247, 1635244824, 47951928, 1566907605,\n 1669595920, 720266233, 1087744415, 2042843651, 1083904726,\n 1407327463, 641040124, 124114158, 1079921207, 1229702344,\n 215897481, 109312274, 114406085, 176244452, 1505931685,\n 893265301, 523376427, 504370091, 1174634009, 1321410104,\n 1719281458, 1003782048, 2106105284, 2007086858, 1638510030,\n 14165162, 131900689, 76452304, 2083703521, 1047604504,\n 1081714609, 1583709511, 2078827051, 1548396408, 1315077933,\n 686262413, 1582585314, 1206728042, 2053391496, 559860000,\n 445517939, 46081745, 132109433, 338063690, 1793743868,\n 963966427, 1970084420, 433708589, 1456130299, 1114505193,\n 1416371393, 1300285714, 814294889, 915344176, 992943682,\n 991653233, 367467701, 147047731, 1065431762, 1064492184,\n 517681357, 843816345, 423733604, 987377478, 440587275,\n 1282568013, 198038777, 1755951682, 2103309648, 1413040712,\n 651773314, 1214749696, 1788212450, 1215856007, 255174557,\n 8547324, 190652800, 1187567306, 28663872, 1082106827,\n 1553747220, 1234080729, 1119737741, 14784032, 472672705,\n 230824411, 187892380, 1681926305, 1610176724, 1305345519,\n 2008590059, 1214902428, 125777136, 1392430834, 1413554298,\n 136317857, 1438111100, 833760702, 559010829, 559424619,\n 2143189012, 1487269413, 962171606, 2087088247, 560980618,\n 1294733183, 1332909437, 390138254, 107589052, 528760020,\n 1695191540, 1494967481, 1286817522, 1869089520, 1091620799,\n 948554980, 1605501433, 1293925626, 99212807, 1068017953,\n 163077544, 2023504444, 1897428457, 1305218356, 1594584595,\n 1587158528, 117455501, 227617134, 982773626, 2036720317,\n 901038411, 1597346809, 1985370606, 68045238, 538998454,\n 186844701, 993057431, 1442686863, 1286395229, 1356962648,\n 1231559838, 364305688, 378174453, 1381820790, 1803955614,\n 2128748954, 812080723, 1460364595, 2124172637, 344709332,\n 1707387297, 404895453, 290749275, 1131038754, 155461460,\n 285928340, 1455106135, 685049228, 56287744, 540303681,\n 565373295, 1946058775, 2031875777, 103616747, 516762017,\n 1781557223, 1207234426, 1769347644, 930886292, 912658635,\n 1929920260, 238531815, 973238977, 37224978, 1515684580,\n 182803437, 580417171, 238702246, 777066178, 2110310524,\n 566928813, 1731955195, 778346751, 2106376835, 1359345610,\n 762622902, 1909750515, 1783465698, 188536152, 1680012685,\n 890189858, 1466718932, 1674023358, 1626154326, 1568033553,\n 1299524237, 211125573, 288069631, 1952376732, 1238546663,\n 342329722, 273124838, 227303348, 1806368003, 267025598,\n 1742567733, 946289312, 76479261, 1479783367, 1392079869,\n 1034452378, 991278721, 100755915, 1584422431, 2079643764,\n 1378902744, 1556318716, 734816556, 2001185754, 307565950,\n 154621355, 1801545275, 804627318, 1401427477, 1017682383,\n 323161805, 57076603, 482204306, 1314093197, 1051391127,\n 327670196, 534551046, 516075899, 1567747819, 102022374,\n 492661292, 1394528966, 1890616262, 1991002768, 564716203,\n 1953704466, 1915491584, 1644457553, 1101974885, 935488190,\n 823316754, 1150408878, 93120874, 1525895951, 1935340272,\n 439103303, 541262143, 1092081572, 1089074069, 613148321,\n 2144264319, 752967582, 646164709, 318522538, 499733850,\n 386834064, 2114235686, 1828454708, 830792979, 482341621,\n 538769186, 1027746767, 1608071290, 2077811411, 516830072,\n 514488258, 700853502, 66322283, 967714644, 1830655178,\n 435791956, 1544860236, 960844477, 1389103878, 1123776021,\n 723717594, 911111262, 922977895, 1634326176, 2135250061,\n 220308237, 205205340, 1234674187, 1947841087, 2110341203,\n 1681852999, 586235759, 1006541757, 1121363733, 1872745375,\n 1194932299, 231980230, 1926460595, 1448738717, 617132444,\n 217252537, 1439547398, 1091812557, 1533700165, 840747077,\n 1333980576, 853216624, 1747167004, 476704413, 597643829,\n 1803932182, 234610810, 840124970, 42371798, 1165362987,\n 593807351, 842253245, 1249678180, 677865134, 2046946728,\n 410033496, 2016236896, 1033509889, 349441846, 372990882,\n 1035540178, 950126124, 1033482951, 1354425271, 306951347,\n 476156908, 2067298431, 1145275429, 154063765, 371255210,\n 1993154421, 151305406, 290796208, 169111933, 650015492,\n 2075059736]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 48, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 809 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000049.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000049.json deleted file mode 100644 index eb1d6553368d47c2ae9ce174c110e8f61dd6d810..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000049.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000049", - "content": "2.3.2 Mehrwert Stadtgr\u00fcn Bis zu welchem Grad die Elemente der gr\u00fcnen Infrastruktur \u00d6kosystemdienstleistungen gew\u00e4hrleisten, ist abh\u00e4ngig von der Qualit\u00e4t und Quantit\u00e4t des st\u00e4dtischen Gr\u00fcns. Die \u00d6kosystemdienstleistungen k\u00f6nnen nach den drei Dimensionen der Nachhaltigkeit in soziale, \u00f6konomische und \u00f6kologische \u00d6kosystemdienstleistung unterteilt werden (vgl. Feldmann et al. 2023, S. 13). 10 Theorieteil Die Bev\u00f6lkerung in St\u00e4dten leidet unter suboptimalen klimatischen Bedingungen, L\u00e4rm und verschmutzter Luft. Diese Lebensumst\u00e4nde k\u00f6nnen chronischen Stress als Folge haben, welcher durch eine Zunahme des Stadtgr\u00fcns verringert werden kann. Als soziale \u00d6kosystemdienstleistung f\u00f6rdert urbanes Gr\u00fcn die psychische und physische Gesundheit der Menschen, stellt einen emotionalen Ausgleich her und f\u00f6rdert die Kreativit\u00e4t (vgl. Feldmann et al. 2023, S. 13). Der \u00f6konomische Mehrwert von Stadtgr\u00fcn kann nach Kampusch an verschiedenen Faktoren gemessen werden. Gr\u00fcne St\u00e4dte steigern die Lebensqualit\u00e4t und die Wettbewerbsf\u00e4higkeit, was sich positiv auf Wohnstandorts- und Investitionsentscheidungen auswirkt. Dar\u00fcber hinaus f\u00fchrt eine geringe Hitzebelastung der Bev\u00f6lkerung zu einer Entlastung des Gesundheitssystems und einer h\u00f6heren Produktivit\u00e4t auch w\u00e4hrend Hitzeperioden. Dies hat aus volkswirtschaftlicher Sicht eine positive Wirkung (vgl. Kampusch 2018, S. 26). Durch den Verschattungseffekt der B\u00e4ume k\u00f6nnen insbesondere in den Sommermonaten Energiekosten zum K\u00fchlen der Geb\u00e4ude eingespart werden (vgl. Feldmann et al. 2023, S. 14). Auch in der \u00f6kologischen Dimension bietet Stadtgr\u00fcn zahlreiche Vorteile. Die urbane Vegetation tr\u00e4gt zu einer Regulation des Stadtklimas bei, indem sie eine k\u00fchlere Lufttemperatur durch Verschattung und Verdunstung schafft. Dies tr\u00e4gt nicht nur zu einem erh\u00f6hten thermischen Komfort der Bev\u00f6lkerung bei (soziale \u00d6kosystemdienstleistung), sondern senkt zudem den K\u00fchlbedarf der Geb\u00e4ude (\u00f6konomische \u00d6kosystemdienstleistung) (vgl. Feldmann et al. 2023, S. 14). Pflanzen steigern durch ihre Filterwirkung die Luftqualit\u00e4t. Sie nehmen Luftschadstoffe auf, wandeln CO2-Emissionen in Sauerstoff um und reduzieren die Ozonbildung (vgl. Kampusch 2018, S. 25). So konnte beispielswiese nachgewiesen werden, dass in Leipzig 11 t/ha und in Hamburg sogar 27,4 t/ha CO2-Emissionen durch st\u00e4dtisches Gr\u00fcn gebunden wurden (vgl. Feldmann et al. 2023, S. 27). Ein weiterer \u00f6kologischer Mehrwert st\u00e4dtischen Gr\u00fcns ist die D\u00e4mpfung des Schallpegels (vgl. Mehra 2021, S. 115). Die beiden letztgenannten Punkte wirken zudem direkt gesundheitsf\u00f6rdernd. St\u00e4dtisches Gr\u00fcn stellt Lebensraum f\u00fcr verschiedene Lebewesen dar und leistet somit einen wichtigen Beitrag zum Erhalt der Biodiversit\u00e4t sowie zum Arten- und Naturschutz (vgl. Bott et al. 2018, S. 83). Des Weiteren wirkt sich Stadtgr\u00fcn auf den Wasserhaushalt der Stadt aus. Gr\u00fcnfl\u00e4chen stellen eine unversiegelte Fl\u00e4che dar und haben somit die F\u00e4higkeit Regenwasser durch Versickerung aufzunehmen, dies f\u00fchrt zu einer Entlastung der Kanalisation, einer Reduktion des \u00dcberschwemmungsrisikos und einer erh\u00f6hten Grundwasseranreicherung. (vgl. Mehra 2021, S. 115; vgl. Kampusch 2018, S. 25)", - "embedding": { - "dense": [ - 0.036242298781871796, - 0.005365909077227116, - 0.01792905293405056, - -0.018761472776532173, - -0.01399746723473072, - 0.021463636308908463, - -0.030325710773468018, - -0.011448980309069157, - -0.004373407922685146, - -0.02825106307864189, - 2.182351818191819e-05, - 0.006870668847113848, - -0.011634673923254013, - 0.004610327538102865, - -0.008477880619466305, - -0.007222846616059542, - 0.04664114862680435, - 0.0029182734433561563, - 0.0030799550004303455, - 0.018159568309783936, - -0.01726311631500721, - 0.010930318385362625, - 0.004021230153739452, - -0.0034641490783542395, - -0.0009676885674707592, - 0.04459211602807045, - 0.0196579247713089, - -0.01905602216720581, - 0.0027886079624295235, - 0.0047832150012254715, - 3.4867603972088546e-05, - -0.025625739246606827, - -0.025011027231812477, - 0.008477880619466305, - -0.015188468620181084, - 0.0028574427124112844, - 2.746386599028483e-05, - 0.00914381630718708, - 0.01192922331392765, - -0.006800233386456966, - 0.020029311999678612, - -0.012806465849280357, - 0.002916672732681036, - -0.01263998169451952, - -0.0013254692312330008, - 0.03250281140208244, - -0.01149380300194025, - -0.004780013579875231, - -0.023986510932445526, - 0.015278114005923271, - 0.027508288621902466, - 0.01920969970524311, - -0.0227827038615942, - 0.007619847077876329, - -0.022641832008957863, - -0.0034801571164280176, - -0.021438024938106537, - -0.0034161247313022614, - 0.014445693232119083, - -0.022513767704367638, - -0.028891386464238167, - -0.01384378969669342, - -0.010584544390439987, - 0.010257978923618793, - -0.0409550778567791, - -0.010129914619028568, - -0.006076667923480272, - -0.009784139692783356, - -0.0004314178368076682, - -0.020157378166913986, - 0.035371460020542145, - 0.03688262030482292, - 0.013907821848988533, - -0.015867210924625397, - 0.006800233386456966, - -0.002540482673794031, - -0.008304993622004986, - 0.003129580058157444, - -0.007299685385078192, - 0.003643439617007971, - -0.004146093502640724, - -0.025574512779712677, - -0.0240121241658926, - 0.023871252313256264, - 0.02384563907980919, - 0.02650938369333744, - -0.0013022575294598937, - 0.029454872012138367, - 0.017224697396159172, - 0.015150049701333046, - 0.007671073079109192, - 0.01757047139108181, - -0.010815060697495937, - 0.01458656508475542, - 0.006038248538970947, - 0.0025180713273584843, - -0.0073829274624586105, - -0.004050044808536768, - 0.024601221084594727, - -0.01772414892911911, - -0.018761472776532173, - 0.01225578784942627, - -0.011051979847252369, - 0.0003223627572879195, - -0.037010688334703445, - -0.012134126387536526, - -0.002759793307632208, - 0.011404157616198063, - 0.022219218313694, - -0.027149707078933716, - -0.02527996338903904, - 0.0227827038615942, - -0.019376182928681374, - -0.020298248156905174, - 0.013203466311097145, - -0.01741679385304451, - 0.01977318339049816, - 0.009015752002596855, - -0.012774449773132801, - -0.006723394617438316, - 0.01299856323748827, - 0.01325469184666872, - 0.01162186823785305, - -0.012742433696985245, - 0.015598275698721409, - 0.017660116776823997, - 0.014945145696401596, - 0.004680763464421034, - -0.0453605018556118, - -0.005513183772563934, - -0.026176417246460915, - 0.014330435544252396, - 0.022142380475997925, - 0.01458656508475542, - -0.031068487092852592, - 0.018466923385858536, - -0.008753219619393349, - 0.008343412540853024, - -0.023884059861302376, - -0.04146733507514, - 0.0005963010480627418, - 0.006188724655658007, - -0.022308863699436188, - -0.024140188470482826, - 0.0035153748467564583, - 0.03406519815325737, - 0.029787840321660042, - 0.013933435082435608, - 0.00016018087626434863, - -0.015060404315590858, - 4.732389425043948e-05, - -0.015060404315590858, - 0.004098068922758102, - -0.011756335385143757, - -0.011455384083092213, - -0.004680763464421034, - -0.020054925233125687, - 0.001711264019832015, - -0.026035545393824577, - -0.008926106616854668, - 0.026432545855641365, - -0.02358951047062874, - 0.0033873103093355894, - 0.0017897036159411073, - 0.020772088319063187, - 0.0028862573672086, - 0.007408540695905685, - 0.012671997770667076, - 0.0018713448662310839, - -0.007664669770747423, - -0.001081345952115953, - 0.0384962372481823, - -0.026791127398610115, - 0.028174225240945816, - -0.011756335385143757, - 0.018518149852752686, - 0.011397754773497581, - 0.022500960156321526, - -0.012403062544763088, - -0.026996029540896416, - -0.013113820925354958, - 0.026791127398610115, - 0.01798027753829956, - 0.02338460646569729, - -0.014099919237196445, - -0.0007475774618797004, - 0.045386116951704025, - 0.030351324006915092, - 0.013664498925209045, - 0.0067810239270329475, - -0.011320916004478931, - 0.008689187467098236, - 0.009131010621786118, - -0.010469285771250725, - -0.631512463092804, - 0.011250480078160763, - 0.015034791082143784, - -0.018313245847821236, - 0.017993085086345673, - 0.015521436929702759, - 0.02625325508415699, - 0.016174566000699997, - -0.010225962847471237, - 0.025869062170386314, - -0.0014207173371687531, - 0.0008860473753884435, - -0.024639640003442764, - 0.005897377617657185, - 0.02338460646569729, - -0.013331531547009945, - 0.011506609618663788, - -0.008766026236116886, - 0.02435789816081524, - 0.006255958694964647, - -0.023487059399485588, - 0.007011540234088898, - -0.009528011083602905, - 2.62476282841817e-06, - 0.023640736937522888, - 0.037625398486852646, - 0.001487951260060072, - -0.02825106307864189, - -0.00368506065569818, - 0.01731434278190136, - 0.010885495692491531, - 0.042927272617816925, - -0.03365539386868477, - 0.030786743387579918, - 0.059370774775743484, - 0.034090813249349594, - -0.029967131093144417, - 0.02104102447628975, - 0.0022651436738669872, - 0.016942953690886497, - 0.00022951587743591517, - -0.007747911848127842, - -0.0020010103471577168, - 0.008516299538314342, - 0.021105056628584862, - 0.0059966277331113815, - 0.03975126892328262, - -0.01593124307692051, - -0.0200677327811718, - -0.013011369854211807, - 0.026278868317604065, - -0.015854405239224434, - 0.017339954152703285, - 0.003745891386643052, - 0.030223259702324867, - -0.00018349265155848116, - 0.016571566462516785, - -0.003473753808066249, - 0.001111761317588389, - -0.0020922564435750246, - -0.0022987606935203075, - -0.006909088231623173, - -0.009098994545638561, - -0.020874539390206337, - -0.01317785307765007, - 0.059678129851818085, - -0.0227827038615942, - -0.021322766318917274, - -0.011506609618663788, - -0.013895015232264996, - -0.006374418269842863, - 0.019888442009687424, - 0.008330605924129486, - -0.02457560785114765, - 0.01302417553961277, - 0.021514862775802612, - 0.02374318800866604, - -0.014701822772622108, - -0.027815643697977066, - 0.026739900931715965, - 0.00033977156272158027, - -0.022283250465989113, - -0.003560197539627552, - 0.009694494307041168, - 0.021591702476143837, - -0.018479730933904648, - -0.006851459387689829, - 0.001573594519868493, - -0.0018633408471941948, - 0.013446789234876633, - 0.035934943705797195, - 0.018428504467010498, - -0.017698535695672035, - -0.010123511776328087, - -0.013421176001429558, - 0.02809738554060459, - -0.012819272466003895, - 0.026586223393678665, - 0.017711343243718147, - -0.04787056893110275, - -0.022257637232542038, - 0.012505513615906239, - 0.01987563446164131, - 0.0026029141154140234, - -0.006137498654425144, - 0.0040020206943154335, - -0.0204263124614954, - 0.007389330770820379, - 0.03250281140208244, - -0.022129572927951813, - 0.0014079108368605375, - 0.016161760315299034, - -0.008945316076278687, - -0.013293111696839333, - -0.021066635847091675, - -0.009873785078525543, - 0.04131365939974785, - -0.0120316743850708, - 0.007498185615986586, - 0.01644350215792656, - 0.005080965347588062, - -0.00578532088547945, - 0.01868463307619095, - -0.019478633999824524, - 0.008484283462166786, - 0.03209300339221954, - -0.021924668923020363, - 0.005801328923553228, - -0.02088734693825245, - -0.01317785307765007, - -0.005846151616424322, - 0.024037737399339676, - 0.03309190645813942, - -0.007299685385078192, - 0.02948048524558544, - 0.003323277924209833, - 0.033834684640169144, - 0.0007055562455207109, - -0.008036057464778423, - -0.020874539390206337, - -0.005407530348747969, - -0.01767292246222496, - 0.013081804849207401, - -0.05004766955971718, - -0.02717532031238079, - -0.00737012131139636, - -0.01936337724328041, - -0.010546124540269375, - -0.017711343243718147, - 0.008830058388411999, - -0.03329681232571602, - -0.019850023090839386, - -0.015290920622646809, - 0.014023080468177795, - 0.005500377155840397, - 0.004226133693009615, - -0.002583704423159361, - -0.022821122780442238, - -0.015559855848550797, - -0.020298248156905174, - 0.006588926538825035, - 0.010866286233067513, - -0.024742092937231064, - -0.006870668847113848, - -0.012223771773278713, - -0.010334817692637444, - -0.006441652309149504, - 0.00995702762156725, - -0.002721373923122883, - -0.04080140218138695, - -0.01013631746172905, - -0.0115706417709589, - 0.008317799307405949, - 0.017122244462370872, - -0.015278114005923271, - -0.015124436467885971, - -0.030453776940703392, - -0.006432047579437494, - 0.010232366621494293, - 0.0120060620829463, - 0.015867210924625397, - -0.00852910615503788, - -0.028737708926200867, - -0.028840161859989166, - 0.006883475463837385, - -0.012627175077795982, - 0.020708056166768074, - 0.008189735002815723, - 0.007715895771980286, - 0.004930489230901003, - 0.020362280309200287, - 0.03334803879261017, - 0.002726176520809531, - 0.0115706417709589, - -0.02707286924123764, - -0.03293823078274727, - -0.02697041817009449, - 0.014343242160975933, - -0.021540476009249687, - 0.012511917389929295, - 0.0387011393904686, - -0.005538796540349722, - 0.012217368930578232, - -0.013017772696912289, - 0.009700898081064224, - -0.012966547161340714, - 0.0023435833863914013, - 0.004655150230973959, - 0.008637961000204086, - 0.008919703774154186, - 0.029864678159356117, - 0.008445864543318748, - -0.02738022431731224, - -0.011705109849572182, - -0.004776811692863703, - 0.05506780371069908, - -0.024345092475414276, - -0.013587660156190395, - -0.021642927080392838, - -0.005830143578350544, - 0.009720107540488243, - -0.01700698770582676, - 0.00973291415721178, - -0.0102131562307477, - -0.015086016617715359, - 0.004338190425187349, - -0.00982896238565445, - 0.027969321236014366, - -0.006659362465143204, - -0.02604835107922554, - 0.0011629872024059296, - 0.0050393445417284966, - -0.011474593542516232, - 0.00942555908113718, - 0.001604009885340929, - 0.017544858157634735, - 0.005148199386894703, - -0.03283577784895897, - 0.036908235400915146, - -0.005471562501043081, - 0.011269690468907356, - 0.02640693262219429, - 0.01792905293405056, - -0.020823312923312187, - 0.02912190370261669, - -0.005971014965325594, - 0.02891699969768524, - 0.027661966159939766, - -0.001158985192887485, - 0.010994351468980312, - -0.01685330830514431, - 0.005583619233220816, - -0.0016240199329331517, - -0.02845596708357334, - 0.010847076773643494, - -0.01645630970597267, - 0.027610741555690765, - -0.007338105235248804, - 0.022846736013889313, - 0.0007467770483344793, - 0.013030579313635826, - 0.0030639469623565674, - 0.014842693693935871, - -0.009303897619247437, - -0.004370206501334906, - 0.005846151616424322, - 0.004415029194205999, - -0.003861149540171027, - -0.0242170263081789, - -0.0069923303090035915, - 0.01634105108678341, - 0.009540816769003868, - -0.024447543546557426, - 0.010097898542881012, - -0.0097265113145113, - 0.000759983726311475, - 0.00014797471521887928, - 0.009259074926376343, - -0.008708396926522255, - 0.006502483040094376, - -0.013165047392249107, - -0.00259170844219625, - -0.0021835025399923325, - 0.03575565293431282, - 0.00647366838529706, - -0.024806125089526176, - -0.008119299076497555, - 0.019785989075899124, - -0.008183332160115242, - -0.013216272927820683, - -0.01890234462916851, - -0.000951680529396981, - -0.03209300339221954, - -0.0033040682319551706, - 0.016686825081706047, - -0.017532052472233772, - 0.021630121394991875, - -0.018159568309783936, - 0.014983565546572208, - -0.004552698694169521, - 0.012518320232629776, - -0.01276804693043232, - -0.035883717238903046, - -0.0012406264431774616, - 0.02461402676999569, - 0.004831239115446806, - -0.02394809201359749, - 0.004050044808536768, - 0.00018479330174159259, - -0.028122998774051666, - -0.010546124540269375, - -0.019017601385712624, - 0.0051770140416920185, - 0.015547050163149834, - -0.004130085464566946, - -0.0019225707510486245, - 0.0002587306371424347, - -0.0054907724261283875, - 0.043285854160785675, - 0.003323277924209833, - -0.0052506509236991405, - -0.03524339571595192, - 0.0010197148658335209, - 0.016020888462662697, - 0.03631913661956787, - 0.007831154391169548, - 0.010411656461656094, - 0.0196067001670599, - -0.005967813078314066, - -0.014855500310659409, - 0.006508886348456144, - -0.020042119547724724, - -0.017493631690740585, - -0.017736954614520073, - -0.004459851887077093, - -0.006755410693585873, - 0.02242412231862545, - -0.00845226738601923, - -0.0007960019283927977, - 0.0012758441735059023, - -0.012268594466149807, - -0.013895015232264996, - 0.006531297694891691, - 0.0017256713472306728, - 0.010104301385581493, - -0.003889963962137699, - -0.0115450294688344, - 0.06556910276412964, - 0.016366664320230484, - 0.022552186623215675, - 0.0247805118560791, - 0.01762169785797596, - 0.016302630305290222, - -0.021527668461203575, - 0.013959048315882683, - 0.021937476471066475, - 0.01376695092767477, - 0.02155328169465065, - -0.04367005079984665, - 0.016328243538737297, - 0.018774278461933136, - -0.009335913695394993, - 0.02707286924123764, - 0.011993255466222763, - 0.02702164277434349, - 0.022654637694358826, - -0.007773525081574917, - -0.03142706677317619, - 0.013318724930286407, - -0.01899198815226555, - -0.005484369117766619, - 0.028635257855057716, - -0.010257978923618793, - 0.0018121149623766541, - 0.008016848005354404, - -0.009457575157284737, - -0.01909444108605385, - -0.008593138307332993, - 0.012326223775744438, - -0.03977688401937485, - 0.02442193031311035, - -0.000951680529396981, - -0.0072100404649972916, - -0.019888442009687424, - -0.030530614778399467, - -0.0226802509278059, - -0.004411827307194471, - -0.017186276614665985, - -0.011250480078160763, - -0.006281571462750435, - 0.006723394617438316, - 0.013741337694227695, - -0.010706205852329731, - 0.011673093773424625, - 0.028840161859989166, - -0.018313245847821236, - -0.006499281618744135, - -0.0059550064615905285, - 0.014010273851454258, - 0.0015767961740493774, - 0.01787782646715641, - 0.004680763464421034, - 0.0016616389621049166, - -0.01716066524386406, - 0.01818518154323101, - -0.022564992308616638, - 0.00018959572480525821, - -0.02609957754611969, - 0.010046673007309437, - -0.006787426769733429, - -0.013004966080188751, - -0.028276676312088966, - -0.019068827852606773, - 0.01445849984884262, - -0.015406178310513496, - -0.011180045083165169, - -0.007325298618525267, - 0.018633408471941948, - -0.0070947823114693165, - 0.005807732231914997, - 0.011019963771104813, - -0.005144997499883175, - 0.030300099402666092, - -0.04305533692240715, - 0.021899057552218437, - 0.013293111696839333, - -0.010834270156919956, - -0.002261942019686103, - 0.030479388311505318, - -0.0071332016959786415, - -0.032656487077474594, - -0.0012678401544690132, - -0.0040756575763225555, - -0.004370206501334906, - 0.02712409570813179, - -0.035371460020542145, - 0.026278868317604065, - 0.009707300923764706, - -0.011858787387609482, - 0.016930148005485535, - 0.0039027705788612366, - -0.01741679385304451, - 0.030402550473809242, - -0.015354952774941921, - -0.00829858984798193, - -0.02338460646569729, - 0.035525135695934296, - 0.005535595118999481, - 0.01603369601070881, - 0.008394638076424599, - -0.006928298156708479, - 0.022949187085032463, - -0.022219218313694, - 0.004908077884465456, - -0.0013150640297681093, - 0.00973291415721178, - 0.0009172631544061005, - 0.0019193690968677402, - -0.021284345537424088, - -0.007235653232783079, - 0.003697867039591074, - 0.022398509085178375, - -0.044617727398872375, - -0.0013927031541243196, - -0.028276676312088966, - 0.009092590771615505, - 0.0010309205390512943, - 0.011461786925792694, - 0.01623859815299511, - -0.027200933545827866, - -0.0241658017039299, - 0.01026438269764185, - 0.0028366323094815016, - 0.016776470467448235, - -0.03854746371507645, - -0.029352420940995216, - -0.024588415399193764, - 0.025408027693629265, - -0.010424463078379631, - -0.012934531085193157, - 0.0194530226290226, - -0.044873856008052826, - 0.034090813249349594, - 0.015406178310513496, - 0.005407530348747969, - -0.007203637156635523, - 0.024127382785081863, - 0.0008380231447517872, - -0.010219560004770756, - -0.020413506776094437, - 0.0023147687315940857, - 0.010847076773643494, - 0.0026765514630824327, - 0.03616546094417572, - 0.001786501961760223, - 0.019837215542793274, - -0.006111885886639357, - 0.011807561852037907, - 0.0025596923660486937, - 0.034705523401498795, - -0.025958705693483353, - -0.024857349693775177, - -0.033885907381772995, - -0.009630462154746056, - -0.009944221004843712, - 0.019837215542793274, - -0.016059309244155884, - 0.012896111235022545, - -0.00919504277408123, - -0.0103412214666605, - 0.015662308782339096, - 0.001970594981685281, - -0.008349815383553505, - 0.005734095349907875, - 0.011205657385289669, - -0.03467990830540657, - 0.03783030062913895, - 0.01660998724400997, - -0.0028286282904446125, - -0.0011613863753154874, - -0.018633408471941948, - -0.02717532031238079, - -0.03242597356438637, - 0.006400031503289938, - -0.008080880157649517, - -0.013510821387171745, - 0.007767121773213148, - -0.01634105108678341, - -0.009816155768930912, - -0.015534243546426296, - 0.008471476845443249, - -0.032656487077474594, - 0.007671073079109192, - -0.011135222390294075, - 0.0016456309240311384, - -0.016328243538737297, - -0.0033008665777742863, - -0.030223259702324867, - 0.0016360260779038072, - -0.013113820925354958, - -0.005080965347588062, - 0.046564310789108276, - -0.008343412540853024, - 0.019068827852606773, - 0.015559855848550797, - -0.001419116510078311, - 0.016469115391373634, - -0.00860594492405653, - 0.02738022431731224, - 0.007274072617292404, - -0.036447200924158096, - -0.009060574695467949, - -0.027815643697977066, - -0.00820254161953926, - -0.008772429078817368, - 0.01208290085196495, - -0.0054267398081719875, - -0.025971513241529465, - -0.014676210470497608, - 0.020400701090693474, - -0.0007635855581611395, - -0.002847837982699275, - 0.0021434822119772434, - 0.04459211602807045, - 0.026688674464821815, - 0.007754315156489611, - -0.012985756620764732, - -0.010667786002159119, - 0.005205828230828047, - 0.00822175107896328, - 0.012351836077868938, - 0.0009252671734429896, - -0.004956102464348078, - 0.01317785307765007, - -0.004399021156132221, - 0.04438721016049385, - -0.008823654614388943, - 0.030376937240362167, - 0.0023900067899376154, - -0.0013718926347792149, - -0.0232949610799551, - -0.028891386464238167, - -0.0005502778221853077, - 0.016302630305290222, - 0.012569546699523926, - 0.03401397541165352, - 0.015342146158218384, - -0.019734764471650124, - 0.025574512779712677, - -0.017391180619597435, - 0.014791468158364296, - 0.0069154915399849415, - 0.0033937133848667145, - 0.018351666629314423, - -0.006761814001947641, - -0.01149380300194025, - 0.0011990054044872522, - 0.024345092475414276, - 0.016814889386296272, - 0.00044142286060377955, - 0.002756591886281967, - -0.00478961830958724, - -0.007664669770747423, - -0.014945145696401596, - -0.005516385193914175, - 0.014893920160830021, - 0.006800233386456966, - -0.017749762162566185, - -0.0030047171749174595, - -0.0232949610799551, - -0.005538796540349722, - -0.01415114477276802, - 0.0370619110763073, - -0.010014655999839306, - 0.011660287156701088, - 0.007069169078022242, - 0.00017288728849962354, - 0.023666348308324814, - -0.01664840616285801, - -0.015239694155752659, - -0.004610327538102865, - 0.0205799899995327, - -0.017032599076628685, - 0.022961992770433426, - 0.03401397541165352, - 0.009098994545638561, - 0.0021738975774496794, - 0.003966802731156349, - 0.002476450288668275, - -0.019952474161982536, - 0.013933435082435608, - -0.010392447002232075, - -0.03575565293431282, - 0.0033809070009738207, - -0.029839064925909042, - -0.0012982555199414492, - -0.012953740544617176, - 0.0014839492505416274, - 0.026842352002859116, - -0.006380821578204632, - 0.005625240039080381, - -0.01798027753829956, - -0.021425217390060425, - 0.02835351601243019, - 0.005634845234453678, - -0.027149707078933716, - 0.04651308432221413, - -0.036293525248765945, - -0.006262362003326416, - 0.004764005541801453, - 0.004898473154753447, - -0.018172375857830048, - 0.00015737945795990527, - -0.028430353850126266, - -0.03152951970696449, - 0.0034961651545017958, - -0.015815986320376396, - -0.010712608695030212, - 0.008285783231258392, - -0.014535338617861271, - -0.0232437364757061, - 0.029582936316728592, - 0.004395819269120693, - 0.011839577928185463, - 0.008106493391096592, - 0.006806636694818735, - 0.00781834777444601, - 0.007037153001874685, - -0.010232366621494293, - -0.017352761700749397, - -0.020848926156759262, - 0.0010877492604777217, - -0.033988360315561295, - -0.010386044159531593, - 0.00888768769800663, - 0.0234486386179924, - 0.023154091089963913, - -0.030889196321368217, - 0.0013750942889600992, - 0.014612177386879921, - -0.03713875263929367, - -0.02410176955163479, - 0.009265477769076824, - -0.005125788040459156, - -0.009098994545638561, - 0.02594590000808239, - -0.0196067001670599, - 0.015098823234438896, - -0.006009434349834919, - 0.034654296934604645, - -0.006454458925873041, - -0.023973705247044563, - -0.01450972631573677, - 0.0004076058103237301, - 0.01909444108605385, - 0.00403403677046299, - -0.019645119085907936, - 0.00875962246209383, - 0.028430353850126266, - 0.0016904535004869103, - -0.002125873463228345, - -0.0014007071731612086, - -0.0029102694243192673, - -0.008304993622004986, - -0.017429599538445473, - 0.017544858157634735, - 0.021207507699728012, - -0.008522703312337399, - -0.0002855441707652062, - -0.02574099600315094, - -0.0003569802502170205, - 0.021642927080392838, - 0.0036530443467199802, - -0.03127339109778404, - 0.007242056541144848, - 0.006441652309149504, - -0.01992686092853546, - -0.0018281230004504323, - 0.018313245847821236, - -0.027149707078933716, - -0.011064786463975906, - -0.018863923847675323, - 0.01721188984811306, - 0.03637036308646202, - 0.0100594786927104, - 0.013408370316028595, - 0.010238769464194775, - -0.014714629389345646, - -0.022769896313548088, - 0.003896367270499468, - -0.0056668613106012344, - 0.023935284465551376, - 0.013421176001429558, - -0.007402137387543917, - 0.022462541237473488, - -0.018057117238640785, - 0.013472402468323708, - -0.011250480078160763, - -0.0025901077315211296, - -0.015867210924625397, - -0.007645460311323404, - -0.01659717969596386, - 0.007402137387543917, - -0.0033552940003573895, - 0.0013342737220227718, - -0.0011837977217510343, - -0.011212061159312725, - -0.02307725138962269, - -0.016315437853336334, - -0.008215348236262798, - -0.010386044159531593, - -0.005154602695256472, - -0.01149380300194025, - 0.014292015694081783, - -0.011813964694738388, - -0.022206412628293037, - -0.008855671621859074, - 0.017403988167643547, - -0.015150049701333046, - 0.021796604618430138, - 0.1830812394618988, - 0.010642172768712044, - -0.01392062846571207, - 0.02095137909054756, - -0.009816155768930912, - -0.002618922386318445, - 0.014240790158510208, - -0.004661553539335728, - -0.010859883390367031, - 0.02170695923268795, - -0.014548145234584808, - 0.01924811862409115, - 0.012780852615833282, - 0.004447045270353556, - 0.027047256007790565, - -0.038598690181970596, - -0.018556568771600723, - 0.00662734592333436, - 0.015918437391519547, - 0.030248872935771942, - 0.005503578577190638, - -0.017045406624674797, - 0.017698535695672035, - -0.006595329847186804, - 0.012012464925646782, - 0.011410561390221119, - 0.006150305271148682, - -0.001680848654359579, - 0.032400358468294144, - 0.011749932542443275, - 0.0231412835419178, - -0.0034385360777378082, - 0.013805370777845383, - -0.0033777053467929363, - 0.013933435082435608, - 0.0060926759615540504, - 0.016174566000699997, - -0.028225451707839966, - 0.03163197264075279, - 0.013510821387171745, - 0.007715895771980286, - -0.020503152161836624, - -0.013203466311097145, - -0.023781606927514076, - -0.0019065625965595245, - 0.01808273047208786, - -0.018927955999970436, - 0.015329339541494846, - -0.0039603994227945805, - -0.005807732231914997, - -0.025881867855787277, - -0.0013943039812147617, - 0.010962334461510181, - 0.030120808631181717, - -0.008951719850301743, - 0.03132461756467819, - -0.004904876463115215, - -0.03209300339221954, - -0.0007719897548668087, - 0.00713960500434041, - -0.020618410781025887, - 0.0395207554101944, - -0.016814889386296272, - 0.030709905549883842, - -0.019593892619013786, - -0.0033392859622836113, - -0.01970915123820305, - 0.01458656508475542, - 0.0026429344434291124, - -0.0009460776927880943, - -0.01443288754671812, - -0.007248459849506617, - -0.021322766318917274, - 0.020182989537715912, - -0.015598275698721409, - -0.01967073231935501, - 0.01700698770582676, - 0.004930489230901003, - 0.023615123704075813, - 0.018761472776532173, - -0.027969321236014366, - 0.013523628003895283, - -0.010373237542808056, - -0.041851531714200974, - 0.023256542161107063, - -0.03959759324789047, - 0.03140145540237427, - 0.005394723732024431, - -0.022693058475852013, - -0.006528095807880163, - -0.01143617369234562, - 0.005439546424895525, - -0.002955092117190361, - -0.02707286924123764, - 0.021309958770871162, - 0.00822175107896328, - 0.0242170263081789, - 0.01315224077552557, - -0.010379640385508537, - 0.011813964694738388, - 0.006716991309076548, - 0.06567155569791794, - 0.023205315694212914, - -0.01823640801012516, - 0.003637036308646202, - 0.004267754964530468, - -0.017800988629460335, - 0.019734764471650124, - 0.005692474078387022, - -0.008772429078817368, - -0.005372312385588884, - -0.03165758401155472, - -0.003790713846683502, - -0.015521436929702759, - 0.013869402930140495, - 0.03176003694534302, - -0.005910184234380722, - -0.012198158539831638, - -0.0012614368461072445, - -0.005148199386894703, - -0.02047753892838955, - 0.015483017079532146, - 0.005894176196306944, - -0.00455910200253129, - 0.010917512699961662, - -0.024024929851293564, - -0.045232437551021576, - 0.008388235233724117, - 0.0006691378657706082, - -0.015214081853628159, - 0.009278284385800362, - -0.03345048800110817, - -0.0023916075006127357, - 0.012403062544763088, - -0.007286879234015942, - 0.031094100326299667, - 0.005205828230828047, - -0.02707286924123764, - -0.01798027753829956, - -0.007805541157722473, - 0.014163951389491558, - -0.022693058475852013, - -0.006457660347223282, - -0.03283577784895897, - 0.00722924992442131, - 0.004632738884538412, - -0.0030351325403898954, - -0.008093686774373055, - -0.01422798354178667, - -0.019542668014764786, - 0.014471306465566158, - -0.016200179234147072, - -0.012505513615906239, - -0.015393371693789959, - 0.009387139230966568, - -0.013984660618007183, - -0.018479730933904648, - -0.029711000621318817, - 0.015918437391519547, - 0.006115087307989597, - -0.012140530161559582, - 0.003467350732535124, - -0.0007972025196067989, - -0.025753803551197052, - -0.01407430600374937, - 0.021309958770871162, - -0.1586977243423462, - 0.010917512699961662, - 0.013498014770448208, - -0.010930318385362625, - 0.004389416426420212, - -0.017993085086345673, - -0.005753304809331894, - -0.01317785307765007, - -0.009380736388266087, - -0.002439631847664714, - 0.03585810586810112, - -0.006633749231696129, - -0.029070677235722542, - -0.024140188470482826, - -0.006275168154388666, - 0.005698877386748791, - 0.00046103278873488307, - 0.02814861200749874, - 0.012588756158947945, - 0.018108343705534935, - 0.017839407548308372, - -0.017890632152557373, - 0.007248459849506617, - -0.002924676751717925, - 0.01376695092767477, - 0.000997303519397974, - -0.016469115391373634, - 0.029941517859697342, - -0.0006163111538626254, - -0.024549994617700577, - 0.013139434158802032, - -0.014253596775233746, - 0.030274486169219017, - -0.0077351052314043045, - 0.007235653232783079, - -0.010898302309215069, - 0.01256314292550087, - -0.017339954152703285, - -0.0021050628274679184, - 0.03447500616312027, - 0.02498541586101055, - 0.006672168616205454, - -0.029890291392803192, - 0.014868306927382946, - -0.022821122780442238, - 0.00655050715431571, - 0.009777736850082874, - 0.008977333083748817, - -0.010590947233140469, - 0.005343497730791569, - 0.013754144310951233, - -0.010347624309360981, - -0.009233461692929268, - 0.016533147543668747, - -0.01004026923328638, - 0.020682442933321, - 0.0027325795963406563, - 0.02963416278362274, - 0.0038419398479163647, - -0.0003369701444171369, - 0.008266573771834373, - -0.02840474247932434, - -0.004123682156205177, - 0.002902265405282378, - 0.006163111887872219, - -0.012524724006652832, - -0.00022231224284041673, - -0.0013126627309247851, - -0.02697041817009449, - 0.007767121773213148, - -0.007242056541144848, - -0.016008082777261734, - 0.031247777864336967, - 0.011320916004478931, - 0.001703260000795126, - 0.003806722117587924, - -0.003857947885990143, - 0.004450247157365084, - -0.0025612933095544577, - 0.0057052806951105595, - -0.027252160012722015, - 0.042005207389593124, - -0.012473497539758682, - -0.022155186161398888, - -0.026381319388747215, - 0.00883646123111248, - 0.0014743444044142962, - -0.006255958694964647, - 0.004603924695402384, - 0.01294733677059412, - 0.02043912000954151, - -0.04315778985619545, - -0.030120808631181717, - 0.0077351052314043045, - -0.0008064071298576891, - -0.00996343046426773, - 0.015956856310367584, - -0.004046843387186527, - -0.016302630305290222, - -0.03227229416370392, - 0.012262191623449326, - -0.0013782959431409836, - -0.028686484321951866, - -0.0036562460009008646, - 0.0108022540807724, - 0.02435789816081524, - 0.0024492365773767233, - 0.010174737311899662, - 0.035883717238903046, - -0.002585305366665125, - -0.012012464925646782, - 0.0015383766731247306, - 0.030479388311505318, - 0.010763834230601788, - -0.010949528776109219, - 0.018466923385858536, - 0.003905972233042121, - -0.02498541586101055, - 0.008900494314730167, - -0.007933605462312698, - 0.03370661661028862, - 0.0006823445437476039, - -0.033937133848667145, - 0.0007047558319754899, - 0.0037811091169714928, - -0.0216045081615448, - -0.0886719673871994, - 0.012550336308777332, - 0.011692303232848644, - 0.028840161859989166, - 0.005868562962859869, - 0.002825426636263728, - 0.004664755426347256, - 0.005532393231987953, - 0.01310101430863142, - 0.017173470929265022, - -0.04717902094125748, - -0.01849253661930561, - 0.0036722540389746428, - -0.012242981232702732, - 0.0220655407756567, - -0.021476443856954575, - -0.014893920160830021, - -0.02124592661857605, - -0.0190432146191597, - 0.029659776017069817, - 0.021924668923020363, - -0.007062765769660473, - -0.015393371693789959, - -0.0062719667330384254, - 0.005112981423735619, - 0.005413933657109737, - -0.024498770013451576, - 0.010610156692564487, - 0.016110533848404884, - 0.007069169078022242, - 0.036037396639585495, - -0.011500206775963306, - 0.03263087570667267, - -0.036139845848083496, - 0.013017772696912289, - -0.005397925619035959, - -0.001495955279096961, - -0.03432133048772812, - 0.00899013876914978, - -0.0067041851580142975, - -0.03232352063059807, - -0.012671997770667076, - 0.03926462307572365, - -0.045027535408735275, - 0.004142891615629196, - -0.017339954152703285, - -0.011384948156774044, - -0.006819443311542273, - -0.007824750617146492, - -0.021079443395137787, - -0.04897192493081093, - -0.020964184775948524, - -0.014330435544252396, - -0.0054267398081719875, - 0.016072114929556847, - 0.010546124540269375, - -0.003060745308175683, - -0.0099058011546731, - -0.005615635309368372, - 0.000582694192416966, - -0.0026893578469753265, - 0.014573758468031883, - -0.03544829785823822, - 0.028327902778983116, - 0.007754315156489611, - -0.006528095807880163, - -0.028481580317020416, - -0.007683879695832729, - -0.00783755723387003, - -0.032349132001399994, - -0.0068770721554756165, - 0.0017512842314317822, - 0.007043556310236454, - -0.00174968340434134, - -0.017288729548454285, - 0.0028286282904446125, - -0.03247719630599022, - -0.03245158493518829, - 0.0048856670036911964, - -0.025459254160523415, - -0.016520341858267784, - -0.021847831085324287, - 0.03250281140208244, - -0.023358993232250214, - 0.01951705478131771, - -0.008874881081283092, - -0.0005806931876577437, - -0.013805370777845383, - 0.014535338617861271, - -0.022411314770579338, - -0.0034801571164280176, - 0.005574014503508806, - 0.044054243713617325, - -0.016225792467594147, - 0.0197603777050972, - -0.002271546982228756, - 0.002188304904848337, - -0.006800233386456966, - 0.015380566008388996, - -0.014689016155898571, - -0.023013219237327576, - -0.01435604877769947, - -0.035576362162828445, - 0.00988659169524908, - 0.0015663908561691642, - -0.0073060886934399605, - -0.014112725853919983, - 0.0021130668465048075, - 0.011820368468761444, - -0.0018473326927050948, - 0.014996371231973171, - -0.0009836966637521982, - -0.007459766231477261, - 0.014112725853919983, - 0.02543364092707634, - -0.0024060148280113935, - -0.014548145234584808, - -0.009015752002596855, - 0.022244831547141075, - 0.025907481089234352, - 0.010328414849936962, - -0.006813040003180504, - -0.015367759391665459, - 0.00394759327173233, - -0.01589282415807247, - 0.014138338156044483, - -0.03129900246858597, - 0.009624059312045574, - -0.02134837955236435, - -0.007856766693294048, - -0.013702918775379658, - -0.026534996926784515, - 0.011666690930724144, - 0.0014367253752425313, - -0.004123682156205177, - 0.006870668847113848, - -0.007632653694599867, - -0.012371046468615532, - 0.011583448387682438, - 0.042773596942424774, - -0.011410561390221119, - 0.06813039630651474, - -0.03488481417298317, - -0.025920286774635315, - 0.0193505696952343, - -0.03923901170492172, - -0.0035313828848302364, - -0.012223771773278713, - 0.007741508539766073, - 0.0022363290190696716, - 0.01594405062496662, - -0.011077593080699444, - 0.021642927080392838, - 0.009873785078525543, - 0.007235653232783079, - 0.00881084892898798, - 0.03355294093489647, - -0.030095195397734642, - 0.024127382785081863, - 0.01915847323834896, - 0.010257978923618793, - -0.013139434158802032, - 0.036857008934020996, - 0.010616560466587543, - 0.00440542446449399, - 0.008093686774373055, - 0.027303384616971016, - -0.02871209755539894, - -0.014407274313271046, - -0.0004954501637257636, - 0.032758940011262894, - -0.02881454862654209, - -0.022552186623215675, - -0.016481921076774597, - 0.010238769464194775, - 0.021271539852023125, - -0.012134126387536526, - -0.007203637156635523, - 0.03854746371507645, - -0.0419795960187912, - 0.004968908615410328, - 0.030863583087921143, - -0.005193022079765797, - 0.008554719388484955, - -0.018428504467010498, - 0.0075237988494336605, - 0.017403988167643547, - 0.005807732231914997, - -0.024242639541625977, - -0.007779927924275398, - -0.008637961000204086, - 0.01568792015314102, - 0.004828037694096565, - 0.002791809616610408, - 0.006659362465143204, - 0.002386805135756731, - 0.016469115391373634, - 0.018121149390935898, - 0.00967528484761715, - -0.0025372810196131468, - 0.00032336325966753066, - 0.027661966159939766, - -0.0003649842692539096, - 0.006857862696051598, - 0.008413848467171192, - -0.017224697396159172, - -0.003460947424173355, - -0.003697867039591074, - -0.012121319770812988, - -0.030325710773468018, - -0.019491441547870636, - 0.03273332864046097, - -0.020759280771017075, - 0.02661183662712574, - 0.008612348698079586, - -0.009073381312191486, - -0.02109224908053875, - 0.03939269110560417, - -0.0018937562126666307, - -0.017135052010416985, - -0.030889196321368217, - -0.00988659169524908, - 0.013907821848988533, - 0.011890803463757038, - 0.0015815985389053822, - -0.001143777510151267, - 0.016200179234147072, - 0.017442407086491585, - -0.006249555386602879, - -0.0006075067212805152, - 0.0040020206943154335, - 0.0009116603177972138, - 0.018402891233563423, - -0.004741594195365906, - -0.036447200924158096, - -0.006672168616205454, - -0.010251576080918312, - -0.015623888932168484, - 0.01931215077638626, - 0.014535338617861271, - 0.025984318926930428, - 0.08534228801727295, - 0.02912190370261669, - 0.017698535695672035, - 0.001956187654286623, - 0.003260846482589841, - 0.008471476845443249, - -0.00357620557770133, - 0.01481708139181137, - 0.0040788594633340836, - -0.044259145855903625, - 0.01573914662003517, - -0.027405837550759315, - 0.010712608695030212, - -0.010469285771250725, - -0.030607454478740692, - 0.020054925233125687, - -0.01645630970597267, - 0.029531709849834442, - -0.025420835241675377, - 0.016789276152849197, - 0.03396274894475937, - -0.015854405239224434, - 0.025190318003296852, - 0.021796604618430138, - -0.04735831171274185, - -0.006041450425982475, - 0.009944221004843712, - -0.014842693693935871, - 0.010501301847398281, - 0.010975141078233719, - -0.004546295385807753, - 0.009611252695322037, - -0.06464704126119614, - -0.015406178310513496, - 0.01353643462061882, - -0.00216429284773767, - -0.005260256119072437, - -0.03257964923977852, - 0.015585469081997871, - 0.02271866984665394, - 0.01695576123893261, - 0.0013038583565503359, - -0.016417888924479485, - -0.026214836165308952, - -0.010366833768785, - -0.017967471852898598, - -0.015854405239224434, - -0.01177554577589035, - -0.021988702937960625 - ], - "sparse": "SparseEmbedding(values=array([1.19170546, 0.81717934, 1.40659341, 1.64370768, 0.81717934,\n 1.64370768, 0.81717934, 0.81717934, 1.98957873, 0.81717934,\n 1.96276013, 0.81717934, 0.81717934, 1.19170546, 0.81717934,\n 1.19170546, 0.81717934, 1.19170546, 0.81717934, 1.97697276,\n 0.81717934, 1.77170591, 1.19170546, 1.19170546, 1.40659341,\n 1.19170546, 1.64370768, 0.81717934, 0.81717934, 0.81717934,\n 1.40659341, 1.40659341, 1.19170546, 1.54597859, 0.81717934,\n 1.64370768, 1.90668472, 1.64370768, 1.71602681, 1.81589553,\n 1.64370768, 1.19170546, 0.81717934, 0.81717934, 1.40659341,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 1.19170546,\n 0.81717934, 1.71602681, 1.71602681, 0.81717934, 0.81717934,\n 1.19170546, 1.19170546, 1.19170546, 1.40659341, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 1.19170546, 1.19170546,\n 0.81717934, 0.81717934, 0.81717934, 1.54597859, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 1.19170546,\n 0.81717934, 0.81717934, 1.19170546, 0.81717934, 1.40659341,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 1.19170546, 0.81717934, 0.81717934, 1.71602681, 1.19170546,\n 0.81717934, 0.81717934, 0.81717934, 1.19170546, 0.81717934,\n 0.81717934, 0.81717934, 1.19170546, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 1.54597859, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 1.40659341,\n 0.81717934, 1.19170546, 0.81717934, 1.19170546, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 1.19170546, 0.81717934, 0.81717934, 1.19170546, 0.81717934,\n 1.19170546, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 1.19170546,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 1.19170546,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 1.19170546, 1.19170546,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 1.19170546,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 0.81717934, 1.19170546, 0.81717934, 0.81717934, 1.19170546,\n 0.81717934, 1.19170546, 0.81717934, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 1.19170546, 1.19170546, 1.19170546,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 1.19170546, 0.81717934, 1.19170546, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934, 0.81717934, 0.81717934,\n 0.81717934, 0.81717934, 0.81717934]), indices=array([ 19522071, 264741300, 544882233, 860787312, 1356962648,\n 1174634009, 288069631, 234610810, 1109731834, 2115907048,\n 408270109, 1219188223, 160566303, 1780067147, 1794747217,\n 99212807, 685049228, 1638510030, 116705176, 164058840,\n 1366900926, 47951928, 1082106827, 2022840656, 963966427,\n 1092081572, 651773314, 562659716, 999597208, 1880984647,\n 1589814399, 1657799547, 861892776, 1597181229, 2001185754,\n 915344176, 1669595920, 517681357, 843816345, 433708589,\n 423733604, 1219669695, 2031875777, 1416371393, 472518677,\n 476704413, 1694644613, 565373295, 881812062, 28500618,\n 428160610, 1884592655, 111750408, 114406085, 76479261,\n 80232749, 1472959026, 1425104078, 2054116652, 440587275,\n 751394978, 1147900472, 1047604504, 1587158528, 1721714878,\n 560980618, 2106105284, 1894123915, 720732358, 1446320556,\n 1231730304, 423477467, 913777079, 148163374, 1282568013,\n 1298097652, 1182335331, 1096658165, 364305688, 17485943,\n 1453712511, 551103710, 1618153130, 504370091, 1487914755,\n 147714150, 1432036405, 717918380, 694270148, 2103309648,\n 156721919, 1919424229, 1877976786, 1974581709, 843897557,\n 1392079869, 66293894, 850118857, 147047731, 113819871,\n 507847149, 401486827, 1949560335, 2053391496, 404895453,\n 607698446, 1485265044, 176244452, 646741804, 1404348804,\n 420231999, 755131215, 378174453, 494070171, 1294733183,\n 255174557, 221927294, 1180476291, 1112230396, 828667247,\n 1815595884, 1788212450, 327643561, 1749031367, 1819996810,\n 1034394088, 607607259, 902575288, 1256509012, 559860000,\n 8547324, 1895683639, 1626154326, 1793743868, 999122703,\n 197670987, 109312274, 759690987, 1496316063, 810405031,\n 1955339301, 367467701, 290749275, 1354425271, 766175632,\n 1187567306, 731494756, 364823643, 1079999565, 1197132337,\n 715386164, 46081745, 154621355, 2090485458, 1267522393,\n 1510198529, 1850567900, 1256368222, 2038194400, 1066874362,\n 769611483, 1079921207, 1533237356, 364406723, 1246280156,\n 434628232, 1597213873, 1806910855, 912658635, 1933400130,\n 1734550606, 1844041627, 1758118664, 1616397354, 1381820790,\n 516830072, 400876399, 762641308, 1448994436, 1680012685,\n 1090661472, 1180555975, 720266233, 1087744415, 579152585,\n 2114235686, 153597779, 1081665576, 1927841000, 990385963,\n 395788227, 500123114, 2124172637, 1167073666, 1355526319,\n 151305406, 1900867151, 2143189012, 88627685, 1466718932,\n 999490782, 1273509924, 311286247, 1158345025, 1490852610,\n 1612226653, 1648659012, 70307177, 1295520201, 692459969,\n 1407327463, 1782143793, 2067298431, 853216624, 1150567817,\n 1462134079, 677865134, 345433250, 787718046, 1630798568,\n 190652800, 1179980782, 216884889]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 49, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 413 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000050.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000050.json deleted file mode 100644 index a62879fd86c2f5d428a4c717fecbc252741c9e81..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000050.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000050", - "content": "2.3.3 Herausforderung gr\u00fcner Infrastruktur im urbanen Raum Urbane Vegetation steht vor Herausforderungen durch anthropogene Einfl\u00fcsse wie beispielsweise Emissionen, versiegelte Oberfl\u00e4chen und verdichtete B\u00f6den. Diese von den nat\u00fcrlichen Gegebenheiten abweichenden Zust\u00e4nde stellen Stressfaktoren f\u00fcr die Pflanzen dar, auf welche diese mit Anpassungsstrategien reagieren. Zun\u00e4chst reversible Anpassungsstrategien k\u00f6nnen schnell irreversible Folgen nach sich ziehen und die positiven Auswirkungen der Pflanzen auf ihre Umwelt reduzieren. (vgl. Feldmann et al. 2023, 30 f) 11 Theorieteil Resilienz und Resistenz gegen\u00fcber sich ver\u00e4ndernden klimatischen Bedingungen spielen auch bei der Vegetation eine bedeutende Rolle, um die Widerstandsf\u00e4higkeit der Pflanze zu erh\u00f6hen. Unter Resilienz wird die zeitweise Anpassung der Pflanze an eine Extremsituation beschrieben. Ist die Extremsituation \u00fcberstanden, weist diese keine bleibenden Sch\u00e4den auf und kehrt zu einer vollen Leistungsf\u00e4higkeit zur\u00fcck. So k\u00f6nnen Pflanzen beispielsweise bei extremer Trockenheit und Wassermangel ihre Bl\u00e4tter einrollen, um den Verlust von Wasser \u00fcber die Verdunstung zu reduzieren (vgl. Feldmann et al. 2023, S. 31). Resistente Ver\u00e4nderungen an den Eigenschaften der Pflanze ver\u00e4ndern ihre Leistung dauerhaft. Zum Beispiel w\u00fcrde eine geringere Blattgr\u00f6\u00dfe oder eine breitere Wachsschicht auf der Blattoberfl\u00e4che die Verdunstung reduzieren. Da diese Ver\u00e4nderung irreversibel ist, kann die Pflanze ihre urspr\u00fcnglichen Leistungen nur noch in einem geringeren Ma\u00dfe ausf\u00fchren (vgl. Feldmann et al. 2023, S. 33). B\u00e4ume stellen eine essenzielle Komponente der nachhaltigen Stadtentwicklung dar, da sie Mehrwert in allen drei Dimensionen der Nachhaltigkeit bieten. Deshalb d\u00fcrfen die Bed\u00fcrfnisse dieser nicht au\u00dfer Acht gelassen werden, um auch in Zukunft von der gr\u00fcnen Infrastruktur profitieren zu k\u00f6nnen. Um Platz f\u00fcr einen steigenden Gr\u00fcnanteil im urbanen Raum zu schaffen, ist unter andrem eine Ver\u00e4nderung in dem Mobilit\u00e4tsverhalten notwendig.", - "embedding": { - "dense": [ - 0.019757166504859924, - -0.014762156642973423, - 0.00597500242292881, - 0.006909108720719814, - 0.00861344300210476, - 0.017279326915740967, - -0.023873789235949516, - 0.006338812410831451, - -0.007682614494115114, - -0.030415810644626617, - 0.01363467425107956, - 0.004100234713405371, - 0.002692520385608077, - 0.011235496029257774, - -0.0030956610571593046, - -0.008495450951159, - 0.050684280693531036, - 0.004126455634832382, - 0.011314157396554947, - 0.011858233250677586, - -0.008796987123787403, - 0.007997260428965092, - 0.0029956952203065157, - 0.00045066530583426356, - -0.010324332863092422, - 0.01847236044704914, - 0.027138246223330498, - -0.026338519528508186, - -0.004175618756562471, - -0.0018288817955181003, - 0.00478852353990078, - -0.0197309460490942, - -0.01006868202239275, - 0.005676744040101767, - -0.02071421593427658, - -0.01945563033223152, - 0.007282751612365246, - -0.019573623314499855, - 0.011602583341300488, - 0.0054145390167832375, - 0.001289722160436213, - -0.009544271975755692, - -0.0061093829572200775, - -0.008351237513124943, - -0.0004981899983249605, - 0.02115996554493904, - -0.016073182225227356, - -0.0041887289844453335, - -0.024293318390846252, - 0.01329380739480257, - 0.0331689678132534, - 0.028527934104204178, - -0.016833579167723656, - 0.015574993565678596, - -0.016256727278232574, - -0.004329664632678032, - -0.018760787323117256, - 0.012762841768562794, - 0.010960180312395096, - -0.026299187913537025, - -0.028003523126244545, - -0.009826142340898514, - -0.015627434477210045, - 0.01619117520749569, - -0.04048449546098709, - 0.0001844655052991584, - -0.000908705114852637, - 0.00025831317179836333, - 0.003441444132477045, - -0.02708580531179905, - 0.03461109474301338, - 0.045807261019945145, - 0.027819979935884476, - -0.003500440390780568, - 0.007885823957622051, - -0.0009119827300310135, - 0.00243195379152894, - 0.0006153630092740059, - -0.019809607416391373, - 0.0009201766224578023, - -0.0024827562738209963, - -0.024634184315800667, - -0.024988163262605667, - 0.044417571276426315, - 0.024463752284646034, - 0.012153214775025845, - -0.002967835869640112, - 0.016269836574792862, - 0.022575873881578445, - -0.0018927942728623748, - -0.006525633856654167, - 0.017161335796117783, - 0.002205801894888282, - 0.026286078616976738, - -0.005650523584336042, - 0.003202181775122881, - -0.004149398300796747, - -0.006112660281360149, - 0.03167439624667168, - -0.022300558164715767, - -0.013660894706845284, - 0.030022503808140755, - -0.0003998630272690207, - -0.0030415812507271767, - -0.03288054093718529, - -0.002171387430280447, - -0.00549320038408041, - 0.02178925834596157, - 0.021802367642521858, - -0.020701106637716293, - -0.016610704362392426, - 0.027426671236753464, - -0.03447999432682991, - -0.020202916115522385, - 0.0025941934436559677, - -0.025945210829377174, - 0.04292300343513489, - 0.00841023400425911, - 0.0014388514682650566, - -0.0053162118420004845, - 0.025984542444348335, - -0.007748165633529425, - 0.010343997739255428, - -0.01906232349574566, - 0.019940711557865143, - 0.011995891109108925, - 0.019245866686105728, - 0.010029351338744164, - -0.045309070497751236, - -0.020163584500551224, - -0.015666764229536057, - 0.023965561762452126, - 0.006646903697401285, - -0.010737305507063866, - -0.010927404277026653, - 0.0038314745761454105, - -0.024188436567783356, - -0.00451648561283946, - -0.030101165175437927, - -0.04111378639936447, - -0.012651404365897179, - 0.0028629538137465715, - -0.04326387122273445, - -0.016204286366701126, - -0.009511495940387249, - 0.022982291877269745, - 0.018852559849619865, - 0.01383132766932249, - -0.003261178033426404, - -0.007289306726306677, - -0.0135166822001338, - -0.0077153900638222694, - 0.003634820459410548, - -0.015588103793561459, - -0.004424714017659426, - 0.0002519628906156868, - -0.03080911934375763, - -0.00030501847504638135, - -0.033064085990190506, - 0.00818735919892788, - 0.03933079168200493, - -0.014985031448304653, - -0.003841307247057557, - 0.007282751612365246, - 0.017921730875968933, - -0.0003046087804250419, - -0.011956560425460339, - 0.02605009451508522, - 0.00787271372973919, - -0.0032890373840928078, - -0.007053321693092585, - 0.02466040663421154, - -0.026482732966542244, - 0.03461109474301338, - 0.006889443378895521, - 0.019586734473705292, - -0.005447314586490393, - 0.027190687134861946, - -0.011366598308086395, - -0.016702475026249886, - -0.015391449443995953, - 0.02228744886815548, - 0.012952940538525581, - 0.026626944541931152, - -0.027138246223330498, - 0.007249975576996803, - 0.03663007542490959, - 0.032172586768865585, - -0.00045148469507694244, - 0.007269640918821096, - -0.011019176803529263, - 0.0014175472315400839, - -0.004618090111762285, - -0.019560514017939568, - -0.6397808790206909, - 0.008128363639116287, - 0.018498582765460014, - 0.0016387829091399908, - 0.03377204015851021, - 0.03067801706492901, - 0.024240877479314804, - -0.004365717992186546, - -0.0016445186920464039, - 0.028527934104204178, - 0.010507876053452492, - -0.00640108622610569, - -0.01937696896493435, - -0.008941199630498886, - 0.005368652753531933, - -0.016309168189764023, - 0.008744546212255955, - -0.016964681446552277, - 0.03080911934375763, - 0.00688288826495409, - -0.004326386842876673, - 0.006548576522618532, - -0.012297427281737328, - -0.001383132766932249, - 0.021448390558362007, - 0.026312299072742462, - -0.0003689310105983168, - -0.03663007542490959, - 0.006764896214008331, - 0.013300362043082714, - 0.005863565485924482, - 0.03796732425689697, - -0.025761667639017105, - 0.01163535937666893, - 0.05789492279291153, - 0.027479112148284912, - -0.033116526901721954, - 0.01717444509267807, - 0.01963917538523674, - 0.012992271222174168, - -0.008311906829476357, - 0.0011201081797480583, - 0.0003119833127129823, - 0.0071647590957582, - 0.0006809143233112991, - 0.017593974247574806, - 0.030651796609163284, - -0.02682359889149666, - -0.004021573346108198, - -0.017633303999900818, - 0.025447022169828415, - 8.065884685493074e-06, - 0.00975403655320406, - 0.008095587603747845, - 0.0325658954679966, - 0.00042444479186087847, - 0.025578124448657036, - -0.000364219507900998, - -0.0022877410519868135, - 0.0003265275154262781, - -0.00042239631875418127, - 0.00048630882520228624, - -0.013569123111665249, - -0.023519812151789665, - -0.023755798116326332, - 0.041821740567684174, - -0.03581723943352699, - -0.006365032866597176, - 0.01600763201713562, - -0.028239507228136063, - -0.0027318510692566633, - 0.013883769512176514, - 0.00632242439314723, - -0.024463752284646034, - 0.01383132766932249, - 0.010953625664114952, - 0.016794247552752495, - 0.009000196121633053, - -0.01341179944574833, - 0.043211430311203, - -2.983097147080116e-05, - -0.029157226905226707, - -0.02358536422252655, - 0.0036708738189190626, - 0.024227766320109367, - -0.016269836574792862, - -0.012749731540679932, - -0.0003660631482489407, - -0.006184767000377178, - -0.0028973682783544064, - 0.031753059476614, - 0.01945563033223152, - -0.012317092157900333, - -0.026692496612668037, - -0.003608600003644824, - 0.022588985040783882, - -0.012061442248523235, - 0.02560434490442276, - 0.0018403532449156046, - -0.02766265533864498, - -0.011773016303777695, - 0.0027220183983445168, - 0.018813228234648705, - 0.007420409005135298, - 0.012067997828125954, - 0.0008890397730283439, - -0.010947070084512234, - 0.027007142081856728, - 0.03201526403427124, - -0.012854613363742828, - -0.003026832127943635, - 0.00562758045271039, - -0.0044148811139166355, - -0.0104226591065526, - -0.008220135234296322, - -0.01609940454363823, - 0.03618432581424713, - -0.009780257008969784, - 0.000981630990281701, - 0.0060045006684958935, - 0.03036336973309517, - -0.009537716396152973, - 0.01078319177031517, - -0.02156638354063034, - 0.0029776685405522585, - 0.022982291877269745, - -0.00479835644364357, - -0.005434204358607531, - -0.020779768005013466, - -0.012323647737503052, - -0.008908424526453018, - 0.013490460813045502, - 0.028527934104204178, - 0.004926181398332119, - 0.031726837158203125, - 0.007990705780684948, - 0.0213041789829731, - 0.003174322657287121, - -0.0014445871347561479, - -0.012336757965385914, - -0.01076352596282959, - -0.002740045078098774, - 0.008692104369401932, - -0.03610566630959511, - -0.03600078448653221, - -0.014814597554504871, - -0.0009668819257058203, - 0.0061257705092430115, - -0.01253341231495142, - -0.000427722348831594, - -0.024922611191868782, - -0.01663692481815815, - -0.0025630565360188484, - 0.01578475721180439, - 0.00876421108841896, - 0.010363663546741009, - -0.0036708738189190626, - -0.030782898887991905, - -0.0028826191555708647, - -0.020950201898813248, - 0.004591869655996561, - -0.0008292241836898029, - -0.031097544357180595, - -0.002640079241245985, - -0.013451130129396915, - -0.0065715196542441845, - -0.008134918287396431, - 0.01878700777888298, - -0.02000626176595688, - -0.031543295830488205, - -0.010252226144075394, - -0.041008904576301575, - 0.00814147386699915, - 0.014565503224730492, - -0.017017122358083725, - -0.009314842522144318, - -0.04281812161207199, - -0.013857548125088215, - -0.011150279082357883, - 0.016741806641221046, - 0.016178065910935402, - -0.011694354936480522, - -0.006151990965008736, - -0.029707856476306915, - 0.001756775309331715, - 0.013883769512176514, - 0.023886900395154953, - 0.02277252823114395, - 0.006837002467364073, - 0.011445259675383568, - 0.02304784394800663, - 0.032932981848716736, - -0.0007497431943193078, - 0.01524723693728447, - -0.02447686158120632, - -0.036656297743320465, - -0.01174679584801197, - 0.017462871968746185, - -0.01919342577457428, - 0.020910870283842087, - 0.036525193601846695, - -0.018590353429317474, - -0.00045353316818363965, - -0.007702279835939407, - 0.009688484482467175, - -0.020071813836693764, - -0.004588592331856489, - -0.0038445848040282726, - 0.021186186000704765, - 0.01015389896929264, - 0.018760787323117256, - 0.009767146781086922, - -0.03744291141629219, - -0.011694354936480522, - -0.004395215772092342, - 0.032487232238054276, - -0.0026023872196674347, - -0.00784649234265089, - -0.0029645583126693964, - -0.005332599859684706, - 0.006922218948602676, - -0.006260151043534279, - 0.01302504725754261, - -0.01632227748632431, - -0.020478231832385063, - 0.01174679584801197, - -0.017475981265306473, - 0.024057334288954735, - 0.008325017057359219, - -0.01914098486304283, - -0.00444110156968236, - 0.011078172363340855, - -0.013936210423707962, - -0.0035266608465462923, - 0.002699075499549508, - 0.013949320651590824, - 0.020373350009322166, - -0.028816359117627144, - 0.03277565911412239, - 0.008606888353824615, - 0.019494961947202682, - 0.030914001166820526, - 0.013805107213556767, - -0.005067117046564817, - 0.041638195514678955, - 0.01578475721180439, - 0.02658761478960514, - 0.038491733372211456, - -0.01650582253932953, - 0.00667967926710844, - -0.013818217441439629, - 0.001517512951977551, - 0.013254476711153984, - -0.03159573674201965, - 0.00919029489159584, - -0.02045201137661934, - 0.02299540303647518, - 0.0015961745521053672, - 0.02960297465324402, - 0.005116280168294907, - 0.028318168595433235, - 0.008731435984373093, - 0.007328637409955263, - 0.008423344232141972, - 0.023886900395154953, - -0.005525975953787565, - -0.01120927557349205, - -0.00577507121488452, - -0.018092162907123566, - 0.011576362885534763, - -0.003654486034065485, - -0.006869778037071228, - -0.006732120178639889, - 0.013857548125088215, - -0.011641914024949074, - 0.012677624821662903, - -0.005253938026726246, - -0.0034316114615648985, - -0.003053052583709359, - 0.009747480973601341, - -0.0009029693901538849, - -0.0026712161488831043, - -0.0004021163622383028, - 0.05506310611963272, - -0.0025417522992938757, - -0.0213041789829731, - -0.00042608357034623623, - 0.01636160910129547, - -0.010691420175135136, - -0.008030036464333534, - -0.022366110235452652, - -0.0038576950319111347, - -0.031281087547540665, - -0.0005780807114206254, - 0.025617454200983047, - -0.0036184326745569706, - 0.022706976160407066, - -0.0023434595204889774, - 0.01659759320318699, - -0.007092652376741171, - 0.008777321316301823, - -0.007839937694370747, - -0.0001376577711198479, - 0.0023221555165946484, - 0.017279326915740967, - -0.005925839301198721, - -0.019258977845311165, - -0.002410649787634611, - 0.007820271886885166, - -0.02184169925749302, - -0.019940711557865143, - -0.022759417071938515, - 0.0037462578620761633, - 0.0029235887341201305, - -0.014775266870856285, - 0.008115253411233425, - -0.007354857865720987, - -0.003834752133116126, - 0.04724939167499542, - -0.006306036841124296, - 0.012907054275274277, - -0.025394581258296967, - -0.009898249059915543, - 0.013084042817354202, - 0.04203150421380997, - 0.006719009950757027, - -0.004785246215760708, - 0.022300558164715767, - -0.00451648561283946, - -0.012539966963231564, - -0.0006522355834022164, - -0.04698718339204788, - -0.009157518856227398, - -0.032303690910339355, - -0.003628265345469117, - -0.006289648823440075, - 0.027295568957924843, - -0.013018491677939892, - 0.01730554737150669, - 0.005932394415140152, - -0.007328637409955263, - -0.02269386686384678, - -0.008810097351670265, - 0.003529938403517008, - 0.008416789583861828, - -0.01515546441078186, - -0.0011643553152680397, - 0.04638411104679108, - 0.008233245462179184, - 0.006050386466085911, - 0.02525036782026291, - -4.030381751363166e-05, - 0.007118873298168182, - -0.014145974069833755, - 0.0036380982492119074, - 0.010134234093129635, - 0.006948439870029688, - 0.028082184493541718, - -0.027112025767564774, - -0.002010786673054099, - 0.02039957046508789, - -0.01744976080954075, - 0.030599355697631836, - -0.004136288072913885, - 0.02690226025879383, - 0.03474219888448715, - 0.010160454548895359, - -0.028685256838798523, - 0.005247382912784815, - -0.01439506933093071, - -0.009354173205792904, - 0.029445651918649673, - -0.015902750194072723, - -0.018183935433626175, - 0.01065208949148655, - -0.008456120267510414, - -0.030101165175437927, - -0.009046081453561783, - 0.01937696896493435, - -0.01370022539049387, - 0.026876039803028107, - -0.006017610896378756, - 0.0013601898681372404, - -0.025040604174137115, - -0.02224811725318432, - -0.023060953244566917, - -0.00961637869477272, - -0.03322140872478485, - -0.017017122358083725, - -0.001999315107241273, - -0.01578475721180439, - 0.02036023885011673, - -0.020596224814653397, - -0.0009431195794604719, - 0.02417532540857792, - -0.0173973198980093, - -0.022366110235452652, - 0.005260493140667677, - 0.013464240357279778, - 0.005811124108731747, - 0.01762019470334053, - -0.0005129390629008412, - 0.0035659917630255222, - -0.004958956968039274, - -0.0074859606102108955, - -0.028187066316604614, - -0.005113002844154835, - -0.013674004934728146, - -0.0013323305174708366, - 0.0025335585232824087, - -0.024922611191868782, - -0.01869523525238037, - -0.01031122263520956, - 0.026246747002005577, - -0.028580375015735626, - -0.012848058715462685, - 0.0037462578620761633, - 0.015942079946398735, - -0.005640690680593252, - -0.01667625457048416, - 0.016217395663261414, - 0.003615155117586255, - 0.032801877707242966, - -0.031910382211208344, - 0.024634184315800667, - -0.0022942961659282446, - 0.01031122263520956, - -0.01663692481815815, - 0.019966932013630867, - -0.002579444320872426, - -0.021684376522898674, - -0.011117503046989441, - -0.007971039973199368, - -0.008049702271819115, - 0.0255650132894516, - -0.007007435895502567, - 0.020661775022745132, - -0.007905488833785057, - 0.0026105812285095453, - 0.0093082869425416, - 0.007741610519587994, - -0.004899960942566395, - 0.026443401351571083, - -0.015168574638664722, - -0.004575482103973627, - -0.02842305228114128, - 0.04370961710810661, - -0.0035987673327326775, - 0.008908424526453018, - 0.014159084297716618, - -0.004962234757840633, - 0.03201526403427124, - -0.02905234321951866, - 0.0003246838750783354, - -0.0029924176633358, - 0.025997651740908623, - 0.03044203110039234, - 0.009911359287798405, - -0.013739556074142456, - -0.016269836574792862, - 0.016663145273923874, - 0.009360727854073048, - -0.036656297743320465, - -0.006771451327949762, - -0.0255650132894516, - -0.008737990632653236, - 0.010953625664114952, - 0.006171656772494316, - 0.006863222923129797, - -0.026508953422307968, - -0.01722688600420952, - 0.01852480322122574, - 0.005906173959374428, - 0.017384208738803864, - -0.03358849510550499, - -0.029445651918649673, - -0.007256530690938234, - 0.009524606168270111, - -0.0332738496363163, - -0.02918344736099243, - 0.015063692815601826, - -0.0262729674577713, - 0.02452930249273777, - 0.013752666302025318, - 0.003795421216636896, - -0.0009644237579777837, - 0.026220526546239853, - 0.015286567620933056, - -0.005371930543333292, - -0.00988513883203268, - 0.0024434253573417664, - -0.010042461566627026, - -0.03670873865485191, - 0.031097544357180595, - 0.008888758718967438, - 0.016466490924358368, - -0.0004871282435487956, - 0.002994056325405836, - 0.011117503046989441, - 0.027872420847415924, - -0.03927835077047348, - -0.023375600576400757, - -0.03736425191164017, - -0.019403189420700073, - -0.005601359996944666, - 0.014473730698227882, - 0.005506310611963272, - 0.008515115827322006, - -0.0162829477339983, - 0.0036872616037726402, - 0.007053321693092585, - -0.006089717615395784, - 0.005689854267984629, - -0.006745230406522751, - 0.013608453795313835, - -0.02237921953201294, - 0.03274943679571152, - 0.011366598308086395, - 0.005630858242511749, - -0.00023762352066114545, - -0.006843557581305504, - -0.030520694330334663, - -0.041140008717775345, - 0.0056701889261603355, - -0.010711085051298141, - -0.0015789673198014498, - -0.0010734028182923794, - -0.0054505919106304646, - -0.01654515229165554, - -0.0048704626969993114, - 0.024201545864343643, - -0.03232990950345993, - 0.0037069269455969334, - -0.005742295645177364, - -0.0011676328722387552, - 0.0022746308241039515, - 0.00017729583487380296, - -0.03214636445045471, - 0.007898934185504913, - -0.012336757965385914, - -0.014447510242462158, - 0.04234614968299866, - -0.022890519350767136, - 0.021500831469893456, - 0.02215634472668171, - 0.007177869323641062, - 0.0262729674577713, - -0.0024221211206167936, - 0.04850797355175018, - 0.0009668819257058203, - -0.03820330649614334, - -0.014368848875164986, - -0.039881423115730286, - 0.006702622398734093, - -0.011714020743966103, - 0.005355542525649071, - -0.00584062235429883, - -0.013556012883782387, - -0.026220526546239853, - 0.007328637409955263, - 0.012657959014177322, - -0.009504941292107105, - -0.009367283433675766, - 0.03998630493879318, - 0.037783779203891754, - 0.018983662128448486, - -0.00743351923301816, - -0.019206536933779716, - -0.01843303069472313, - 0.0001410377590218559, - 0.007059876807034016, - 0.01578475721180439, - 0.002371318871155381, - 0.000948855304159224, - -0.018170826137065887, - 0.03366715833544731, - 0.008115253411233425, - 0.024280207231640816, - -0.0008718325407244265, - -0.003092383500188589, - -0.008239801041781902, - -0.005935671739280224, - 0.00919029489159584, - 0.02421465702354908, - 0.01042921468615532, - 0.026036983355879784, - 0.02973407693207264, - -0.007957929745316505, - 0.012225320562720299, - -0.02161882445216179, - 0.0026761326007544994, - -0.0007980872760526836, - -0.0008505283622071147, - 0.02049134112894535, - -0.01266451459378004, - -0.013077488169074059, - -0.0035233832895755768, - 0.011510811746120453, - 0.017200665548443794, - 0.0071319835260510445, - -0.0026105812285095453, - 0.001677294378168881, - 0.012500636279582977, - -0.009314842522144318, - 0.009000196121633053, - 0.010016241110861301, - -0.0073810783214867115, - -0.023847568780183792, - -0.008639663457870483, - -0.007584287319332361, - -0.019481850787997246, - -0.00416906364262104, - 0.007662949152290821, - -0.01573231630027294, - -0.0008595416438765824, - 0.011995891109108925, - -0.005601359996944666, - 0.029943842440843582, - -0.013582233339548111, - -0.011025731451809406, - -0.01680735871195793, - 0.03295920416712761, - -0.0395667739212513, - 0.015614324249327183, - 0.04502064362168312, - 0.008154584094882011, - -0.002512254286557436, - 0.022431660443544388, - -0.004142843186855316, - -0.014932590536773205, - 0.010756971314549446, - -0.014145974069833755, - -0.035397712141275406, - 0.012408864684402943, - -0.024070443585515022, - -0.009970355778932571, - -0.022890519350767136, - -0.007289306726306677, - 0.007853047922253609, - -0.007859602570533752, - 0.02071421593427658, - -0.027243128046393394, - -0.0061159380711615086, - 0.011287936940789223, - 0.006637070793658495, - 0.0004977803328074515, - 0.049268368631601334, - -0.025617454200983047, - 0.00937383808195591, - 0.0024762009270489216, - 0.0012520301388576627, - -0.018891889601945877, - 0.009583602659404278, - -0.03563369810581207, - -0.02332315966486931, - 0.019272087141871452, - -0.0021418894175440073, - -0.01632227748632431, - 0.01978338696062565, - -0.026089424267411232, - -0.023257607594132423, - 0.011176499538123608, - -0.004998288117349148, - 0.0013552735326811671, - 0.012979160994291306, - 0.015889639034867287, - 0.010907739400863647, - 0.007662949152290821, - 0.001837075687944889, - -0.010979846119880676, - -0.013542902655899525, - -0.010402994230389595, - -0.02636473998427391, - 0.010212895460426807, - -0.006299481727182865, - 0.03361471742391586, - 0.02112063392996788, - -0.01936385966837406, - -0.0057619609870016575, - -0.0005264590145088732, - -0.04832443222403526, - -0.027767539024353027, - 0.005312934517860413, - -0.004775413312017918, - -0.014041092246770859, - -0.008154584094882011, - 0.0016142012318596244, - 0.022051462903618813, - -0.00179118977393955, - 0.03390314057469368, - -0.005912729073315859, - -0.002182858996093273, - -0.003982242662459612, - -0.009839252568781376, - 0.033824481070041656, - 0.013556012883782387, - -0.02734800986945629, - -0.009249291382730007, - 0.021146854385733604, - -0.01363467425107956, - 0.0003181287320330739, - 0.021277958527207375, - -0.00941316969692707, - 0.00798415020108223, - -0.004231337457895279, - 0.008914979174733162, - 0.02036023885011673, - 0.003841307247057557, - 0.01606007292866707, - -0.02291673980653286, - -0.00327264959923923, - 0.01695157028734684, - -0.00822669081389904, - -0.027557773515582085, - 0.0057783485390245914, - 0.004657421261072159, - 0.0005227717338129878, - 0.012920164503157139, - 0.020635554566979408, - -0.03012738563120365, - -0.013221700675785542, - -0.02098953165113926, - 0.014342628419399261, - 0.004772135987877846, - 0.0008226690115407109, - 0.010704530403017998, - -0.0006891082157380879, - -0.01762019470334053, - -0.016886020079255104, - 0.0002826900454238057, - -0.00953116174787283, - 0.019521182402968407, - 0.01452617160975933, - -0.01767263561487198, - 0.037600234150886536, - -0.022929850965738297, - 0.01704334281384945, - -0.007590842433273792, - 0.024634184315800667, - -0.006778006441891193, - -0.0031726837623864412, - -0.00022492295829579234, - 0.007649838924407959, - 0.009452500380575657, - 0.024070443585515022, - -0.0021402505226433277, - -0.022706976160407066, - -0.014408179558813572, - -0.0012045054463669658, - -0.008659329265356064, - -0.003053052583709359, - -0.010573427192866802, - -0.016387829557061195, - 0.00014114017540123314, - -0.019901379942893982, - -0.0050802272744476795, - 0.007197534665465355, - -0.0011618970893323421, - -0.024450641125440598, - 0.015981411561369896, - 0.17169201374053955, - -0.0013569123111665249, - 0.0045197634026408195, - 0.015365228988230228, - -0.006427306681871414, - -0.008016926236450672, - 0.02471284754574299, - -0.010625869035720825, - -0.01834125816822052, - 0.023034732788801193, - -0.007597397547215223, - 0.007236865349113941, - -0.003933079075068235, - -0.0015986327780410647, - 0.0077285002917051315, - -0.023034732788801193, - -0.04043205454945564, - 0.009924469515681267, - 0.00937383808195591, - 0.026758048683404922, - 0.022261228412389755, - -0.0309926625341177, - 0.006745230406522751, - -0.018315037712454796, - 0.02973407693207264, - 0.0014806403778493404, - 0.00038654793752357364, - 0.005067117046564817, - 0.008469230495393276, - 0.005253938026726246, - 0.0024614520370960236, - -0.012061442248523235, - 0.002440147800371051, - -0.00959671288728714, - 0.017292438074946404, - 0.00458531454205513, - 0.012480970472097397, - -0.007256530690938234, - 0.01307093258947134, - 0.016571372747421265, - 0.007518736179918051, - 6.575616862392053e-05, - -0.00204683979973197, - -0.0046344781294465065, - -0.025407690554857254, - 0.017856178805232048, - -0.011877899058163166, - 0.013582233339548111, - -0.0010471822461113334, - -0.006292926613241434, - -0.005375207867473364, - 0.008600332774221897, - -0.00036790675949305296, - 0.02928832918405533, - -0.008783876895904541, - 0.02165815606713295, - 0.019127873703837395, - -0.024542413651943207, - 0.00765639403834939, - 0.006483025383204222, - -0.0309926625341177, - 0.036341652274131775, - -0.008436454460024834, - 0.0186165738850832, - -0.008646219037473202, - -0.0038511399179697037, - -0.021867919713258743, - 0.019350748509168625, - -0.00438210554420948, - 0.0003015360562130809, - -0.023572253063321114, - -0.023349380120635033, - -0.014185304753482342, - 0.03586968034505844, - -0.02184169925749302, - -0.026849819347262383, - 0.007118873298168182, - -0.01010801363736391, - 0.025525683537125587, - 0.006705899722874165, - -0.021579494699835777, - -0.001002935110591352, - -0.010842188261449337, - -0.018734566867351532, - 0.018367478623986244, - -0.044234029948711395, - 0.03259211406111717, - 0.005060561932623386, - -0.019573623314499855, - -0.019940711557865143, - 0.002871147822588682, - 0.00883631780743599, - -0.00021222239593043923, - -0.02941943146288395, - 0.016164954751729965, - 0.01819704659283161, - 0.0032464289106428623, - 0.025237256661057472, - -0.008652773685753345, - 0.0024073722306638956, - -0.00023762352066114545, - 0.05826201289892197, - 0.019481850787997246, - -0.012612073682248592, - -0.016479602083563805, - 0.019888270646333694, - -0.009229625575244427, - 0.022169455885887146, - 0.003549603745341301, - -0.013726445846259594, - -0.010370218195021152, - -0.01704334281384945, - -0.005942226853221655, - -0.022221896797418594, - 0.014473730698227882, - 0.015522551722824574, - 0.00611921539530158, - -0.014919480308890343, - -0.0004691016220021993, - -0.006994325667619705, - -0.011943450197577477, - 0.01452617160975933, - 0.010901183821260929, - 0.0063912533223629, - 0.003506995504721999, - -0.029707856476306915, - -0.045177970081567764, - 0.0061323256231844425, - 0.0004564010596368462, - -0.020910870283842087, - 0.03594834357500076, - -0.032487232238054276, - -0.005522698629647493, - 0.007072987034916878, - 0.004972067661583424, - 0.035843461751937866, - 0.011425594799220562, - -0.044234029948711395, - 0.0015674958704039454, - 0.012369534000754356, - 0.0026826877146959305, - -0.03193660080432892, - -0.0011889369925484061, - -0.013352803885936737, - 0.003474219935014844, - 0.0023959006648510695, - -0.0023762353230267763, - -0.009144408628344536, - -0.01776440627872944, - -0.008036591112613678, - -0.0008292241836898029, - -0.007184424437582493, - -0.01439506933093071, - -0.0009234541794285178, - 0.007367968093603849, - -0.0037429803051054478, - -0.026377851143479347, - -0.01824948750436306, - 0.014027982018887997, - 0.014421289786696434, - -0.003182516433298588, - -0.0003334923239890486, - -0.009157518856227398, - -0.01806594245135784, - -0.009498385712504387, - 0.0023270717356354, - -0.16445514559745789, - 0.012408864684402943, - 0.02829194813966751, - -0.040563154965639114, - 0.021330399438738823, - -0.015548772178590298, - -0.010134234093129635, - -0.009767146781086922, - -0.02564367465674877, - 0.012841503135859966, - 0.033693376928567886, - 0.0034709423780441284, - -0.02188102900981903, - -0.04436513036489487, - -0.006476470269262791, - 0.01335935853421688, - 0.0021402505226433277, - 0.04203150421380997, - 0.014198414981365204, - 0.0021992467809468508, - -0.012336757965385914, - -0.022405439987778664, - 0.00493273651227355, - -0.014250856824219227, - 0.008941199630498886, - -0.002171387430280447, - -0.009295176714658737, - 0.020556893199682236, - -0.004493542946875095, - -0.0189181100577116, - 0.0028367333579808474, - -0.0022172732278704643, - 0.03075667843222618, - -0.004713139962404966, - 0.003074356820434332, - -0.025997651740908623, - 0.011910674162209034, - -0.0139231001958251, - -0.009472165256738663, - 0.0331689678132534, - 0.026469621807336807, - -0.00021611449483316392, - -0.015810977667570114, - 0.008416789583861828, - -0.0426083579659462, - -0.005014675669372082, - 0.00139050732832402, - 0.018485471606254578, - -0.003402113448828459, - 0.0019337638514116406, - 0.0018206879030913115, - -0.007190979551523924, - -0.0063453675247728825, - 0.014670385047793388, - 0.02174992673099041, - 0.017331767827272415, - -0.000284123991150409, - 0.024607963860034943, - -0.0007259808480739594, - 0.006941884756088257, - 0.005971725098788738, - -0.01565365493297577, - 0.010304667055606842, - 0.01865590550005436, - -0.01914098486304283, - -0.026508953422307968, - 0.0135166822001338, - 0.0037986987736076117, - -0.02376890741288662, - 0.01515546441078186, - -0.021867919713258743, - -0.034060463309288025, - 0.016518931835889816, - -0.002692520385608077, - 0.010167009197175503, - -0.0023024899419397116, - -0.02022913657128811, - -0.0016428799135610461, - -0.015076803043484688, - -0.009314842522144318, - -0.021959692239761353, - 0.04399804398417473, - -0.02708580531179905, - -0.018813228234648705, - -0.016204286366701126, - 0.008285686373710632, - 0.006574796978384256, - 0.00185837980825454, - 0.009904803708195686, - 0.003259539371356368, - 0.026430292055010796, - -0.03972410038113594, - -0.032932981848716736, - -0.02152705192565918, - -0.0009873667731881142, - -0.013647784478962421, - 0.026128755882382393, - -0.004958956968039274, - 0.0012708761496469378, - -0.018760787323117256, - 0.006515800952911377, - 0.009242735803127289, - -0.02480461820960045, - 0.00743351923301816, - 0.010062127374112606, - 0.01798728108406067, - -0.0010119484504684806, - -0.0019550679717212915, - 0.045807261019945145, - -0.0031628510914742947, - -0.022680755704641342, - -0.0033824481070041656, - 0.010684864595532417, - 0.016715586185455322, - -0.013103708624839783, - -0.0026105812285095453, - 0.016164954751729965, - -0.01900988258421421, - 0.0019059046171605587, - -0.017239997163414955, - 0.019534293562173843, - 0.010776636190712452, - -0.02941943146288395, - 0.003923246171325445, - 0.009970355778932571, - -0.019980041310191154, - -0.09790744632482529, - 0.0036643187049776316, - 0.012592407874763012, - 0.02582721970975399, - 0.01573231630027294, - -0.0035168281756341457, - 0.002692520385608077, - 0.003762645646929741, - -0.0014732658164575696, - 0.007263085804879665, - -0.025237256661057472, - -0.02345426194369793, - 0.0033824481070041656, - -0.012421974912285805, - 0.02156638354063034, - -0.018013501539826393, - -0.011222385801374912, - 0.010566872544586658, - -0.016886020079255104, - 0.022798748686909676, - 0.0009783534333109856, - -0.02102886326611042, - -0.00260730367153883, - -0.01767263561487198, - -0.006994325667619705, - 0.019206536933779716, - -0.016558263450860977, - 0.0077153900638222694, - 0.016309168189764023, - -0.006505968514829874, - 0.0048540751449763775, - -0.009636043570935726, - 0.030599355697631836, - -0.028370609506964684, - 0.030284708365797997, - 0.007190979551523924, - -0.010933959856629372, - -0.015548772178590298, - -0.0058897859416902065, - -0.014919480308890343, - -0.019494961947202682, - -0.00723031023517251, - 0.03801976516842842, - -0.04043205454945564, - -0.0023074063938111067, - -0.01834125816822052, - -0.005952059756964445, - 0.0034316114615648985, - 0.0057783485390245914, - -0.021500831469893456, - -0.04363095760345459, - -0.019298307597637177, - -0.0040674591436982155, - -0.0010062127839773893, - 0.03303786367177963, - 0.0017993836663663387, - 0.006066774483770132, - -0.011504256166517735, - 0.0017158057307824492, - -0.00037343765143305063, - -0.012494081631302834, - 0.01439506933093071, - -0.04604324698448181, - 0.038491733372211456, - 0.0022566041443496943, - -0.00988513883203268, - -0.03377204015851021, - -0.005830789916217327, - -0.0048475200310349464, - -0.01573231630027294, - -0.010049017146229744, - 0.00016981888620648533, - 0.005296546500176191, - 0.01486703846603632, - -0.01637471839785576, - 0.007597397547215223, - -0.04058937728404999, - -0.021513942629098892, - 0.0036184326745569706, - -0.02125173807144165, - -0.0139231001958251, - -0.0331689678132534, - 0.03610566630959511, - -0.014971921220421791, - 0.021146854385733604, - 0.007964485324919224, - -0.005886508151888847, - -0.013844437897205353, - 0.015457000583410263, - -0.018170826137065887, - 0.005378485657274723, - -0.01000313088297844, - 0.017108893021941185, - -0.037783779203891754, - 0.014263967052102089, - -0.003913413733243942, - 0.004700029268860817, - -0.010265336371958256, - 0.002063227817416191, - 0.0046344781294465065, - -0.019022991880774498, - 0.007525291293859482, - -0.03694472089409828, - 0.016610704362392426, - 0.00281870667822659, - 0.0022566041443496943, - -0.023349380120635033, - 0.018170826137065887, - 0.02299540303647518, - 0.012349868193268776, - 0.005017953459173441, - -0.015352118760347366, - -0.010671754367649555, - 0.005273603368550539, - 0.01417219452559948, - -0.006732120178639889, - -0.005198219325393438, - -0.004500098060816526, - 0.00806936714798212, - 0.014513061381876469, - 0.00966226402670145, - -0.0013577316422015429, - -0.014657274819910526, - 0.008796987123787403, - 0.00025667439331300557, - -0.0026040261145681143, - -0.041454654186964035, - -0.014775266870856285, - -0.01735798828303814, - -0.012349868193268776, - -0.011648469604551792, - -0.010901183821260929, - 0.0040674591436982155, - -0.006250318139791489, - -0.028554154559969902, - 0.012507191859185696, - -0.0017207220662385225, - -0.003965854644775391, - 0.009321397170424461, - 0.033745817840099335, - -0.013084042817354202, - 0.0727357417345047, - -0.026784269139170647, - -0.03594834357500076, - 0.004722972400486469, - -0.03277565911412239, - -0.006915663834661245, - -0.0030432199127972126, - -0.013569123111665249, - -0.004536151420325041, - 0.015273457393050194, - -0.019848939031362534, - 0.03888504207134247, - 0.023742686957120895, - 0.009976910427212715, - 0.00281870667822659, - 0.015194795094430447, - -0.036656297743320465, - 0.00710576307028532, - 0.015928970649838448, - -0.011812347918748856, - -0.028527934104204178, - 0.03767889738082886, - -0.00528015848249197, - 0.010488211177289486, - 0.00791859906166792, - 0.010809412226080894, - -0.025932101532816887, - -0.016938460990786552, - 0.004873740486800671, - 0.014250856824219227, - -0.031359750777482986, - -0.012166325002908707, - -0.020910870283842087, - 0.015207905322313309, - 0.012002446688711643, - -0.0077219451777637005, - 0.019888270646333694, - 0.028134625405073166, - -0.01461794413626194, - 0.002620413899421692, - 0.023519812151789665, - 0.0006800949340686202, - 0.018734566867351532, - -0.028947461396455765, - -0.0049753449857234955, - 0.021985912695527077, - 0.014119753614068031, - -0.018105274066329002, - 0.0036708738189190626, - 0.012258096598088741, - 0.004490265157073736, - 0.0015601213090121746, - 0.022798748686909676, - 0.009419724345207214, - 0.0018026612233370543, - 0.013385578989982605, - 0.00521460734307766, - -0.002397539559751749, - -0.003035025903955102, - 0.014696605503559113, - 0.03309030458331108, - -0.010396438650786877, - 0.004254280589520931, - 0.02256276272237301, - -0.01986205019056797, - -0.006512523628771305, - 0.003213653340935707, - 0.012277761474251747, - -0.047511596232652664, - -0.011307602748274803, - 0.037416692823171616, - -0.04507308453321457, - 0.04106134548783302, - 0.008502005599439144, - -0.013247921131551266, - 0.0024843949358910322, - 0.041638195514678955, - -0.012769396416842937, - 0.0008103781729005277, - -0.01839369907975197, - 0.009747480973601341, - 0.04158575460314751, - 0.016348497942090034, - -0.0009931024396792054, - -0.0015806060982868075, - 0.01398865133523941, - 0.020963311195373535, - -0.0055587515234947205, - -0.01704334281384945, - 0.007695724721997976, - -0.0003662679810076952, - 0.013424909673631191, - -0.012271206825971603, - -0.018642794340848923, - -0.008515115827322006, - -0.012775951996445656, - -0.029838960617780685, - 0.012749731540679932, - 0.022366110235452652, - 0.0017616916447877884, - 0.08762900531291962, - 0.02802974358201027, - -0.003634820459410548, - -0.008318462409079075, - -0.013352803885936737, - 0.016073182225227356, - -0.013857548125088215, - 0.016964681446552277, - -0.007426964119076729, - -0.027112025767564774, - 0.007289306726306677, - -0.01730554737150669, - 0.01170091051608324, - -0.01806594245135784, - -0.008174248971045017, - 0.03151707351207733, - -0.020596224814653397, - 0.02564367465674877, - -0.008731435984373093, - 0.025984542444348335, - 0.03841307386755943, - -0.013726445846259594, - 0.01695157028734684, - 0.020412679761648178, - -0.03497818484902382, - -0.032093923538923264, - 0.007197534665465355, - -0.017462871968746185, - 0.00024151563411578536, - 0.0197309460490942, - -0.000721474178135395, - 0.008311906829476357, - -0.06465981900691986, - -0.015286567620933056, - 0.021002642810344696, - -0.0054145390167832375, - -0.0026761326007544994, - -0.01163535937666893, - 0.022431660443544388, - 0.004552538972347975, - 0.01784306950867176, - 0.023506702855229378, - -0.021291067823767662, - -0.05228373035788536, - -0.010101458057761192, - 0.007118873298168182, - -0.008724880404770374, - -0.015457000583410263, - -0.017331767827272415 - ], - "sparse": "SparseEmbedding(values=array([0.99840454, 1.37349104, 0.99840454, 0.99840454, 1.37349104,\n 1.37349104, 1.37349104, 1.37349104, 0.99840454, 1.37349104,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 1.37349104, 0.99840454, 0.99840454,\n 0.99840454, 1.77318809, 0.99840454, 0.99840454, 1.69116433,\n 1.5701143 , 1.5701143 , 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 1.37349104, 0.99840454, 1.37349104, 1.94050764,\n 1.5701143 , 1.37349104, 1.69116433, 0.99840454, 0.99840454,\n 1.37349104, 0.99840454, 0.99840454, 0.99840454, 1.5701143 ,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 1.37349104,\n 0.99840454, 0.99840454, 0.99840454, 1.94050764, 1.69116433,\n 0.99840454, 1.5701143 , 1.5701143 , 1.5701143 , 1.5701143 ,\n 1.5701143 , 1.5701143 , 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 1.37349104, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 1.37349104, 1.37349104,\n 1.83243859, 0.99840454, 0.99840454, 1.69116433, 0.99840454,\n 1.69116433, 1.77318809, 0.99840454, 1.37349104, 0.99840454,\n 0.99840454, 0.99840454, 1.37349104, 0.99840454, 1.5701143 ,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 1.37349104, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 1.37349104, 1.37349104, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454, 0.99840454, 0.99840454, 0.99840454, 0.99840454,\n 0.99840454]), indices=array([ 19522071, 264741300, 636228984, 820459760, 160566303,\n 1515684580, 1362353402, 1553747220, 1894123915, 559860000,\n 1217513728, 1260730820, 702141502, 1147900472, 710072597,\n 109717416, 220308237, 1239234285, 1066874362, 842253245,\n 935488190, 164058840, 991481944, 103244797, 76479261,\n 1638510030, 651773314, 1901451724, 1821780382, 610066473,\n 2005570902, 2067298431, 1290853380, 2124172637, 1109731834,\n 46081745, 151305406, 2103309648, 739092865, 231980230,\n 283813747, 480608862, 1083183277, 950796608, 963966427,\n 1443927810, 1723824186, 1512646464, 1092081572, 717918380,\n 635945632, 651597168, 108945121, 408270109, 154621355,\n 1757934436, 1533237356, 1669595920, 517681357, 843816345,\n 433708589, 423733604, 749129358, 728008763, 1734550606,\n 1416371393, 247251680, 554043107, 1905284006, 1191760060,\n 28500618, 428160610, 1219901924, 2053391496, 1793743868,\n 1047604504, 1268281619, 1055508231, 1079921207, 421982145,\n 2101753038, 1174634009, 1667662795, 565373295, 1286817522,\n 33082486, 1255579020, 1309839251, 1329923153, 99212807,\n 757976339, 1961637446, 1479471187, 831045853, 1501966315,\n 708121422, 147047731, 1207954406, 390397623, 770067253,\n 791735855, 2007604704, 2085120229, 1017682383, 1687368697,\n 229117294, 1952376732, 1610176724, 810405031, 538856249,\n 1826475415, 288125403, 1234674187, 568806564, 1731034116,\n 1336321298, 828667247, 1620799, 1311729835, 1967079466,\n 557496125, 1033482951, 340791831, 653208012, 908565338,\n 593807351, 1654103847, 861444001, 560980618, 1989666668,\n 872719015, 290749275, 1640881764, 1354425271, 80898441,\n 790392703, 1649854653, 1265401351, 255174557, 1431539222,\n 1602169477, 1975311753, 1427900950, 197670987, 544882233,\n 1304076062, 562659716, 999597208, 1880984647, 1580918544,\n 386834064, 992943682, 1779724648, 812080723, 367467701,\n 2085165576, 829191440, 761563882, 915344176, 1115513404,\n 1219188223, 1309989030, 354145317, 1282568013, 1427136389,\n 1035540178, 1039553008, 1503276994, 1505931685, 2046399687,\n 357609272]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 50, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 264 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000051.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000051.json deleted file mode 100644 index a2cce21761ad7bf34a306c96672ec65ce6d0835f..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000051.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000051", - "content": "2.4 Mobilit\u00e4tsver\u00e4nderung Mobilit\u00e4t kann als das \u201eBed\u00fcrfnis nach Beweglichkeit und dem Potential zur Fortbewegung\u201c definiert werden (Bott et al. 2018, S. 114). Durch das Bed\u00fcrfnis nach einer Ortsver\u00e4nderung von Personen oder G\u00fctern entsteht Verkehr. Je nach Art des eigenen Mobilit\u00e4tsbed\u00fcrfnisses und dem Zweck der Ortsver\u00e4nderung unterscheidet sich die Wahl des Verkehrsmittels. Die prozentuale Verteilung des Verkehrsaufkommens auf unterschiedliche Verkehrsmittel wird als Modal Split bezeichnet (vgl. Bott et al. 2018, S. 117). In den letzten Jahrzenten stand der motorisierte Individualverkehr h\u00e4ufig im Vordergrund der Stadtplanung. Als Folge entstanden monofunktionale Stra\u00dfenr\u00e4ume mit einer klaren Trennung der einzelnen Verkehrsteilnehmer (vgl. Kampusch 2018, S. 14). Stra\u00dfenfl\u00e4chen verbrauchen eine gro\u00dfe Menge der Ressource Boden, obwohl der angebotene Platz h\u00e4ufig nur in kurzen Zeitintervallen komplett ausgelastet ist (vgl. Bott et al. 2018, S. 115). Hier besteht Handlungsbedarf, um die Gr\u00f6\u00dfe des Stra\u00dfenraums g\u00e4nzlich und effizient zu nutzen und nicht nur auf die Funktion der Ortsverbindung zu beschr\u00e4nken (vgl. Kampusch 2018, S. 14). Der aktuelle Ergebnisbericht Mobilit\u00e4t in Deutschland zeigt auf, dass der PKW noch immer eine dominante Rolle bei der allt\u00e4glichen Verkehrsmittelwahl der Bev\u00f6lkerung darstellt. Trotz einer Ausweitung des Alternativangebots ist kein R\u00fcckgang in der MIV- Nutzung zu verzeichnen (vgl. infas Institut f\u00fcr angewandte Sozialwissenschaft GmbH 2018, S. 45). In dem ganzheitlichen Konzept einer nachhaltigen Stadtentwicklung spielt der Bereich Verkehr und Mobilit\u00e4t somit eine entscheidende Rolle. Diesen nachhaltig zu gestalten, er\u00f6ffnet einige Handlungsfelder und Herausforderungen, wie beispielsweise die Vermeidung verkehrsbedingter Emissionen, die Reduktion des Fl\u00e4chenverbrauchs, die 12 Theorieteil Steigerung der Sicherheit im Stra\u00dfenraum und die Befriedigung der individuellen Mobilit\u00e4tsbed\u00fcrfnisse (vgl. Bott et al. 2018, S. 114). Ziel muss es sein, den Anteil des MIV zu senken und ein hohes Ma\u00df an Integration und Vernetzung verschiedener alternativer Mobilit\u00e4tsformen zu schaffen (vgl. Bott et al. 2018, S. 117). Nur durch eine Schaffung von Alternativen zum MIV kann die Bereitschaft der Bev\u00f6lkerung, auf den eigenen PKW zu verzichten und auf nachhaltige Mobilit\u00e4tsformen auszuweichen, weiter gesteigert und auf lange Sicht eine 80/20 Verteilung im Modal Split erreicht werden. Diese Verteilung bedeutet, dass 80 % der Verkehrsteilnehmer ein nicht motorisiertes Verkehrsmittel und 20 % ein motorisiertes Verkehrsmittel w\u00e4hlen (vgl. Bott et al. 2018, S. 231). Neben der Ausweitung des Mobilit\u00e4tsangebots kann auch die Stadtplanung den Trend einer autoarmen Stadt unterst\u00fctzen. Die \u201eStadt der kurzen Wege\u201c oder die kompakte Stadt sind beispielweise Planungsans\u00e4tze, die Wohnen und Arbeiten vereinen und so den Pendelverkehr reduzieren. Dies setzt aber wiederum ein fl\u00e4chendeckendes \u00d6PNV- und Sharingangebot, eine Nachverdichtung im urbanen Raum, die M\u00f6glichkeit zur Deckung des t\u00e4glichen Grundbedarfs in einem kleinen Radius und eine funktionierende soziale Infrastruktur, in Form lokaler Bildungs- und Freizeitangebote, voraus. (vgl. Bott et al. 2018, S. 117) Eine Senkung des MIV-Anteils im Modal Split bedeutet nicht nur, dass die Menge des flie\u00dfenden Verkehrs abnimmt, sondern auch, dass der Bedarf nach Parkraum sinkt. Sinkt der Parkraumbedarf, werden Fl\u00e4chen frei, die anderweitig genutzt werden k\u00f6nnen. Dieses Fl\u00e4chenpotential wird im Rahmen dieser Arbeit modellhaft bestimmt und zur Pflanzung von Stra\u00dfenb\u00e4umen genutzt (vgl. Kapitel 5.3).", - "embedding": { - "dense": [ - 0.021148812025785446, - -0.005200474988669157, - 0.02339731901884079, - -0.011576597578823566, - -0.015713850036263466, - 0.021829789504408836, - -0.040216147899627686, - -0.003832097863778472, - -0.010638649575412273, - -0.024874908849596977, - 0.00905827060341835, - 0.01866902969777584, - -0.0036008229944854975, - 0.008184564299881458, - -0.006414668634533882, - 0.00901972409337759, - 0.04342830181121826, - 0.003995917737483978, - 0.028035666793584824, - -0.012019874528050423, - -0.0009548123343847692, - 0.01445468608289957, - 0.0277016032487154, - -0.0185148473829031, - -0.0033920330461114645, - 0.020943233743309975, - 0.020056679844856262, - -0.017846720293164253, - 0.002176233334466815, - -0.0072080702520906925, - 0.02591564692556858, - 0.0022774161770939827, - -0.012161209248006344, - -0.0006287788855843246, - -0.004609439056366682, - -0.00752286147326231, - 0.0060709682293236256, - -0.015970822423696518, - 0.016844527795910835, - -0.02236942946910858, - 0.0039284625090658665, - -0.0037453698460012674, - -0.0021135963033884764, - -0.009752094745635986, - -0.007394375279545784, - 0.010523011907935143, - -0.0030129991937428713, - 0.007092432584613562, - -0.029551804065704346, - 0.018977398052811623, - 0.01864333264529705, - 0.025196123868227005, - -0.007420072332024574, - 0.0006669231806881726, - -0.01315697655081749, - -0.008377294056117535, - -0.010741437785327435, - 0.01937570422887802, - -0.012649456970393658, - -0.013863650150597095, - -0.018077993765473366, - 0.008287353441119194, - -0.021598514169454575, - 0.012938550673425198, - -0.03237849846482277, - -0.02261355333030224, - -0.01089562103152275, - -0.002707844600081444, - -0.0008648720686323941, - 0.0026387833058834076, - 0.024373812600970268, - 0.03502530977129936, - 0.029166344553232193, - -0.010966288857161999, - 0.03237849846482277, - 0.0009893429232761264, - 0.00963645800948143, - 0.000638816854916513, - -0.029680289328098297, - 0.012296119704842567, - 0.01567530445754528, - -0.0181165412068367, - -0.012103390879929066, - 0.053398825228214264, - 0.011480232700705528, - 0.009822762571275234, - 0.014724506996572018, - 0.026031283661723137, - 0.009013299830257893, - 0.01861763559281826, - -0.005685510113835335, - 0.012456727214157581, - -0.005515265744179487, - 0.014339049346745014, - 0.013311159797012806, - 0.004859986715018749, - -0.00747789116576314, - 0.014236260205507278, - 0.008480082266032696, - 0.004384587984532118, - -0.013683769851922989, - 0.01026603952050209, - -0.024874908849596977, - -0.003279607743024826, - -0.0301942341029644, - -0.005055928137153387, - -0.010156826116144657, - -0.0033534872345626354, - 0.006054907571524382, - -0.022073911502957344, - -0.010561557486653328, - 0.017833871766924858, - -0.010831378400325775, - -0.0008632660028524697, - 0.015264148823916912, - -0.00939875841140747, - 0.009681427851319313, - -0.0034980340860784054, - -0.003735733451321721, - -0.01226399838924408, - 0.006141635589301586, - 0.0020108073949813843, - 0.019606979563832283, - -0.012752245180308819, - 0.015739547088742256, - 0.004802167881280184, - -0.008518628776073456, - 0.0016197279328480363, - -0.028061363846063614, - -0.025594431906938553, - -0.011261806823313236, - 0.008859116584062576, - 0.002534388331696391, - -0.0014101349515840411, - -0.002036504680290818, - 0.009565790183842182, - -0.03556495159864426, - -0.005505629349499941, - -0.0336119644343853, - -0.04114124923944473, - -0.011936359107494354, - 0.006228363607078791, - -0.01685737632215023, - -0.02040359377861023, - 0.004464892204850912, - 0.012398908846080303, - 0.023037558421492577, - 0.003761430736631155, - 0.009822762571275234, - -0.018758971244096756, - 0.0032009100541472435, - -0.035487860441207886, - 0.010779984295368195, - -0.0005075201042927802, - -0.0022035366855561733, - 0.014827296137809753, - -0.00550884148105979, - 0.0036040351260453463, - -0.0014286048244684935, - -0.015109965577721596, - 0.009218878112733364, - -0.015405483543872833, - 0.011833569966256618, - 0.007407223805785179, - 0.018232177942991257, - 0.008692084811627865, - -0.003099727211520076, - 0.0021858697291463614, - 0.009642882272601128, - -0.00750358821824193, - -0.01026603952050209, - 0.01635628007352352, - -0.03582192584872246, - 0.011255382560193539, - -0.006009937264025211, - 0.019208671525120735, - 0.022202398627996445, - 0.021521421149373055, - -0.018309269100427628, - -0.012373211793601513, - -0.02269064635038376, - 0.016523312777280807, - 0.027033476158976555, - 0.014788750559091568, - -0.007728438824415207, - -0.0030146052595227957, - 0.032918140292167664, - 0.003321365686133504, - -0.010086159221827984, - 0.0003691967867780477, - 0.007432920858263969, - 0.001954594859853387, - 0.018938850611448288, - -0.018553392961621284, - -0.6446918845176697, - 0.005521690007299185, - 0.01507141999900341, - -0.019427098333835602, - 0.010850651189684868, - 0.03366335853934288, - 0.026776503771543503, - 0.012938550673425198, - -0.0031800309661775827, - 0.03463985398411751, - -0.004278587177395821, - 0.023667139932513237, - -0.02037789486348629, - 0.00021521422604564577, - -0.017371321097016335, - -0.007484315428882837, - 0.0018534120172262192, - -0.018861759454011917, - 0.03142770007252693, - 0.0012077693827450275, - -0.023140346631407738, - 0.015983670949935913, - -0.0023785990197211504, - 0.01997958868741989, - 0.0023962657433003187, - 0.0011170260841026902, - 0.003074029926210642, - -0.003504458349198103, - 0.007400799542665482, - 0.014339049346745014, - -0.018257874995470047, - 0.01075428631156683, - -0.015366937965154648, - 0.019812555983662605, - 0.048721928149461746, - 0.015842337161302567, - -0.007535709999501705, - 0.029063556343317032, - 0.011525203473865986, - 0.024360964074730873, - 0.005168353207409382, - 0.008749903179705143, - -0.02058347314596176, - 0.0032394558656960726, - 0.0169344674795866, - 0.0012704062974080443, - 0.03641296178102493, - -0.02418108470737934, - -0.008409415371716022, - -0.021392935886979103, - 0.02531176246702671, - 0.022318035364151, - -0.0026516318321228027, - 0.012373211793601513, - 0.010516587644815445, - 0.004593377932906151, - 0.013593829236924648, - -0.014120622538030148, - 0.001384437782689929, - 0.00928312074393034, - 0.007175948936492205, - -0.0023753868881613016, - 0.004718651995062828, - -0.013658072799444199, - -0.003803188679739833, - 0.02447660267353058, - -0.01000264286994934, - -0.009411606937646866, - 0.011647265404462814, - -0.01728138141334057, - -0.026082677766680717, - 0.024489451199769974, - -0.008987602777779102, - -0.019684070721268654, - 0.030579691752791405, - 0.010702892206609249, - 0.03443427383899689, - -0.0047764708288013935, - 0.008929784409701824, - 0.01110762357711792, - 0.00836444552987814, - -0.01391504518687725, - -0.01264303270727396, - -0.009655730798840523, - 0.03556495159864426, - -0.023127498105168343, - -0.02239512838423252, - -0.007150251418352127, - -0.005007745698094368, - 0.0030868786852806807, - 0.03127351775765419, - 0.009366637095808983, - 0.003989493474364281, - -0.019568433985114098, - -0.005300051532685757, - 0.04435340315103531, - -0.010221069678664207, - 0.05494065582752228, - 0.019388552755117416, - -0.04345399886369705, - -0.026750806719064713, - -0.011293928138911724, - 0.0362330824136734, - -0.0054959929548203945, - 0.019863951951265335, - -0.00023769929248373955, - -0.025093335658311844, - 0.00306599959731102, - 0.02752172201871872, - -0.036644235253334045, - -0.002670904854312539, - -0.011891388334333897, - 0.014814447611570358, - -0.013632375746965408, - -0.015251300297677517, - -0.021881183609366417, - 0.031787462532520294, - -0.0019578069914132357, - 0.020056679844856262, - -0.012276846915483475, - -0.009944824501872063, - -0.01435189787298441, - 0.0277016032487154, - -0.00268214731477201, - -0.0037164604291319847, - 0.017525503411889076, - 0.01333685778081417, - 0.007439345121383667, - -0.02350010722875595, - -0.007060311269015074, - -0.007381526753306389, - 0.002192293992266059, - 0.04404503479599953, - 0.0037293091882020235, - 0.03949662670493126, - -0.0047475616447627544, - 0.016690345481038094, - -0.014531778171658516, - -0.013889347203075886, - -0.038905590772628784, - -0.007818379439413548, - -0.015521121211349964, - -0.011004834435880184, - -0.06501396745443344, - -0.009739246219396591, - -0.02649383433163166, - -0.0084672337397933, - 0.009700700640678406, - 0.0013041339116171002, - -0.013362554833292961, - -0.012411757372319698, - -0.01252739503979683, - -0.012045571580529213, - -0.0006251651793718338, - -0.01017609890550375, - -0.0006765596335753798, - -0.029834473505616188, - -0.0018758970545604825, - 0.003552640788257122, - -0.013786558993160725, - -0.012726548127830029, - 0.0001590015453984961, - -0.034280091524124146, - -0.0007729242206551135, - -0.009161058813333511, - -0.018155086785554886, - 0.0019401401514187455, - 0.010458768345415592, - -0.015109965577721596, - -0.04450758546590805, - 0.003655429696664214, - -0.0033888209145516157, - -0.019131580367684364, - 0.007824803702533245, - -0.020442139357328415, - -0.016343431547284126, - -0.01289357990026474, - -0.0013298311969265342, - 0.005454234778881073, - -0.008480082266032696, - 0.005023806355893612, - -0.024874908849596977, - -0.015868034213781357, - -0.015341240912675858, - 0.01869472861289978, - -0.004757198039442301, - 0.01612500660121441, - 0.00934736430644989, - -0.03967650979757309, - 0.02171415090560913, - 0.027984272688627243, - 0.029192041605710983, - -0.005039867479354143, - -0.005563448183238506, - -0.011602294631302357, - 0.00026379802147857845, - -0.009822762571275234, - 0.018758971244096756, - 0.008396566845476627, - 0.02045498788356781, - 0.05026376247406006, - 0.015379786491394043, - -0.002047747140750289, - -0.0031864552292972803, - 0.01990249752998352, - -0.026275407522916794, - -0.009051845408976078, - -0.00832589901983738, - 0.03212152421474457, - 0.020467836409807205, - 0.023076104000210762, - 0.0011595870601013303, - -0.028138456866145134, - -0.01859193854033947, - -0.008229535073041916, - 0.04335121065378189, - -0.007118130102753639, - 0.012141936458647251, - -0.008255232125520706, - 0.00581720843911171, - -0.005740116350352764, - -0.005428537726402283, - 0.03458845987915993, - -0.0012294513871893287, - -0.0050944737158715725, - -0.007092432584613562, - 0.008826995268464088, - 0.01373516395688057, - -0.005955331027507782, - -0.012161209248006344, - -0.013658072799444199, - 0.027316145598888397, - 0.020544927567243576, - 0.006668428890407085, - 0.013234068639576435, - 0.016947316005825996, - 0.013208371587097645, - 0.0008873571641743183, - 0.04522710666060448, - -0.017743930220603943, - 0.029243437573313713, - 0.03736375644803047, - 0.0030210295226424932, - -0.020056679844856262, - 0.032943837344646454, - -0.004564468748867512, - 0.014647415839135647, - 0.03523088991641998, - -0.00194174621719867, - 0.015906579792499542, - -0.008910510689020157, - -0.015444029122591019, - -0.007554982788860798, - -0.0174612607806921, - -0.009970521554350853, - -0.009944824501872063, - 0.018926002085208893, - -0.011615143157541752, - 0.008370869792997837, - 0.023692836984992027, - 0.002120020566508174, - 0.008435112424194813, - -0.002518327673897147, - -0.01021464541554451, - -0.007998259738087654, - 0.001295300549827516, - -0.01585518568754196, - -0.011865691281855106, - -0.006803338881582022, - -0.0029166345484554768, - -0.0036393688060343266, - -0.015469726175069809, - 0.008923360146582127, - 0.011865691281855106, - 0.002099141711369157, - -0.0070346142165362835, - -0.0003487193025648594, - 0.0034562761429697275, - 0.013568132184445858, - 0.014801599085330963, - 0.011383868753910065, - -0.0057433289475739, - -0.019709767773747444, - 0.02176554501056671, - -0.017178591340780258, - -0.046229299157857895, - -0.007387951016426086, - 0.022806283086538315, - -0.01142241433262825, - -0.01252739503979683, - -0.011242534033954144, - 0.0037839156575500965, - -0.013863650150597095, - -0.00038003778900019825, - -0.0060709682293236256, - 0.006408244371414185, - 0.018707577139139175, - -0.003369548125192523, - 0.011756477877497673, - 0.019504189491271973, - -0.008428688161075115, - -0.004066585097461939, - -0.027110567316412926, - -0.020609170198440552, - 0.024823514744639397, - 0.01640767604112625, - 0.00046696668141521513, - -0.02329453080892563, - -0.028575308620929718, - -0.010311009362339973, - -0.009077543392777443, - -0.03363766148686409, - 0.002444448182359338, - -0.0181165412068367, - -0.005422113463282585, - 0.006514245178550482, - 0.01177575159817934, - -0.004101919010281563, - 0.062033090740442276, - -0.010182523168623447, - -0.0022115670144557953, - -0.03322650492191315, - -0.00022344535682350397, - 0.017525503411889076, - 0.029680289328098297, - 0.00216338480822742, - 0.005139444023370743, - 0.012565940618515015, - -0.018180783838033676, - -0.020120924338698387, - 0.005412477068603039, - -0.03592471405863762, - 0.014788750559091568, - 0.0022854465059936047, - 0.0040569487027823925, - -0.02387271821498871, - 0.016973014920949936, - -0.010388101451098919, - 0.02447660267353058, - 0.01021464541554451, - -0.0019786858465522528, - -0.006867581978440285, - 0.004400649107992649, - -0.020596321672201157, - 0.010709316469728947, - -0.046229299157857895, - -0.011415990069508553, - 0.030271325260400772, - 0.00215374818071723, - 0.0007604770944453776, - 0.022407976910471916, - 0.01801375113427639, - 0.011872115544974804, - -0.011615143157541752, - 0.020210864022374153, - 0.014673112891614437, - 0.015187056735157967, - 0.0019224733114242554, - -0.028549611568450928, - -0.01319552306085825, - 0.0003870643849950284, - -0.008518628776073456, - 0.03258407488465309, - 0.023538654670119286, - 0.01846345327794552, - 0.001588409417308867, - -0.0059778159484267235, - 0.0007279540877789259, - 0.026069829240441322, - -0.00865353923290968, - -0.010208221152424812, - 0.007310859393328428, - 0.028035666793584824, - -0.01137102022767067, - 0.014159168116748333, - -0.004419921897351742, - -0.04556117206811905, - -0.015688152983784676, - 0.01604791358113289, - -0.003674702486023307, - 0.005441386252641678, - -0.019388552755117416, - -0.029834473505616188, - -0.014891538769006729, - -0.017050106078386307, - -0.023358773440122604, - 0.0131312794983387, - -0.009912703186273575, - -0.011114047840237617, - -0.018270723521709442, - -0.022472219541668892, - -0.00416294950991869, - -0.01720428839325905, - -0.009116088971495628, - 0.018810365349054337, - -0.029834473505616188, - -0.009790641255676746, - -0.029654592275619507, - -0.0053867800161242485, - 0.013902195729315281, - 0.01856624148786068, - -0.02578715980052948, - -0.004069797229021788, - 0.029654592275619507, - -0.008923360146582127, - 0.0024781757965683937, - -0.01906733773648739, - -0.02865239977836609, - -0.020917536690831184, - 0.009784216992557049, - -0.027084870263934135, - -0.011293928138911724, - -0.00044367858208715916, - 0.02628825604915619, - -0.0015305906999856234, - 0.00536429462954402, - 0.005104110576212406, - -0.0053225369192659855, - -0.01788526587188244, - 0.0010294949170202017, - 0.0043942248448729515, - -0.0020589898340404034, - 0.01445468608289957, - -0.019606979563832283, - 0.03959941491484642, - 0.0027030264027416706, - 0.0143775949254632, - -0.01866902969777584, - 0.012565940618515015, - -0.010523011907935143, - -0.004612651187926531, - -0.0022469006944447756, - 0.010317433625459671, - 0.002410720568150282, - -0.009379485622048378, - -0.020198015496134758, - 0.01675458811223507, - -0.004066585097461939, - 0.006963946856558323, - 0.0058429054915905, - 0.005557023920118809, - -0.0015008782502263784, - 0.02646813727915287, - -0.012469575740396976, - -0.006054907571524382, - -0.01725568249821663, - 0.021290147677063942, - 0.005936057772487402, - 0.007381526753306389, - 0.007619225885719061, - 0.0020862931851297617, - 0.0060709682293236256, - -0.040370333939790726, - 0.011203988455235958, - 0.009379485622048378, - 0.028446823358535767, - 0.013208371587097645, - -0.023744231089949608, - 0.004972412250936031, - -0.0005709601100534201, - 0.01819363236427307, - 0.0007428102544508874, - -0.01382510457187891, - -0.0006749535677954555, - -0.021945426240563393, - -0.006382547318935394, - 0.005389992147684097, - 0.0001910227001644671, - 0.014210563153028488, - -0.02528606541454792, - -0.024964850395917892, - 0.01162156742066145, - -0.029603198170661926, - 0.0333549901843071, - -0.019606979563832283, - -0.0024781757965683937, - -0.011268231086432934, - 0.006051695439964533, - -0.018926002085208893, - -0.04427631199359894, - -0.006694125942885876, - -0.04890181124210358, - 0.002614692086353898, - 0.02752172201871872, - 0.025247519835829735, - 0.01846345327794552, - 0.014287654310464859, - -0.0003445033507887274, - -0.002993726171553135, - -0.007227343041449785, - -0.0014976661186665297, - -0.0018116540741175413, - -0.02596704103052616, - 0.037800610065460205, - 0.03993348032236099, - 0.033149413764476776, - 0.025029093027114868, - 0.02292191982269287, - 0.014364746399223804, - 0.03135060891509056, - -0.029192041605710983, - -0.02108456939458847, - -0.028523914515972137, - -0.023782776668667793, - -0.0029278770089149475, - 0.011557324789464474, - -0.002818663837388158, - 0.013285462744534016, - -0.04795101284980774, - -0.00896832998842001, - 0.014801599085330963, - -0.006527094170451164, - -0.004753985907882452, - 0.012848610058426857, - 0.005884663667529821, - -0.025722917169332504, - 0.020814748480916023, - 0.011203988455235958, - -0.02211245894432068, - -0.0012037542182952166, - -0.005232596304267645, - -0.019529886543750763, - -0.024489451199769974, - 0.0028202699031680822, - -0.008936208672821522, - 0.0011692235711961985, - 0.009745670482516289, - -0.003465912537649274, - 0.01177575159817934, - 0.007156675681471825, - -0.0040216147899627686, - -0.021225903183221817, - 0.00330530502833426, - -0.008852692320942879, - 0.010201796889305115, - -0.014017833396792412, - -0.03004004992544651, - -0.04787392169237137, - 0.012835761532187462, - 0.01638197712600231, - -0.0065527912229299545, - 0.023140346631407738, - -0.03222431242465973, - 0.009822762571275234, - 0.012912853620946407, - -0.003803188679739833, - -0.005357870366424322, - -0.0018405633745715022, - 0.03841734305024147, - -0.012887155637145042, - -0.026904989033937454, - -0.020750505849719048, - -0.05380997806787491, - 0.010362404398620129, - -0.016664646565914154, - 0.02279343456029892, - 0.015020024962723255, - 0.011210412718355656, - -0.015148511156439781, - 0.004044100176542997, - -0.009469425305724144, - -0.03826316073536873, - -0.027161961421370506, - 0.029192041605710983, - 0.037800610065460205, - -0.00027363523258827627, - -0.0016767436172813177, - 0.00896832998842001, - -0.011994177475571632, - 0.017062954604625702, - 0.00870493333786726, - 0.010041188448667526, - -0.009797065518796444, - 0.00031358638079836965, - -0.016741739585995674, - 0.04409642890095711, - 0.003282819874584675, - -0.006160908378660679, - 0.01431335136294365, - -0.010388101451098919, - -0.019003095105290413, - -0.016844527795910835, - -0.007413648068904877, - 0.0156239103525877, - -0.018399210646748543, - 0.012790791690349579, - 0.00430749636143446, - -0.0022806283086538315, - 0.000506717071402818, - 0.005168353207409382, - -0.017628293484449387, - 0.005749753210693598, - -0.00020858916104771197, - 0.021020326763391495, - -0.012655881233513355, - -0.007387951016426086, - -0.0009315242641605437, - -0.015289845876395702, - 0.0005789904971607029, - -0.004342830274254084, - 0.008749903179705143, - -0.03759503364562988, - -0.005981028079986572, - 0.00933451484888792, - 0.011364595964550972, - 0.023757079616189003, - -0.005730479955673218, - -0.005923209246248007, - -0.005393204279243946, - -0.021302996203303337, - -0.021829789504408836, - -0.014917236752808094, - 0.03507670387625694, - -0.020660564303398132, - -0.02896076813340187, - 0.00216338480822742, - 0.007908319123089314, - 0.008293777704238892, - -0.031633276492357254, - -0.006771217565983534, - -0.00810104887932539, - 0.03695260360836983, - -0.037749215960502625, - 0.02762451209127903, - 0.03448566794395447, - 0.014004984870553017, - 0.0032169707119464874, - 0.017474109306931496, - 0.005707995034754276, - -0.007169524673372507, - 0.020544927567243576, - 0.02158566564321518, - -0.027187658473849297, - 0.014146319590508938, - -0.017641142010688782, - 0.004863198846578598, - -0.009000451304018497, - -0.0010993592441082, - 0.010497314855456352, - -0.0070988573133945465, - -0.004432770423591137, - -0.013979287818074226, - -0.012919277884066105, - 0.017692536115646362, - -0.008255232125520706, - 0.012360363267362118, - 0.03474264219403267, - -0.010857075452804565, - 0.00934736430644989, - -0.0020589898340404034, - 0.004953138995915651, - -0.014120622538030148, - -0.02759881503880024, - -0.027187658473849297, - -0.027059173211455345, - 0.014467534609138966, - -0.0031061514746397734, - 0.00615769624710083, - 0.007362253498286009, - -0.02885797806084156, - -0.006549579091370106, - -0.0028443611226975918, - 0.0111590176820755, - 0.01969691924750805, - -3.470630326773971e-05, - 0.0008897662628442049, - 0.006376122590154409, - 0.02184263803064823, - 0.014261957257986069, - -0.009263847954571247, - 0.0002042728301603347, - -0.010060462169349194, - -0.008184564299881458, - 0.006160908378660679, - -0.026776503771543503, - 0.02993726171553135, - 0.017731081694364548, - -0.02153426967561245, - 0.0006633094744756818, - 0.0020332925487309694, - -0.05396416410803795, - -0.01703725755214691, - 0.009957673028111458, - 0.0016133036697283387, - -0.00041757983854040504, - -0.0035237313713878393, - -0.011293928138911724, - 0.021894032135605812, - 0.023744231089949608, - 0.02460508793592453, - -0.016767436638474464, - -0.0008255232241936028, - 0.015662455931305885, - 0.0033149414230138063, - 0.007606377359479666, - 0.0026692987885326147, - -0.028523914515972137, - -0.001588409417308867, - 0.014531778171658516, - -0.010824954137206078, - 0.02216385304927826, - 0.03499961271882057, - 0.0023400532081723213, - -0.007375102024525404, - 0.005110534839332104, - 0.029449013993144035, - 0.022048214450478554, - -0.006141635589301586, - 0.03451136499643326, - -0.03502530977129936, - -0.020287955179810524, - 0.005775450263172388, - -0.002023656154051423, - -0.020673412829637527, - 0.0020332925487309694, - 0.0020284743513911963, - 0.01050373911857605, - -0.004988472908735275, - 0.04232332110404968, - -0.010934167541563511, - -0.002470145234838128, - -0.012649456970393658, - 0.02111026644706726, - 0.01108192652463913, - 0.018399210646748543, - 0.009970521554350853, - 0.0016285612946376204, - 0.0029455439653247595, - -0.002407508436590433, - 0.011717932298779488, - -0.024386662989854813, - -0.008897662162780762, - 0.023962657898664474, - -0.009430879727005959, - 0.03394602984189987, - -0.010163250379264355, - 0.01041379850357771, - -0.010304585099220276, - 0.012398908846080303, - -0.016317734494805336, - -0.008711357600986958, - -0.01021464541554451, - 0.009764943271875381, - 0.007966138422489166, - -0.009777792729437351, - 0.021919729188084602, - 0.0024637209717184305, - -0.002823482034727931, - -0.008576447144150734, - -0.017178591340780258, - 0.004574105143547058, - -0.0010013885330408812, - -0.0156239103525877, - 0.008268080651760101, - -0.007060311269015074, - 0.02423247881233692, - 0.02216385304927826, - -0.020210864022374153, - -0.0035397920291870832, - 0.0049692001193761826, - 0.17782476544380188, - -0.022485068067908287, - 0.0025392065290361643, - 0.009527244605123997, - -0.007709166035056114, - -0.010670770891010761, - 0.034100212156772614, - -0.02633965015411377, - 0.00689970375970006, - 0.02111026644706726, - 0.002052565570920706, - 0.0026387833058834076, - 0.015251300297677517, - 0.0014390443684533238, - 0.005875026807188988, - -0.02037789486348629, - -0.029423316940665245, - -0.007407223805785179, - 0.004484164994210005, - 0.026185467839241028, - 0.014583172276616096, - -0.037800610065460205, - -0.018257874995470047, - -0.006247636862099171, - 0.01665179803967476, - 0.004924229811877012, - 0.00526471808552742, - -0.005088049452751875, - 0.01612500660121441, - -0.0014671506360173225, - -0.004387800581753254, - -0.0017474109772592783, - 0.006861157715320587, - -0.003915613982826471, - 0.0034819734282791615, - 0.004140464588999748, - -0.005955331027507782, - -0.025170426815748215, - 0.03497391566634178, - 0.03240419551730156, - 0.008242383599281311, - 0.0038064008112996817, - -1.367674303764943e-05, - -0.03350917622447014, - -0.0010640255641192198, - 0.035359375178813934, - -0.009719973430037498, - 0.009366637095808983, - 0.003591186599805951, - -0.03232710435986519, - -0.02082759700715542, - -0.004879259504377842, - 0.012161209248006344, - 0.012283271178603172, - -0.007985411211848259, - 0.01567530445754528, - -0.00865353923290968, - 0.00801110826432705, - -0.0022918707691133022, - 0.006732671521604061, - -0.011126896366477013, - -0.003995917737483978, - -0.016394825652241707, - 0.024373812600970268, - -0.009668579325079918, - 0.011210412718355656, - -0.030759572982788086, - -0.030348416417837143, - 0.004461680073291063, - -0.034331485629081726, - -0.005858966149389744, - -0.024373812600970268, - -0.027136264368891716, - 0.0002134073874913156, - -0.0009668578859418631, - -0.02903785929083824, - 0.01373516395688057, - 0.017448412254452705, - 0.016343431547284126, - 0.02538885362446308, - -0.02040359377861023, - -0.014197714626789093, - -0.0014117410173639655, - -0.03374044969677925, - 0.023782776668667793, - -0.03510240465402603, - 0.012334665283560753, - -0.013324008323252201, - -0.012180482037365437, - -0.017795324325561523, - -0.007554982788860798, - -0.029192041605710983, - 0.004586953669786453, - -0.009655730798840523, - -0.004590165801346302, - 0.01503287348896265, - 0.009655730798840523, - 0.009675003588199615, - -0.02636534720659256, - -0.001401301589794457, - -0.008987602777779102, - 0.08644545078277588, - 0.03998487442731857, - -0.018784668296575546, - 0.012231877073645592, - 0.0038096129428595304, - 0.006125574931502342, - 0.006257273256778717, - -0.013632375746965408, - -0.039213959127664566, - -0.0022035366855561733, - -0.02772730030119419, - 0.011884964071214199, - -0.015289845876395702, - 0.0012326635187491775, - -0.005855754017829895, - -0.007934017106890678, - -0.0024605088401585817, - 0.001810048008337617, - 0.005875026807188988, - -0.009418031200766563, - -0.003488397691398859, - 0.010857075452804565, - -0.002913422416895628, - 0.012649456970393658, - -0.00344021525233984, - -0.036824118345975876, - 0.011390293017029762, - -0.013503889553248882, - 0.012649456970393658, - 0.006193030159920454, - -0.025877101346850395, - 0.007612801622599363, - 0.014570323750376701, - -0.0016767436172813177, - 0.030348416417837143, - 0.0010664346627891064, - -0.05293627455830574, - 0.009906277991831303, - -0.015880882740020752, - 7.588710286654532e-05, - 0.004236829001456499, - 0.007060311269015074, - 0.006700550206005573, - 0.016189249232411385, - 0.001848593819886446, - -0.0037196725606918335, - -0.0008351596770808101, - -0.03507670387625694, - -0.022151004523038864, - -0.003138273023068905, - -0.015212754718959332, - 0.001989928539842367, - -0.03245558962225914, - 0.018232177942991257, - 0.021495724096894264, - -0.02450229972600937, - -0.010015491396188736, - 0.038982681930065155, - 0.017795324325561523, - -0.01720428839325905, - -0.014737355522811413, - -0.010484466329216957, - -0.004413497634232044, - -0.007330132182687521, - 0.0009291151072829962, - -0.16086459159851074, - 0.03016853705048561, - 0.02885797806084156, - -0.03744085133075714, - 0.0032266073394566774, - -0.022330883890390396, - 0.002818663837388158, - -0.00011262609768891707, - -0.017679687589406967, - -0.010343131609261036, - 0.04078148677945137, - -0.022703494876623154, - -0.0185148473829031, - -0.01630488596856594, - 0.006083816755563021, - 0.020018134266138077, - -0.01197490468621254, - 0.023667139932513237, - -0.0089940270408988, - 0.005752965342253447, - 0.02357720024883747, - -0.017024409025907516, - 0.03268686309456825, - -0.0238984152674675, - -0.003610459389165044, - 0.00963645800948143, - -0.012938550673425198, - 0.040087662637233734, - 0.001635788707062602, - -0.012443878687918186, - -0.0013659679098054767, - -0.004317133221775293, - 0.02888367511332035, - -0.003687551012262702, - -0.006771217565983534, - -0.005592357367277145, - -0.012437454424798489, - 0.0034948219545185566, - 0.000506717071402818, - 0.04291435703635216, - 0.005306475795805454, - 0.023178892210125923, - -0.006209090817719698, - 0.009161058813333511, - -0.020801899954676628, - 0.009829186834394932, - 0.007715590298175812, - 0.005267930217087269, - -0.020108073949813843, - -0.011004834435880184, - -0.011820721440017223, - 0.003950947429984808, - -0.0174612607806921, - 0.02173984795808792, - 0.030528297647833824, - 0.01864333264529705, - 0.007407223805785179, - 0.007182373199611902, - 0.004692954942584038, - 0.01163441687822342, - -0.004342830274254084, - -0.00033707526745274663, - 0.020699111744761467, - -0.002670904854312539, - -0.015276997350156307, - -0.01738416962325573, - 0.01911873184144497, - 0.006719822995364666, - -0.037749215960502625, - 0.006861157715320587, - -0.020750505849719048, - 0.012855034321546555, - 0.025645826011896133, - 0.008454385213553905, - 0.012700851075351238, - 0.003687551012262702, - 0.003207334317266941, - 0.001009418978355825, - -0.006376122590154409, - -0.012071269564330578, - -0.024772120639681816, - 0.0530390627682209, - -0.028446823358535767, - -0.014724506996572018, - -0.025671523064374924, - -0.007002492435276508, - -0.0009532062686048448, - -0.021071720868349075, - 0.013979287818074226, - 0.0013659679098054767, - 0.002095929579809308, - -0.03399742394685745, - -0.00865353923290968, - -0.020146621391177177, - -0.0020043831318616867, - 0.0005380355287343264, - 0.00821668654680252, - -0.022330883890390396, - -0.007991835474967957, - -0.018283572047948837, - 0.006472487468272448, - -0.026134073734283447, - -0.009694276377558708, - 0.008627841249108315, - -0.012360363267362118, - 0.00721449451521039, - 0.005046291742473841, - -4.8408142902189866e-05, - 0.0287551898509264, - -0.005280778743326664, - -0.026159770786762238, - -0.015199906192719936, - 0.008717781864106655, - 0.009610760025680065, - -0.004994897171854973, - -0.002617904217913747, - 0.008737054653465748, - -0.005813996307551861, - 0.027367539703845978, - 0.017551202327013016, - 0.05437531694769859, - -0.016497615724802017, - -0.014441837556660175, - 0.004076221492141485, - 0.028549611568450928, - -0.026056980714201927, - -0.08916935324668884, - -0.011583021841943264, - 0.02657092548906803, - 0.00461586331948638, - 0.004927441943436861, - 0.026622319594025612, - -0.016947316005825996, - 0.018052296712994576, - 0.007966138422489166, - 0.011075502261519432, - -0.033072322607040405, - -0.023936960846185684, - 0.00014043129340279847, - -0.006408244371414185, - 0.03631017357110977, - -0.021996820345520973, - 0.0020108073949813843, - 0.002446054248139262, - -0.014300502836704254, - 0.027033476158976555, - -0.001916048931889236, - -0.006822612136602402, - -0.013593829236924648, - 0.0012961035827174783, - -0.01266872975975275, - 0.015662455931305885, - -0.027007779106497765, - 0.00865353923290968, - 0.006784066092222929, - -0.010394525714218616, - -0.00894263293594122, - -0.01761544495820999, - 0.03325220197439194, - -0.02752172201871872, - 0.029320528730750084, - 0.02050638198852539, - -0.008165291510522366, - -0.01796235702931881, - 0.004082645755261183, - -0.01696016453206539, - 0.00454198382794857, - 0.009006875567138195, - -0.0048407139256596565, - -0.02885797806084156, - 0.0063022430986166, - -0.03862292319536209, - -0.009739246219396591, - 0.0074457693845033646, - -0.0063150920905172825, - -0.015957973897457123, - -0.005261505953967571, - -0.010253190994262695, - -0.029320528730750084, - -0.01163441687822342, - 0.007760560605674982, - -0.004175798501819372, - 0.001699228654615581, - -0.024348115548491478, - -0.014467534609138966, - 0.004635136108845472, - -0.02515757828950882, - 0.005361082497984171, - -0.018861759454011917, - 0.02890937216579914, - 0.0064243050292134285, - -0.023435864597558975, - -0.03127351775765419, - 0.0006227560807019472, - -0.0045034377835690975, - -0.012045571580529213, - -0.017191439867019653, - 0.006324728485196829, - 0.018283572047948837, - 0.0027222991921007633, - -0.03638726472854614, - 0.007818379439413548, - -0.019465643912553787, - 0.0019610191229730844, - -0.0023015073966234922, - -0.02042929083108902, - -0.014647415839135647, - -0.03731236234307289, - 0.03109363652765751, - -0.02759881503880024, - 0.018052296712994576, - 0.019414249807596207, - 0.0022597492206841707, - -0.01147380843758583, - 0.022048214450478554, - -0.010201796889305115, - 0.011126896366477013, - 0.00661061005666852, - 0.021444329991936684, - -0.033149413764476776, - -0.005007745698094368, - 0.006886855233460665, - 0.021418632939457893, - -0.01435189787298441, - 0.00557950884103775, - 0.019632676616311073, - -0.001877503120340407, - -0.00968785211443901, - -0.02898646518588066, - 0.01507141999900341, - 0.017769627273082733, - 0.011807872913777828, - -0.010574406012892723, - 0.005007745698094368, - 0.013028490357100964, - 0.007400799542665482, - -0.0017345623346045613, - 0.022960465401411057, - -0.009038996882736683, - 0.015932276844978333, - 0.006038846913725138, - -0.007387951016426086, - -0.028087060898542404, - 0.006160908378660679, - 0.01940140128135681, - 0.009617184288799763, - 9.67660962487571e-05, - 0.010137553326785564, - -0.007747712079435587, - -0.01638197712600231, - 0.008332323282957077, - 0.005457447376102209, - -0.021919729188084602, - 0.0005143459420651197, - -0.00603242265060544, - 0.01319552306085825, - -0.001367573975585401, - -0.007105281576514244, - 0.00215374818071723, - -0.023178892210125923, - 0.0021665969397872686, - 0.003816037205979228, - -0.016895921900868416, - 0.010882772505283356, - 0.004593377932906151, - 0.0263910461217165, - 0.00027243068325333297, - 0.07318568229675293, - -0.023847021162509918, - -0.025170426815748215, - 0.025478793308138847, - -0.028318336233496666, - -0.012411757372319698, - -0.008936208672821522, - 0.015225603245198727, - 0.008409415371716022, - 0.0001270807842956856, - -0.005055928137153387, - 0.03998487442731857, - 0.014082076959311962, - -0.015957973897457123, - -0.01075428631156683, - 0.01507141999900341, - -0.019491340965032578, - 0.00018319307127967477, - 0.0064885481260716915, - -0.010009067133069038, - -0.029526107013225555, - 0.04944145306944847, - 0.014570323750376701, - -0.002256537089124322, - -0.023435864597558975, - 0.01101768296211958, - -0.02654522843658924, - -0.03741515427827835, - 0.016510464251041412, - 0.009565790183842182, - -0.024887757375836372, - -0.02883228100836277, - -0.01122326124459505, - 0.019003095105290413, - 0.01442898903042078, - 0.0028861190658062696, - 0.0025873889680951834, - 0.03212152421474457, - -0.007895470596849918, - 0.017731081694364548, - 0.021302996203303337, - 0.02150857262313366, - -0.003168788505718112, - -0.019337158650159836, - -0.013362554833292961, - 0.0075485585257411, - 0.026930686086416245, - -0.02050638198852539, - 0.019054489210247993, - -0.019992437213659286, - 0.007715590298175812, - 0.0007375905406661332, - 0.004073009360581636, - 0.005059140268713236, - 0.005563448183238506, - 0.0036907633766531944, - 0.018424907699227333, - -0.0014061197871342301, - 0.0019401401514187455, - 0.01113332062959671, - 0.03147909417748451, - -0.0012029510689899325, - 0.00812674593180418, - 0.010645073838531971, - -0.012565940618515015, - -0.008306626230478287, - 0.0011619961587712169, - -0.00581720843911171, - -0.030502600595355034, - 0.0018341391114518046, - 0.021123114973306656, - -0.009784216992557049, - 0.02105887234210968, - 0.0008399778744205832, - -0.017756778746843338, - -0.030913755297660828, - 0.018245026469230652, - 0.018322117626667023, - -0.01442898903042078, - -0.023988354951143265, - 0.015328391455113888, - 0.025594431906938553, - 0.03117072768509388, - -0.002270991913974285, - -0.0018919578287750483, - 0.02578715980052948, - 0.014788750559091568, - -0.0014928479213267565, - -0.021701302379369736, - 0.00031037424923852086, - -0.003292456269264221, - 0.017718233168125153, - -0.015109965577721596, - -0.019285764545202255, - 0.00410834327340126, - -0.01555966679006815, - -0.027187658473849297, - 0.009681427851319313, - 0.02657092548906803, - 0.019003095105290413, - 0.10474187135696411, - 0.018681878224015236, - 0.018707577139139175, - -0.0007219312828965485, - 0.018874607980251312, - 0.0058332690969109535, - 0.029654592275619507, - 0.013311159797012806, - 0.0017747143283486366, - -0.032943837344646454, - -0.004972412250936031, - -0.011602294631302357, - 0.010054036974906921, - -0.021200206130743027, - 0.010375252924859524, - 0.03715818002820015, - -0.03713248297572136, - -0.002073444426059723, - 0.010073310695588589, - 0.0253374595195055, - 0.013067036867141724, - -0.022703494876623154, - 0.007612801622599363, - 0.01785956881940365, - -0.026853594928979874, - -0.010394525714218616, - 0.011570173315703869, - -0.016343431547284126, - -0.01377371046692133, - -0.0007974168402142823, - -0.007439345121383667, - 0.005756177473813295, - -0.08284784108400345, - -0.031864553689956665, - 0.03841734305024147, - -0.029346225783228874, - -0.008647114969789982, - -0.038956984877586365, - -0.002534388331696391, - -0.01442898903042078, - 0.00559878209605813, - 0.026750806719064713, - -0.003581549972295761, - -0.015868034213781357, - 0.006103090010583401, - -0.020365046337246895, - 0.012533819302916527, - -0.014942933805286884, - -0.02888367511332035 - ], - "sparse": "SparseEmbedding(values=array([0.74340021, 0.74340021, 0.74340021, 1.33081285, 1.33081285,\n 1.83956101, 1.1112865 , 1.1112865 , 1.47666492, 0.74340021,\n 1.98403006, 1.33081285, 0.74340021, 1.33081285, 0.74340021,\n 0.74340021, 1.47666492, 1.7188699 , 1.7188699 , 1.83956101,\n 1.1112865 , 1.1112865 , 1.58060171, 1.1112865 , 1.33081285,\n 0.74340021, 1.1112865 , 0.74340021, 0.74340021, 1.33081285,\n 0.74340021, 0.74340021, 1.86737401, 1.1112865 , 1.1112865 ,\n 0.74340021, 2.0122499 , 0.74340021, 0.74340021, 1.97263887,\n 0.74340021, 1.47666492, 0.74340021, 1.33081285, 0.74340021,\n 1.65842167, 0.74340021, 1.1112865 , 1.33081285, 1.33081285,\n 0.74340021, 1.83956101, 1.33081285, 1.58060171, 0.74340021,\n 0.74340021, 0.74340021, 1.33081285, 0.74340021, 1.1112865 ,\n 1.65842167, 0.74340021, 1.1112865 , 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 1.1112865 , 1.1112865 , 1.1112865 , 0.74340021,\n 0.74340021, 1.89120215, 0.74340021, 1.1112865 , 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 1.47666492,\n 1.1112865 , 0.74340021, 0.74340021, 0.74340021, 1.1112865 ,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 1.1112865 , 0.74340021, 0.74340021, 1.7188699 ,\n 0.74340021, 1.33081285, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 1.47666492,\n 1.1112865 , 0.74340021, 0.74340021, 0.74340021, 1.1112865 ,\n 0.74340021, 0.74340021, 0.74340021, 1.1112865 , 0.74340021,\n 0.74340021, 1.1112865 , 0.74340021, 0.74340021, 0.74340021,\n 1.47666492, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 1.1112865 ,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 1.1112865 , 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 1.1112865 , 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 1.1112865 , 1.1112865 , 0.74340021,\n 1.1112865 , 1.1112865 , 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 1.1112865 , 0.74340021, 0.74340021, 1.33081285,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 1.1112865 , 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 1.1112865 , 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021]), indices=array([ 19522071, 516830072, 1102572110, 649860119, 560980618,\n 433708589, 1413554298, 225869280, 1092081572, 1210150950,\n 164058840, 1505931685, 1993503267, 338063690, 1613513951,\n 267236283, 915344176, 1612226653, 843816345, 378174453,\n 53472192, 1147900472, 147047731, 127446542, 1638510030,\n 626688694, 1033482951, 916513179, 176529870, 1052851227,\n 390138254, 205205340, 47951928, 1425081645, 1921234376,\n 1372619505, 408270109, 2063187250, 717918380, 1109731834,\n 1013328655, 2123825667, 2030333490, 276137311, 607287212,\n 2103309648, 101344405, 1286817522, 591898045, 1854958712,\n 100755915, 1669595920, 104202716, 651773314, 1743224156,\n 1785227261, 1875908499, 1408881661, 421005081, 1783291875,\n 1515684580, 1896130919, 1535770478, 2054116652, 777551031,\n 2112118527, 1088073874, 231980230, 519889863, 1947145990,\n 997168741, 1033812155, 364305688, 1749031367, 940094026,\n 695939956, 1047604504, 913546892, 149069860, 412120895,\n 1566907605, 2027326372, 354750650, 354145317, 290749275,\n 642997454, 46912109, 2130649913, 2131974415, 99212807,\n 579152585, 2003342940, 1557900895, 1965475559, 1079921207,\n 472672705, 2101841856, 955073128, 1824312681, 1174634009,\n 205475750, 367467701, 474773426, 639129266, 1437382896,\n 146333812, 1391370668, 2004181058, 866872027, 912658635,\n 663060246, 1640881764, 1218324294, 618900731, 1055508231,\n 1793743868, 945697874, 1897848199, 472518677, 599362555,\n 880356403, 1016026407, 1661645985, 1479471187, 1552243457,\n 1661696679, 940461617, 1571444656, 2038030012, 1747552497,\n 2124172637, 983781286, 1764806114, 193740839, 1360744857,\n 582292205, 663290780, 1975311753, 1427900950, 1693284273,\n 454272156, 2143189012, 691794919, 482204306, 1480001521,\n 1573069705, 1087018213, 975669097, 517778659, 702141502,\n 220308237, 1239234285, 761728489, 914356476, 1066874362,\n 190652800, 804436165, 103616747, 1416371393, 1781008795,\n 449497878, 432846507, 1103500757, 1955583600, 466949017,\n 1769347644, 1903657883, 764035188, 464909109, 1121363733,\n 215636583, 1836140557, 1636301946, 1167073666, 518127643,\n 2061777327, 1039553008, 1475735686, 2021003432, 828667247,\n 2028978146, 693967883, 306516625, 1680012685, 890189858,\n 839637767, 1404348804, 1127017311, 163077544, 990918675,\n 76479261, 1432264639, 249705638, 120071081, 686262413,\n 1255520546, 2053391496, 664667393, 2068603681, 1407327463,\n 815174908, 1773960901, 777094152, 641040124, 1540567104,\n 369938047, 192302745, 448580177, 619081747, 1444360344,\n 1533237356, 1126216074, 1947841087, 1327159833, 1483066639,\n 300265840, 1852366598, 719827503, 1362353402, 1553747220,\n 1470230192, 1607250454, 769191493, 1700054465, 1354425271,\n 885771073, 965637114, 78848810, 1589814399, 160566303,\n 14784032, 540303681, 1441934224, 559739758, 2107168816,\n 475208706, 644914130, 1712970659, 364823643, 1657209590,\n 1084925772, 1733082335, 1638290802, 586235759, 907170695,\n 1453111248, 1707387297, 963966427, 822196393, 728497482,\n 812080723, 1692320747, 205576681, 1332909437, 821190249,\n 641270682, 795595028, 1394226660, 264741300]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 51, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 489 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000052.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000052.json deleted file mode 100644 index c44d46884ac2356b1454ebc032e19429057927e2..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000052.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000052", - "content": "2.5 Aktueller Stand der Forschung Die Analyse und Simulation der Auswirkungen von Stadtgr\u00fcn auf den urbanen Raum sind in der Forschung pr\u00e4sent. Verschiedene Studien befassen sich mit dieser Thematik. Beispielsweise analysierten Donovan und Butry in ihrer Studie den Effekt von B\u00e4umen auf Einfamilienh\u00e4user in Sacramento, Kalifornien. Sie haben herausgefunden, dass B\u00e4ume auf der Nordseite eines Geb\u00e4udes den sommerliche Strombedarf leicht erh\u00f6hten, w\u00e4hrend B\u00e4ume auf der Ost- und S\u00fcdseite zu einer Reduktion des Strombedarfs beitrugen. In Summe war \u00fcber das Jahr mit einer Verringerung des Strombedarfs zu rechnen. (vgl. Donovan und Butry 2009) Calcernao und Martinelli widmeten sich mit ihrer Analyse der Wechselwirkung zwischen dem st\u00e4dtischen Mikroklima und dem Geb\u00e4udeenergiebedarf. Sie untersuchten den Verschattungseffekt von B\u00e4umen an zwei Geb\u00e4uden in den Sommermonaten. Das Ergebnis deckt sich mit der oben aufgef\u00fchrten Studie: Die Anzahl an B\u00e4umen verringert den Energiebedarf im Sommer proportional. (vgl. Calcerano und Martinelli 2016) Mit Hilfe eines Mikroklimamodells haben Erell und Zhou nachgewiesen, dass der UHI in St\u00e4dten zu einem Anstieg des erforderlichen K\u00fchlbedarfs f\u00fchrt. Sie haben analysiert, dass mit einer Erh\u00f6hung des Baumbestands die Temperatur im Schnitt um 0,3\u00b0C pro Jahr gesenkt werden kann und sich eine Einsparung des Geb\u00e4udeenergiebedarfs gegen\u00fcber dem Status Quo um 2-3% ergibt. (vgl. Erell und Zhou 2022) 13 Theorieteil Weitere Betrachtungen des Einflusses von Stadtgr\u00fcn auf die Lufttemperatur haben Schwab et al. durchgef\u00fchrt. In \u00fcber 290 europ\u00e4ischen St\u00e4dten werteten sie mittels Satellitendaten die Oberfl\u00e4chentemperaturen aus. Sie zeigen auf, dass st\u00e4dtisches Gr\u00fcn zu einer Abk\u00fchlung des urbanen Raums beitr\u00e4gt. Durch st\u00e4dtische B\u00e4ume stellt sich eine zwei- bis viermal st\u00e4rkere Verringerung der Temperatur ein als bei baumlosen st\u00e4dtischen Gr\u00fcnfl\u00e4chen. (vgl. Schwaab et al. 2021) Moss et al. benutzten zwei methodische Ans\u00e4tze, um die \u00d6kosystemdienstleistung der Evapotranspiration der B\u00e4ume in der Stadt London aufzuzeigen und monet\u00e4r zu bewerten. Der Verschattungseffekt wird in die Betrachtung nicht miteinbezogen Als ersten Ansatz bestimmten sie die K\u00fchlleistung der Evapotranspiration \u00fcber die Enthalpie, welche sie anschlie\u00dfend mit der Leistung eines maschinellen Verdunstungsk\u00fchlsystems gleichsetzten, um potenzielle Einsparungseffekte aufzuzeigen. In einem zweiten Ansatz simulierten Moss et al. die Energieeinsparung von Geb\u00e4uden auf Grund der durch die Evapotranspiration abgek\u00fchlten Luft. F\u00fcr diese Simulation wurde ein einzelstehendes Geb\u00e4ude bzw. ein einziger Stra\u00dfenzug betrachtet. In beiden Ans\u00e4tzen konnten sie eine Reduktion des Energiebedarfs und somit eine Verringerung der Energiekosten feststellen. (vgl. Moss et al. 2019) In verschiedenen Studien wird der Mehrwert eines erh\u00f6hten Gr\u00fcnanteils best\u00e4tigt, jedoch findet selten eine Verkn\u00fcpfung zwischen mehreren Wechselwirkungen statt. So wird der Effekt auf den Geb\u00e4udeenergiebedarf nicht auf Quartiersebene bzw. dichteren Bebauungsstrukturen betrachtet. Des Weiteren wird das Mobilit\u00e4tsverhalten der Bewohner des untersuchten Quartiers nicht mit in die Betrachtung einbezogen. Eine ganzheitliche Betrachtung einer Vielzahl, der f\u00fcr die Entwicklung einer nachhaltigen Quartiersstruktur relevanten Komponenten ist entscheidend, um sowohl den Status Quo bestm\u00f6glich abzubilden als auch m\u00f6gliche Zukunftsszenarien zu simulieren. Im Rahmen dieser Arbeit werden die Wechselwirkungen zwischen einer Ver\u00e4nderung des Mobilit\u00e4tsverhaltens, dem Anteil an Stadtgr\u00fcn in Form von B\u00e4umen und dem thermischen Geb\u00e4udeenergiebedarf betrachtet. 14 Methodik und Toolerl\u00e4uterung", - "embedding": { - "dense": [ - 0.014387985691428185, - -0.01150909997522831, - 0.01871597394347191, - -0.026792310178279877, - -0.0006512913969345391, - 0.013872748240828514, - -0.02885325625538826, - -0.001608504680916667, - -0.01195349171757698, - -0.023559199646115303, - 0.0051298257894814014, - 0.001655197935178876, - -0.005306938197463751, - 0.014645603485405445, - -0.007657705806195736, - -0.01388562936335802, - 0.04598487541079521, - -0.004134774673730135, - 0.02026168443262577, - 0.011290124617516994, - -0.007818717509508133, - 0.01689976453781128, - -0.0037225852720439434, - 0.0013500811764970422, - -0.008462763391435146, - 0.024576790630817413, - 0.023507675155997276, - -0.02777125872671604, - -0.009699331596493721, - 0.00633741170167923, - 0.011122672818601131, - -0.022206703200936317, - -0.0270241666585207, - -0.010156603530049324, - -0.013486321084201336, - -0.005171688739210367, - 0.003638859372586012, - -0.007889562286436558, - 0.017299072816967964, - -0.0012607198441401124, - 0.0062118228524923325, - -0.016732312738895416, - -0.0023443270474672318, - -0.009428831748664379, - 0.018239378929138184, - 0.015843529254198074, - 0.019617637619376183, - -0.015998100861907005, - -0.01540557760745287, - 0.02797735296189785, - 0.030115585774183273, - 0.03137791529297829, - -0.011856884695589542, - 0.011502659879624844, - -0.03985356166958809, - -0.004778820555657148, - -0.03160977363586426, - 0.010137282311916351, - -0.004253922961652279, - -0.010465745814144611, - -0.018741736188530922, - -0.012603978626430035, - -0.015650315210223198, - 0.012005015276372433, - -0.032897863537073135, - -0.012230431661009789, - -0.007889562286436558, - -0.00928714219480753, - 0.004363411106169224, - -0.011141994036734104, - 0.027127213776111603, - 0.046294018626213074, - 0.014851698651909828, - -0.0032910744193941355, - 0.01821361854672432, - -0.005973525810986757, - -0.007928204722702503, - 0.0029642211738973856, - -0.02267041616141796, - 0.010336936451494694, - 0.0003399354754947126, - -0.017737023532390594, - -0.021189110353589058, - 0.04737601429224014, - 0.018780378624796867, - 0.01763397641479969, - -0.007400087546557188, - 0.025761835277080536, - -0.0025794038083404303, - 0.008984440006315708, - 0.002948120003566146, - 0.021073181182146072, - 0.006884850561618805, - 0.0194630678743124, - -0.004762719385325909, - 0.005252194125205278, - -0.002656689379364252, - 0.0007072429289110005, - 0.00918409414589405, - -0.006891291122883558, - -0.024151721969246864, - -0.0015449051279574633, - -0.014619842171669006, - -0.0035197108518332243, - -0.033129721879959106, - 0.012430085800588131, - 0.0023250055965036154, - -0.002935239113867283, - 0.020596588030457497, - -0.03075963258743286, - -0.027642449364066124, - 0.03300091251730919, - -0.026637738570570946, - -0.02230975031852722, - 0.010691162198781967, - -0.013911391608417034, - 0.018393950536847115, - -0.00504287937656045, - -0.01154774334281683, - 0.004234601743519306, - 0.026611976325511932, - -0.00024071215011645108, - 0.007393646985292435, - -0.004141215234994888, - 0.020570825785398483, - 0.009448152966797352, - 0.007709229364991188, - -0.008681738749146461, - -0.05077657848596573, - -0.019630519673228264, - -0.028544114902615547, - 0.010762006975710392, - 0.011889087036252022, - 0.0069943382404744625, - -0.03081115521490574, - 0.026972642168402672, - -0.014297818765044212, - 0.006491982843726873, - -0.024229006841778755, - -0.047968536615371704, - -0.015212364494800568, - 0.005123385228216648, - -0.03611809387803078, - -0.029162397608160973, - -0.0028772749938070774, - 0.03753499314188957, - 0.015457101166248322, - 0.030785392969846725, - 0.0018226498505100608, - -0.02185891754925251, - -0.0020673873368650675, - -0.006949255242943764, - 0.002358818193897605, - -0.0009990761755034328, - 0.006627232301980257, - -0.0054421876557171345, - -0.014465270563960075, - 0.004166977014392614, - -0.04588183015584946, - 0.009557641111314297, - 0.02761668711900711, - -0.01581776700913906, - 0.013537844642996788, - -0.0030125246848911047, - 0.013035489246249199, - 3.149786789435893e-05, - 0.0035519131924957037, - 0.0014007998397573829, - 0.0025552520528435707, - -0.021833155304193497, - -0.006459780503064394, - 0.03225381672382355, - -0.038797326385974884, - 0.02549133636057377, - 0.007136028725653887, - 0.022902272641658783, - 0.0007978118374012411, - 0.024718482047319412, - 0.0019353579264134169, - -0.013396155089139938, - -0.03452086076140404, - 0.009931188076734543, - 0.013202941045165062, - 0.017737023532390594, - -0.025903526693582535, - -0.0002413159527350217, - 0.030347442254424095, - 0.007786514703184366, - 0.0005498541868291795, - 0.006833327002823353, - 0.008965118788182735, - -0.0033007352612912655, - 0.01133520808070898, - -0.007161790505051613, - -0.6335350871086121, - 0.022348392754793167, - 0.00564828235656023, - -0.006066912319511175, - 0.005110504105687141, - 0.016667908057570457, - 0.04152807965874672, - 0.01624283753335476, - -0.010800649411976337, - 0.02746211737394333, - 0.0037612279411405325, - 0.007734991144388914, - -0.004582386463880539, - 0.000584069115575403, - 0.0007909688865765929, - -0.010961661115288734, - 0.0021350120659917593, - -0.012488050386309624, - 0.035525571554899216, - 0.0080892164260149, - -0.016925526782870293, - 0.025955049321055412, - -0.004038167651742697, - -0.007554658222943544, - 0.016642145812511444, - 0.026869595050811768, - -0.011277243494987488, - -0.029239684343338013, - 0.011502659879624844, - 0.03233110532164574, - 0.008759024553000927, - 0.03900342062115669, - -0.0021028099581599236, - 0.022116536274552345, - 0.05306938290596008, - 0.023430390283465385, - -0.00874614343047142, - 0.017595333978533745, - 0.0018049386562779546, - -0.005915561690926552, - -0.012552454136312008, - -0.013009727001190186, - 0.0019997626077383757, - 0.0010989033617079258, - 0.010665399953722954, - 0.018986472859978676, - 0.03132639080286026, - -0.01764685846865177, - -0.0074644917622208595, - -0.00243288348428905, - 0.024229006841778755, - 0.004946272354573011, - 0.005822174716740847, - 0.003600216470658779, - 0.015779124572873116, - 0.011792480014264584, - 0.028209209442138672, - -0.011386731639504433, - -0.012140264734625816, - -0.0009620435303077102, - 0.008398358710110188, - 0.0007470932323485613, - -0.009023083373904228, - -0.011534862220287323, - -0.015289649367332458, - 0.055336423218250275, - -0.029342731460928917, - -0.016229957342147827, - -0.007992609404027462, - -0.02944577857851982, - -0.006801124662160873, - 0.01246228814125061, - -0.012597537599503994, - -4.87437091578613e-07, - 0.014658484607934952, - 0.011283684521913528, - 0.04706687480211258, - -0.012011456303298473, - -0.03248567506670952, - 0.030502013862133026, - 0.008230906911194324, - -0.005638621747493744, - -0.016925526782870293, - -0.011554183438420296, - 0.0228893905878067, - -0.02353343740105629, - -0.01118707749992609, - -0.003160655265673995, - -0.004437476396560669, - -0.007277718745172024, - 0.02528524212539196, - 0.01871597394347191, - -0.02099589630961418, - -0.025980811566114426, - -0.01085861399769783, - 0.04402697831392288, - -0.002366868779063225, - 0.04132198542356491, - 0.008160061202943325, - -0.051704004406929016, - -0.011670111678540707, - 0.013640891760587692, - 0.024396458640694618, - 0.005358461756259203, - 0.008578691631555557, - -0.002465085592120886, - 0.0031751461792737246, - 0.006147418171167374, - 0.035680141299963, - -0.020789802074432373, - 0.0028708346653729677, - 0.0005317403702065349, - 0.0110389469191432, - -0.014169009402394295, - 0.0031799767166376114, - -0.01929561421275139, - 0.036530282348394394, - -0.020287444815039635, - 0.010935898870229721, - 0.006514524109661579, - 0.009325784631073475, - -0.010472185909748077, - 0.007883122190833092, - -0.024808647111058235, - 0.011019625701010227, - 0.023700889199972153, - -0.004910849966108799, - -0.001711551914922893, - -0.02163994126021862, - -0.007548218127340078, - -0.003044727025553584, - 0.02361072227358818, - 0.043022267520427704, - -0.007239075843244791, - 0.02980644442141056, - 0.0008098877151496708, - 0.020197279751300812, - 0.0006746380822733045, - 0.00025963099324144423, - -0.020570825785398483, - -0.023842578753829002, - -0.0009990761755034328, - 0.008172942325472832, - -0.024654077365994453, - -0.011026065796613693, - -0.024821529164910316, - -0.030064063146710396, - -0.0024200023617595434, - -0.014516794122755527, - 0.008945797570049763, - -0.04482559487223625, - -0.006147418171167374, - -0.006495202891528606, - 0.009261379949748516, - 0.0016431220574304461, - 0.007219754625111818, - -0.0028740547131747007, - -0.011979253962635994, - -0.008404798805713654, - -0.01544422097504139, - 0.006063692271709442, - 0.014349342323839664, - -0.023546317592263222, - 0.017376357689499855, - -0.02281210571527481, - -0.0093966294080019, - -0.0009032743982970715, - 0.015096436254680157, - -0.007406527642160654, - -0.02746211737394333, - -0.006936374120414257, - -0.02571031264960766, - 0.008829869329929352, - 0.002083488507196307, - -0.02980644442141056, - -0.027075689285993576, - -0.027719736099243164, - -0.0060958946123719215, - -0.006388935260474682, - 0.00025339180137962103, - 0.017234668135643005, - -0.0057416693307459354, - -0.013975796289741993, - -0.0116572305560112, - 0.014491032809019089, - 0.02054506354033947, - 0.02614826336503029, - 0.010729804635047913, - -0.018187856301665306, - 0.017659738659858704, - 0.01910240203142166, - 0.0441557876765728, - -0.006768922321498394, - 0.020210159942507744, - 0.00243127322755754, - -0.02251584455370903, - -0.008437001146376133, - 0.015547268092632294, - -0.02068675495684147, - 0.003297514980658889, - 0.0242676492780447, - 0.00763194402679801, - 0.023198533803224564, - -0.004186298232525587, - 0.007284159306436777, - -0.019360018894076347, - 0.01198569405823946, - 0.0074838134460151196, - 0.01633300445973873, - -0.0008855630876496434, - 0.038668517023324966, - -0.009422391653060913, - -0.028234971687197685, - -0.015457101166248322, - -0.0005510617629624903, - 0.036040809005498886, - -0.024396458640694618, - -0.006756041664630175, - -0.011380290612578392, - -0.01041422225534916, - 0.019694924354553223, - 0.002143062651157379, - 0.014941864646971226, - -0.011715195141732693, - -0.009976270608603954, - 0.022554486989974976, - -0.010658959858119488, - 0.01902511529624462, - -0.0016809598309919238, - -0.01056235283613205, - -0.0152252446860075, - 0.004150875844061375, - -0.010865054093301296, - 0.0012140264734625816, - 0.01005355641245842, - 0.020519303157925606, - 0.014774412848055363, - -0.027874305844306946, - 0.03531947731971741, - 0.013705296441912651, - 0.01952747069299221, - 0.024512385949492455, - -0.001375037943944335, - -0.01540557760745287, - 0.03104301169514656, - 0.008881392888724804, - 0.030321680009365082, - 0.024151721969246864, - 0.010903697460889816, - 0.01872885413467884, - -0.013602249324321747, - 0.003976983483880758, - 0.0187932588160038, - -0.0201715175062418, - 0.012565335258841515, - -0.01540557760745287, - 0.017904475331306458, - 0.00017741452029440552, - 0.027745496481657028, - 0.014941864646971226, - -0.0005204695626161993, - 0.005529134068638086, - 0.018406832590699196, - -6.807766476413235e-05, - -0.01406596228480339, - 0.0032186193857342005, - -0.0027597367297858, - -0.025916406884789467, - -0.008836309425532818, - 0.0008372596930712461, - 0.013975796289741993, - -0.0068268864415585995, - -0.004566285293549299, - -0.005374562926590443, - 0.0035776749718934298, - 0.010845732875168324, - 0.003767668502405286, - 0.006801124662160873, - 0.01602386124432087, - 0.008701059967279434, - -0.0019256972009316087, - -0.0032798037864267826, - -0.023958507925271988, - 0.02528524212539196, - 0.00016221906116697937, - -0.02507914789021015, - 3.305766949779354e-05, - -0.0010876324959099293, - -0.01474865060299635, - -0.006456559989601374, - -0.005967085249722004, - -0.015637435019016266, - -0.030476251617074013, - -0.011992134153842926, - 0.009564081206917763, - -0.027230260893702507, - 0.01572760008275509, - -0.0018806139705702662, - 0.008984440006315708, - 0.016410289332270622, - 0.006179620511829853, - 8.553734369343147e-05, - -0.03176434338092804, - -0.005529134068638086, - 0.03060506097972393, - 0.008308191783726215, - -0.006549946963787079, - -0.01362801156938076, - 0.003510050242766738, - -0.013988676480948925, - -0.005577437579631805, - -0.003345818491652608, - -0.00420883996412158, - 0.01683535985648632, - -0.0028853255789726973, - 0.023404628038406372, - 0.0009338665404357016, - -0.00583183579146862, - 0.07187552005052567, - 0.009351546876132488, - -0.004704755265265703, - -0.041347745805978775, - 0.0025294902734458447, - 0.01771126128733158, - 0.05268295481801033, - 0.002777447924017906, - 0.004170197062194347, - 0.010575233958661556, - 0.0042152805253863335, - -0.01162502821534872, - -0.007200432941317558, - -0.024873051792383194, - -0.010575233958661556, - -0.0036968234926462173, - -0.007799395825713873, - -0.016281479969620705, - 0.0076255034655332565, - -0.029265444725751877, - 0.006385715212672949, - 0.009029523469507694, - -0.009750855155289173, - -0.010291852988302708, - -0.0011415713233873248, - 0.005036438815295696, - -0.0020496761426329613, - -0.008752583526074886, - -0.015792004764080048, - 0.05312090367078781, - 0.02126639522612095, - 0.010182365775108337, - 0.021846037358045578, - 0.012777870520949364, - 0.004933391697704792, - -0.01486457884311676, - 0.0004077615449205041, - 0.013421916402876377, - 0.01954035274684429, - 0.03470119461417198, - -0.04101284220814705, - 0.00957696232944727, - 0.010987423360347748, - -0.01162502821534872, - 0.0194630678743124, - -0.005100843496620655, - 0.014053081162273884, - 0.011599266901612282, - 0.0029690514784306288, - -0.01588217169046402, - 0.011586385779082775, - -0.01849699765443802, - 0.005567776970565319, - 0.02301819995045662, - -0.0027597367297858, - -0.006363173481076956, - 0.013563606888055801, - -0.020815562456846237, - -0.029780682176351547, - -0.0009531879331916571, - 0.005802853498607874, - -0.021305037662386894, - 0.010214568115770817, - 0.0006263346294872463, - 0.013041929341852665, - -0.012223991565406322, - -0.039235275238752365, - -0.021382324397563934, - -0.0003270545566920191, - -0.016139790415763855, - -0.0110389469191432, - -0.014362223446369171, - -0.0006951670511625707, - -0.008288870565593243, - -0.012140264734625816, - -0.006385715212672949, - 0.03781837597489357, - -0.01968204230070114, - -0.015096436254680157, - 0.01558591052889824, - 0.02689535729587078, - 0.005216771736741066, - 0.015147959813475609, - -0.007619062904268503, - 0.0033136161509901285, - 9.201554348692298e-06, - -0.026792310178279877, - -0.02346903271973133, - -0.0054389676079154015, - -0.027951592579483986, - 0.0001962327369255945, - -0.0005450238240882754, - -0.010272531770169735, - -0.02403579279780388, - -0.013241583481431007, - 0.015611672773957253, - -0.017505167052149773, - -0.014478151686489582, - 0.008862071670591831, - -0.0070136599242687225, - -0.008108537644147873, - -0.004292565863579512, - 0.0007966042612679303, - 0.009911865927278996, - 0.032820578664541245, - -0.0422494113445282, - 0.03593776002526283, - 0.008720381185412407, - 0.012565335258841515, - 0.00040111984708346426, - 0.0009362816927023232, - -0.0024039014242589474, - -0.022271107882261276, - 0.0005172493401914835, - -0.008907155133783817, - -0.001409655436873436, - 0.019578995183110237, - -0.03962170332670212, - 0.010684721171855927, - -0.0059381029568612576, - 0.012211110442876816, - 0.005068641155958176, - -0.0017421441152691841, - 0.014516794122755527, - 0.029213922098279, - -0.008688178844749928, - -0.015096436254680157, - -0.040471844375133514, - 0.04459373652935028, - 0.015650315210223198, - 0.013093452900648117, - -0.0035068299621343613, - -0.011760277673602104, - 0.032305341213941574, - -0.028234971687197685, - -0.00023507674632128328, - -0.0211247056722641, - 0.0016439271857962012, - 0.01785295270383358, - -0.002086708787828684, - -0.034726954996585846, - -0.01858716458082199, - 0.008018371649086475, - 0.0132287023589015, - -0.03905494138598442, - 0.015199483372271061, - -0.05209043249487877, - 0.006244025193154812, - -0.00292235822416842, - 0.012404323555529118, - 0.02412595972418785, - -0.029523063451051712, - -0.011090470477938652, - 0.012114503420889378, - 0.00874614343047142, - 0.01930849626660347, - -0.029420016333460808, - -0.003030235879123211, - -0.01769838109612465, - 0.013615130446851254, - -0.021910442039370537, - -0.03936408460140228, - 0.023404628038406372, - -0.02337886579334736, - 0.03148096427321434, - 0.011637909337878227, - 0.02483440935611725, - 0.016281479969620705, - 0.035087618976831436, - -0.0009781447006389499, - -0.0075804200023412704, - -0.009486796334385872, - -1.5566538991151901e-07, - -0.0023314461577683687, - -0.012893798761069775, - 0.03258872404694557, - -0.005970305297523737, - 0.017904475331306458, - 0.007342123426496983, - 0.017389239743351936, - -0.0018242599908262491, - 0.03470119461417198, - -0.015251006931066513, - -0.01281651295721531, - -0.021768750622868538, - 0.0006496813148260117, - -0.009242058731615543, - 0.017891595140099525, - -0.0060765729285776615, - 0.005757770501077175, - -0.018020404502749443, - -0.001561006298288703, - 0.027745496481657028, - -0.006955695804208517, - -0.009705771692097187, - 0.0032363305799663067, - 0.005078301765024662, - -0.03163553401827812, - 0.026431644335389137, - 0.00032222422305494547, - -0.006730279419571161, - -0.008314632810652256, - -0.010330496355891228, - -0.02478288672864437, - -0.0323568657040596, - 0.02614826336503029, - -0.011135553941130638, - -0.0010296683758497238, - 0.012983965687453747, - 0.0015706669073551893, - 0.00025057411403395236, - 0.0002918333048000932, - 0.023778174072504044, - -0.013434797525405884, - 0.006021829321980476, - -0.006150638218969107, - -0.011599266901612282, - -0.001539269695058465, - 0.0016922305803745985, - -0.024203244596719742, - 0.0003936730499844998, - -0.005200670566409826, - 0.0015682517550885677, - 0.02813192456960678, - -0.01602386124432087, - 0.03364495933055878, - 0.024460863322019577, - 0.007573979906737804, - 0.03356767073273659, - 0.007857359945774078, - 0.031506724655628204, - 0.011914849281311035, - -0.02841530553996563, - -0.014478151686489582, - -0.02267041616141796, - -0.004063929431140423, - -0.02113758586347103, - 0.0020190838258713484, - 0.0041959588415920734, - -0.011303005740046501, - -0.012707025744020939, - 0.015985218808054924, - 0.01888342574238777, - 0.008424120023846626, - 0.007052302360534668, - 0.0447225458920002, - 0.03964746370911598, - 0.0008010320598259568, - -0.027745496481657028, - -0.013615130446851254, - -0.020313207060098648, - 0.007522455882281065, - -0.005419646389782429, - -0.008398358710110188, - -0.002560082357376814, - -0.004920510575175285, - 0.004495440516620874, - 0.045572686940431595, - 0.011869765818119049, - 0.022709058597683907, - -0.002146282931789756, - -0.015366935171186924, - -0.00026909043663181365, - -0.02543981373310089, - 0.007026540581136942, - 0.020776920020580292, - -0.00029847503174096346, - 0.027487879619002342, - 0.010246770456433296, - -0.023443270474672318, - 0.018406832590699196, - -0.014220532961189747, - 0.0049913558177649975, - 0.014555437490344048, - -0.0001781189494067803, - 0.021098943427205086, - -9.474519174546003e-05, - 0.000948357570450753, - -0.012095182202756405, - 0.013099893927574158, - 0.03841089829802513, - 0.001129495445638895, - 0.000704827718436718, - -0.0233144611120224, - -0.007052302360534668, - -0.017080096527934074, - 0.012771430425345898, - 0.006231144070625305, - 0.006569268181920052, - -0.006601470522582531, - -0.014710008166730404, - -0.0013798683648929, - -0.007309921085834503, - -0.004675773438066244, - 0.010324055328965187, - -0.01581776700913906, - -0.000987805426120758, - 0.018239378929138184, - -0.009686450473964214, - 0.01960475742816925, - -0.01231415756046772, - -0.02113758586347103, - -0.019256971776485443, - 0.019720684736967087, - -0.02782278321683407, - 0.02375241182744503, - 0.03452086076140404, - 0.0018902746960520744, - 0.015276768244802952, - 0.008469203487038612, - -0.008282430469989777, - -0.028106162324547768, - 0.020287444815039635, - -0.00910680927336216, - -0.03833361342549324, - 0.009274261072278023, - -0.007065183483064175, - 0.013396155089139938, - -0.013834105804562569, - 0.0018387510208413005, - 0.024679839611053467, - 0.004350529983639717, - -0.009821699932217598, - -0.009235617704689503, - -0.01829090341925621, - 0.015431339852511883, - 0.0037998708430677652, - -0.025684550404548645, - 0.04554692655801773, - -0.025452693924307823, - 0.016925526782870293, - 0.0018677330808714032, - 0.027925830334424973, - -0.030270157381892204, - -0.012507371604442596, - -0.017518049106001854, - -0.030115585774183273, - 0.008063454180955887, - -0.012062979862093925, - -0.0013613520422950387, - 0.003323276760056615, - -0.0216528233140707, - -0.026611976325511932, - 0.04232669621706009, - 0.0077800746075809, - 0.019836613908410072, - -0.002664739964529872, - 0.010923018679022789, - -0.013396155089139938, - 0.011251482181251049, - 0.0001855657174019143, - 0.0008324293303303421, - -0.011573504656553268, - -0.008617334067821503, - -0.05144638568162918, - -0.011914849281311035, - -0.002866004128009081, - 0.02769397385418415, - 0.017002811655402184, - -0.03096572682261467, - -0.0003399354754947126, - 0.010774888098239899, - -0.057448893785476685, - -0.01526388805359602, - 0.00553557462990284, - -0.008095656521618366, - 0.0069685764610767365, - 0.007226195186376572, - -0.007586860563606024, - 0.022412797436118126, - 0.00039327051490545273, - 0.021897559985518456, - -0.029677635058760643, - -0.01279075164347887, - -0.012430085800588131, - -0.010910137556493282, - 0.039750512689352036, - 0.0018484117463231087, - -0.008005490526556969, - -0.01406596228480339, - 0.011618588119745255, - -0.01733771525323391, - -0.003815972013399005, - 0.019205449149012566, - -0.014156129211187363, - 0.004563065245747566, - -0.00889427401125431, - 0.014825936406850815, - 0.003474627621471882, - 0.004624249413609505, - 0.0022187381982803345, - -0.0189349502325058, - 0.009390189312398434, - 0.028956303372979164, - 0.0017485845601186156, - -0.03271752968430519, - 0.005757770501077175, - 0.000340539263561368, - -0.006018608808517456, - -0.007863800041377544, - 0.015212364494800568, - -0.03096572682261467, - -0.008379037491977215, - -0.014091724529862404, - 0.01388562936335802, - 0.021974846720695496, - -0.005052539985626936, - 0.013318869285285473, - -0.0011737736640498042, - -0.01793023757636547, - -0.03081115521490574, - 0.015792004764080048, - -0.01915392465889454, - 0.017814310267567635, - 0.012507371604442596, - 0.0010972932213917375, - 0.028879018500447273, - -0.028157686814665794, - 0.017685500904917717, - -0.010246770456433296, - 0.018922068178653717, - -0.025529978796839714, - -0.01490322221070528, - -0.004775600507855415, - 0.005635401699692011, - 0.015701839700341225, - -0.002888545859605074, - 0.016010981053113937, - 0.0068719699047505856, - -0.011972812935709953, - -0.000991830718703568, - -0.0036549605429172516, - 0.0017018913058564067, - -0.02382969856262207, - -0.0016286310274153948, - 0.008623774163424969, - -0.004299006424844265, - -0.0013653773348778486, - 0.00763194402679801, - 0.013016168028116226, - -0.026843832805752754, - 0.011315886862576008, - 0.18569131195545197, - -0.007677027024328709, - -0.011521981097757816, - 0.016732312738895416, - -0.010665399953722954, - -0.01023388933390379, - 0.005358461756259203, - 0.001478890422731638, - -0.027590926736593246, - 0.025761835277080536, - -0.02841530553996563, - 0.01888342574238777, - -0.007213314063847065, - 0.0030254055745899677, - 0.017363477498292923, - -0.007619062904268503, - -0.01865156926214695, - -0.0004367436340544373, - 0.007876681163907051, - 0.01959187537431717, - 0.025478456169366837, - -0.030398966744542122, - 0.0026921117678284645, - -0.000640423153527081, - 0.03817903995513916, - 0.004630689974874258, - 0.006820445880293846, - -0.0011608927743509412, - 0.017067216336727142, - 0.0073228017427027225, - 0.011257922276854515, - 0.005049319937825203, - 0.007251956965774298, - -0.011425374075770378, - 0.0010143723338842392, - 0.014735770411789417, - 0.022129416465759277, - -0.01945018582046032, - 0.041553840041160583, - 0.01727331057190895, - -0.015212364494800568, - -0.02456391043961048, - -0.01281651295721531, - -0.0001539672230137512, - -0.017080096527934074, - 0.02397138811647892, - -0.014336461201310158, - 0.007000778801739216, - -0.000909714843146503, - -0.008836309425532818, - -0.029548825696110725, - -0.020570825785398483, - 0.019862376153469086, - 0.02674078568816185, - -0.014336461201310158, - 0.005126605276018381, - 0.013383273966610432, - -0.01954035274684429, - 0.009409510530531406, - 0.00987322349101305, - -0.038513943552970886, - 0.038436658680438995, - -0.007277718745172024, - 0.021601298823952675, - -0.027307545766234398, - -0.01872885413467884, - -0.03570590540766716, - 0.022039251402020454, - -0.008069895207881927, - -0.0037708887830376625, - -0.0129646435379982, - -0.019978303462266922, - -0.02717873640358448, - 0.015160840004682541, - -0.006897731684148312, - -0.015972338616847992, - 0.021446729078888893, - -0.0027210938278585672, - 0.018200736492872238, - 0.008990881033241749, - -0.023803936317563057, - 0.020519303157925606, - 0.0045469640754163265, - -0.023056842386722565, - 0.0025842341128736734, - -0.041347745805978775, - 0.014027319848537445, - -0.006627232301980257, - 0.006472661159932613, - -0.02040337398648262, - -0.010749125853180885, - 0.022039251402020454, - -0.0015585910296067595, - -0.021846037358045578, - 0.01791735738515854, - -0.011972812935709953, - 0.017943117767572403, - 0.009377308189868927, - -0.02353343740105629, - 0.01308057177811861, - -0.002392630558460951, - 0.03933832421898842, - 0.030424728989601135, - -0.017092978581786156, - -0.013705296441912651, - 0.01504491176456213, - -0.01677095517516136, - 0.023584960028529167, - 0.0028305817395448685, - -0.0012574995635077357, - 0.010478626936674118, - -0.030450489372015, - 0.012449407018721104, - 0.0001987485447898507, - 0.0008694619755260646, - 0.012958203442394733, - -0.0017099418910220265, - -0.019630519673228264, - -0.0024473743978887796, - -0.011373850516974926, - -0.021524013951420784, - 0.009596283547580242, - 0.010691162198781967, - 0.00921629648655653, - 0.02448662556707859, - -0.021897559985518456, - -0.04588183015584946, - 0.008559370413422585, - -0.013756820000708103, - 0.008810548111796379, - 0.015135078690946102, - -0.03276905417442322, - -0.009763735346496105, - 0.012707025744020939, - -0.00470153521746397, - 0.023443270474672318, - 9.35879215830937e-05, - -0.039467133581638336, - 0.013911391608417034, - -0.0029738820157945156, - 0.009306463412940502, - -0.025607265532016754, - -0.0023652585223317146, - -0.017878714948892593, - 0.0107040423899889, - 0.009016642346978188, - -0.00473373755812645, - 0.0036839426029473543, - -0.014091724529862404, - -0.018303783610463142, - 0.004939831793308258, - -0.0035680143628269434, - -0.00022139077191241086, - -0.02442222088575363, - 0.024151721969246864, - 0.001129495445638895, - -0.0006368003669194877, - -0.03637571260333061, - 0.005381003487855196, - 0.005445408169180155, - 0.0006621596985496581, - 0.013718177564442158, - -0.01168943289667368, - -0.014825936406850815, - -0.001116614555940032, - 0.0018822241108864546, - -0.16075386106967926, - 0.01002135407179594, - 0.022606011480093002, - -0.02478288672864437, - 0.010523710399866104, - -0.000668197637423873, - -0.0020158635452389717, - -0.012958203442394733, - -0.023262938484549522, - -0.0069685764610767365, - 0.03331005200743675, - 0.00037817569682374597, - -0.0166035033762455, - -0.0020158635452389717, - -0.0002556057006586343, - 0.003207348519936204, - -0.011521981097757816, - 0.030733870342373848, - 0.025774717330932617, - 0.02689535729587078, - -0.006343852262943983, - -0.03176434338092804, - 0.013563606888055801, - -0.015392696484923363, - 0.018200736492872238, - -0.005786752328276634, - -0.01807192713022232, - 0.009151891805231571, - 0.0028982064686715603, - -0.028982065618038177, - 0.0025375408586114645, - -0.0004003147769253701, - 0.01968204230070114, - -0.02514355257153511, - 0.004395613446831703, - -0.012861596420407295, - 0.009770176373422146, - -0.003616317640990019, - -0.007348563522100449, - 0.02717873640358448, - 0.03168705850839615, - -0.0030930303037166595, - -0.026715023443102837, - 0.009126130491495132, - -0.02856987528502941, - -0.002685671439394355, - 0.023043962195515633, - 0.015251006931066513, - -0.020712515339255333, - -0.0021350120659917593, - 0.009293582290410995, - -0.009937628172338009, - -0.00014913687482476234, - 0.019939661026000977, - -0.004959153477102518, - 0.03302667289972305, - -0.0010022964561358094, - 0.014220532961189747, - -0.0005679680034518242, - 0.004933391697704792, - 0.0020545064471662045, - -0.019488828256726265, - -0.0009378918330185115, - 0.01395003404468298, - 0.005645062308758497, - -0.027436355128884315, - 0.004563065245747566, - 0.007960407063364983, - -0.014400865882635117, - 0.007071624044328928, - -0.031300630420446396, - -0.0007575589697808027, - 0.03964746370911598, - -0.001232542796060443, - -0.004321548156440258, - 0.01486457884311676, - -0.0003753580094780773, - -0.0011093690991401672, - 0.006929934024810791, - 0.0043569705449044704, - -0.01954035274684429, - 0.049797628074884415, - -0.030476251617074013, - -0.0025149991270154715, - -0.01938578113913536, - 0.008939357474446297, - 0.02258024923503399, - -0.014117485843598843, - 0.01281651295721531, - 0.006704517640173435, - 0.016062505543231964, - -0.029265444725751877, - -0.030192872509360313, - -0.004508321173489094, - 0.008224465884268284, - -0.003500389400869608, - 0.022180940955877304, - -0.008527168072760105, - -0.012546014040708542, - -0.03279481828212738, - 0.01074268575757742, - -0.022103656083345413, - -0.024963218718767166, - -0.013215822167694569, - 0.01929561421275139, - 0.011786039918661118, - -0.016809597611427307, - 0.0011528421891853213, - 0.030733870342373848, - -0.020789802074432373, - -0.015392696484923363, - -0.013718177564442158, - 0.022902272641658783, - -0.004746618214994669, - -0.013177178800106049, - 0.001806548796594143, - 0.02900782786309719, - -0.02098301611840725, - -0.011554183438420296, - -0.015289649367332458, - 0.03627266362309456, - 0.009267820045351982, - -0.023056842386722565, - 0.012848715297877789, - 0.008655976504087448, - -0.020493540912866592, - -0.0748123750090599, - 0.001806548796594143, - 0.00928714219480753, - 0.011315886862576008, - 0.029626110568642616, - 0.0068268864415585995, - -0.00928714219480753, - 0.016294362023472786, - 0.006182840559631586, - 0.016126908361911774, - -0.05574861168861389, - -0.018200736492872238, - 0.0015320241218432784, - -0.01691264472901821, - 0.0035068299621343613, - -0.015895051881670952, - -0.006070132367312908, - -0.02733330801129341, - -0.012114503420889378, - 0.02653469145298004, - 0.017286192625761032, - -0.014813055284321308, - -0.01952747069299221, - -0.0036452997010201216, - 0.004730517044663429, - 0.010214568115770817, - -0.021034538745880127, - 0.0020029826555401087, - 0.00888783298432827, - 0.009667129255831242, - 0.025671670213341713, - -0.007477372884750366, - 0.028595637530088425, - -0.032305341213941574, - 0.006781803444027901, - 0.0009966610232368112, - 0.0014426627894863486, - -0.031944677233695984, - 0.0030125246848911047, - -0.026405882090330124, - -0.014207652769982815, - 0.004782040603458881, - 0.04889596626162529, - -0.028544114902615547, - 0.005361682269722223, - -0.020429136231541634, - -0.017827190458774567, - -0.004160536453127861, - -0.0116572305560112, - -0.025323884561657906, - -0.033103957772254944, - -0.019475948065519333, - -0.0016712991055101156, - 0.00013474647130351514, - 0.029162397608160973, - 0.024808647111058235, - -0.007947525940835476, - -0.005593538749963045, - -0.015920814126729965, - -0.017891595140099525, - -0.019321376457810402, - 0.02936849370598793, - -0.02572319284081459, - 0.02381681650876999, - 0.01326734572649002, - -0.02738483063876629, - -0.02068675495684147, - -0.02062235027551651, - 0.006756041664630175, - -0.027797020971775055, - -0.024718482047319412, - -0.0035164905712008476, - 0.008675298653542995, - -0.012771430425345898, - -0.03176434338092804, - -0.004022066481411457, - -0.028595637530088425, - -0.01682247966527939, - 0.0030543876346200705, - -0.017801428213715553, - -0.027668211609125137, - -0.028544114902615547, - 0.02710145153105259, - 0.008437001146376133, - 0.02856987528502941, - -0.012385002337396145, - 0.0008759024203754961, - -0.01023388933390379, - 0.012288395315408707, - -0.015122197568416595, - 0.007232635281980038, - -0.01041422225534916, - 0.008984440006315708, - -0.011921289376914501, - -0.00402850704267621, - -0.004511541686952114, - 0.007818717509508133, - 0.003039896721020341, - 0.01308057177811861, - 0.0036936032120138407, - -0.02805463969707489, - -0.012719906866550446, - -0.04384664446115494, - 0.015534386970102787, - 0.009332224726676941, - -0.015019150450825691, - 0.0015102876350283623, - 0.0012542793992906809, - 0.023275818675756454, - 0.0064823217689991, - 0.0056321811862289906, - 0.00018445876776240766, - 0.0035583535209298134, - 0.024138839915394783, - 0.006672315299510956, - -0.016436051577329636, - -0.026508929207921028, - -0.02178163267672062, - 0.0031445540953427553, - 0.012732787057757378, - 0.025182195007801056, - 0.009454593993723392, - -0.02281210571527481, - 0.010014913976192474, - -0.015843529254198074, - 0.012752109207212925, - -0.026058096438646317, - 0.008810548111796379, - -0.019759327173233032, - -0.0076255034655332565, - -0.008726822212338448, - -0.01747940480709076, - -0.012339919805526733, - -0.006575708743184805, - -0.020416254177689552, - 0.0069878981448709965, - 0.0029304088093340397, - -0.007683467585593462, - 0.008437001146376133, - 0.04147655516862869, - 0.013357511721551418, - 0.05780956149101257, - -0.03423748165369034, - -0.02972915768623352, - 0.009686450473964214, - -0.038642752915620804, - 0.005368122365325689, - -0.00614097760990262, - 0.010188805870711803, - 7.909688429208472e-05, - 0.008166502229869366, - -0.022271107882261276, - 0.04160536453127861, - 0.011457576416432858, - 0.0008340394124388695, - -0.017221787944436073, - 0.038720037788152695, - -0.021833155304193497, - 0.0012108063092455268, - 0.011728075332939625, - -0.018020404502749443, - -0.024898814037442207, - 0.019849494099617004, - 0.01074268575757742, - 0.004933391697704792, - 0.01100674457848072, - 0.03307819738984108, - -0.028234971687197685, - -0.03627266362309456, - 0.011109791696071625, - 0.01952747069299221, - -0.010955221019685268, - -0.016152670606970787, - -0.009267820045351982, - -0.0039157988503575325, - 0.026431644335389137, - -0.014194771647453308, - -0.007606182247400284, - 0.022786343470215797, - -0.011019625701010227, - 0.010221008211374283, - 0.03531947731971741, - 0.010317615233361721, - 0.020313207060098648, - -0.009242058731615543, - -0.011869765818119049, - 0.03119758330285549, - 0.010324055328965187, - -0.018265141174197197, - -0.007193992845714092, - -0.00021011997887399048, - 0.0026019453071057796, - 0.015714719891548157, - 0.006917052902281284, - -0.004257143475115299, - -0.0031574349850416183, - 0.024757124483585358, - 0.012204669415950775, - 6.173783913254738e-05, - -0.023224294185638428, - 0.008082776330411434, - 0.041708413511514664, - -0.009750855155289173, - 0.0005961449933238328, - -0.0026969423051923513, - -0.019437305629253387, - -0.014941864646971226, - 0.007702788803726435, - -0.012030777521431446, - -0.04861258342862129, - -0.020944371819496155, - 0.012230431661009789, - -0.018252260982990265, - 0.019037997350096703, - -0.0007945916149765253, - -0.00925493985414505, - -0.01691264472901821, - 0.042867694050073624, - -0.004395613446831703, - -0.018187856301665306, - -0.021897559985518456, - -0.007387206424027681, - 0.015753362327814102, - -0.0026148264296352863, - 0.006285888142883778, - 0.006012168247252703, - 0.012719906866550446, - 0.0206996351480484, - 0.008688178844749928, - 0.0015070673543959856, - 0.012404323555529118, - -0.021163348108530045, - 0.027204498648643494, - -0.011747397482395172, - -0.03650452196598053, - -0.013344630599021912, - -0.00453730346634984, - -0.01314497645944357, - 0.005252194125205278, - 0.02004270814359188, - 0.021008776500821114, - 0.09768888354301453, - 0.02900782786309719, - 0.01747940480709076, - -0.023056842386722565, - -0.013383273966610432, - 0.0174150001257658, - 0.0062182629480957985, - 0.015598791651427746, - -0.0006327750743366778, - -0.058685462921857834, - -0.003635639091953635, - -0.006781803444027901, - 0.017530929297208786, - -0.02543981373310089, - -0.01880614086985588, - 0.022966677322983742, - -0.028106162324547768, - 0.014194771647453308, - -0.0020883188117295504, - 0.033052437007427216, - 0.036324188113212585, - -0.009081047028303146, - 0.025839122012257576, - 0.021034538745880127, - -0.04188874363899231, - -0.009956949390470982, - 0.0022493302822113037, - -0.02214229851961136, - -0.00225899089127779, - 0.0009491626406088471, - -0.020789802074432373, - 0.0009886104380711913, - -0.06728991866111755, - -0.012005015276372433, - 0.028982065618038177, - 0.003603436751291156, - -0.030347442254424095, - -0.025452693924307823, - 0.023572079837322235, - 0.0054421876557171345, - 0.009454593993723392, - 0.019862376153469086, - -0.02746211737394333, - -0.014491032809019089, - -0.012404323555529118, - -0.014645603485405445, - 0.0026486387941986322, - -0.01778854802250862, - -0.04021422564983368 - ], - "sparse": "SparseEmbedding(values=array([1.1112865 , 0.74340021, 0.74340021, 0.74340021, 2.0122499 ,\n 1.1112865 , 1.92990014, 1.1112865 , 1.92990014, 1.1112865 ,\n 0.74340021, 1.65842167, 1.33081285, 1.80667237, 1.76717917,\n 1.1112865 , 1.1112865 , 0.74340021, 0.74340021, 0.74340021,\n 1.1112865 , 0.74340021, 1.58060171, 1.76717917, 1.1112865 ,\n 0.74340021, 0.74340021, 0.74340021, 1.1112865 , 1.1112865 ,\n 1.1112865 , 1.1112865 , 1.1112865 , 1.47666492, 0.74340021,\n 0.74340021, 0.74340021, 1.76717917, 1.47666492, 0.74340021,\n 1.47666492, 1.47666492, 0.74340021, 1.91184458, 1.1112865 ,\n 0.74340021, 1.33081285, 0.74340021, 1.1112865 , 0.74340021,\n 0.74340021, 0.74340021, 1.65842167, 1.7188699 , 1.1112865 ,\n 1.86737401, 0.74340021, 0.74340021, 0.74340021, 1.33081285,\n 1.33081285, 1.1112865 , 1.33081285, 0.74340021, 1.58060171,\n 0.74340021, 0.74340021, 1.1112865 , 0.74340021, 0.74340021,\n 1.33081285, 1.58060171, 1.1112865 , 0.74340021, 1.47666492,\n 1.1112865 , 1.1112865 , 1.33081285, 1.1112865 , 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 1.1112865 , 1.33081285, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 1.1112865 ,\n 1.1112865 , 0.74340021, 0.74340021, 1.1112865 , 1.1112865 ,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 1.1112865 , 0.74340021, 1.58060171,\n 0.74340021, 1.1112865 , 0.74340021, 0.74340021, 0.74340021,\n 1.1112865 , 0.74340021, 0.74340021, 0.74340021, 1.1112865 ,\n 1.1112865 , 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 1.58060171, 1.76717917, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 1.1112865 , 0.74340021, 0.74340021, 0.74340021,\n 1.1112865 , 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 1.33081285, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 1.33081285, 0.74340021, 0.74340021, 1.1112865 , 0.74340021,\n 0.74340021, 1.47666492, 1.33081285, 1.33081285, 0.74340021,\n 0.74340021, 1.1112865 , 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 1.1112865 ,\n 0.74340021, 0.74340021, 0.74340021, 1.1112865 , 0.74340021,\n 0.74340021, 1.33081285, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 1.1112865 , 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 1.1112865 ,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021, 0.74340021, 0.74340021,\n 0.74340021, 0.74340021, 0.74340021]), indices=array([ 19522071, 1394226660, 1876705040, 1875908499, 408270109,\n 1533740972, 1109731834, 2124672130, 164058840, 1125382419,\n 108945121, 1638510030, 860787312, 2103309648, 651773314,\n 1362353402, 1553747220, 641040124, 1843801073, 1167073666,\n 401493245, 773081752, 717918380, 231980230, 812080723,\n 285518910, 1239234285, 1955813047, 1250840209, 1906659015,\n 1385657244, 150760872, 650015492, 1946058775, 1609591472,\n 1392751812, 1424310845, 197670987, 440587275, 284485196,\n 912658635, 255174557, 818168279, 1047604504, 1788212450,\n 306154072, 1182314734, 2072781702, 766175632, 404895453,\n 1989933029, 311555615, 1174634009, 147047731, 190652800,\n 47951928, 2139718683, 1270725486, 1822615852, 1610176724,\n 1413554298, 2137308367, 403065061, 957676387, 1669595920,\n 2020385534, 1884497070, 1742227926, 485153233, 333361198,\n 1095274335, 1505931685, 1082106827, 2058927111, 502919461,\n 1841328727, 1294733183, 2002512088, 1778304801, 1180476291,\n 745397317, 1344876954, 62479299, 44463977, 1800478942,\n 1721714878, 1214749696, 1515684580, 1131799396, 1246395387,\n 1860940623, 218603535, 1950272050, 1714523442, 1703882852,\n 1684287069, 1806910855, 1885258611, 476704413, 1354425271,\n 1091812557, 1996177106, 715386164, 1392079869, 2024811619,\n 1935340272, 221688199, 37224978, 2061604372, 1079921207,\n 764297089, 264741300, 516762017, 833760702, 1125205234,\n 915344176, 560980618, 1440362216, 1905284006, 900543307,\n 407244595, 741542378, 1378902744, 1219669695, 1416371393,\n 1680012685, 1145351551, 1755951682, 759690987, 1042559094,\n 843816345, 433708589, 1550900382, 1155594139, 1123925554,\n 1590034896, 643383837, 744689260, 14487902, 176244452,\n 1788297724, 400876399, 720732358, 887661226, 1923631478,\n 1147900472, 148163374, 1356962648, 2024429565, 938919041,\n 1793743868, 1158972797, 1782143793, 1458840221, 1087744415,\n 282641921, 1125623744, 1494614976, 1792064979, 1597181229,\n 482341621, 1407327463, 338155252, 158892033, 781531346,\n 1284206673, 1286817522, 2060613885, 367467701, 391004348,\n 1504586142, 738624403, 958808074, 1394528966, 1504630294,\n 739092865, 1358093424, 1731034116, 766886952, 450828879,\n 1437147823, 1390320117, 1267411758, 1081613417, 69703971,\n 1212558026, 597643829, 1465366791, 114406085, 2124172637,\n 76479261, 1162941628, 2101435494, 2106376835, 1092019847,\n 1148497015, 735402461, 2114235686, 1696483718, 760377859,\n 2143189012, 1112230396, 601762292, 1657421128, 17485943,\n 544882233, 1035540178, 1756741218, 991653233, 180442097,\n 1299114321, 363211781, 1313526034, 496086325, 1818702084,\n 186726902, 2075414014, 1204466013, 70307177, 2046399687,\n 675286474, 1918983413, 662898290, 482339917, 1174135059,\n 1381219851, 1975311753, 14937058, 2091617115, 1812441733,\n 99212807, 691794919, 1915491584, 171578675, 1885991395,\n 2053391496, 499733850, 1078043482, 1834200800, 728497482,\n 1692320747, 1654103847, 764035188, 14784032, 1187567306,\n 1749031367, 471957998, 1676350980]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 52, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 486 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000053.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000053.json deleted file mode 100644 index 84a634f28add7c9a844cd9c08cce6d71e5415b43..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000053.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000053", - "content": "3 Methodik und Toolerl\u00e4uterung Dieses Kapitel dient einer \u00dcbersicht \u00fcber die angewandte Methodik. Zun\u00e4chst wird auf die einzelnen Schritte und anschlie\u00dfend auf die ben\u00f6tigten Tools eingegangen.", - "embedding": { - "dense": [ - 0.009936189278960228, - 0.01086390856653452, - 0.012514607980847359, - -0.053948454558849335, - -0.010831917636096478, - 0.014830706641077995, - -0.023762399330735207, - -0.007504926063120365, - -0.008048761636018753, - -0.022290846332907677, - 0.002288906369358301, - 0.00813833437860012, - 0.001909821294248104, - 0.015662454068660736, - 0.0009597092284820974, - 0.004731366410851479, - 0.04360918700695038, - -0.005591905675828457, - 0.012188307009637356, - 0.01870793104171753, - -0.00796558614820242, - 0.01214991882443428, - 0.013231190852820873, - -0.00560790067538619, - -0.0057838475331664085, - 0.01838802918791771, - 0.009923392906785011, - -0.026232052594423294, - -0.005735862068831921, - 0.005844628904014826, - -0.005697473883628845, - -0.01651979424059391, - 0.004424259532243013, - -0.0056334929540753365, - -0.027383701875805855, - 0.003021484473720193, - 0.020128300413489342, - 0.012584987096488476, - 0.0009517116122879088, - 0.009654674679040909, - -0.0010980672668665648, - -0.0039731962606310844, - -0.0023224963806569576, - -0.03168319910764694, - 0.000643405073788017, - 0.01640462875366211, - 0.0060877553187310696, - -0.008061557076871395, - -0.030403587967157364, - 0.031913530081510544, - 0.012194705195724964, - 0.02871450036764145, - -0.023416904732584953, - 0.0024760498199611902, - -0.0062605030834674835, - 0.018528785556554794, - -0.010448033921420574, - 0.034805454313755035, - 0.010236898437142372, - -0.015099424868822098, - -0.035803552716970444, - 0.015713639557361603, - -0.018336843699216843, - -0.007421751040965319, - -0.008067955262959003, - -0.0024424600414931774, - -0.006510027684271336, - 0.02363443933427334, - -0.007639285176992416, - 0.01886148564517498, - 0.0065580131486058235, - 0.018976649269461632, - 0.036161843687295914, - -0.008970081806182861, - 0.025988925248384476, - -0.011490918695926666, - -0.014817910268902779, - -0.031913530081510544, - 0.013231190852820873, - 0.00320702837780118, - 0.00836226623505354, - 0.0014275674475356936, - -0.025669021531939507, - 0.03319314122200012, - 0.0018826295854523778, - 0.0008725356310606003, - 0.008247100748121738, - 0.009136431850492954, - -0.019475698471069336, - 0.0008517419337294996, - -0.012405840680003166, - 0.020166689530014992, - 0.014050142839550972, - 0.0004998485674150288, - -0.0029910937882959843, - -0.0015243381494656205, - 0.012085937894880772, - 0.030173256993293762, - 0.005473541561514139, - -0.02410789579153061, - -0.013205599039793015, - -0.0073385764844715595, - -0.007792838849127293, - 0.002434462308883667, - -0.047396838665008545, - -0.025630634278059006, - 0.005879818461835384, - 0.008771741762757301, - 0.005278400611132383, - -0.01360227819532156, - -0.0030550742521882057, - 0.041715361177921295, - -0.014024551026523113, - -0.006398061290383339, - 0.024274244904518127, - -0.02735811099410057, - 0.01632785238325596, - -0.028177062049508095, - 0.010217703878879547, - -0.006653983611613512, - 0.025208361446857452, - 0.01034566480666399, - 0.03938646614551544, - -0.010230500251054764, - 0.003534928895533085, - -0.01942451484501362, - -0.011983568780124187, - -0.010812724009156227, - -0.013359151780605316, - -0.02426144853234291, - 0.0003540927136782557, - -0.001921017887070775, - -0.0013028052635490894, - 0.01421649195253849, - -0.012021956965327263, - 0.005822235718369484, - -0.005998182576149702, - 0.023928750306367874, - -0.022367622703313828, - -0.03186234459280968, - 3.227147090001381e-06, - -0.006353274919092655, - -0.003947603981941938, - -0.03628980368375778, - 0.009718655608594418, - 0.007562508340924978, - 0.005691075697541237, - 0.02620645985007286, - -0.0037652591709047556, - -0.016263872385025024, - -0.017492299899458885, - -0.03513815253973007, - 0.03145286813378334, - 0.00567827932536602, - 0.002632802352309227, - 0.020000340417027473, - -0.0062093185260891914, - 0.0038964194245636463, - 4.148743028054014e-05, - -0.00836226623505354, - 0.0010012965649366379, - -0.006122944876551628, - 0.016660552471876144, - 0.006526022683829069, - 0.027972323819994926, - 0.015982357785105705, - 0.017581872642040253, - -0.028484169393777847, - 0.011964375153183937, - -0.004948900546878576, - -0.02441500313580036, - 0.010985471308231354, - 0.006602799519896507, - 0.03787652403116226, - -0.019130203872919083, - -0.007946392521262169, - 0.03132490813732147, - -0.010435238480567932, - -0.010915093123912811, - -0.025592245161533356, - -0.019885174930095673, - -0.010812724009156227, - 0.0007693668594583869, - 0.0025256348308175802, - -0.028765683993697166, - 0.005950197111815214, - -0.009539509192109108, - 0.015240182168781757, - 0.005662284325808287, - -0.0026008118875324726, - 0.023839177563786507, - 0.007863217033445835, - 0.02552826516330242, - 0.013627870939671993, - -0.6396014094352722, - 0.0005986186442896724, - -0.0230714101344347, - -0.0063340808264911175, - 0.007280993741005659, - 0.00928998552262783, - 0.009980975650250912, - 0.004891317803412676, - -0.012732142582535744, - 0.035598814487457275, - 0.009565101936459541, - -0.022546768188476562, - 0.015560084953904152, - -0.022150088101625443, - -0.027511663734912872, - -0.026615934446454048, - -0.020512184128165245, - -0.02986614964902401, - 0.00550873065367341, - 0.02163824439048767, - -0.027153372764587402, - 0.004862526431679726, - 0.014485211111605167, - -0.006609197240322828, - -0.0013619873207062483, - -0.00022253257338888943, - 0.017466707155108452, - -0.00877813994884491, - 0.025003623217344284, - -0.003685283474624157, - -0.020832087844610214, - 0.014293269254267216, - -0.01735154166817665, - 0.012021956965327263, - 0.033730581402778625, - -0.004241914488375187, - -0.022022128105163574, - 0.009366761893033981, - 0.011785228736698627, - 0.018247270956635475, - -0.036238618195056915, - -0.012373850680887699, - -0.0028087489772588015, - 0.003502938663586974, - 0.009405150078237057, - -0.005841430276632309, - 0.031120169907808304, - -0.0039252107962965965, - 0.004296298138797283, - 0.012124326080083847, - -0.005438352003693581, - -0.004395468160510063, - 0.004462647717446089, - 0.004836934618651867, - 0.0067371586337685585, - 0.012143520638346672, - -0.0010564798722043633, - -0.018912669271230698, - 0.0016906877281144261, - 0.00781203294172883, - -0.013359151780605316, - -0.0051824296824634075, - -0.017044436186552048, - -0.025707410648465157, - -0.0541531927883625, - 0.027767585590481758, - -0.021215971559286118, - -0.021177582442760468, - 0.01371744368225336, - -0.014126919209957123, - -0.020793698728084564, - 0.020998436957597733, - -0.004715371411293745, - -0.01965484395623207, - 0.0037492639385163784, - 0.01264896709471941, - 0.00043026963248848915, - -0.015061036683619022, - 0.005915007553994656, - -0.021024029701948166, - -0.007581702899187803, - 0.010972674936056137, - -0.0008185519836843014, - 0.0038964194245636463, - 0.02441500313580036, - -0.017901776358485222, - -0.030608326196670532, - -0.01974441669881344, - 0.0027991519309580326, - 0.013551093637943268, - 0.022687526419758797, - 0.012514607980847359, - -0.01810651458799839, - 0.004536225460469723, - -0.02323775924742222, - 0.025605041533708572, - 0.01088310219347477, - 0.006257303990423679, - 0.006634789519011974, - -0.0347030833363533, - -0.006609197240322828, - -0.00035309302620589733, - 0.018695134669542313, - 0.00016794911061879247, - -0.010371257551014423, - 0.00987220834940672, - -0.02633441984653473, - -0.000637406890746206, - 0.03877225145697594, - -0.002621605759486556, - -0.0010684762382879853, - 0.0061101485043764114, - -0.016788512468338013, - -0.001579521456733346, - -0.004235516767948866, - -0.025541061535477638, - 0.03209267556667328, - 0.004037176724523306, - 0.00793999433517456, - -0.016622163355350494, - 0.010607985779643059, - -0.0021513481624424458, - 0.018835892900824547, - -0.02728133462369442, - 0.012316267937421799, - 0.024530166760087013, - -0.002581617794930935, - -0.010448033921420574, - -0.02815146930515766, - 0.0015019449638202786, - -0.00937316007912159, - -0.0021481490693986416, - 0.039975088089704514, - -0.004657788667827845, - 0.00992979109287262, - 0.0013148016296327114, - 0.008611790835857391, - -0.007984780706465244, - 0.011727646924555302, - -0.010934286750853062, - -0.013691850937902927, - 0.009321975521743298, - 0.021459097042679787, - -0.03173438459634781, - -0.020320242270827293, - -0.041126739233732224, - -0.004875322803854942, - 0.01032647117972374, - 0.003119054948911071, - 0.03355143219232559, - -0.003490142524242401, - 0.002631202805787325, - 0.016263872385025024, - 0.012604180723428726, - 0.018375232815742493, - 0.010620782151818275, - -0.007108245976269245, - -0.023416904732584953, - -0.015867192298173904, - -0.038106855005025864, - 0.010307276621460915, - 0.026257643476128578, - -0.04795986786484718, - 0.0009093245025724173, - -0.01870793104171753, - -0.015444920398294926, - 0.014165308326482773, - 0.017172396183013916, - -0.038746658712625504, - -0.03677605837583542, - 0.013934977352619171, - -0.006890712305903435, - -0.019015038385987282, - 0.0020617751870304346, - -0.015432124026119709, - -0.0005530324415303767, - -0.02184298075735569, - -0.015662454068660736, - -0.007594498805701733, - -0.008464635349810123, - 0.011862006038427353, - -0.011938782408833504, - 0.004027579445391893, - -0.01823447458446026, - 0.01604633778333664, - 0.006452444940805435, - 0.023647235706448555, - 0.021190378814935684, - -0.005358376540243626, - 0.010012965649366379, - 0.0007701666327193379, - 0.039181727916002274, - -0.0010684762382879853, - 0.0023672827519476414, - -0.016737328842282295, - 0.00911723729223013, - -0.010575995780527592, - 0.0059885852970182896, - -0.00588941527530551, - 0.0230714101344347, - 0.042713459581136703, - 0.00029091184842400253, - 0.01953968033194542, - -0.012924084439873695, - 0.013794220052659512, - -0.028305023908615112, - 0.0037044775672256947, - -0.0077416542917490005, - 0.034012094140052795, - -0.000813753460533917, - 0.023608846589922905, - -0.038900211453437805, - -0.03396090865135193, - -0.012808918952941895, - 0.0006945895147509873, - 0.002618406666442752, - -0.00781203294172883, - 0.007108245976269245, - -0.01026888843625784, - 0.004225919488817453, - 0.02605290524661541, - -0.020819291472434998, - 0.03283485025167465, - -0.01550890039652586, - -0.02065294235944748, - 0.015342551283538342, - 0.017761018127202988, - 0.012476219795644283, - 0.03124813176691532, - -0.00816392619162798, - -0.01961645670235157, - 0.018336843699216843, - -0.021970942616462708, - 0.025464285165071487, - 0.01842641644179821, - 0.021970942616462708, - 0.0027335716877132654, - -0.019475698471069336, - 0.02937989868223667, - 0.009078849107027054, - 0.007082654163241386, - 0.026360012590885162, - 0.01411412376910448, - -0.01859276555478573, - 0.026718303561210632, - 0.0050576673820614815, - 0.031145762652158737, - 0.026436788961291313, - -0.013845404610037804, - -0.008407052606344223, - 0.011183811351656914, - -0.016942067071795464, - -0.00536157563328743, - -0.012361054308712482, - 0.015137813054025173, - -0.025464285165071487, - 0.025349119678139687, - 0.002408870030194521, - 0.027383701875805855, - 0.03132490813732147, - 0.025438692420721054, - 0.014037346467375755, - -0.0032454165630042553, - -0.01576482318341732, - -0.006621993612498045, - -0.004113953560590744, - -0.026667119935154915, - -0.019885174930095673, - -0.03531729802489281, - -0.0023160981945693493, - 0.013032850809395313, - 0.0075369165278971195, - -0.010057752951979637, - 0.01447241473942995, - -0.0021257558837532997, - -0.003106258809566498, - 0.012316267937421799, - 0.0027463678270578384, - 0.0003658891364466399, - 0.009257994592189789, - -0.048471711575984955, - -0.014011754654347897, - 0.00021393517090473324, - 0.02505480870604515, - -0.0011068646563217044, - -0.01735154166817665, - 0.0013124023098498583, - 0.022943448275327682, - -0.046245187520980835, - 0.008675770834088326, - -0.01072315126657486, - 0.008119139820337296, - -0.006282896269112825, - -0.03280925750732422, - 0.009027664549648762, - 0.0033589822705835104, - 0.01153570506721735, - -0.01827286370098591, - 0.0034581522922962904, - 0.022226864472031593, - 0.0015835202066227794, - -0.02195814624428749, - -0.0013883793726563454, - -0.03275807574391365, - 0.04867644980549812, - 0.00420992448925972, - -0.024120692163705826, - 0.017761018127202988, - 0.004126749467104673, - -0.023045817390084267, - 0.001517940079793334, - -0.0013267979957163334, - -0.003072669031098485, - -0.008349469862878323, - 0.0050096819177269936, - -0.010748743079602718, - -0.00863738264888525, - 0.020243465900421143, - 0.04051252454519272, - 0.009130033664405346, - 0.0007745653274469078, - -0.03575236722826958, - 0.0017034838674589992, - 0.04330207780003548, - 0.03557322174310684, - 0.03339787945151329, - -0.001505143940448761, - 0.03158083185553551, - 0.001222829450853169, - -0.002053777687251568, - -0.017287561669945717, - -0.05425556004047394, - 0.02569461427628994, - -0.0037684582639485598, - -0.0012524204794317484, - -0.0008493426721543074, - 0.02438941039144993, - -0.005438352003693581, - 0.011382151395082474, - 0.01284730713814497, - 0.002450457541272044, - 0.01385820098221302, - 0.01950129121541977, - 0.004942502360790968, - 0.0020489790476858616, - 0.00872055720537901, - -0.007351372390985489, - 0.021625448018312454, - 0.02461973950266838, - -0.018695134669542313, - 0.025003623217344284, - 0.025745799764990807, - -0.01425488106906414, - -0.02378799207508564, - -0.008368664421141148, - 0.027460480108857155, - 0.010320072993636131, - 0.037467047572135925, - -0.03787652403116226, - 0.03567558899521828, - -0.005643090233206749, - 0.01413971558213234, - 0.026871858164668083, - -0.013666259124875069, - 0.008586198091506958, - 0.010211305692791939, - 0.01870793104171753, - -0.01371744368225336, - 0.0007105846889317036, - -0.000654601666610688, - 0.007082654163241386, - 0.006106949411332607, - -0.0026631930377334356, - -0.008746149949729443, - 0.0006594001897610724, - 0.01298806443810463, - -0.0348566398024559, - -0.005268803332000971, - 0.009162023663520813, - -0.015598474070429802, - -0.010179315693676472, - 0.004389069974422455, - -0.0015931172529235482, - -0.0015883187297731638, - -0.0348566398024559, - -0.009968179278075695, - 0.00781203294172883, - -0.017863387241959572, - -0.0006957891746424139, - 0.0057838475331664085, - -0.039412058889865875, - -0.019949154928326607, - -0.03808126226067543, - -0.01823447458446026, - 0.018797503784298897, - 0.01310322992503643, - -0.015905581414699554, - -0.005000085104256868, - 0.017210785299539566, - 0.020038727670907974, - 0.003989191260188818, - 0.005204822868108749, - -0.011561296880245209, - 0.0044562495313584805, - -0.014664356596767902, - -0.007639285176992416, - -0.0038964194245636463, - -0.036801647394895554, - -0.00939235370606184, - 0.005649488419294357, - -0.030122073367238045, - 0.0005486337468028069, - 0.01593117229640484, - 0.035240523517131805, - -0.043506816029548645, - -0.007991178892552853, - -0.006839527748525143, - -0.003854831913486123, - 0.007997577078640461, - 0.023775195702910423, - -0.005230415146797895, - 0.0036564921028912067, - 0.025630634278059006, - -0.031120169907808304, - 0.012156317010521889, - -0.024453390389680862, - -0.013007258996367455, - -0.006948294583708048, - 0.015214590355753899, - 0.009040460921823978, - -0.01854158192873001, - 0.008643780834972858, - 0.0060557653196156025, - 0.017415523529052734, - 0.030710695311427116, - -0.0057326629757881165, - 0.022022128105163574, - -0.0008037564693950117, - -0.0038868223782628775, - 0.022649137303233147, - -0.002117758383974433, - 0.027102187275886536, - 0.04716650769114494, - -0.021497486159205437, - 0.0033813754562288523, - -0.03777415305376053, - 0.019130203872919083, - 0.03460071608424187, - -0.02950785867869854, - 0.032860442996025085, - -0.006158133968710899, - 0.0022361224982887506, - -0.029354305937886238, - -0.0251315850764513, - 0.008317479863762856, - 0.014024551026523113, - -0.01644301787018776, - -0.009725052863359451, - -0.03872106596827507, - 0.008208712562918663, - -0.01925816386938095, - 0.011881199665367603, - -0.0016698939725756645, - -0.01953968033194542, - -0.00010286882752552629, - -0.008669373579323292, - -0.007760848384350538, - 0.019002242013812065, - -0.001248421729542315, - -0.025144381448626518, - -0.012866501696407795, - 0.007722460199147463, - 0.0022457195445895195, - 0.006023774854838848, - -0.0074921296909451485, - 0.00847743172198534, - -0.02165103890001774, - -0.003976395353674889, - 0.0015371342888101935, - -0.012668161652982235, - 0.0192965529859066, - -0.011183811351656914, - 0.017261968925595284, - 0.011650869622826576, - 0.01324398722499609, - -0.0023896759375929832, - 0.009385956451296806, - 0.004443453624844551, - -0.035957105457782745, - -0.0005002483958378434, - -0.013538298197090626, - -0.01203475333750248, - -0.030403587967157364, - 0.023877564817667007, - -6.842926813988015e-05, - -0.003106258809566498, - 0.013934977352619171, - -0.00014635565457865596, - 0.0347798615694046, - 0.013512705452740192, - -0.016698939725756645, - -0.010256092064082623, - -0.008253498934209347, - 0.0001567525032442063, - 0.0027383703272789717, - 0.01632785238325596, - 0.025233954191207886, - 0.009187616407871246, - -0.022303642705082893, - 0.01284730713814497, - 0.01898944564163685, - 0.00827909167855978, - 0.009827421978116035, - 0.017453910782933235, - 0.020345835015177727, - -0.00761369289830327, - 0.01747950352728367, - 0.011964375153183937, - -0.005409561097621918, - -0.009827421978116035, - -0.0014603575691580772, - -0.04158739745616913, - -0.016430221498012543, - 0.02084488421678543, - 0.013691850937902927, - 0.004494638182222843, - 0.01099826768040657, - -0.016302259638905525, - 0.011964375153183937, - 0.009296382777392864, - 0.02163824439048767, - -0.004664186853915453, - 0.003474147291854024, - -0.02458135224878788, - -0.01699325069785118, - -0.0050512696616351604, - 0.003039079252630472, - -0.003135050181299448, - 0.040410157293081284, - -0.0005318388575688004, - -0.0038228416815400124, - 0.02827943116426468, - -0.01767144538462162, - 0.002840739209204912, - -0.012476219795644283, - -0.016903677955269814, - 0.017006047070026398, - 0.010000170208513737, - 0.036673687398433685, - 0.0016491003334522247, - -0.012936879880726337, - -0.03370498865842819, - -0.06096072867512703, - -0.006973886862397194, - 0.005899012554436922, - 0.02569461427628994, - 0.014510802924633026, - 0.013346356339752674, - -0.01554728951305151, - -0.0025640230160206556, - 0.006362872198224068, - -0.015163405798375607, - -0.00384203577414155, - 0.011107034981250763, - 0.02053777687251568, - 0.009104440920054913, - -0.01823447458446026, - -0.00943074282258749, - -0.013768628239631653, - 0.012393045239150524, - 0.01818329095840454, - 0.017543483525514603, - 0.0011892396723851562, - -0.0022489186376333237, - 0.006749954540282488, - 0.04212483763694763, - 0.007895207963883877, - 0.024978032335639, - -0.004568215925246477, - -0.020384224131703377, - 0.0008645380730740726, - -0.024517370387911797, - -0.027946732938289642, - 0.011311772279441357, - -0.01978280581533909, - 0.015521696768701077, - 0.005428755190223455, - 0.008567004464566708, - -0.0002749167033471167, - 0.00863738264888525, - -0.011977170594036579, - -0.004091560374945402, - 0.014510802924633026, - 0.02386476844549179, - -0.009238800965249538, - -0.00699947914108634, - -0.014229288324713707, - -0.005908609833568335, - 0.018810300156474113, - -0.01529136672616005, - -0.006337279919534922, - -0.03513815253973007, - -0.012463423423469067, - 0.008157528005540371, - 0.007191420998424292, - -0.004836934618651867, - -0.031836751848459244, - -0.015035443939268589, - 0.008822926320135593, - -0.019053427502512932, - 0.003317394759505987, - -0.029098384082317352, - 0.004174734931439161, - -0.026257643476128578, - -0.013128821738064289, - -0.0012276279740035534, - 0.009673869237303734, - 0.04332767054438591, - -0.018771912902593613, - -0.018362436443567276, - 0.005812638904899359, - 0.018055329099297523, - -0.03209267556667328, - 0.008816528134047985, - 0.041561808437108994, - -0.015176201239228249, - 0.007703266106545925, - 0.014574783854186535, - -0.009897801093757153, - -0.0287912767380476, - 0.03654572740197182, - -0.020205078646540642, - -0.02748607099056244, - -0.011062247678637505, - 0.016775716096162796, - 0.012073141522705555, - -0.03966797888278961, - -0.013986161909997463, - -0.010703956708312035, - -0.019872378557920456, - 0.02097284607589245, - 0.004421060439199209, - -0.005041672382503748, - 0.015252978540956974, - -0.018874282017350197, - -0.010627180337905884, - 0.03938646614551544, - -0.018055329099297523, - -0.005943798925727606, - 0.0072873919270932674, - 0.002584816887974739, - -0.013474317267537117, - -0.040333379060029984, - -0.007076255977153778, - -0.017466707155108452, - -0.005153638310730457, - -0.004945701453834772, - 0.004942502360790968, - -0.0062349108047783375, - 0.006609197240322828, - -0.02017948590219021, - -0.00951391737908125, - 4.538624853012152e-05, - 0.0003878824645653367, - 0.015777619555592537, - -0.0021369524765759706, - 0.0010372856631875038, - -0.0036660891491919756, - -0.019514087587594986, - -0.006196522619575262, - 0.021254360675811768, - 0.003944404888898134, - -0.028612131252884865, - 0.00349973957054317, - -0.025144381448626518, - 0.0074857319705188274, - 0.024197468534111977, - -0.03833718225359917, - -0.004916910082101822, - -0.0032854045275598764, - -0.02648797444999218, - -0.0095331110060215, - -0.014267676509916782, - 0.0056590852327644825, - -0.01731315441429615, - -0.001494747120887041, - 0.02053777687251568, - 0.02588655613362789, - 0.0008229506202042103, - 0.017287561669945717, - -0.017146805301308632, - -0.024952439591288567, - -0.0036277007311582565, - 0.010339267551898956, - 0.013218394480645657, - 0.0007977582863532007, - -0.02052498050034046, - -0.004014783538877964, - 0.016775716096162796, - -0.014600375667214394, - 0.00033829748281277716, - 0.0013060042401775718, - -0.006602799519896507, - -0.028740091249346733, - -0.003829239634796977, - 0.026385605335235596, - -0.002741569420322776, - 0.029482267796993256, - 0.03186234459280968, - -0.022098904475569725, - 0.02410789579153061, - 0.008630984462797642, - -0.002119357930496335, - -0.03411446511745453, - 0.0012796123046427965, - -0.006330881733447313, - 0.0029079189989715815, - 0.004453050903975964, - 0.023122593760490417, - -0.001701884320937097, - -0.011746840551495552, - 0.0019322145963087678, - 0.013973366469144821, - 0.025796983391046524, - 0.012840908952057362, - 0.007217013277113438, - 0.005195226054638624, - -0.024095099419355392, - -0.0006550015532411635, - 0.009744247421622276, - -0.040128640830516815, - -0.00788241159170866, - 0.010435238480567932, - -0.02763962559401989, - 0.01969323307275772, - -0.020358631387352943, - -0.000989300198853016, - 0.0037236716598272324, - 0.017850590869784355, - -0.009283587336540222, - -0.0019514086889103055, - -0.008522218093276024, - 0.0038516330532729626, - 0.008176722563803196, - 0.011727646924555302, - 0.01850319281220436, - 0.019961951300501823, - -0.002364083658903837, - -0.019437311217188835, - -0.026820672675967216, - -0.011542102321982384, - -0.026820672675967216, - 0.00796558614820242, - -0.01838802918791771, - -0.005089657846838236, - 0.027741994708776474, - 0.0016826901119202375, - -0.025246750563383102, - -0.027025410905480385, - 0.009398751892149448, - 0.19480817019939423, - -0.03252774477005005, - -0.01284730713814497, - 0.007172226905822754, - -0.01680130884051323, - -0.006033371668308973, - 0.03173438459634781, - 0.002642399398609996, - 0.016289465129375458, - -0.004616201389580965, - 0.01082551945000887, - 0.000403877638746053, - -0.0047537595964968204, - 0.0003736867802217603, - 0.000770966405980289, - -0.03303958848118782, - -0.029098384082317352, - -0.01195157878100872, - 0.013359151780605316, - 0.019398922100663185, - 0.01587998867034912, - -0.016059134155511856, - -0.003122254041954875, - -0.001566725317388773, - 0.05451148375868797, - 0.010959879495203495, - -0.03513815253973007, - 0.01515060942620039, - 0.024837274104356766, - -0.006023774854838848, - -0.017057232558727264, - -0.0043026963248848915, - 0.012744938023388386, - 0.012386647053062916, - -0.017377134412527084, - 0.00462579820305109, - 0.035803552716970444, - -0.014459618367254734, - 0.02275150641798973, - 0.004517031367868185, - -0.005604701582342386, - 0.0034325600136071444, - -0.0025768191553652287, - -0.039770349860191345, - -0.0016147107817232609, - 0.02267473004758358, - -0.012552996166050434, - 0.016622163355350494, - 0.011574093252420425, - -0.012066743336617947, - -0.019309349358081818, - 0.0016730930656194687, - 0.021510282531380653, - 0.03173438459634781, - -0.011203005909919739, - -0.0065388185903429985, - 4.963496030541137e-05, - 0.013256783597171307, - 0.010211305692791939, - 0.011075044050812721, - -0.013000860810279846, - 0.00308706471696496, - -0.005115250125527382, - 0.021868573501706123, - -0.010281684808433056, - 0.006318085826933384, - -0.016340648755431175, - 0.006794741377234459, - 0.005924604833126068, - -0.020281855016946793, - 0.001285210601054132, - -0.012936879880726337, - -0.00685872184112668, - 0.018515989184379578, - -0.02184298075735569, - -0.025873759761452675, - 0.033781763166189194, - 0.014792317524552345, - 0.006641187705099583, - 0.002903120359405875, - -0.0058318329975008965, - 0.014024551026523113, - -0.014881891198456287, - -0.034140054136514664, - -0.008355868048965931, - -0.03634098917245865, - 0.02044820412993431, - 0.0052560074254870415, - 0.003563720267266035, - -0.030045296996831894, - -0.018963854759931564, - 0.009353965520858765, - 0.0028327417094260454, - -0.003541327081620693, - 0.02580977976322174, - 0.03022444248199463, - 0.012354656122624874, - 0.03649454191327095, - -0.005969391204416752, - 0.0004598606610670686, - -0.04442813992500305, - 0.07324500381946564, - 0.011580491438508034, - 0.00018724326218944043, - 0.007760848384350538, - 0.009136431850492954, - 0.003781254170462489, - 0.03339787945151329, - 0.00590541074052453, - 0.00014355650637298822, - 0.005879818461835384, - -0.029994111508131027, - 0.02545148879289627, - -0.007466537412256002, - 0.000881332962308079, - 0.017402727156877518, - 0.0021689427085220814, - -0.016750125214457512, - -0.01105585042387247, - -0.007703266106545925, - -0.01982119493186474, - 0.009014868177473545, - -0.0007293790113180876, - 0.020192282274365425, - 0.00516323558986187, - -0.024478983134031296, - -0.02557944878935814, - -0.021151991561055183, - -0.001957806758582592, - 9.547107038088143e-05, - 0.028305023908615112, - -0.015470512211322784, - 0.00352853094227612, - 0.02235482633113861, - -0.002840739209204912, - 0.006839527748525143, - -0.015022648498415947, - -0.01846480555832386, - -0.005041672382503748, - 0.00611654669046402, - 0.015854395925998688, - 0.008765344507992268, - -0.007453741505742073, - 0.0026136080268770456, - 0.02282828278839588, - -0.003928409889340401, - -0.013525501824915409, - 0.004094759467989206, - -0.02537471055984497, - -0.00476655550301075, - -0.0016243078280240297, - 0.019642047584056854, - -0.011830015107989311, - -0.028740091249346733, - 0.018298456445336342, - -0.014459618367254734, - -0.023928750306367874, - -0.016071930527687073, - 0.0006550015532411635, - -0.016711736097931862, - 0.018093718215823174, - -0.007594498805701733, - 0.014203696511685848, - -0.02220127359032631, - -0.011401345022022724, - 0.007408955134451389, - -0.15990035235881805, - -0.0020633747335523367, - 0.007210615091025829, - -0.04299497231841087, - 0.040845222771167755, - -0.004165138117969036, - 0.024210264906287193, - 0.027102187275886536, - 0.0063596731051802635, - 0.008950888179242611, - 0.018477601930499077, - 0.028612131252884865, - -0.00883572269231081, - -0.025796983391046524, - -0.006590003147721291, - -0.001030087936669588, - -0.014190900139510632, - 0.007959187962114811, - 0.02656475082039833, - 0.033858541399240494, - 0.02569461427628994, - -0.002021787455305457, - 0.025208361446857452, - 0.012680958025157452, - -0.002042581094428897, - 0.024056710302829742, - -0.010767937637865543, - 0.02429983764886856, - -0.008093548007309437, - -0.021151991561055183, - -0.01250820979475975, - 0.022150088101625443, - 0.010639975778758526, - 0.0075177219696342945, - -0.0018346441211178899, - -0.010307276621460915, - -0.014651560224592686, - 0.009629081934690475, - -0.021228767931461334, - 0.013397540897130966, - 0.0038580310065299273, - 0.00394120579585433, - 0.0022169281728565693, - -5.7732508139451966e-05, - -0.010224102064967155, - 0.015278570353984833, - 0.0008677370497025549, - 0.0021817388478666544, - -0.005825434811413288, - -0.02165103890001774, - 0.009686664678156376, - 0.0031478460878133774, - -0.0105823939666152, - -0.010294481180608273, - 0.02314818650484085, - 0.00333019089885056, - 0.019795602187514305, - 0.017044436186552048, - 0.015022648498415947, - 0.0049584973603487015, - -0.002840739209204912, - -0.003682084381580353, - -0.0002659194287844002, - -0.003624501870945096, - -0.0036436959635466337, - -0.03132490813732147, - -0.005985386203974485, - 0.020000340417027473, - -0.013371948152780533, - 0.005249609239399433, - 0.001689088181592524, - -0.003819642588496208, - -0.008547809906303883, - -0.023327331990003586, - -0.012616977095603943, - 0.0007025871309451759, - 0.005425556097179651, - 0.007460139691829681, - 0.017057232558727264, - -0.00687151774764061, - 0.0023224963806569576, - 0.03175997734069824, - 0.0037748562172055244, - -0.021062418818473816, - 0.0069610909558832645, - 0.007018673233687878, - -0.020384224131703377, - 0.016711736097931862, - 0.017543483525514603, - -0.0031526447273790836, - 0.0016227082815021276, - -0.0386698842048645, - -0.013435929082334042, - -0.028484169393777847, - 0.024120692163705826, - 0.01259138435125351, - -0.011842811480164528, - -0.02799791656434536, - -0.010492820292711258, - 0.004062769003212452, - 0.016212686896324158, - 0.019015038385987282, - -0.02858653850853443, - 0.008938091807067394, - 0.011484520509839058, - -0.0021641443017870188, - 0.007780042476952076, - 0.007728858385235071, - 0.04238075762987137, - 0.013084035366773605, - -0.038976989686489105, - -0.017044436186552048, - -0.018643951043486595, - -0.014357250183820724, - 0.011644471436738968, - 0.005515128839761019, - -0.009155625477433205, - -0.013627870939671993, - -0.003339787945151329, - 0.028893645852804184, - 0.05722426250576973, - -0.0062093185260891914, - -0.017658649012446404, - 0.011203005909919739, - -0.02156146615743637, - -0.043583594262599945, - -0.08051320165395737, - 0.006442847661674023, - 0.0062860953621566296, - 0.010985471308231354, - 0.020640145987272263, - 0.008106343448162079, - -0.015278570353984833, - 0.00536157563328743, - 0.002312899101525545, - 0.03065950982272625, - -0.021587058901786804, - -0.017965756356716156, - -0.015329754911363125, - -0.010908694937825203, - 0.01290488988161087, - -0.010575995780527592, - -0.012143520638346672, - -0.02541309967637062, - -0.00847743172198534, - 0.027767585590481758, - 0.0019226174335926771, - -0.009693062864243984, - -0.002434462308883667, - -0.01153570506721735, - -0.013973366469144821, - 0.022649137303233147, - -0.041203513741493225, - 0.019168591126799583, - 0.024837274104356766, - -0.00200579222291708, - -0.008394256234169006, - -0.02863772213459015, - -0.0005290397093631327, - -0.03672487288713455, - 0.022367622703313828, - -0.0028663314878940582, - -0.01584159955382347, - -0.02275150641798973, - 0.02609129436314106, - -0.03124813176691532, - -0.011087840422987938, - 0.01200916152447462, - 0.005687876604497433, - -0.05151718854904175, - -0.002484047319740057, - -0.0061357407830655575, - -0.008087149821221828, - 0.001469154842197895, - -0.012725744396448135, - -0.015905581414699554, - -0.031478460878133774, - 0.013435929082334042, - -0.0212031751871109, - 0.0017530688783153892, - 0.00991059746593237, - 0.005342381075024605, - 0.005345580168068409, - -0.0249012541025877, - -0.024440594017505646, - 0.011606083251535892, - -0.015560084953904152, - -0.007101848255842924, - -0.012975268065929413, - 0.015355347655713558, - -0.011190209537744522, - 0.003976395353674889, - -0.024670924991369247, - 0.010211305692791939, - -0.018221678212285042, - -0.008874110877513885, - 0.011663665995001793, - 0.010000170208513737, - -0.015892785042524338, - 0.048266973346471786, - -0.026871858164668083, - -0.013870997354388237, - -0.038106855005025864, - 0.012354656122624874, - 0.01564965769648552, - -0.00680113909766078, - -0.0023816784378141165, - -0.0250164195895195, - 0.031196948140859604, - -0.017095619812607765, - 0.025681817904114723, - 0.007447343319654465, - 0.01898944564163685, - 0.0027463678270578384, - 0.015572881326079369, - -0.03708316385746002, - 0.020205078646540642, - 0.02886805310845375, - 0.01799134910106659, - -0.010486423037946224, - 0.013180006295442581, - 0.00516323558986187, - -0.00857979990541935, - -0.0028071494307368994, - -0.00793999433517456, - 0.015675250440835953, - 0.007325780112296343, - -0.012546597979962826, - -0.05097975209355354, - 0.0037300698459148407, - 0.018643951043486595, - -0.006852323655039072, - -0.0305827334523201, - -0.002450457541272044, - 0.00917482003569603, - 0.0006062163156457245, - 0.008567004464566708, - -0.0005962193245068192, - -0.007280993741005659, - -0.003624501870945096, - 0.012137122452259064, - -0.000315304467221722, - -0.014485211111605167, - -0.02355766110122204, - 0.000697388662956655, - -0.005217619240283966, - 0.018157698214054108, - 0.002511239144951105, - -0.02021787315607071, - 0.010057752951979637, - 0.02048659324645996, - 0.013307967223227024, - -0.008950888179242611, - 0.005978988483548164, - 0.005195226054638624, - -0.013231190852820873, - -0.016315056011080742, - 0.0009757043444551528, - 0.014293269254267216, - -0.0016826901119202375, - -0.014050142839550972, - 0.024274244904518127, - -0.0072873919270932674, - -0.011375753208994865, - 0.016903677955269814, - 0.04435136169195175, - 0.015061036683619022, - 0.0658232569694519, - 0.016391832381486893, - -0.02212449535727501, - 0.026257643476128578, - -0.02493964321911335, - -0.0028791276272386312, - -0.017415523529052734, - 0.007037867326289415, - 0.011388549581170082, - 0.005441551096737385, - -0.03332110494375229, - 0.024043913930654526, - 0.00971225742250681, - 0.012053947895765305, - -0.0031606422271579504, - -0.015611269511282444, - -0.0002731172426138073, - 0.02140791341662407, - 0.00030030900961719453, - -0.008208712562918663, - -0.04130588471889496, - 0.04110114648938179, - 0.0015891185030341148, - -0.00687151774764061, - 0.0036053075455129147, - -0.007863217033445835, - 0.0018250469584017992, - -0.015342551283538342, - 0.00033229929977096617, - -0.0021001636050641537, - -0.04051252454519272, - -0.016417425125837326, - 0.00939235370606184, - -0.017684241756796837, - 0.03449834883213043, - -0.012137122452259064, - 0.00726819783449173, - 0.00359890959225595, - 0.027537256479263306, - -0.006218915805220604, - 0.013819812797009945, - 0.011465325951576233, - 0.03562440723180771, - -0.02958463504910469, - 0.017223581671714783, - 0.02033303864300251, - 0.003694880520924926, - -0.0019322145963087678, - 0.019514087587594986, - -0.005425556097179651, - -0.020038727670907974, - -0.00428030313923955, - 0.015828803181648254, - 0.008938091807067394, - 0.01012813113629818, - -0.001002096338197589, - 0.0017690639942884445, - -0.002620006212964654, - 0.020320242270827293, - 0.018810300156474113, - 0.009328373707830906, - -0.0014867495046928525, - 0.0030310815200209618, - 0.015355347655713558, - -0.02886805310845375, - -0.021139195188879967, - -0.013333559967577457, - -0.004155540838837624, - -0.05614938586950302, - -0.009622684679925442, - 0.015432124026119709, - -0.006324483547359705, - -0.002511239144951105, - 0.01371744368225336, - -0.005710269790142775, - -0.01026249025017023, - 0.015611269511282444, - -0.02282828278839588, - -0.011190209537744522, - -0.02561783790588379, - 0.020473796874284744, - -0.005671881604939699, - 0.045528605580329895, - -0.000788960955105722, - -0.020128300413489342, - 0.012546597979962826, - -0.017223581671714783, - -0.0019034232245758176, - -0.0007861618069000542, - 0.026590343564748764, - -0.00039408059092238545, - -0.011529306881129742, - 0.011708452366292477, - -0.005000085104256868, - -0.008029567077755928, - -0.004318691324442625, - -0.009277189150452614, - 0.009955383837223053, - -0.0010500818025320768, - 0.03129931539297104, - 0.1109679788351059, - 0.016852494329214096, - -0.027895547449588776, - 0.000641805527266115, - 0.0006066162022762001, - 0.012329064309597015, - 0.007933596149086952, - -0.009353965520858765, - -0.022777099162340164, - -0.037902116775512695, - -0.008669373579323292, - -0.0020889670122414827, - -0.02227804996073246, - -0.015496104955673218, - -0.005627094767987728, - 0.026667119935154915, - -0.013269579038023949, - 0.002362484112381935, - -0.002383277751505375, - -0.004571415018290281, - 0.019757213070988655, - -0.005828633904457092, - 0.012712948024272919, - 0.03065950982272625, - -0.010556801222264767, - -0.009078849107027054, - 0.019130203872919083, - -0.02426144853234291, - 0.02756284922361374, - -0.002264913637191057, - -0.005412759725004435, - 0.013090433552861214, - -0.06561851501464844, - -0.025541061535477638, - 0.026360012590885162, - -0.02140791341662407, - -0.00034429566585458815, - -0.014933074824512005, - 0.008701363578438759, - -0.01385820098221302, - 0.007594498805701733, - 0.021791797131299973, - -0.014382841996848583, - -0.0210880097001791, - -0.03301399573683739, - -0.02144630253314972, - 0.014856298454105854, - -0.018874282017350197, - -0.008445440791547298 - ], - "sparse": "SparseEmbedding(values=array([1.58113419, 1.83992159, 1.83992159, 1.58113419, 1.58113419,\n 1.58113419, 1.58113419, 1.58113419, 1.58113419, 1.58113419,\n 1.94609537, 1.58113419, 1.58113419, 1.58113419, 1.83992159,\n 1.58113419, 1.58113419, 1.58113419, 1.58113419, 1.58113419,\n 1.58113419]), indices=array([ 264741300, 471957998, 164058840, 1676350980, 76479261,\n 795595028, 1890084991, 147047731, 605378321, 1610176724,\n 1109731834, 983781286, 1083183277, 1286817522, 2103309648,\n 997168741, 540387554, 1358093424, 1882506693, 1116117978,\n 1213745560]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 53, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 26 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000054.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000054.json deleted file mode 100644 index ba361b6d6dc81716a9ce021d6c6bfe43f86fead8..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000054.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000054", - "content": "3.1 Methodik F\u00fcr die Aufstellung m\u00f6glicher Baumpflanzungsszenarien zur Beantwortung der Forschungsfragen wurden Geoinformationsdaten ben\u00f6tigt. Die Daten waren von den Gemeinden bereitgestellt worden oder wurden bei dem Landesamt f\u00fcr Geoinformation und Landentwicklung erworben. Die Aufbereitung der Daten und die Vorbereitung dieser f\u00fcr die Simulation erfolgten mittels der Geoinformationssoftware ArcGIS Pro. Der f\u00fcr die Simulation verfolgte Ansatz zur Identifikation der Potentialfl\u00e4chen zur Pflanzung neuer B\u00e4ume sah diese ausschlie\u00dflich im Parkraum vor, da die Fahrbahnbreite als versiegelte Fl\u00e4che auch bei einer ver\u00e4nderten Verkehrsmittelwahl bestehen bleibt. Als weitere Grundlage wurden die von der Firma Drees & Sommer, Praxispartner des Forschungsprojekts CGSC, definierten Quartiersarchetypen herangezogen. Jedem Quartiersarchetyp sind Stra\u00dfenquerschnitte nach der Richtlinie f\u00fcr die Anordnung von Stadtstra\u00dfen 06 (RASt 06) zugeordnet. \u00dcber den Stra\u00dfenquerschnitt wurde die Parkplatzfl\u00e4che im Stra\u00dfenraum bestimmt, welche die maximale Potentialfl\u00e4che des Quartiers f\u00fcr Pflanzungen darstellt. Als letzter Input- Parameter f\u00fcr die Berechnung der Potentialfl\u00e4che wurde eine Reduktion des MIV angenommen. Je nach definiertem Mobilit\u00e4tsszenario reduziert sich der MIV-Anteil um einen bestimmten Prozentwert. \u00dcber diese Reduktion wurde die Potentialfl\u00e4che je Szenario bestimmt und anschlie\u00dfend \u00fcber den minimal ben\u00f6tigten Fl\u00e4chenbedarf eines Baumes die szenariospezifische Anzahl der neuen B\u00e4ume errechnet. Eine detailliertere Erl\u00e4uterung der Annahmen und des Vorgehens zur Bestimmung der Potentialfl\u00e4che erfolgt in Kapitel 4 und in Kapitel 5.3. Mit Hilfe eines Python-Skripts werden die B\u00e4ume in einem vorher definierten Abstand in dem gew\u00e4hlten Gebietsausschnitt automatisch gepflanzt. Nach Durchlaufen des Skripts wird eine neue Datei generiert, welche zur weiteren Verwendung mit einer CityGML des gew\u00e4hlten Gebietsausschnitts verbunden wird. Die Simulation der Geb\u00e4udeenergiebedarfe unter Ber\u00fccksichtigung der Verschattung sowie der Evapotranspiration der B\u00e4ume erfolgt mit dem Tool SimStadt. Zur Beantwortung der Forschungsfrage werden abschlie\u00dfend die verschiedenen Szenarien hinsichtlich einer Ver\u00e4nderung des Geb\u00e4udeenergiebedarfs und der Evapotranspiration verglichen. F\u00fcr den Energiebedarf wurde festgelegt, dass die Heizperiode typischerweise von Oktober bis April andauert. Entsprechend geht die K\u00fchlperiode von Mai bis September. Die Darstellung und Auswertung der Ergebnisse basieren auf dieser Annahme. 15 Methodik und Toolerl\u00e4uterung Um den Heiz- und K\u00fchlbedarf zu bewerten, werden die CO2e-Emissionen f\u00fcr die einzelnen Szenarien ermittelt. Hierf\u00fcr wurde angenommen, dass alle Wohngeb\u00e4ude mit Gas beheizt werden und ein Emissionsfaktor von 0,202 kg CO2e/kWh (vgl. Bundesamt f\u00fcr Wirtschaft und Ausfuhrkontrolle 2021, S. 6) angesetzt. \ud835\udc3b\ud835\udc52\ud835\udc56\ud835\udc67\ud835\udc4f\ud835\udc52\ud835\udc51\ud835\udc4e\ud835\udc5f\ud835\udc53 [\ud835\udc58\ud835\udc4a\u210e] \u2217 0,202 \ud835\udc58\ud835\udc54 \ud835\udc58\ud835\udc4a\u210e = [\ud835\udc58\ud835\udc54] \ud835\udc36\ud835\udc422\ud835\udc52 F\u00fcr den K\u00fchlbedarf wurde \u00fcber eine Leistungszahl (COP, Coefficient of Performance) von 4 die erforderliche Strommenge ermittelt (vgl. Wolf K\u00e4ltetechnik GmbH 2024). \u00dcber den Emissionsfaktor des deutschen Strommixes von 0,442 kg CO2e/kWh (vgl. Icha und Lauf 2023, S. 17), wurden die CO2e-Emissionen des K\u00fchlbedarfs bestimmt. \ud835\udc3e\u00fc\u210e\ud835\udc59\ud835\udc4f\ud835\udc52\ud835\udc51\ud835\udc4e\ud835\udc5f\ud835\udc53 [\ud835\udc58\ud835\udc4a\u210e] \u2217 1 4 \u2217 0,442 \ud835\udc58\ud835\udc54 \ud835\udc58\ud835\udc4a\u210e = [\ud835\udc58\ud835\udc54] \ud835\udc36\ud835\udc422\ud835\udc52 Die Evapotranspiration ermittelt SimStadt in Litern. Mittels der spezifischen Verdampfungsw\u00e4rme von Wasser von 2262 kJ/kg (vgl. Tipler und Mosca 2015, S. 571) und der Annahme, dass 1 l Wasser eine Masse von 1 kg hat, erfolgt die Berechnung der Energiemenge der Evapotranspiration in kWh. \ud835\udc44\ud835\udc38\ud835\udc47 = \ud835\udc5a\ud835\udc38\ud835\udc47 \u2217 2262 \ud835\udc58\ud835\udc3d \ud835\udc58\ud835\udc54 \u2217 1 3600 \ud835\udc58\ud835\udc4a\u210e \ud835\udc58\ud835\udc3d \ud835\udc5a\ud835\udc56\ud835\udc61 \ud835\udc46\ud835\udc62\ud835\udc5a \ud835\udc38\ud835\udc47\ud835\udc50 = \ud835\udc5a\ud835\udc38\ud835\udc47 \ud835\udc46\ud835\udc62\ud835\udc5a \ud835\udc38\ud835\udc47\ud835\udc50 = \ud835\udc40\ud835\udc52\ud835\udc5b\ud835\udc54\ud835\udc52 \ud835\udc51\ud835\udc52\ud835\udc5f \ud835\udc38\ud835\udc63\ud835\udc4e\ud835\udc5d\ud835\udc5c\ud835\udc61\ud835\udc5f\ud835\udc4e\ud835\udc5b\ud835\udc60\ud835\udc5d\ud835\udc56\ud835\udc5f\ud835\udc4e\ud835\udc61\ud835\udc56\ud835\udc5c\ud835\udc5b [\ud835\udc59] \ud835\udc5a\ud835\udc38\ud835\udc47 = \ud835\udc40\ud835\udc4e\ud835\udc60\ud835\udc60\ud835\udc52 \ud835\udc51\ud835\udc52\ud835\udc5f \ud835\udc38\ud835\udc63\ud835\udc4e\ud835\udc5d\ud835\udc5c\ud835\udc61\ud835\udc5f\ud835\udc4e\ud835\udc5b\ud835\udc60\ud835\udc5d\ud835\udc56\ud835\udc5f\ud835\udc4e\ud835\udc61\ud835\udc56\ud835\udc5c\ud835\udc5b [\ud835\udc58\ud835\udc54] \ud835\udc44\ud835\udc38\ud835\udc47 = \ud835\udc38\ud835\udc5b\ud835\udc52\ud835\udc5f\ud835\udc54\ud835\udc56\ud835\udc52\ud835\udc5a\ud835\udc52\ud835\udc5b\ud835\udc54\ud835\udc52 \ud835\udc51\ud835\udc52\ud835\udc5f \ud835\udc38\ud835\udc63\ud835\udc4e\ud835\udc5d\ud835\udc5c\ud835\udc61\ud835\udc5f\ud835\udc4e\ud835\udc5b\ud835\udc60\ud835\udc5d\ud835\udc56\ud835\udc5f\ud835\udc4e\ud835\udc61\ud835\udc56\ud835\udc5c\ud835\udc5b [\ud835\udc58\ud835\udc4a\u210e] Durch die Globalstrahlung wird in das System Stadt Energie eingebracht. \u00dcber die Evapotranspiration entziehen die Pflanzen diesem System Energie. Dieser Energieentzug wird in das Verh\u00e4ltnis zu der Globalstrahlung im jeweiligen Gebietsausschnitt gesetzt. Eine reduzierte Globalstrahlung f\u00fchrt zu einer geringeren Erw\u00e4rmung der Stadt. Des Weiteren f\u00fchrt die Evapotranspiration zu einer Absenkung der umgebenden Lufttemperatur. Die Temperaturver\u00e4nderung \u2206T wird \u00fcber die Energiemenge, welche durch die Evapotranspiration freigesetzt wird, bestimmt (vgl. Tipler und Mosca 2015, S. 568). F\u00fcr die Berechnung wurde die Annahme getroffen, dass es sich bei dem Gebietsausschnitt um einen leeren mit Luft gef\u00fcllten Volumenk\u00f6rper mit einer H\u00f6he von 15,0 m handelt. Die H\u00f6he wurde so gew\u00e4hlt, da die h\u00f6chsten Bestandsb\u00e4ume in Gromb\u00fchl eine H\u00f6he von 15,0 m aufweisen. Diese Annahme wurde f\u00fcr Grafenb\u00fchl \u00fcbernommen, damit f\u00fcr alle Berechnungen die gleichen Ausgangsparameter gelten. \u2206\ud835\udc47 = \ud835\udc44\ud835\udc38\ud835\udc47 \ud835\udc5a\ud835\udc3f \u2217 \ud835\udc50 \ud835\udc5a\ud835\udc56\ud835\udc61 \ud835\udc5a\ud835\udc3f = \ud835\udc49\ud835\udc3a\ud835\udc34 \u2217 \ud835\udf0c \ud835\udc62\ud835\udc5b\ud835\udc51 \ud835\udc44\ud835\udc38\ud835\udc47 = \ud835\udc46\ud835\udc62\ud835\udc5a \ud835\udc38\ud835\udc47\ud835\udc50 \u2217 2262 \ud835\udc58\ud835\udc3d \ud835\udc58\ud835\udc54 \ud835\udc50 = \ud835\udc60\ud835\udc5d\ud835\udc52\ud835\udc67\ud835\udc56\ud835\udc53\ud835\udc56\ud835\udc60\ud835\udc50\u210e\ud835\udc52 \ud835\udc4a\u00e4\ud835\udc5f\ud835\udc5a\ud835\udc52\ud835\udc58\ud835\udc4e\ud835\udc5d\ud835\udc4e\ud835\udc67\ud835\udc56\ud835\udc61\u00e4\ud835\udc61 \ud835\udc3f\ud835\udc62\ud835\udc53\ud835\udc61 = 1,005 [ \ud835\udc58\ud835\udc3d \ud835\udc58\ud835\udc54 \u2217 \ud835\udc3e ] (vgl.Paschotta 2023) \ud835\udc44\ud835\udc38\ud835\udc47 = \ud835\udc38\ud835\udc5b\ud835\udc52\ud835\udc5f\ud835\udc54\ud835\udc56\ud835\udc52\ud835\udc5a\ud835\udc52\ud835\udc5b\ud835\udc54\ud835\udc52 \ud835\udc51\ud835\udc52\ud835\udc5f \ud835\udc38\ud835\udc63\ud835\udc4e\ud835\udc5d\ud835\udc5c\ud835\udc61\ud835\udc5f\ud835\udc4e\ud835\udc5b\ud835\udc60\ud835\udc5d\ud835\udc56\ud835\udc5f\ud835\udc4e\ud835\udc61\ud835\udc56\ud835\udc5c\ud835\udc5b [\ud835\udc58\ud835\udc3d] \ud835\udf0c = \ud835\udc37\ud835\udc56\ud835\udc50\u210e\ud835\udc61\ud835\udc52 \ud835\udc51\ud835\udc52\ud835\udc5f \ud835\udc3f\ud835\udc62\ud835\udc53\ud835\udc61 = 1,225 [ \ud835\udc58\ud835\udc54 \ud835\udc5a3](vgl.Deutscher Wetterdienst 2024a) \ud835\udc5a\ud835\udc3f = \ud835\udc40\ud835\udc4e\ud835\udc60\ud835\udc60\ud835\udc52 \ud835\udc51\ud835\udc52\ud835\udc5f \ud835\udc3f\ud835\udc62\ud835\udc53\ud835\udc61 [\ud835\udc58\ud835\udc54] \u2206\ud835\udc47 = \ud835\udc47\ud835\udc52\ud835\udc5a\ud835\udc5d\ud835\udc52\ud835\udc5f\ud835\udc4e\ud835\udc61\ud835\udc62\ud835\udc5f\u00e4\ud835\udc5b\ud835\udc51\ud835\udc52\ud835\udc5f\ud835\udc62\ud835\udc5b\ud835\udc54 [\ud835\udc3e]", - "embedding": { - "dense": [ - 0.010790987871587276, - -0.016086440533399582, - 0.008443380706012249, - -0.0167000200599432, - -0.01345872227102518, - 0.025116723030805588, - -0.020061366260051727, - -0.021408572793006897, - -0.017967194318771362, - -0.01210484653711319, - -0.0030812337063252926, - 0.014939315617084503, - -0.00039494980592280626, - 0.005865681916475296, - 0.010664270259439945, - 0.018460724502801895, - 0.025050031021237373, - -0.00743631087243557, - 0.028571439906954765, - 0.01376551203429699, - 0.004735229536890984, - 0.013698818162083626, - 0.024809934198856354, - -0.004865281283855438, - -0.005355477798730135, - 0.022128861397504807, - 0.02026144601404667, - -0.025503545999526978, - -0.007989865727722645, - 0.005782315507531166, - 0.006996134761720896, - -0.01597973145544529, - -0.030705628916621208, - -0.0006777714006602764, - -0.02127518504858017, - -0.015873022377490997, - 0.014899299480021, - -0.020621590316295624, - 0.033239975571632385, - -0.0027210896369069815, - 0.010911035351455212, - 0.008876888081431389, - -0.00929038692265749, - -0.028864892199635506, - 0.014712558127939701, - 0.0036948127672076225, - -0.005322130862623453, - 0.0014989335322752595, - -0.026263849809765816, - 0.02256903611123562, - 0.019367754459381104, - 0.043537434190511703, - -0.023996274918317795, - 0.008176607079803944, - -0.029718566685914993, - -0.008056559599936008, - -0.01092437468469143, - -0.004131654277443886, - 0.0038148609455674887, - -0.01184474304318428, - -0.013231964781880379, - -0.006312527693808079, - -0.02291584201157093, - 0.013205287978053093, - -0.035747647285461426, - -0.00642590643838048, - -0.007316262926906347, - 0.001804055762477219, - 0.00927037838846445, - -0.0018524084007367492, - 0.014525816775858402, - 0.03942912071943283, - 0.018660806119441986, - -0.009297056123614311, - 0.022355617955327034, - 0.0004401762562338263, - 0.024396436288952827, - -0.003338003298267722, - -0.0021108451765030622, - 0.011978129856288433, - 0.014445784501731396, - -0.019221030175685883, - -0.012705087661743164, - 0.048205967992544174, - 0.012231564149260521, - 0.022555697709321976, - -0.026463929563760757, - 0.04545820131897926, - 0.003514740616083145, - 0.014885960146784782, - 0.0334000401198864, - 0.022262247279286385, - 0.0036981473676860332, - 0.005665602162480354, - -0.002891157753765583, - 0.0012204886879771948, - -0.0010862683411687613, - 0.011484598740935326, - 0.021928779780864716, - -0.021048428490757942, - -0.029238374903798103, - 0.008970258757472038, - -0.020141398534178734, - -0.007836471311748028, - -0.014032285660505295, - -0.011711356230080128, - 0.011351211927831173, - 0.020154736936092377, - 0.014419106766581535, - -0.01347873080521822, - -0.005332135129719973, - 0.030598919838666916, - -0.01876751519739628, - -0.0024793262127786875, - 0.012611716985702515, - -0.030919047072529793, - 0.039162348955869675, - -0.0013438714668154716, - -0.013378689996898174, - 0.0010187412844970822, - 0.03105243481695652, - -0.005688944831490517, - 0.014819267205893993, - -0.016686681658029556, - 0.027224235236644745, - 0.008623452857136726, - 0.009910634718835354, - -0.007189545314759016, - -0.05135389789938927, - -0.02339603565633297, - -0.015392830595374107, - 0.014619187451899052, - 0.0002482243871781975, - 0.013792188838124275, - -0.020154736936092377, - 0.013585439883172512, - -0.019221030175685883, - 0.00570561783388257, - -0.03374684602022171, - -0.04303056374192238, - -0.0048185959458351135, - 0.019861286506056786, - -0.0120381535962224, - -0.017446985468268394, - -0.004058291669934988, - 0.033239975571632385, - -0.0014339075423777103, - 0.02454316057264805, - 0.013131924904882908, - -0.021675346419215202, - -0.006299188826233149, - -0.004315061029046774, - 0.026583978906273842, - -0.003142925212159753, - -0.0015031018992885947, - -0.02507670782506466, - -0.02075497806072235, - 0.004758572205901146, - -0.03142591565847397, - -0.01424570381641388, - 0.021435249596834183, - 0.00408163433894515, - -0.02166200801730156, - 0.003531414084136486, - 0.0177137590944767, - 0.0116246547549963, - 0.005285449791699648, - 0.006989465560764074, - -0.004928640089929104, - -0.013405367732048035, - -0.009223693050444126, - 0.011591307818889618, - -0.011884759180247784, - 0.022542359307408333, - 0.007549689617007971, - 0.016860084608197212, - -0.014885960146784782, - 0.015419507399201393, - -0.004321730695664883, - -0.02118181437253952, - -0.037188224494457245, - 0.02108844369649887, - 0.011571300216019154, - 0.022809132933616638, - -0.022995874285697937, - -0.011918105185031891, - 0.013912237249314785, - 5.63767425774131e-05, - -0.006399229168891907, - 0.004435109440237284, - 0.01128451805561781, - 0.0036948127672076225, - 0.01900761015713215, - -0.011984799057245255, - -0.6223291754722595, - 0.003094572341069579, - 0.003368015168234706, - -0.016233166679739952, - 0.014045624062418938, - 0.020048027858138084, - 0.013725495897233486, - 0.008870218880474567, - -0.009423773735761642, - 0.026117123663425446, - 0.004915301688015461, - -0.0013463724171742797, - -0.0037314940709620714, - 0.0022058833856135607, - -0.01727358251810074, - -0.015752974897623062, - 0.0010162402177229524, - -0.018620789051055908, - 0.02208884432911873, - 0.0017857149941846728, - -0.0222355704754591, - 0.0035981074906885624, - -0.009563829749822617, - 0.01767374388873577, - 0.005268776323646307, - 0.018354015424847603, - 0.0022759113926440477, - -0.02595706097781658, - 0.001036248286254704, - -0.0008353344746865332, - -0.00165482924785465, - 0.019514480605721474, - -0.0005598074640147388, - 0.011851412244141102, - 0.04444446414709091, - -0.0066459947265684605, - -0.012311596423387527, - 0.013965591788291931, - 0.01930106244981289, - 0.008169937878847122, - -0.02985195256769657, - 0.0057189567014575005, - 0.012905167415738106, - 0.017727097496390343, - 0.0007019477197900414, - 0.006062427535653114, - 0.02267574705183506, - -0.025010013952851295, - -0.016153134405612946, - -0.021408572793006897, - 0.012198218144476414, - 0.006639325059950352, - -0.012384959496557713, - -0.007016142830252647, - 0.022182215005159378, - 0.01083100400865078, - 0.01939443312585354, - -0.022462327033281326, - 0.013938914984464645, - -0.011678009293973446, - 0.003974924795329571, - 0.006045754067599773, - -0.007529681548476219, - -0.01824730634689331, - -0.015099379234015942, - 0.04380420595407486, - -0.021048428490757942, - -0.017700420692563057, - 0.020821670070290565, - -0.037615060806274414, - -0.01878085359930992, - 0.008583436720073223, - -0.011144462041556835, - -0.017793791368603706, - 0.02075497806072235, - 0.00356142595410347, - 0.02533014304935932, - -0.01099773682653904, - -0.014445784501731396, - 0.004371750634163618, - 0.00439175870269537, - -0.01728692278265953, - -0.022835809737443924, - -0.0032212899532169104, - 0.02643725275993347, - -0.02416967786848545, - -0.00622249161824584, - 0.003608111524954438, - 0.00847005844116211, - 0.021635329350829124, - 0.03673470765352249, - 0.02937176078557968, - -0.012818465940654278, - -0.015432845801115036, - 0.003608111524954438, - 0.028944922611117363, - -0.008083236403763294, - 0.02787782996892929, - 0.011637993156909943, - -0.05391492322087288, - -0.019327739253640175, - 0.004461786709725857, - 0.03638790547847748, - -0.01420568861067295, - 0.030545564368367195, - 0.0024993340484797955, - -0.016019748523831367, - -0.001261338358744979, - 0.027984539046883583, - -0.018073903396725655, - -0.0015731299063190818, - -0.009056960232555866, - 0.006502603646367788, - -0.008676807396113873, - 0.0010337472194805741, - -0.027931183576583862, - 0.03182607516646385, - -0.017540356144309044, - -0.004044952802360058, - 0.005332135129719973, - 0.014539155177772045, - 0.0043083918280899525, - 0.011904766783118248, - -0.012084838934242725, - -0.002017474500462413, - 0.008530082181096077, - 0.01357877068221569, - -0.014232365414500237, - -0.017900500446558, - -0.010544221848249435, - -0.009743901900947094, - 0.006662667728960514, - 0.023329341784119606, - -0.010697617195546627, - 0.03374684602022171, - 0.013251973316073418, - 0.024249710142612457, - -0.008009874261915684, - -0.0076830764301121235, - -0.02955850213766098, - -0.024143001064658165, - -0.013405367732048035, - 0.024569837376475334, - -0.03241297975182533, - -0.009970659390091896, - -0.01133787352591753, - -0.0011779717169702053, - -0.0010395828867331147, - -0.005768976639956236, - -0.011978129856288433, - -0.00960384588688612, - -0.009070298634469509, - 0.005028680432587862, - 0.002739430172368884, - 0.0010979396756738424, - 0.01092437468469143, - -0.0049486481584608555, - -0.018740838393568993, - -0.0011554626980796456, - -0.015712957829236984, - 0.014325736090540886, - 0.021355217322707176, - -0.02459651604294777, - -0.008556759916245937, - -0.007863148115575314, - -0.01480592880398035, - 0.0077097536996006966, - 0.013485400006175041, - -0.0001314067776547745, - -0.030598919838666916, - -0.007589705754071474, - -0.018167274072766304, - -6.466131162596866e-05, - 0.023836210370063782, - -0.028037892654538155, - -0.008823533542454243, - -0.017340276390314102, - 0.014085640199482441, - -0.008016543462872505, - -0.01959451287984848, - 0.009417104534804821, - -0.002702748868614435, - -0.01335868239402771, - 0.0003040800802409649, - 0.026157140731811523, - 0.020528219640254974, - 0.01882086880505085, - 0.02123516984283924, - -0.015672942623496056, - 0.00857009831815958, - 0.01405896246433258, - 0.03870883211493492, - -0.015752974897623062, - 0.020288122817873955, - -0.006299188826233149, - -0.0012596710585057735, - 0.021208493039011955, - 0.01645992323756218, - -0.03123917616903782, - 0.03716154769062996, - 0.035214100033044815, - 0.024823272600769997, - 0.026157140731811523, - -0.006856078747659922, - 0.010157400742173195, - -0.029585178941488266, - 0.018113920465111732, - -0.009590506553649902, - 0.025570238009095192, - 0.007543020416051149, - 0.031319208443164825, - 0.008910234086215496, - -0.04721890762448311, - -0.006172471679747105, - 0.006545954383909702, - 0.032519686967134476, - -0.010030683130025864, - -0.006766042672097683, - 0.009823933243751526, - 0.02031480148434639, - 0.0077497698366642, - 0.01307190116494894, - 0.019047627225518227, - -0.0025526888202875853, - -0.007903164252638817, - 0.009283717721700668, - 0.00562225142493844, - 0.02372950129210949, - 0.009063629433512688, - -0.014339074492454529, - -0.020448187366127968, - 0.00837668776512146, - -0.011764710769057274, - 0.01244498323649168, - 0.032466333359479904, - 0.014459122903645039, - 0.03259972110390663, - -0.008263308554887772, - 0.04332401603460312, - 0.008383356966078281, - 0.03003869391977787, - 0.01896759495139122, - 0.012071500532329082, - -0.01247166097164154, - 0.024863289669156075, - -0.00037431655800901353, - 0.016766713932156563, - 0.03243965655565262, - -0.008069898001849651, - 0.011691347695887089, - -0.00989062711596489, - 0.0037748448085039854, - 0.004525145050138235, - -0.0027811136096715927, - 0.011617985554039478, - 0.0006406732136383653, - 0.007402964401990175, - 0.0030979071743786335, - 0.02715754136443138, - 0.02243565022945404, - 0.005162066780030727, - 0.0177137590944767, - -0.003304656594991684, - 0.001997466431930661, - -0.0005606411723420024, - -0.01968788355588913, - -0.022035490721464157, - -0.020381493493914604, - -0.009190347045660019, - 0.0015948052750900388, - 0.024863289669156075, - -0.009943981654942036, - -0.020808331668376923, - -0.001722356304526329, - -0.012071500532329082, - -0.005205417517572641, - 0.003708151401951909, - -0.017887162044644356, - 0.016086440533399582, - -0.0010037352330982685, - 0.001970789162442088, - -0.002526011550799012, - -0.01723356731235981, - 0.02247566543519497, - 0.0011362882796674967, - -0.004855277482420206, - -0.005172071047127247, - 0.018980933353304863, - -0.008009874261915684, - -0.009056960232555866, - -0.00694278022274375, - 0.00601574219763279, - -0.0299853403121233, - -0.009277047589421272, - -0.002314259996637702, - -0.01607310213148594, - 0.03134588524699211, - -0.004671870730817318, - 0.00510204304009676, - 0.00592237152159214, - 0.0013555428013205528, - 0.01436575222760439, - -0.010597576387226582, - -0.02330266498029232, - 0.04492465406656265, - 0.0025110053829848766, - -0.011791388504207134, - -0.007369617465883493, - 0.0004293385718483478, - -0.023169277235865593, - -0.009903965517878532, - -0.009857280179858208, - -0.006592639721930027, - 0.02643725275993347, - -0.023756179958581924, - 0.005728960502892733, - 0.0064292410388588905, - 5.249497917247936e-05, - 0.040549568831920624, - -0.002124183811247349, - -0.020861687138676643, - -0.025716964155435562, - -0.016406569629907608, - 0.017500340938568115, - 0.015112717635929585, - 0.027557700872421265, - 0.009537152014672756, - 0.01153128407895565, - -0.0156862810254097, - -0.0055889044888317585, - 0.0011154466774314642, - -0.03846873715519905, - -0.00017840476357378066, - -0.003914901055395603, - -0.003584768623113632, - 0.004625185392796993, - 0.021888764575123787, - -0.023115921765565872, - 0.011838073842227459, - -0.008870218880474567, - -0.009337072260677814, - -0.01579299010336399, - -0.00987061858177185, - -0.005692279431968927, - -0.012625055387616158, - -0.02402295172214508, - -0.00694278022274375, - 0.050526898354291916, - 0.02873150445520878, - 0.0012363283894956112, - 0.0326530747115612, - 0.017540356144309044, - 0.019434448331594467, - -0.01561958808451891, - -0.008623452857136726, - 0.01584634557366371, - 0.0018223964143544436, - 0.02907831035554409, - -0.02806457132101059, - -0.0011821399675682187, - 0.011831403709948063, - -0.01616647280752659, - 0.032466333359479904, - 0.0006223325035534799, - 0.02228892408311367, - 0.013051892630755901, - 0.010457520373165607, - -0.010457520373165607, - 0.021355217322707176, - -0.019074304029345512, - 0.0029678549617528915, - 0.010884358547627926, - 0.0004660199338104576, - -0.004491798579692841, - 0.009930643253028393, - -0.006312527693808079, - -0.016873423010110855, - -0.0017790456768125296, - -0.00017590376955922693, - 0.0026027087587863207, - 0.014352413825690746, - -0.021115122362971306, - 0.002002468565478921, - -0.020194752141833305, - -0.04164334014058113, - -0.02531680464744568, - 0.022328941151499748, - -0.004201682284474373, - -0.02046152576804161, - -0.010637592524290085, - -0.006809393409639597, - 0.009517144411802292, - -0.012264911085367203, - -0.019661206752061844, - 0.020581575110554695, - -0.030358823016285896, - -0.020341478288173676, - -0.019341077655553818, - 0.024129662662744522, - -8.623244502814487e-05, - 0.017847146838903427, - -0.00198579509742558, - -0.0006006571929901838, - -0.003951582126319408, - -0.017727097496390343, - -0.032706428319215775, - -0.008069898001849651, - 5.835670162923634e-05, - -0.022262247279286385, - 0.033533427864313126, - -0.021061766892671585, - -0.020768316462635994, - 0.002627718960866332, - 0.021795393899083138, - -0.010064030066132545, - 0.004651862662285566, - 0.018407370895147324, - -0.0022725765593349934, - -0.003338003298267722, - 0.005122051108628511, - -0.012304927222430706, - 0.01616647280752659, - 0.020901702344417572, - -0.03243965655565262, - 0.026690687984228134, - -0.014259043149650097, - 0.007949849590659142, - -0.015019346959888935, - 0.005238764453679323, - 0.0029628530610352755, - -0.014632525853812695, - -0.014605848118662834, - 0.006639325059950352, - -0.012491668574512005, - 0.005045353434979916, - -0.014699218794703484, - 0.026517285034060478, - -0.016833407804369926, - 0.014725896529853344, - -0.0013363683829084039, - -0.00030658108880743384, - -0.0050053377635777, - 0.029051633551716805, - 0.0020674944389611483, - 0.022075505927205086, - -0.022809132933616638, - 0.046952132135629654, - 0.0005072864587418735, - 0.006305858492851257, - 0.02474324032664299, - -0.007816462777554989, - 0.018620789051055908, - -0.02595706097781658, - 0.012364950962364674, - -0.0003561842895578593, - 0.006469257175922394, - 0.024729901924729347, - -0.00448846397921443, - -0.028518086299300194, - -0.03153262659907341, - 0.008069898001849651, - 0.02214219979941845, - -0.01878085359930992, - 0.011277848854660988, - -0.032519686967134476, - 0.006045754067599773, - 0.0032379631884396076, - 0.008903564885258675, - 0.01631319895386696, - -0.01878085359930992, - -0.029131663963198662, - 0.025050031021237373, - 0.011858081445097923, - -0.0016848413506522775, - -0.0051487283781170845, - -0.02012806013226509, - -0.01017740834504366, - -0.0030445524025708437, - -0.028678148984909058, - -0.021155137568712234, - 0.027931183576583862, - -0.0060290805995464325, - 0.011858081445097923, - 0.007936511188745499, - 0.04332401603460312, - 0.01017740834504366, - 0.01675337553024292, - 0.00989062711596489, - -0.003664800664409995, - -0.0012279916554689407, - 0.007249569520354271, - 0.0025160075165331364, - -0.037908513098955154, - 0.02468988671898842, - 0.0072829159907996655, - 0.022448988631367683, - 0.015766313299536705, - -0.008583436720073223, - 0.010564230382442474, - 0.0285981185734272, - -0.012558361515402794, - -0.027557700872421265, - -0.0197412371635437, - -0.009590506553649902, - -0.02272910065948963, - 0.005895694252103567, - 0.007176206912845373, - 0.006002403330057859, - -0.01561958808451891, - 0.005352143198251724, - 0.033106591552495956, - -0.015539555810391903, - -0.004034949000924826, - 0.008483396843075752, - 0.014619187451899052, - -0.030598919838666916, - 0.017607050016522408, - 0.002626051427796483, - 0.012518346309661865, - -0.008103244937956333, - -0.014899299480021, - -0.017980532720685005, - -0.021168475970625877, - 0.007202884182333946, - -0.022502344101667404, - 0.005068696103990078, - 0.005252102855592966, - -0.0008407533168792725, - -0.012958521954715252, - 0.0029778589960187674, - 0.007743100635707378, - -0.017366953194141388, - 0.017246905714273453, - -0.01616647280752659, - -0.0023009213618934155, - -0.015512878075242043, - -0.016726696863770485, - -0.008903564885258675, - 0.03291984647512436, - -0.010104046203196049, - 0.009910634718835354, - 0.03841538354754448, - -0.015659604221582413, - 0.02214219979941845, - 0.025143401697278023, - -0.017006808891892433, - 0.04102976247668266, - 0.024903304874897003, - 0.051967475563287735, - 0.019487803801894188, - -0.022222232073545456, - -0.02464986965060234, - -0.03918902575969696, - 8.425248961430043e-05, - -0.00529545359313488, - 0.0126383937895298, - 0.006009072996675968, - -0.0035480873193591833, - -0.023142600432038307, - -0.00372482487000525, - 0.01039749663323164, - -0.026370558887720108, - -0.01564626581966877, - 0.05063360929489136, - 0.025676948949694633, - 0.007096174638718367, - -0.016633326187729836, - -0.005969056859612465, - -0.030919047072529793, - 0.0007532182498835027, - -0.0044217705726623535, - -0.013325335457921028, - 0.007516343146562576, - -0.0028878229204565287, - -0.007703084498643875, - 0.044124335050582886, - 0.008303324691951275, - 0.0177137590944767, - -0.006089104805141687, - -0.011584638617932796, - -0.00987061858177185, - -0.026637332513928413, - -0.00023175946262199432, - 0.01747366413474083, - 0.00015120637544896454, - 0.038148608058691025, - 0.011871419847011566, - -0.01247166097164154, - 0.013992269523441792, - -0.016059763729572296, - -0.020488204434514046, - 0.0021758712828159332, - -0.006399229168891907, - 0.02276911772787571, - 0.001997466431930661, - -0.005372151266783476, - -0.021635329350829124, - 0.01364546362310648, - 0.01499267015606165, - 0.01537949126213789, - -0.003077899105846882, - -0.021635329350829124, - -0.00863679125905037, - -0.019847948104143143, - 0.015806328505277634, - -0.013978931121528149, - -0.005682275164872408, - -0.01988796330988407, - -0.01316527184098959, - -0.0077497698366642, - -0.012811796739697456, - 0.0055188764818012714, - 0.006079101003706455, - -0.03193278610706329, - 0.007262908387929201, - 0.013325335457921028, - -0.004865281283855438, - 0.028864892199635506, - -0.00529545359313488, - -0.007536351215094328, - -0.01171802543103695, - 0.025156740099191666, - -0.034787263721227646, - 0.016299860551953316, - 0.054901983588933945, - -0.0018157270969823003, - -0.006812728010118008, - 0.014419106766581535, - -0.012144862674176693, - -0.01776711456477642, - 0.015926377847790718, - -0.0075096734799444675, - -0.011044422164559364, - 0.0016314865788444877, - 0.000683607067912817, - 0.018754176795482635, - -0.02247566543519497, - -0.01743364706635475, - 0.011037752963602543, - 0.009643862023949623, - 0.00623583048582077, - -0.019341077655553818, - -0.012191548012197018, - 0.014312397688627243, - 0.014752574265003204, - -0.0081632686778903, - 0.01743364706635475, - -0.01273176446557045, - 0.022515682503581047, - 0.010284118354320526, - -0.0014364084927365184, - 0.0057623074389994144, - -0.01795385591685772, - -0.018140597268939018, - -0.013725495897233486, - 0.025823673233389854, - -0.00857009831815958, - 0.002082500606775284, - -0.02470322512090206, - -0.00510204304009676, - -0.022502344101667404, - 0.023529421538114548, - 0.005338804330676794, - -0.0100106755271554, - 0.005725625902414322, - 0.02040817216038704, - -0.022889165207743645, - 0.015806328505277634, - 0.0014555827947333455, - -0.014712558127939701, - -0.0016406569629907608, - -0.012404967099428177, - -0.03590771183371544, - -0.003654796862974763, - -0.015006008557975292, - 0.03953583166003227, - 0.026690687984228134, - -0.052687764167785645, - -0.024996675550937653, - -0.029185019433498383, - -0.044311076402664185, - -0.018740838393568993, - -0.012585039250552654, - -0.011791388504207134, - -0.0030378832016140223, - 0.013632125221192837, - -0.012911836616694927, - 0.017873823642730713, - -0.005495533812791109, - 0.03307991102337837, - -0.032759785652160645, - -0.006709353066980839, - 0.0013738834531977773, - -1.2980458450329024e-05, - 0.02420969307422638, - -0.006706018466502428, - -0.025890367105603218, - -0.02825131267309189, - 0.012605046853423119, - -8.753505244385451e-05, - 0.006092439405620098, - 0.016913438215851784, - -0.005935709923505783, - -0.009783918038010597, - 0.009003604762256145, - 0.01728692278265953, - 0.01499267015606165, - -0.002852808916941285, - 0.013065231963992119, - -0.039162348955869675, - -0.0018007210455834866, - 0.024383096024394035, - 0.0027511015068739653, - -0.02801121585071087, - -0.018087241798639297, - 0.00786981824785471, - -0.009223693050444126, - -0.00249766674824059, - 0.04249701648950577, - -0.03601441904902458, - 0.00027281756047159433, - -0.027904506772756577, - 0.038335349410772324, - 0.0050053377635777, - -0.008943581022322178, - 0.01863412745296955, - 0.016046425327658653, - -0.014512477442622185, - -0.013952253386378288, - 0.011157801374793053, - -0.03812193125486374, - -0.0020975065417587757, - 0.012885159812867641, - -0.019767915830016136, - 0.04260372743010521, - -0.030678950250148773, - 0.014138994738459587, - -0.009010274894535542, - 0.008716823533177376, - -0.004841938614845276, - -0.020928379148244858, - -0.015819666907191277, - 0.03537416458129883, - 0.022849150002002716, - -0.012678409926593304, - 0.0052621071226894855, - 0.00967720802873373, - -0.018607450649142265, - -0.010290787555277348, - -0.0234360508620739, - -0.005835670046508312, - -0.024036291986703873, - -0.00013432462583296, - 0.008890226483345032, - -0.016099780797958374, - 0.0005585569888353348, - 0.024049630388617516, - -0.00022988372074905783, - -0.023129262030124664, - 0.007302924059331417, - 0.19389097392559052, - -0.012878489680588245, - -0.0046618664637207985, - 0.02406296879053116, - -0.005172071047127247, - 0.0042216903530061245, - 0.026690687984228134, - -0.0019291057251393795, - 0.00611244747415185, - 0.023022551089525223, - -0.02830466628074646, - 0.001932440442033112, - 0.013845544308423996, - -0.002857811050489545, - 0.009110314771533012, - -0.010450851172208786, - -0.01728692278265953, - -0.01225157268345356, - -0.006092439405620098, - 0.031079111620783806, - 0.015459523536264896, - -0.04364414140582085, - -0.006699349265545607, - -0.009116983972489834, - 0.023716162890195847, - 0.00469521339982748, - -0.0016439915634691715, - 0.007983196526765823, - 0.018740838393568993, - -0.009157000109553337, - -0.0031079112086445093, - 0.022168876603245735, - 0.0030012016650289297, - -0.01355209294706583, - 0.010971060022711754, - 0.00014537070819642395, - 0.0232493095099926, - 0.0008795188623480499, - 0.03606777638196945, - 0.021408572793006897, - 0.004778580274432898, - -6.919437146279961e-05, - 0.0030979071743786335, - -0.006255838088691235, - -0.03652128949761391, - 0.019914640113711357, - 0.004511806648224592, - 0.0064725917764008045, - -0.00866346899420023, - 0.0010187412844970822, - -0.016780052334070206, - -0.012885159812867641, - 0.006699349265545607, - 0.01564626581966877, - -0.029691889882087708, - -0.010544221848249435, - 0.019767915830016136, - -0.020688284188508987, - 0.0033663478679955006, - 0.022995874285697937, - -0.03684141859412193, - 0.025743640959262848, - -0.004051622468978167, - 0.016193151473999023, - -0.0296118576079607, - -0.017300261184573174, - -0.037481676787137985, - 0.009857280179858208, - 0.00020362320356070995, - -0.024809934198856354, - -0.024863289669156075, - -0.026170479133725166, - -0.016099780797958374, - 0.016006410121917725, - -0.01728692278265953, - -0.0398559607565403, - 0.011557960882782936, - 0.005492199212312698, - 0.023115921765565872, - 0.009650531224906445, - -0.011051091365516186, - 0.0069561186246573925, - -0.006389224901795387, - -0.02926505170762539, - 0.0009803925640881062, - -0.03625451773405075, - 0.023982936516404152, - -0.015392830595374107, - -0.01540616899728775, - -0.04025612026453018, - -0.007016142830252647, - 0.01439242996275425, - 0.00020185165340080857, - -0.011838073842227459, - -0.003056223737075925, - 0.0063592130318284035, - 0.008923573419451714, - 0.017980532720685005, - -0.030598919838666916, - 0.01988796330988407, - -0.0163265373557806, - 0.06263841688632965, - 0.032999880611896515, - -0.0022759113926440477, - -0.021381894126534462, - 0.015672942623496056, - 0.010644261725246906, - 0.026543961837887764, - 0.004988664295524359, - -0.009563829749822617, - -0.0006731862085871398, - -0.030652273446321487, - 0.016966793686151505, - -0.005625586025416851, - 0.00672602653503418, - 0.014845944941043854, - -0.004635189194232225, - -0.016353214159607887, - -0.01295185275375843, - -0.00020278953888919204, - -0.021675346419215202, - -0.006922772154211998, - 0.012798458337783813, - 0.008249970152974129, - 0.0023342680651694536, - -0.03230626881122589, - -0.05212754011154175, - -0.0005589738138951361, - -0.014352413825690746, - -0.009710554964840412, - 0.017353614792227745, - -0.01684674620628357, - -0.0052354298532009125, - 0.018474064767360687, - 0.008463389240205288, - 0.017353614792227745, - -0.01547286193817854, - -0.04839270934462547, - -0.0045084720477461815, - 0.006165802013128996, - 0.026490606367588043, - -0.020061366260051727, - 0.0007753104437142611, - -0.0010287452023476362, - 0.02272910065948963, - -0.00448846397921443, - 0.003908231388777494, - -0.014552493579685688, - -0.0065592932514846325, - -0.021915441378951073, - -0.01804722659289837, - -0.0023225967306643724, - -0.0029094982892274857, - -0.0064292410388588905, - 0.026610655710101128, - -0.004048287868499756, - -0.018073903396725655, - -0.03241297975182533, - -0.0001468296250095591, - 0.00878351740539074, - -0.008043220266699791, - -0.008223292417824268, - -0.011758041568100452, - -0.019434448331594467, - -0.002627718960866332, - 0.0061858100816607475, - -0.1688142567873001, - 0.020341478288173676, - 0.04476458951830864, - -0.03452048823237419, - 0.018647465854883194, - 0.006479260977357626, - 0.0010129056172445416, - -0.0061424593441188335, - -0.011491267941892147, - -0.005165401846170425, - 0.026503946632146835, - 0.02099507302045822, - -0.0016406569629907608, - 0.0031412579119205475, - 0.0035380832850933075, - 0.0049486481584608555, - -0.011331204324960709, - 0.04073631018400192, - 0.03214620426297188, - 0.027797797694802284, - -0.0030578910373151302, - -0.029238374903798103, - 0.010290787555277348, - -0.006592639721930027, - 0.010624254122376442, - -0.004831934813410044, - -0.01068427786231041, - 0.008850210346281528, - 0.0008536751847714186, - -0.01174470316618681, - -0.008890226483345032, - -0.0026443921960890293, - 0.018073903396725655, - -0.003531414084136486, - 0.002227558521553874, - -0.0266640093177557, - -0.007876487448811531, - -0.008603445254266262, - -0.015232766047120094, - 0.030678950250148773, - 0.012651732191443443, - 0.01092437468469143, - -0.014925976283848286, - -0.012585039250552654, - -0.046285200864076614, - -0.015552894212305546, - 0.022889165207743645, - -0.005155397579073906, - -0.022355617955327034, - -0.007382956333458424, - 0.003494732780382037, - -0.013618786819279194, - 0.0013563764514401555, - 0.01867414452135563, - -0.000850340467877686, - 0.030919047072529793, - 0.002922836923971772, - 0.021008411422371864, - -0.0020208091009408236, - -0.007649729959666729, - -0.0006773545756004751, - -0.008143261075019836, - 0.011291188187897205, - -0.001814059680327773, - -0.015913037583231926, - -0.032466333359479904, - 0.014699218794703484, - 3.354207649408636e-07, - -0.011958121322095394, - -0.006085770204663277, - -0.002217554720118642, - -0.014339074492454529, - 0.04481794685125351, - 0.005025345366448164, - -0.00045018026139587164, - -0.007616383023560047, - -0.005728960502892733, - 0.00011504606663947925, - 0.015326136723160744, - -0.003384688636288047, - -0.03596106544137001, - 0.05527546629309654, - -0.008643461391329765, - -0.019674545153975487, - 0.0010012342827394605, - 0.001980793196707964, - 0.011404566466808319, - 0.0002471822954248637, - 0.011698017828166485, - 0.008029881864786148, - -0.007649729959666729, - -0.03385355696082115, - 0.002874484285712242, - -0.026837412267923355, - 0.018887562677264214, - -0.006806058809161186, - 0.01915433630347252, - -0.022755779325962067, - -0.0015714626060798764, - -0.024969998747110367, - 0.015806328505277634, - -0.004878620151430368, - -0.035747647285461426, - -0.004805257543921471, - 0.001932440442033112, - -0.0015898032579571009, - -0.023329341784119606, - 0.013125255703926086, - 0.026877429336309433, - -0.0011821399675682187, - -0.013805528171360493, - -0.021448587998747826, - 0.02787782996892929, - -0.006335870362818241, - 0.006889425218105316, - 0.015766313299536705, - 0.006996134761720896, - -0.02160865254700184, - 0.0044651213102042675, - -0.0014455788768827915, - 0.03003869391977787, - -0.0021975466515868902, - -0.019034288823604584, - 0.01915433630347252, - 0.005275445524603128, - -0.020821670070290565, - -0.09112982451915741, - 0.007649729959666729, - 0.020381493493914604, - 0.0230625681579113, - 0.021702023223042488, - 0.007296254858374596, - -0.00673936540260911, - 0.009450450539588928, - -0.018847547471523285, - 0.015272782184183598, - -0.04567161947488785, - -0.03241297975182533, - 0.005202082917094231, - -0.007996534928679466, - 0.01694011688232422, - -0.011571300216019154, - -0.02354275994002819, - -0.004921970888972282, - 0.008516743779182434, - 0.015006008557975292, - 0.02190210297703743, - -0.004415101371705532, - -0.010364149697124958, - -0.0034413780085742474, - -0.00030574743868783116, - 0.007903164252638817, - -0.02782447449862957, - 0.01210484653711319, - 0.026784058660268784, - 0.015019346959888935, - 0.01027744822204113, - -0.014765912666916847, - 0.01704682596027851, - -0.02459651604294777, - -0.008049890398979187, - 0.0003153345896862447, - -0.019674545153975487, - -0.030305467545986176, - 0.009190347045660019, - -0.0153127983212471, - -0.008209954015910625, - 0.004808592144399881, - 0.020528219640254974, - -0.026397235691547394, - 0.004044952802360058, - -0.01645992323756218, - -0.01728692278265953, - -0.003558091353625059, - -0.010297456756234169, - -0.02950514853000641, - -0.021408572793006897, - -0.01660664938390255, - -0.007202884182333946, - 0.023569436743855476, - 0.006902764085680246, - 0.005098708439618349, - -0.00885687954723835, - 0.0029044963885098696, - -0.0052787805907428265, - -0.001995799131691456, - -0.021528620272874832, - 0.014138994738459587, - -0.03438710421323776, - 0.021315202116966248, - 0.008610114455223083, - 0.003187943249940872, - -0.03294652700424194, - -0.0165132787078619, - 0.00244931410998106, - -0.0013121920637786388, - -0.029104987159371376, - 0.006922772154211998, - 0.00020581157878041267, - -0.01714019663631916, - -0.03139923885464668, - -0.028971601277589798, - -0.024489806964993477, - -0.01111778523772955, - 0.00581232737749815, - -0.024809934198856354, - -0.015953054651618004, - -0.029931984841823578, - 0.03673470765352249, - -0.0005052022752352059, - 0.02502335235476494, - 0.00803655106574297, - -0.0019441117765381932, - -0.026837412267923355, - 0.01940777152776718, - -0.018994271755218506, - 0.0041083116084337234, - -0.01181806530803442, - 0.02175537869334221, - -0.01732693798840046, - -0.003389690537005663, - 0.00540549773722887, - 0.003338003298267722, - 0.004328399896621704, - 0.004355077166110277, - 0.008516743779182434, - -0.04519142955541611, - -0.01266507152467966, - -0.04844606667757034, - 0.01616647280752659, - 0.01988796330988407, - -0.008843541145324707, - -0.030598919838666916, - -0.0011079435935243964, - 0.019794592633843422, - 0.016233166679739952, - 0.01172469463199377, - 0.0043784198351204395, - 0.0007440479239448905, - -0.013051892630755901, - -0.006092439405620098, - -0.005805658176541328, - -0.016780052334070206, - -0.01184474304318428, - 0.009663869626820087, - 0.009323732927441597, - 0.020194752141833305, - 0.004461786709725857, - -0.014112317934632301, - 0.01033080369234085, - 0.009303725324571133, - -0.015232766047120094, - -0.01583300717175007, - 0.0031512617133557796, - -0.01017740834504366, - -0.004144993145018816, - -0.009323732927441597, - -0.016553295776247978, - -0.0008153264643624425, - 0.00885687954723835, - -0.01766040548682213, - 0.016299860551953316, - -0.00869014672935009, - -0.003608111524954438, - 0.02151528187096119, - 0.024089645594358444, - 0.024102983996272087, - 0.0459383949637413, - -0.035987742245197296, - -0.028091248124837875, - 0.020488204434514046, - -0.035454194992780685, - -0.009537152014672756, - 0.0038615462835878134, - 0.016820067539811134, - -0.015366152860224247, - 0.006282515823841095, - -0.016913438215851784, - 0.043777529150247574, - 0.013065231963992119, - 0.011984799057245255, - -0.011858081445097923, - 0.024583177641034126, - -0.04177672788500786, - -0.003147927112877369, - 0.023222632706165314, - -0.0034147007390856743, - -0.023769518360495567, - 0.04404430091381073, - 0.00919701624661684, - 0.020875025540590286, - 0.010244102217257023, - 0.020328139886260033, - -0.031799398362636566, - -0.025503545999526978, - -0.00960384588688612, - 0.01742030866444111, - -0.021501943469047546, - -0.029771920293569565, - -0.01165133249014616, - 0.00888355728238821, - 0.033773522824048996, - -0.006259173154830933, - -0.01244498323649168, - 0.027277588844299316, - -0.0003861963050439954, - 0.00046518625458702445, - 0.04553823545575142, - 0.028197957202792168, - 0.0007207052549347281, - -0.025063369423151016, - -0.005465521942824125, - 0.024436451494693756, - 0.0008978595142252743, - -0.01292517501860857, - -0.0020274785347282887, - -0.005485530011355877, - 0.0009628855623304844, - 0.005645594093948603, - 0.027237573638558388, - 0.014619187451899052, - -0.011197817511856556, - 0.027717765420675278, - 0.01843404769897461, - 0.013625456020236015, - -0.026357220485806465, - 0.009423773735761642, - 0.034147005528211594, - -0.005165401846170425, - 0.017006808891892433, - 0.01027744822204113, - -0.03590771183371544, - 0.0011379556963220239, - -0.010004005394876003, - 0.008483396843075752, - -0.041696697473526, - 0.009830603376030922, - 0.012138193473219872, - -0.010257440619170666, - 0.032573044300079346, - -0.004471790511161089, - -0.004031614400446415, - -0.007603044155985117, - 0.030305467545986176, - 0.002105843275785446, - -0.014592509716749191, - -0.03094572387635708, - 0.02267574705183506, - 0.004195013083517551, - 0.0021108451765030622, - -0.0033513419330120087, - 0.003481393912807107, - 0.017246905714273453, - 0.020781654864549637, - -0.010317464359104633, - -0.0029795262962579727, - 0.022515682503581047, - -0.03854876756668091, - 0.015246104449033737, - -0.005322130862623453, - -0.020141398534178734, - -0.015032686293125153, - -0.017833808436989784, - -0.012818465940654278, - 0.02782447449862957, - 0.004628519993275404, - 0.021702023223042488, - 0.11449918150901794, - 0.0334000401198864, - -0.008216623216867447, - -0.0011312862625345588, - -0.009630522690713406, - 0.0285981185734272, - 0.010237433016300201, - 0.00967720802873373, - -0.0025543561205267906, - -0.07773779332637787, - 0.0005402163369581103, - -0.006772711873054504, - 0.015339475125074387, - -0.040176086127758026, - -0.00885687954723835, - 0.016766713932156563, - -0.020594913512468338, - 0.024156339466571808, - -0.018367353826761246, - 0.013538754545152187, - 0.031212497502565384, - -0.011391228064894676, - 0.025210093706846237, - 0.03286649286746979, - -0.03412032872438431, - -0.013992269523441792, - 0.007442980073392391, - -0.002606043592095375, - 0.004094973206520081, - 0.012725095264613628, - -0.017220228910446167, - -0.004735229536890984, - -0.06258506327867508, - -0.02517007850110531, - 0.018567435443401337, - -0.00885687954723835, - -0.012751772999763489, - -0.022302264347672462, - 0.024609854444861412, - -0.007056158967316151, - 0.012965191155672073, - 0.032039497047662735, - -0.018260644748806953, - -0.027264250442385674, - -0.013978931121528149, - -0.010477528907358646, - -0.0046652015298604965, - -0.029931984841823578, - -0.04793919622898102 - ], - "sparse": "SparseEmbedding(values=array([0.9429887 , 1.59321075, 0.9429887 , 1.84807219, 2.05577062,\n 0.60010655, 0.60010655, 0.60010655, 1.52319135, 0.9429887 ,\n 1.99539415, 0.60010655, 1.32012892, 0.60010655, 0.60010655,\n 0.9429887 , 0.60010655, 1.82560778, 1.59321075, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 1.16483971, 1.32012892,\n 0.60010655, 0.60010655, 1.86799337, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 1.16483971, 1.16483971, 0.60010655,\n 0.9429887 , 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 1.32012892, 0.60010655, 1.16483971, 0.60010655, 1.16483971,\n 0.60010655, 0.60010655, 0.9429887 , 0.60010655, 1.16483971,\n 0.60010655, 0.60010655, 0.60010655, 1.52319135, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 1.73693138,\n 0.60010655, 0.60010655, 0.9429887 , 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.9429887 , 1.16483971,\n 0.60010655, 0.60010655, 0.60010655, 0.9429887 , 0.60010655,\n 0.60010655, 1.59321075, 1.69723757, 0.60010655, 0.60010655,\n 1.32012892, 1.16483971, 0.60010655, 1.32012892, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 1.16483971, 1.73693138, 0.9429887 , 0.9429887 , 0.9429887 ,\n 0.9429887 , 0.60010655, 0.60010655, 0.9429887 , 0.9429887 ,\n 0.60010655, 1.16483971, 0.9429887 , 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 1.16483971, 0.9429887 , 1.16483971, 0.60010655, 1.52319135,\n 0.60010655, 0.60010655, 0.9429887 , 1.32012892, 0.60010655,\n 0.60010655, 0.60010655, 0.9429887 , 1.32012892, 0.60010655,\n 0.60010655, 0.60010655, 1.52319135, 0.60010655, 0.60010655,\n 0.60010655, 0.9429887 , 0.60010655, 0.60010655, 0.60010655,\n 0.9429887 , 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 1.59321075, 0.60010655, 0.9429887 , 0.60010655, 0.60010655,\n 0.60010655, 0.9429887 , 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 1.32012892, 0.60010655, 0.60010655,\n 0.60010655, 0.9429887 , 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 1.32012892,\n 1.16483971, 0.60010655, 0.60010655, 1.16483971, 1.32012892,\n 0.60010655, 1.32012892, 0.9429887 , 0.60010655, 1.16483971,\n 0.60010655, 0.9429887 , 0.60010655, 0.60010655, 0.60010655,\n 0.9429887 , 1.52319135, 0.9429887 , 1.32012892, 1.16483971,\n 1.59321075, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 1.52319135, 1.73693138,\n 0.9429887 , 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.9429887 , 0.60010655,\n 0.60010655, 0.9429887 , 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.9429887 , 1.16483971, 0.60010655,\n 0.9429887 , 0.9429887 , 0.9429887 , 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.9429887 , 1.43490446, 1.16483971,\n 1.43490446, 0.60010655, 0.9429887 , 1.16483971, 1.16483971,\n 0.60010655, 1.52319135, 1.32012892, 0.60010655, 0.9429887 ,\n 0.9429887 , 0.9429887 , 1.16483971, 0.9429887 , 0.9429887 ,\n 0.9429887 , 0.9429887 , 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.9429887 , 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 1.16483971, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.9429887 ,\n 1.16483971, 0.9429887 , 0.60010655, 0.9429887 , 0.60010655,\n 0.60010655, 0.60010655, 1.16483971, 0.60010655, 0.9429887 ,\n 0.60010655, 0.60010655, 0.60010655, 0.60010655, 0.60010655,\n 0.60010655, 0.60010655, 0.60010655]), indices=array([ 264741300, 1810453357, 471957998, 2124172637, 1109731834,\n 1386751543, 2048700657, 52870164, 338063690, 592641804,\n 408270109, 1665058112, 1448994436, 489504225, 1314093197,\n 1393334896, 1451074458, 1638510030, 651773314, 193831121,\n 121017043, 1752377948, 1033482951, 1793743868, 1505931685,\n 249475666, 1245012157, 164058840, 1476826514, 163984983,\n 1225674244, 1653355477, 812080723, 1125382419, 1143891748,\n 643383837, 1747433558, 24615157, 833760702, 204345709,\n 738624403, 2133075641, 1603606855, 821190249, 431038374,\n 255174557, 624443588, 76479261, 2034018142, 1515684580,\n 1084925772, 1260730820, 593807351, 2059599916, 433708589,\n 842253245, 1150567817, 2053391496, 147047731, 1066675059,\n 1897848199, 932903491, 1793612467, 1680012685, 1721868368,\n 1336943920, 199066008, 1131799396, 897351732, 47951928,\n 1820185893, 909246637, 1337361765, 623812177, 1900139886,\n 1686095082, 938270080, 641040124, 719115500, 1092081572,\n 1227009850, 2061370966, 580347437, 402908866, 858374087,\n 809625759, 1610176724, 1162941628, 604781719, 2101841856,\n 1332909437, 739092865, 148947950, 1429617482, 1918983413,\n 1288398484, 599362555, 1287929316, 1605015950, 1028984916,\n 653745147, 1047604504, 190652800, 1661696679, 1305261594,\n 390138254, 113511233, 2145914557, 1517027679, 717918380,\n 764035188, 1079921207, 1282568013, 958808074, 692860145,\n 855741121, 1358093424, 883548484, 1882506693, 861701685,\n 528760020, 515481713, 1800478942, 2094190344, 221930647,\n 457362970, 662738379, 1902464655, 1932397303, 1409851894,\n 675675403, 795595028, 516830072, 1394226660, 231980230,\n 1950272050, 683459885, 456016094, 915344176, 1354425271,\n 92028982, 1914234582, 1571244170, 2028297786, 1536282900,\n 169111933, 402184101, 1286817522, 1692528561, 516816075,\n 478057895, 70307177, 762622902, 2134870292, 1747167004,\n 502919461, 565373295, 1208548439, 1496316063, 311286247,\n 482341621, 1116117978, 391312375, 1610506619, 1322664338,\n 17485943, 394884850, 1027520875, 1654103847, 1308536885,\n 1214749696, 962284907, 912658635, 826765122, 1411214762,\n 1598540965, 1356962648, 1642199520, 331002872, 97631755,\n 49001832, 2004105156, 1981785931, 1224449249, 911111262,\n 1997245650, 134490412, 583924216, 2103309648, 390850927,\n 697303812, 1676350980, 1145495814, 715386164, 1174634009,\n 1284206673, 178503735, 1066874362, 997168741, 833931470,\n 1463819067, 192819851, 1766818657, 269797300, 1685461861,\n 305710727, 764297089, 1273489340, 377337557, 1991002768,\n 1669595920, 496971114, 2098979715, 1985536144, 1087744415,\n 670727360, 595863845, 1759187359, 342040519, 1165861821,\n 1824412965, 670450259, 253935924, 1376624736, 150695120,\n 1818990465, 1132206868, 1189835409, 1621431669, 193740839,\n 1555540962, 1215506914, 1679395615, 1964147822, 429659023,\n 1984074092, 423733604, 1852771076, 2063796160, 435377331,\n 942746868, 1926286779, 1952376732, 820138350, 1969636893,\n 1813428189, 1675419107, 1293336596, 1200525189, 492661292,\n 595088298, 1485265044, 1190994849, 169637107, 315541288,\n 1042398117, 1508208021, 2051187682, 1335071803, 1310266214,\n 1195221416, 1536792541, 1839747875, 1046672802, 1326741510,\n 1919511919, 1147900472, 327670196, 1413554298, 2095749492,\n 1407327463, 1742567733, 9411611, 1398598470, 46081745,\n 935622057, 1967433918, 136317857, 1046792826, 406720610,\n 1392079869, 80898441, 2000448973, 1446445706, 1644238372,\n 759690987, 777673919, 58688853, 1942927012, 1000550290,\n 1769347644, 1448750675, 114406085, 318678446, 521316034,\n 1916510910, 811752774, 1543480502, 1168595795, 1208237962,\n 1841900287, 1516843364, 627407068, 2116290218, 566928813,\n 740705568, 195402734, 1545633669, 979035209, 946564065,\n 237963220, 471701132, 405956143, 1475858647, 478395059,\n 584805817, 1088727617, 1565709939, 475198974, 1835191169,\n 383220595, 1573401968, 413953749, 1135154991, 1584422431,\n 2079643764, 1088799695, 1844717967]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 54, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 701 - } -} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000055.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000055.json deleted file mode 100644 index e654372c76c27a589707db9da9dfb09b781b24ca..0000000000000000000000000000000000000000 --- a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000055.json +++ /dev/null @@ -1,1573 +0,0 @@ -{ - "id": "61a115b2-0ff7-441a-f6d9-eb3d00000055", - "content": "\ud835\udc49\ud835\udc3a\ud835\udc34 = \ud835\udc49\ud835\udc5c\ud835\udc59\ud835\udc62\ud835\udc52\ud835\udc5a\ud835\udc52\ud835\udc5b \ud835\udc51\ud835\udc52\ud835\udc60 \ud835\udc3a\ud835\udc52\ud835\udc4f\ud835\udc56\ud835\udc52\ud835\udc61\ud835\udc60\ud835\udc4e\ud835\udc62\ud835\udc60\ud835\udc60\ud835\udc50\u210e\ud835\udc5b\ud835\udc56\ud835\udc61\ud835\udc61\ud835\udc60 [\ud835\udc5a3] 16 Methodik und Toolerl\u00e4uterung", - "embedding": { - "dense": [ - -0.0017607625341042876, - 0.012836633250117302, - 0.013954577967524529, - -0.03537965565919876, - -0.0002918163954745978, - 0.015019913204014301, - -0.019478539004921913, - -0.006260489113628864, - -0.012895818799734116, - -0.025055108591914177, - -0.011600318364799023, - 0.005977714899927378, - -0.0036398957017809153, - 0.02159605734050274, - -0.02110942266881466, - -0.008910675533115864, - 0.038062721490859985, - 0.0036530480720102787, - 0.0150856738910079, - -0.008226756006479263, - -0.008963284082710743, - 0.0031795655377209187, - 0.0005618493305519223, - -0.0058692083694040775, - -0.02389770746231079, - 0.0025959329213947058, - 0.01912342756986618, - -0.033275287598371506, - -0.006191439460963011, - 0.0038075873162597418, - 0.021727580577135086, - -0.004770992323756218, - -0.003948974423110485, - -0.001507580978795886, - -0.021832797676324844, - 0.023082265630364418, - 0.008305669762194157, - -0.0020024357363581657, - 0.020372893661260605, - 0.0015815626829862595, - 0.015388176776468754, - -0.010686233639717102, - 0.006526822689920664, - -0.019425928592681885, - 0.028066983446478844, - 0.0033538334537297487, - -0.005852768197655678, - -0.011705536395311356, - -0.0048367539420723915, - 0.0335383340716362, - 0.008529258891940117, - 0.028935033828020096, - -0.02493673749268055, - 0.011021616868674755, - 0.007036474067717791, - -0.004747976083308458, - -0.004609876777976751, - 0.022621935233473778, - 0.003981855232268572, - 0.009969434700906277, - -0.029434820637106895, - -0.014178166165947914, - 0.0005158162675797939, - 0.00012587150558829308, - -0.013928272761404514, - -0.014901542104780674, - -0.01571698486804962, - 0.010449492372572422, - -0.0009584730141796172, - 0.003436035243794322, - 0.021306706592440605, - 0.017847655341029167, - 0.017426781356334686, - 0.005487792193889618, - 0.03964099660515785, - 0.00011343848018441349, - -0.008470073342323303, - -0.005550265312194824, - -0.006066492758691311, - -0.003312732558697462, - 0.011376729235053062, - 0.003679352579638362, - -0.02727784588932991, - 0.0034031544346362352, - 0.01828167960047722, - -0.0070430501364171505, - -0.03301224112510681, - 0.017926568165421486, - -0.011501675471663475, - 0.002446325495839119, - 0.002858978696167469, - 0.023279549553990364, - 0.012389454990625381, - 0.010390307754278183, - -0.01127808727324009, - -0.014743714593350887, - 0.004623029381036758, - 0.03214419260621071, - -0.0015897827688604593, - -0.016151009127497673, - -0.023213788866996765, - -0.009167145006358624, - 0.0004369025700725615, - -0.006747123785316944, - -0.027567194774746895, - -0.007792730815708637, - -0.004550691694021225, - -0.005635755602270365, - -0.006852341815829277, - -0.01625622808933258, - 0.0013637278461828828, - 0.022214215248823166, - -0.007667784113436937, - -0.004113378003239632, - 0.03251245617866516, - -0.02977677993476391, - 0.026002073660492897, - -0.025962617248296738, - -0.011666079051792622, - -0.006148694548755884, - 0.032328322529792786, - 0.008049200288951397, - 0.023779336363077164, - -0.0030874996446073055, - 0.02493673749268055, - -0.0013497535837814212, - 0.014204471372067928, - -0.015493394806981087, - -0.020333437249064445, - -0.01434914581477642, - 0.02484467253088951, - -0.014901542104780674, - 0.018426354974508286, - 0.003491932526230812, - -0.0023312431294471025, - 0.016571883112192154, - -0.0032371068373322487, - 0.02251671627163887, - -0.03487986698746681, - -0.02882981486618519, - 0.014204471372067928, - 0.004392864182591438, - -0.006997017189860344, - -0.018926141783595085, - 0.009311819449067116, - 0.004754552152007818, - -0.010850637219846249, - 0.012185594998300076, - 0.013165440410375595, - -0.02914546988904476, - -0.009495952166616917, - -0.02242465130984783, - 0.010659929364919662, - 0.013941424898803234, - 0.012981308624148369, - 0.006595872342586517, - -0.012146137654781342, - 0.012514402158558369, - -0.013211472891271114, - -0.014296537265181541, - 0.009956281632184982, - 0.0008622969035059214, - 0.0316707082092762, - -0.00018721459491644055, - 0.03109200857579708, - 0.019965173676609993, - 0.022674543783068657, - 0.010035195387899876, - 0.018597334623336792, - 0.006661633960902691, - -0.009423614479601383, - 0.02446325495839119, - 0.002204652177169919, - 0.02389770746231079, - -0.007700664456933737, - 0.011843635700643063, - 0.025975769385695457, - 0.0007443372742272913, - -0.005011021625250578, - -0.014783171936869621, - -0.044323209673166275, - -0.007358705159276724, - -0.004396152216941118, - 0.005484504159539938, - -0.018912989646196365, - -0.01007465273141861, - -0.0049386839382350445, - 0.002175059635192156, - 0.0012626196257770061, - -0.002809657482430339, - 0.01029166579246521, - 0.013494247570633888, - 0.0059908670373260975, - 0.0018446083413437009, - -0.6405690312385559, - -0.0012223407393321395, - -0.011435914784669876, - -0.003856908529996872, - 0.008983012288808823, - 0.014059795998036861, - 0.004412592388689518, - 0.005777142476290464, - -0.012415760196745396, - 0.03766815364360809, - 0.014191318303346634, - -0.00814784225076437, - 0.009009317494928837, - -0.010350850410759449, - -0.0196363665163517, - -0.03061852604150772, - -0.0014270232059061527, - -0.032880719751119614, - 0.014664800837635994, - 0.002377276076003909, - -0.01624307595193386, - 0.015151435509324074, - -0.00021557422587648034, - 0.0025268832687288523, - -0.007450771052390337, - 0.0070430501364171505, - 0.023305853828787804, - -0.001598824979737401, - 0.01619046740233898, - -0.00024804394342936575, - -0.018873533234000206, - -0.005790294613689184, - -0.004928819835186005, - -0.003348901402205229, - 0.049110643565654755, - -0.01127808727324009, - -0.027646109461784363, - 0.027619805186986923, - 0.00984448753297329, - 0.01816331036388874, - -0.02977677993476391, - -0.006937832105904818, - 0.004807161167263985, - -0.0012987884692847729, - 0.007588870357722044, - 0.010686233639717102, - 0.011100530624389648, - -0.0028474703431129456, - -0.004060768987983465, - -0.023621508851647377, - 0.007135116029530764, - 0.009712964296340942, - 0.0007648877217434347, - 0.010600743815302849, - 0.007990014739334583, - 0.0024002925492823124, - 0.004435609094798565, - -0.034774649888277054, - -0.008226756006479263, - -0.009042197838425636, - -0.01818961463868618, - -0.0011787738185375929, - -0.010462645441293716, - -0.028540464118123055, - -0.061657924205064774, - 0.03724727779626846, - -0.025055108591914177, - -0.005540401209145784, - 0.014743714593350887, - 0.003616879228502512, - -0.018097547814249992, - 0.029382212087512016, - -0.0006909061339683831, - -0.004106801934540272, - 0.03445899486541748, - 0.0057541257701814175, - 0.026002073660492897, - -0.0041199540719389915, - 0.010462645441293716, - -0.015506547875702381, - -0.02104366011917591, - 0.012691957876086235, - -0.009232906624674797, - -0.006480789743363857, - 0.037115756422281265, - -0.023779336363077164, - -0.02581794187426567, - 0.014151861891150475, - -0.0034195948392152786, - 0.02246410772204399, - 0.031749624758958817, - 0.012152713723480701, - -0.010666505433619022, - -0.01774243637919426, - -0.001083419774658978, - 0.03787858784198761, - 0.004313950426876545, - 0.015703832730650902, - 0.009502528235316277, - -0.03777337074279785, - -0.018781466409564018, - 0.008200451731681824, - 0.022727154195308685, - -0.00834512710571289, - 0.009311819449067116, - 0.0011968582402914762, - -0.003676064545288682, - 0.006595872342586517, - 0.03067113645374775, - -0.004534251056611538, - 0.0008010565652512014, - -0.00011076692317146808, - -0.019938869401812553, - -0.013928272761404514, - -0.02733045443892479, - -0.02631772868335247, - 0.03485356271266937, - 0.005757414270192385, - 0.0020386045798659325, - -0.015414481051266193, - -0.001810083631426096, - 0.003255191259086132, - 0.020517569035291672, - -0.018097547814249992, - 0.001115478458814323, - 0.01959690824151039, - -0.017637217417359352, - -0.010824332945048809, - -0.024739453569054604, - 0.008476649411022663, - -0.009989162907004356, - -0.004172563552856445, - 0.034274861216545105, - -0.0024216650053858757, - 0.006033611949533224, - 0.001025056466460228, - 0.00776642607524991, - -0.02110942266881466, - -0.00958801805973053, - -0.030776353552937508, - -0.02341107279062271, - 0.0004952658200636506, - 0.029408516362309456, - -0.008989589288830757, - -0.018058091402053833, - -0.02825111523270607, - -0.013125983066856861, - 0.01554600428789854, - -0.0026699143927544355, - 0.032302018254995346, - -0.022411499172449112, - 0.005961274728178978, - -0.013356148265302181, - 0.012238203547894955, - 0.017900263890624046, - -0.0013308471534401178, - -0.00858844444155693, - -0.022714002057909966, - -0.02535761147737503, - -0.029408516362309456, - 0.010896670632064342, - 0.01574328914284706, - -0.05518700182437897, - -0.00812153797596693, - -0.012908970937132835, - -0.02583109401166439, - 0.02964525669813156, - 0.023726727813482285, - -0.034248556941747665, - -0.027567194774746895, - 0.002311514690518379, - 0.011738416738808155, - -0.012494673952460289, - -0.004100225865840912, - -0.028461551293730736, - 0.005902089178562164, - -0.03648444637656212, - -0.017637217417359352, - 0.013172016479074955, - -0.02009669691324234, - 0.001507580978795886, - -0.003436035243794322, - -0.02396346814930439, - -0.012830057181417942, - 0.012093529105186462, - -0.0020977898966521025, - -0.0013933205045759678, - 0.03480095416307449, - 0.005583146121352911, - 0.0024068686179816723, - 0.0032140903640538454, - 0.030828962102532387, - 0.004659198224544525, - 0.005346404854208231, - -0.005205017980188131, - 0.024187058210372925, - -0.014756866730749607, - 0.018834076821804047, - -0.00753626087680459, - 0.010876942425966263, - 0.041403401643037796, - 0.021885408088564873, - 0.030381785705685616, - -0.013369300402700901, - 0.014493821188807487, - -0.01033112220466137, - 0.007246910594403744, - -0.007582293823361397, - 0.026554469019174576, - 0.019557451829314232, - 0.0324072390794754, - -0.023108569905161858, - -0.020741157233715057, - -0.011100530624389648, - -0.00914741586893797, - 0.0191365797072649, - -0.022819219157099724, - 0.005954698193818331, - -0.006753699854016304, - -0.008259637281298637, - 0.006628753151744604, - -0.014546430669724941, - 0.02104366011917591, - -0.0158353541046381, - -0.01672971062362194, - 0.018465813249349594, - 0.023161178454756737, - 0.009153992868959904, - 0.03503769636154175, - 0.00860817264765501, - -0.02635718509554863, - 0.019859954714775085, - -0.005359557457268238, - -0.005737685598433018, - 0.01964951865375042, - 0.016519274562597275, - 0.023582052439451218, - -0.017111126333475113, - 0.020386045798659325, - 0.009883944876492023, - -0.0032108023297041655, - 0.006937832105904818, - -0.0008207849459722638, - -0.012086953036487103, - 0.02354259602725506, - -0.015138283371925354, - 0.012290813028812408, - 0.028593074530363083, - 0.010495525784790516, - -0.008976436220109463, - 0.01079802867025137, - 0.008575291372835636, - -0.011613470502197742, - 0.0005897979135625064, - 0.014007186517119408, - -0.013717836700379848, - 0.01505936961621046, - 0.013665227219462395, - -0.002311514690518379, - 0.03143396973609924, - 0.004764416255056858, - 0.011915972456336021, - 0.0034590517170727253, - -0.002714303322136402, - -0.004941972438246012, - -0.008779152296483517, - -0.023831944912672043, - -0.016887538135051727, - -0.029829388484358788, - -0.01057443954050541, - 0.02017560973763466, - -0.016032639890909195, - -0.014993607997894287, - 0.0018544725608080626, - -0.005237898789346218, - -0.001752542331814766, - 0.014559582807123661, - 0.006625465117394924, - 0.015453938394784927, - 0.016124704852700233, - -0.050083912909030914, - 0.0062473369762301445, - 0.026251966133713722, - 0.03196005895733833, - -0.0025268832687288523, - -0.02484467253088951, - 0.011205749586224556, - 0.019886258989572525, - -0.01033112220466137, - 0.0030546188354492188, - -0.000421284232288599, - 0.007108811754733324, - 0.012514402158558369, - -0.005566705949604511, - -0.0018824212020263076, - 0.003307800507172942, - 0.011166292242705822, - -0.028040677309036255, - 0.003794435178861022, - 0.017834503203630447, - -0.004366559442132711, - -0.016151009127497673, - -0.015480242669582367, - -0.050925660878419876, - 0.03630031645298004, - -0.0019711991772055626, - -0.020359741523861885, - 0.0020846377592533827, - -0.005527249071747065, - -0.030986789613962173, - -0.00038121084799058735, - -0.0061322543770074844, - -0.007996590808033943, - 0.0034163068048655987, - -0.001657188287936151, - -0.0067076669074594975, - -0.013888816349208355, - 0.003130244556814432, - 0.035248130559921265, - 0.014467516914010048, - 0.006221032235771418, - -0.016177313402295113, - 0.0015873167430981994, - 0.026173053309321404, - 0.029382212087512016, - 0.02819850482046604, - 0.017111126333475113, - 0.02401607856154442, - -0.015046217478811741, - 0.032722894102334976, - -0.022753458470106125, - -0.05237241089344025, - 0.006595872342586517, - -0.0032913601025938988, - 0.0010069720447063446, - 0.013730988837778568, - 0.03061852604150772, - -0.005362845491617918, - 0.015966877341270447, - 0.006418316625058651, - -0.0029115877114236355, - 0.021753884851932526, - 0.029355905950069427, - 0.002796505345031619, - -0.009870791807770729, - 0.0009551849216222763, - 0.0013974305475130677, - 0.03295963257551193, - 0.0013629058375954628, - -0.01672971062362194, - 0.027120018377900124, - 0.02638348937034607, - 0.0014344213996082544, - -0.04298167675733566, - 0.018321137875318527, - 0.0354059599339962, - 0.013093102723360062, - 0.023818792775273323, - -0.037562932819128036, - 0.02388455532491207, - -0.0043599833734333515, - 0.005267491564154625, - 0.04011447727680206, - -0.026528164744377136, - -0.009745845571160316, - 0.025081412866711617, - 0.004448761232197285, - 0.004731535445898771, - -0.0010151922469958663, - -0.011238629929721355, - 0.013809902593493462, - 0.0076151746325194836, - -0.006267065182328224, - -0.013560009188950062, - -0.006257201079279184, - 0.011442490853369236, - -0.03303854912519455, - -0.003912805579602718, - 0.028645683079957962, - -0.01554600428789854, - -0.013652075082063675, - -0.01864994503557682, - -0.01732156239449978, - -0.005744261667132378, - -0.008996165357530117, - -0.007812459021806717, - 0.00907507911324501, - -0.012823481112718582, - -0.007266639266163111, - 0.006635329220443964, - -0.013428485952317715, - -0.0042613414116203785, - -0.02489728108048439, - 0.001688424963504076, - 0.012185594998300076, - -0.004994581453502178, - -0.0157695934176445, - -0.013717836700379848, - 0.018794620409607887, - 0.017952872440218925, - 0.00932497251778841, - -0.013599465601146221, - 0.0035412535071372986, - 0.008325397968292236, - -0.012402607128024101, - -0.003169701434671879, - 0.011251782067120075, - -0.027698718011379242, - -0.009298667311668396, - 0.01507252175360918, - -0.006891798693686724, - -0.014770019799470901, - 0.011883092112839222, - 0.014441212639212608, - -0.027698718011379242, - -0.018860381096601486, - 0.029040250927209854, - -0.022358888760209084, - 0.009265786968171597, - -0.0012848140904679894, - -0.012632772326469421, - 0.008779152296483517, - 0.01584850624203682, - -0.017545152455568314, - 0.03224940970540047, - -0.03737880289554596, - -0.006885222624987364, - -0.019478539004921913, - 0.013994034379720688, - 0.023319005966186523, - -0.01105449814349413, - 0.018386898562312126, - -0.012060647830367088, - 0.012876089662313461, - 0.019873106852173805, - -0.03848359361290932, - 0.013231202028691769, - -0.005625891033560038, - 0.004422456957399845, - 0.0018314560875296593, - -0.002142178826034069, - 0.024686845019459724, - 0.04540169984102249, - -0.029566343873739243, - -0.00030599618912674487, - -0.041982103139162064, - 0.028382636606693268, - 0.030434394255280495, - -0.011843635700643063, - 0.0201361533254385, - 0.000902575789950788, - -0.0042613414116203785, - -0.0168349277228117, - -0.029671560972929, - -0.0036070148926228285, - -0.006681362167000771, - -0.014309689402580261, - -0.02012300118803978, - -0.042797546833753586, - -0.021740732714533806, - 0.00840431172400713, - 0.015585461631417274, - -0.004540827590972185, - -0.012172442860901356, - -0.005030750297009945, - -0.005208306014537811, - -0.014467516914010048, - 0.02447640709578991, - 0.00777300214394927, - -0.025475982576608658, - -0.016072096303105354, - 0.024515865370631218, - -0.0010825976496562362, - 0.022648239508271217, - -0.0033620535396039486, - 0.018400050699710846, - -0.013224625959992409, - -0.011067650280892849, - -0.006171711254864931, - -0.009772149845957756, - 0.015901116654276848, - 0.0018495405092835426, - 0.020412350073456764, - 0.011021616868674755, - 0.013796750456094742, - -0.01575644128024578, - -0.003676064545288682, - 0.012823481112718582, - -0.013744140975177288, - 0.007963710464537144, - -0.015519700013101101, - 0.0035313894040882587, - -0.025489134714007378, - 0.02777763269841671, - -9.941279859049246e-05, - 0.01632198877632618, - 0.0027767769061028957, - -0.03119722753763199, - 0.023345310240983963, - 0.0076217507012188435, - -0.009417038410902023, - 0.002446325495839119, - 0.007937406189739704, - -0.004659198224544525, - 0.011633198708295822, - 0.027698718011379242, - 0.006470925640314817, - 0.005698228720575571, - -0.03872033581137657, - 0.0027290997095406055, - 0.009535408578813076, - 0.0058724964037537575, - 0.01081775687634945, - 0.03014504350721836, - 0.016400903463363647, - -0.04111405089497566, - 0.025147175416350365, - -0.0022687697783112526, - -0.009252634830772877, - -0.006257201079279184, - 0.00046197412302717566, - -0.017952872440218925, - -0.0065629915334284306, - 0.039956651628017426, - 0.0004611520853359252, - 0.012691957876086235, - 0.025528591126203537, - -0.01054813526570797, - 0.013652075082063675, - -0.0023032943718135357, - 0.020412350073456764, - -0.00889094639569521, - -0.008983012288808823, - -0.030802657827734947, - -0.01152140460908413, - -0.0163351409137249, - -0.013980882242321968, - 0.0054351831786334515, - 0.0364055335521698, - 0.005520673003047705, - 0.001865980913862586, - 0.017966024577617645, - -0.030855268239974976, - -0.01822907105088234, - -0.010771723464131355, - -0.007003593258559704, - 0.02925068885087967, - 0.010613895952701569, - 0.040009260177612305, - 0.02251671627163887, - 0.0028836391866207123, - -0.020399197936058044, - -0.04850563779473305, - -0.019044512882828712, - 0.006520246621221304, - 0.006503806449472904, - -0.0026386778336018324, - 0.017400477081537247, - -0.002952688606455922, - -0.006214456167072058, - 0.001023412449285388, - -0.009956281632184982, - -0.005668635945767164, - 0.03729989007115364, - 0.00982475932687521, - -6.185685197124258e-05, - 0.008798880502581596, - 0.0031466849613934755, - -0.038089025765657425, - 0.01717688888311386, - -0.006592584308236837, - 0.011126835830509663, - -0.01409925241023302, - -0.014612192288041115, - -0.01507252175360918, - 0.046296052634716034, - 0.008075504563748837, - 0.027067407965660095, - 0.019859954714775085, - -0.024752605706453323, - 0.009430190548300743, - -0.017032213509082794, - -0.029881998896598816, - 0.01579589769244194, - -0.01553285215049982, - 0.03388029336929321, - -0.007089083082973957, - 0.00910795945674181, - 0.0022802778985351324, - -0.003623455297201872, - -0.023069113492965698, - 0.013507399708032608, - -0.002831029938533902, - 0.019767889752984047, - -0.013744140975177288, - -0.010166718624532223, - -0.0007936583715490997, - 0.0004574530175887048, - 0.02208269201219082, - -0.006174999289214611, - 0.002857334678992629, - -0.03748401999473572, - -0.019846802577376366, - 0.0026041530072689056, - 0.02159605734050274, - -0.009476223029196262, - 0.00704962620511651, - -0.01530926302075386, - -0.004846618045121431, - 0.0005088291363790631, - -0.014980455860495567, - -0.015019913204014301, - 0.015256654471158981, - -0.039930347353219986, - -0.008917251601815224, - -0.005451623350381851, - 0.012534130364656448, - 0.038036417216062546, - -0.020793767645955086, - -0.011139987967908382, - -0.0006185685633681715, - 0.02725154161453247, - -0.0301713477820158, - 0.005777142476290464, - 0.028540464118123055, - -0.0004858126339968294, - -0.008443769067525864, - -0.0028425382915884256, - -0.00023900173255242407, - -0.029540039598941803, - 0.03059222176671028, - -0.00962089840322733, - 0.0016719845589250326, - 0.00984448753297329, - 0.006648481357842684, - 0.02151714265346527, - -0.03224940970540047, - -0.0011927480809390545, - 0.015993181616067886, - -0.007851916365325451, - 0.012724838219583035, - -0.0167034063488245, - 0.00705620227381587, - 0.008568715304136276, - -0.013093102723360062, - 0.004971564747393131, - 0.01200803928077221, - -0.03485356271266937, - 0.004803873132914305, - 0.01730841025710106, - 0.0172689538449049, - -0.00046567319077439606, - -0.01825537532567978, - -0.0013341351877897978, - -0.005287219770252705, - 0.01675601489841938, - -0.0057508377358317375, - -0.007845339365303516, - 0.01010095700621605, - 0.011238629929721355, - -0.009745845571160316, - -0.010837485082447529, - -0.013033917173743248, - -0.007819035090506077, - 0.03493247553706169, - 0.0020238084252923727, - -0.014309689402580261, - 0.0014673020923510194, - -0.014691106043756008, - -0.021359315142035484, - 0.010160142555832863, - 0.025081412866711617, - -0.0030348903965204954, - -0.00962089840322733, - -0.0077598500065505505, - 0.014283385127782822, - 0.02205638773739338, - -0.03848359361290932, - -0.02258247882127762, - -0.011751568876206875, - -0.02783024124801159, - -0.018439507111907005, - -0.006622177083045244, - -0.00884491391479969, - 0.002681422745808959, - 0.0027915730606764555, - 0.011817330494523048, - 0.03677379712462425, - -0.023608356714248657, - 0.017545152455568314, - -0.011310967616736889, - -0.016913842409849167, - 0.004846618045121431, - 0.00789794884622097, - -0.004820313770323992, - -0.013915120624005795, - -0.00986421573907137, - -0.002020520158112049, - 0.016650795936584473, - -0.013250930234789848, - 0.009791878052055836, - 0.010377155616879463, - -0.003649759804829955, - -0.02738306298851967, - -0.012586739845573902, - 0.022345736622810364, - 0.008082080632448196, - 0.010850637219846249, - 0.00809523370116949, - -0.03169701248407364, - 0.005550265312194824, - 0.004777568392455578, - 0.001594714936800301, - -0.02292443811893463, - 0.005264203064143658, - 0.013823054730892181, - -0.002411800902336836, - -0.0013078306801617146, - -0.005731109529733658, - 0.02642294578254223, - 0.006415028590708971, - -0.0049353959038853645, - 0.030776353552937508, - 0.0067043788731098175, - 0.006641905289143324, - 0.011876516044139862, - 0.004521098919212818, - -0.0006070602685213089, - -0.01532241515815258, - 0.012639348395168781, - -0.03146027401089668, - -0.017900263890624046, - 0.007595446426421404, - -0.022411499172449112, - 0.02205638773739338, - -0.02018876187503338, - -0.0075231087394058704, - 0.01966267079114914, - 0.005576570052653551, - -0.0072600627318024635, - -0.003909517545253038, - -0.01129123941063881, - -0.00787822064012289, - 0.024542169645428658, - 0.0009017537231557071, - 0.014704258181154728, - 0.011225477792322636, - 0.013073374517261982, - -0.01682177558541298, - -0.035221826285123825, - -0.008239908143877983, - -0.007325824350118637, - 0.011817330494523048, - 0.0006000731373205781, - 0.004027888178825378, - 0.003587286453694105, - 0.001354685635305941, - -0.006474213674664497, - -0.034774649888277054, - -0.0006514492561109364, - 0.2054913491010666, - -0.044402122497558594, - -0.020267676562070847, - 0.027935460209846497, - -0.006428180728107691, - -0.01821591891348362, - 0.026107290759682655, - -0.0024265970569103956, - 0.0225693266838789, - 0.0005043080309405923, - 0.008752848021686077, - -0.00816099438816309, - -0.0056291790679097176, - -0.0004669062327593565, - 0.026554469019174576, - -0.021845949813723564, - -0.02783024124801159, - -0.013369300402700901, - 0.009403886273503304, - -0.0035807103849947453, - 0.008437192998826504, - -0.011633198708295822, - -0.017374172806739807, - -0.011567437089979649, - 0.030039826408028603, - 0.0143359936773777, - -0.015282958745956421, - 0.001686780946329236, - 0.02348998561501503, - -0.024686845019459724, - -0.026265118271112442, - 0.013770445249974728, - 0.031775929033756256, - 0.0073784333653748035, - -0.010107533074915409, - 0.009949705563485622, - 0.020688548684120178, - -0.01128466334193945, - 0.028487855568528175, - 0.011475371196866035, - 0.010456069372594357, - -0.009417038410902023, - -0.00765463151037693, - -0.027172626927495003, - -0.002229312900453806, - 0.018492117524147034, - -0.008772576227784157, - 0.006724107079207897, - -0.018386898562312126, - -0.0011828838614746928, - -0.02819850482046604, - 0.02441064640879631, - 0.0162036195397377, - 0.01579589769244194, - 0.005957986228168011, - -0.025015652179718018, - 0.01104134600609541, - 0.016545578837394714, - -0.012396031059324741, - 0.02205638773739338, - -0.013599465601146221, - 0.020399197936058044, - -0.013310115784406662, - 0.005362845491617918, - -0.008943555876612663, - -0.004586860537528992, - -0.03196005895733833, - 0.012501250021159649, - 0.008220179937779903, - -0.011363577097654343, - -0.0031203802209347486, - -0.015453938394784927, - -0.011902820318937302, - 0.0077598500065505505, - -0.03677379712462425, - -0.0527406744658947, - 0.021740732714533806, - 0.013849359005689621, - 0.013652075082063675, - 0.014309689402580261, - -0.016453512012958527, - 0.011962005868554115, - -0.024134447798132896, - -0.02345052920281887, - -0.026462404057383537, - -0.026054682210087776, - 0.011863363906741142, - 0.011909396387636662, - 0.01780819706618786, - -0.008483225479722023, - -0.012619620189070702, - 0.005938258022069931, - -0.010015467181801796, - -0.0030233822762966156, - 0.008812032639980316, - 0.014691106043756008, - 0.0025416796561330557, - 0.008246484212577343, - -0.022319432348012924, - 0.00717457290738821, - -0.02914546988904476, - 0.08506900072097778, - 0.032801806926727295, - 0.006082933396100998, - -0.012567010708153248, - -0.006605736445635557, - -0.00962089840322733, - -0.0006193905719555914, - 0.007509956602007151, - -0.016506120562553406, - 0.011343847960233688, - -0.02880351059138775, - 0.04208732023835182, - -0.0017936432268470526, - -0.01778189279139042, - 0.01729525811970234, - -0.0038470441941171885, - -0.017558304592967033, - -0.02489728108048439, - -0.015375024639070034, - -0.007825611159205437, - 0.014454364776611328, - 0.016624491661787033, - 0.014165014028549194, - 0.005369421560317278, - -0.009956281632184982, - -0.04011447727680206, - -0.02830372378230095, - -0.010640201158821583, - 0.0003793612995650619, - 0.025568047538399696, - -0.011981734074652195, - 0.01680862344801426, - 0.0024200209882110357, - 0.0015725204721093178, - 0.00777300214394927, - -0.0051754252053797245, - -0.012073799967765808, - 0.006599160376936197, - 0.004484930075705051, - 0.017084822058677673, - -0.0010217683156952262, - -4.9115576985059306e-05, - -0.004770992323756218, - 0.03143396973609924, - -0.02066224440932274, - -0.010633625090122223, - 0.017887111753225327, - -0.017150582745671272, - -0.014533278532326221, - 0.004859770182520151, - -0.00812811404466629, - -0.008325397968292236, - -0.03866772726178169, - 0.025278696790337563, - 0.012132985517382622, - -0.012790599837899208, - -0.030802657827734947, - 0.01767667569220066, - 0.007200877647846937, - -0.002319734776392579, - -0.011146564036607742, - 0.0035708462819457054, - -0.02681751549243927, - 0.020478112623095512, - -0.015111979097127914, - -0.16740232706069946, - -0.0014426416018977761, - 0.037142060697078705, - -0.03148657828569412, - 0.03219680115580559, - 0.011232053861021996, - 0.02680436335504055, - 0.01917603611946106, - -0.006290081888437271, - 0.009765573777258396, - 0.017097974196076393, - -0.007950558327138424, - -0.018347442150115967, - -0.000813797814771533, - -0.010199598968029022, - -0.013139136135578156, - 0.0010497169569134712, - -0.00034483656054362655, - 0.04019339382648468, - 0.030776353552937508, - 0.03824685513973236, - -0.01871570572257042, - 0.018912989646196365, - 0.016637643799185753, - -0.01672971062362194, - 0.01962321437895298, - -0.005596298724412918, - 0.02433173358440399, - -0.023148026317358017, - -0.03411703556776047, - -0.014559582807123661, - 0.00980503112077713, - -0.00839773565530777, - 0.005122816190123558, - -0.008969860151410103, - -0.004701943136751652, - -0.019978325814008713, - 0.007450771052390337, - -0.012816905044019222, - 0.0206359401345253, - 0.004149546846747398, - 0.02149083837866783, - 0.0021635512821376324, - 0.01081118080765009, - -0.026699144393205643, - 0.012336846441030502, - 0.01055471133440733, - -0.0015610122354701161, - 0.0007809171220287681, - -0.024213362485170364, - 0.01505936961621046, - -0.012225051410496235, - 0.022306280210614204, - 0.0026436098851263523, - 0.007325824350118637, - -0.004225172568112612, - -0.014888389967381954, - 0.0005232144612818956, - 0.0005006089340895414, - 0.01667710207402706, - 0.013296962715685368, - 0.012297389097511768, - -0.0032206664327532053, - -0.016466664150357246, - -0.02100420370697975, - -0.022227367386221886, - -0.019044512882828712, - 0.014743714593350887, - -0.013573161326348782, - 0.004961700644344091, - 0.005264203064143658, - -0.02116203121840954, - -0.007628327235579491, - -0.007694088388234377, - -0.016006333753466606, - -0.0027603365015238523, - 0.01004834845662117, - -0.007082507014274597, - 0.017466237768530846, - -0.0182685274630785, - 0.003564269980415702, - 0.0286719873547554, - 0.0019695551600307226, - -0.018478965386748314, - -0.005698228720575571, - 0.0024857823736965656, - -0.02150399051606655, - -0.0030562628526240587, - 0.010035195387899876, - -0.0006263777031563222, - 0.016913842409849167, - -0.023332158103585243, - -0.0034590517170727253, - -0.014414907433092594, - 0.02018876187503338, - -0.0021027219481766224, - 0.003442611312493682, - -0.018505269661545753, - -0.009640627540647984, - -0.004146258812397718, - 0.019965173676609993, - -0.01176472194492817, - -0.026146749034523964, - 0.010600743815302849, - 0.0286719873547554, - -0.011330695822834969, - 0.015901116654276848, - -0.0008409243891946971, - 0.044796694070100784, - 0.009548560716211796, - -0.020741157233715057, - -0.020714852958917618, - 0.0061322543770074844, - 0.003863484598696232, - 0.014625344425439835, - 0.01867624931037426, - -0.013849359005689621, - -0.01152140460908413, - 0.0017903551924973726, - 0.021333010867238045, - 0.047663889825344086, - -0.003685928648337722, - -0.020215066149830818, - 0.021661818027496338, - -0.019333863630890846, - -0.025554895401000977, - -0.06618231534957886, - -0.01555915642529726, - 9.144950308836997e-05, - 0.007819035090506077, - 0.020491264760494232, - 0.0015412837965413928, - -0.030434394255280495, - 0.004540827590972185, - 0.00765463151037693, - 0.03161809965968132, - -0.02833002805709839, - -0.014756866730749607, - -0.019018208608031273, - -0.006990441121160984, - -0.007108811754733324, - -0.004882786888629198, - -0.00741789024323225, - -0.02493673749268055, - -0.018413202837109566, - 0.036247704178094864, - 0.002735676011070609, - 0.009463070891797543, - 0.005211594048887491, - -0.013250930234789848, - -0.00864762905985117, - 0.010488949716091156, - -0.06139488145709038, - 0.014625344425439835, - 0.036694884300231934, - 0.009186873212456703, - 0.013691531494259834, - -0.018426354974508286, - 0.010271936655044556, - -0.029829388484358788, - 0.01619046740233898, - 0.010239056311547756, - -0.011139987967908382, - -0.027567194774746895, - 0.024173906072974205, - -0.007792730815708637, - 0.0011976802488788962, - -0.008207027800381184, - 0.0024298850912600756, - -0.01962321437895298, - 0.0003045576740987599, - -0.016598187386989594, - -0.011574013158679008, - 0.00862790085375309, - -0.014243927784264088, - -0.021201487630605698, - -0.0324072390794754, - -0.0061322543770074844, - -0.007273215334862471, - -0.005819887388497591, - 0.025594351813197136, - 0.0007874932489357889, - -0.025015652179718018, - -0.03443269059062004, - -0.011817330494523048, - -0.010186446830630302, - -0.020833224058151245, - 0.0163351409137249, - -0.02204323373734951, - 0.0291717741638422, - -0.00017149350605905056, - 0.0027077272534370422, - -0.03361724689602852, - -0.0005059521063230932, - -0.01780819706618786, - -0.0033867142628878355, - 0.01573013700544834, - 0.0024298850912600756, - -0.010153566487133503, - 0.038089025765657425, - -0.0404038280248642, - -0.009272363036870956, - -0.03172331675887108, - -0.010962432250380516, - 0.01579589769244194, - 0.005122816190123558, - -0.02393716387450695, - -0.031381357461214066, - 0.005974426865577698, - -0.017584608867764473, - 0.022148452699184418, - 0.02293759025633335, - 0.0037911469116806984, - -0.0024808503221720457, - 0.022806067019701004, - 0.001053827116265893, - 0.026962190866470337, - 0.030092434957623482, - 0.029040250927209854, - -0.012744567357003689, - 0.0015166231896728277, - 0.0015897827688604593, - -0.009660355746746063, - -0.004909091629087925, - 0.004988005384802818, - 0.015401328913867474, - -0.0039029414765536785, - -0.0013637278461828828, - -0.06176314502954483, - 0.011495099402964115, - 0.021385619416832924, - -0.007121963892132044, - -0.02342422492802143, - 0.006046764552593231, - 0.004803873132914305, - -0.024068687111139297, - -0.0038207396864891052, - 0.009502528235316277, - -0.01058101560920477, - -0.006852341815829277, - -0.023187484592199326, - -0.019820498302578926, - -0.008226756006479263, - -0.027146322652697563, - -0.009877367876470089, - -0.002410156885161996, - 0.007082507014274597, - 0.01772928424179554, - -0.007214029785245657, - 0.023739879950881004, - 0.019952021539211273, - 0.011725264601409435, - -0.0047150952741503716, - 0.010258784517645836, - -0.0010760215809568763, - -0.005047190468758345, - -0.0008795592584647238, - 0.0010209463071078062, - 0.034327469766139984, - -0.014270232059061527, - -0.0061256783083081245, - 0.038957078009843826, - 0.01813700422644615, - -0.01866309717297554, - 0.01628253236413002, - 0.03843098506331444, - -0.0010768435895442963, - 0.06555100530385971, - 0.006549839396029711, - -0.01532241515815258, - 0.01571698486804962, - -0.04135079309344292, - -0.004797297064214945, - -0.017834503203630447, - 0.0026567622553557158, - 0.011429338715970516, - -0.013329843990504742, - -0.02738306298851967, - 0.013875664211809635, - 0.005780430510640144, - 0.0004644401778932661, - -0.0201361533254385, - 0.0002291375130880624, - -0.019268101081252098, - -0.003682640613988042, - -0.013954577967524529, - 0.011652926914393902, - -0.01825537532567978, - 0.04111405089497566, - 0.008535834960639477, - -0.0016629424644634128, - -0.0035412535071372986, - -0.006151982583105564, - -0.012836633250117302, - -0.022766610607504845, - 0.015664374455809593, - -0.006040188483893871, - -0.04037752375006676, - -0.017413629218935966, - 0.002753760199993849, - -0.013329843990504742, - 0.03795750439167023, - -0.01030481792986393, - -0.008246484212577343, - 0.018492117524147034, - 0.016361447051167488, - -0.02060963585972786, - 0.03361724689602852, - 0.026015225797891617, - 0.013573161326348782, - -0.0029428245034068823, - 0.003827315755188465, - 0.03251245617866516, - 0.008062352426350117, - -0.01957060396671295, - 0.014704258181154728, - -0.006904951296746731, - 0.0014089389005675912, - -0.0026584062725305557, - 0.004593436606228352, - -0.008680510334670544, - -0.002166839549317956, - -0.007128539960831404, - 0.00983791146427393, - -0.009673507884144783, - -0.001661298330873251, - 0.023161178454756737, - 0.0073784333653748035, - -0.011725264601409435, - -0.016900690272450447, - 0.009719540365040302, - -0.0215697530657053, - -0.01574328914284706, - 0.002133958740159869, - -0.02103050798177719, - -0.04321841895580292, - 0.005757414270192385, - 0.008542411029338837, - -0.002109298249706626, - -0.021201487630605698, - -0.027120018377900124, - -0.00047183834249153733, - -0.010462645441293716, - 0.013507399708032608, - -0.025134021416306496, - -0.006497230380773544, - -0.0375366285443306, - 0.02339792065322399, - 0.017992330715060234, - 0.045217566192150116, - 0.017479389905929565, - -0.012580163776874542, - -0.0011269866954535246, - -0.0040213121101260185, - 0.003103940049186349, - -0.044796694070100784, - 0.03561639413237572, - -0.020504416897892952, - -0.014441212639212608, - 0.016506120562553406, - -0.023161178454756737, - -0.011639774776995182, - -0.010712538845837116, - -3.072292383876629e-05, - 0.017887111753225327, - 0.00036600351450033486, - 0.024200210347771645, - 0.10763832181692123, - 0.02158290520310402, - -0.019478539004921913, - 0.008456921204924583, - 0.002257261425256729, - 0.02342422492802143, - 0.023687271401286125, - -0.02116203121840954, - -0.01732156239449978, - -0.04542800411581993, - -0.0061256783083081245, - -0.013573161326348782, - -0.002592644654214382, - -0.026515012606978416, - -0.004162698984146118, - 0.024160753935575485, - -0.001115478458814323, - 0.023582052439451218, - -0.010383731685578823, - -0.02250356413424015, - 0.028961338102817535, - 0.021806493401527405, - -0.003679352579638362, - 0.034774649888277054, - -0.009206601418554783, - 0.008279365487396717, - 0.007095659151673317, - -0.009029045701026917, - 0.007312672212719917, - -0.01675601489841938, - -0.004415880888700485, - -0.005326676648110151, - -0.04206101596355438, - -0.022753458470106125, - 0.02004408650100231, - -0.031223531812429428, - 0.006142118480056524, - -0.026515012606978416, - 0.01911027356982231, - -0.017650369554758072, - 0.009153992868959904, - 0.03248615190386772, - -0.028119591996073723, - -0.027067407965660095, - -0.015493394806981087, - -0.017479389905929565, - 0.000812153797596693, - 0.005142544396221638, - -0.029013946652412415 - ], - "sparse": "SparseEmbedding(values=array([1.65209739, 1.65209739, 1.65209739, 1.65209739, 1.65209739,\n 1.65209739, 1.65209739, 1.65209739, 1.65209739]), indices=array([ 405956143, 1394779857, 1832059201, 1891755984, 1135154991,\n 1012568720, 471957998, 164058840, 1676350980]))" - }, - "metadata": { - "source": "Kreye_Marieke_BA_241_V2.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 17, - "has_images": true, - "image_count": 98, - "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", - "links": [], - "last_modified": "2025-05-05T23:00:23", - "_known_field_names": "frozenset({'detection_class_prob', 'is_continuation', 'languages', 'image_path', 'cc_recipient', 'subject', 'sent_from', 'attached_to_filename', 'detection_origin', 'table_as_cells', 'image_base64', 'text_as_html', 'orig_elements', 'signature', 'bcc_recipient', 'link_start_indexes', 'file_directory', 'page_name', 'coordinates', 'parent_id', 'link_urls', 'link_texts', 'email_message_id', 'emphasized_text_tags', 'data_source', 'url', 'filetype', 'category_depth', 'last_modified', 'key_value_pairs', 'sent_to', 'image_mime_type', 'header_footer_type', 'page_number', 'filename', 'links', 'emphasized_text_contents'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Kreye_Marieke_BA_241_V2.pdf", - "detection_class_prob": 0.3422867953777313, - "parent_id": "e02392183bc6851689602ad4b9f6039f", - "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", - "id": "3632b5a9-1714-4a24-8183-cd2010e49876", - "processing_timestamp": "2025-05-14T23:22:06.208485", - "chunk_number": 55, - "total_chunks": 128, - "chunking_strategy": "semantic", - "word_count": 10 - } -} \ No newline at end of file diff --git a/data/processed/706487bf-0501-2c2e-189c-987900000000.json b/data/processed/706487bf-0501-2c2e-189c-987900000000.json deleted file mode 100644 index 29db647a0c2d4116ddb850d2ed03b53b0eedba1a..0000000000000000000000000000000000000000 --- a/data/processed/706487bf-0501-2c2e-189c-987900000000.json +++ /dev/null @@ -1,1569 +0,0 @@ -{ - "id": "706487bf-0501-2c2e-189c-987900000000", - "content": "Prof. Dr. Michael Krone Augmented/Virtual Reality Engineering Studienbereich Informatik Fakult\u00a8at Vermessung, Informatik und Mathematik HFT Stuttgart\n\n[IMAGE: H \u00ae C h S C h U | e fur TecN nk Stuttga Ft]\n\nInformationsvisualisualisierung und Visual Analytics WS 24/25 \u00dcbungsblatt 1 Abgabe: Dienstag, 15 Oktober 2024, 23:55\n\u00dcbungsblatt 1\n\n## 1. Visualisierung des Auto-Datensatzes (10 Punkte)\n\nLaden Sie den Auto-Datensatz (CarPrice_deutsch.xlsx) von Moodle herunter. Sie k\u00f6nnen die Datei in MS Excel \u00f6ffnen. Sie enth\u00e4lt 204 verschiedene Fahrzeugmodelle mit 26 verschiedenen Attributen (kategorisch, ordinal und quantitativ). Schauen Sie sich die Daten in Excel an und erstellen Sie zwei verschiedene Diagramme aus den Daten. Erstellen Sie ein kurzes Dokument (z.B. mit Word) mit Abbildungen der beiden Visualisierungen, einer kurzen Beschreibung was zu sehen ist. Welche Daten-Attribute und Diagramm-Typen haben Sie gew\u00e4hlt? Warum? Welche Fragen k\u00f6nnen mit Ihrer gew\u00e4hlten Visualisierung beantwortet werden? Laden Sie als Abgabe das Dokument in Moodle als PDF hoch. \u2192 Sie k\u00f6nnen auch neue Daten aus dem Auto-Datensatz erstellen und diese Visualisieren (d.h. abgeleitete Daten) \u2013 Sie d\u00fcrfen hier kreativ sein! \u2192 Wenn Sie m\u00f6chten k\u00f6nnen Sie auch ein anderes Tool als Excel verwenden (z.B. Tableau https://www.tableau.com/de-de/academic/students, kostenlose Version f\u00fcr Studierende bzw. Testversion). Geben Sie in diesem Fall an, welches Tool sie verwendet haben. ## 2. Erste Website mit JavaScript (10 Punkte)\n\nErstellen Sie eine Website, um eine Zap-Hep-Zahlenfolge auszudrucken: Wenn eine Zahl durch 3 teilbar ist, drucken Sie ZAP, wenn eine 3 in der Zahl enthalten ist, drucken Sie HEP, wenn beides zutrifft, drucken Sie ZAP HEP, ansonsten drucken Sie die n\u00e4chste Zahl. Beispiel f\u00fcr Zahlen von 1 bis 14:\n1\n2\nZAP HEP\n4\n5\n\n## ZAP\n\n7\n8\n\n## ZAP\n\n10\n11\n\n## ZAP\n\n\n## HEP\n\n14\nVerwenden Sie eine einzelne HTML-Datei, die Ihren HTML- und JavaScript-Code enth\u00e4lt (Tipp: siehe Folien \u201cTutorial 0 (Web-Dev-Intro)\u201d in Moodle). Schreiben Sie die JavaScript-Funktion so, dass eine beliebige lange Zahlenreihe ausgegeben werden kann (d.h. die L\u00e4nge der Zahlenreihe soll per Variable in ihrem JavaScript-Code gesetzt werden k\u00f6nnen). Laden Sie Ihre HTML-Datei in Moodle hoch. Tipp: Es gibt mehrere M\u00f6glichkeiten, aus einem JavaScript-Programm Text auf eine Website zu setzen, die einfachste ist mittels document.write( ... \"Text\", Zahlen, etc. In diesem Tutorial werden noch weitere M\u00f6glichkeiten beschrieben: https://www.w3schools. com/js/js_output.asp ... );. Tipp: Sie ben\u00f6tigen f\u00fcr diese Aufgaben noch nicht die D3-Library (d\u00fcrfen diese aber verwenden, wenn Sie wollen).", - "embedding": [ - -0.0037169218994677067, - 0.015150240622460842, - -5.476573278428987e-05, - -0.01463895384222269, - 0.00804604310542345, - 0.017599036917090416, - -0.03907309100031853, - -0.005799070931971073, - -0.002073739655315876, - -0.04496634751558304, - 0.003219089936465025, - 0.02364029549062252, - 0.0011613278184086084, - 0.006444907281547785, - 0.014033482410013676, - 0.017572127282619476, - 0.030677219852805138, - -0.025308705866336823, - 0.013461648486554623, - -0.0057620699517428875, - -0.02369411662220955, - 0.010562112554907799, - 0.02423231303691864, - -0.006660185754299164, - -0.017989229410886765, - 0.02747494913637638, - 0.007528028450906277, - -0.017491396516561508, - -0.0001344440970569849, - -0.026196731254458427, - 0.007528028450906277, - -0.01645536907017231, - 0.002817124128341675, - -0.008812973275780678, - -0.007669304963201284, - 0.025591259822249413, - -0.007736579515039921, - 0.00017827769625000656, - 0.03280309587717056, - 0.004214753862470388, - 0.01794886402785778, - 0.01566152833402157, - 0.006801462732255459, - -0.018998349085450172, - 0.006310357712209225, - 0.007615485228598118, - -0.018379421904683113, - -0.0028860806487500668, - 0.010770664550364017, - 0.021393325179815292, - 0.011160857044160366, - 0.04413213953375816, - -0.005008594132959843, - -0.02927790768444538, - -0.0044703977182507515, - -0.002717894036322832, - -0.0010965761030092835, - -0.001243739272467792, - -0.0128763597458601, - -0.017397213727235794, - 0.005089323967695236, - 0.003005492966622114, - -0.03054266981780529, - 0.0032342267222702503, - -0.02209297940135002, - -0.0018231418216601014, - -0.044697247445583344, - 0.010784119367599487, - -0.0008068747702054679, - 0.005045595578849316, - 0.035063523799180984, - 0.006051350850611925, - -0.007400206755846739, - -0.0067072780802845955, - 0.04606964811682701, - 0.0004192048800177872, - 0.003999475389719009, - -0.016105540096759796, - 0.012600533664226532, - -0.003636192297562957, - 0.00016808140208013356, - -0.017935410141944885, - -0.009552993811666965, - 0.02863207273185253, - 0.03229181095957756, - 0.005718341562896967, - -0.006643366999924183, - 0.021985340863466263, - -0.01882343366742134, - -0.021985340863466263, - -0.00039208479574881494, - 0.007292567286640406, - 0.00898788683116436, - 0.024070853367447853, - 0.001411084784194827, - 0.0004038578481413424, - -0.008436235599219799, - 0.0035924639087170362, - -0.0039826566353440285, - -0.023734480142593384, - -0.0018416423117741942, - -0.006535727996379137, - -0.019644184038043022, - -0.006929284427314997, - -0.019092533737421036, - 0.006327176466584206, - -0.011887422762811184, - 0.016441913321614265, - 0.01828523725271225, - -0.018984893336892128, - -0.0050523229874670506, - 0.048114798963069916, - -0.003932200837880373, - -0.015796076506376266, - 0.003461278509348631, - -0.02304827980697155, - 0.02603527158498764, - -0.011900877580046654, - -0.024528320878744125, - -0.021823881193995476, - 0.023626841604709625, - 0.032130349427461624, - 0.01628045365214348, - -0.004282028414309025, - 0.02538943663239479, - 0.03046194091439247, - 0.004160934127867222, - 0.0027733955066651106, - -0.0050422316417098045, - -0.025941086933016777, - 0.01334055420011282, - -0.004403122700750828, - 0.015257880091667175, - 0.004604946821928024, - 0.0007274066447280347, - 0.02629091590642929, - -0.031376875936985016, - 0.013212732039391994, - -0.041575707495212555, - -0.02608909085392952, - 0.02096276730298996, - 0.0014876096975058317, - -0.006330540403723717, - -0.017504852265119553, - -0.020101651549339294, - 0.022240985184907913, - 0.02093585766851902, - 0.005825980566442013, - -0.0019190080929547548, - -0.01218343060463667, - -0.0020939221139997244, - -0.020411115139722824, - 0.013912388123571873, - -0.006054714322090149, - 0.0063339038752019405, - -0.01492150779813528, - -0.011503957211971283, - 0.006051350850611925, - -0.003616010071709752, - 0.0003300660173408687, - 0.0009292304748669267, - 0.01817759871482849, - 0.009041707031428814, - 0.004419941455125809, - 0.0203438401222229, - 0.012317979708313942, - 0.00856405682861805, - -0.009277167730033398, - -0.011645234189927578, - -0.002067012246698141, - -0.008463145233690739, - 0.014558224938809872, - -0.03457914665341377, - 0.008597694337368011, - -0.01648227870464325, - 0.010602477937936783, - -0.005075869150459766, - 0.006478544324636459, - -0.023398106917738914, - -0.021985340863466263, - -0.006535727996379137, - 0.002741440199315548, - 0.002406748943030834, - 0.0251068826764822, - -0.021003130823373795, - 0.0030324028339236975, - 0.03700103238224983, - 0.00974809005856514, - -0.013717291876673698, - -0.003864926053211093, - 0.04948719963431358, - 0.008718788623809814, - 0.0017995956586673856, - -0.025483619421720505, - -0.6372250318527222, - 0.006569365039467812, - 0.02206606976687908, - 0.00027834868524223566, - -0.0013782884925603867, - 0.03530571237206459, - 0.01135595329105854, - 0.011860513128340244, - -0.019590364769101143, - 0.058878734707832336, - 0.010023916140198708, - 0.0031484514474868774, - -0.013993117958307266, - -0.002159514930099249, - -0.00927044078707695, - -0.01741066761314869, - 0.0011091900523751974, - -0.033179834485054016, - 0.03705485165119171, - 0.00426184618845582, - -0.010548657737672329, - 0.019563455134630203, - -0.002909626578912139, - -0.0013698791153728962, - 0.011107036843895912, - 0.017033930867910385, - 0.004066749941557646, - -0.0031148141715675592, - 0.01730302907526493, - 0.0046755848452448845, - -0.01876961439847946, - 0.007575120311230421, - -0.013145457953214645, - 0.01344146579504013, - 0.057156503200531006, - 0.014840777963399887, - -0.0017457760404795408, - 0.009970096871256828, - 0.0141007574275136, - 0.03054266981780529, - 0.007393478881567717, - 0.0017020475352182984, - 0.011133947409689426, - 0.023290468379855156, - -0.0056577944196760654, - -0.00896097719669342, - 0.02930481731891632, - -0.027770956978201866, - 0.011631779372692108, - -0.0028490794356912374, - 0.00031534972367808223, - -0.017760496586561203, - -0.0007787035428918898, - -0.009196438826620579, - 0.009949914179742336, - 0.0002608993381727487, - 0.021662423387169838, - -0.006502090487629175, - -0.0020283292979002, - -0.0021225137170404196, - -0.009189710952341557, - 0.012351617217063904, - -0.029600827023386955, - -0.013421284034848213, - -0.00562079343944788, - 0.0242054034024477, - -0.012291070073843002, - -0.021393325179815292, - -0.02490505948662758, - -0.016603372991085052, - -0.002517752116546035, - 0.018460150808095932, - -0.01093212328851223, - -0.0070503787137568, - 0.018661975860595703, - 0.023909393697977066, - 0.020451480522751808, - -0.031538333743810654, - -0.0011731008999049664, - 0.020236201584339142, - 0.004520853515714407, - -0.009108981117606163, - -0.013199277222156525, - -0.01087830401957035, - 0.00886006560176611, - -0.0176394023001194, - -0.04442814737558365, - -0.005109506193548441, - -0.000685360049828887, - 0.026667652651667595, - 0.03875017166137695, - 0.003183770691975951, - -0.0043392120860517025, - -0.008025860413908958, - -0.0009578221943229437, - 0.04001493379473686, - -0.00010007097444031388, - 0.04130660742521286, - -0.019617274403572083, - -0.04273282736539841, - -0.006626548711210489, - -0.018110323697328568, - 0.02073403261601925, - 0.0014884506817907095, - 0.007023468613624573, - -0.0018113687401637435, - -0.007581848185509443, - -0.0030256754253059626, - 0.054788436740636826, - -0.034498415887355804, - -0.027878595516085625, - -0.01772013120353222, - -0.010938851162791252, - -0.0045544905588030815, - 0.01673792116343975, - -0.029600827023386955, - 0.032641638070344925, - -0.01586335152387619, - 0.009304078295826912, - -0.016307363286614418, - 0.019227081909775734, - -0.013118548318743706, - 0.0360591895878315, - -0.019455816596746445, - 0.005842799320816994, - -0.0025312069337815046, - -0.004016293678432703, - -0.028901170939207077, - -0.027394218370318413, - -0.01710120402276516, - 0.03826579451560974, - -0.017841225489974022, - 0.017572127282619476, - -0.005334876012057066, - 0.03221108019351959, - -0.0216355137526989, - 0.012862903997302055, - 0.006687095854431391, - 0.004588128067553043, - -0.01921362802386284, - -0.011039762757718563, - 0.00028087146347388625, - 0.00465540261939168, - -0.02577962912619114, - -0.002171287778764963, - -0.02436686120927334, - -0.019738368690013885, - 0.013966208323836327, - 0.019603820517659187, - 0.024837784469127655, - -0.008335324004292488, - -0.0012016926193609834, - 0.0022991097066551447, - 0.013925842940807343, - 0.018984893336892128, - -0.0005117074470035732, - -0.001969464123249054, - -0.003461278509348631, - -0.021595148369669914, - -0.017208844423294067, - 0.010851393453776836, - 0.011497230269014835, - -0.007844218984246254, - -0.010192102752625942, - 0.0077836718410253525, - 0.005025412887334824, - 0.011887422762811184, - 0.024662870913743973, - -0.03791596740484238, - -0.01619972474873066, - 0.012042154558002949, - 0.003518461948260665, - -0.00960681401193142, - 0.014558224938809872, - -0.01949618011713028, - 0.031968891620635986, - -0.017962319776415825, - -0.0112684965133667, - -0.010999398306012154, - -0.01815068908035755, - 0.019375085830688477, - 0.008234411478042603, - -0.003373821498826146, - -0.006041259504854679, - 0.012210341170430183, - 0.012479439377784729, - 0.013710564002394676, - 0.008389143273234367, - -0.010373744182288647, - -0.004971593152731657, - 0.004951410926878452, - 0.03234563022851944, - -0.02603527158498764, - 0.02310209907591343, - -0.01381820347160101, - 0.030165933072566986, - -0.02493196912109852, - -0.0028255335055291653, - -0.01496187224984169, - 0.01907907798886299, - 0.040499310940504074, - 0.028255334123969078, - 0.029493186622858047, - 0.009189710952341557, - 0.033906400203704834, - -0.03936909884214401, - -0.006411269772797823, - 0.004393031820654869, - 0.0360591895878315, - 0.002112422604113817, - 0.004053295124322176, - -0.01704738475382328, - -0.033744942396879196, - -0.006323812995105982, - 0.014020027592778206, - 0.022900275886058807, - -0.002023283625021577, - -0.007642395328730345, - 0.008671696297824383, - 0.02119150012731552, - 0.01642845757305622, - -0.007346387021243572, - 0.037485409528017044, - -0.0055198813788592815, - 0.0022082889918237925, - 0.012203613296151161, - -0.0012454211246222258, - 0.019200172275304794, - -0.00264893751591444, - -0.04087604954838753, - -0.005281056277453899, - -0.01531170029193163, - 0.003552099224179983, - 0.0013597880024462938, - 0.037458501756191254, - 0.03465987741947174, - 0.0004545240371953696, - -0.026210185140371323, - 0.02871280163526535, - 0.012069064192473888, - 0.004406486637890339, - 0.018635066226124763, - 0.01938854157924652, - -0.018352512270212173, - 0.008718788623809814, - -0.0027733955066651106, - 0.03048885054886341, - 0.009929731488227844, - -0.006401178427040577, - 0.0225369930267334, - -0.008738971315324306, - 0.02132605016231537, - 0.000244921597186476, - 0.001008278108201921, - 0.010219012387096882, - 0.0028675799258053303, - -0.0016499096527695656, - -0.007696214597672224, - 0.014006572775542736, - 0.029681555926799774, - 0.007272384595125914, - 0.015056056901812553, - 0.004749587271362543, - 0.003299819305539131, - -0.021904611960053444, - -0.012324707582592964, - -0.028954990208148956, - -0.008416052907705307, - -0.016051720827817917, - -0.0055367001332342625, - -0.013481831178069115, - -0.03665120527148247, - -0.0025732535868883133, - 0.007346387021243572, - 0.017504852265119553, - -0.019563455134630203, - 0.015567343682050705, - -0.004231572616845369, - 0.01772013120353222, - 0.03272236883640289, - -0.015822986140847206, - -0.01786813512444496, - -0.0037875601556152105, - 0.012069064192473888, - 0.0012235569301992655, - -0.02629091590642929, - -0.011147402226924896, - 0.012768720276653767, - -0.014235306531190872, - -0.012042154558002949, - -0.009687542915344238, - -0.011571232229471207, - 0.03947673738002777, - -0.03608609735965729, - -0.0042181177996098995, - -0.002591754077002406, - 0.024245766922831535, - -0.0024454318918287754, - -0.008738971315324306, - 0.0032577726524323225, - 0.010118100792169571, - -0.004776496905833483, - -0.011551049537956715, - -0.03121541626751423, - 0.026129456236958504, - -0.024609049782156944, - -0.023788299411535263, - -0.007763489615172148, - 0.005304602440446615, - -0.017168479040265083, - 0.003380548907443881, - -0.02572580799460411, - -0.002679211087524891, - 0.016912836581468582, - 0.004120569676160812, - -0.0012521485332399607, - -0.0009300714009441435, - -0.022698450833559036, - 0.020101651549339294, - 0.019684549421072006, - -0.009768272750079632, - -0.011685598641633987, - -0.004292119760066271, - 0.029116449877619743, - 0.023505747318267822, - 0.008106590248644352, - -0.005950438790023327, - 0.003057630732655525, - -0.0039019270334392786, - 0.0028877623844891787, - -0.013024363666772842, - -0.03003138303756714, - 0.005879800301045179, - -0.010804301127791405, - -0.0055367001332342625, - 0.003023993456736207, - 0.024555230513215065, - 0.007797126658260822, - 0.010676479898393154, - -0.022671541199088097, - 0.008907157927751541, - 0.0074271163903176785, - 0.0203438401222229, - 0.00037926057120785117, - -0.01563461869955063, - 0.0010385516798123717, - 0.007992222905158997, - 0.015338609926402569, - 0.03226489946246147, - 0.001445563044399023, - 0.020518753677606583, - 0.022469718009233475, - -0.0007951017469167709, - -0.03371803089976311, - -0.0006462566670961678, - 0.03110777772963047, - 0.023169374093413353, - 0.016415003687143326, - -0.006391087546944618, - 0.012957088649272919, - 0.019375085830688477, - 0.014154576696455479, - 0.017114659771323204, - -0.006155626382678747, - 0.0034242772962898016, - 0.03573627024888992, - -0.0010166874853894114, - -0.0034024131018668413, - 0.0016171133611351252, - 0.007810581475496292, - -0.008005677722394466, - 0.00569143146276474, - 0.004598219413310289, - -0.011766328476369381, - -0.006609729956835508, - -0.014517859555780888, - 0.0008489214233122766, - -0.007797126658260822, - -0.015163696371018887, - -0.01924053765833378, - -0.0031652702018618584, - -0.03183434158563614, - -0.009526084177196026, - -0.01297727134078741, - -0.043970681726932526, - 0.0002085512678604573, - 0.013528922572731972, - 0.002465614350512624, - -0.023519201204180717, - -0.006434815935790539, - 0.0008262162446044385, - -0.018123779445886612, - -0.02268499694764614, - -0.013872023671865463, - 0.010245922021567822, - -0.035036616027355194, - -0.04087604954838753, - 0.01167887169867754, - 0.011847058311104774, - -0.01258035097271204, - 0.0227926354855299, - 0.002955036936327815, - 0.003858198644593358, - -0.02147405408322811, - -0.029573915526270866, - -0.031000137329101562, - -0.007454026024788618, - -0.029170269146561623, - -0.017706675454974174, - 0.006121988873928785, - -0.017531761899590492, - 0.002563162473961711, - 0.007386751472949982, - 0.02312900871038437, - -0.01611899584531784, - -0.007595303002744913, - 0.010541930794715881, - 0.008718788623809814, - -0.007413661573082209, - -0.005926892627030611, - -0.0021981976460665464, - 0.01653609797358513, - 0.012136338278651237, - -0.02868589200079441, - 0.008019132539629936, - -0.02186424657702446, - 0.005358422175049782, - -0.023519201204180717, - 0.02003437653183937, - -0.0015456340042874217, - -0.0026472557801753283, - 0.004036476369947195, - 0.0029970835894346237, - -0.005375240929424763, - 0.014329491183161736, - 0.0068283723667263985, - 0.023734480142593384, - -0.015728803351521492, - 0.02814769558608532, - 0.010064280591905117, - -0.0007505323155783117, - -0.00446703378111124, - 0.013522195629775524, - -0.011631779372692108, - 0.026896387338638306, - -0.03842725604772568, - 0.027878595516085625, - 0.009156073443591595, - 0.01640154793858528, - 0.02876662090420723, - 0.003871653461828828, - 8.398813952226192e-05, - -0.00807295273989439, - 0.009997006505727768, - 0.007043651305139065, - 0.011860513128340244, - -0.03191507235169411, - -0.0025042970664799213, - -0.014396765269339085, - -0.01998055726289749, - -0.02555089443922043, - 0.018379421904683113, - 0.021003130823373795, - 0.019227081909775734, - -0.01648227870464325, - -0.013206005096435547, - -0.004853862803429365, - 0.004985048435628414, - 0.00649536307901144, - -0.02704439125955105, - -0.02088203653693199, - 0.014531314373016357, - -0.024111218750476837, - 0.010669752024114132, - 0.007918220944702625, - 0.006764461286365986, - -0.02606218121945858, - -0.015688437968492508, - -0.004150843247771263, - -0.03124232590198517, - 0.0021174682769924402, - -0.01171923615038395, - 0.012600533664226532, - 0.017424123361706734, - 0.04423978179693222, - 0.012943633832037449, - 0.021770061925053596, - -0.01407384779304266, - -0.011059945449233055, - 0.02276572585105896, - -0.013098365627229214, - 0.0007194178178906441, - -0.03272236883640289, - 0.01496187224984169, - 0.018137233331799507, - 0.017531761899590492, - 0.017222298309206963, - -0.012351617217063904, - 0.009142618626356125, - 0.02327701263129711, - -0.022187164053320885, - -0.004742859862744808, - 0.010871576145291328, - -0.038077425211668015, - -0.01619972474873066, - 0.03667811304330826, - 0.0002718314644880593, - 0.014369855634868145, - -0.026802202686667442, - 0.0012117838487029076, - 0.019711459055542946, - -0.004998503252863884, - 0.004009566269814968, - -0.008644786663353443, - 0.004345939494669437, - -0.02719239518046379, - 0.023492291569709778, - -0.005778888706117868, - 0.015526979230344296, - -0.008173864334821701, - 0.016724467277526855, - -0.014800413511693478, - -0.007084015756845474, - 0.031027046963572502, - 0.02147405408322811, - 0.01702047511935234, - 0.011598141863942146, - -0.01342801097780466, - -0.006243083160370588, - 0.004181116819381714, - 0.016751376911997795, - -0.012069064192473888, - 0.006885556038469076, - -0.008604422211647034, - 0.009815365076065063, - -0.014908052049577236, - 0.0027649863623082638, - 0.007406934164464474, - 0.023909393697977066, - 0.016926290467381477, - 0.013064728118479252, - 0.021850790828466415, - -0.006895646918565035, - -0.013569287955760956, - -0.0035251893568784, - -0.0007118494249880314, - 0.05581101402640343, - 0.021204955875873566, - 0.03344893455505371, - 0.044078320264816284, - -0.012250705622136593, - -0.013670199550688267, - -0.07077288627624512, - 0.02417849376797676, - -0.004295483697205782, - 0.016953200101852417, - 0.02812078408896923, - -0.0013328781351447105, - -0.01887725479900837, - 0.005425696726888418, - -0.0035218256525695324, - -0.018056504428386688, - -0.021675877273082733, - 0.0194423608481884, - 0.018096867948770523, - 0.008025860413908958, - -0.026183275505900383, - -0.0007152131292968988, - -0.03751232102513313, - 0.013925842940807343, - -0.01800268515944481, - -0.010434291325509548, - -0.01218343060463667, - -0.003938928246498108, - -0.0218911562114954, - 0.02631782554090023, - -0.010178647935390472, - 0.020128561183810234, - 0.009008069522678852, - -0.01373747456818819, - 0.008429507724940777, - -0.01766631193459034, - -0.009943186305463314, - 0.011826875619590282, - -0.0006782120908610523, - 0.04066077247262001, - -0.004258482716977596, - 0.008685151115059853, - 0.02577962912619114, - 0.0014127667527645826, - 0.007911493070423603, - -0.021958431228995323, - 0.01256689615547657, - 0.0235595665872097, - -0.031995803117752075, - 0.00010879564797505736, - 6.0809936258010566e-05, - 0.005442515481263399, - -0.004440124146640301, - 0.006354086566716433, - -0.022631177678704262, - -0.01761249080300331, - -0.011120492592453957, - -0.011174311861395836, - 0.003552099224179983, - -0.0128763597458601, - -0.016240090131759644, - -0.014490949921309948, - -0.007225292734801769, - -0.0037741053383797407, - -0.009458809159696102, - 0.005368513520807028, - 0.012398709543049335, - -0.053658224642276764, - -0.0007757602725178003, - -0.0010864848736673594, - -0.00607153307646513, - 0.02425922267138958, - 0.0026237096171826124, - 0.0015574070857837796, - 0.009135891683399677, - 0.026775293052196503, - -0.04359394311904907, - 0.009075344540178776, - 0.033233653753995895, - -0.006091715302318335, - -0.005324785131961107, - 0.022859910503029823, - -0.009593358263373375, - -0.019280901178717613, - 0.008153681643307209, - -0.029735375195741653, - -0.0393960103392601, - -0.0062128095887601376, - -0.01528479065746069, - 0.014194942079484463, - -0.003035766538232565, - -0.008093134500086308, - 0.010811029002070427, - 0.010797574184834957, - 0.018083414062857628, - -0.00407011341303587, - 0.001779413316398859, - -0.00025375140830874443, - -0.0001443250512238592, - -0.007023468613624573, - -0.004978320561349392, - -0.021083861589431763, - 0.0062195369973778725, - 0.0016347728669643402, - -0.013448193669319153, - -0.005028776824474335, - -0.034471508115530014, - -0.033152926713228226, - -0.011887422762811184, - 0.004319029860198498, - -0.016293909400701523, - 0.002805351046845317, - -0.031027046963572502, - -0.018433241173624992, - -0.020182382315397263, - 0.001681024208664894, - 0.009304078295826912, - 0.004154206719249487, - 0.008503509685397148, - 0.024555230513215065, - 0.015230970457196236, - 0.025658534839749336, - -0.010299742221832275, - -0.016589917242527008, - -0.007198382634669542, - 0.006804826203733683, - -0.029600827023386955, - 0.024447591975331306, - -0.0007581007084809244, - 0.04289428889751434, - 0.02065330371260643, - -0.02000746689736843, - -0.013226186856627464, - -0.014504404738545418, - -0.032533999532461166, - -0.010023916140198708, - -0.022025706246495247, - -0.0009351170156151056, - 0.02464941516518593, - 0.019872918725013733, - 0.014168031513690948, - 0.018164142966270447, - 0.00031598040368407965, - 0.01730302907526493, - -0.04658093675971031, - 0.001964418450370431, - -0.006552546285092831, - -0.0009359579416923225, - -0.0009948231745511293, - -0.00030588923254981637, - -0.021339504048228264, - -0.014908052049577236, - -0.004352666903287172, - 0.0021090588998049498, - 0.0064549981616437435, - 0.0038783808704465628, - -0.014692774042487144, - -0.03307219594717026, - 0.009505901485681534, - 0.017424123361706734, - 0.018756160512566566, - -0.006909101735800505, - 0.036839574575424194, - -0.023909393697977066, - -0.008402598090469837, - -0.006249810568988323, - -0.010831211693584919, - -0.036839574575424194, - -0.006364177446812391, - 0.009660633280873299, - -0.02304827980697155, - -0.015244425274431705, - 0.01702047511935234, - -0.018217962235212326, - -0.0020956038497388363, - -0.006431451998651028, - 0.03242636099457741, - -0.00551651744171977, - -0.006283448077738285, - 0.01013155560940504, - 0.03234563022851944, - -0.004221481271088123, - -0.004978320561349392, - 4.504244861891493e-05, - -0.017208844423294067, - -0.010790846310555935, - 0.0027464856393635273, - -0.016266999766230583, - 0.01730302907526493, - -0.009882639162242413, - 0.005435788072645664, - 0.0010225740261375904, - 0.012842722237110138, - -0.01531170029193163, - -0.010575568303465843, - -0.046500205993652344, - 0.01671101152896881, - 0.0009435263345949352, - -0.011140674352645874, - -0.003387276316061616, - 0.002827215241268277, - -0.023761389777064323, - -0.02750185877084732, - -0.015365519560873508, - -0.001013323781080544, - -0.008328596130013466, - -0.026021817699074745, - 0.01611899584531784, - -0.01851397193968296, - -0.005681340582668781, - 0.007386751472949982, - -0.007413661573082209, - -0.013582742772996426, - 0.005112870130687952, - 0.2073134183883667, - -0.011544322595000267, - -0.0011596459662541747, - 0.01761249080300331, - -0.003851471235975623, - 0.005361786112189293, - 0.020047832280397415, - -0.0046991310082376, - 0.0006941898027434945, - 0.006976376753300428, - -0.019711459055542946, - 0.011645234189927578, - -0.014786957763135433, - 0.00040196574991568923, - 0.011335770599544048, - -0.01182014774531126, - -0.025819992646574974, - -0.02031693048775196, - -0.017370302230119705, - -0.011813420802354813, - 0.021460598334670067, - -0.009741363115608692, - -0.008617877028882504, - -0.017316482961177826, - 0.02732694521546364, - -0.013320371508598328, - -0.02750185877084732, - -0.002995401853695512, - 0.046365655958652496, - -0.002505979035049677, - -0.01136940810829401, - 0.01408730261027813, - -0.0057620699517428875, - 0.0007774421246722341, - -0.011463592760264874, - 8.719419565750286e-05, - 0.03371803089976311, - 0.006152262445539236, - 0.036274466663599014, - 0.028578251600265503, - 0.003394003724679351, - -0.011261768639087677, - -0.0002052926574833691, - -0.026667652651667595, - 0.008247866295278072, - 0.025860358029603958, - 0.00551651744171977, - -0.007958585396409035, - -8.304209040943533e-05, - -0.016885925084352493, - -0.024326497688889503, - -0.013333826325833797, - 0.032022710889577866, - 0.04421287029981613, - -0.011194494552910328, - -0.013549105264246464, - 0.019576910883188248, - 0.01492150779813528, - -0.00884661078453064, - 0.020209291949868202, - -0.016522642225027084, - 0.016374638304114342, - 0.006922557018697262, - 0.0001799595629563555, - -0.00887352041900158, - -0.022012250497937202, - -0.014544769190251827, - 0.013078182935714722, - -0.009162801317870617, - -0.024635959416627884, - -0.015526979230344296, - -0.03417550027370453, - -0.008698606863617897, - -0.003999475389719009, - -0.020236201584339142, - -0.020478390157222748, - -0.014006572775542736, - 0.012809084728360176, - 0.014854232780635357, - 0.03783523663878441, - -0.025254886597394943, - -0.02541634626686573, - -0.009633723646402359, - -0.011086855083703995, - 0.0001673455844866112, - -0.03643592447042465, - 0.03522498160600662, - 0.004732768516987562, - -0.013858568854629993, - -0.02760949730873108, - -0.02930481731891632, - -0.013670199550688267, - -0.006226264871656895, - -0.006458362098783255, - -0.017491396516561508, - 0.015325155109167099, - 0.016778286546468735, - 0.024985788390040398, - -0.01381820347160101, - 0.015056056901812553, - -0.025739263743162155, - 0.04623110964894295, - 0.02884734980762005, - -0.005903346464037895, - -0.0017129796324297786, - -0.021379869431257248, - -0.011826875619590282, - 0.010299742221832275, - 0.004080204758793116, - -0.006327176466584206, - -0.007709669880568981, - -0.026277460157871246, - 0.028309153392910957, - -0.01679174229502678, - -0.008853337727487087, - 0.010925395414233208, - 0.006095079239457846, - -0.003720285603776574, - -0.008449690416455269, - 0.004584764130413532, - -0.01653609797358513, - -0.0068182810209691525, - -0.010427563451230526, - 0.007178200408816338, - 0.013925842940807343, - -0.015688437968492508, - -0.030919408425688744, - 0.0039658378809690475, - -0.019684549421072006, - -0.027152029797434807, - 0.01895798370242119, - -0.0069494666531682014, - 0.03344893455505371, - -0.0038783808704465628, - 0.015594253316521645, - -0.012095973826944828, - -0.009351169690489769, - -0.01135595329105854, - 0.01251307688653469, - 0.018352512270212173, - 0.02384212054312229, - -0.029466276988387108, - 0.005344967357814312, - 0.0027649863623082638, - -0.024124672636389732, - -0.009626995772123337, - 0.0068115536123514175, - -0.003220771672204137, - -0.025429800152778625, - -0.021083861589431763, - 0.013091637752950191, - -0.01856779120862484, - 0.0011588050983846188, - -0.03377185016870499, - 0.017827769741415977, - 0.0031131324358284473, - -0.0035453715827316046, - -0.011894149705767632, - 0.002302473410964012, - -0.019846009090542793, - -0.022267894819378853, - -0.0038447435945272446, - -0.002758258720859885, - 0.0037135581951588392, - -0.019509635865688324, - -0.024757053703069687, - -0.1725459098815918, - 0.02660037949681282, - 0.0088197011500597, - -0.04370158165693283, - 0.002712848363444209, - 0.018971439450979233, - 0.017155025154352188, - 0.008220956660807133, - 0.005452606827020645, - 0.010501565411686897, - 0.0002903319546021521, - -0.01985946297645569, - -0.030327392742037773, - -0.016065174713730812, - 0.005045595578849316, - 0.012761992402374744, - -0.01825832761824131, - 0.011658689007163048, - 0.044643428176641464, - 0.013602925464510918, - 0.025537440553307533, - -0.005799070931971073, - 0.015123330987989902, - 0.020168926566839218, - -0.009034979157149792, - 0.006364177446812391, - -0.00382456136867404, - 0.03342202305793762, - -0.009855729527771473, - -0.007507845759391785, - 0.019253991544246674, - -0.00524069182574749, - 0.001030142419040203, - 0.00024786486756056547, - -0.017316482961177826, - -0.019200172275304794, - 0.0006269152509048581, - -0.012835994362831116, - -0.01949618011713028, - 0.026613833382725716, - 0.03468678519129753, - 0.014450585469603539, - -0.006825008429586887, - -0.013037818484008312, - -0.013347281143069267, - 0.013374191708862782, - 0.02392284944653511, - -0.017518308013677597, - 0.00424839137122035, - 0.007433843798935413, - 0.02364029549062252, - -0.027152029797434807, - 0.0044502150267362595, - 0.012728354893624783, - 0.020249655470252037, - 0.010488110594451427, - -0.005580428522080183, - 0.008032587356865406, - -0.01301763579249382, - -0.012365072034299374, - -0.014033482410013676, - -0.0062397196888923645, - 0.02927790768444538, - -0.00035340190515853465, - -0.0056409756653010845, - -0.029466276988387108, - -0.007191655226051807, - 0.012957088649272919, - -0.020276565104722977, - 0.00604462344199419, - -0.022671541199088097, - -0.018783070147037506, - -0.002245289972051978, - 0.0056308843195438385, - 0.0032174079678952694, - 0.012069064192473888, - -0.013858568854629993, - 0.015150240622460842, - -0.0012639216147363186, - 0.005307966377586126, - -0.02760949730873108, - 0.03191507235169411, - 0.008180592209100723, - -0.03525189310312271, - -0.0069427392445504665, - -0.0200881976634264, - -0.015365519560873508, - 0.019227081909775734, - 0.011927787214517593, - 0.001444722176529467, - -0.0260083619505167, - -0.03514425456523895, - -0.04606964811682701, - -0.007104198448359966, - 0.0033603664487600327, - -0.007346387021243572, - 0.0036261011846363544, - 0.0023310650140047073, - 0.0023293832782655954, - -0.026277460157871246, - 0.02876662090420723, - 0.000570152304135263, - -0.020330386236310005, - 0.006468453444540501, - 0.03285691514611244, - 0.008880248293280602, - -0.0008880248060449958, - 0.029573915526270866, - 0.03293764591217041, - 0.008389143273234367, - -0.028282243758440018, - -0.0028877623844891787, - 0.013058001175522804, - 0.010790846310555935, - 0.009095526300370693, - 0.021622058004140854, - -0.007366569247096777, - -0.01679174229502678, - 0.019307810813188553, - 0.005805798340588808, - 0.03829270601272583, - -0.001819778117351234, - -0.019401995465159416, - 0.00821422878652811, - -0.00928389560431242, - -0.014908052049577236, - -0.0666825920343399, - -0.010568840429186821, - 0.019267447292804718, - 0.02384212054312229, - 0.008651514537632465, - 0.03597845882177353, - -0.016320819035172462, - 0.0036698298063129187, - -0.008705333806574345, - 0.030892498791217804, - -0.02211989089846611, - -0.02116459049284458, - 0.0013278324622660875, - -0.008839882910251617, - 0.0001785930508049205, - -0.016630282625555992, - -0.013898933306336403, - -0.008779335767030716, - -0.021541329100728035, - 0.045881278812885284, - 0.005960530135780573, - -0.01772013120353222, - 0.011530866846442223, - -0.014813868328928947, - -0.001998055726289749, - 0.0015077920397743583, - -0.02214680053293705, - 0.017114659771323204, - 0.025483619421720505, - -0.004843771457672119, - -0.006700550671666861, - -0.033314384520053864, - 0.015109876170754433, - -0.029573915526270866, - 0.009566448628902435, - -0.02037074975669384, - -0.009189710952341557, - -0.007191655226051807, - 0.03646283596754074, - -0.02941245771944523, - 0.010528475977480412, - 0.00448048859834671, - 0.0015708620194345713, - -0.015553888864815235, - 0.002724621444940567, - -0.009647178463637829, - -0.03509043529629707, - 0.003962474409490824, - 0.0019862826447933912, - -0.003404095070436597, - -0.03471369668841362, - -0.00973463524132967, - -0.01563461869955063, - -0.0057351598516106606, - 0.016347728669643402, - -0.01983255334198475, - 0.007016741205006838, - -0.014168031513690948, - -0.024407226592302322, - 0.0002897012745961547, - 0.009687542915344238, - -0.009263712912797928, - -0.02935863845050335, - 0.014679319225251675, - 0.012021971866488457, - 0.014544769190251827, - -0.020276565104722977, - -0.0024050672072917223, - 0.007857673801481724, - -0.0017558671534061432, - -0.021110771223902702, - 0.01977873407304287, - -0.009391535073518753, - 0.008207501843571663, - -0.0171281136572361, - 0.007373296655714512, - -0.039207641035318375, - -0.013010908849537373, - 0.017760496586561203, - 0.005082596559077501, - -0.0050422316417098045, - -0.012714900076389313, - 0.006687095854431391, - 0.00764912273734808, - 0.017262663692235947, - 0.0137778390198946, - -0.0024723417591303587, - 0.0007972040912136436, - 0.017289573326706886, - -0.04189862310886383, - 0.003478097030892968, - 0.022927185520529747, - 0.022913729771971703, - 0.009162801317870617, - -0.0002028749731834978, - -0.005287784151732922, - 0.009176256135106087, - -0.0014682682231068611, - -0.0023932941257953644, - 0.01046792883425951, - -0.023963214829564095, - -0.006216173525899649, - -0.06802807748317719, - 0.0003588679828681052, - 0.011228131130337715, - -0.005412241909652948, - -0.008530420251190662, - 0.010535202920436859, - 0.005156598519533873, - 0.01375092938542366, - 0.019576910883188248, - -0.005149871110916138, - -0.021124225109815598, - -0.010286287404596806, - -0.007628940045833588, - -0.003047539619728923, - -0.029547005891799927, - -0.015728803351521492, - 0.007272384595125914, - -0.0043291207402944565, - 0.020801307633519173, - 0.0029567189048975706, - -0.0015700210351496935, - 0.024501411244273186, - -0.011234859004616737, - 0.011645234189927578, - -0.00446703378111124, - -0.005950438790023327, - 0.012654352933168411, - -0.0025076610036194324, - 0.003777469042688608, - -0.008503509685397148, - 0.0008417734643444419, - -0.004756314679980278, - -0.02502615377306938, - 0.015930626541376114, - -0.005260874051600695, - -0.013380918651819229, - 0.007608757819980383, - 0.029089538380503654, - -0.002685938496142626, - 0.06684404611587524, - -0.02637164480984211, - -0.02938554808497429, - -0.018500516191124916, - -0.007151290308684111, - -0.015244425274431705, - -0.006444907281547785, - 0.010340106673538685, - -0.009189710952341557, - -0.0002747747057583183, - -0.015526979230344296, - 0.02817460522055626, - 0.018217962235212326, - -0.01344146579504013, - 0.00045999011490494013, - 0.012694718316197395, - -0.025308705866336823, - 0.0052945115603506565, - -0.0012714900076389313, - 0.02237553335726261, - -0.024191947653889656, - 0.04125278815627098, - 0.02335774339735508, - 0.0020014194305986166, - -0.0009208211558870971, - -0.0012185112573206425, - -0.006969648879021406, - -0.022348623722791672, - 0.0008047724841162562, - 0.024111218750476837, - 0.005913437809795141, - -0.02315591834485531, - 0.013528922572731972, - -0.006680368445813656, - 0.03716249018907547, - 0.00232770130969584, - -0.008866792544722557, - 0.0093377148732543, - 0.014477495104074478, - -0.01258035097271204, - 0.011577959172427654, - 0.001538065611384809, - 0.02160860225558281, - -0.035520993173122406, - 0.009001342579722404, - 0.006384360138326883, - 0.017599036917090416, - 0.0019946920219808817, - -0.006613093428313732, - 0.00567797664552927, - 0.006855282001197338, - 0.003918745554983616, - 0.005368513520807028, - -0.011073400266468525, - 0.0008388302521780133, - 0.01224397774785757, - -0.004224845208227634, - -0.004140751902014017, - -5.4450381867354736e-05, - 0.018433241173624992, - 0.047038402408361435, - 0.020168926566839218, - 0.010528475977480412, - 0.0003628623962868005, - -0.03113468736410141, - -0.0058562541380524635, - 0.019684549421072006, - -0.011403045617043972, - -0.026869477704167366, - 0.01921362802386284, - 0.013421284034848213, - 0.0026405281387269497, - 0.013199277222156525, - -0.005291147623211145, - -0.003848107298836112, - -0.011181039735674858, - 0.01817759871482849, - -0.00027204168145544827, - -0.014033482410013676, - -0.03519807383418083, - 0.04254446178674698, - 0.0042349365539848804, - 0.024353407323360443, - 0.002245289972051978, - -0.01611899584531784, - 0.046338748186826706, - 0.01938854157924652, - 0.011012853123247623, - -0.026748383417725563, - 0.007191655226051807, - -0.025429800152778625, - -0.0036765572149306536, - -0.001428744406439364, - -0.0003260716039221734, - -0.026721473783254623, - -0.014612044207751751, - -0.017814315855503082, - 0.0037909240927547216, - 0.022496627643704414, - 0.019617274403572083, - 0.11754219233989716, - 0.010084463283419609, - 0.00898788683116436, - 0.009223348461091518, - -0.011295406147837639, - 0.009916276670992374, - 0.0011411454761400819, - 0.00036076008109375834, - -0.016307363286614418, - -0.04270591959357262, - 0.02276572585105896, - -0.01048138365149498, - -0.009499174542725086, - -0.018083414062857628, - -0.023290468379855156, - -0.009485719725489616, - -0.007393478881567717, - 0.0234384723007679, - -0.018191052600741386, - 0.019455816596746445, - 0.01882343366742134, - -0.009478991851210594, - 0.011456864885985851, - 0.02814769558608532, - -0.024393770843744278, - 0.009418444707989693, - 0.045289263129234314, - 0.0009670724393799901, - 0.012223795987665653, - -0.02197188511490822, - -0.02129914052784443, - -0.013683654367923737, - -0.06587529182434082, - -0.023425016552209854, - 0.01466586347669363, - -0.017841225489974022, - -0.005331512540578842, - -0.012324707582592964, - 0.023061733692884445, - 0.008449690416455269, - -0.014585134573280811, - 0.016374638304114342, - -0.014881142415106297, - -0.01251307688653469, - -0.015432794578373432, - -0.015378974378108978, - -0.0035958276130259037, - -0.012371799908578396, - -0.019846009090542793 - ], - "metadata": { - "source": "test.pdf", - "file_type": "pdf", - "has_tables": false, - "table_count": 0, - "has_images": true, - "image_count": 1, - "detection_class_prob": 0.8481391668319702, - "coordinates": "CoordinatesMetadata(points=((194.43865966796875, 223.614626111111), (194.43865966796875, 404.46212611111065), (833.7641645000001, 404.46212611111065), (833.7641645000001, 223.614626111111)), system=)", - "links": [], - "last_modified": "2024-11-08T08:33:13", - "_known_field_names": "frozenset({'links', 'sent_to', 'detection_origin', 'image_path', 'page_name', 'subject', 'coordinates', 'url', 'orig_elements', 'category_depth', 'signature', 'emphasized_text_contents', 'parent_id', 'header_footer_type', 'detection_class_prob', 'cc_recipient', 'last_modified', 'file_directory', 'bcc_recipient', 'filename', 'image_base64', 'key_value_pairs', 'data_source', 'image_mime_type', 'languages', 'page_number', 'sent_from', 'link_start_indexes', 'link_texts', 'link_urls', 'emphasized_text_tags', 'filetype', 'text_as_html', 'table_as_cells', 'email_message_id', 'is_continuation', 'attached_to_filename'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "test.pdf", - "parent_id": "f6e5bc969bc25157103a4996997132fb", - "id": "2fe72ee3-a99b-4ab0-961f-202cee32984c", - "processing_timestamp": "2025-05-03T09:55:36.199953", - "chunk_number": 0, - "total_chunks": 2, - "chunking_strategy": "hybrid", - "word_count": 385 - } -} \ No newline at end of file diff --git a/data/processed/706487bf-0501-2c2e-189c-987900000001.json b/data/processed/706487bf-0501-2c2e-189c-987900000001.json deleted file mode 100644 index 8fb9c65b8245783f1dc22ca787425333cd9e8491..0000000000000000000000000000000000000000 --- a/data/processed/706487bf-0501-2c2e-189c-987900000001.json +++ /dev/null @@ -1,1569 +0,0 @@ -{ - "id": "706487bf-0501-2c2e-189c-987900000001", - "content": "com/js/js_output.asp ... );. Tipp: Sie ben\u00f6tigen f\u00fcr diese Aufgaben noch nicht die D3-Library (d\u00fcrfen diese aber verwenden, wenn Sie wollen). 2", - "embedding": [ - -0.013522235676646233, - 0.013318689540028572, - -0.0018471793737262487, - -0.018359843641519547, - 0.0062285056337714195, - 0.018726225942373276, - -0.03853803128004074, - -0.017437102273106575, - 0.010957556776702404, - -0.0351455993950367, - 0.007789024617522955, - 0.014343203976750374, - -0.0013323777820914984, - -0.0016461778432130814, - -0.015130247920751572, - 0.014696016907691956, - 0.015442351810634136, - 0.0075922636315226555, - 0.024303385987877846, - -0.027546551078557968, - -0.006615242920815945, - 0.023394213989377022, - 0.04293462261557579, - -0.011710676364600658, - -0.012931952252984047, - 0.002339082071557641, - 0.013583298772573471, - -0.042853206396102905, - -0.016921453177928925, - -0.0031227339059114456, - 0.020110338926315308, - -0.013990391045808792, - 0.0011568194022402167, - -0.034955624490976334, - -0.00468834163621068, - -0.011554624885320663, - -0.018522679805755615, - -0.01797989197075367, - 0.024601919576525688, - 0.012613063678145409, - 0.00720552634447813, - 0.02556537091732025, - -0.0016826464561745524, - -0.01144606713205576, - -0.011310369707643986, - 0.00269867992028594, - 0.01606655865907669, - -0.017247125506401062, - -0.0071037532761693, - 0.029636288061738014, - 0.010204436257481575, - 0.030206218361854553, - -0.040844883769750595, - -0.04847107455134392, - -0.030396193265914917, - -0.007470136042684317, - -0.010937201790511608, - 0.018305564299225807, - 0.009627723135054111, - -0.027627969160676003, - -0.000613182142842561, - -0.0157544557005167, - -0.033870045095682144, - -0.005689109209924936, - -0.031020401045680046, - -0.005034369416534901, - -0.01570017635822296, - 0.0015223539667204022, - 0.011195026338100433, - -0.013060864061117172, - 0.03471136838197708, - 0.01715213805437088, - -0.004433908965438604, - 0.002006623661145568, - 0.03343581408262253, - 0.007727961055934429, - -0.0023339935578405857, - -0.011120392940938473, - 0.0014909739838913083, - -0.011079683899879456, - 0.005495740566402674, - -0.022390052676200867, - -0.0346028096973896, - 0.024398373439908028, - 0.006733978167176247, - 0.013895402662456036, - 0.02747870236635208, - 0.049936603754758835, - -0.002257663756608963, - -0.014940272085368633, - 0.012172047048807144, - 0.022308634594082832, - 0.015835873782634735, - 0.020897382870316505, - -0.002054117852821946, - -0.016310814768075943, - -0.024520501494407654, - -0.0034399263095110655, - -0.011201811954379082, - -0.016161547973752022, - -0.011812449432909489, - 0.026773076504468918, - -0.014668877236545086, - -0.017640648409724236, - -0.026596669107675552, - 0.007558339275419712, - 0.02675950713455677, - 0.003511167364194989, - -0.006659344770014286, - -0.00674076285213232, - -0.01700287126004696, - 0.03889084607362747, - 0.0027919718995690346, - -0.021195916458964348, - 0.010577604174613953, - 0.0031312149949371815, - 0.02309567853808403, - -0.00911885779350996, - 0.0085217896848917, - -0.013847908936440945, - -0.003465369576588273, - 0.038212358951568604, - 0.01937757432460785, - 0.009227415546774864, - 0.014193937182426453, - 0.023733455687761307, - -0.006540609523653984, - 0.01521166693419218, - -0.030667588114738464, - -0.02846929244697094, - 0.02800792083144188, - 0.0009609064436517656, - 0.02243076264858246, - 0.012694481760263443, - -0.0011186546180397272, - 0.02211865969002247, - -0.010245145298540592, - 0.015632327646017075, - -0.029880544170737267, - -0.027044471353292465, - 0.0054923477582633495, - 0.014940272085368633, - 0.006917169317603111, - -0.01483171433210373, - 0.024506930261850357, - 0.031807444989681244, - 0.023624898865818977, - 0.019961072131991386, - -0.025592509657144547, - -0.02381487563252449, - -0.021413031965494156, - -0.00999410543590784, - 0.015822304412722588, - -0.01978466473519802, - -0.004162514582276344, - 0.007164817303419113, - 0.012728406116366386, - 0.0013272891519591212, - 0.022023670375347137, - 0.009152782149612904, - 0.02020532637834549, - 0.006007997784763575, - 0.027370143681764603, - -0.008101128041744232, - 0.02728872559964657, - 0.02598603256046772, - -0.006048706825822592, - -0.014343203976750374, - 0.001194984302856028, - 0.0058383760042488575, - 0.013725780881941319, - 0.01015015784651041, - -0.00368757382966578, - 0.008962806314229965, - -0.01880764402449131, - 0.012613063678145409, - -0.004803684074431658, - 0.0010728567140176892, - -0.02392343245446682, - 0.006048706825822592, - -0.03750673308968544, - -0.018088448792696, - 0.022145798429846764, - 0.031590331345796585, - -0.03104753978550434, - -0.000867614580783993, - 0.007253020536154509, - 0.014370343647897243, - 0.0039216517470777035, - -0.015496631152927876, - 0.021209487691521645, - 0.026800215244293213, - 0.004739228170365095, - -0.02262073941528797, - -0.6535181403160095, - 0.013841124251484871, - -0.007870443165302277, - -0.05202634260058403, - -0.000422357814386487, - 0.02112806774675846, - 0.007639757823199034, - 0.017450671643018723, - -0.005305764265358448, - 0.0423646941781044, - 0.004722265992313623, - 0.01689431257545948, - 0.0015834177611395717, - -0.00425071781501174, - 0.009430961683392525, - -0.007795809302479029, - 0.0013332258677110076, - -0.01606655865907669, - 0.008263965137302876, - 0.011710676364600658, - -0.00991947203874588, - 0.0170435793697834, - 0.007348008453845978, - -0.0010754010872915387, - 0.004630669951438904, - 0.00850143563002348, - 0.018156297504901886, - -0.011412142775952816, - 0.006995195522904396, - 0.0032991403713822365, - -0.03424999862909317, - 0.018020600080490112, - -0.0027902754954993725, - 0.008657487109303474, - 0.04339599609375, - 0.02707161009311676, - -0.037425313144922256, - 0.0035416993778198957, - -0.014533179812133312, - 0.040166400372982025, - -0.02158943936228752, - -0.005692501552402973, - 0.020910952240228653, - 0.01947256177663803, - 0.008996730670332909, - -0.0029717707075178623, - 0.03788668289780617, - -0.012741975486278534, - -0.006041922140866518, - -0.0016139496583491564, - 0.006306531839072704, - -0.03023335710167885, - -0.011120392940938473, - -0.01149356085807085, - 0.005146319977939129, - -0.003969145938754082, - 0.015890153124928474, - 0.00412180507555604, - -0.0027224270161241293, - 0.012592708691954613, - 0.004600138403475285, - -0.0067475480027496815, - -0.03620403632521629, - -0.020110338926315308, - -0.011893867515027523, - -0.005014014896005392, - -0.020639557391405106, - -0.02097880095243454, - 0.014763865619897842, - 0.008358953520655632, - -0.008528575301170349, - -0.0018878886476159096, - 0.0007166513241827488, - -0.00502419238910079, - 0.01901119016110897, - -0.00144941674079746, - -0.0015181134222075343, - -0.041251976042985916, - -0.0057739196345210075, - 0.008616778068244457, - 0.02217293716967106, - 0.003969145938754082, - 0.0012916686246171594, - -0.010625097900629044, - 0.027736525982618332, - -0.007660112343728542, - -0.014926702715456486, - -0.01443819236010313, - 0.002401842037215829, - -0.02097880095243454, - 0.02511756867170334, - 0.00259690685197711, - -0.0266102384775877, - 0.00038673728704452515, - -0.015143818221986294, - 0.04939381405711174, - -0.0022508788388222456, - 0.023177098482847214, - 0.020625988021492958, - -0.03047761134803295, - -0.020218897610902786, - -0.0013730869395658374, - 0.008121483027935028, - -0.013393322937190533, - 0.04448157176375389, - 0.012314529158174992, - -0.007558339275419712, - 0.023434922099113464, - 0.03756101056933403, - -0.01684003323316574, - -0.012986230663955212, - -0.02232220396399498, - -0.018576959148049355, - -0.007361578289419413, - 0.021453741937875748, - -0.02180655486881733, - 0.036502573639154434, - -0.021413031965494156, - 0.021562300622463226, - -0.0018081663874909282, - 3.084993295487948e-05, - 0.013006585650146008, - 0.021996531635522842, - -0.03281160444021225, - -0.010943986475467682, - 0.03889084607362747, - 0.0018743188120424747, - -0.02882210537791252, - -0.03829377517104149, - -0.015795165672898293, - 0.0003057429566979408, - 0.027315864339470863, - 0.010333348996937275, - -0.010889708064496517, - 0.027410853654146194, - -0.0041387672536075115, - 0.00760583346709609, - -0.0038402334321290255, - 0.019961072131991386, - -0.010855783708393574, - 0.0004486491670832038, - 0.017789915204048157, - 0.013949682004749775, - -0.030857564881443977, - 0.02480546571314335, - -0.020083200186491013, - -0.010767580009996891, - 0.0010202740086242557, - 0.012775899842381477, - 0.012423086911439896, - -0.022566460072994232, - -0.0030769361183047295, - -0.0018420907435938716, - 0.013827553950250149, - -0.0017962929559871554, - -0.015415212139487267, - -0.00043126294622197747, - 0.009620938450098038, - 0.006771294865757227, - -0.002878478728234768, - -0.0019370788941159844, - 0.012579139322042465, - -0.01565946824848652, - 0.003375470172613859, - -0.006272607482969761, - 0.011072899214923382, - 0.006109770853072405, - 0.004973305854946375, - -0.01586301438510418, - -0.026827353984117508, - 0.001439239364117384, - -0.011534269899129868, - 0.002457817317917943, - 0.013718996196985245, - -0.012355238199234009, - 0.014397482387721539, - -0.0271258894354105, - 0.006890030112117529, - 0.005149712320417166, - -0.005346473306417465, - 0.015293085016310215, - 0.011724245734512806, - -0.010197651572525501, - -0.014465331099927425, - 0.024819035083055496, - 0.015103109180927277, - -0.003646864788606763, - 0.0027461738791316748, - -0.010041600093245506, - -0.02149445191025734, - -0.0071919565089046955, - 0.025321114808321, - -0.0050581167452037334, - 0.012857318855822086, - -0.00945131666958332, - 0.0002550685021560639, - -0.0034450150560587645, - 0.01967610791325569, - 0.000944792409427464, - 0.025131138041615486, - 0.049828045070171356, - 0.019974641501903534, - 0.0335986502468586, - -0.015903722494840622, - 0.015198096632957458, - -0.0454857312142849, - 0.013088003732264042, - -0.018481971696019173, - 0.035254158079624176, - 0.014818144030869007, - -0.005064901430159807, - -0.04214758053421974, - -0.002412019297480583, - -0.015333794057369232, - 0.0023814875166863203, - 0.026542389765381813, - 0.024371234700083733, - -0.016080129891633987, - 0.002844554604962468, - 0.002471386920660734, - 0.02703090012073517, - -0.017640648409724236, - 0.02863212861120701, - -0.011323939077556133, - -0.013495096005499363, - 0.0034772432409226894, - 0.0015435566892847419, - 0.006235290784388781, - -0.03327297791838646, - -0.023163527250289917, - -0.021155208349227905, - -0.028496431186795235, - -0.010706515982747078, - 0.005933363921940327, - 0.01141892746090889, - 0.013936111703515053, - 0.03156318888068199, - 0.0020235858391970396, - 0.01373935118317604, - -0.004790114238858223, - 0.0038164863362908363, - 0.020639557391405106, - 0.01475029531866312, - -0.0035959782544523478, - 0.01441105268895626, - 0.0040403869934380054, - 0.06366916745901108, - 0.012640202417969704, - -0.027573689818382263, - -0.010523324832320213, - -0.0009727799915708601, - 0.0071376776322722435, - -0.012009210884571075, - 0.02160300873219967, - 0.01845483109354973, - -0.0010694642551243305, - 0.016161547973752022, - 0.004915634635835886, - 0.008820324204862118, - 0.029934823513031006, - -0.001262832898646593, - -0.004006462637335062, - 0.025185417383909225, - 0.015089538879692554, - 0.007917936891317368, - -0.0036231176927685738, - -0.014275355264544487, - -0.02112806774675846, - -0.005634830333292484, - 0.0001100420267903246, - -0.01306764967739582, - -0.025348253548145294, - 0.008182547055184841, - 0.0010618313681334257, - 0.016392232850193977, - -0.0016181902028620243, - -0.010129802860319614, - -0.009403822012245655, - 0.012307744473218918, - 0.00974306557327509, - -0.02764153853058815, - -0.02263430878520012, - -0.002557893982157111, - 0.015265945345163345, - 0.0011958323884755373, - -0.0020201934967190027, - 0.01330511923879385, - 0.00867784209549427, - 0.000407727959100157, - 0.025768915191292763, - -0.009763420559465885, - 0.002093130722641945, - 0.024968301877379417, - -0.00021838782413396984, - 0.0060758464969694614, - 0.00030404675635509193, - 0.015360933728516102, - -0.014506041072309017, - 0.005533057264983654, - 0.0029717707075178623, - 0.03240451216697693, - -0.001289972336962819, - -0.0016843426274135709, - -0.01967610791325569, - 0.03240451216697693, - -0.002842858200892806, - -0.002644401043653488, - -0.0025494128931313753, - 0.0031634431798011065, - -0.02428981475532055, - -0.012375593185424805, - -0.0034585846588015556, - 0.0037418529391288757, - -0.00030362268444150686, - 0.005180244334042072, - 0.0017208113567903638, - -0.006842535920441151, - -0.016256535425782204, - -9.477607818553224e-05, - -0.005136142484843731, - -0.005370220169425011, - -0.009417392313480377, - -0.004169299267232418, - 0.039813585579395294, - 0.0035688388161361217, - 0.014017530716955662, - 0.010265500284731388, - 0.0005784097011201084, - -0.019404713064432144, - -0.0016410890966653824, - -0.03544413298368454, - -0.004505150020122528, - 0.004291426856070757, - 0.003266912419348955, - -0.005207383539527655, - 0.002985340543091297, - 0.019255446270108223, - 0.0005347321275621653, - 0.012952306307852268, - -0.01663648895919323, - -0.01004838477820158, - 0.0002571887744124979, - -0.00392504408955574, - -0.005590728484094143, - -0.006839143577963114, - 0.02267501689493656, - -0.00455942889675498, - 0.013386538252234459, - 0.02806220017373562, - -0.0017640647711232305, - -0.0019370788941159844, - 0.021833693608641624, - 0.0014154923846945167, - -0.02753298170864582, - -0.005241307895630598, - 0.007789024617522955, - 0.0033635967411100864, - 0.01788490265607834, - -0.020476721227169037, - 0.035308435559272766, - -0.001135616679675877, - 0.028740687295794487, - 0.02944631315767765, - 0.02020532637834549, - 0.01475029531866312, - 0.017124999314546585, - 0.004654417280107737, - -0.007856872864067554, - 0.0019777880515903234, - 0.013834338635206223, - -0.020422441884875298, - 0.02547038160264492, - -0.0019455599831417203, - -0.0006513469852507114, - 0.00987197831273079, - 0.00455942889675498, - -0.024303385987877846, - 0.00012679216160904616, - -0.011812449432909489, - -0.006890030112117529, - 0.0027275155298411846, - -0.016460081562399864, - 0.01917402818799019, - -0.025076860561966896, - -0.006014782469719648, - -0.010828644037246704, - 0.0075379847548902035, - -0.007707606069743633, - -0.005092041101306677, - -0.01812915876507759, - -0.01353580504655838, - -0.022254355251789093, - -0.007694036699831486, - -0.008956021629273891, - 0.017437102273106575, - -0.008535359986126423, - -0.0030803284607827663, - 0.02475118637084961, - 0.007008765358477831, - 0.002693591173738241, - 0.009838053956627846, - 0.0031091643031686544, - -0.0030599739402532578, - -0.012524859979748726, - -0.011486776173114777, - -0.03693680465221405, - -0.008949236944317818, - -0.03365292772650719, - -1.8539112716098316e-05, - 0.013990391045808792, - -0.011235736310482025, - -0.010631882585585117, - -0.00800614058971405, - 0.0170435793697834, - 0.006164049729704857, - 0.005129357799887657, - 0.012436657212674618, - -0.012463795952498913, - 0.019241876900196075, - -0.01495384145528078, - 0.023991281166672707, - 0.0454857312142849, - 0.02237648330628872, - -0.018278425559401512, - 0.006482938304543495, - -0.02718016691505909, - 0.010557249188423157, - -0.006384557578712702, - 0.009797344915568829, - -0.007415857166051865, - -0.006923954468220472, - 0.01777634583413601, - -0.0007709302590228617, - -0.015143818221986294, - 0.026745935901999474, - -0.005811236798763275, - -0.005390575155615807, - -0.00870498176664114, - 0.03973216563463211, - 0.028767826035618782, - -0.020395303145051003, - 0.003684181487187743, - 0.025538230314850807, - -0.017287835478782654, - 0.012226326391100883, - -0.03796810284256935, - 0.011228950694203377, - 0.013583298772573471, - 0.015075969509780407, - 0.018712656572461128, - -0.02530754543840885, - -0.026053879410028458, - 0.0007285248721018434, - 0.010265500284731388, - 0.00029238525894470513, - 0.0036672193091362715, - -0.02346206270158291, - 0.0019150280859321356, - -0.02370631694793701, - -0.0060012126341462135, - -0.002970074536278844, - 0.00901708472520113, - -0.011072899214923382, - 0.0170435793697834, - 0.0059469337575137615, - -5.6505199609091505e-05, - -0.015944432467222214, - 0.006761117838323116, - -0.0038266635965555906, - -0.029473451897501945, - -0.0012204275699332356, - 0.012518075294792652, - -0.010041600093245506, - 0.01803416945040226, - 0.006605065893381834, - 0.014587459154427052, - -0.032377373427152634, - -0.011581763625144958, - -0.007578693795949221, - -0.02221364714205265, - -0.00045204159687273204, - -0.0019455599831417203, - 0.0038504106923937798, - 0.029744846746325493, - 0.019038330763578415, - 0.02252575010061264, - -0.0009642989025451243, - -0.015089538879692554, - 0.0006365051376633346, - 0.013678287155926228, - 0.02490045316517353, - 0.009532734751701355, - -0.027709387242794037, - 0.00842001661658287, - 0.012918381951749325, - 0.0123959481716156, - 0.004515327513217926, - 0.013603653758764267, - 0.04410162195563316, - -0.007822948507964611, - -0.010862568393349648, - -0.023597760125994682, - 0.004915634635835886, - -0.03224167600274086, - 0.017545659095048904, - 0.00025379634462296963, - -0.002315334975719452, - 0.015252375975251198, - -0.013624007813632488, - 0.0011729334946721792, - 0.01731497421860695, - -0.005000445060431957, - -0.006696661468595266, - 0.0007022335194051266, - 0.006723800674080849, - 0.004355883225798607, - 0.016500791534781456, - 0.007599048316478729, - -0.002140624914318323, - -0.027302294969558716, - -0.004990268032997847, - -0.022498611360788345, - -0.0036502571310847998, - 0.02749227173626423, - 0.017640648409724236, - 0.002439158735796809, - 0.017274266108870506, - 0.003565446473658085, - -0.007327653933316469, - 0.016962161287665367, - -0.016283676028251648, - -0.005241307895630598, - -0.0006950245588086545, - -0.008175762370228767, - -0.005075078923255205, - -0.017437102273106575, - -0.01500812079757452, - -0.0047019110061228275, - 0.02092452347278595, - 0.013793629594147205, - -0.006733978167176247, - 0.01698930189013481, - -0.001244174549356103, - -0.01373935118317604, - -0.0013501880457624793, - -0.02966342866420746, - 0.03099326230585575, - 0.0075379847548902035, - 0.008155407384037971, - 0.024167688563466072, - 0.005702678579837084, - -0.02950059063732624, - -0.05294908210635185, - 0.0018013815861195326, - -0.006181011907756329, - 0.010367273353040218, - 0.04738549515604973, - -0.014383913017809391, - -0.005017407238483429, - -0.004501757677644491, - 0.008793184533715248, - -0.02346206270158291, - -0.007836518809199333, - 0.023882724344730377, - -0.0167993251234293, - -0.0014002264942973852, - -0.014682447537779808, - -0.006004605442285538, - -0.02825217694044113, - 0.015320224687457085, - -0.0034772432409226894, - -0.007497275248169899, - -0.01216526236385107, - 0.002647793386131525, - -0.023475632071495056, - 0.04328743740916252, - -0.0065100775100290775, - 0.025076860561966896, - 0.0006827270262874663, - 0.008494650945067406, - -0.006713623646646738, - -0.02024603635072708, - -0.00767368171364069, - 0.010557249188423157, - -0.008949236944317818, - 0.019553979858756065, - 0.007714391220360994, - 0.023326365277171135, - 0.029989100992679596, - 0.01206348929554224, - -0.004793507046997547, - 0.006045314483344555, - 0.018984051421284676, - 0.019146887585520744, - -0.005122572649270296, - -0.0059469337575137615, - 0.00249852635897696, - 0.009987320750951767, - 0.01952684111893177, - 0.019364003092050552, - -0.00012976053403690457, - -0.01998821087181568, - -0.02366560883820057, - -0.016962161287665367, - 0.03188886493444443, - -0.008128267712891102, - -0.012877672910690308, - -0.007334438618272543, - -0.02055813930928707, - -0.005651792045682669, - -0.017274266108870506, - -0.014641737565398216, - 0.006571141537278891, - -0.04241897538304329, - 0.0014646826311945915, - 0.005180244334042072, - 0.006893422454595566, - 0.032214537262916565, - -0.0014663789188489318, - -0.008732120506465435, - 0.02701733075082302, - 0.0330558605492115, - -0.025660358369350433, - 0.03766956925392151, - 0.0024595134891569614, - 0.015822304412722588, - -0.015320224687457085, - 0.006710231304168701, - 0.009397037327289581, - -0.009329188615083694, - 0.007571909110993147, - -0.016256535425782204, - -0.012830179184675217, - -0.010896492749452591, - -0.020585279911756516, - 0.0012161870254203677, - -0.014546750113368034, - 0.002434070222079754, - -0.006218328606337309, - 0.001380719942972064, - 0.01586301438510418, - -0.005997820291668177, - -0.010767580009996891, - 0.006442228797823191, - -0.0015316831413656473, - -0.0020880422089248896, - -0.0021287512499839067, - -0.010380842722952366, - -0.021616578102111816, - 0.01803416945040226, - 0.005529664922505617, - -0.011724245734512806, - -0.012952306307852268, - -0.029717708006501198, - -0.0035824086517095566, - 0.0060113901272416115, - -0.0175592303276062, - 0.017138568684458733, - -0.020748116075992584, - -0.026053879410028458, - -0.001979484222829342, - 0.017423532903194427, - 0.016826463863253593, - 0.0010770972585305572, - -0.021168777719140053, - 0.0026952875778079033, - -0.013888617977499962, - 0.023231375962495804, - -0.019133318215608597, - -0.007911152206361294, - -0.0022407015785574913, - -0.02412697859108448, - -0.03422285616397858, - -0.006360810715705156, - 0.0019421675242483616, - 0.021372323855757713, - 0.010509755462408066, - -0.029012082144618034, - 0.004810469225049019, - -0.0012645291863009334, - -0.03766956925392151, - -0.01643294282257557, - -0.027085179463028908, - 0.004864748101681471, - 0.027926502749323845, - 0.05227059870958328, - -0.008752475492656231, - 0.008725335821509361, - 0.01333225890994072, - -0.0007946772966533899, - -0.04203902184963226, - -0.018685517832636833, - -0.003965753596276045, - 0.006771294865757227, - -0.0023492593318223953, - 0.004935989156365395, - -0.027573689818382263, - -0.013169422745704651, - 0.006493115331977606, - -0.005163282155990601, - 0.001916724257171154, - 0.009627723135054111, - -0.026393122971057892, - -0.03454853221774101, - -0.002730908105149865, - 0.015645897015929222, - 0.0030056950636208057, - -0.004396592266857624, - 0.00438980758190155, - -0.03728961572051048, - -0.003674004226922989, - 0.018576959148049355, - -0.01500812079757452, - -0.02624385617673397, - -0.012172047048807144, - -0.017708497121930122, - -6.54633404337801e-05, - -0.019133318215608597, - 0.000515225634444505, - -0.013895402662456036, - -0.014085379429161549, - -0.009600583463907242, - 0.015537340193986893, - -0.007863658480346203, - -0.008962806314229965, - -0.013257625512778759, - 0.008067203685641289, - 0.010265500284731388, - -0.0019455599831417203, - 0.016134407371282578, - -0.05300336331129074, - -0.02346206270158291, - -0.004196438938379288, - -0.033300116658210754, - 0.007341223768889904, - -0.006825573742389679, - 0.00542449951171875, - 0.00670344615355134, - 0.02593175321817398, - -0.018712656572461128, - -0.009132428094744682, - -0.04917670041322708, - 0.011798880062997341, - 0.020748116075992584, - -0.019621828570961952, - 0.01844126172363758, - -0.004773152060806751, - -0.008216471411287785, - -0.004796899389475584, - -0.025022581219673157, - -0.0008082470158115029, - -0.005115787964314222, - -0.02221364714205265, - 0.007870443165302277, - -0.006418481934815645, - -0.03948791325092316, - -0.017491381615400314, - 0.0033941285219043493, - 0.0021592832636088133, - 0.004691733978688717, - 0.18270283937454224, - -0.020883813500404358, - 0.007951861247420311, - 0.01967610791325569, - -0.011771740391850471, - -0.0123959481716156, - 0.01591729186475277, - -0.019852513447403908, - 0.009125643409788609, - 0.017803484573960304, - -0.014641737565398216, - 0.01219240203499794, - -0.005678931716829538, - -0.010129802860319614, - 0.01149356085807085, - -0.021670857444405556, - -0.037995241582393646, - -0.028767826035618782, - -0.03167174756526947, - 0.002030370756983757, - 0.006567749194800854, - 0.006242075469344854, - -0.018061310052871704, - -0.02138589322566986, - 0.03671968728303909, - -0.015510200522840023, - -0.026379553601145744, - 0.025348253548145294, - -0.014126088470220566, - -0.019051900133490562, - -0.028442151844501495, - 0.006191188935190439, - -0.006289569661021233, - 0.00747692072764039, - -0.01597157120704651, - -0.007232665549963713, - 0.023570619523525238, - -0.0026817177422344685, - 0.025945322588086128, - 0.024724047631025314, - -0.02211865969002247, - -0.011283230036497116, - -0.002311942633241415, - -0.031183237209916115, - 0.004488187842071056, - -0.0023102464620023966, - -0.01647365093231201, - -0.008067203685641289, - -0.006727193482220173, - -0.00596728827804327, - -0.019241876900196075, - -0.010550464503467083, - 0.031291794031858444, - 0.039786446839571, - 0.004240540321916342, - 0.016080129891633987, - 0.032730188220739365, - 0.0031091643031686544, - -0.012572354637086391, - 0.023679178208112717, - -0.023692747578024864, - 0.010462261736392975, - -0.0012255162000656128, - 0.011710676364600658, - -0.009573443792760372, - -0.006818789057433605, - -0.00824361015111208, - -0.001076249172911048, - 0.002851339289918542, - -0.021982962265610695, - -0.022077949717640877, - -0.009369897656142712, - 0.019703246653079987, - 0.02707161009311676, - -0.012972661294043064, - -0.011547839269042015, - -0.004634062759578228, - 0.011378218419849873, - 0.02738371305167675, - 0.014913132414221764, - -0.025972461327910423, - -0.0024679945781826973, - -0.004437301307916641, - -0.011669967323541641, - 0.00827074982225895, - -0.03053189069032669, - 0.014465331099927425, - -0.00914599746465683, - 0.006632205098867416, - -0.006764510180801153, - 0.00032694567926228046, - -0.0013858085731044412, - -0.006890030112117529, - 0.011038974858820438, - 0.0019336864352226257, - 0.023896293714642525, - 0.00911885779350996, - 0.030396193265914917, - -0.008304674178361893, - 0.006218328606337309, - -0.02567392773926258, - 0.07088826596736908, - 0.026800215244293213, - 0.0020134085789322853, - -0.013752920553088188, - -0.022552890703082085, - -0.018522679805755615, - 0.0023407782427966595, - 0.0030820248648524284, - 8.539388363715261e-05, - -0.011778525076806545, - -0.02887638472020626, - 0.015157387591898441, - -0.010910062119364738, - -0.01891620270907879, - 0.0019150280859321356, - -0.004047171678394079, - -0.008392877876758575, - -0.019662538543343544, - -0.011473205871880054, - -0.0026868064887821674, - -0.008019709959626198, - -0.03069472685456276, - 0.01840055361390114, - 0.010706515982747078, - 0.00785008817911148, - -0.020164618268609047, - -0.014316064305603504, - 0.01054367981851101, - -0.0211823470890522, - 0.0070833987556397915, - -0.008189331740140915, - 0.010129802860319614, - 0.017287835478782654, - 0.0033585079945623875, - 0.0012424783781170845, - 0.0108489990234375, - -0.017233556136488914, - 0.013318689540028572, - 0.008148622699081898, - 0.028767826035618782, - -0.02882210537791252, - 0.009627723135054111, - 0.006672914605587721, - -0.005458423402160406, - -0.005648399703204632, - 0.006605065893381834, - 0.010028029792010784, - -0.0105911735445261, - -0.018970482051372528, - -0.003938613925129175, - -0.00790436752140522, - 0.01777634583413601, - -0.01720641739666462, - 0.02020532637834549, - -0.01534736342728138, - 0.008582853712141514, - -0.033245835453271866, - -0.011222166009247303, - -0.021684426814317703, - -0.022770006209611893, - 0.009437746368348598, - 0.007273375056684017, - 0.003446711227297783, - -0.014872423373162746, - -0.03528129681944847, - -0.17542946338653564, - 0.011561409570276737, - -0.002062598941847682, - -0.023434922099113464, - 0.016039419919252396, - -0.009695571847259998, - 0.03452138975262642, - 0.008202901110053062, - -0.0004855418810620904, - -0.0015435566892847419, - -0.0018149513052776456, - -0.0029005296528339386, - -0.024479791522026062, - 0.0020693836268037558, - -0.019703246653079987, - 0.0038639805279672146, - -0.013963251374661922, - 0.01353580504655838, - 0.03989500552415848, - 0.012701266445219517, - 0.03595978394150734, - 0.007924721576273441, - 0.010876137763261795, - -0.013074434362351894, - -0.016446512192487717, - 0.018617669120430946, - -0.012524859979748726, - -0.00653382483869791, - -0.012233111076056957, - -0.02335350401699543, - -0.0010643756249919534, - 0.023163527250289917, - -0.0009235896868631244, - 0.010441906750202179, - 0.0005868907901458442, - -0.017857763916254044, - -0.0006025807815603912, - -0.01844126172363758, - -0.02050386182963848, - 5.059494651504792e-05, - 0.025402532890439034, - 0.027085179463028908, - -0.008908526971936226, - -0.0027190344408154488, - 0.004135374911129475, - 0.03349009156227112, - 0.008087558671832085, - -0.006136910058557987, - -0.0012797950766980648, - -0.014519610442221165, - 0.03574266657233238, - -0.017708497121930122, - 0.00375203019939363, - 0.014275355264544487, - 0.008250395767390728, - 0.0037995241582393646, - -0.021630149334669113, - 0.02614886872470379, - -0.003265216015279293, - 0.015618758276104927, - -0.024981871247291565, - -0.05465887114405632, - 0.0021100929006934166, - -0.0010906669776886702, - -0.028903523460030556, - -0.018821215257048607, - 0.003484027925878763, - -0.0015791772166267037, - -0.012110983021557331, - 0.021195916458964348, - -0.016935022547841072, - -0.016283676028251648, - -0.0017776344902813435, - -0.01648722030222416, - -0.0012416301760822535, - 0.01221954170614481, - -0.008386092260479927, - 0.008569284342229366, - 0.019703246653079987, - -0.011703891679644585, - -0.012599493376910686, - 0.07099682092666626, - 0.0025019189342856407, - -0.0026698443107306957, - -0.008732120506465435, - 0.016772184520959854, - 0.0002631255192682147, - 0.021711567416787148, - 0.026393122971057892, - -0.009369897656142712, - 0.009329188615083694, - -0.03756101056933403, - -0.026338845491409302, - -0.0007399743190035224, - 0.022200077772140503, - 0.007442996371537447, - 0.009702356532216072, - 0.004254110157489777, - 0.005587336141616106, - -0.013196561485528946, - 0.019038330763578415, - 0.012694481760263443, - -0.023054970428347588, - -0.002420500386506319, - 0.017477812245488167, - 0.01565946824848652, - -0.0018454832024872303, - 0.001675861538387835, - 0.04535003378987312, - 0.005678931716829538, - -0.013786844909191132, - 0.0062658223323524, - -0.006849321071058512, - -0.0037893468979746103, - 0.01694859191775322, - 0.026515251025557518, - 0.017694927752017975, - -0.027315864339470863, - 0.01715213805437088, - 0.01534736342728138, - 0.02511756867170334, - -0.013339043594896793, - -0.020218897610902786, - 0.004505150020122528, - -0.007666897028684616, - -0.011663182638585567, - -0.05066936835646629, - -0.01299301628023386, - 0.026474541053175926, - 0.01766778714954853, - 0.0006398975383490324, - 0.02536182478070259, - -0.008026494644582272, - 0.015740886330604553, - 0.006320101208984852, - 0.029473451897501945, - -0.04418303817510605, - -0.0075379847548902035, - 0.014302494935691357, - -0.01726069487631321, - 0.004467833321541548, - -0.013054079376161098, - -0.021223057061433792, - -0.015903722494840622, - -0.0034687621518969536, - 0.026895202696323395, - -0.003183797700330615, - -0.016283676028251648, - 0.009342758916318417, - -0.0307490061968565, - -0.008494650945067406, - 0.02092452347278595, - -0.012273820117115974, - 0.009675216861069202, - 0.01557804923504591, - -0.003470458323135972, - 0.01131715439260006, - -0.03332725539803505, - 0.013780060224235058, - -0.030450472608208656, - 0.008331813849508762, - 0.003324583638459444, - -0.019866082817316055, - -0.014858854003250599, - 0.05552733317017555, - 0.01092363242059946, - -0.01306764967739582, - -0.024574778974056244, - -0.002674932824447751, - -0.01503526046872139, - -0.005410929676145315, - -0.005282016936689615, - -0.015835873782634735, - 0.017993461340665817, - 0.005349865648895502, - -0.03235023468732834, - -0.024778325110673904, - 0.013372967950999737, - -0.007782239932566881, - -0.01845483109354973, - 0.022390052676200867, - -4.4949727453058586e-05, - -0.010306209325790405, - -0.0003716833598446101, - -0.012049919925630093, - -0.003470458323135972, - 0.004508542362600565, - -0.024303385987877846, - 0.005963895935565233, - 0.026433832943439484, - 0.005529664922505617, - 0.0073547931388020515, - -0.02184726484119892, - 0.004006462637335062, - 0.0211823470890522, - -0.01917402818799019, - -0.014044669456779957, - 0.02035459317266941, - -0.021372323855757713, - 0.014858854003250599, - -0.021616578102111816, - 0.0034263567067682743, - -0.008291104808449745, - -0.009885547682642937, - 0.03042333386838436, - -0.001984572969377041, - -0.0017742421478033066, - -0.01323048584163189, - 0.0126605574041605, - 0.010224791243672371, - 0.022335775196552277, - -0.01621582731604576, - 0.010292639955878258, - -0.0014723156346008182, - 0.016935022547841072, - -0.03235023468732834, - 0.008338598534464836, - 0.025131138041615486, - 0.01917402818799019, - -0.008874602615833282, - -0.016975730657577515, - 0.004142160061746836, - 0.010930417105555534, - -0.034494251012802124, - 0.0006636445759795606, - 0.022444332018494606, - -0.01570017635822296, - -0.017274266108870506, - -0.07528486102819443, - -0.007144462317228317, - 0.005159889347851276, - -0.02898494154214859, - -0.020381733775138855, - 0.007076614070683718, - -0.0008718551252968609, - 0.00720552634447813, - 0.01648722030222416, - -0.02795364148914814, - -0.021928682923316956, - -0.004454263485968113, - -0.019825374707579613, - -0.0027054648380726576, - -0.014112518168985844, - -0.004036994650959969, - 0.007748315576463938, - -0.0030497966799885035, - 0.01591729186475277, - 0.016907881945371628, - -0.01617511734366417, - -0.016025850549340248, - -0.006652559619396925, - -0.0017725458601489663, - -0.01565946824848652, - 0.0160122811794281, - 0.01229417510330677, - 0.016365094110369682, - -0.007212311029434204, - 0.0033686852548271418, - 0.006594888400286436, - -0.0023611329961568117, - -0.002320423722267151, - -0.020910952240228653, - 0.0028258960228413343, - -0.0019930540584027767, - -0.0028683014679700136, - 0.04735835641622543, - 0.023991281166672707, - 0.051646389067173004, - -0.023991281166672707, - -0.015265945345163345, - 0.015401642769575119, - -0.022444332018494606, - -0.011208596639335155, - -0.0027241231873631477, - 0.018997620791196823, - 0.006289569661021233, - 0.00971592590212822, - -0.021521590650081635, - -0.008291104808449745, - 0.019187597557902336, - -0.019391143694519997, - -0.013440816663205624, - 0.009335974231362343, - -0.02484617382287979, - 0.01740996353328228, - -0.02319066785275936, - 0.006092808675020933, - -0.03631259500980377, - 0.04149623215198517, - 0.02852357178926468, - -0.010380842722952366, - 0.014560319483280182, - -0.00321602588519454, - 0.011038974858820438, - -0.009342758916318417, - 0.007327653933316469, - 0.022512180730700493, - -0.017450671643018723, - -0.012579139322042465, - 0.01973038725554943, - -0.006370987743139267, - 0.010353703051805496, - 0.0038266635965555906, - -0.022091519087553024, - -0.014302494935691357, - 0.013135498389601707, - -0.019336864352226257, - -0.00533290347084403, - 0.017437102273106575, - 0.017124999314546585, - -0.03883656486868858, - 0.03389718383550644, - 0.010285855270922184, - 0.01280982419848442, - -0.00268002157099545, - 0.009580228477716446, - -0.012300959788262844, - 0.009546304121613503, - -0.027519410476088524, - 0.006981625687330961, - 0.01674504578113556, - -0.007795809302479029, - 0.02666451781988144, - -0.010937201790511608, - -0.02495473250746727, - 0.011032190173864365, - 0.006771294865757227, - 0.012151692993938923, - 0.02134518511593342, - 0.0019285978050902486, - 0.007666897028684616, - -0.014587459154427052, - -0.01715213805437088, - 0.00289883348159492, - -0.042853206396102905, - -0.027817945927381516, - -0.003500990103930235, - 0.01833270490169525, - -0.022186506539583206, - -0.006109770853072405, - -0.008080773986876011, - -0.0016750134527683258, - -0.00047578863450326025, - -0.00987197831273079, - -0.006557571701705456, - 0.002542627975344658, - -0.029202057048678398, - 0.031074680387973785, - 0.011507130227982998, - 0.026108158752322197, - 0.011914222501218319, - -0.017165707424283028, - 0.022824285551905632, - 0.007870443165302277, - -0.008338598534464836, - -0.018590528517961502, - 0.00961415283381939, - -0.015428782440721989, - -0.02567392773926258, - -0.009084933437407017, - -0.010950771160423756, - -0.027560120448470116, - 0.004956343676894903, - -0.0018946734489873052, - 0.007666897028684616, - 0.016853604465723038, - 0.008698196150362492, - 0.10595244914293289, - 0.009675216861069202, - 0.0028360735159367323, - 0.0007085942779667675, - 0.006381165236234665, - 0.005387182347476482, - -0.013922542333602905, - 0.0006365051376633346, - -0.020951662212610245, - -0.032730188220739365, - 0.014492470771074295, - -0.005750172771513462, - 0.0027546549681574106, - -0.03023335710167885, - -0.028116479516029358, - -0.026854494586586952, - -0.009335974231362343, - 0.014601028524339199, - -0.016297245398163795, - 0.029473451897501945, - 0.013759705238044262, - 0.024167688563466072, - 0.0007772910757921636, - 0.024859745055437088, - -0.048281095921993256, - -0.002244093921035528, - 0.03989500552415848, - 0.009329188615083694, - 0.02289213426411152, - -0.03538985550403595, - -0.0056755393743515015, - -0.005645007360726595, - -0.057589929550886154, - -0.014153228141367435, - 0.010713301599025726, - -0.0023763987701386213, - -0.005885870195925236, - -0.010428337380290031, - 0.023312795907258987, - 0.039189379662275314, - 0.008331813849508762, - 0.014071809127926826, - -0.014248215593397617, - 0.0038911199662834406, - -0.04516005888581276, - -0.005834983661770821, - -0.009593798778951168, - -0.0057840971276164055, - -0.02175227552652359 - ], - "metadata": { - "source": "test.pdf", - "file_type": "pdf", - "has_tables": false, - "table_count": 0, - "has_images": true, - "image_count": 1, - "detection_class_prob": 0.8481391668319702, - "coordinates": "CoordinatesMetadata(points=((194.43865966796875, 223.614626111111), (194.43865966796875, 404.46212611111065), (833.7641645000001, 404.46212611111065), (833.7641645000001, 223.614626111111)), system=)", - "links": [], - "last_modified": "2024-11-08T08:33:13", - "_known_field_names": "frozenset({'links', 'sent_to', 'detection_origin', 'image_path', 'page_name', 'subject', 'coordinates', 'url', 'orig_elements', 'category_depth', 'signature', 'emphasized_text_contents', 'parent_id', 'header_footer_type', 'detection_class_prob', 'cc_recipient', 'last_modified', 'file_directory', 'bcc_recipient', 'filename', 'image_base64', 'key_value_pairs', 'data_source', 'image_mime_type', 'languages', 'page_number', 'sent_from', 'link_start_indexes', 'link_texts', 'link_urls', 'emphasized_text_tags', 'filetype', 'text_as_html', 'table_as_cells', 'email_message_id', 'is_continuation', 'attached_to_filename'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "test.pdf", - "parent_id": "f6e5bc969bc25157103a4996997132fb", - "id": "2fe72ee3-a99b-4ab0-961f-202cee32984c", - "processing_timestamp": "2025-05-03T09:55:36.199953", - "chunk_number": 1, - "total_chunks": 2, - "chunking_strategy": "hybrid", - "word_count": 21 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000000.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000000.json deleted file mode 100644 index 076308f03d3fe3404c1dd31e0b62eb256c67d800..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000000.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000000", - "content": "\n[IMAGE: ]\n\n\n## Studiengang Bauphysik\n\n\n## Verladeger\u00e4usche in Speditionen\n\nBachelorarbeit zur Erlangung des akademischen Grades Bachelor of Engineering\n\n## vorgelegt von\n\n\n## Selin Karag\u00f6z\n\n\n## Matrikelnummer\n\n\n## Matrikelnummer\n\n610260\nEingereicht am\n30.06.2023\nErstgutachter Prof. Dr. Karl Georg Degen Zweitgutachter Prof. Dr.-Ing. Berndt Zeitler externer Betreuer Dipl.-Ing (FH) Bauphysik Thomas Heine Heine und Jud, Forststra\u00dfe 9, 70174 Stuttgart\nKurzfassung\n\n## Kurzfassung\n\nDie Logistik spielt eine entscheidende Rolle in der globalen Wirtschaft, doch sie geht auch mit einer unvermeidlichen L\u00e4rmbelastung einher. Diese Arbeit konzentriert sich auf die Analyse und Bewertung von Verladet\u00e4tigkeiten in Speditionen mit verschiedenen Flurf\u00f6rderger\u00e4ten und Anh\u00e4ngern. Ziel ist es, Emissionsdatenbl\u00e4tter f\u00fcr Verladet\u00e4tigkei- ten mit bestimmten Flurf\u00f6rderger\u00e4ten und Anh\u00e4ngern zu erstellen, die als Grundlage f\u00fcr Schallimmissionsprognosen dienen k\u00f6nnen. Weiterhin werden m\u00f6gliche L\u00e4rmmin- derungsma\u00dfnahmen aufgezeigt. Im Rahmen der Untersuchung wurde der Schalldruck im Fernfeld gemessen, wobei das H\u00fcllfl\u00e4chen-Verfahren zur Ermittlung der Schallleistung angewendet wurde. Zus\u00e4tzlich wurde die Richtcharakteristik entlang einer Kreisbahn im Nahfeld analysiert. Es wurde zudem eine Vergleichsanalyse der simulierten Messergebnisse mit den tats\u00e4chlichen Messungen durchgef\u00fchrt, um die Genauigkeit der berechneten Kenngr\u00f6\u00dfen zu \u00fcberpr\u00fc- fen und Abweichungen zu interpretieren. Die Ergebnisse zeigen, dass die Beladung mit einem Gabelstapler und einem Gabelhubwagen \u00e4hnliche Schallleistungspegel aufwei- sen. Allerdings gibt es Unterschiede in der Impulshaftigkeit der Ger\u00e4uschentwicklung. Der Gabelhubwagen erzeugt mehr impulsartige Schallereignisse, w\u00e4hrend der Gabel- stapler eine kontinuierlichere Ger\u00e4uschabstrahlung aufweist. Es gibt gewisse Variatio- nen der Schallleistungspegel je nach Flurf\u00f6rderger\u00e4t und Anh\u00e4ngertyp, jedoch zeigt sich kein signifikanter Unterschied zwischen den Beladevorg\u00e4ngen der Flurf\u00f6rderger\u00e4te in den verschiedenen Anh\u00e4ngern, was auf eine gewisse \u00c4hnlichkeit hinweist (siehe Tabelle 1). Die Schallabstrahlung der Flurf\u00f6rderger\u00e4te erfolgt weitestgehend in alle Richtungen,\n\n## ohne eine ausgepr\u00e4gte Richtcharakteristik aufzuweisen. | Anzahl Max-Pegel Schallleistungspegel Flurf\u00f6rderger\u00e4t | Einzelereignisse LAFmax LWA,5s LWAmax LWA,1h Kl LWAT,1h El [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] Gabelstapler 297 69,3 100,7 108,8 72,1 5,7 77,8 STABW [dB] 6,5 4,9 6,5 4,9 2,9 - Gabelhubwagen 99 68,6 100,7 108,1 72,1 6,2 79,5 STABW [dB] 6,4 5,1 6,4 51 2,7 - |\n\n\n## I\n\nKurzfassung\n\n| Anzahl Max-Pegel Schallleistungspegel Flurf\u00f6rderger\u00e4t | Anh\u00e4nger-Typ lEinzelereignissel LArmax | LWASs LWAmax LWA\u201aIh Kl LWAT,Ih [ie [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A}] [dB{A)] Tautliner 36 73,1 103,1 112,5 74,6 6,9 81,5 STABW [dB] 7,1 4,8 71 4,8 2,9 - Koffer 68,3 100,1 107,9 71,6 5,4 77,0 Gabelstapler STABW [dB] 6,1 48 6,1 4,8 2,8 B Wechselbr\u00fccke 71,6 102,0 111,0 73,4 81 81,5 STABW [dB] 4,9 4 4,9 4 16 - Koffer 3 69,4 101,5 108,9 72,9 6,7 79,6 STABW [dB] 6 49 6 4,9 2,7 - Gabelhubwagen Wechselbr\u00fccke 3 64,4 97,2 103,8 68,6 5,0 73,6 STABW [dB] 5,6 4,3 5,6 4,3 2,1 - |\n\n\n## Tabelle 1: Ergebnisse der Verladeger\u00e4usche\n\nMit: LAFmax: Maximal-Pegel [dB(A)], LWA,5s: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWAmax: maximale Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWA,1h: st\u00fcndliche Schall- leistungspegel [dB(A)], KI: Impulszuschlag [dB(A)], LWAT,1h: impulsbehaftete st\u00fcndliche Schallleis-\n\n## tungspegel [dB(A)], STABW: Standardabweichung [dB]\n\nEs stehen verschiedene M\u00f6glichkeiten zur L\u00e4rmminderung zur Verf\u00fcgung, wie die Ver- wendung von weicheren Oberfl\u00e4chen auf \u00dcberladebr\u00fccken, Dr\u00f6hnfolien an der Unter- seite der \u00dcberladebr\u00fccken, speziell angepasste Sto\u00dfd\u00e4mpfer in den Anh\u00e4ngern sowie Ma\u00dfnahmen auf dem Gel\u00e4nde und das richtige Verhalten des Personals. Zuk\u00fcnftige Untersuchungen k\u00f6nnten weitere spezifische Messungen und Untersuchun- gen f\u00fcr bestimmte Situationen von Flurf\u00f6rderger\u00e4ten umfassen, um eine detailliertere Bewertung vorzunehmen. Die Erkenntnisse k\u00f6nnen dazu beitragen, Standards und Richtlinien f\u00fcr den Einsatz von Flurf\u00f6rderger\u00e4ten zu verbessern und die L\u00e4rmbelastung in Speditionen und w\u00e4hrend des Verladeprozesses insgesamt zu reduzieren. Es wurden Emissionsdatenbl\u00e4tter erstellt, um die Arbeit zu erleichtern. Je nach bekanntem Anh\u00e4- ngertyp k\u00f6nnen die entsprechenden Vorlagen verwendet werden, um pr\u00e4zisere Ergeb- nisse zu erzielen. Ein Entladevorgang kann \u00e4hnlich wie ein Beladevorgang betrachtet werden. Die vorliegende Arbeit liefert somit wichtige Erkenntnisse \u00fcber Verladeger\u00e4usche in ver- schiedenen Anh\u00e4ngertypen und bietet eine Grundlage f\u00fcr zuk\u00fcnftige Untersuchungen und Ma\u00dfnahmen zur L\u00e4rmminderung in der Logistikbranche. ## II\n\nEidesstattliche Versicherung\n\n## Eidesstattliche Versicherung\n\nIch erkl\u00e4re hiermit, dass ich die vorliegende Arbeit selbstst\u00e4ndig und ohne Verwendung anderer als der angegebenen Hilfsmittel verfasst habe. Ich habe s\u00e4mtliche verwendeten Quellen erw\u00e4hnt und gem\u00e4\u00df den g\u00e4ngigen wissenschaftlichen Regeln zitiert. Die Arbeit hat in gleicher oder \u00e4hnlicher Form noch keiner anderen Pr\u00fcfungsbeh\u00f6rde vorgelegen. [IMAGE: . Hanpsi]\n\nKirchheim unter Teck, 30.06.2023\n\n## III\n\nDanksagung\n\n## Danksagung\n\nIch m\u00f6chte mich von ganzem Herzen bei allen Personen bedanken, die mich w\u00e4hrend meiner Bachelorarbeit unterst\u00fctzt haben, ohne die w\u00e4re diese Thesis nicht m\u00f6glich ge- wesen. Ein besonderer Dank geb\u00fchrt meinem externen Betreuer Thomas Heine von dem Inge- nieurb\u00fcro Heine+Jud in Stuttgart der mich tatkr\u00e4ftig unterst\u00fctzt hat und mit wertvollen Hinweisen bzw.", - "embedding": [ - 0.010092006996273994, - 0.013555415906012058, - -0.002199366223067045, - -0.037141840904951096, - -0.007462256588041782, - 0.02944236434996128, - -0.017608486115932465, - -0.005544165149331093, - -0.02048223465681076, - -0.031855229288339615, - 0.015100733377039433, - 0.011420438066124916, - -0.021078672260046005, - -0.00010812562686624005, - 0.024345528334379196, - -0.0054357219487428665, - 0.03836182877421379, - 0.01114933006465435, - 0.01717471145093441, - -0.0018503143219277263, - -0.021729331463575363, - 0.003944626078009605, - 0.0021129504311829805, - -0.0030872460920363665, - -0.017161156982183456, - -0.00347357545979321, - 0.03429520130157471, - -0.023017097264528275, - -0.002755138324573636, - 0.009963231161236763, - 0.00896012969315052, - -0.019601132720708847, - -0.013907857239246368, - 0.004419065546244383, - -0.018313366919755936, - -0.026907501742243767, - -0.02385753206908703, - -0.010031008161604404, - 0.035732075572013855, - 0.002053645672276616, - 0.022678211331367493, - 0.016008947044610977, - 0.013365640304982662, - -0.024250639602541924, - -0.007462256588041782, - 0.016076723113656044, - -0.0024789466988295317, - -0.007672365754842758, - -0.02365420199930668, - 0.020577121526002884, - 0.017608486115932465, - 0.004639341030269861, - -0.005601775832474232, - 0.004598674830049276, - 0.0005612789536826313, - 0.0026755002327263355, - 0.0017113713547587395, - 0.0169307142496109, - -0.001882508397102356, - -0.027558160945773125, - -0.011935544200241566, - 0.015209176577627659, - -0.03584051877260208, - 0.011135774664580822, - -0.019682465121150017, - -0.01065455749630928, - -0.011813545599579811, - -0.007584255188703537, - -0.00965823419392109, - -0.001779148355126381, - 0.006032160017639399, - 0.01247098296880722, - 0.007096260320395231, - 0.011122219264507294, - 0.029035702347755432, - 0.0018164258217439055, - 0.021891998127102852, - 0.016049612313508987, - -0.008777132257819176, - 0.0001339656300842762, - 0.0163071658462286, - -0.03215344622731209, - -0.01339952927082777, - 0.04034091904759407, - 0.028303708881139755, - -0.010078451596200466, - -0.007218258921056986, - 0.0034837420098483562, - -0.03597607463598251, - -0.011427216231822968, - 0.00112509960308671, - 0.03874137997627258, - 0.015127844177186489, - 0.004442787729203701, - 0.025619735941290855, - -0.018896250054240227, - -0.004991781897842884, - 0.010837554931640625, - -0.007862141355872154, - -0.04269956052303314, - -0.025484181940555573, - -0.01304708793759346, - -0.00832302588969469, - -0.00490367179736495, - -0.04183201491832733, - -0.01306742150336504, - -0.0014428045833483338, - 0.010851110331714153, - 0.012145653367042542, - -0.023098429664969444, - -0.03744005784392357, - 0.024928409606218338, - -0.002092617331072688, - 0.00440889922901988, - 0.018232034519314766, - -0.011264550499618053, - 0.03852449357509613, - 0.0029245810583233833, - 0.000496890745125711, - -0.028141044080257416, - 0.02898148074746132, - 0.01838114485144615, - 0.024128640070557594, - -0.0031872172839939594, - 0.03451209142804146, - 0.021200671792030334, - -0.0026145009323954582, - 0.004690174013376236, - -0.005676330532878637, - -0.01965535432100296, - -0.03819916397333145, - -0.003268549684435129, - 0.01488384697586298, - 0.0017435654299333692, - 0.008248470723628998, - 0.018814917653799057, - -0.005781385116279125, - -0.006794652435928583, - -0.020997339859604836, - -0.04332311078906059, - -0.010857888497412205, - 0.018259145319461823, - -0.04226578772068024, - -0.02766660414636135, - -0.017106935381889343, - 0.017228934913873672, - 0.013711303472518921, - 0.010702000930905342, - -0.016252944245934486, - -0.007252147886902094, - -0.030038801953196526, - -0.02456241473555565, - 0.024101529270410538, - 0.0008031583856791258, - -0.001231848495081067, - 0.0011894877534359694, - -0.007211481221020222, - 0.012396427802741528, - -0.021946219727396965, - -0.006618431769311428, - 0.014273853041231632, - 0.00590338371694088, - 0.014233186841011047, - -0.008939797058701515, - 0.012376095168292522, - 0.01038344856351614, - -0.0033786874264478683, - -0.009183794260025024, - -0.00023065388086251915, - -0.02637884020805359, - 0.0007252147770486772, - 0.013846857473254204, - -0.02427775040268898, - -0.001957063330337405, - -0.01572428271174431, - 0.004225900862365961, - 0.011616991832852364, - -0.0028364709578454494, - -0.0334547683596611, - -0.0309605710208416, - -0.014382296241819859, - 0.0012360844993963838, - 0.021661555394530296, - 0.01129166129976511, - -0.02237999252974987, - -0.00023171289649326354, - 0.02469796873629093, - 0.020170459523797035, - -0.014178965240716934, - -0.0005892370245419443, - 0.011969432234764099, - 0.016361387446522713, - -0.006096548400819302, - -0.01585983671247959, - -0.6107528209686279, - -0.003975125961005688, - -0.0007214022916741669, - 0.0071098157204687595, - -0.004951115697622299, - 0.026622837409377098, - 0.0033871596679091454, - 0.016862938180565834, - -0.01174576859921217, - 0.034701865166425705, - -0.001979090739041567, - 0.01646983064711094, - -0.01123066246509552, - -0.0018621752969920635, - -0.006753986235707998, - -0.003958181478083134, - -0.009387126192450523, - -0.0069674840196967125, - 0.031692564487457275, - -0.007265703286975622, - -0.030689463019371033, - 0.02361353486776352, - 0.0022654489148408175, - -0.0019672298803925514, - -0.005330667365342379, - 0.009197349660098553, - 0.029903247952461243, - -0.020861785858869553, - 0.011501770466566086, - 0.001990951830521226, - -0.0334547683596611, - 0.006282935384660959, - -0.02841215208172798, - 0.0163071658462286, - 0.04901638627052307, - 0.017567818984389305, - -0.013948523439466953, - 0.013989189639687538, - 0.03142145648598671, - 0.01965535432100296, - -0.01106799766421318, - -0.03231611102819443, - -0.00652354396879673, - -0.018787806853652, - 0.009983563795685768, - 0.012681092135608196, - 0.057908739894628525, - 0.004554620012640953, - 0.01577850431203842, - -0.034457869827747345, - -0.0029211922083050013, - 0.006242269184440374, - 0.0055306097492575645, - -0.007726587355136871, - 0.036518290638923645, - 0.0030838572420179844, - 0.036436960101127625, - -0.02411508560180664, - -0.018598031252622604, - 0.02010268159210682, - 0.015615839511156082, - 0.02576884627342224, - -0.007448701187968254, - -0.010458003729581833, - -0.03575918823480606, - 0.011840656399726868, - -0.019397800788283348, - -0.043079111725091934, - 0.030337020754814148, - 0.0017300100298598409, - -0.0010234338697046041, - 0.007211481221020222, - 0.007536811288446188, - 0.003765016794204712, - 0.04633241146802902, - 0.03299388289451599, - -0.0037040174938738346, - -0.0025263905990868807, - 0.006879373919218779, - 0.01759492978453636, - -0.005252723582088947, - 0.0021587000228464603, - 0.004425843246281147, - -0.003426131559535861, - 0.030255688354372978, - -0.03638273850083351, - -0.012477760203182697, - 0.0017300100298598409, - -0.011698324233293533, - 0.002594167832285166, - 0.02204110659658909, - 0.03733161464333534, - -0.01007167436182499, - -0.012098209001123905, - 0.005337445065379143, - 0.031069014221429825, - -0.003910737577825785, - 0.01998068392276764, - -0.00548994354903698, - -0.025484181940555573, - -0.020116237923502922, - -0.006791263353079557, - 0.005960994400084019, - -0.020048459991812706, - 0.033590320497751236, - 0.00531711196526885, - -0.002031618030741811, - 0.01428740844130516, - 0.015575173310935497, - -0.02385753206908703, - 0.012125319801270962, - -0.015290509909391403, - -0.030255688354372978, - 0.00023700797464698553, - -0.00594743900001049, - -0.03543385863304138, - 0.019641797989606857, - -0.004381788428872824, - 0.008221359923481941, - -0.01684938184916973, - 0.00391412666067481, - 0.002892386866733432, - 0.013745192438364029, - -0.0043275668285787106, - -0.017947370186448097, - 0.03017435595393181, - 0.010369893163442612, - -0.00887879729270935, - -0.012104986235499382, - 0.019018249586224556, - 0.020658453926444054, - 0.004744395613670349, - 0.03340054675936699, - -0.008560244925320148, - 0.013019977137446404, - 0.013182641938328743, - 0.02754460647702217, - -0.004368233028799295, - 0.007835030555725098, - -0.02294931933283806, - -0.01420607604086399, - 0.00581188453361392, - 0.009746343828737736, - -0.01953335478901863, - -0.004046291578561068, - -0.03274988383054733, - -0.024386193603277206, - 0.010417337529361248, - 0.003958181478083134, - 0.013121643103659153, - -0.008783909492194653, - -0.028466373682022095, - -0.02048223465681076, - 0.008946574293076992, - 0.005862717516720295, - -0.007794364355504513, - -0.03356321156024933, - -0.016008947044610977, - -0.0019655353389680386, - -0.013372418470680714, - 0.01969601958990097, - 0.021119339391589165, - -0.038578715175390244, - 0.010193672962486744, - -0.012647203169763088, - -0.01717471145093441, - 0.01931646838784218, - 0.017106935381889343, - -0.009468458592891693, - -0.030201466754078865, - 0.013365640304982662, - -0.019208025187253952, - 0.0011344188824295998, - 0.002595862140879035, - -0.01245064940303564, - -0.009787010960280895, - -0.0025060574989765882, - 0.007760475855320692, - -0.020861785858869553, - -0.006689597852528095, - 0.018110036849975586, - 0.010525780729949474, - -0.014666960574686527, - 0.008289136923849583, - 0.0255926251411438, - 0.020780453458428383, - 0.012836978770792484, - 0.028520595282316208, - -0.021498890593647957, - 0.025958621874451637, - -0.020468678325414658, - 0.01195587683469057, - -0.020699121057987213, - 0.01405696664005518, - -0.03901248797774315, - 0.017703372985124588, - -0.0027805548161268234, - 0.010661334730684757, - 0.005744107533246279, - 0.012938644737005234, - 0.021607333794236183, - -0.0011242523323744535, - 0.032885439693927765, - -0.004947727080434561, - 0.01511428877711296, - -0.013718081638216972, - 0.013114864937961102, - -0.029740583151578903, - 0.0495586022734642, - 0.008309470489621162, - 0.013080976903438568, - -0.003992069978266954, - -0.04475998505949974, - 0.005303556565195322, - 0.006892929319292307, - 0.04635952413082123, - -0.016456276178359985, - 0.013670637272298336, - -0.011379771865904331, - -0.022163106128573418, - 0.006564210169017315, - 0.001940118963830173, - 0.03952759504318237, - 0.0071572596207261086, - -0.015792060643434525, - 0.0007743531605228782, - 0.0016596912173554301, - 0.01413829904049635, - -0.003151634242385626, - -0.005655997432768345, - -0.013934968039393425, - 0.006581154651939869, - 0.01824559085071087, - 0.005266278982162476, - 0.0008243387565016747, - 0.014910957776010036, - 0.0010776555864140391, - -0.014775403775274754, - 0.054058998823165894, - -0.0016639273380860686, - 0.008390802890062332, - 0.016957825049757957, - 0.02151244506239891, - -0.0077401427552104, - 0.010844333097338676, - -0.01923513598740101, - 0.005188335664570332, - 0.023396648466587067, - -0.004937560297548771, - 0.0012242235243320465, - 0.0030872460920363665, - 0.013087754137814045, - -0.007502922788262367, - -0.02589084580540657, - 0.023586424067616463, - -0.01577850431203842, - 0.01937068998813629, - -0.004951115697622299, - 0.014951623976230621, - 0.00357185211032629, - 0.016198722645640373, - 0.02849348448216915, - 0.01824559085071087, - -0.030282799154520035, - -0.005215446464717388, - 0.005754274316132069, - -0.038416050374507904, - -0.006228713784366846, - -0.009929342195391655, - -0.02254265733063221, - 0.0030228577088564634, - -0.006394767668098211, - -0.0033888539765030146, - 0.0012547231744974852, - 0.0239524208009243, - -0.01057322509586811, - 0.014300963841378689, - 0.025457071140408516, - 0.012952200137078762, - 0.012003321200609207, - 0.0033007438760250807, - -0.029713472351431847, - -0.01808292604982853, - 0.015886947512626648, - -0.018394699320197105, - -0.014300963841378689, - -0.005872884299606085, - 0.017581375315785408, - -0.02906281314790249, - -0.011020553298294544, - -0.004164901562035084, - 0.01038344856351614, - -0.008655133657157421, - -0.005710219033062458, - 0.012186319567263126, - -0.003683684393763542, - 0.029903247952461243, - 0.012416761368513107, - 0.0009632817818783224, - 0.0023840588983148336, - 0.0006663334206677973, - -0.02572817914187908, - -0.029659250751137733, - -0.013650303706526756, - 0.029171256348490715, - 9.997119195759296e-05, - -0.019262246787548065, - -0.005103614181280136, - 0.009936120361089706, - -0.021769998595118523, - -0.009251571260392666, - 0.009034684859216213, - -0.005405222065746784, - 0.020211124792695045, - -0.010003897361457348, - 0.005245945882052183, - 0.012071098200976849, - -0.0013580832164734602, - 0.04673907533288002, - 0.028683260083198547, - -0.008417913690209389, - -0.014829625375568867, - -0.004832505714148283, - 0.022407103329896927, - 0.03378009796142578, - 0.03312943875789642, - -0.005144280381500721, - 0.020156903192400932, - 0.006005049217492342, - -0.028168154880404472, - 0.002336614765226841, - -0.02547062747180462, - 0.014558517374098301, - 0.01457207277417183, - 0.007801142055541277, - -0.006926817819476128, - 0.016984935849905014, - -0.011189996264874935, - -0.00014307317906059325, - -0.019248690456151962, - 0.005757662933319807, - 0.0004284782335162163, - 0.03410542756319046, - -0.013962078839540482, - -0.023681312799453735, - -0.006645543035119772, - -0.0169307142496109, - 0.025402849540114403, - 0.014897402375936508, - -0.01590050384402275, - 0.032641440629959106, - 0.02738194167613983, - 0.01832692325115204, - -0.02494196593761444, - -0.0019028414972126484, - 0.0342680923640728, - 0.013108087703585625, - 0.024508193135261536, - -0.025050409138202667, - -0.010363115929067135, - -0.007428368087857962, - 0.003958181478083134, - 0.004757951013743877, - 0.0018130369717255235, - 0.00347357545979321, - 0.029876137152314186, - 0.013019977137446404, - -0.017432264983654022, - 0.018069369718432426, - -0.011535659432411194, - 0.00025310504133813083, - 0.027178609743714333, - -0.003917515277862549, - -0.0037480725441128016, - 0.044326212257146835, - -0.03247877582907677, - -0.00694715091958642, - -0.01943846605718136, - 0.017323821783065796, - -0.019411355257034302, - 0.0021468389313668013, - -0.014084077440202236, - -0.013745192438364029, - 0.0009310876484960318, - 0.004046291578561068, - -0.035569410771131516, - 0.019018249586224556, - -0.010742667131125927, - -0.02464374713599682, - -0.03158412128686905, - -0.0421031229197979, - -0.013033532537519932, - -0.01854380965232849, - 0.00782825332134962, - -0.012457427568733692, - -0.018923360854387283, - -0.02646017260849476, - 0.0012606537202373147, - 0.024548858404159546, - -0.006320212967693806, - 0.00965823419392109, - -0.00437501072883606, - -0.004900283180177212, - 0.005815273616462946, - -0.02415575087070465, - -0.012850534170866013, - -0.011772879399359226, - -0.01747293211519718, - -0.008865241892635822, - 0.025484181940555573, - -0.01428740844130516, - 0.012260873802006245, - 0.013568971306085587, - -0.01511428877711296, - 0.01581917144358158, - -0.004124235361814499, - -0.003480353159829974, - 0.0005926258745603263, - 0.025443516671657562, - 0.0007692698854953051, - 0.021322669461369514, - 0.013514749705791473, - 0.012362539768218994, - -0.02778860367834568, - 0.011006997898221016, - -0.01846247725188732, - 0.004757951013743877, - 0.005042614880949259, - 0.017228934913873672, - 0.016158055514097214, - -0.001987562980502844, - 0.007679143454879522, - -0.012362539768218994, - 0.03212633728981018, - 0.003937848377972841, - -0.0035040751099586487, - -0.014029855839908123, - 0.0018757306970655918, - -0.01182710099965334, - 0.02881881408393383, - 0.00807225052267313, - 0.009366792626678944, - 0.027232831344008446, - -0.005015504080802202, - -0.02056356705725193, - -0.01354186050593853, - 0.04025958478450775, - 0.00477828411385417, - -0.0013733331579715014, - 0.04137112945318222, - -0.005791551433503628, - -0.0024738635402172804, - -0.027490384876728058, - -0.006537099368870258, - 0.00831624772399664, - 0.01709337905049324, - 0.010363115929067135, - -0.01903180405497551, - -0.027842825278639793, - -0.010288560763001442, - -0.007591032888740301, - 0.006953928619623184, - -0.00540861114859581, - -0.025985732674598694, - -0.03009302355349064, - 0.026324618607759476, - -0.0077401427552104, - 0.005330667365342379, - 0.013189420104026794, - -0.033346325159072876, - -0.025741735473275185, - 0.025375738739967346, - -0.01263364776968956, - 0.03109612502157688, - -0.0051103918813169, - -0.00021127387299202383, - -0.012247318401932716, - -0.009251571260392666, - -0.028764592483639717, - -0.03410542756319046, - -0.011698324233293533, - -0.004585119429975748, - 0.021282004192471504, - 0.011386550031602383, - 0.03491875156760216, - -0.007719809655100107, - 0.026771947741508484, - 0.01172543503344059, - -0.004974837880581617, - 0.007272480987012386, - -0.015710728242993355, - 0.005950827617198229, - -0.02589084580540657, - 0.03689784184098244, - 0.019994238391518593, - 0.023816866800189018, - 0.01428740844130516, - 0.007591032888740301, - 0.007875696755945683, - 0.03708761930465698, - -0.026189064607024193, - -0.013324974104762077, - -0.01046478096395731, - -0.03546096757054329, - -0.009346459060907364, - -0.010424114763736725, - 0.031611230224370956, - 0.015019400976598263, - -0.02036023512482643, - -0.0011505159782245755, - 0.015751393511891365, - -0.023355981335043907, - -0.006628598552197218, - 0.001346222241409123, - -0.0007790128001943231, - -0.05213413015007973, - 0.032099224627017975, - 0.012477760203182697, - -0.00021614534489344805, - -0.0007463950896635652, - -0.005679719615727663, - -0.019384244456887245, - -0.022569768130779266, - 0.01689004898071289, - -0.0067200977355241776, - 0.021498890593647957, - -0.01065455749630928, - -0.00043334971996955574, - 0.009116017259657383, - -0.013921412639319897, - 0.01554806251078844, - -0.017513597384095192, - 0.005496721249073744, - -0.015344731509685516, - -0.019912905991077423, - -0.017906704917550087, - -0.008045139722526073, - -0.023274648934602737, - 0.01937068998813629, - -0.014897402375936508, - -0.0025060574989765882, - 0.030499687418341637, - -0.00570683041587472, - -0.017242489382624626, - -0.017161156982183456, - 0.0015715811168774962, - 0.012545538134872913, - 0.011372994631528854, - 0.03451209142804146, - 0.032099224627017975, - -0.02534862793982029, - -0.026202619075775146, - -0.04280800372362137, - 0.014558517374098301, - -0.01668671704828739, - 0.016402052715420723, - -0.001733398879878223, - -0.037168949842453, - -0.007706254255026579, - 0.013704526238143444, - 0.023464426398277283, - -0.01238965056836605, - -0.008160360157489777, - 0.056498974561691284, - 0.03131301328539848, - -0.009353237226605415, - -0.022434214130043983, - 0.021458223462104797, - -0.0173373781144619, - -0.01323008630424738, - -0.014612738974392414, - 0.007069149520248175, - -0.01646983064711094, - -0.01339952927082777, - 0.00032787161762826145, - 0.03613873943686485, - 0.007536811288446188, - 0.033671654760837555, - 0.016374941915273666, - -0.03687073290348053, - 0.007387701887637377, - -0.023261094465851784, - -0.01646983064711094, - 0.017811816185712814, - -0.028005490079522133, - 0.029659250751137733, - -0.006052493117749691, - -0.019302912056446075, - 0.0132097527384758, - 0.009780232794582844, - -0.020821118727326393, - -0.019790908321738243, - 0.0012293067993596196, - 0.02336953766644001, - -0.021661555394530296, - 0.01224054116755724, - 0.013921412639319897, - 0.014829625375568867, - 0.009949675761163235, - -0.012592981569468975, - 0.0034498535096645355, - -0.01189487800002098, - 0.0063913785852491856, - -0.012850534170866013, - -0.00866868905723095, - 0.010336005128920078, - -0.005164613481611013, - -0.0013657081872224808, - -0.008763576857745647, - -0.02403375320136547, - 0.0163071658462286, - -0.01646983064711094, - 0.006045715417712927, - -0.03567785397171974, - -0.00755714438855648, - -0.0035854075103998184, - 0.005415388848632574, - 0.020577121526002884, - 0.0028415541164577007, - -0.026405951008200645, - 0.00260094553232193, - 0.041100021451711655, - -0.022989986464381218, - 0.009536235593259335, - 0.0163071658462286, - -0.0052595012821257114, - -0.01763559691607952, - 0.01519562117755413, - -0.0009717539069242775, - -0.004005625378340483, - 0.02484707720577717, - -0.0036599624436348677, - -0.017527153715491295, - -0.0026738059241324663, - -0.010180117562413216, - 0.019628243520855904, - -0.015805615112185478, - 0.0018553975969552994, - 0.012518427334725857, - 0.004432620946317911, - 0.011921988800168037, - -0.01148143783211708, - 0.004212345462292433, - 0.012376095168292522, - 0.01436874084174633, - -0.00914312805980444, - 0.008831353858113289, - -0.017852483317255974, - 0.023111984133720398, - 0.010939220897853374, - -0.0007311452645808458, - -0.008594133891165257, - -0.05476388335227966, - -0.018774252384901047, - 0.01840825565159321, - 0.008045139722526073, - -0.028629038482904434, - -0.009875120595097542, - -0.01800159364938736, - -0.016944270581007004, - -0.008533134125173092, - 0.003561685560271144, - 0.007882474921643734, - -0.0031160512007772923, - 0.014300963841378689, - -0.0010624057613313198, - 0.002190894214436412, - 0.022163106128573418, - 0.01387396827340126, - 0.0008378941565752029, - 0.02324753813445568, - 0.016361387446522713, - -0.04435332119464874, - 0.010308894328773022, - 0.0017452598549425602, - 0.029713472351431847, - -0.001480929204262793, - -0.023098429664969444, - -0.005940661299973726, - -0.005025670398026705, - -0.03134012222290039, - -0.013548638671636581, - -0.009197349660098553, - 0.002597556682303548, - 0.005672941915690899, - 0.01684938184916973, - -0.008675466291606426, - 0.03494586423039436, - 0.003961570560932159, - 0.02468441240489483, - -0.006933595519512892, - -0.013751969672739506, - -0.005493332631886005, - -0.01935713365674019, - 0.01668671704828739, - -0.020129792392253876, - -0.04272667318582535, - -0.023261094465851784, - 0.036599624902009964, - 0.011074774898588657, - -0.005828829016536474, - 0.030743684619665146, - 0.00025183422258123755, - -0.004646118730306625, - 0.005256112664937973, - 0.006123659200966358, - 0.0005701747140847147, - 0.0053238896653056145, - 0.01281664613634348, - -0.031069014221429825, - -0.02027890272438526, - 0.010993442498147488, - 0.006726875435560942, - -0.022230882197618484, - -0.020034905523061752, - 0.036192961037158966, - -0.011122219264507294, - 0.0036633512936532497, - 0.0036938509438186884, - -0.007306369487196207, - 0.002282393164932728, - -0.0014707626542076468, - 0.027558160945773125, - 0.010458003729581833, - -0.028927259147167206, - 0.008689021691679955, - 0.02435908280313015, - -0.0007307216292247176, - -0.01531762070953846, - -0.0011767796240746975, - -0.02976769395172596, - 0.016334276646375656, - 0.002195977373048663, - -0.03253299742937088, - 0.018354034051299095, - -0.004940949380397797, - 0.01565650664269924, - 0.004141179844737053, - -0.002606028690934181, - -0.03418675810098648, - -0.023830421268939972, - -0.03605740889906883, - 0.03299388289451599, - 0.01866580732166767, - -0.028710370883345604, - -0.018882695585489273, - -0.00623549148440361, - -0.01832692325115204, - -0.007835030555725098, - -0.01767626218497753, - 0.004388566128909588, - -0.04063913971185684, - -0.01618516631424427, - 0.013596082106232643, - -0.030608130618929863, - -0.011616991832852364, - 0.0017325516091659665, - -0.012660758569836617, - -0.035650745034217834, - -0.004659674130380154, - 0.19617398083209991, - -0.02659572660923004, - 0.00777403125539422, - -0.0060897707007825375, - -0.018936917185783386, - -0.019424911588430405, - 0.008038361556828022, - -0.009685344994068146, - -0.009014352224767208, - 0.027815714478492737, - 0.02286798693239689, - 0.011020553298294544, - -0.017445821315050125, - 0.009705677628517151, - 0.01846247725188732, - -0.001402138383127749, - -0.05866784229874611, - -0.014748292975127697, - -0.026229729875922203, - 0.0060897707007825375, - 0.03030990995466709, - -0.013352084904909134, - -0.006577765569090843, - -0.03432231396436691, - 0.03155700862407684, - 0.015209176577627659, - 0.004595286212861538, - 0.003768405644223094, - 0.019004693254828453, - 0.017866037786006927, - -0.02452174760401249, - -0.015602284111082554, - 0.013074198737740517, - -0.02282732166349888, - 0.0011996543034911156, - 0.013372418470680714, - 0.0018672585720196366, - -0.011318772099912167, - 0.017106935381889343, - 0.035325415432453156, - 0.012443872168660164, - -0.03524408116936684, - -0.025701068341732025, - -0.0338614284992218, - -0.0022722266148775816, - 0.02881881408393383, - -0.007841808721423149, - 0.005581442732363939, - 0.007916362956166267, - -0.001936730113811791, - -0.022393546998500824, - 0.004466509446501732, - 0.028439262881875038, - 0.04633241146802902, - 0.006770930252969265, - 0.0001908348494907841, - 0.017811816185712814, - -0.00561533123254776, - 0.00023340732150245458, - 0.005456055048853159, - -0.033915650099515915, - 0.01854380965232849, - -0.0136231929063797, - 0.013582526706159115, - -0.01655116304755211, - 0.0054831658490002155, - -0.013907857239246368, - -0.002133283531293273, - 0.01729671098291874, - -0.025402849540114403, - -0.009278682060539722, - -0.025280851870775223, - -0.0299303587526083, - 0.004361455328762531, - -0.037385836243629456, - -0.029550807550549507, - -0.0007663046126253903, - -0.00582205131649971, - 0.029740583151578903, - 0.02349153719842434, - 0.010214006528258324, - -0.006008438300341368, - 0.0004973143222741783, - -0.014897402375936508, - -0.021119339391589165, - -0.01638849824666977, - 0.010966331698000431, - 0.022718878462910652, - 0.011447548866271973, - -0.03245166689157486, - -0.019967127591371536, - -0.007001372519880533, - 0.0025179185904562473, - -0.0024738635402172804, - 0.001446193433366716, - -8.503905701218173e-05, - 0.012274429202079773, - 0.0007243675645440817, - -0.018191369250416756, - 0.008099361322820187, - -0.024969076737761497, - 0.045817308127880096, - 0.041886236518621445, - -0.015005845576524734, - -0.023342426866292953, - -0.005981327500194311, - -0.002143450081348419, - 0.0421031229197979, - -0.004381788428872824, - -0.024331972002983093, - -0.008783909492194653, - -0.018964027985930443, - 0.009434569627046585, - -0.009421014226973057, - 0.009881898760795593, - 0.012294762767851353, - -0.009109240025281906, - 0.013880746439099312, - 0.014544961974024773, - -0.008804243057966232, - -0.007150481920689344, - -0.009007574059069157, - 0.025402849540114403, - -0.016862938180565834, - 0.017771150916814804, - -0.025416405871510506, - -0.02452174760401249, - 0.013487638905644417, - -0.0031414676923304796, - -0.0017113713547587395, - 0.017744040116667747, - 0.0005875425995327532, - 0.024047307670116425, - -0.011189996264874935, - 0.01754070818424225, - -0.004602063912898302, - -0.022244438529014587, - -0.018598031252622604, - -0.015290509909391403, - 0.013257197104394436, - 0.015602284111082554, - 0.008824575692415237, - 0.007462256588041782, - -0.0027263329830020666, - 0.0019079248886555433, - -0.016198722645640373, - 0.00032215294777415693, - -0.010227561928331852, - -0.024006642401218414, - -0.040313806384801865, - -0.012681092135608196, - -0.009041463024914265, - -0.002494196640327573, - -0.01957402192056179, - 0.03212633728981018, - 0.010559669695794582, - -0.02320687286555767, - -0.03464764356613159, - 0.011874544434249401, - 0.010702000930905342, - -0.03950048238039017, - -0.01106799766421318, - 0.014178965240716934, - -0.007882474921643734, - -0.0041513461619615555, - -0.0038531271275132895, - -0.1725333333015442, - 0.019560465589165688, - 0.010295338928699493, - -0.012518427334725857, - 0.030608130618929863, - 0.011061219498515129, - 0.005479777231812477, - 0.011108663864433765, - -0.021498890593647957, - -0.0008340817294083536, - 0.012640425935387611, - -0.001130182878114283, - -0.03258721902966499, - -0.007665588054805994, - -0.011447548866271973, - -0.008756798692047596, - -0.020916007459163666, - 0.01013267319649458, - 0.019723130390048027, - 0.02233932539820671, - -0.006892929319292307, - -0.014043411239981651, - -0.0006769236060790718, - -0.002489113248884678, - 0.003468492068350315, - 0.014585628174245358, - -0.020428013056516647, - 0.029740583151578903, - -0.0023162816651165485, - -0.007455478888005018, - -0.018787806853652, - 0.008689021691679955, - 0.01577850431203842, - -0.011901655234396458, - -0.015304065309464931, - 0.007848585955798626, - -0.003161800792440772, - -0.021688666194677353, - -0.007299591787159443, - 0.030065912753343582, - 0.023965975269675255, - 0.03939203917980194, - -0.020794007927179337, - -0.011732213199138641, - -0.007672365754842758, - 0.013033532537519932, - 0.017893148586153984, - -0.011488215066492558, - -0.0017588152550160885, - -0.017188267782330513, - -0.009563346393406391, - -0.017893148586153984, - 0.0038565159775316715, - 0.02786993607878685, - -0.009814121760427952, - 0.010702000930905342, - 0.004276733845472336, - 0.023803310468792915, - -0.008838131092488766, - 0.008478912524878979, - -0.004612230230122805, - -0.00440889922901988, - 0.01792025938630104, - 0.0042936778627336025, - -0.00931257102638483, - -0.02052289992570877, - -0.009522680193185806, - 0.025280851870775223, - -0.00043419693247415125, - 0.0057000527158379555, - 0.0016325804172083735, - -0.020861785858869553, - -0.010539336130023003, - 0.0002226053475169465, - 0.007462256588041782, - 0.007197925820946693, - -0.015602284111082554, - 0.008004473522305489, - 0.010647779330611229, - -0.004381788428872824, - -0.019424911588430405, - 0.0363285169005394, - -0.0004157700459472835, - -0.02221732772886753, - -0.007997695356607437, - -0.013616415672004223, - -0.018842028453946114, - 0.019953573122620583, - 0.009976786561310291, - 0.001703746384009719, - 0.022529100999236107, - -0.034457869827747345, - -0.025375738739967346, - -0.030499687418341637, - -0.006706542335450649, - -0.006554043851792812, - -0.006269379984587431, - 0.013650303706526756, - -0.032424554228782654, - -0.002855109516531229, - 0.010702000930905342, - -0.020672010257840157, - -0.03719606250524521, - 0.014707626774907112, - 0.005147669464349747, - 0.008248470723628998, - -0.0330209955573082, - 0.021078672260046005, - 0.057908739894628525, - -0.022393546998500824, - -0.005727163515985012, - -0.010227561928331852, - 0.01783892698585987, - 0.015792060643434525, - 0.01121032889932394, - 0.0029889692086726427, - -0.011867767199873924, - -0.02254265733063221, - 0.030065912753343582, - 0.015995390713214874, - 0.04611552506685257, - -0.018842028453946114, - -0.006581154651939869, - 0.010525780729949474, - -0.017432264983654022, - -0.012748869135975838, - -0.09076707065105438, - -0.005791551433503628, - 0.019465576857328415, - 0.024169307202100754, - 0.004029347561299801, - 0.014680515974760056, - 0.0004430926637724042, - 0.012098209001123905, - 0.004629174713045359, - 0.03914804384112358, - -0.014558517374098301, - -0.024020196869969368, - -0.025524849072098732, - -0.008417913690209389, - 0.02101089432835579, - -0.01602250151336193, - 0.01065455749630928, - -0.02171577699482441, - -0.01935713365674019, - 0.02563329227268696, - -0.01820492371916771, - -0.0014665266498923302, - 0.004361455328762531, - 0.007591032888740301, - -0.016374941915273666, - 0.0018130369717255235, - -0.03781961277127266, - 0.028629038482904434, - 0.026107732206583023, - -0.011325550265610218, - 0.018476031720638275, - -0.014246742241084576, - 0.004856227897107601, - -0.010546114295721054, - -0.0011928766034543514, - -0.007604588288813829, - -0.021932663396000862, - -0.016673162579536438, - 0.037792500108480453, - -0.02919836714863777, - 0.0029330532997846603, - 0.014829625375568867, - 0.01701204665005207, - -0.01015978492796421, - -0.00854668952524662, - -0.025362184271216393, - 0.0013953606830909848, - 0.020536456257104874, - 0.009055018424987793, - -0.012606536969542503, - -0.029984580352902412, - -0.04034091904759407, - -0.010830777697265148, - 0.009834454394876957, - 0.04557330906391144, - -0.007699476554989815, - 0.0012674314202740788, - 0.012152430601418018, - -0.01838114485144615, - 0.0008811020525172353, - -0.01007167436182499, - 0.010857888497412205, - -0.03418675810098648, - 0.016673162579536438, - 0.010207228362560272, - -0.012687869369983673, - -0.020034905523061752, - -0.01866580732166767, - 0.017581375315785408, - -0.009976786561310291, - -0.02506396546959877, - -0.0026704170741140842, - -0.00765881035476923, - 0.002438280498608947, - -0.034213870763778687, - 0.006147381383925676, - -0.03830760717391968, - -0.030147245153784752, - 0.017432264983654022, - -0.00039903755532577634, - -0.021566666662693024, - -0.029496585950255394, - 0.020414456725120544, - -0.009678566828370094, - 0.023830421268939972, - 0.030933460220694542, - -0.019926462322473526, - -0.007875696755945683, - 0.018435366451740265, - -0.011610213667154312, - -0.008248470723628998, - 0.022474879398941994, - 0.027409052476286888, - 0.008221359923481941, - -0.027517495676875114, - 0.004737617913633585, - -0.01496517937630415, - 0.011027331463992596, - 0.00632699066773057, - 0.003260077675804496, - -0.019099581986665726, - -0.005571275949478149, - -0.0672890841960907, - 0.029632139950990677, - 0.02494196593761444, - 0.003363437717780471, - -0.026785502210259438, - -0.007211481221020222, - 0.006747208535671234, - 0.019018249586224556, - 0.019519798457622528, - 0.004442787729203701, - 0.0035413524601608515, - 0.012274429202079773, - -0.007855364121496677, - -0.004696951713413, - -0.028249487280845642, - -0.026744836941361427, - 0.010017452761530876, - 0.024535303935408592, - 0.01634783111512661, - 0.014951623976230621, - 0.002589084440842271, - 0.008872020058333874, - 0.004486842546612024, - 0.03204500302672386, - -0.03535252436995506, - -0.003954792860895395, - 0.0020282291807234287, - -0.00528322346508503, - -0.007577477488666773, - -0.009007574059069157, - 0.004530897829681635, - -0.016618940979242325, - -0.008248470723628998, - 0.013040310703217983, - -0.021105783060193062, - -0.011054442264139652, - 0.02601284347474575, - 0.028330819681286812, - 0.01032244972884655, - 0.04850127920508385, - -0.009915786795318127, - -0.028141044080257416, - 0.014436517842113972, - -0.019262246787548065, - -0.004161512944847345, - 0.010336005128920078, - 0.02774793654680252, - 0.011467882432043552, - 0.019180914387106895, - 0.00949556939303875, - 0.030065912753343582, - 0.022325770929455757, - 0.015182065777480602, - -0.0198180191218853, - 0.020306013524532318, - 0.006530321668833494, - 0.022163106128573418, - 0.009021129459142685, - 0.007536811288446188, - -0.025036854669451714, - 0.032804105430841446, - -0.004727451596409082, - 0.010044563561677933, - -0.018055815249681473, - 0.013704526238143444, - -0.008987241424620152, - -0.03752139210700989, - -0.00582205131649971, - 0.0026771947741508484, - -0.0163071658462286, - -0.005184946581721306, - -0.009922564961016178, - 0.007719809655100107, - 0.04313333332538605, - -0.007577477488666773, - -0.004337733145803213, - -0.008079027757048607, - -0.0021671722643077374, - -0.01007167436182499, - 0.01927580125629902, - 0.018720028921961784, - 0.001505498425103724, - -0.002251893514767289, - -0.004520731512457132, - 0.02597217820584774, - 0.0033990205265581608, - -0.030770795419812202, - 0.01245064940303564, - 0.01824559085071087, - 0.017039157450199127, - -0.018923360854387283, - 0.021769998595118523, - 0.0005523831932805479, - 0.012118542566895485, - 0.027192164212465286, - 0.012789535336196423, - -0.00799091812223196, - -0.03125879168510437, - 0.04570886492729187, - 0.02316620573401451, - 0.0015046511543914676, - 0.007075927220284939, - 0.007624921854585409, - -0.026826169341802597, - -0.014273853041231632, - 0.01598183624446392, - -0.011549214832484722, - -0.023179762065410614, - 0.010098785161972046, - 0.027734382078051567, - 0.010180117562413216, - -0.006848874036222696, - -0.01463984977453947, - 0.013108087703585625, - -0.02857481688261032, - 0.0072318147867918015, - -0.014870291575789452, - -0.01754070818424225, - -0.03269566223025322, - 0.037304505705833435, - 0.02391175366938114, - 0.00813324935734272, - -0.00590338371694088, - 0.004920616280287504, - 0.01504651177674532, - 0.012979310937225819, - 0.012952200137078762, - -0.00805191695690155, - 0.0017486487049609423, - -0.020577121526002884, - 0.0008217971189878881, - 0.011223884299397469, - -0.028845924884080887, - -0.02720572054386139, - -0.004422454629093409, - 0.0034278258681297302, - 0.02633817307651043, - 0.0017910093301907182, - 0.00269922218285501, - 0.11831167340278625, - 0.019330022856593132, - -0.015710728242993355, - 0.030147245153784752, - -0.00046257858048193157, - 0.005608553532510996, - 0.015290509909391403, - 0.004795228596776724, - 0.023274648934602737, - -0.039283595979213715, - -0.009651456028223038, - -0.005439110565930605, - 0.006760763935744762, - -0.03163834288716316, - -0.012260873802006245, - 0.010519002564251423, - 0.014395851641893387, - 0.00782147515565157, - -0.00831624772399664, - -0.0031414676923304796, - 0.005459443666040897, - -0.00722503662109375, - 0.017567818984389305, - 0.031123235821723938, - -0.02633817307651043, - -0.018096480518579483, - 0.015710728242993355, - 0.004422454629093409, - -0.01449074037373066, - -0.02378975600004196, - 0.004361455328762531, - 0.008675466291606426, - -0.05194435641169548, - -0.03234322369098663, - 0.025280851870775223, - -0.018191369250416756, - -0.004832505714148283, - -0.020631343126296997, - 0.016835827380418777, - 0.00997000839561224, - -0.006269379984587431, - 0.01824559085071087, - -0.017147600650787354, - -0.02345087006688118, - 0.005588220432400703, - -0.0008044292335398495, - -0.028222376480698586, - -0.005205279681831598, - -0.01594116911292076 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 0, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 737 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000001.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000001.json deleted file mode 100644 index 885026c61735ab96aed7a4a7c34c01276cc6839e..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000001.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000001", - "content": "Hanpsi]\n\nKirchheim unter Teck, 30.06.2023\n\n## III\n\nDanksagung\n\n## Danksagung\n\nIch m\u00f6chte mich von ganzem Herzen bei allen Personen bedanken, die mich w\u00e4hrend meiner Bachelorarbeit unterst\u00fctzt haben, ohne die w\u00e4re diese Thesis nicht m\u00f6glich ge- wesen. Ein besonderer Dank geb\u00fchrt meinem externen Betreuer Thomas Heine von dem Inge- nieurb\u00fcro Heine+Jud in Stuttgart der mich tatkr\u00e4ftig unterst\u00fctzt hat und mit wertvollen Hinweisen bzw. Anregungen erfolgreich unterst\u00fctzt hat. Ich bedanke mich herzlichst f\u00fcr die Zeit die man f\u00fcr mich genommen hat, um meine Thesis zu lesen und zu kommentie- ren. Ebenfalls dank ich meinem Betreuer Prof. Dr. Karl Georg Degen von der Hochschule der Technik in Stuttgart, der mich ebenfalls unterst\u00fctzt hat und mir Hinweise und Anre- gungen gab. Die konstruktive Kritik und Hilfestelllungen haben mir geholfen, meine Ar- beit und mein Repertoire zu erweitern und zu verbessern. Ein weiterer gro\u00dfer Dank geht an alle meine Arbeitskollegen von Heine+Jud und meinem zweiten Chef Axel Jud, die mich w\u00e4hrend dieser herausfordernden Zeit motiviert und ermutigt haben. Ich bedanke mich zudem besonders an meine Messgehilfen Tobias Gassner, Christian Reutter, Sebastian Gerner und Lena Robert, die mich bei meinen Mes- sungen tatkr\u00e4ftig unterst\u00fctzt haben. Ebenfalls geht auch ein Dank raus an meine Familie und meinem Freund, die mir mora- lischen Halt gegeben haben und mich immer motiviert haben, meine beste Leistung vor- zulegen und nie aufzugeben. Hervorgehoben bedanke ich mich bei meinen Eltern die mir mein Studium durch ihre Unterst\u00fctzung erm\u00f6glicht haben und fortw\u00e4hrend ein of- fenes Ohr f\u00fcr mich hatten. Schlie\u00dflich m\u00f6chte ich mich auch bei meinen Kommilitonen und Mitstudierenden be- danken, die mich w\u00e4hrend meines Studiums inspiriert und unterst\u00fctzt haben. Ich bin dankbar f\u00fcr die wunderbaren Erinnerungen und Freundschaften, die ich w\u00e4hrend dieser Zeit gekn\u00fcpft habe. Noch einmal vielen herzlichen Dank an alle, die mir geholfen haben, mein Bachelorstu- dium abzuschlie\u00dfen. Eure Unterst\u00fctzung und Ermutigung haben mir sehr geholfen, diese Arbeit erfolgreich und ohne Einb\u00fc\u00dfe abzuschlie\u00dfen. ## IV\n\nInhaltsverzeichnis\n\n## Inhaltsverzeichnis\n\n\n| Kurzfassung | .................................................................................................................. | I | Eidesstattliche | Versicherung | ....................................................................................... | III | Danksagung | ................................................................................................................ | IV | Inhaltsverzeichnis | ........................................................................................................ | 1 | 1 | Einleitung | ......................................................................................................... | 3 | 2 | Grundlagen | ...................................................................................................... | 6 | 2.1 | Logistik | ....................................................................................................................... | 6 | 2.2 | Ermittlung | der | akustischen | Kenngr\u00f6\u00dfen | ................................................................... | 9 | 2.3 | Statistik | .................................................................................................................... | 21 | 3 | Aktuelle | Prognosegrundlage | ............................................................................24 | 3.1 | Schallimmissionsprognosen | f\u00fcr | Gewerbe | \u2013 | Technischer | Bericht | des | HLUG | ........... | 24 | 3.2 | Be- | und | Entladevorg\u00e4ngen | mit | Palettenhubwagen | und | beladener | Palette | bei | Lkw | in | Logistikzentren | ..................................................................................................... | 27 | 3.3 | Ger\u00e4uschemissionen | durch | Ladevorg\u00e4nge | in | Ladezonen | von | Discountern | ............ | 28 | 3.4 | Fazit | .......................................................................................................................... | 30 | 4 | Beschreibung | des | Betriebs | und | Untersuchungsobjekte | .....................................31 | 4.1 | Beschreibung | des | Betriebs | ...................................................................................... | 31 | 4.2 | Beschreibung | der | Untersuchungsobjekte | ............................................................... | 33 | 5 | Beschreibung | der | Untersuchungsmethodik | ......................................................38 | 5.1 | Prozessablauf | der | untersuchten | Verladet\u00e4tigkeit | ................................................... | 38 | 5.2 | Messequipment | und | Messaufbau | ........................................................................... | 39 | 5.3 | Vorgehensweise | bei | der | Messwerterfassung | .......................................................... | 41 | 5.4 | Messpositionen | ........................................................................................................ | 44 | 6 | Messauswertung | und | Statistik | .........................................................................46 | 6.1 | Verladeger\u00e4usche | .................................................................................................... | 46 | 6.2 | Statistik | .................................................................................................................... | 48 | 6.3 | Modellierung | der | Messsituation | ............................................................................. | 50 | 6.4 | Richtcharakteristik | ................................................................................................... | 51 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n6.5\nValidierung ............................................................................................................... 55\n1\nInhaltsverzeichnis\n\n| 7 | Ergebnisse | und | Interpretation | ..........................................................................56 | 7.1 | Verladeger\u00e4usche | .................................................................................................... | 56 | 7.2 | Statistik | .................................................................................................................... | 60 | 7.3 | Richtcharakteristik | ................................................................................................... | 66 | 7.4 | Validierung | ............................................................................................................... | 68 | 7.5 | M\u00f6gliche | Minderungsma\u00dfnahmen | ......................................................................... | 70 | 7.6 | Fehlerdiskussion | ...................................................................................................... | 72 | 8 | Abschlie\u00dfende | Bewertung | und | Ausblick | ...........................................................75 | 9 | Literatur | ............................................................................................................ | I | Formelverzeichnis | ..................................................................................................... | VIII | Abbildungsverzeichnis | ................................................................................................ | IX | Tabellenverzeichnis | ..................................................................................................... | X | Diagrammverzeichnis | .................................................................................................. | XI | Anh\u00e4nge | .................................................................................................................... | XII | Anhang | 1: | Emissionsdatenbl\u00e4tter | ........................................................................................ | XII | Anhang | 2: | Lagepl\u00e4ne | ........................................................................................................... | XIX | Anhang | 3: | Messprotokolle | ................................................................................................. | XXII | Anhang | 4: | Messergebnisse | der | Beladevorg\u00e4nge | ............................................................. | XXIV | Anhang | 5: | Rechenmodell | SoundPlan | 9.0 | \u2013 | Gabelhubwagen | 27.04.23 | ............................. | XLIII |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nAnhang 6: Rechenmodell SoundPlan 9.0 \u2013 Gabelstapler 03.05.2023 ............................... XLVI\n2\n1 Einleitung\n\n## 1 Einleitung\n\nLaute Kl\u00e4nge und T\u00f6ne, wie etwa lautes Geschrei oder ein donnerndes Ger\u00e4usch, wer-\nden von uns als st\u00f6rend oder bedrohlich wahrgenommen und werden auch als L\u00e4rm bezeichnet. Diese k\u00f6nnen sich negativ auf unser k\u00f6rperliches, seelischen und unser so- ziales Wohlbefinden auswirken. [1] Durch die ermittelte L\u00e4rmbelastung k\u00f6nnen Schluss- folgerungen \u00fcber die Bel\u00e4stigung gezogen und somit Menschen vor sch\u00e4dlichem und st\u00f6rendem L\u00e4rm gesch\u00fctzt werden. L\u00e4rm kann an verschieden Orten auftreten und da- her unterscheidet man in der Gesetzgebung nach Stra\u00dfen-, Schienen-, Flug-, Gewerbe-, Bau-, Freizeit- und Sportl\u00e4rm. Hinter jeder dieser Verursacher steht eine spezifische Ge- setzgebung mit beigeordneten Regelungen und Zust\u00e4ndigkeiten. Um einen pr\u00e4ventiven Schallschutz zu gew\u00e4hrleisten und ein angenehmes akustisches Stadtklima zu erreichen, ist der Schallimmissionsschutz von gro\u00dfer Bedeutung. Ziel ist es, alle st\u00f6renden Ger\u00e4u- sche zu reduzieren, besonders in Bereichen mit zunehmender Mobilit\u00e4t und Warenver- kehr. [2] Der stetig wachsende Wohnraummangel zwingt die Wohnbebauung n\u00e4her an Stra\u00dfen- und Schienenwege, sowie n\u00e4her an das Gewerbe. [3] Dadurch w\u00e4chst das Po- tential von dem daraus entstehenden L\u00e4rm bel\u00e4stigt zu werden. Gem\u00e4\u00df einer Umfrage aus dem Jahr 2020 des Bundesministeriums f\u00fcr Umwelt, Naturschutz, nukleare Sicher- heit und Verbraucherschutz, empfinden 51 % der Bev\u00f6lkerung in Deutschland eine Be-\nl\u00e4stigung durch L\u00e4rm aus Industrie-/Gewerbel\u00e4rm (siehe Abbildung 1). [4]\n\n[IMAGE: Bel\u00e4stigung durch einzelne L\u00e4rmquellen 2020 Frage: Wenn Sie einmal an die letzten 12 Monate hier bei Ihnen denken, wie stark haben Sie sich pers\u00f6nlich durch den L\u00e4rm von.", - "embedding": [ - 0.004290768411010504, - 0.020817317068576813, - -0.004165442194789648, - -0.04952358081936836, - 0.000508312601596117, - 0.03770335391163826, - -0.015738314017653465, - 0.005323059391230345, - -0.011180403642356396, - -0.019484903663396835, - 0.014287170022726059, - -0.010481216013431549, - -0.024036217480897903, - -0.0068467603996396065, - 0.011285941116511822, - -0.0028280813712626696, - 0.053771473467350006, - 0.0015542079927399755, - 0.020210474729537964, - 0.0017727040685713291, - -0.028310496360063553, - -0.0063256677240133286, - 0.015500854700803757, - 0.01693880558013916, - -0.008522171527147293, - 0.00041143226553685963, - 0.03551344573497772, - -0.027255119755864143, - -0.011345306411385536, - 0.0017990885535255075, - 0.009155398234724998, - -0.014062902890145779, - -0.00965010654181242, - 0.004472161177545786, - -0.023033609613776207, - -0.02528947964310646, - -0.01588342897593975, - 0.0012507870560511947, - 0.04218870773911476, - 0.0020695289131253958, - -9.481905726715922e-05, - 0.0010471321875229478, - 0.006701645907014608, - -0.025131171569228172, - -0.008858573623001575, - 0.016397925093770027, - 0.009907354600727558, - -0.012585374526679516, - -0.019695978611707687, - 0.013027314096689224, - 0.032347314059734344, - 0.011312325485050678, - -0.010982519946992397, - -0.001270575332455337, - -0.006355350371450186, - 0.01664857752621174, - -0.008917937986552715, - 0.03648966923356056, - -0.01645069383084774, - -0.025988666340708733, - -0.010441639460623264, - -0.009432435035705566, - -0.03799358382821083, - 0.019814709201455116, - -0.012347914278507233, - -0.011965340003371239, - -0.028838185593485832, - 0.002450454281643033, - -0.01056696567684412, - 0.00854855589568615, - 0.01480166707187891, - 0.015619584359228611, - 0.01670134626328945, - 0.0045381225645542145, - 0.026212934404611588, - -0.006629088893532753, - 0.01480166707187891, - -0.018455911427736282, - 0.00568914320319891, - -0.005807873327285051, - 0.02003897726535797, - -0.028442418202757835, - -0.014735706150531769, - 0.030104637145996094, - 0.041951246559619904, - 0.009056456387043, - -0.006866548676043749, - 0.006912721320986748, - -0.03295415639877319, - -0.023152340203523636, - -0.0023482146207243204, - 0.03145024552941322, - -0.002387791173532605, - 0.014089287258684635, - 0.02284891903400421, - 0.006734626367688179, - -0.01824483461678028, - 0.006685155909508467, - 0.008007675409317017, - -0.024867327883839607, - -0.014590591192245483, - -0.020012592896819115, - -0.0014758792240172625, - 0.002267412142828107, - -0.03912811353802681, - -0.00547806778922677, - 0.0012474890099838376, - 0.011655323207378387, - 0.005943093448877335, - -0.009643509984016418, - -0.032795850187540054, - 0.04577698931097984, - -0.020421551540493965, - -0.031291939318180084, - 0.025474170222878456, - -0.034748297184705734, - 0.026661468669772148, - -0.00011522576824063435, - 0.010078852996230125, - -0.01678049936890602, - 0.029919946566224098, - 0.028125805780291557, - 0.01427397783845663, - -0.010316313244402409, - 0.038178276270627975, - 0.01947171241044998, - -0.0032353911083191633, - -0.006685155909508467, - -0.01229514554142952, - -0.009960123337805271, - -0.019392557442188263, - 0.0005182067397981882, - 0.025685245171189308, - 0.008357268758118153, - -0.00673792464658618, - 0.015171049162745476, - -0.021595658734440804, - 0.003149641677737236, - -0.0173081886023283, - -0.03854765743017197, - 0.0004984184051863849, - 0.010072257369756699, - -0.025197133421897888, - -0.032347314059734344, - -0.0019969716668128967, - 0.02650316245853901, - 0.020870085805654526, - 0.01144424732774496, - -0.0003601062926463783, - -0.002691212110221386, - -0.022096961736679077, - -0.015527239069342613, - 0.012941564433276653, - -0.001684481161646545, - 0.0012277006171643734, - -0.010131622664630413, - -0.018112912774086, - -0.0013027313398197293, - -0.005121877882629633, - -0.01461697556078434, - 0.026437202468514442, - -0.0021387881133705378, - 0.026028243824839592, - 0.008126405067741871, - 0.019841093569993973, - 0.012387490831315517, - 0.003400293877348304, - 0.0018172278068959713, - -0.006559829693287611, - -0.016767306253314018, - 0.004673342686146498, - 0.025500554591417313, - -0.006421311292797327, - 0.0014940184773877263, - -0.033006925135850906, - 0.011905975639820099, - 0.027149582281708717, - 0.01608131267130375, - -0.017110304906964302, - -0.014498245902359486, - -0.01404971070587635, - 0.01238089520484209, - 0.012150031514465809, - 0.016740921884775162, - -0.021450543776154518, - 0.0191419068723917, - 0.02170119620859623, - 0.016872845590114594, - -0.003403591923415661, - -0.005725421942770481, - 0.02960333414375782, - 0.021067969501018524, - 0.0015286480775102973, - -0.02650316245853901, - -0.640825092792511, - 0.0022443258203566074, - 0.005092195700854063, - 0.017281804233789444, - 0.020593049004673958, - 0.01897040754556656, - 0.003472850890830159, - 0.007855964824557304, - -0.01543489284813404, - 0.048916738480329514, - -0.014907204546034336, - -0.006991874892264605, - -0.0035124276764690876, - -0.007908733561635017, - -0.020329205319285393, - -0.012499624863266945, - -0.019603634253144264, - -0.013799058273434639, - 0.00899709202349186, - -0.005616586189717054, - -0.012347914278507233, - 0.016674961894750595, - 0.00873324740678072, - -0.009880970232188702, - -0.001437127124518156, - 0.02817857451736927, - 0.019352981820702553, - -0.029497796669602394, - 0.01038227416574955, - 0.015395316295325756, - -0.034062303602695465, - 0.0012062633177265525, - -0.03400953486561775, - 0.021806733682751656, - 0.056093305349349976, - 0.0144586693495512, - -0.017730338498950005, - 0.02324468456208706, - 0.002631847281008959, - 0.01398374978452921, - -0.015764698386192322, - -0.018350373953580856, - 0.0014470212627202272, - -0.009016879834234715, - 0.012499624863266945, - 0.014762090519070625, - 0.044932689517736435, - 0.002079423051327467, - 0.0019277125829830766, - -0.014076095074415207, - -0.0022608160506933928, - -0.009326896630227566, - 0.009102629497647285, - 0.00163171230815351, - 0.02023686096072197, - 0.0023234791588038206, - 0.014247593469917774, - -0.021120738238096237, - 0.0021255959291011095, - 0.008317692205309868, - 0.0075327553786337376, - 0.012024705298244953, - 0.013192216865718365, - -0.014194824732840061, - -0.03844211995601654, - 0.0026747218798846006, - -0.029999099671840668, - -0.032795850187540054, - 0.04174017161130905, - -0.009749048389494419, - -0.008541960269212723, - 0.007803196087479591, - -0.014142055995762348, - -0.015817467123270035, - 0.043956466019153595, - 0.015566815622150898, - 0.0013538511702790856, - -0.007545948028564453, - 0.0007519563660025597, - 0.019841093569993973, - -0.009392858482897282, - -0.019643209874629974, - -0.008053848519921303, - -7.5649113568943e-05, - 0.03896980732679367, - -0.04039456695318222, - -0.01918148249387741, - -0.013508829288184643, - -0.024854136630892754, - 0.0050658113323152065, - 0.012169819325208664, - 0.022255269810557365, - -0.0010314664104953408, - 0.00798129104077816, - 0.006718136370182037, - 0.030605942010879517, - 0.009096032939851284, - 0.02369322068989277, - -0.015685545280575752, - -0.03195154666900635, - -0.01633196324110031, - -0.014828051440417767, - 0.014814859256148338, - -0.017176266759634018, - 0.01900998316705227, - -0.007611908949911594, - -0.016714537516236305, - 0.01873294822871685, - 0.03580367565155029, - -0.01046142727136612, - 0.004119269549846649, - -0.006032140925526619, - -0.024286869913339615, - -0.0009531376417726278, - 0.01726861111819744, - -0.026978082954883575, - 0.033613767474889755, - 0.00412256782874465, - 0.011140827089548111, - -0.012044494040310383, - 0.0018370161997154355, - 0.019352981820702553, - 0.015593199990689754, - -0.012697508558630943, - 0.00045224567293189466, - 0.02181992679834366, - 0.014603783376514912, - -0.0007016609888523817, - -0.01869337074458599, - 0.02292807213962078, - 0.03651605546474457, - -0.0001385182695230469, - 0.01848229579627514, - 0.001345606055110693, - 0.012565585784614086, - -0.003225496970117092, - 0.027307888492941856, - -0.011661919765174389, - 0.00789554137736559, - -0.03358738496899605, - -0.009188379161059856, - 0.00210250960662961, - 0.017849069088697433, - -0.013159235939383507, - -0.004181932657957077, - -0.021476928144693375, - -0.023271068930625916, - 0.0037762720603495836, - 0.015105088241398335, - 0.01356159895658493, - 0.0023630557116121054, - -0.011206788010895252, - -0.0009333493071608245, - 0.019498096778988838, - 0.02597547508776188, - -0.01188618689775467, - -0.022281654179096222, - -0.011173807084560394, - -0.0030853296630084515, - -0.0069852788001298904, - 0.0191419068723917, - 0.031001709401607513, - -0.02419452555477619, - 0.01219620369374752, - -0.01689922995865345, - -0.017862260341644287, - 0.01237429864704609, - 0.016767306253314018, - -0.011351902037858963, - -0.03648966923356056, - 0.01164872758090496, - -0.008034059777855873, - 0.002155278343707323, - 0.01103528868407011, - 0.005006446037441492, - -0.005738614127039909, - 0.0011271099792793393, - -0.008845381438732147, - -0.03440530225634575, - 0.007077624090015888, - 0.010078852996230125, - -0.010632926598191261, - -0.004976763855665922, - 0.012347914278507233, - 0.02329745516180992, - 0.02068539522588253, - 0.025381824001669884, - 0.011325517669320107, - 0.009379666298627853, - 0.027281504124403, - -0.00040421774610877037, - 0.004010433796793222, - -0.020909663289785385, - 0.002440560143440962, - -0.024247294291853905, - 0.0067610107362270355, - -0.013033909723162651, - -0.0004341063613537699, - -0.0005351092549972236, - 0.02316553145647049, - 0.028574340045452118, - 0.012097262777388096, - 0.028811801224946976, - -0.013878211379051208, - 0.01398374978452921, - -0.03590921312570572, - 0.013522021472454071, - -0.01701795868575573, - 0.04699067398905754, - 0.008832189254462719, - 0.009504991583526134, - -0.00806044414639473, - -0.050262343138456345, - -0.001860102522186935, - 0.0077570234425365925, - 0.047782208770513535, - -0.006919317413121462, - 0.0005309866974130273, - -0.008047251962125301, - -0.0011337060714140534, - 0.009821604937314987, - -0.006635684985667467, - 0.025223517790436745, - 0.003868617583066225, - -0.0017595118843019009, - 0.0013901297934353352, - 0.02039516717195511, - 0.02226846106350422, - -0.004221509210765362, - -0.006483974400907755, - -0.011015500873327255, - 0.0136407520622015, - 0.007974694482982159, - 0.012420471757650375, - 0.0019524480449035764, - 0.015936197713017464, - 0.012710700742900372, - -0.029867177829146385, - 0.056409917771816254, - 0.0077570234425365925, - 0.005135070066899061, - 0.01930021308362484, - -4.377651566755958e-05, - -0.0019029772374778986, - 0.02474859729409218, - -0.015421700663864613, - 0.010758252814412117, - 0.028363265097141266, - -0.003594879060983658, - 0.00706443190574646, - -0.015184241347014904, - 0.02328426204621792, - -0.01945851929485798, - -0.01685965247452259, - 0.024986058473587036, - -0.02862711064517498, - 0.013508829288184643, - 0.005389020312577486, - 0.026938505470752716, - 0.019445326179265976, - 0.014762090519070625, - 0.0205666646361351, - 0.012506221421062946, - -0.0191419068723917, - 0.0023069889284670353, - 0.01889125443994999, - -0.04287470504641533, - -0.0012837675167247653, - -0.024774981662631035, - -0.014089287258684635, - -0.0022228884045034647, - -0.007110604550689459, - -0.011569573543965816, - 0.003274967661127448, - 0.037360355257987976, - -0.013462657108902931, - 0.01062633004039526, - 0.03195154666900635, - 0.012420471757650375, - 0.010177794843912125, - -0.00380265642888844, - -0.029365872964262962, - -0.01528977882117033, - 0.013601175509393215, - -0.018680177628993988, - 0.007163373753428459, - -0.006018948741257191, - 0.019880671054124832, - -0.02870626375079155, - -0.01637154072523117, - -0.019761940464377403, - -0.004544718656688929, - -0.0035520042292773724, - -0.004772284533828497, - 0.005319761112332344, - 0.0028528168331831694, - 0.02569843828678131, - -0.002920426893979311, - -0.005336251575499773, - 0.011437651701271534, - 0.005992564372718334, - -0.014287170022726059, - -0.02109435386955738, - -0.0099799120798707, - 0.011477228254079819, - -0.009920546784996986, - -0.004455671180039644, - -0.013284562155604362, - 0.0008302851347252727, - -0.0017891944153234363, - 0.006520253140479326, - 0.006236620247364044, - -0.004059904720634222, - 0.015857044607400894, - 0.006124486681073904, - 0.008865169249475002, - -0.0054318951442837715, - 0.003654243890196085, - 0.04453692212700844, - 0.0071435850113630295, - -0.001223578117787838, - -0.037360355257987976, - -0.0016605702694505453, - 0.02552693895995617, - 0.051898181438446045, - 0.02370641380548477, - 0.0062728989869356155, - 0.014669744297862053, - 0.009623722173273563, - 0.0035618983674794436, - -0.021635234355926514, - -0.05147602781653404, - 0.007176565937697887, - 0.014841243624687195, - 0.004142356105148792, - 0.004092885181307793, - 0.023033609613776207, - 0.010573561303317547, - 0.020817317068576813, - -0.026661468669772148, - 0.013192216865718365, - 0.02304680272936821, - 0.023323839530348778, - -0.004877822007983923, - 0.004396306350827217, - 0.008766227401793003, - -0.000884703011251986, - 0.030025484040379524, - 0.005329655483365059, - -0.015302971005439758, - 0.02023686096072197, - -0.00021210611157584935, - 0.010540581308305264, - -0.03717566654086113, - -0.008317692205309868, - 0.017822684720158577, - 0.013667136430740356, - 0.010758252814412117, - -0.03437891602516174, - 0.013060294091701508, - 0.008851977065205574, - -0.013878211379051208, - 0.01941894181072712, - -0.011872994713485241, - 0.008561748079955578, - 0.027624500915408134, - 0.0011477228254079819, - -0.015580007806420326, - -0.00606841966509819, - -0.01904956065118313, - -0.016226425766944885, - 0.019405750557780266, - 0.003931280691176653, - -0.0012565585784614086, - 0.005032830405980349, - -0.01861421763896942, - -0.016068119555711746, - -0.02634485624730587, - -0.0007832878618501127, - -0.033244386315345764, - -0.014696129597723484, - -0.027149582281708717, - -0.0012417173711583018, - 0.006355350371450186, - -0.0001421255146851763, - -0.026964889839291573, - -0.001596258138306439, - -0.01775672286748886, - -0.021595658734440804, - -0.018455911427736282, - -0.030394867062568665, - -0.0013884807704016566, - -0.038705963641405106, - 0.005916709080338478, - -0.0014701075851917267, - -0.02324468456208706, - -0.03387761116027832, - 0.0029319701716303825, - 0.02614697255194187, - -0.020962432026863098, - 0.003967558965086937, - -0.004983359947800636, - 0.0005058390670455992, - 0.0073744491674005985, - -0.030632326379418373, - -0.017743531614542007, - -0.005540730897337198, - -0.028152190148830414, - -0.011846610344946384, - 0.010824213735759258, - -0.024484753608703613, - 0.01580427587032318, - 0.008495787158608437, - -0.005253800190985203, - 0.014445477165281773, - -0.004627170041203499, - -0.021556081250309944, - -0.007743831258267164, - 0.005913410801440477, - -0.010474619455635548, - 0.02687254548072815, - 0.012446856126189232, - 0.004808562807738781, - -0.013693520799279213, - 0.01056696567684412, - -0.022176116704940796, - 0.01584385149180889, - -0.0029286721255630255, - 0.006645578891038895, - -0.0009910652879625559, - -0.013587983325123787, - 0.012532605789601803, - -0.0005631427629850805, - 0.018469102680683136, - 0.027175966650247574, - -0.0027934517711400986, - -0.0034497645683586597, - 0.016239618882536888, - -0.00611789058893919, - 0.019973015412688255, - 0.004841543268412352, - 0.008766227401793003, - 0.0153689319267869, - -0.017703954130411148, - -0.011516804806888103, - -0.03482745215296745, - 0.023957064375281334, - 0.018046952784061432, - -0.007875753566622734, - 0.02960333414375782, - -0.009181782603263855, - 0.012209395878016949, - -0.03546067699790001, - -0.01488082017749548, - 0.006681857630610466, - 0.012018108740448952, - 0.010969327762722969, - -0.031239168718457222, - -0.036542437970638275, - -0.005748508498072624, - -0.01580427587032318, - 0.002638443373143673, - 0.0015797679079696536, - -0.012657932005822659, - -0.011180403642356396, - 0.00693250959739089, - -0.01641111820936203, - 0.003845531027764082, - 0.010118430480360985, - -0.03440530225634575, - -0.012717296369373798, - 0.015263394452631474, - -0.013343926519155502, - 0.009326896630227566, - -0.001922765513882041, - -0.014076095074415207, - -0.033323537558317184, - 0.012526009231805801, - -0.012506221421062946, - -0.03875873237848282, - -0.0007911207503639162, - 0.001628414262086153, - -0.006210235878825188, - 0.016806883737444878, - 0.014867627993226051, - 0.0010207477025687695, - 0.019761940464377403, - 0.008924534544348717, - 0.004650256130844355, - 0.002485083881765604, - -0.015065510757267475, - -0.008838784880936146, - -0.029207566753029823, - 0.02435283176600933, - 0.004933889023959637, - 0.023323839530348778, - 0.017558841034770012, - -0.003298054216429591, - 0.006223428063094616, - 0.01816568151116371, - -0.016463886946439743, - -0.007882349193096161, - -0.006912721320986748, - -0.025421401485800743, - -0.003462956752628088, - 0.0003902010212186724, - 0.012281953357160091, - 0.018627408891916275, - -0.01386501919478178, - -0.016622193157672882, - 0.020975623279809952, - -0.02125266008079052, - -0.006424609571695328, - 0.004287470132112503, - 0.021595658734440804, - -0.05097472295165062, - 0.027598116546869278, - 0.009208166971802711, - 0.0021157017908990383, - -0.012242376804351807, - 0.0050954935140907764, - -0.01689922995865345, - -0.019432134926319122, - 0.028943723067641258, - 0.005250502377748489, - 0.011002308689057827, - -0.014590591192245483, - -0.015408508479595184, - 0.002569184172898531, - -0.0004922345979139209, - 0.012189608067274094, - -0.0003157886676490307, - -0.005382424220442772, - -0.010969327762722969, - -0.02162204310297966, - -0.009049860760569572, - -0.0059595839120447636, - 0.0013752885861322284, - 0.01431355532258749, - -0.013733097352087498, - -0.011411267332732677, - 0.02138458378612995, - -0.004653554409742355, - 0.0008368812268599868, - -0.010237160138785839, - -0.009089437313377857, - 0.015342547558248043, - -3.313513661851175e-05, - 0.0346163772046566, - 0.015039126388728619, - -0.01697838306427002, - -0.010289928875863552, - -0.04873204603791237, - 0.014933588914573193, - -0.012519413605332375, - 0.019432134926319122, - 0.012077474035322666, - -0.03424699231982231, - -0.00981500931084156, - 0.002948460401967168, - 0.02854795567691326, - -0.011523401364684105, - -0.010078852996230125, - 0.03276946395635605, - 0.02720235101878643, - -0.0069852788001298904, - -0.014234401285648346, - 0.009702875278890133, - -0.023851526901125908, - 0.0046073817647993565, - -0.0013150990707799792, - 0.0025922704953700304, - -0.0062036397866904736, - -0.002409228589385748, - -0.001289539155550301, - 0.04232063144445419, - 0.023521721363067627, - 0.030474020168185234, - 0.02439240738749504, - -0.040579259395599365, - -0.0023828439880162477, - -0.029788024723529816, - -0.013944173231720924, - 0.019432134926319122, - -0.014221209101378918, - 0.0354342944920063, - -0.00010687756730476394, - -0.010652714408934116, - -0.0021189998369663954, - -0.008172578178346157, - -0.01221599243581295, - 0.008687074296176434, - -0.012895391322672367, - 0.01746649481356144, - -0.019062751904129982, - -0.0014544418081641197, - -0.012519413605332375, - -0.002186609897762537, - 0.010019488632678986, - -0.0034926394000649452, - 0.010501004755496979, - -0.012057686224579811, - 0.01664857752621174, - -0.0012252271408215165, - -0.0005330480053089559, - -0.0025576408952474594, - 0.0002638443256728351, - -0.009109225124120712, - -0.008825592696666718, - -0.029286719858646393, - -0.00226411409676075, - -0.0024389110039919615, - 0.008759631775319576, - -0.036014750599861145, - 0.0008010148885659873, - -0.007348064798861742, - 0.004195124842226505, - 0.0035454081371426582, - 0.00011543189611984417, - -0.017281804233789444, - -0.004445776809006929, - 0.019999399781227112, - -0.03065871074795723, - 0.004666746594011784, - 0.014247593469917774, - 0.0006266302661970258, - -0.006233322434127331, - 0.029867177829146385, - -0.0036146673373878, - -0.01689922995865345, - 0.022334422916173935, - -0.008753035217523575, - -0.02589632011950016, - -0.008159385994076729, - 0.00040854644612409174, - 0.020012592896819115, - -0.020131321623921394, - 0.00020427322306204587, - 0.006635684985667467, - -0.0006670314469374716, - 0.008126405067741871, - -0.006164063233882189, - -0.004297364503145218, - 0.0156723540276289, - 0.008799208328127861, - 0.00016098626656457782, - -0.0018683476373553276, - -0.009702875278890133, - 0.022703804075717926, - 0.006134380586445332, - 0.005520942620933056, - -0.01852187141776085, - -0.03490660339593887, - -0.023112762719392776, - 0.006780799478292465, - 0.0049965521320700645, - -0.02218930795788765, - -0.007394237443804741, - -0.007677869871258736, - 0.0035618983674794436, - -0.019603634253144264, - 0.017083920538425446, - 0.007163373753428459, - 0.00955116469413042, - 0.011793841607868671, - 0.021028393879532814, - -0.003868617583066225, - 0.018587833270430565, - 0.0033574190456420183, - 0.011008904315531254, - 0.015619584359228611, - 0.013706712983548641, - -0.032347314059734344, - 0.002569184172898531, - -0.0027241928037256002, - 0.03733397275209427, - 0.011061673052608967, - -0.011470632627606392, - -0.008429826237261295, - 0.010151410475373268, - -0.030605942010879517, - -0.027782807126641273, - -0.007315083872526884, - -0.010190987028181553, - 0.0023416185285896063, - 0.015606392174959183, - 0.0003061006427742541, - 0.023798758164048195, - -0.0036971187219023705, - 0.011523401364684105, - -0.021067969501018524, - -0.03831019625067711, - 0.01453782245516777, - -0.009194974787533283, - 0.007638293318450451, - -0.012901987880468369, - -0.03356099873781204, - -0.008034059777855873, - 0.023957064375281334, - 0.007908733561635017, - -0.014669744297862053, - 0.03580367565155029, - -0.008851977065205574, - -0.009762240573763847, - 0.016912421211600304, - -0.0012277006171643734, - -0.01726861111819744, - 0.020830510184168816, - 0.0164902713149786, - -0.03131832182407379, - -0.012710700742900372, - 0.010316313244402409, - 0.002572482218965888, - -0.027598116546869278, - -0.013614367693662643, - 0.021727580577135086, - 0.0016201690305024385, - 0.011404670774936676, - 0.013277965597808361, - -0.012222588993608952, - 0.002270710188895464, - -0.009775432758033276, - 0.019801516085863113, - 0.002420771634206176, - -0.017321379855275154, - 0.020184090360999107, - 0.011193595826625824, - -0.017176266759634018, - -0.012875603511929512, - 0.008165981620550156, - -0.030262945219874382, - 0.012281953357160091, - -0.004429286811500788, - -0.02283572591841221, - 0.015645969659090042, - -0.015302971005439758, - 0.003489341353997588, - -0.0075657363049685955, - 0.003365664277225733, - -0.0403154119849205, - -0.030685095116496086, - -0.024722212925553322, - 0.027004467323422432, - 0.03065871074795723, - -0.01775672286748886, - -0.003736695274710655, - -0.011833418160676956, - -0.016226425766944885, - 0.003459658706560731, - -0.025553323328495026, - -0.019801516085863113, - -0.03836296498775482, - -0.029629718512296677, - 0.026687853038311005, - -0.023877911269664764, - -0.007651485502719879, - -0.004023625981062651, - -0.024722212925553322, - -0.030553173273801804, - -0.008264923468232155, - 0.2027379870414734, - -0.02560609206557274, - 0.0075261592864990234, - 0.008495787158608437, - -0.004501843824982643, - -0.014511438086628914, - 0.021753964945673943, - -0.007136988919228315, - 0.001954097067937255, - 0.028838185593485832, - -0.009010284207761288, - 0.00856834463775158, - -0.004422690719366074, - 0.00706443190574646, - 0.02601505070924759, - -0.024577099829912186, - -0.054299164563417435, - -0.01528977882117033, - -0.012242376804351807, - 0.005712229758501053, - 0.028890954330563545, - -0.017255419865250587, - -0.01107486616820097, - -0.024946480989456177, - 0.03327076882123947, - 0.007994483225047588, - -0.011701496317982674, - 0.0044853538274765015, - 0.030526788905262947, - 0.007387641351670027, - -0.03395676612854004, - -0.009175186976790428, - 0.01900998316705227, - -0.006480676122009754, - 0.0006954771815799177, - 0.0035058315843343735, - 0.006589512340724468, - -0.019841093569993973, - 0.017453301697969437, - 0.018192065879702568, - -0.010421850718557835, - -0.018798908218741417, - -0.004386411979794502, - -0.029576949775218964, - 0.008792612701654434, - 0.03184600919485092, - 0.0056759510189294815, - -0.0012054387480020523, - -0.013093275018036366, - -0.006015650928020477, - -0.023363415151834488, - 0.006780799478292465, - 0.011404670774936676, - 0.04894312471151352, - 0.012657932005822659, - 0.0063784364610910416, - 0.011358498595654964, - -0.01502593420445919, - -0.016846461221575737, - 0.02638443373143673, - -0.02455071546137333, - 0.026516355574131012, - 0.001157616963610053, - 0.025922704488039017, - -0.00482505327090621, - 0.005923305172473192, - -0.00757233239710331, - -0.008983899839222431, - 0.0025955685414373875, - -0.03522321954369545, - -0.020474320277571678, - -0.0280994214117527, - -0.029576949775218964, - -0.00261700595729053, - -0.023548105731606483, - -0.01705753616988659, - 0.010929751209914684, - -0.0023614068049937487, - 0.030632326379418373, - 0.016872845590114594, - -0.012565585784614086, - 0.007202950306236744, - 0.006774203386157751, - -0.02907564491033554, - -0.012229184620082378, - -0.01678049936890602, - 0.011879591271281242, - 0.03408868610858917, - -0.005834257695823908, - -0.023917488753795624, - -0.02841603383421898, - 0.0022954456508159637, - -0.0036377536598592997, - -0.003855425165966153, - 0.023587683215737343, - -0.01105507742613554, - 0.012934967875480652, - 0.007189758121967316, - 0.012097262777388096, - 0.017980990931391716, - -0.013416483998298645, - 0.040816716849803925, - 0.0215824656188488, - -0.030315713956952095, - -0.0191419068723917, - -0.010639522224664688, - -0.012018108740448952, - 0.026898929849267006, - -0.00965010654181242, - -0.011582765728235245, - -0.01816568151116371, - -0.025381824001669884, - 0.0060750157572329044, - -0.015896620228886604, - 0.0037696759682148695, - 0.012591971084475517, - -0.009907354600727558, - 0.017690762877464294, - 0.014155248180031776, - -0.007644889410585165, - -0.007268911227583885, - 0.008627709932625294, - 0.01904956065118313, - -0.010501004755496979, - 0.011826821602880955, - -0.022123346105217934, - -0.021516505628824234, - 0.0063421581871807575, - -0.003650945844128728, - -0.007084220182150602, - 0.027228735387325287, - -0.01734776422381401, - 0.03836296498775482, - -0.016767306253314018, - 0.005715527571737766, - -0.004501843824982643, - -0.007301891688257456, - -0.0054846638813614845, - -0.0062201302498579025, - 0.005138368345797062, - 0.011576170101761818, - 0.009828201495110989, - -0.010276736691594124, - -0.004106077365577221, - 0.0031100651249289513, - -0.019115522503852844, - 0.012934967875480652, - -0.0047986689023673534, - -0.020263245329260826, - -0.03981411084532738, - -0.00854855589568615, - 0.0017710550455376506, - -0.009181782603263855, - -0.027993883937597275, - 0.04263724386692047, - 0.011391478590667248, - -0.010923155583441257, - -0.01660900004208088, - 0.0005685020587407053, - 0.011107846163213253, - -0.012077474035322666, - -0.029339488595724106, - 0.012354510836303234, - -0.014036518521606922, - -0.010448235087096691, - 0.008865169249475002, - -0.16780498623847961, - 0.028284111991524696, - 0.011338709853589535, - -0.036384131759405136, - 0.03844211995601654, - 0.011556381359696388, - 0.008983899839222431, - 0.009524780325591564, - -0.002274008234962821, - 0.004412796348333359, - 0.011668515391647816, - -0.009161994792521, - -0.020421551540493965, - -0.01762480102479458, - -0.005679249297827482, - -0.0012994332937523723, - -0.013587983325123787, - 0.013930981047451496, - 0.021899079903960228, - 0.019326597452163696, - -0.00682037603110075, - -0.017901837825775146, - 0.012532605789601803, - 0.005375828128308058, - 0.0004827526572626084, - 0.00873324740678072, - -0.0173081886023283, - 0.025276286527514458, - -0.008522171527147293, - -0.021965039893984795, - -0.015302971005439758, - -1.3269514965941198e-05, - 0.015593199990689754, - 0.006269600708037615, - -0.0009152099955826998, - -0.012591971084475517, - 0.004650256130844355, - -0.011793841607868671, - -0.004554612562060356, - 0.028204958885908127, - 0.008416634052991867, - 0.02765088528394699, - -0.012400683015584946, - 0.005082301329821348, - -0.02780919149518013, - 0.009254340082406998, - 0.014959973283112049, - -0.006200341507792473, - -0.010896771214902401, - -0.018416333943605423, - -0.011833418160676956, - -0.025672053918242455, - 0.0016968488926067948, - 0.018112912774086, - -0.023759182542562485, - 0.004267681855708361, - 0.005755104590207338, - 0.016477078199386597, - -0.008805804885923862, - 0.014828051440417767, - -0.002788504818454385, - -0.007315083872526884, - 0.01990705542266369, - 0.0039939433336257935, - -0.004980061668902636, - -0.009168590418994427, - -0.0050954935140907764, - 0.009742451831698418, - -0.008660689927637577, - 0.009227955713868141, - -0.0019903755746781826, - -0.04102779179811478, - -0.01563277654349804, - 0.003067190293222666, - -0.009907354600727558, - -0.018957214429974556, - -0.017479686066508293, - 0.015171049162745476, - 0.005702335387468338, - -0.019841093569993973, - -0.009986507706344128, - 0.035038527101278305, - -0.005052618682384491, - -0.037149280309677124, - -0.014405900612473488, - -0.001129583572037518, - -0.0006686804699711502, - 0.008238539099693298, - 0.019814709201455116, - 0.010876982472836971, - 0.021556081250309944, - -0.030183792114257812, - -0.026173356920480728, - -0.018944023177027702, - -0.0023696518037468195, - -0.007822984829545021, - -0.005029532592743635, - 0.010520792566239834, - -0.02369322068989277, - 0.0023581087589263916, - 0.017967799678444862, - -0.014603783376514912, - -0.020777741447091103, - 0.03334992378950119, - -0.00924114789813757, - 0.003918088506907225, - -0.03614667430520058, - 0.01502593420445919, - 0.05237310007214546, - -0.009702875278890133, - -0.011213383637368679, - -0.0017710550455376506, - 0.015527239069342613, - 0.021160315722227097, - 0.004867928102612495, - -0.003970857243984938, - -0.0162791945040226, - -0.022730188444256783, - 0.029392259195446968, - 0.015500854700803757, - 0.06453632563352585, - -0.009472011588513851, - -0.023851526901125908, - 0.0029088836163282394, - -0.0014264084165915847, - -0.017044343054294586, - -0.08770185708999634, - -0.0017182861920446157, - 0.024207716807723045, - 0.015408508479595184, - 0.022136539220809937, - 0.020342398434877396, - 0.002054687822237611, - 0.017004767432808876, - 0.007552544120699167, - 0.03187239542603493, - -0.009016879834234715, - -0.018389949575066566, - -0.019761940464377403, - -0.01105507742613554, - 0.011661919765174389, - -0.007974694482982159, - -0.005695739295333624, - -0.03371930494904518, - -0.01771714724600315, - 0.028679879382252693, - 0.0022377297282218933, - -0.007948310114443302, - 0.008805804885923862, - -0.0008748088730499148, - -0.009010284207761288, - -0.004482055548578501, - -0.028679879382252693, - 0.022809341549873352, - 0.014432284981012344, - -0.0082451356574893, - -0.005550625268369913, - -0.012413876131176949, - 0.004106077365577221, - -0.023350223898887634, - 0.0019409048836678267, - -0.008093425072729588, - -0.02492009662091732, - -0.00045100890565663576, - 0.04239978268742561, - -0.024695828557014465, - 0.0025263093411922455, - 0.011391478590667248, - 0.021067969501018524, - -0.02499924972653389, - 0.008772823959589005, - -0.014762090519070625, - -0.013917787931859493, - 0.010580157861113548, - 0.01820525899529457, - -0.02072497271001339, - -0.0244319848716259, - -0.04292747378349304, - -0.026133781298995018, - 0.010758252814412117, - 0.0472281351685524, - 0.008680478669703007, - -0.011160614900290966, - 0.009742451831698418, - -0.034062303602695465, - 0.009524780325591564, - 0.0024735406041145325, - 0.014471861533820629, - -0.02765088528394699, - 0.026292087510228157, - 0.0037762720603495836, - -0.020698588341474533, - -0.005323059391230345, - -0.0076185050420463085, - 0.019247444346547127, - -0.00019829550001304597, - -0.024088988080620766, - 0.014590591192245483, - -0.009557761251926422, - 0.008667286485433578, - -0.022215692326426506, - -0.00021375513460952789, - -0.04852097108960152, - -0.03240008279681206, - 0.011536593548953533, - -0.0006864074966870248, - -0.005346145946532488, - -0.03986687958240509, - -9.188172407448292e-05, - -0.009201571345329285, - 0.01146403606981039, - 0.03472191467881203, - -0.013198812492191792, - -0.004947081208229065, - 0.013706712983548641, - -0.016252810135483742, - -0.000442351505625993, - 0.01816568151116371, - 0.029788024723529816, - -0.0043831137008965015, - 0.0062498124316334724, - -0.005102089606225491, - -0.006348754279315472, - -0.008601325564086437, - 0.00832428876310587, - 0.014867627993226051, - -0.012651335448026657, - -0.006945701781660318, - -0.0655389279127121, - 0.014089287258684635, - 0.016635384410619736, - -0.0154744703322649, - -0.009590741246938705, - -0.014221209101378918, - -0.004172038286924362, - 0.015527239069342613, - 0.002044793451204896, - 0.009452222846448421, - -0.010006296448409557, - 0.023798758164048195, - -0.011576170101761818, - 0.008601325564086437, - -0.02796749956905842, - -0.020289629697799683, - 0.0035849849227815866, - 0.01378586608916521, - 0.004013732075691223, - 0.000947366061154753, - -0.017598416656255722, - -0.005669354926794767, - -0.019115522503852844, - 0.01889125443994999, - -0.03311246261000633, - -0.010487811639904976, - 0.0017479687230661511, - -0.001621818169951439, - -0.02353491447865963, - -0.0042083170264959335, - 0.0008443018305115402, - -0.017572032287716866, - 0.002961652586236596, - 0.015065510757267475, - -0.024524331092834473, - -0.021199891343712807, - 0.01645069383084774, - 0.03393037989735603, - 0.009194974787533283, - 0.0537450909614563, - -0.014379516243934631, - -0.01840314269065857, - 0.015421700663864613, - -0.011840014718472958, - 0.0006299283122643828, - 0.007954906672239304, - 0.012275357730686665, - 0.001625116216018796, - 0.020104937255382538, - -0.008436422795057297, - 0.03986687958240509, - 0.027782807126641273, - -0.0064114173874258995, - -0.00736125698313117, - 0.0036905226297676563, - -0.007862561382353306, - 0.008759631775319576, - -4.1547750697645824e-06, - 0.01945851929485798, - -0.029339488595724106, - 0.02414175681769848, - -0.003486043307930231, - 0.005062513053417206, - -0.0018089826917275786, - -0.0016919017070904374, - -0.013469252735376358, - -0.02532905526459217, - -0.014023326337337494, - -0.007974694482982159, - -0.016437502577900887, - -0.005220819730311632, - -0.018429527059197426, - 0.014551014639437199, - 0.037729740142822266, - -0.006051929201930761, - 0.01121998019516468, - 0.010092045180499554, - 0.009161994792521, - -0.0108901746571064, - 0.008001078851521015, - 0.022862110286951065, - 0.005474769975990057, - -0.0098743736743927, - -0.003535513998940587, - 0.029919946566224098, - 0.018785716965794563, - -0.01154318917542696, - 0.016266003251075745, - 0.016305578872561455, - 0.01404971070587635, - -0.0003889642539434135, - 0.01238089520484209, - 0.012288549914956093, - 0.0004707972111646086, - 0.01090996339917183, - 0.005471471697092056, - 0.007875753566622734, - -0.022255269810557365, - 0.0391017310321331, - 0.03672713041305542, - 0.0065169548615813255, - 0.00291218189522624, - 0.004491949919611216, - -0.008825592696666718, - -0.004178634379059076, - 0.018192065879702568, - -0.015118280425667763, - -0.025988666340708733, - 0.0313447080552578, - 0.027861962094902992, - 0.013423080556094646, - 0.018020568415522575, - 0.0060750157572329044, - 0.012011513113975525, - -0.02968248724937439, - 0.01015800703316927, - -0.018455911427736282, - 0.001675411476753652, - -0.03894342482089996, - 0.04841543361544609, - 0.01701795868575573, - 0.016622193157672882, - 0.015936197713017464, - 0.0007783407927490771, - 0.008627709932625294, - 0.003103469032794237, - 0.0036344556137919426, - 0.0006600230699405074, - 0.005098791792988777, - -0.005972776096314192, - -0.009808412753045559, - 0.009234551340341568, - -0.03738674148917198, - -0.01543489284813404, - -0.0003535101714078337, - 0.0008414160693064332, - 0.008383653126657009, - 0.0026301981415599585, - 0.013205409049987793, - 0.09208167344331741, - 0.006579617969691753, - -0.027149582281708717, - 0.02560609206557274, - -0.0007659730617888272, - -0.00922135915607214, - 0.01861421763896942, - -0.009135609492659569, - -0.0019804814364761114, - -0.011424459517002106, - -0.010527389124035835, - -0.015606392174959183, - 0.0011114442022517323, - -0.04295385628938675, - -0.008508979342877865, - 0.01970917172729969, - -0.003723503090441227, - 0.002475189510732889, - -0.009504991583526134, - 0.013587983325123787, - 0.025052018463611603, - 0.00938626192510128, - 0.010995712131261826, - 0.020421551540493965, - -0.022321229800581932, - -0.01726861111819744, - 0.010923155583441257, - -0.01337690744549036, - 0.009755644015967846, - -0.0317668579518795, - 0.013363715261220932, - 0.01580427587032318, - -0.06643600016832352, - -0.011259556747972965, - 0.016965189948678017, - -0.02308637835085392, - 0.0044160946272313595, - -0.003469552844762802, - 0.014748898334801197, - 0.011675111949443817, - 0.006912721320986748, - 0.007598716765642166, - -0.030922556295990944, - -0.028679879382252693, - 0.01910232938826084, - 0.008588133379817009, - -0.01371990516781807, - 0.014115671627223492, - -0.0199466310441494 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 1, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 1053 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000002.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000002.json deleted file mode 100644 index de8fc409b87f79aed155c689fc917288adf665f8..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000002.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000002", - "content": "Gem\u00e4\u00df einer Umfrage aus dem Jahr 2020 des Bundesministeriums f\u00fcr Umwelt, Naturschutz, nukleare Sicher- heit und Verbraucherschutz, empfinden 51 % der Bev\u00f6lkerung in Deutschland eine Be-\nl\u00e4stigung durch L\u00e4rm aus Industrie-/Gewerbel\u00e4rm (siehe Abbildung 1). [4]\n\n[IMAGE: Bel\u00e4stigung durch einzelne L\u00e4rmquellen 2020 Frage: Wenn Sie einmal an die letzten 12 Monate hier bei Ihnen denken, wie stark haben Sie sich pers\u00f6nlich durch den L\u00e4rm von. folgenden Dingen gest\u00f6rt oder bel\u00e4stigt gef\u00fchlt? \u201aAntworten: \"zumindest etwas bel\u00e4stigt\u201d, das hei\u00dft Summe der Angaben \u201e\u00e4u\u00dferst gest\u00f6rt oder bel\u00e4stigt\u201d, \u201estark gest\u00f6rt oder bel\u00e4stigt\u201c, \u201emittelm\u00e4\u00dfig gest\u00f6rt oder bel\u00e4stigt\" und \u201eetwas gest\u00f6rt oder bel\u00e4stigt\" Schienenverkehrsl\u00e4rm Flugverkehrsl\u00e4rm Industrie- und Gewerbel\u00e4rm L\u00e4rm von Nachbarn/ Nachbarinnen Stra\u00dfenverkehrsl\u00e4rm Repr\u00e4sentativerhebung bei 2.115 Befragten, Bev\u00f6lkerung ab 14 Jahren Bundesministerium f\u00fcr Umwelt, Naturschutz, nukleare Sicherheit und Verbraucherschutz/Umweitbundesamt (Hrsg.). Umweltbewusstsein in Deutschland 2020 - Ergebnisse einer repr\u00e4sentativen Bev\u00f6lkerungsumfrage]\n\nAbbildung 1: Ausma\u00df der L\u00e4rmbel\u00e4stigung der Bev\u00f6lkerung in Deutschland 2020 [4]\n3\n1 Einleitung\nDer immerw\u00e4hrende Austausch von G\u00fctern f\u00fchrt zu einer L\u00e4rmquelle, die genau be- trachtet werden muss, um eine zuk\u00fcnftige L\u00e4rmbelastung vorherzusagen. Verantwort- lich f\u00fcr diesen G\u00fcterfluss sind Logistikunternehmen oder auch Speditionen genannt. Eine zentrale Schnittstelle sind die Verladestationen, an denen der Umschlag der G\u00fcter stattfindet und geeignete Flurf\u00f6rderger\u00e4te zum Einsatz kommen, um den Wechsel der Transportmittel zu erm\u00f6glichen. Durch diesen Prozess von Be- und Entladung der Anh\u00e4- nger entsteht eine vielf\u00e4ltige L\u00e4rmbelastung durch unterschiedliche Faktoren. [5]\n\n## Mit Hilfe einer Schallimmissionsprognose lassen sich Schallimmissionen von Industrie-\n\nund Gewerbel\u00e4rm, dergleichen f\u00fcr alle anderen Verursachern, prognostizieren. Richt- werte f\u00fcr Gewerbe gibt die Technische Anleitung zum Schutz gegen L\u00e4rm (TA L\u00e4rm) vor, die laut der TA L\u00e4rm zum \u201eSchutz der Allgemeinheit und der Nachbarschaft vor sch\u00e4dli- chen Umwelteinwirkungen durch Ger\u00e4usche sowie der Vorsorge gegen sch\u00e4dliche Um- welteinwirkungen durch Ger\u00e4usche\u201c [6] dient. F\u00fcr eine Schallimmissionsprognose wer- den schalltechnische Eingangsdaten ben\u00f6tigt und sind erforderlich, um eine Simulation durchf\u00fchren zu k\u00f6nnen. F\u00fcr Be- und Entladevorg\u00e4nge an einem Umschlagspunkt stehen Ver\u00f6ffentlichungen zur Verf\u00fcgung, die auf messtechnisch ermittelten Schalldruckpegeln basieren. F\u00fcr Verladet\u00e4tigkeiten werden zu derzeitigem Stand beispielgebend der der Technische Bericht [7, 8] von der hessischen Landesanstalt f\u00fcr Umwelt verwendet. Die bisherigen Ver\u00f6ffentlichungen und Untersuchungen in diesem Bereich sind konzentrie- ren sich haupts\u00e4chlich auf Verbraucherm\u00e4rkte und Verladungen mit Handhubwagen, was nur einen kleinen Teil der tats\u00e4chlich m\u00f6glichen Verladet\u00e4tigkeiten abdeckt. ## Ziel dieser Thesis\n\nUm eine umfassendere und praxisn\u00e4here Schallimmissionsprognose durchf\u00fchren zu k\u00f6nnen, bedarf es weiterer Untersuchungen. Das Ziel dieser Thesis besteht darin, detail- liert die Verladet\u00e4tigkeiten in Speditionen zu analysieren und zu bewerten. Die mess- technisch ermittelten Daten werden ausgewertet und durch eine geeignete Simulation verifiziert. Die notwendigen Rechengrundlagen werden dazu erl\u00e4utert, die zur Analyse und Bewertung von Verladeger\u00e4usche ben\u00f6tigt werden. Aus dem gewonnenen Wissen werden Emissionsans\u00e4tze ausgearbeitet, die als Prognosegrundlage f\u00fcr weiterf\u00fchrende Schallimmissionsprognosen zur Verf\u00fcgung steht. Zus\u00e4tzlich wird die 2D-Richtcharakte- ristik der Verladeger\u00e4usche durch eine Untersuchung entlang einer Kreisbahn im Nah-\n4\n1 Einleitung\nfeld ermittelt. Die Thesis stellt eine wichtige Grundlage f\u00fcr die Entwicklung von geeig- neten Ma\u00dfnahmen zur Reduktion der L\u00e4rmbelastung in Speditionen dar, weshalb m\u00f6g- liche Minderungsma\u00dfnahmen aufgezeigt werden, um die L\u00e4rmbelastung zu reduzieren. Die Thesis bietet somit eine umfassende Einf\u00fchrung in die Grundlagen und Rechen- grundlagen der L\u00e4rmemissionsmessung und -bewertung. 5\n2 Grundlagen\n\n## 2 Grundlagen\n\nDas folgende Kapitel dient zur Einf\u00fchrung in die Thesis und bildet somit das Grundge- r\u00fcst. Es werden die allgemeinen Grundlagen der Logistik und Grundlagen zur Ermittlung der notwendigen akustischen Kenngr\u00f6\u00dfen aufgezeigt. Ziel dieses Kapitel ist es ein grund- legendes Wissen darzubieten, um ein vollst\u00e4ndiges Verst\u00e4ndnis der Thesis zu vermitteln.", - "embedding": [ - 0.03203568235039711, - -0.003609198145568371, - 0.002449330175295472, - -0.04144422337412834, - -0.003729072865098715, - 0.007153599057346582, - -0.021707026287913322, - -0.0005042023840360343, - -0.028951341286301613, - -0.02315848134458065, - -0.0012230451684445143, - 0.010581365786492825, - -0.006090926937758923, - -0.0001335427659796551, - 0.001762480940669775, - 0.027551725506782532, - 0.056088365614414215, - -0.0017300824401900172, - 0.012052259407937527, - 0.0042085712775588036, - -0.014527508988976479, - 0.009285423904657364, - 0.012376245111227036, - 0.0017106432933360338, - -0.001807838911190629, - 0.018868913874030113, - 0.03522370010614395, - -0.026437215507030487, - -0.01520139817148447, - 0.014955169521272182, - 0.0076330979354679585, - -0.01450159028172493, - -0.01632886752486229, - 0.02597067505121231, - -0.018570847809314728, - -0.008540256880223751, - -0.0017414218746125698, - 0.007263754494488239, - 0.037530478090047836, - -0.022121727466583252, - 0.0075423819944262505, - 0.0171193927526474, - 0.009071593172848225, - -0.024052681401371956, - -0.0007901195785962045, - 0.02641129679977894, - -0.0007961943047121167, - 0.019076265394687653, - -0.025815162807703018, - 0.012739108875393867, - 0.03644188493490219, - 0.0271888617426157, - -0.01873932033777237, - 0.00503797410055995, - -0.012454001232981682, - 0.0002804499235935509, - -0.010244420729577541, - 0.011060863733291626, - -0.0010019250912591815, - -0.023806452751159668, - -0.04292159527540207, - 0.006538026966154575, - -0.027292536571621895, - 0.006220520939677954, - -0.03950030729174614, - -0.006084447260946035, - -0.02372869662940502, - -0.00568594504147768, - -0.011216376908123493, - -0.017858078703284264, - 0.033124275505542755, - 0.029132774099707603, - 0.007315591908991337, - 0.016445502638816833, - 0.017378581687808037, - 0.002625902183353901, - 0.0171323511749506, - -0.012421603314578533, - -0.0015664697857573628, - 0.004244209732860327, - 0.012227212078869343, - -0.007043444085866213, - -0.03327978774905205, - 0.04372508078813553, - 0.028692154213786125, - 0.011222857050597668, - -0.008987356908619404, - 0.011443166993558407, - -0.024117479100823402, - 0.0007957892958074808, - 0.0038003495428711176, - 0.015214357525110245, - 0.007464625407010317, - 0.01520139817148447, - 0.023301035165786743, - 0.0029450280126184225, - -0.013361160643398762, - 0.010412893258035183, - 0.000559684936888516, - -0.04066665843129158, - -0.014994047582149506, - -0.012142975814640522, - -0.01489037275314331, - 0.004500158131122589, - -0.03079157881438732, - -0.009589970111846924, - -0.003787390189245343, - 0.008481939323246479, - 0.017780322581529617, - -0.027888670563697815, - -0.014359036460518837, - 0.027499886229634285, - 0.0006678150384686887, - -0.01398321334272623, - 0.028303371742367744, - -0.02178478240966797, - 0.03911152482032776, - -0.01156628131866455, - 0.000381897873012349, - -0.02737029269337654, - 0.03504226729273796, - 0.017248986288905144, - 0.01038049440830946, - -0.006631982512772083, - 0.03867090493440628, - 0.025892918929457664, - -0.016380704939365387, - 0.0002766026009339839, - -0.026100270450115204, - -0.011579240672290325, - -0.031906090676784515, - 0.0005430806777440012, - 0.021395999938249588, - 0.011728274635970592, - 0.011818990111351013, - 0.009427977725863457, - -0.011423727497458458, - 0.008313467726111412, - -0.0161344762891531, - -0.017482256516814232, - 0.006265879143029451, - 0.01772848516702652, - -0.03366857022047043, - -0.030299121513962746, - -0.011929145082831383, - 0.05152665078639984, - 0.025231989100575447, - 0.0005621148156933486, - -0.012946459464728832, - 0.007484064437448978, - -0.023223279044032097, - -0.02157743275165558, - 0.007808050140738487, - -0.0067583369091153145, - 0.0024379906244575977, - 0.01592712663114071, - 0.0006398712866939604, - 0.026825997978448868, - -0.015447627753019333, - -0.008404183201491833, - 0.008080197498202324, - -0.014670061878859997, - 0.03185425326228142, - 0.013037175871431828, - 0.027733156457543373, - 0.010438811965286732, - 0.020216694101691246, - -0.0040595377795398235, - -0.0025578653439879417, - -0.013218607753515244, - -0.008157954551279545, - 0.021046096459031105, - -0.01359443087130785, - 0.017832159996032715, - -0.013918415643274784, - 0.01087943185120821, - 0.0018191784620285034, - 0.016069680452346802, - -0.026502011343836784, - -0.019270656630396843, - -0.04566899314522743, - 0.012849263846874237, - 0.014657102525234222, - 0.005436476320028305, - -0.02256234921514988, - 0.012376245111227036, - 0.025037597864866257, - 0.02838112786412239, - -0.01378882210701704, - -0.001814318704418838, - 0.0030600428581237793, - 0.01813022792339325, - 0.006055288482457399, - -0.02879582904279232, - -0.6336637735366821, - 0.005060653202235699, - -0.0035865192767232656, - 0.003865146776661277, - 0.002752256579697132, - 0.036934345960617065, - 0.006388993468135595, - 0.004817664157599211, - -0.0026631606742739677, - 0.04364732280373573, - 0.006946248468011618, - 0.0009565671207383275, - 0.01076927687972784, - -0.0076330979354679585, - -0.01260303519666195, - -0.005958092864602804, - -0.020385166630148888, - -0.011268215253949165, - 0.02296409010887146, - -0.008462500758469105, - -0.008993837051093578, - 0.008488419465720654, - -0.0005159468855708838, - 0.003661035792902112, - 0.007127680350095034, - 0.010613763704895973, - -0.0031135003082454205, - -0.028329290449619293, - 0.005903015378862619, - 0.002130204578861594, - -0.026903754100203514, - 0.012240171432495117, - -0.02637241780757904, - 0.035171862691640854, - 0.05344464257359505, - 0.014566387049853802, - 0.008274588733911514, - 0.028303371742367744, - 0.019996384158730507, - -0.011358930729329586, - -0.015836410224437714, - -0.017404500395059586, - -0.0003333000640850514, - -0.013646268285810947, - 0.005255044437944889, - 0.0012765027349814773, - 0.05904311314225197, - -0.002102665835991502, - 0.025918837636709213, - -0.032502222806215286, - 0.0070888022892177105, - 0.011825470253825188, - 0.002676120027899742, - 0.0028915703296661377, - 0.03885233774781227, - 0.017637768760323524, - 0.032554060220718384, - -0.027448048815131187, - -0.01167643629014492, - 0.009045674465596676, - 0.00219338177703321, - 0.010594325140118599, - 0.003260913770645857, - 0.0036415967624634504, - -0.02358614280819893, - 0.020799867808818817, - -0.02232907898724079, - -0.03099893033504486, - 0.011034945026040077, - -0.01299181766808033, - -0.016419583931565285, - 0.005582269746810198, - -0.0070499237626791, - -0.026139147579669952, - 0.042377300560474396, - 0.02333991415798664, - 0.008306987583637238, - -0.00894847884774208, - -0.010432332754135132, - 0.01178011205047369, - -0.006045568734407425, - -0.008028360083699226, - -0.02843296527862549, - 0.004837103188037872, - 0.02739621140062809, - -0.0363122932612896, - -0.006868491880595684, - 0.00208484660834074, - -0.00609416700899601, - 0.003819788806140423, - 0.0036059583071619272, - 0.055051613599061966, - 0.0017964994767680764, - -0.014449751935899258, - -0.0015867188340052962, - 0.022588267922401428, - -0.0012603035429492593, - 0.01667877286672592, - -0.0017479016678407788, - -0.022264281287789345, - -0.024415545165538788, - -0.0023051565513014793, - 0.033538974821567535, - -0.022225404158234596, - 0.03045463375747204, - -0.010153704322874546, - -0.006868491880595684, - 0.013140850700438023, - 0.012959418818354607, - -0.02091650292277336, - -8.534992230124772e-05, - -0.009978752583265305, - -0.02131824381649494, - -0.01056840643286705, - -0.00924654584378004, - -0.020994259044528008, - 0.03403143584728241, - 0.006521827541291714, - 0.011158059351146221, - -0.011682916432619095, - -9.903071259032004e-06, - -2.2033544155419804e-05, - 0.04144422337412834, - -0.02656680904328823, - -0.00724431499838829, - 0.03105076774954796, - 0.012661352753639221, - 0.015486505813896656, - 0.0006131425034254789, - -0.0015130122192203999, - 0.01299829687923193, - 0.004607073497027159, - 0.017404500395059586, - -0.0028705112636089325, - 0.02742213010787964, - 0.01229848898947239, - 0.039163365960121155, - -0.00624644011259079, - 0.011844908818602562, - -0.030661985278129578, - -0.013633308932185173, - 0.0007083132513798773, - 0.015084763988852501, - -0.03003993257880211, - -0.011760672554373741, - -0.02801826409995556, - -0.0007111481390893459, - -0.00023893929028417915, - 0.0014708940871059895, - 0.010114826261997223, - -0.01048417016863823, - -0.013542592525482178, - -0.0004944828106090426, - 0.016601014882326126, - 0.01390545628964901, - 0.008572655729949474, - -0.027940507978200912, - -0.015849368646740913, - -0.0063630747608840466, - -0.01890779286623001, - 0.010322176851332188, - 0.016277030110359192, - -0.04188484326004982, - 0.004108136054128408, - 0.0037096336018294096, - -0.022691942751407623, - -0.0013315803371369839, - 0.0035444011446088552, - -0.008630973286926746, - -0.03747864067554474, - 0.014410873875021935, - -0.004302527289837599, - -0.010840553790330887, - 0.030325040221214294, - 0.0062723588198423386, - -0.0015016726683825254, - -0.013199168257415295, - -0.0037485118955373764, - -0.011903226375579834, - -0.010425852611660957, - 0.016380704939365387, - 0.0022646584548056126, - -0.007192477583885193, - -0.00549155380576849, - 0.02580220252275467, - 0.014631183817982674, - 0.024208195507526398, - -0.0006840143469162285, - -0.013257485814392567, - 0.02499871887266636, - 0.0008528917678631842, - 0.014151685871183872, - -0.020696192979812622, - 0.00795060396194458, - -0.032761409878730774, - -0.005352240055799484, - -0.0009112091502174735, - -0.0007670355844311416, - 0.006006690673530102, - 0.01491629146039486, - 0.030325040221214294, - 0.01893371157348156, - 0.008579134941101074, - -0.01186434831470251, - 0.006492668762803078, - -0.021305285394191742, - 0.00583497853949666, - -0.023210318759083748, - 0.023093685507774353, - 0.02354726381599903, - 0.019620560109615326, - -0.01673061028122902, - -0.029728908091783524, - -0.008592095226049423, - -0.0019779312424361706, - 0.04870149493217468, - 0.006421392317861319, - 0.016212232410907745, - 0.021408960223197937, - -0.008501378819346428, - -0.001534881186671555, - -0.0010683421278372407, - 0.03903377056121826, - 0.0018418574472889304, - -0.010082428343594074, - -0.0005058223032392561, - -0.004098416306078434, - -0.006343635730445385, - -0.0009760062675923109, - -0.009291903115808964, - -0.007607178762555122, - 0.0029596074018627405, - -6.985936488490552e-05, - 0.008119075559079647, - -0.006712979171425104, - 0.021188650280237198, - 0.013568511232733727, - -0.010108347050845623, - 0.03245038539171219, - 0.019231777638196945, - -0.005093051586300135, - 0.013970253989100456, - 0.0030713824089616537, - -0.005822019185870886, - 0.0231844000518322, - -0.014670061878859997, - 0.013270445168018341, - 0.034912675619125366, - -0.0070304847322404385, - -0.006874971557408571, - -0.005109251011162996, - 0.015862328931689262, - -0.013516673818230629, - -0.016212232410907745, - 0.0034083272330462933, - -0.026696402579545975, - 0.030506473034620285, - 0.0033176112920045853, - 0.018842995166778564, - 0.0009541372419334948, - 0.010756317526102066, - -0.003920224029570818, - 0.006926809437572956, - -0.02155151404440403, - 0.0008804305107332766, - -0.0002053257921943441, - -0.028303371742367744, - -0.024920962750911713, - 0.005468874704092741, - -0.0011849768925458193, - -0.01671764999628067, - 0.008468979969620705, - -0.00462327292189002, - -0.014540468342602253, - 0.030325040221214294, - -0.015460587106645107, - -0.018648603931069374, - 0.023223279044032097, - 0.033927757292985916, - 0.01669173128902912, - -0.00864393264055252, - -0.022419795393943787, - -0.0001765720808180049, - 0.02597067505121231, - -0.006437591277062893, - -0.019244737923145294, - -0.0049634575843811035, - 0.0022549389395862818, - -0.03462756797671318, - -0.010859993286430836, - -0.01552538387477398, - 0.013160290196537971, - -0.011209897696971893, - -0.009913955815136433, - 0.025685569271445274, - 0.005617908202111721, - 0.01570681668817997, - 0.01056840643286705, - -0.017560012638568878, - 0.015330992639064789, - -0.0002701228950172663, - -0.029547475278377533, - -0.034342460334300995, - -0.005543391685932875, - 0.014229441992938519, - -0.021188650280237198, - -0.018207984045147896, - -0.019594641402363777, - -0.001246534171514213, - -0.01892075128853321, - -0.005012055393308401, - 0.0161215178668499, - 0.006829613819718361, - 0.004441841039806604, - 0.000831832701805979, - 0.005938653834164143, - 0.009350220672786236, - -0.003356489585712552, - 0.03099893033504486, - -0.009123430587351322, - -0.010613763704895973, - -0.027707237750291824, - -0.0007731103105470538, - 0.023521345108747482, - 0.04647247493267059, - 0.01854492910206318, - 0.014981088228523731, - 0.03042871505022049, - -0.010834074579179287, - -0.023521345108747482, - -0.006518587935715914, - -0.05069724842905998, - 0.010555447079241276, - 0.01189026702195406, - 0.0017057835357263684, - -0.009764921851456165, - 0.02637241780757904, - 0.0019163740798830986, - 0.014657102525234222, - -0.02580220252275467, - 0.004587634466588497, - -0.002109145512804389, - 0.014644143171608448, - -0.0024622895289212465, - 0.003251194255426526, - 0.012622473761439323, - 7.638969691470265e-05, - 0.04452856257557869, - -0.00734799075871706, - -0.016354786232113838, - 0.021901417523622513, - 0.027499886229634285, - 0.016069680452346802, - -0.024285951629281044, - -0.004458039999008179, - 0.02192733623087406, - 0.006790735758841038, - 0.02378053404390812, - -0.02838112786412239, - 0.010224981233477592, - -0.012609514407813549, - 0.00806723814457655, - 0.009635328315198421, - -0.014073928818106651, - 0.03281324729323387, - 0.027085185050964355, - 0.0005831738817505538, - -0.016199273988604546, - 0.003267393447458744, - -0.009071593172848225, - -0.0030001054983586073, - 0.01491629146039486, - -0.012628953903913498, - -0.0010075948666781187, - -0.0015753793995827436, - -0.014981088228523731, - -0.009149350225925446, - -0.0033095115795731544, - -0.0045131174847483635, - -0.031076686456799507, - 0.00045803445391356945, - -0.009687165729701519, - -0.0049926163628697395, - -0.01189674623310566, - -0.0051740482449531555, - -0.03810069337487221, - 0.01186434831470251, - -0.022484591230750084, - -0.026281701400876045, - -0.031102605164051056, - -0.017806241288781166, - -0.007056403439491987, - -0.02597067505121231, - 0.0024671494029462337, - 0.017572972923517227, - -0.03003993257880211, - -0.01932249404489994, - -0.0018175585428252816, - 0.03581983596086502, - -0.0008415522752329707, - 0.027448048815131187, - -0.006427871994674206, - -0.013892496936023235, - 0.0003839228011202067, - -0.027862749993801117, - -0.005251804366707802, - 0.004406202584505081, - -0.020203733816742897, - -0.012745589017868042, - 0.013879537582397461, - -0.028562558814883232, - -0.0023488947190344334, - -0.005021774675697088, - 0.002554625505581498, - -0.008300507441163063, - 0.005157848820090294, - -0.000306166271911934, - -0.006223761010915041, - -0.0023845331743359566, - 0.007827488705515862, - 0.008579134941101074, - 0.0003203406522516161, - 0.019789032638072968, - -0.020683232694864273, - 0.033538974821567535, - -0.01478669699281454, - 0.011034945026040077, - 0.0018029791535809636, - 0.006946248468011618, - -0.015991922467947006, - -0.0007536712219007313, - -0.0042085712775588036, - 0.012855743989348412, - 0.016626935452222824, - 0.012933500111103058, - -0.0039007852319628, - 0.004490438848733902, - 0.0035962387919425964, - -0.0026356219314038754, - -0.0049051400274038315, - 0.006965687498450279, - 0.002115625189617276, - 0.028096020221710205, - 0.011112702079117298, - -0.00397854158654809, - -0.0281996950507164, - 0.032113440334796906, - 0.021279366686940193, - -0.0006856342661194503, - 0.01695092022418976, - -0.022510509938001633, - 0.018026551231741905, - -0.03721944987773895, - -0.006933289114385843, - 0.0014036670327186584, - 0.019776074215769768, - 0.014359036460518837, - -0.02435074746608734, - -0.046602070331573486, - -0.008527297526597977, - 0.012551196850836277, - 0.0115857208147645, - -0.03467940539121628, - -0.024726571515202522, - -0.011423727497458458, - 0.0009508973453193903, - -0.024013804271817207, - 0.003456925041973591, - 0.02359910123050213, - -0.03327978774905205, - -0.024415545165538788, - 0.01329636387526989, - -0.02480432763695717, - 0.012739108875393867, - -0.0019471526611596346, - -0.01653621904551983, - -0.010600804351270199, - -0.007743252906948328, - -0.020294450223445892, - -0.03942255303263664, - 0.004302527289837599, - -0.016613975167274475, - 0.014631183817982674, - 0.007548861671239138, - 0.03200976550579071, - 0.0031475189607590437, - -0.0046329922042787075, - -0.0050250147469341755, - 0.006874971557408571, - 0.002902909880504012, - -0.02493392303586006, - -0.007743252906948328, - -0.024622896686196327, - 0.020087098702788353, - 0.005893295630812645, - 0.007432227022945881, - 0.01280390564352274, - 0.01279742643237114, - 0.011002547107636929, - 0.03480900079011917, - -0.017598891630768776, - -0.002554625505581498, - -0.018881874158978462, - -0.015966003760695457, - 0.0016652853228151798, - -0.012590075843036175, - 0.004247449804097414, - 0.03335754573345184, - -0.039370715618133545, - -0.013555551879107952, - 0.024065641686320305, - -0.038800500333309174, - -0.01728786528110504, - -0.013918415643274784, - 0.003570319851860404, - -0.04849414527416229, - 0.03659740090370178, - 0.0028348728083074093, - -0.0013186208670958877, - -0.02034628763794899, - -0.006385753862559795, - -0.02197917550802231, - -0.013425958342850208, - 0.016186313703656197, - -0.008281068876385689, - 0.0006366314482875168, - -0.009110471233725548, - -0.028743991628289223, - 0.010801675729453564, - -0.004555235616862774, - 0.004671870730817318, - -0.01511068269610405, - -0.021694067865610123, - -0.003855427261441946, - -0.026696402579545975, - -0.020657313987612724, - -0.021836621686816216, - -0.02656680904328823, - 0.009687165729701519, - -0.003855427261441946, - 0.02017781510949135, - 0.019037386402487755, - -0.00689441105350852, - -0.010419372469186783, - -0.010419372469186783, - -0.00624644011259079, - 0.012065218761563301, - -0.008287548087537289, - 0.02822561375796795, - 0.005420276895165443, - -0.023326953873038292, - -0.011702354997396469, - -0.044995103031396866, - 0.005773421376943588, - -0.024726571515202522, - 0.029884420335292816, - -0.016795406118035316, - -0.03812661021947861, - 0.01814318634569645, - 0.021603351458907127, - 0.02152559533715248, - -0.011799550615251064, - -0.013762903399765491, - 0.03846355527639389, - 0.021395999938249588, - -0.011209897696971893, - -0.015577221289277077, - -0.003855427261441946, - 0.006790735758841038, - -0.0026793598663061857, - 0.015460587106645107, - 0.008637452498078346, - -0.0015413608634844422, - -0.005935413762927055, - -0.0161215178668499, - 0.036130860447883606, - 0.0034893236588686705, - 0.01588824763894081, - 0.015616100281476974, - -0.01836349628865719, - -0.001051332917995751, - -0.026307620108127594, - -0.006343635730445385, - 0.01835053786635399, - -0.016212232410907745, - 0.02879582904279232, - -0.010749838314950466, - -0.004568194970488548, - 0.0028478323947638273, - -0.0030681423377245665, - -0.011138620786368847, - 0.015162520110607147, - 0.000243799076997675, - 0.017572972923517227, - -0.02077394910156727, - -0.012875182554125786, - -0.0029012898448854685, - 0.006674100644886494, - 0.011702354997396469, - -0.0035508808214217424, - -0.01219481322914362, - -0.0008820504299364984, - 0.0032544340938329697, - -0.016601014882326126, - -0.004224770702421665, - 0.01588824763894081, - -0.0030681423377245665, - -0.002018429571762681, - -0.014864454045891762, - -0.030169527977705002, - -0.0013510194839909673, - -0.006751857232302427, - 0.02032036893069744, - -0.008734648115932941, - -0.008741128258407116, - 0.013348201289772987, - 0.009116951376199722, - 0.015680896118283272, - -0.006320956628769636, - -0.013931374996900558, - 0.004688069690018892, - 0.025089435279369354, - -0.039759498089551926, - 0.015797531232237816, - 0.023482467979192734, - 0.004247449804097414, - 0.005310121923685074, - 0.028329290449619293, - 0.012317927554249763, - -0.015953045338392258, - 0.03242446482181549, - -0.019478006288409233, - -0.024506261572241783, - -0.016769487410783768, - -0.014631183817982674, - 0.0006382513674907386, - -0.023923087865114212, - -0.004292807541787624, - 0.03138771280646324, - 0.018985548987984657, - 0.004153493791818619, - -0.008870722725987434, - -0.018467172980308533, - 0.02235499769449234, - 0.030506473034620285, - -0.0005758841871283948, - 0.004950498230755329, - -0.007756212260574102, - 0.020994259044528008, - 0.005915974732488394, - 0.003638356924057007, - 0.0062723588198423386, - -0.03001401387155056, - -0.01689908280968666, - 0.012868703342974186, - 0.003576799528673291, - -0.021655188873410225, - 0.005958092864602804, - -0.012622473761439323, - -0.005329560954123735, - -0.014449751935899258, - 0.011378370225429535, - 0.007568300701677799, - 0.01892075128853321, - 0.02695559151470661, - -0.0014482151018455625, - -0.017469296231865883, - 0.022432753816246986, - -0.004215050954371691, - -0.0014798037009313703, - 0.014683022163808346, - 0.003819788806140423, - -0.02012597769498825, - 0.008410663343966007, - -0.016393665224313736, - 0.03042871505022049, - 0.006372794508934021, - -0.010289778932929039, - -0.004496918525546789, - -0.004075737204402685, - -0.02560781128704548, - -0.016173355281352997, - -0.0023148762993514538, - -0.004568194970488548, - 0.0027716958429664373, - 0.0362086184322834, - -0.013069573789834976, - 0.03397959843277931, - 0.0055693103931844234, - 0.022005094215273857, - -0.030169527977705002, - -0.02055363915860653, - 0.017767364159226418, - -0.015991922467947006, - 0.009758442640304565, - -0.01037401519715786, - -0.017197148874402046, - -0.003382408292964101, - 0.023676859214901924, - -0.0038003495428711176, - -0.0021496436093002558, - 0.03786742314696312, - -0.016056720167398453, - -0.01522731687873602, - 0.007373909465968609, - 0.007944123819470406, - 0.005310121923685074, - 0.00219338177703321, - 0.0043608443811535835, - -0.00844954140484333, - -0.011702354997396469, - 0.012914060615003109, - 0.014994047582149506, - -0.029521556571125984, - -0.01772848516702652, - 0.023275116458535194, - -0.005157848820090294, - -0.018013592809438705, - 0.009427977725863457, - -0.024221153929829597, - -0.0008626113412901759, - -0.01728786528110504, - 0.029521556571125984, - 0.03382408246397972, - -0.014631183817982674, - 0.00613952474668622, - 0.007937643676996231, - -0.015240277163684368, - -0.025918837636709213, - 0.0019196139182895422, - -0.010529528371989727, - 0.004185892175883055, - -0.0007322071469388902, - -0.023080725222826004, - 0.017987674102187157, - -0.001112080179154873, - 0.00834586564451456, - -0.01038049440830946, - 0.00492781912907958, - -0.041185032576322556, - -0.01349075511097908, - -0.0322430357336998, - 0.027499886229634285, - 0.018376456573605537, - -0.012894622050225735, - 0.006217281334102154, - -0.0191540215164423, - -0.02939196303486824, - -0.0056600263342261314, - -0.028951341286301613, - -0.00023954675998538733, - -0.039007849991321564, - -0.009142870083451271, - 0.020605476573109627, - -0.007671975996345282, - 0.009408538229763508, - -0.013749943114817142, - -0.01730082370340824, - -0.03610493987798691, - -0.011987462639808655, - 0.19408026337623596, - -0.028277453035116196, - -0.014734859578311443, - 0.02050180174410343, - -0.011598680168390274, - -0.03320202976465225, - 0.02419523522257805, - -0.012162414379417896, - -0.005407317541539669, - 0.02192733623087406, - 0.001960112014785409, - 0.013179728761315346, - 0.000786474731285125, - 0.01634182780981064, - 0.016419583931565285, - -0.01420352328568697, - -0.025867000222206116, - -0.009408538229763508, - 0.00038007544935680926, - 0.03942255303263664, - 0.027551725506782532, - -0.020385166630148888, - -0.007587739732116461, - -0.023819413036108017, - 0.04756106808781624, - 0.026320580393075943, - -0.015966003760695457, - 0.003797109704464674, - 0.03651964291930199, - 0.011028465814888477, - -0.03105076774954796, - 0.002207960933446884, - 0.028277453035116196, - -0.01198098249733448, - -0.0046945493668317795, - 0.012123536318540573, - 0.0049375384114682674, - -0.03447205573320389, - 0.022847454994916916, - 0.01632886752486229, - 0.013225086964666843, - -0.025879960507154465, - -0.01753409393131733, - -0.016199273988604546, - 0.01219481322914362, - 0.020190775394439697, - 0.002949887653812766, - -0.007108241319656372, - 0.009797320701181889, - 0.0004551995953079313, - -0.018609724938869476, - 0.008786486461758614, - 0.016380704939365387, - 0.030973011627793312, - 0.007568300701677799, - -0.013361160643398762, - 0.007879327051341534, - -0.003306271741166711, - -0.013840659521520138, - 0.01649734005331993, - -0.01956872269511223, - 0.019205858930945396, - -0.0037161135114729404, - 0.025076474994421005, - -0.018169105052947998, - 0.02050180174410343, - -0.018259821459650993, - -0.011721794493496418, - -0.0017479016678407788, - -0.037141695618629456, - 0.0008901500841602683, - -0.0030276442412286997, - -0.03911152482032776, - 0.014216482639312744, - -0.013134371489286423, - -0.02597067505121231, - 0.002178802387788892, - 0.00814499519765377, - 0.028458883985877037, - 0.013672186993062496, - -0.016406623646616936, - 0.006285318173468113, - -0.00786636769771576, - -0.022277241572737694, - -0.00010600399400573224, - -0.007412787526845932, - 0.011009026318788528, - 0.015680896118283272, - 0.004367324057966471, - -0.021888459101319313, - -0.01693795993924141, - 0.012058739550411701, - -0.0023343153297901154, - -0.0012562536867335439, - 0.026527930051088333, - -0.003350009908899665, - 0.020294450223445892, - -0.0023100164253264666, - -0.008300507441163063, - -0.003554120659828186, - -0.018842995166778564, - 0.06541914492845535, - 0.0362863726913929, - -0.017585931345820427, - -0.0024687692057341337, - 0.0036772352177649736, - -0.011734753847122192, - 0.023806452751159668, - -0.013853618875145912, - -0.003790630027651787, - -0.01651030033826828, - -0.018674522638320923, - 0.029469719156622887, - -0.022717861458659172, - 0.009654766879975796, - 0.001368028693832457, - 0.0005005575367249548, - 0.016380704939365387, - 0.013283404521644115, - -0.002716618124395609, - -0.028484802693128586, - 0.009265984408557415, - 0.01956872269511223, - -0.016821326687932014, - -0.005164328496903181, - -0.031180361285805702, - -0.01853196881711483, - 0.02638537622988224, - 0.0036934344097971916, - -0.016225192695856094, - 0.011702354997396469, - -0.013918415643274784, - 0.0181172676384449, - -0.011767152696847916, - 0.00568594504147768, - 0.004072497598826885, - -0.009836198762059212, - -0.011183978989720345, - -0.0025659650564193726, - -0.0016912041464820504, - 0.015318033285439014, - -0.011844908818602562, - 0.01835053786635399, - -0.0015810491750016809, - -0.006836093496531248, - -0.0054170372895896435, - 0.01673061028122902, - -0.0033467700704932213, - -0.02073507010936737, - -0.0262039452791214, - -0.03001401387155056, - 0.005242085084319115, - 0.010309217497706413, - -0.024532180279493332, - 0.027499886229634285, - 0.01048417016863823, - -0.01018610317260027, - -0.03099893033504486, - 0.010918310843408108, - 0.016251111403107643, - -0.019607601687312126, - -0.010062988847494125, - 0.0023051565513014793, - -0.01715826988220215, - 0.0019082744838669896, - 0.00745814573019743, - -0.16245926916599274, - 0.014734859578311443, - 0.01238920446485281, - -0.030480554327368736, - -0.0001215957963722758, - 0.011728274635970592, - -0.008831843733787537, - 0.012246650643646717, - -0.022303160279989243, - -0.00020390836289152503, - 0.0181043092161417, - -0.0066935401409864426, - -0.030532391741871834, - -0.016601014882326126, - -0.0016928240656852722, - -0.01871340163052082, - -0.01552538387477398, - 0.026437215507030487, - 0.025478217750787735, - 0.019789032638072968, - -0.0071212006732821465, - -0.01832461915910244, - 0.014138726517558098, - 0.008909600786864758, - -0.0018467172048985958, - 0.021395999938249588, - -0.023275116458535194, - 0.0362086184322834, - -0.0018564367201179266, - -0.02155151404440403, - -0.02541342005133629, - 0.012071698904037476, - 0.0034439656883478165, - 0.0038683866150677204, - -0.010218502022325993, - 0.003696674248203635, - 0.015292114578187466, - -0.007905245758593082, - -0.0034990431740880013, - 0.03444613516330719, - 0.02054067887365818, - 0.041988518089056015, - -0.00659634405747056, - 0.018402375280857086, - -0.007626618258655071, - 0.021616311743855476, - 0.021694067865610123, - -0.016056720167398453, - -0.013957294635474682, - -0.01954280398786068, - -0.004846822936087847, - -0.017819201573729515, - -0.013736983761191368, - 0.020255571231245995, - -0.022445714101195335, - 0.03286508843302727, - 0.01609559915959835, - 0.015460587106645107, - 0.004124335013329983, - -0.016004882752895355, - 0.006771296262741089, - -0.028847666457295418, - 0.02400084398686886, - 0.0062140412628650665, - 0.0010399933671578765, - -0.01789695769548416, - -0.008028360083699226, - 0.004613553173840046, - -0.021292325109243393, - 0.0002401542296865955, - -0.019426168873906136, - -0.01671764999628067, - 0.0027133782859891653, - 0.0023488947190344334, - 0.0013477795291692019, - -0.004506637807935476, - -0.007983001880347729, - 0.005348999984562397, - 0.0022112007718533278, - -0.02133120410144329, - -0.01628999039530754, - 0.025024637579917908, - -0.0011768771801143885, - -0.013853618875145912, - -0.022588267922401428, - 0.006000210996717215, - -0.005465635098516941, - 0.012214252725243568, - -0.019244737923145294, - 0.006534786894917488, - 0.03263181820511818, - -0.019879749044775963, - -0.02737029269337654, - -0.02576332539319992, - -0.0054170372895896435, - -4.8926867748377845e-05, - -0.00011106627061963081, - 0.013309323228895664, - -0.023313995450735092, - 0.0022938172332942486, - 0.01673061028122902, - -0.008656891994178295, - -0.022264281287789345, - 0.011009026318788528, - 0.01277150772511959, - -0.0005151369259692729, - -0.03263181820511818, - 0.0033402901608496904, - 0.03688250482082367, - -0.02374165505170822, - 0.0036415967624634504, - 0.002851072233170271, - 0.012939980253577232, - -0.010062988847494125, - -0.004328445997089148, - -0.0002318521001143381, - 0.006654661614447832, - -0.0211497712880373, - 0.010957188904285431, - 0.014060969464480877, - 0.05175992101430893, - -0.012356805615127087, - -0.01695092022418976, - 0.006016410421580076, - 0.0044191619381308556, - -0.03162098303437233, - -0.09315230697393417, - 0.022860415279865265, - 0.02278265915811062, - -0.002795994747430086, - 0.006155724171549082, - 0.0302213653922081, - -0.00523236533626914, - 0.024519219994544983, - 0.006473229732364416, - 0.03983725234866142, - -0.023262156173586845, - -0.011922665871679783, - -0.015486505813896656, - -0.003280353033915162, - 0.019400250166654587, - -0.030661985278129578, - -0.014423833228647709, - -0.029106855392456055, - -0.028251534327864647, - 0.01990566775202751, - 0.010114826261997223, - -0.0051740482449531555, - -0.0011509583564475179, - 0.004166453145444393, - -0.02700742892920971, - 0.0012303348630666733, - -0.028355209156870842, - 0.0066676209680736065, - 0.011326531879603863, - -0.01439791452139616, - 0.02035924792289734, - -0.015512424521148205, - -0.005559590645134449, - -0.02354726381599903, - 0.012428082525730133, - 0.01167643629014492, - -0.021395999938249588, - -0.004801464732736349, - 0.04312894493341446, - -0.02619098499417305, - -0.006641702260822058, - 0.010620243847370148, - 0.021059056743979454, - -0.01307605393230915, - 0.0013647888554260135, - -0.03439429774880409, - -0.007555341348052025, - 0.015642018988728523, - 0.01653621904551983, - -0.012039300054311752, - -0.028355209156870842, - -0.04476183280348778, - -0.027525806799530983, - 0.0073026325553655624, - 0.020048221573233604, - -0.0027733156457543373, - -0.0037679511588066816, - 0.009395578876137733, - -0.039940930902957916, - 0.012855743989348412, - -0.010315697640180588, - 0.02116273157298565, - -0.026307620108127594, - 0.02034628763794899, - 0.002101045800372958, - -0.007678455673158169, - -0.02437666803598404, - 0.005284203216433525, - 0.02091650292277336, - -0.0156031409278512, - -0.03436838090419769, - 0.002382913138717413, - 0.003638356924057007, - 0.0030665225349366665, - -0.039370715618133545, - 0.008099636994302273, - -0.04395835101604462, - -0.014670061878859997, - 0.011624598875641823, - 0.0110738230869174, - -0.007134160026907921, - -0.026255782693624496, - 0.014799656346440315, - 0.006952728144824505, - 0.016004882752895355, - 0.02336583286523819, - -0.0161215178668499, - -0.016471421346068382, - 0.007782130967825651, - -0.005996970925480127, - -0.00814499519765377, - 0.02737029269337654, - 0.010672081261873245, - -0.0013664087746292353, - 0.006408432498574257, - 0.017585931345820427, - 0.003699914086610079, - -0.014644143171608448, - 0.011209897696971893, - 0.016601014882326126, - 0.0005766941467300057, - -0.014164645224809647, - -0.04312894493341446, - 0.016277030110359192, - 0.028925422579050064, - 0.001777060329914093, - -0.003583279438316822, - -0.0032949321903288364, - 0.016963878646492958, - 0.02178478240966797, - 0.02257530763745308, - 0.008903120644390583, - 0.004879221320152283, - 0.019050346687436104, - -0.010840553790330887, - -0.00866985134780407, - -0.035767994821071625, - -0.02339175157248974, - 0.0072119166143238544, - 0.025452299043536186, - 0.007108241319656372, - -0.004869501572102308, - 0.004111375659704208, - -0.010199062526226044, - -0.010050029493868351, - 0.03470532223582268, - -0.022653063759207726, - -0.004859782289713621, - 0.00817091390490532, - -0.0019228537566959858, - -0.01731378398835659, - -0.003077862085774541, - -0.0016507060499861836, - 8.114823867799714e-05, - -0.00522912573069334, - -0.007639577612280846, - -0.018233902752399445, - -0.028147857636213303, - 0.006026129703968763, - 0.032346710562705994, - 0.004561715293675661, - 0.06127213314175606, - -0.0049051400274038315, - -0.011274694465100765, - 0.0009176888852380216, - -0.042169950902462006, - 0.006900890730321407, - -0.007082322612404823, - 0.010989587754011154, - 0.006972167640924454, - 0.015538343228399754, - -0.0007386868819594383, - 0.04657615348696709, - 0.012901101261377335, - -0.010801675729453564, - -0.004315486643463373, - 0.0005402457900345325, - -0.0061524841003119946, - 0.01046473067253828, - 0.0013963774545118213, - 0.01836349628865719, - -0.016017841175198555, - 0.03263181820511818, - 0.004892180673778057, - 0.02335287258028984, - -0.006680580321699381, - -0.016613975167274475, - -0.0021674628369510174, - -0.03470532223582268, - -0.020631395280361176, - -0.007561821024864912, - -0.022458672523498535, - -0.007438706699758768, - -0.008767046965658665, - 0.026061391457915306, - 0.00787284690886736, - -0.026903754100203514, - -0.011203417554497719, - 0.004982896614819765, - 0.008656891994178295, - -0.009408538229763508, - 0.02012597769498825, - 0.012842784635722637, - 0.003942903131246567, - 0.006521827541291714, - 0.00015318438818212599, - 0.02680007927119732, - 0.028873585164546967, - -0.018078388646245003, - -0.004529316909611225, - 0.009227106347680092, - -0.003638356924057007, - -0.020670272409915924, - 0.0161215178668499, - 0.0035217220429331064, - 0.01037401519715786, - 0.013140850700438023, - 0.029884420335292816, - 0.013212127611041069, - -0.013309323228895664, - 0.03581983596086502, - 0.02458401769399643, - 0.017274904996156693, - -0.0003559790493454784, - -0.01299829687923193, - -0.0343165397644043, - -0.029158692806959152, - 0.02354726381599903, - -0.016264071688055992, - -0.025841081514954567, - 0.016808366402983665, - 0.01833757758140564, - -0.009875076822936535, - 0.02536158263683319, - -0.0018612965941429138, - 0.01128765381872654, - -0.018817076459527016, - 0.002284097485244274, - -0.018169105052947998, - -0.0004043743829242885, - -0.026100270450115204, - 0.017883997410535812, - 0.03447205573320389, - 0.011689395643770695, - -0.0030762420501559973, - 0.0019066545646637678, - 0.01400913204997778, - -0.01775440387427807, - -0.0031880170572549105, - -0.004801464732736349, - 0.011209897696971893, - -0.021823661401867867, - -0.012058739550411701, - 0.016626935452222824, - -0.04367324337363243, - 0.003609198145568371, - -0.011909706518054008, - -0.011754193343222141, - 0.01895963028073311, - 0.010199062526226044, - 0.0019325733883306384, - 0.09958017617464066, - 0.01269375067204237, - -0.012739108875393867, - 0.02700742892920971, - -0.00010681396088330075, - 0.009926915168762207, - 0.012538237497210503, - 0.012551196850836277, - -0.0004454800218809396, - -0.050023358315229416, - -0.010121306404471397, - -0.024026762694120407, - 0.015862328931689262, - -0.03589759021997452, - -0.0012497740099206567, - 0.03403143584728241, - -0.01198098249733448, - 0.0067259385250508785, - -0.003047083504498005, - 0.02116273157298565, - 0.0322171151638031, - -0.03719353303313255, - 0.0045390366576612, - 0.017236027866601944, - -0.019633520394563675, - -0.02659272775053978, - 0.006210801657289267, - 0.002282477682456374, - -0.004205331671983004, - -0.0050574131309986115, - 0.003265773644670844, - 0.010412893258035183, - -0.0584728978574276, - -0.01539578940719366, - 0.022899294272065163, - -0.020799867808818817, - 0.008391223847866058, - -0.03519778326153755, - 0.013827700167894363, - -0.004334925673902035, - 0.006434351671487093, - 0.029884420335292816, - -0.010905351489782333, - -0.014475670643150806, - -0.0040174201130867004, - 0.016069680452346802, - 0.008527297526597977, - -0.000831832701805979, - -0.01995750516653061 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 2, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 567 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000003.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000003.json deleted file mode 100644 index b82c27af651f7263fa36fc2d5cae0519dad17550..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000003.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000003", - "content": "Es werden die allgemeinen Grundlagen der Logistik und Grundlagen zur Ermittlung der notwendigen akustischen Kenngr\u00f6\u00dfen aufgezeigt. Ziel dieses Kapitel ist es ein grund- legendes Wissen darzubieten, um ein vollst\u00e4ndiges Verst\u00e4ndnis der Thesis zu vermitteln. ## 2.1 Logistik\n\n\n## Einer der wichtigsten Komponente der globalen Wirtschaft ist die Logistik. Sie verbindet\n\ndie Gesellschaft durch den Handel und Verbrauch von G\u00fctern. Als Grundger\u00fcst der Lo- gistik, steht der G\u00fcteraustausch zwischen Unternehmen oder dem privaten Haushalt. Im t\u00e4glichen Leben machen wir permanent Gebrauch von Logistik, sei es f\u00fcr den Trans- port von Personen oder von G\u00fctern. Vernetzt werden die Unternehmen \u00fcber die Liefer- und Logistikkette, welche den Austausch von G\u00fctern erm\u00f6glichen. Die Kette beginnt mit der G\u00fcterbereitstellung, der G\u00fcterverwendung und der G\u00fcterverteilung. Unternehmen stellen G\u00fcter \u00fcber die Produktionskette her, die dann bereitgestellt werden. Diese be- reitgestellten G\u00fcter werden entweder als Sachg\u00fcter wie Smartphones verwendet oder als Konsumg\u00fcter wie Nahrungsmittel verbraucht. Damit Unternehmen die G\u00fcter an den Kunden verteilen k\u00f6nnen wird die Logistik ben\u00f6tigt. Die Logistik stellt das Bindeglied zwischen Bereitstellung und Verwendung der G\u00fcter dar. Ein sogenannter G\u00fcterfluss ist entstanden [5]. ## Die Logistikkette\n\nDie raumzeitliche Transformation der G\u00fcter ist einer der Hauptarbeitsprozesse der Lo- gistik. Dies betrifft die \u00dcberbr\u00fcckung der Zeit zwischen Fertigstellung und dem Ver- brauch. Um die Zeit zu \u00fcberbr\u00fccken, bis die G\u00fcter verbraucht werden, ist es erforderlich, diese zwischenzulagern. Diese Zwischenlagerung betrifft den Transport, den Umschlag und die Lagerung der G\u00fcter. Unter Umschlag wird der Vorgang bezeichnet, indem die G\u00fcter das Transportmittel durch Flurf\u00f6rderger\u00e4te wechseln. [9]\nLogistikunternehmen, auch bekannt als Speditionen, tragen die Verantwortung f\u00fcr den G\u00fcterfluss sowie die damit verbundenen Prozesse. Ihre Aufgabe besteht darin, die\n6\n2 Grundlagen\nMenge, Art und Handhabungseigenschaften der G\u00fcter zu ber\u00fccksichtigen und den ge- samten Prozess der Planung, Steuerung und Kontrolle zu gew\u00e4hrleisten. Die Menge und Art der G\u00fcter ergeben sich aus der Zusammenstellung der G\u00fcter f\u00fcr eine Bestellung im Lager. Die G\u00fcterhandhabungseigenschaft wird durch die Verpackung ge\u00e4ndert. Die G\u00fc- ter werden auf sogenannten Ladungstr\u00e4ger, zu Ladeeinheiten gebildet. Die Ladetr\u00e4ger sind spezielle und genormte Lade- oder Transporthilfsmittel wie beispielsweise Schach- teln, Beh\u00e4lter oder Paletten. Eine Logistikkette entsteht aus den einzelnen logistischen Prozessanteilen, die den Lauf einer Ladeeinheit darstellt.", - "embedding": [ - 0.026644760742783546, - 0.015669595450162888, - 0.01612098328769207, - -0.036652665585279465, - 0.008066940121352673, - -0.005039419513195753, - -0.01609518937766552, - 0.0051812841556966305, - 0.0025793572422116995, - -0.036755841225385666, - 0.005116799846291542, - 0.010427052155137062, - -0.02069934271275997, - 0.0063677881844341755, - 0.01242605410516262, - 0.0002577342092990875, - 0.045603036880493164, - -0.0053650629706680775, - 0.017320385202765465, - 0.00655156746506691, - -0.031984031200408936, - -0.009337273426353931, - 0.021253904327750206, - -0.011020303703844547, - 0.013967219740152359, - 0.011052546091377735, - 0.022569376975297928, - -0.018584270030260086, - -0.01294192485511303, - -0.012193911708891392, - -0.004088281188160181, - -0.014470194466412067, - -0.016275744885206223, - 0.0133739672601223, - -0.0036659114994108677, - -0.00820880476385355, - 0.011278240010142326, - -0.017836255952715874, - 0.013799561187624931, - -0.022556480020284653, - 0.009962767362594604, - 0.024026712402701378, - 0.002684143604710698, - -0.014379916712641716, - -0.0044171493500471115, - 0.026464205235242844, - -0.017243003472685814, - -0.005826123524457216, - -0.027831265702843666, - 0.003920623101294041, - 0.01770728826522827, - 0.03541457653045654, - -0.03348005935549736, - -0.006603154819458723, - -0.009034198708832264, - 0.010420603677630424, - -0.013361071236431599, - -0.00820880476385355, - 0.01403170358389616, - -0.04191455617547035, - -0.01548904087394476, - 0.013528728857636452, - -0.028372930362820625, - -0.0003675584157463163, - -0.0180039145052433, - -0.007699381560087204, - -0.02749594859778881, - -0.005481134168803692, - -0.022066401317715645, - 0.002000614069402218, - 0.020260851830244064, - 0.024091197177767754, - 0.016752924770116806, - 0.026670554652810097, - 0.031287603080272675, - 0.004500978626310825, - 0.017449352890253067, - -0.0015322994440793991, - -0.032577283680438995, - 0.01992553472518921, - 0.004349441267549992, - -0.011291136965155602, - -0.020144781097769737, - 0.04996215179562569, - 0.024890797212719917, - -0.0012574366992339492, - 0.025006869807839394, - 0.009195408783853054, - -0.0052070776000618935, - 0.011826353147625923, - -0.014276742935180664, - -0.0007133535109460354, - 0.004578359425067902, - 0.021950330585241318, - -0.006071162410080433, - -0.0014807123225182295, - -0.007286684587597847, - 0.01792653277516365, - -0.003196791047230363, - -0.05834506079554558, - -0.013270793482661247, - -0.0026986526791006327, - -0.01486999448388815, - 0.004372010473161936, - -0.024091197177767754, - -0.01666264794766903, - 0.002229531994089484, - 0.020015813410282135, - 0.013064444996416569, - -0.017836255952715874, - -0.030771732330322266, - 0.05264468118548393, - -0.011194410733878613, - 0.0009995009750127792, - 0.028347136452794075, - -0.009317927993834019, - 0.046273671090602875, - -0.01668844185769558, - 0.013025754131376743, - -0.027857059612870216, - 0.025522740557789803, - 0.010020802728831768, - 0.019964225590229034, - 0.0031919546891003847, - 0.035491958260536194, - 0.022414615377783775, - -0.0043655624613165855, - 0.009595208801329136, - -0.021602116525173187, - -0.026025714352726936, - -0.016237054020166397, - -0.014341226778924465, - 0.0007459985208697617, - 0.021202316507697105, - -0.0015137603040784597, - 0.008286185562610626, - -0.009885386563837528, - 0.022491995245218277, - -0.01661106012761593, - -0.04552565515041351, - 0.0097048319876194, - 0.019177520647644997, - -0.02598702535033226, - -0.02242751233279705, - -0.015476143918931484, - 0.028811421245336533, - 0.011542623862624168, - 0.017810462042689323, - -0.0026373928412795067, - 0.0077574169263243675, - 0.013348174281418324, - -0.010381912812590599, - 0.013257896527647972, - -0.023871952667832375, - 0.008956817910075188, - 0.000770582992117852, - -0.0073963068425655365, - 0.010478639043867588, - -0.006293631624430418, - -0.016804512590169907, - 0.012458295561373234, - -0.01738486811518669, - 0.00838291086256504, - 0.0052070776000618935, - 0.02625785768032074, - 0.019125934690237045, - 0.0035240468569099903, - 0.004597704391926527, - -0.0012985451612621546, - -0.00023456029884982854, - 0.002630944363772869, - 0.008273288607597351, - -0.003656239015981555, - 0.014276742935180664, - -0.02153763361275196, - -0.00793797243386507, - 0.007299581076949835, - 0.009182511828839779, - -0.041450273245573044, - -0.02267255075275898, - -0.01373507734388113, - 0.02156342752277851, - 0.002123133512213826, - -0.0007274593808688223, - -0.0417855866253376, - 0.012251947075128555, - 0.004907227121293545, - 0.03386696055531502, - 0.009891835041344166, - 0.0032322572078555822, - -0.0021585996728390455, - 0.015953324735164642, - 0.01310313493013382, - -0.001078493776731193, - -0.631839394569397, - 0.0011042873375117779, - 0.002658350160345435, - -0.03443441912531853, - 0.009105131030082703, - 0.020738033577799797, - 0.016353124752640724, - 0.009253444150090218, - -0.0014807123225182295, - 0.04119233787059784, - 0.0036239970941096544, - 0.009891835041344166, - 0.009872490540146828, - -0.022259853780269623, - -0.023549532517790794, - -0.030281655490398407, - -0.012445398606359959, - -0.02069934271275997, - 0.03301577270030975, - 0.013567419722676277, - -0.026193372905254364, - 0.012471192516386509, - 0.005755191203206778, - 0.018945379182696342, - 0.011297585442662239, - 0.016623957082629204, - 0.03629155829548836, - -0.013025754131376743, - 0.012916131876409054, - 0.010323877446353436, - -0.024813417345285416, - -0.0010736575350165367, - -0.03923202306032181, - 0.02407830022275448, - 0.04526771977543831, - 0.025380875915288925, - -0.00845384318381548, - 0.017423558980226517, - 0.01054312288761139, - 0.01555352471768856, - -0.012419605627655983, - -0.036111000925302505, - 0.014379916712641716, - -0.0014637853018939495, - 0.011162168346345425, - -0.004307526629418135, - 0.053960155695676804, - -0.001230031019076705, - -0.004510650876909494, - -0.021421562880277634, - 0.01577276922762394, - -0.014560472220182419, - 0.0033048016484826803, - -0.002258549677208066, - 0.02035112865269184, - 0.006364563945680857, - 0.009034198708832264, - -0.021357078105211258, - 0.008299082517623901, - -0.0017378419870510697, - -0.0025342185981571674, - -0.010291635990142822, - -0.008731124922633171, - -0.020634857937693596, - -0.03750385344028473, - 0.020286645740270615, - -0.02628365159034729, - -0.02739277482032776, - 0.03992845118045807, - -0.020183470100164413, - -0.006841745227575302, - 0.006545118987560272, - -0.02057037502527237, - -0.013889838941395283, - 0.03807131201028824, - 0.013515831902623177, - -0.003121022367849946, - -0.013670593500137329, - 0.009098682552576065, - 0.011478140018880367, - -0.012645299546420574, - -0.012277740985155106, - -0.012161669321358204, - -0.007551068440079689, - 0.03415068984031677, - -0.01013687439262867, - 0.004513875115662813, - -0.009485586546361446, - -0.008221701718866825, - 0.006364563945680857, - 0.007905730046331882, - 0.026128889992833138, - -0.002148926956579089, - -0.01523110456764698, - -0.0006855448009446263, - 0.039051469415426254, - -0.006132422015070915, - 0.025355082005262375, - 0.01706244796514511, - -0.02407830022275448, - -0.004559013992547989, - 0.011516829952597618, - 0.014534678310155869, - 0.0015685716643929482, - 0.018287643790245056, - 0.012754921801388264, - -0.007028748746961355, - 0.008589260280132294, - 0.017668597400188446, - -0.024929488077759743, - -0.007525274995714426, - -0.016868997365236282, - -0.007073887623846531, - -0.002946915803477168, - -0.00015163799980655313, - -0.019538631662726402, - 0.02269834466278553, - -0.006574137136340141, - 0.008286185562610626, - -0.022904692217707634, - 0.002930794842541218, - -0.004152765031903982, - 0.030126893892884254, - -0.018635855987668037, - -0.011787663213908672, - 0.024955281987786293, - 0.0021956779528409243, - 0.008105630055069923, - -0.0020054501947015524, - -0.006990058347582817, - 0.004278508946299553, - -0.01296771876513958, - 0.006332322023808956, - -0.006461290176957846, - 0.028372930362820625, - -0.011852147057652473, - 0.04108916223049164, - -0.00847963709384203, - 0.013412658125162125, - -0.03747806325554848, - -0.02623206377029419, - -0.021369975060224533, - 0.010859094560146332, - -0.039670515805482864, - -0.02336897701025009, - -0.03154553845524788, - -0.006893332581967115, - -0.010252945125102997, - -0.005345718003809452, - 0.011761869303882122, - -0.009524276480078697, - -0.032551489770412445, - -0.025999922305345535, - 0.03167450800538063, - 0.005049091763794422, - -0.003132306970655918, - -0.03046220913529396, - -0.010362568311393261, - 0.010639849118888378, - -0.04010900482535362, - -0.015463246963918209, - 0.023768777027726173, - -0.04108916223049164, - 0.011819904670119286, - -0.023730088025331497, - -0.020428510382771492, - 0.0021118486765772104, - 0.0025261580012738705, - -0.03502767160534859, - -0.03502767160534859, - 0.006970712915062904, - -0.00591640081256628, - -0.021911639720201492, - 0.0075188265182077885, - -0.0014686215436086059, - -0.007415652275085449, - -7.828752131899819e-05, - 0.010891336016356945, - 0.021202316507697105, - -0.010581813752651215, - 0.009375963360071182, - -0.006396806333214045, - -0.022169575095176697, - -0.0029162857681512833, - 0.01913883164525032, - 0.01548904087394476, - 0.002263386035338044, - 0.019074346870183945, - -0.020286645740270615, - 0.001454112702049315, - -0.0032290329691022635, - 0.03105546161532402, - -0.003071047365665436, - 0.004510650876909494, - -0.02736698091030121, - -0.005926073528826237, - -0.004246267024427652, - 0.016920583322644234, - -0.008872989565134048, - 0.007041645236313343, - 0.03995424509048462, - -0.012045598588883877, - 0.010459293611347675, - -0.019822360947728157, - 0.008872989565134048, - -0.0024165352806448936, - 0.004936245270073414, - -0.013864045962691307, - 0.040857020765542984, - 0.01851978525519371, - 0.02806340716779232, - -0.009311479516327381, - -0.03409910202026367, - -0.00545211648568511, - 0.018365023657679558, - 0.05132921040058136, - -0.012503434903919697, - 0.01965470239520073, - -0.011304032988846302, - -0.002229531994089484, - -0.00019445935322437435, - -0.005861589685082436, - 0.02860507182776928, - -0.01120085921138525, - -0.022853106260299683, - -0.0037529647815972567, - 0.012812957167625427, - 0.017436455935239792, - -0.001230031019076705, - -0.031829267740249634, - -0.011549072340130806, - -0.010227152146399021, - -0.01690768636763096, - 0.01577276922762394, - 0.016675544902682304, - 0.007273787632584572, - 0.01960311457514763, - -0.009550070390105247, - 0.029043562710285187, - 0.014341226778924465, - 0.004201128147542477, - 0.026618966832756996, - 0.021099142730236053, - -0.004239818546921015, - 0.013799561187624931, - -0.022827312350273132, - 0.01617257110774517, - 0.01938387006521225, - -0.021950330585241318, - -0.010098183527588844, - 0.016056498512625694, - -0.0032209723722189665, - -0.009936974383890629, - -0.03280942514538765, - 0.00867953710258007, - -0.026386825367808342, - 0.01827474683523178, - -0.0037529647815972567, - 0.017836255952715874, - 0.0104979844763875, - 0.0037561890203505754, - 0.0008705331129021943, - -0.01103964913636446, - -0.01240026019513607, - -0.004378458950668573, - 0.002827620366588235, - -0.016843203455209732, - -0.008898782543838024, - -0.028553485870361328, - 0.024194370955228806, - 0.012135876342654228, - -0.004559013992547989, - -0.014225155115127563, - 0.01176831778138876, - 0.021963227540254593, - 0.00820880476385355, - 0.03095228783786297, - -0.0008818177739158273, - 0.004668636713176966, - 0.018081294372677803, - -0.014341226778924465, - -0.027186425402760506, - -0.021924536675214767, - 0.02873403951525688, - 0.0010164279956370592, - -0.015940427780151367, - -0.015682492405176163, - 0.0071061295457184315, - -0.030023718252778053, - -0.0072222002781927586, - -0.01160710770636797, - -0.00867953710258007, - -0.002316585276275873, - -0.03043641708791256, - 0.008170113898813725, - -0.00016352722013834864, - 0.019396767020225525, - 0.013670593500137329, - -0.012555021792650223, - 0.018777720630168915, - 0.014083290472626686, - -0.028372930362820625, - -0.02590964362025261, - -0.019370973110198975, - 0.025754882022738457, - 0.011213756166398525, - -0.029146738350391388, - 0.0040044523775577545, - 0.004288181662559509, - -0.03172609582543373, - -0.0006742601399309933, - -0.016082292422652245, - -0.006828848272562027, - -0.020957278087735176, - 0.00807338859885931, - 0.0104979844763875, - 0.013148274272680283, - 6.735548231517896e-05, - 0.03381537273526192, - 0.014573369175195694, - -0.011058994568884373, - -0.023871952667832375, - -0.005455340724438429, - 0.020776722580194473, - 0.032499901950359344, - -0.001005949336104095, - 0.003791655180975795, - 0.04062487930059433, - -0.012961270287632942, - -0.026051508262753487, - 0.012909683398902416, - -0.031287603080272675, - 0.019809463992714882, - -0.001837792107835412, - 0.0014928029850125313, - 0.007905730046331882, - 0.038432423025369644, - -0.011187962256371975, - 0.010149771347641945, - -0.0016846427461132407, - -0.0020376923494040966, - -0.009556518867611885, - 0.02170529216527939, - -0.0012139100581407547, - -0.0033886306919157505, - -0.011865044012665749, - -0.006667638663202524, - 0.016701338812708855, - 0.0011526503367349505, - -0.009666141122579575, - 0.02180846594274044, - 0.018687443807721138, - 0.00014559262490365654, - -0.030616970732808113, - -0.007254442200064659, - 0.021253904327750206, - 0.012593711726367474, - 0.009085786528885365, - -0.034279659390449524, - 0.020983071997761726, - -0.007763865403831005, - 0.004639619030058384, - 0.021357078105211258, - 0.004255939740687609, - 0.027908645570278168, - 0.019151728600263596, - 0.011046097613871098, - -0.029997926205396652, - -0.010730125941336155, - 0.002418147400021553, - 0.008879437111318111, - 0.013077341951429844, - 0.004700878635048866, - -0.010517328977584839, - 0.018558476120233536, - 0.004181783180683851, - -0.020260851830244064, - 0.0024245958775281906, - 0.02040271647274494, - -0.01978367008268833, - 0.0051812841556966305, - 0.005078109912574291, - -0.0019570873118937016, - -0.005145817995071411, - -0.003965761978179216, - -0.032525695860385895, - 0.007660691160708666, - -0.022195369005203247, - -0.011858595535159111, - -0.019938431680202484, - -0.023871952667832375, - -0.01609518937766552, - -0.03448600694537163, - -0.0022875675931572914, - 0.02151183970272541, - -0.018042603507637978, - -0.010594709776341915, - -0.019590219482779503, - 0.0267995223402977, - -0.008028249256312847, - 0.018094191327691078, - -0.008163665421307087, - 0.00924699567258358, - 0.0012929028598591685, - -0.010639849118888378, - -0.014147775247693062, - -0.024942385032773018, - -0.027599122375249863, - 0.0038142246194183826, - 0.016546577215194702, - -0.0069320229813456535, - 0.0034305450972169638, - 0.0031290827319025993, - 0.007422100752592087, - -0.006899780593812466, - -0.0018506888300180435, - -0.003801327897235751, - 0.00300978752784431, - 0.013889838941395283, - 0.003939968068152666, - -0.009524276480078697, - -0.00512324832379818, - 0.02857927978038788, - -0.03879353404045105, - -0.002687367843464017, - -0.004633170552551746, - 0.0034079758916050196, - -0.013012857176363468, - 0.008305530063807964, - -0.021357078105211258, - -0.019306490197777748, - -0.018184468150138855, - -0.003469235496595502, - 0.010730125941336155, - 0.02200191840529442, - -0.025896746665239334, - 0.015966221690177917, - 0.016972171142697334, - -0.020712239667773247, - 0.01730748824775219, - 0.020776722580194473, - 0.025110043585300446, - 0.04294629767537117, - -0.01965470239520073, - -0.00837001483887434, - -0.0238590557128191, - 0.008350669406354427, - 0.022543583065271378, - 0.008531223982572556, - 0.03711695224046707, - 0.004733120556920767, - 0.0010712393559515476, - -0.03348005935549736, - -0.004039918538182974, - 0.010723678395152092, - 0.02752174250781536, - 0.01272268034517765, - -0.0033209226094186306, - -0.018584270030260086, - 0.014418607577681541, - 0.007331822998821735, - 0.014276742935180664, - -0.015411660075187683, - -0.020750928670167923, - -0.016327330842614174, - -0.0018297316273674369, - -0.0019619236700236797, - -0.007299581076949835, - -0.004707327112555504, - -0.024658655747771263, - -0.015140827745199203, - 0.01462495606392622, - -0.0049104513600468636, - 0.014173568226397038, - -0.006674087140709162, - -0.013902735896408558, - -0.02512294054031372, - -0.02747015468776226, - -0.006545118987560272, - -0.04186296835541725, - 0.014908685348927975, - -0.026980077847838402, - 0.024323338642716408, - 0.024903694167733192, - 0.032009825110435486, - -0.0003197999903932214, - 0.006906229071319103, - 0.009775764308869839, - -0.004923348315060139, - 0.0027163857594132423, - -0.0089116794988513, - 0.00027607183437794447, - -0.030126893892884254, - 0.022092195227742195, - 0.012000460177659988, - 0.004865312483161688, - 0.007247994188219309, - 0.01056891679763794, - 0.011819904670119286, - 0.0388709157705307, - -0.010871990583837032, - -0.015295588411390781, - -0.0042688362300395966, - -0.0208154134452343, - 0.007209303788840771, - 0.025819366797804832, - 0.008241046220064163, - 0.015901736915111542, - -0.03706536442041397, - 0.0034466662909835577, - 0.007628449238836765, - -0.013541625812649727, - -0.018326332792639732, - -0.01965470239520073, - 0.024877900257706642, - -0.05011691153049469, - 0.01755252666771412, - 0.008860092610120773, - -0.009375963360071182, - -0.006429048255085945, - 0.008118527010083199, - -0.025793572887778282, - -0.0073705133982002735, - -0.004559013992547989, - 0.00027042950387112796, - 0.008660192601382732, - -0.005658464971929789, - -0.02806340716779232, - 0.019538631662726402, - -0.027702298015356064, - 0.002877595601603389, - -0.011323378421366215, - 0.004068936221301556, - -0.0054875826463103294, - -0.015837254002690315, - -0.0022746706381440163, - -0.004043142776936293, - -0.016456300392746925, - 0.03417648375034332, - 0.022337233647704124, - 0.007357616908848286, - 0.031803473830223083, - 0.0008568302728235722, - -0.018184468150138855, - 0.0025761330034583807, - -0.016004912555217743, - 0.013670593500137329, - -0.008724676445126534, - 0.03422807157039642, - 0.0005739069893024862, - -0.013954322785139084, - -0.0179523266851902, - -0.053960155695676804, - -0.0021843931172043085, - -0.004243042785674334, - 0.009782212786376476, - 0.002608375158160925, - -0.026722142472863197, - -0.008124975487589836, - 0.002377845114096999, - 0.019022760912775993, - -0.006944919470697641, - -0.014250949025154114, - 0.03623997047543526, - 0.023356080055236816, - 0.005242543760687113, - -0.002171496395021677, - -0.004678309429436922, - 0.0036401180550456047, - 0.00591640081256628, - 0.011581314727663994, - -0.003952865023165941, - -0.014470194466412067, - -0.00508778216317296, - -0.0067708129063248634, - 0.043952248990535736, - 0.0020683221518993378, - 0.026399722322821617, - 0.00804759468883276, - -0.008860092610120773, - 0.005745518486946821, - -0.014753923751413822, - -0.013631903566420078, - -0.004791156388819218, - -0.011542623862624168, - 0.0149602722376585, - 0.001358998822979629, - 0.0032516024075448513, - 0.0328352190554142, - 0.006964264903217554, - -0.01784915290772915, - -0.012187463231384754, - 0.009969215840101242, - 0.015308485366404057, - -0.010343222878873348, - 0.001924845390021801, - 0.017565423622727394, - 0.005635895766317844, - 0.02232433669269085, - -0.0036659114994108677, - -0.0004292211669962853, - 0.00046629944699816406, - -0.0073189265094697475, - -0.015992015600204468, - -0.014018806628882885, - 0.006445168983191252, - -0.006222699303179979, - -0.023846158757805824, - 0.014637853018939495, - -0.03634314611554146, - -0.0014121981803327799, - -0.024323338642716408, - 0.009388860315084457, - -0.03151974454522133, - -0.024336235597729683, - -0.0017910412279888988, - 0.02296917699277401, - 0.002166660036891699, - -0.02173108607530594, - -0.012161669321358204, - -0.007950868457555771, - 0.020712239667773247, - -0.05076175183057785, - 0.024194370955228806, - 0.024220164865255356, - -0.014470194466412067, - -0.012097185477614403, - 0.015695389360189438, - 0.010762368328869343, - -0.016327330842614174, - 0.04547407105565071, - -0.008653744123876095, - -0.013541625812649727, - -0.006067938171327114, - -0.0012848423793911934, - 0.006509652826935053, - -0.017268797382712364, - -0.015321382321417332, - 0.0015218207845464349, - 0.008311978541314602, - 0.007905730046331882, - 0.000899550854228437, - 6.614640733459964e-05, - 0.004007676616311073, - 0.02146025188267231, - -0.0022005143109709024, - 0.009762867353856564, - -0.021898742765188217, - 0.01946124993264675, - 0.030900700017809868, - 0.008795608766376972, - -0.011491036973893642, - -0.015321382321417332, - -0.01011108048260212, - -0.003098452929407358, - -0.005735845770686865, - -0.00031274708453565836, - 0.019551528617739677, - 0.006751467939466238, - -0.024116991087794304, - -0.01399301365017891, - 0.001666909665800631, - -0.005590756889432669, - 0.00018811172049026936, - -0.010897784493863583, - -0.015334279276430607, - 0.020686445757746696, - 0.029507847502827644, - 0.0039496407844126225, - -0.01031098049134016, - 0.01459916215389967, - 0.006964264903217554, - -0.05561094358563423, - 0.018648752942681313, - -0.013477141968905926, - 0.012116530910134315, - -0.005319924559444189, - -0.034357041120529175, - -3.858960189973004e-05, - 0.0008802056545391679, - -0.022659653797745705, - -0.0035820824559777975, - 0.013722180388867855, - -0.002316585276275873, - 0.0008947145543061197, - 0.03825186938047409, - -0.003291904693469405, - 0.017488041892647743, - -0.0013654473004862666, - 0.027289601042866707, - -0.015656698495149612, - 0.00793797243386507, - 0.0024923039600253105, - 0.0007508347625844181, - -9.576871525496244e-05, - -0.015953324735164642, - -0.02924991212785244, - -0.010910681448876858, - 0.03941258043050766, - -0.006867538671940565, - 0.008395807817578316, - 0.04289471358060837, - -0.006738570984452963, - -0.021176522597670555, - -0.006532222498208284, - 0.011265343055129051, - 0.004065711982548237, - -0.0023407668340951204, - 0.020364025607705116, - -0.024052506312727928, - 0.002437492599710822, - -8.342608634848148e-05, - 0.011091236025094986, - -0.0328352190554142, - 0.007048093713819981, - 0.002224695635959506, - 0.004255939740687609, - 0.014753923751413822, - 0.022014815360307693, - -0.008324875496327877, - 0.006325874011963606, - -0.007512378040701151, - 0.03384116664528847, - 0.030023718252778053, - -0.011574866250157356, - 0.008195907808840275, - 0.026567380875349045, - -0.004207576625049114, - -0.015979118645191193, - -0.001837792107835412, - -0.03051379695534706, - 0.026051508262753487, - 0.002326257759705186, - -0.026593172922730446, - 0.012077840976417065, - 0.002558399923145771, - 0.00305976253002882, - -0.010304532013833523, - 0.003045253688469529, - -0.0008479637326672673, - -0.006841745227575302, - -0.03703957051038742, - 0.029972132295370102, - 0.005013625603169203, - -0.0058067780919373035, - 0.017371971160173416, - -0.011839250102639198, - -0.004097953904420137, - -0.004775035195052624, - -0.017475144937634468, - -0.014947375282645226, - -0.024865005165338516, - -0.026541586965322495, - -8.806087134871632e-05, - -0.006764364428818226, - 0.00014518960961140692, - -0.023201318457722664, - -0.012155220843851566, - -0.0477181114256382, - -0.02736698091030121, - 0.19417402148246765, - -0.025793572887778282, - -0.0004497754271142185, - -0.002263386035338044, - -0.018094191327691078, - -0.031906649470329285, - 0.01430253591388464, - -0.0025148733984678984, - 0.010104632005095482, - 0.02237592451274395, - -0.0007355198613367975, - 0.013967219740152359, - -0.014779717661440372, - 0.00521675031632185, - 0.0010744634782895446, - -0.0419403500854969, - -0.03582727164030075, - -0.01811998523771763, - 0.0025648484006524086, - 0.04013479873538017, - 0.034305453300476074, - -0.005045867525041103, - -0.0003451905504334718, - -0.028347136452794075, - 0.03884512186050415, - 0.0063162012957036495, - 0.0008963266736827791, - 0.016752924770116806, - 0.032009825110435486, - 0.00731247803196311, - -0.011935976333916187, - 0.00041088357102125883, - 0.0073189265094697475, - -0.015721183270215988, - 0.007415652275085449, - 0.0180039145052433, - 0.01711403578519821, - -0.020609064027667046, - 0.029456259682774544, - -0.004639619030058384, - 0.03146816045045853, - -0.020905690267682076, - -0.001378344022668898, - -0.030178479850292206, - 0.009188960306346416, - 0.01849399134516716, - -0.00715126795694232, - -0.005932522006332874, - -0.00023798600886948407, - -0.0032241966109722853, - -0.02620626986026764, - 0.018700340762734413, - 0.008872989565134048, - 0.03327370807528496, - 0.0006214639288373291, - 0.03807131201028824, - -0.005671361926943064, - -0.00924699567258358, - 0.007357616908848286, - 0.004997504875063896, - -0.04635104909539223, - 0.02180846594274044, - -0.004720224067568779, - 0.021692395210266113, - 0.012812957167625427, - 0.029069356620311737, - -0.01176831778138876, - -0.02623206377029419, - 0.0036691357381641865, - -0.029404673725366592, - 0.0003790446207858622, - -0.02084120735526085, - -0.007164164911955595, - 0.02269834466278553, - -0.01229063794016838, - -0.029972132295370102, - 0.012471192516386509, - -0.00034196634078398347, - 0.012883889488875866, - 0.018210262060165405, - -0.013670593500137329, - 0.01376087125390768, - -0.014341226778924465, - -0.033660613000392914, - -0.001454112702049315, - -0.005768087692558765, - 0.012980615720152855, - 0.02129259519279003, - 0.0031838940922170877, - -0.02059616893529892, - 8.856465137796476e-05, - -0.0025874178390949965, - 0.0017233331454917789, - -0.0007322956807911396, - 0.012303533963859081, - 0.006654741708189249, - 0.007860591635107994, - 0.015695389360189438, - -0.003314474131911993, - 0.0024971403181552887, - -0.036188382655382156, - 0.06376171112060547, - 0.033118948340415955, - -0.01153617538511753, - 0.0030162360053509474, - -0.014457297511398792, - -0.020660651847720146, - 0.032009825110435486, - -0.00020171380310785025, - -0.01725590042769909, - 0.00032121059484779835, - -0.004594480153173208, - 0.012316430918872356, - -0.011439450085163116, - -0.01210363395512104, - 0.010214255191385746, - 0.004936245270073414, - 0.019125934690237045, - 0.018726134672760963, - 0.007351168431341648, - -0.025032661855220795, - 0.0030662110075354576, - 0.00907288957387209, - -0.0027308946009725332, - -0.0005392468883655965, - -0.01757832057774067, - -0.02353663556277752, - 0.0073963068425655365, - -0.0046976543962955475, - 0.011381413787603378, - 0.0024923039600253105, - -0.015437453053891659, - -0.0023101367987692356, - -0.006225923541933298, - 0.007196406833827496, - -0.0026454534381628036, - -0.009730624966323376, - -0.016585268080234528, - -0.002281119115650654, - 0.017939429730176926, - 0.004807277116924524, - 0.012406708672642708, - -0.014392813667654991, - -0.012935477308928967, - 0.017423558980226517, - -0.007209303788840771, - 0.00834422092884779, - -0.0104335006326437, - -0.025406669825315475, - -0.03038482926785946, - -0.010304532013833523, - -0.004678309429436922, - 0.008866541087627411, - -0.026051508262753487, - 0.014973169192671776, - 0.006364563945680857, - -0.01851978525519371, - -0.025922540575265884, - 0.029043562710285187, - 0.01730748824775219, - -0.00524899223819375, - -0.006990058347582817, - 0.016856100410223007, - -0.016972171142697334, - 0.0036272211000323296, - -0.0007911372231319547, - -0.1609518975019455, - 0.018107088282704353, - -0.0006299274391494691, - -0.010859094560146332, - 0.019499940797686577, - 0.01876482367515564, - -0.0019377422286197543, - 0.02437492646276951, - -0.023742983117699623, - 0.008860092610120773, - 0.010846197605133057, - 0.0017056000651791692, - -0.028192374855279922, - -0.03703957051038742, - -0.01519241463392973, - -0.0267995223402977, - -0.023523738607764244, - 0.0067450194619596004, - 0.028991976752877235, - 0.020235057920217514, - 0.011052546091377735, - -0.01160710770636797, - 0.030565384775400162, - 0.017462249845266342, - -0.011117029935121536, - 0.016017809510231018, - -0.012980615720152855, - 0.006541894748806953, - 0.0021102367900311947, - -0.014766820706427097, - -0.005052316002547741, - -0.018945379182696342, - 0.023575326427817345, - 3.49371948686894e-05, - -0.03683322295546532, - -0.01792653277516365, - -0.0049781594425439835, - -0.0009591985144652426, - -0.016430506482720375, - 0.019525734707713127, - 0.020995968952775, - 0.03709115833044052, - -0.016881894320249557, - 0.01310313493013382, - -0.010942922905087471, - -0.005026522558182478, - 0.022569376975297928, - -0.0031290827319025993, - -0.018906688317656517, - -0.0359046533703804, - -0.0018103864276781678, - 0.007905730046331882, - -0.014818407595157623, - 0.020557478070259094, - 0.00469120591878891, - 0.015579317696392536, - 0.012625954113900661, - 0.01738486811518669, - 0.0004937050980515778, - 0.001973208272829652, - 0.013038651086390018, - -0.014457297511398792, - -0.0006722449907101691, - 0.005071661435067654, - 0.014199362136423588, - -0.03053959086537361, - -0.025484049692749977, - 0.008331323973834515, - -0.008124975487589836, - 0.006886884104460478, - 0.0016604613047093153, - -0.016353124752640724, - -0.0019603115506470203, - 0.011678040027618408, - 3.1587052944814786e-05, - 0.0023214216344058514, - -0.017617009580135345, - 0.023652706295251846, - 0.012174566276371479, - -0.024645758792757988, - -0.029069356620311737, - 0.022762827575206757, - -0.009343721903860569, - -0.03404751792550087, - -0.002877595601603389, - -0.02153763361275196, - -0.006977161392569542, - -0.0043655624613165855, - -0.004014124628156424, - -0.0028759834822267294, - 0.01378666516393423, - -0.03167450800538063, - -0.019538631662726402, - -0.01604360155761242, - 0.010813955217599869, - 0.0018764823907986283, - -0.011084787547588348, - -0.014792613685131073, - 0.009582312777638435, - -0.00016906880773603916, - 0.012567918747663498, - 0.004075384698808193, - -0.025948334485292435, - 0.007002955302596092, - 0.001383986440487206, - 0.022014815360307693, - -0.01698506809771061, - 0.009717728942632675, - 0.04635104909539223, - -0.007667139638215303, - -0.00565524073317647, - 0.0003014623944181949, - 0.017965223640203476, - 0.023807467892766, - 0.007099681068211794, - 0.009311479516327381, - -0.005448892246931791, - -0.01153617538511753, - 0.028269756585359573, - 0.02289179526269436, - 0.06644424051046371, - -0.013096686452627182, - -0.013631903566420078, - 0.015695389360189438, - -0.007712278515100479, - -0.029043562710285187, - -0.08811084181070328, - 0.0022504893131554127, - 0.02124100737273693, - 0.02024795487523079, - 0.008311978541314602, - 0.03358323127031326, - -0.009027750231325626, - -0.003071047365665436, - -0.002574521116912365, - 0.03768441081047058, - -0.04044432193040848, - -0.03046220913529396, - -0.017513835802674294, - -0.010917129926383495, - 0.02213088609278202, - -0.015979118645191193, - -0.012155220843851566, - -0.0179007388651371, - -0.010523777455091476, - 0.030255861580371857, - 0.0011566805187612772, - -0.0041237473487854, - -0.016572371125221252, - 0.0023036885540932417, - -0.028914595022797585, - 0.0006121943588368595, - -0.03889670968055725, - -0.0036465662997215986, - 0.02151183970272541, - -0.01690768636763096, - 0.012999961152672768, - -0.02425885573029518, - 0.0035530647728592157, - -0.04673795402050018, - 0.04304947331547737, - 0.008466740138828754, - -0.016262847930192947, - -0.011046097613871098, - 0.039025675505399704, - -0.009163166396319866, - -0.013045099563896656, - 0.007673588115721941, - 0.003511150134727359, - -0.038535598665475845, - -0.0026035388000309467, - -0.017101138830184937, - 0.002050589071586728, - 0.002019959269091487, - 0.000986604136414826, - 0.005368287209421396, - -0.009092234075069427, - -0.013619006611406803, - -0.0298689566552639, - 0.001425900962203741, - 0.025703296065330505, - 0.009479138068854809, - -0.013812458142638206, - -0.006706329062581062, - -0.007415652275085449, - -0.006873987149447203, - -0.004126971587538719, - 0.01040770672261715, - -0.019422560930252075, - 0.05009111762046814, - -0.017268797382712364, - 0.00837001483887434, - -0.03693639487028122, - -0.0003482132451608777, - 0.022788621485233307, - -0.011961769312620163, - -0.0027051009237766266, - 0.029456259682774544, - 0.001184892258606851, - 0.009601657278835773, - -0.034924499690532684, - -0.0009213141747750342, - -0.04596414789557457, - -0.00395608926191926, - 0.024736035615205765, - -0.0007556710625067353, - -0.000829424592666328, - -0.03438283130526543, - 0.023446358740329742, - -0.010826852172613144, - 0.028450310230255127, - 0.02458127588033676, - -0.01755252666771412, - -0.009350170381367207, - 0.012645299546420574, - -0.019538631662726402, - 0.009608105756342411, - 0.012122979387640953, - 0.039593134075403214, - 0.007944420911371708, - -0.007383410353213549, - -0.0014928029850125313, - -0.011819904670119286, - -0.006090507376939058, - -0.0061291977763175964, - 0.021679498255252838, - -0.011071891523897648, - -0.006067938171327114, - -0.04764072969555855, - 0.01523110456764698, - 0.03507925942540169, - -0.01668844185769558, - -0.002893716562539339, - -0.004942693281918764, - 0.003785206936299801, - -0.00201189867220819, - 0.020338231697678566, - 0.01606939546763897, - -0.02051878720521927, - -0.003933520056307316, - 0.010020802728831768, - -0.01220036018639803, - -0.024955281987786293, - -0.02124100737273693, - 0.016623957082629204, - 0.016572371125221252, - -0.005668137688189745, - 0.004768586717545986, - -0.002614823402836919, - -0.011981114745140076, - 0.028759833425283432, - 0.020480096340179443, - -0.013644800521433353, - 0.005497255362570286, - -0.0004493723972700536, - -0.007686484605073929, - -0.015127930790185928, - 0.006674087140709162, - 0.022608065977692604, - -0.004929796792566776, - 0.0011349172564223409, - 0.010968716815114021, - -0.007950868457555771, - -0.01029808446764946, - 0.0045493412762880325, - 0.022221162915229797, - 0.0018458525883033872, - 0.08439657092094421, - -0.012845199555158615, - -0.0209443811327219, - 0.00791217852383852, - -0.017462249845266342, - 0.0032258087303489447, - 0.0016266071470454335, - 0.011420104652643204, - 0.004168886225670576, - 0.009904731996357441, - -0.006977161392569542, - 0.034279659390449524, - 0.021369975060224533, - 0.011910182423889637, - -0.014650749042630196, - 0.019190417602658272, - -0.01525689847767353, - 0.023652706295251846, - 0.012754921801388264, - 0.021640807390213013, - -0.015630904585123062, - 0.03688481077551842, - 0.008782711811363697, - 0.006403254345059395, - -0.023330286145210266, - -0.004133420065045357, - -0.02418147400021553, - -0.02307235077023506, - -0.01671423576772213, - -0.0015024755848571658, - -0.017488041892647743, - -0.009156718850135803, - 0.001157486578449607, - 0.010781713761389256, - 0.01646919548511505, - 0.010762368328869343, - 0.009118027985095978, - 0.017449352890253067, - -0.0010446397354826331, - 0.0066224997863173485, - 0.026593172922730446, - 0.0018813187489286065, - 0.011387862265110016, - -0.008008904755115509, - 0.005252216476947069, - 0.01582435704767704, - 0.011645798571407795, - -0.006532222498208284, - 0.016804512590169907, - -0.0037561890203505754, - 0.00761555228382349, - -0.021124936640262604, - 0.008634398691356182, - -0.008918127976357937, - 0.022827312350273132, - 0.00875046942383051, - 0.020660651847720146, - 0.008440947160124779, - -0.006432272493839264, - 0.034279659390449524, - 0.014702336862683296, - -0.00415921350941062, - 0.00774452043697238, - 0.011716730892658234, - -0.03995424509048462, - -0.03097808174788952, - 0.002281119115650654, - -0.023136835545301437, - -0.0360594168305397, - 0.004504202865064144, - 0.023523738607764244, - -0.016185466200113297, - -0.005294130649417639, - 0.025135837495326996, - -0.002676083240658045, - -0.021769775077700615, - 0.018455302342772484, - -0.022285647690296173, - -0.01579856313765049, - -0.029120944440364838, - 0.031287603080272675, - 0.021692395210266113, - 0.012438950128853321, - 6.151162961032242e-05, - -0.00684819370508194, - 0.01378666516393423, - -0.010581813752651215, - 0.003569185733795166, - -0.01176831778138876, - 0.018751926720142365, - 0.008537672460079193, - -0.011549072340130806, - -0.007673588115721941, - -0.01399301365017891, - -0.007854143157601357, - -0.015863047912716866, - -0.0104979844763875, - 0.03033324144780636, - 0.010697884485125542, - 0.008660192601382732, - 0.10508301854133606, - 0.014444400556385517, - -0.011181513778865337, - 0.011781214736402035, - -0.00280666328035295, - 0.0006738571100868285, - 0.011748972348868847, - 0.0023665602784603834, - -0.0050748856738209724, - -0.02924991212785244, - 0.005793881136924028, - -0.011104132980108261, - 0.011935976333916187, - -0.003998003900051117, - -0.00357563397847116, - 0.022530686110258102, - -0.0061936816200613976, - 0.013812458142638206, - -0.004749241750687361, - 0.005397305358201265, - 0.016133880242705345, - -0.017668597400188446, - -0.008118527010083199, - 0.023820364847779274, - -0.018365023657679558, - -0.031339190900325775, - 0.011781214736402035, - -0.006438720505684614, - 0.0026551259215921164, - 9.778383537195623e-05, - -0.0011187961790710688, - 0.002885655965656042, - -0.0779481753706932, - -0.0356467179954052, - 0.020286645740270615, - -0.016778718680143356, - -0.0032209723722189665, - -0.02927570603787899, - 0.027212219312787056, - 0.011981114745140076, - 0.008769814856350422, - 0.014315432868897915, - -0.017488041892647743, - -0.03956734016537666, - -0.030178479850292206, - 0.003037193324416876, - -0.0012397036189213395, - -0.017075344920158386, - -0.027753883972764015 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 3, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 356 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000004.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000004.json deleted file mode 100644 index 1b494e3d5e544b13d123e486ecee9b99aae5c35b..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000004.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000004", - "content": "Die Ladetr\u00e4ger sind spezielle und genormte Lade- oder Transporthilfsmittel wie beispielsweise Schach- teln, Beh\u00e4lter oder Paletten. Eine Logistikkette entsteht aus den einzelnen logistischen Prozessanteilen, die den Lauf einer Ladeeinheit darstellt. Zu Beginn steht das einzelne Packst\u00fcck, welches zu einer Ladeeinheit, durch die Lagerung auf beispielsweise einer Normpalette, gebildet wird. Die Ladeeinheit wird im Lager zwischengelagert, bis der Auf- trag zur Auslieferung erteilt wird. Am Tag der Auslieferung wird die Ladeeinheit in das Transportfahrzeug umgeschlagen und zu dem jeweiligen Auslieferungsort transportiert. Dort angekommen wird die Ladeeinheit in das Auslieferungslager umgeschlagen und wieder zwischengelagert. [5]\n\n## F\u00f6rdern und Transportieren\n\nF\u00fcr den Umschlag der Ladeeinheiten sind Transportmittel notwendig und realisieren so- mit die logistischen Funktionen das Transportieren, Umschlagens, Stapelns, Lagern und Kommissionierens. Die Hauptfunktion eines Transportmittels besteht darin, G\u00fcter ent- lang der verschiedenen Produktions- und Vertriebsprozesse zu transportieren. Trans- port bedeutet, dass ein Gegenstand von einem Ausgangsort abgeholt und zu einem Be- stimmungsort gebracht wird, wo er ben\u00f6tigt wird. Der Transport kann entweder von Menschen oder automatisiert durchgef\u00fchrt werden. In der Praxis werden bevorzugt von Menschen gesteuerte Techniken, wie Flurf\u00f6rderger\u00e4te, f\u00fcr den Umschlag in ein Trans- portmittel verwendet. Beispiele f\u00fcr Flurf\u00f6rderger\u00e4te sind Handgabelhubwagen, Gabel- stapler und andere. Es gibt verschiedene Kriterien, die bei der Auswahl eines geeigneten Flurf\u00f6rderger\u00e4ts eine Rolle spielen, wie die Anzahl der zu transportierenden Einheiten und die Art der Transportg\u00fcter. Je nach Gewicht und Gr\u00f6\u00dfe der G\u00fcter wird das passende Flurf\u00f6rderger\u00e4t ausgew\u00e4hlt. Durch die Verwendung von Normpaletten als Transportein- heiten k\u00f6nnen verschiedene Flurf\u00f6rderger\u00e4te eingesetzt werden. Flurf\u00f6rderger\u00e4te k\u00f6n- nen je nach Antriebsart (z.B. Elektro), Bedienungsart (z.B. Automatik) und Bauart (z.B. Schmalgangstapler) unterschieden werden. Flurf\u00f6rderger\u00e4te k\u00f6nnen je nach Antriebs- art (z.B. Elektro), Bedienungsart (z.B. Automatik) und Bauart (z.B. Schmalgangstapler)\n\n## unterschieden werden. [10, 3, 5]\n\n7\n2 Grundlagen\n\n## Verladezone\n\nDer Umschlagspunkt in der Logistik ist der zentrale Bereich einer Spedition, wo die G\u00fcter von den Kunden ankommen, gelagert und f\u00fcr den Weitertransport vorbereitet werden. Eine geeignete Verladestation ist entscheidend f\u00fcr eine sichere und effiziente Verla- dung.", - "embedding": [ - 0.011753558181226254, - 0.010035781189799309, - 0.02218574844300747, - -0.010993772186338902, - -0.008351038210093975, - 0.004882450681179762, - -0.004320869687944651, - -0.008436927571892738, - -0.0010372729739174247, - -0.03348343446850777, - 0.013431694358587265, - 0.022859646007418633, - -0.032690614461898804, - 0.018076298758387566, - 0.006857893895357847, - 0.003993831109255552, - 0.03086712956428528, - 0.01938445121049881, - -0.0013486200477927923, - 0.0010091939475387335, - -0.042310167104005814, - -0.01285689976066351, - 0.01881626434624195, - -0.012757796794176102, - -0.016530299559235573, - 0.01163463480770588, - 0.03961457684636116, - -0.004198642913252115, - 0.0036700963973999023, - -0.007895166985690594, - -0.007505363784730434, - -0.010405763983726501, - -0.014852163381874561, - -0.00180696917232126, - -0.021141869947314262, - -0.020309409126639366, - -0.001727687194943428, - -0.015539273619651794, - 0.01950337551534176, - -0.020071562379598618, - 0.025793081149458885, - 0.017415614798665047, - -0.0036502759903669357, - -0.014376470819115639, - 0.002982985693961382, - 0.015552488155663013, - -0.02490776591002941, - -0.012870113365352154, - -0.023744961246848106, - 0.016503872349858284, - 0.030047882348299026, - 0.02385067194700241, - -0.02872651442885399, - -0.01236138679087162, - -0.015195718966424465, - -0.013385445810854435, - -0.018829477950930595, - -0.008714414201676846, - 0.017270265147089958, - -0.031607095152139664, - -0.03261133283376694, - 0.010187738575041294, - -0.014997513964772224, - 0.00836425181478262, - -0.009130644612014294, - -0.013140993192791939, - 0.00846996158361435, - -0.007465722505003214, - -0.012790830805897713, - -0.015631768852472305, - 0.01655672676861286, - 0.029228635132312775, - 0.022291459143161774, - 0.012354779988527298, - 0.028647232800722122, - -0.017468469217419624, - 0.005301984492689371, - 0.00958651676774025, - -0.02209325321018696, - 0.010286840610206127, - 0.017177768051624298, - -0.02930791676044464, - -0.018644485622644424, - 0.050608351826667786, - 0.02408851683139801, - -0.015195718966424465, - 0.019067322835326195, - 0.010478438809514046, - -0.011991403996944427, - 0.01851234957575798, - -0.010623789392411709, - 0.0012701639207080007, - 0.004287835210561752, - 0.021934689953923225, - 0.007353406399488449, - -0.00644496688619256, - 0.0020712425466626883, - 0.03475194796919823, - 0.004026865586638451, - -0.041438065469264984, - -0.006791825406253338, - 0.029598617926239967, - -0.030074309557676315, - -0.0020662874449044466, - -0.030074309557676315, - -0.009804542176425457, - 0.002241368405520916, - 0.002176951849833131, - 0.0017788901459425688, - -0.024709559977054596, - -0.02973075397312641, - 0.05092547833919525, - -0.012110327370464802, - 0.0049022710882127285, - 0.016768144443631172, - -0.01010184921324253, - 0.026969097554683685, - -0.030153591185808182, - 0.006243458483368158, - -0.023163560777902603, - 0.020520826801657677, - 0.01875019632279873, - 0.008872978389263153, - 0.004297745879739523, - 0.036099743098020554, - 0.021815765649080276, - 0.01935802400112152, - 0.014812522567808628, - -0.008575670421123505, - -0.013715787790715694, - -0.022436808794736862, - -0.004155698698014021, - -0.0004143723926972598, - 0.006722453981637955, - -0.011264652013778687, - -4.7822122724028304e-05, - -0.009084396995604038, - 0.009692225605249405, - -0.01754775084555149, - -0.030682137235999107, - 0.0261102095246315, - 0.00608159089460969, - -0.0204679723829031, - -0.011674275621771812, - 0.002505641896277666, - 0.028567951172590256, - 0.01938445121049881, - 0.020031921565532684, - -0.012473703362047672, - 0.0049022710882127285, - 0.008740841411054134, - -0.012737976387143135, - 0.019556229934096336, - -0.0284622423350811, - -4.219599213683978e-05, - 0.01096073817461729, - -0.02074545994400978, - -0.004971642512828112, - -0.00663986848667264, - -0.03205636143684387, - 0.02825082279741764, - 0.0015212235739454627, - 0.01649065874516964, - -0.0053482321090996265, - 0.01331277098506689, - 0.020150844007730484, - 0.003047402249649167, - 0.002137310802936554, - 0.004581839311867952, - -0.003974010702222586, - -0.00755161140114069, - -0.001261905301362276, - -0.011905515566468239, - 0.02589878998696804, - -0.02429993636906147, - -0.005771069787442684, - 0.01691349595785141, - -0.006656385492533445, - -0.05650164559483528, - -0.02933434396982193, - -0.0049353050999343395, - 0.00513351010158658, - 0.021577920764684677, - 0.004832899197936058, - -0.039059605449438095, - -0.0216439887881279, - 0.010570934973657131, - 0.009348670020699501, - -0.011396788991987705, - 0.00015051194350235164, - -0.0058140140026807785, - 0.01860484480857849, - 0.004291138611733913, - -0.013662933371961117, - -0.622416615486145, - -0.003977314103394747, - -0.00024734335602261126, - -0.019159819930791855, - -0.001963881542906165, - 0.03533335030078888, - 0.007644107099622488, - 3.43761857948266e-05, - -0.007981055416166782, - 0.031157830730080605, - -0.0002826486306730658, - 0.02577986754477024, - 0.004040079191327095, - 0.014759667217731476, - -0.015129650011658669, - -0.02140614204108715, - -0.02463027834892273, - -0.009606337174773216, - 0.04439792409539223, - 0.0034190367441624403, - -0.0284622423350811, - 0.026916243135929108, - -0.008826730772852898, - 0.0024726076517254114, - 0.010802173987030983, - 0.006322740111500025, - 0.030259300023317337, - 0.0031613700557500124, - -0.006289706099778414, - 0.002621261402964592, - -0.01582997478544712, - -0.004961732309311628, - -0.028832225129008293, - 0.011502498760819435, - 0.0378703735768795, - 0.02848866954445839, - -0.008033910766243935, - 0.02053404040634632, - 0.009553481824696064, - 0.017732743173837662, - 0.001396519597619772, - -0.02197433076798916, - -0.0070428852923214436, - -0.017085272818803787, - 0.010273627005517483, - -0.002072894247248769, - 0.03784394636750221, - -0.00037204736145213246, - -0.009467593394219875, - -0.01978086121380329, - 0.025370243936777115, - -0.004188732709735632, - -0.0027583532501012087, - -0.008218902163207531, - 0.00503440760076046, - 0.01487859059125185, - 0.011707310564815998, - -0.008133012801408768, - 0.0001238781405845657, - 0.00839728582650423, - 0.002606396097689867, - 0.01790452003479004, - -0.021723270416259766, - -0.01691349595785141, - -0.031131403520703316, - 0.01966193877160549, - -0.014310402795672417, - -0.03343058004975319, - 0.03290203586220741, - 0.004386937711387873, - -0.007432688493281603, - 0.01989978551864624, - -0.02385067194700241, - -0.007796064484864473, - 0.0284622423350811, - 0.01205747202038765, - 0.003488408401608467, - -0.025634516030550003, - 0.008007482625544071, - 0.021445784717798233, - -0.008635132573544979, - 0.0072807311080396175, - -0.01151571236550808, - -0.01730990596115589, - 0.033536288887262344, - -0.006656385492533445, - -0.005394480191171169, - 0.008205687627196312, - 0.00015784139395691454, - 0.019344810396432877, - 0.01860484480857849, - 0.029017215594649315, - 0.010134883224964142, - -0.02641412243247032, - -0.012004617601633072, - 0.03578261286020279, - -0.002563451649621129, - 0.028752941638231277, - -0.004172215703874826, - -0.026704823598265648, - -0.00418212590739131, - -0.0028805797919631004, - 0.018340570852160454, - 0.005625719204545021, - 0.022542517632246017, - 0.02345426194369793, - -0.005130206700414419, - 0.0073335859924554825, - 0.02204039879143238, - -0.02830367721617222, - -0.011462857015430927, - -0.02159113436937332, - -0.00788195338100195, - -0.007406261283904314, - -0.014587890356779099, - -0.02632162719964981, - -0.00608159089460969, - -0.0017788901459425688, - 0.004628087393939495, - -0.037817519158124924, - 0.009375098161399364, - -0.0011520667467266321, - 0.007743209600448608, - -0.0036370621528476477, - -0.024577423930168152, - 0.04453006386756897, - 0.01510322280228138, - -0.0049650357104837894, - -0.0038782116025686264, - -0.00728733791038394, - 0.00948080699890852, - -0.007987662218511105, - 0.010703071020543575, - -0.026030926033854485, - 0.01672850362956524, - 0.008251936174929142, - 0.02662554197013378, - 0.0038319637533277273, - 0.0205868948251009, - -0.04254801198840141, - -0.029228635132312775, - -0.014640744775533676, - 0.010901276022195816, - -0.03432910889387131, - -0.014495394192636013, - -0.03572975844144821, - -0.01518250536173582, - -0.003126684343442321, - -0.021379714831709862, - 0.00480977538973093, - -0.0456400103867054, - -0.024669919162988663, - -0.03374771028757095, - 0.012632266618311405, - 0.006117928307503462, - -0.002545282943174243, - -0.0312899686396122, - -0.0038484809920191765, - 0.004961732309311628, - -0.03979957103729248, - -0.002903703600168228, - 0.01053790096193552, - -0.03919174149632454, - 0.013015463016927242, - -0.01959587074816227, - -0.01715134084224701, - 0.007346799597144127, - 0.012737976387143135, - -0.03358914330601692, - -0.038663193583488464, - 0.0156449843198061, - -0.004941911902278662, - -0.02514561079442501, - 0.01344490796327591, - -0.01655672676861286, - 0.002358639845624566, - -0.011462857015430927, - 0.01166766881942749, - 0.006570496596395969, - -0.014852163381874561, - -0.0006714195478707552, - 0.0019242404960095882, - -0.019225887954235077, - 0.002385067055001855, - 0.013636506162583828, - 0.010980558581650257, - 0.004958428908139467, - 0.028541523963212967, - -0.027563711628317833, - 0.020573681220412254, - -0.00808015838265419, - 0.029625045135617256, - -0.003012716304510832, - -0.0038848184049129486, - -0.028990788385272026, - 0.006425146479159594, - 0.0030110646039247513, - 0.0331663079559803, - 0.003656882792711258, - -0.005949454382061958, - 0.02737872116267681, - -0.023771390318870544, - 0.0036040281411260366, - -0.026916243135929108, - 0.025211678817868233, - -0.020216912031173706, - 0.02526453323662281, - -0.010194345377385616, - 0.05507456883788109, - 0.0216439887881279, - 0.02267465554177761, - 0.006372291594743729, - -0.023388193920254707, - 0.00040012638783082366, - -0.006061770487576723, - 0.05935579910874367, - -0.016873855143785477, - 0.014627531170845032, - 0.022053612396121025, - -0.015156077221035957, - 0.0026130029000341892, - 0.006388808600604534, - 0.022899286821484566, - -0.0007011502748355269, - -0.013127779588103294, - -0.005189668387174606, - 0.01573747955262661, - 0.004796561785042286, - -0.008060337975621223, - -0.02227824553847313, - 0.013557223603129387, - 0.008654952980577946, - -0.015565701760351658, - 0.030523573979735374, - 0.021564707159996033, - -0.0016830910462886095, - 0.0204679723829031, - 0.00011190325312782079, - 0.061575695872306824, - -0.021670415997505188, - 0.010359516367316246, - 0.03253205120563507, - 0.02719372883439064, - -0.023956380784511566, - 0.015565701760351658, - -0.013874351978302002, - 0.0009200016502290964, - 0.016992777585983276, - -0.013874351978302002, - -0.01582997478544712, - -0.004096237011253834, - 0.009394918568432331, - -0.011073053814470768, - -0.027748703956604004, - -0.0044695232063531876, - 0.0033001136034727097, - 0.014667171984910965, - -0.012044258415699005, - 0.020388690754771233, - 0.0023536847438663244, - 0.001491492846980691, - 0.006864500697702169, - 0.003964100498706102, - -0.019939426332712173, - 0.0005281338235363364, - 0.004495950881391764, - -0.01415183860808611, - -0.02559487521648407, - -0.011086267419159412, - 0.023480689153075218, - 0.013781855814158916, - 0.014759667217731476, - -0.017494896426796913, - 0.011165549978613853, - 0.02686338871717453, - 0.019648725166916847, - 0.01392720639705658, - 0.023256056010723114, - 0.013378839008510113, - 0.02013763040304184, - -0.010141490958631039, - -0.026361268013715744, - -0.004856023006141186, - 0.033509861677885056, - -0.010630396194756031, - -0.012671908363699913, - -0.02933434396982193, - 0.02234431356191635, - -0.012149968184530735, - -0.005965971387922764, - -0.012374600395560265, - -0.006511034909635782, - -0.015909256413578987, - 0.0011041671968996525, - 0.011813019402325153, - -0.0023685500491410494, - 0.04151734709739685, - 0.006725757382810116, - 0.010438797995448112, - 0.00611132150515914, - -0.01294939499348402, - -0.019159819930791855, - -0.024101730436086655, - -0.024550996720790863, - 0.03239991515874863, - -0.0029070070013403893, - -0.021868621930480003, - 0.01160820759832859, - 0.027537284418940544, - -0.03728897124528885, - -0.006388808600604534, - -0.011165549978613853, - 0.0030391437467187643, - -0.009157071821391582, - -0.003191100899130106, - -0.011092874221503735, - 0.027048379182815552, - 0.015380710363388062, - 0.04447720944881439, - 0.012500130571424961, - -0.023982807993888855, - -0.002373505150899291, - 0.001853217021562159, - 0.012242463417351246, - 0.024683132767677307, - 0.024828482419252396, - 0.002824421739205718, - 0.028356531634926796, - -0.036945417523384094, - -0.028752941638231277, - 0.025092756375670433, - -0.010273627005517483, - 0.018472708761692047, - 0.0012412589276209474, - 0.006078287493437529, - -0.006418539211153984, - 0.030285727232694626, - -0.01510322280228138, - 0.017930947244167328, - 0.011931942775845528, - -0.008965473622083664, - -0.012169788591563702, - 0.03633758798241615, - -0.012453882955014706, - 0.011363754980266094, - -0.0284622423350811, - -0.027061592787504196, - 0.014098984189331532, - 0.00605186028406024, - -0.0011314203729853034, - 0.04104165360331535, - 0.025119183585047722, - 0.010075422003865242, - -0.021696843206882477, - -0.009269388392567635, - 0.0063359541818499565, - 0.0027732185553759336, - 0.01757417991757393, - -0.019675152376294136, - -0.00031526986276730895, - -0.005212792195379734, - -0.0067786118015646935, - 0.027352293953299522, - 0.005189668387174606, - 0.03018001839518547, - 0.013497762382030487, - 0.007426081690937281, - -0.016173530369997025, - 0.00591641990467906, - 0.012797437608242035, - 0.0070957401767373085, - -0.0035544768907129765, - 0.01311456598341465, - -0.010452011600136757, - 0.04127949848771095, - -0.0031679770909249783, - -0.020732246339321136, - 0.0025584965478628874, - 0.019225887954235077, - -0.007862132973968983, - 0.004238284192979336, - -0.004558715503662825, - -0.010610575787723064, - -0.003225786844268441, - 0.0043175662867724895, - -0.022661441937088966, - -0.0017838452477008104, - -0.025938430801033974, - -0.009447772987186909, - -0.01797058992087841, - -0.019040895625948906, - -0.006649778690189123, - -0.019278742372989655, - 0.000547954288776964, - -0.0010793915716931224, - -0.020719032734632492, - -0.012367993593215942, - -0.016860641539096832, - 0.01337223220616579, - -0.004687549080699682, - 0.0054869758896529675, - -0.023057851940393448, - 0.014112197794020176, - 0.02385067194700241, - -0.0017078666714951396, - -0.008906012400984764, - -0.022635014727711678, - -0.03808179125189781, - -0.01151571236550808, - 0.017468469217419624, - 0.003083739895373583, - 0.002606396097689867, - 0.00782249215990305, - -0.006332650780677795, - 0.004162305500358343, - -0.002680723089724779, - -0.013061711564660072, - 0.000581814325414598, - -0.004083023406565189, - 0.022542517632246017, - 0.002477562753483653, - 0.0013122824020683765, - 0.007829098962247372, - -0.029810035601258278, - 0.004637997597455978, - -0.01246709655970335, - 0.011951763182878494, - -0.006183996796607971, - 0.013061711564660072, - -0.01649065874516964, - -0.002290919655933976, - -0.01347794197499752, - -0.0004480259376578033, - 0.01337223220616579, - 0.008985294960439205, - -0.01454824861139059, - -0.002746791345998645, - 0.00931563600897789, - -0.025304175913333893, - 0.013273130171000957, - -4.629300292435801e-06, - 0.02279357798397541, - 0.03657543286681175, - -0.011958369985222816, - -0.018921973183751106, - -0.02538345754146576, - 0.02297857031226158, - -0.002333864104002714, - 0.00690414197742939, - 0.03686613589525223, - -0.008641739375889301, - 0.002373505150899291, - -0.023203201591968536, - 0.0019440610194578767, - 0.018010230734944344, - 0.03229420632123947, - -0.009408132173120975, - 0.00846996158361435, - -0.02653304673731327, - -0.00243792193941772, - 0.013953633606433868, - 0.009520447812974453, - -0.0033100240398198366, - -0.009857396595180035, - -0.027986548840999603, - 0.01079556718468666, - -0.014667171984910965, - -0.00839728582650423, - -0.01655672676861286, - -0.023044638335704803, - -0.006752184592187405, - 0.027246585115790367, - -0.007696961984038353, - 0.020877595990896225, - -0.015129650011658669, - -0.017917733639478683, - -0.026850175112485886, - -0.026546260342001915, - -0.0005066615995019674, - -0.03356271609663963, - 0.009394918568432331, - -0.024366004392504692, - 0.029281489551067352, - 0.037817519158124924, - 0.02632162719964981, - -0.018670912832021713, - 0.014389685355126858, - -0.003392609301954508, - -0.010980558581650257, - 0.0026130029000341892, - -0.0006528377998620272, - -0.004644604399800301, - -0.012288711965084076, - 0.014363257214426994, - 0.02336176484823227, - 0.004865933209657669, - 0.013544009998440742, - 0.017204197123646736, - 0.00696360319852829, - 0.037764664739370346, - -0.011112695559859276, - -0.016966350376605988, - 0.0010191041510552168, - -0.022991783916950226, - -0.007928200997412205, - 0.01947694644331932, - 0.011033413000404835, - -0.008047124370932579, - -0.033087026327848434, - 0.006032039411365986, - -0.0038055365439504385, - -0.023374980315566063, - -0.018221648409962654, - -0.01317402720451355, - 0.01026702020317316, - -0.03578261286020279, - 0.02761656790971756, - 0.018908759579062462, - -0.01088145561516285, - -0.010729499161243439, - -0.013649719767272472, - -0.022687869146466255, - -0.011099481023848057, - 0.005800800397992134, - 0.007729995995759964, - 0.0158828292042017, - 0.00014813760935794562, - -0.024894550442695618, - 0.01370257418602705, - -0.006649778690189123, - 0.00028223570552654564, - -0.010934310965240002, - 0.00325221405364573, - -0.01875019632279873, - -0.027510857209563255, - -0.017283478751778603, - 0.0023256056010723114, - -0.021961117163300514, - 0.03668114170432091, - 0.008318004198372364, - 0.008251936174929142, - 0.02486812323331833, - -0.017494896426796913, - -0.009487413801252842, - -0.00361393834464252, - -0.025542020797729492, - -0.004991463385522366, - 0.0014749757247045636, - 0.04109450802206993, - 0.007485543377697468, - 0.0028739729896187782, - -0.013378839008510113, - -0.08298183977603912, - 0.01210372056812048, - 0.005285467486828566, - 0.006061770487576723, - 0.000190669103176333, - 0.00286075915209949, - -0.008780482225120068, - -0.010379336774349213, - -0.004941911902278662, - -0.0016104158712550998, - -0.018340570852160454, - 0.02843581512570381, - 0.02197433076798916, - 0.006302919704467058, - -0.010650216601788998, - 0.0014898411463946104, - 0.009381704963743687, - -0.002033253200352192, - -0.005239219404757023, - -7.329456821025815e-06, - -0.01748168282210827, - 0.002276054350659251, - -0.005288770888000727, - 0.04627426713705063, - 0.0007643281132914126, - 0.035888321697711945, - 0.014178265817463398, - -0.008430320769548416, - 0.0017260354943573475, - -0.016345307230949402, - -0.000976985553279519, - 0.006583710201084614, - -0.010828601196408272, - 0.019820502027869225, - -0.002946648048236966, - -0.004486040212213993, - 0.0229389276355505, - 0.023929953575134277, - -0.03794965520501137, - -0.01938445121049881, - 0.0022430201061069965, - 0.01339865941554308, - -0.008787089958786964, - 0.014891804195940495, - 0.02825082279741764, - 0.0044364891946315765, - -0.003739468054845929, - -0.006702633108943701, - 0.006616744678467512, - 0.005876779090613127, - -0.01205747202038765, - -0.019952639937400818, - -0.00802069716155529, - 0.0004232503124512732, - -0.017983803525567055, - -0.02465670555830002, - 0.004502557683736086, - -0.018010230734944344, - -0.008179260417819023, - -0.03311345353722572, - 0.013993274420499802, - -0.02806583233177662, - -0.030285727232694626, - -0.0005686006625182927, - 0.012876720167696476, - 0.007908380590379238, - -0.014587890356779099, - -0.0035941177047789097, - -0.030576428398489952, - 0.048520591109991074, - -0.03485765680670738, - 0.04220445826649666, - 0.016926709562540054, - 0.010458618402481079, - -0.02194790355861187, - 0.008760661818087101, - 0.008133012801408768, - -0.015314641408622265, - 0.0406980998814106, - -0.0009241309599019587, - -0.022991783916950226, - 0.007260910701006651, - -0.000667703163344413, - 0.00037782834260724485, - -0.016992777585983276, - -0.008628525771200657, - 0.0026575990486890078, - -0.013266523368656635, - 0.0181159395724535, - -0.0033860024996101856, - -0.007815884426236153, - -0.010075422003865242, - -0.007307158783078194, - 0.018274502828717232, - 0.024854909628629684, - -0.019701579585671425, - -0.00516984798014164, - 0.012315139174461365, - -0.004271318204700947, - -0.004396848380565643, - -0.024471713230013847, - -0.01660958118736744, - 0.013662933371961117, - -0.009441166184842587, - -0.01020755898207426, - 0.003779109101742506, - 0.016292452812194824, - -0.031184257939457893, - -0.00556295458227396, - 0.00015030548092909157, - 0.009474200196564198, - 0.0010224075522273779, - 0.015539273619651794, - -0.007346799597144127, - 0.03036501072347164, - 0.036707572638988495, - 0.003871604800224304, - -0.010590755380690098, - 0.022687869146466255, - 0.0026856781914830208, - -0.022635014727711678, - 0.007260910701006651, - -0.012202822603285313, - 0.025092756375670433, - -0.002513900399208069, - -0.03979957103729248, - 0.013306164182722569, - -0.0009332153131254017, - -0.03348343446850777, - -0.004661121405661106, - 0.02909649722278118, - 0.005219398997724056, - -0.001081043272279203, - 0.033959127962589264, - -0.007485543377697468, - 0.014971086755394936, - 0.014270761981606483, - 0.033906273543834686, - -0.0031200775410979986, - 0.0004946867120452225, - 0.0005524965235963464, - -0.0015022289007902145, - -0.018776623532176018, - -0.007141987793147564, - -0.05266968160867691, - -0.015499632805585861, - 0.03422340005636215, - -0.0039343698881566525, - 0.018433067947626114, - 0.029175780713558197, - -0.00892583280801773, - -0.02171005681157112, - -0.021274005994200706, - 0.008978688158094883, - 0.0013766990741714835, - -0.011793198995292187, - 0.03723611682653427, - -0.032637760043144226, - -0.00516984798014164, - -0.002294223289936781, - 0.01337223220616579, - -0.015341068617999554, - 0.004030168987810612, - -0.000407352636102587, - 0.00970543920993805, - 0.0007952976739034057, - 0.016173530369997025, - -0.002376808552071452, - 0.0009100913885049522, - -0.00227275094948709, - 0.026836959645152092, - 0.014759667217731476, - -0.02321641519665718, - 0.0013684405712410808, - 0.017772383987903595, - -0.003914549481123686, - -0.012334959581494331, - -0.016094248741865158, - -0.024617064744234085, - 2.6246681954944506e-05, - 0.00899850856512785, - -0.026546260342001915, - 0.022146107628941536, - -0.0018879028502851725, - 0.010240592993795872, - -0.006970210000872612, - 0.0002931782801169902, - -0.019199460744857788, - -0.001166932052001357, - -0.022648228332400322, - 0.03401198238134384, - -0.016054607927799225, - -0.015248573385179043, - 0.010425584390759468, - 0.006293009500950575, - -0.012506737373769283, - -0.0032720346935093403, - -0.01660958118736744, - 0.004155698698014021, - -0.00994989275932312, - -0.015261786989867687, - -0.019860142841935158, - -0.005711608100682497, - -0.00454550189897418, - -0.008456747978925705, - -0.013742215000092983, - -0.024458499625325203, - -0.017917733639478683, - 0.17917734384536743, - -0.04061881825327873, - 0.006567193195223808, - 0.00035057513741776347, - -0.028964361175894737, - -0.014429326169192791, - 0.023890312761068344, - -0.010042387992143631, - 0.004472826607525349, - 0.029440052807331085, - 0.023189987987279892, - 0.01059736218303442, - -0.013847924768924713, - 0.0020745459478348494, - 0.0025039901956915855, - -0.0381082184612751, - -0.017085272818803787, - -0.025555234402418137, - 0.004654514603316784, - 0.04159662872552872, - 0.02333533763885498, - -0.01938445121049881, - 0.0012131799012422562, - -0.034778375178575516, - 0.02782798558473587, - 0.01079556718468666, - 0.0034652845934033394, - 0.016543513163924217, - 0.018710553646087646, - 0.017442042008042336, - -0.019939426332712173, - -0.0051070828922092915, - -0.006785218603909016, - -0.017257051542401314, - 0.01860484480857849, - 0.015195718966424465, - -0.0004616525548044592, - -0.002477562753483653, - 0.020666178315877914, - 0.015314641408622265, - 0.029677899554371834, - -0.006676205899566412, - -0.007036278489977121, - -0.02159113436937332, - -0.011925335973501205, - 0.02827725000679493, - -0.007809278089553118, - 0.00014380188076756895, - 0.008060337975621223, - 0.0026691609527915716, - -0.029915744438767433, - 0.008588884025812149, - -0.006352471187710762, - 0.043790098279714584, - -0.000430270069045946, - 0.026718037202954292, - -0.004125968087464571, - -0.0031960560008883476, - 0.023956380784511566, - -0.021815765649080276, - -0.030919983983039856, - 0.008701200596988201, - -0.017917733639478683, - 0.016688862815499306, - 0.016213171184062958, - 0.023559970781207085, - 0.0022991783916950226, - -0.018803050741553307, - 0.007789457682520151, - -0.03255847841501236, - -0.007168415002524853, - -0.010134883224964142, - 0.0010678295511752367, - 0.00048518937546759844, - -0.004922091495245695, - -0.03580904006958008, - 0.004033472388982773, - -0.012169788591563702, - 0.012903147377073765, - 0.04645925760269165, - -0.007743209600448608, - -0.006289706099778414, - -0.025885576382279396, - -0.01872376725077629, - 0.01543356478214264, - -0.02074545994400978, - 0.025013474747538567, - 0.013385445810854435, - 0.00644496688619256, - -0.02608378231525421, - 0.007875346578657627, - -0.018261289224028587, - 0.008384072221815586, - 0.003395912703126669, - 0.00975168775767088, - -0.014257548376917839, - 0.02743157558143139, - 0.01390077918767929, - -0.006468090694397688, - -0.026361268013715744, - -0.013649719767272472, - 0.07299230247735977, - 0.03768538311123848, - 0.0036502759903669357, - -0.0023966291919350624, - 0.005212792195379734, - -0.0031068637035787106, - 0.031792085617780685, - 0.010683250613510609, - -0.03195064887404442, - 0.018644485622644424, - -0.01210372056812048, - 0.0029301310423761606, - -0.017944160848855972, - 0.005295377690345049, - 0.017812024801969528, - -0.004393544979393482, - 0.00013802089961245656, - 0.015142863616347313, - -0.006864500697702169, - -0.007835705764591694, - -0.004912181291729212, - 0.016199957579374313, - -0.001157847698777914, - 0.0014039522502571344, - -0.026281986385583878, - -0.04262729361653328, - 0.02204039879143238, - -0.0034190367441624403, - 0.01989978551864624, - 0.014852163381874561, - -0.028118686750531197, - 0.003111818805336952, - -0.010531294159591198, - -0.003240652149543166, - 0.006553979590535164, - -0.01457467582076788, - -0.02206682600080967, - 0.002001870656386018, - 0.00852942280471325, - 0.0066629922948777676, - 0.019450519233942032, - -0.008694593794643879, - -0.011112695559859276, - 0.01971479319036007, - -0.0037625920958817005, - 0.015552488155663013, - -0.007862132973968983, - -0.038213927298784256, - -0.03935030475258827, - -0.01651708595454693, - -0.003924459684640169, - 0.00487584387883544, - -0.017613820731639862, - 0.003904639044776559, - 0.0030523573514074087, - -0.035201214253902435, - -0.028964361175894737, - 0.043578676879405975, - -0.006996637210249901, - -0.019344810396432877, - -0.017204197123646736, - 0.01207729335874319, - -0.02806583233177662, - 0.006276492495089769, - -0.002466000849381089, - -0.16564655303955078, - 0.023744961246848106, - 0.01594889722764492, - -0.011436429806053638, - 0.014310402795672417, - -0.0002748030237853527, - 0.0027236673049628735, - 0.024564210325479507, - -0.030919983983039856, - 0.011291079223155975, - 0.025581661611795425, - -0.008298183791339397, - -0.03641686961054802, - -0.02396959438920021, - -0.02893793396651745, - -0.004502557683736086, - -0.011218404397368431, - 0.019912999123334885, - 0.026123423129320145, - 0.007545004598796368, - 0.029228635132312775, - -0.013491155579686165, - 0.005906509701162577, - 0.0036667929962277412, - 0.008324611000716686, - 0.00827836338430643, - -0.0229389276355505, - 0.008800303563475609, - -0.0053449287079274654, - -0.011225011199712753, - -0.0008122276631183922, - -0.00556295458227396, - 0.01552606001496315, - -0.010002747178077698, - -0.016384948045015335, - -0.008595491759479046, - 0.0021852103527635336, - -0.006976816803216934, - 0.000894400174729526, - 0.024141373112797737, - 0.00336948549374938, - 0.040988799184560776, - -0.022687869146466255, - 0.006877714302390814, - 0.0020811527501791716, - 0.005645539611577988, - 0.004664424806833267, - -0.023388193920254707, - -0.016107462346553802, - -0.019106963649392128, - -0.00011696161527652293, - -0.004334083292633295, - 0.004571929108351469, - 0.0274051483720541, - 0.016860641539096832, - 0.014957872219383717, - 0.016318880021572113, - 0.014098984189331532, - -0.012282105162739754, - 0.021445784717798233, - -0.007511970587074757, - -0.010042387992143631, - -0.00948080699890852, - -0.009130644612014294, - 0.01032648142427206, - -0.016847427934408188, - -0.01478609535843134, - 0.008853157982230186, - 0.0010777398711070418, - -0.003752681892365217, - -0.0036304553505033255, - -0.010967344976961613, - 0.023176774382591248, - -0.005444031208753586, - 0.007201449479907751, - 0.024458499625325203, - -0.0022793577518314123, - 0.012480310164391994, - 0.01246709655970335, - -0.02608378231525421, - -0.04085666313767433, - 0.046379975974559784, - 0.009447772987186909, - -0.038028936833143234, - -0.0008242025505751371, - -0.014640744775533676, - -0.012982429005205631, - 0.009864003397524357, - -0.007148594595491886, - 0.0009778115199878812, - 0.004337386693805456, - -0.0331663079559803, - -0.010425584390759468, - -0.031184257939457893, - 0.01390077918767929, - -0.0033215859439224005, - -5.810014044982381e-06, - -0.01844628155231476, - 0.00029359120526351035, - -0.006378898397088051, - 0.005569561384618282, - -0.00852942280471325, - -0.04619498550891876, - -0.006930569186806679, - 0.005688484292477369, - 0.02544952556490898, - -0.007346799597144127, - 0.019952639937400818, - 0.0705609917640686, - -0.02213289402425289, - 0.0020266463980078697, - -0.012804044410586357, - 0.02872651442885399, - 0.0378703735768795, - 0.019516589120030403, - 0.025396671146154404, - 0.001194185228087008, - -0.02119472436606884, - 0.02933434396982193, - 0.010452011600136757, - 0.03913888707756996, - -0.02396959438920021, - -0.008602098561823368, - 0.028092259541153908, - 0.0027666117530316114, - -0.027722276747226715, - -0.09725259989500046, - 0.010623789392411709, - 0.02526453323662281, - 0.0070098512805998325, - -0.007868739776313305, - 0.004172215703874826, - -0.005777676589787006, - 5.77065693505574e-05, - 0.014283975586295128, - 0.02994217351078987, - -0.041834473609924316, - -0.020031921565532684, - -0.01468038558959961, - -0.00739304767921567, - 0.01703241840004921, - -0.0061939070001244545, - -0.0038022331427782774, - -0.016662435606122017, - -0.016900282353162766, - 0.021868621930480003, - 0.004135878290981054, - -0.0028310285415500402, - -0.0015137909213081002, - -0.004961732309311628, - -0.018829477950930595, - -0.006517642177641392, - -0.03583546727895737, - -0.006824859883636236, - 0.013147599995136261, - -0.032241351902484894, - 0.011958369985222816, - -0.009606337174773216, - 0.017653461545705795, - -0.023163560777902603, - 0.028145113959908485, - 0.007862132973968983, - -0.014257548376917839, - -0.015565701760351658, - 0.03580904006958008, - -0.024009235203266144, - -0.01754775084555149, - -0.007994269020855427, - -0.010425584390759468, - -0.029440052807331085, - -0.006517642177641392, - -0.033509861677885056, - -0.0017342939972877502, - 0.003381047397851944, - 0.009996140375733376, - 0.008866371586918831, - -0.0170588456094265, - -0.01766667515039444, - -0.03440839424729347, - -0.008721021004021168, - 0.033298444002866745, - -0.004386937711387873, - -0.0014782791258767247, - -0.024881336838006973, - 0.004419972188770771, - -0.028515096753835678, - -0.014072556979954243, - 0.008972080424427986, - -0.01700599119067192, - 0.02441885881125927, - 0.0054341210052371025, - 0.0016574895707890391, - -0.03633758798241615, - 0.004429882392287254, - 0.009692225605249405, - 0.0003511945251375437, - -0.003409126540645957, - 0.007578038610517979, - -0.005995701998472214, - 0.005252433009445667, - -0.02700873836874962, - -0.0031894491985440254, - -0.037553247064352036, - -0.004046685993671417, - 0.008251936174929142, - -0.02973075397312641, - -0.0043142628856003284, - -0.036284733563661575, - 0.005566257983446121, - -0.039535295218229294, - 0.04889057204127312, - 0.02315034717321396, - -0.0004864281800109893, - -0.015050368383526802, - 0.017190983518958092, - -0.008991901762783527, - 0.016384948045015335, - 0.02390352636575699, - 0.029043642804026604, - -0.011297686956822872, - -0.025660943239927292, - 0.011674275621771812, - -0.022529304027557373, - 0.012473703362047672, - 0.0072807311080396175, - 0.018908759579062462, - -0.0014477225486189127, - -0.016266025602817535, - -0.039297450333833694, - 0.009176893159747124, - 0.024775628000497818, - 0.008489781990647316, - -0.025211678817868233, - 0.0022017275914549828, - 0.006468090694397688, - -0.002961513353511691, - 0.032214924693107605, - 0.023493902757763863, - -0.011396788991987705, - 0.005655450280755758, - 0.009044756181538105, - -0.016424590721726418, - -0.010022567585110664, - -0.036918990314006805, - 0.003129987744614482, - 0.025793081149458885, - 0.004030168987810612, - 0.004459613002836704, - 0.002885534893721342, - 0.002333864104002714, - 0.008899405598640442, - 0.01679457165300846, - -0.026268772780895233, - 0.006910748779773712, - 0.006458180490881205, - 0.006431753281503916, - -0.002807904500514269, - 0.006811646278947592, - 0.019728006795048714, - -0.004908877890557051, - -0.014508607797324657, - 0.02107580192387104, - -0.02357318438589573, - 0.000980289070867002, - 0.005159937310963869, - 0.012718155980110168, - -0.002355336444452405, - 0.0625799372792244, - -0.0073335859924554825, - -0.03868962079286575, - 0.01171391736716032, - -0.029836462810635567, - -0.01709848642349243, - 0.009434559382498264, - 0.01886911876499653, - 0.00392776308581233, - 0.011284472420811653, - 0.010418977588415146, - 0.035439059138298035, - 0.027458002790808678, - 0.01281065121293068, - -0.016358520835638046, - 0.015261786989867687, - -0.01171391736716032, - 0.03171280398964882, - 0.005635629408061504, - 0.011746951378881931, - -0.021247578784823418, - 0.027986548840999603, - 0.013068318367004395, - 0.005969274789094925, - -0.016014965251088142, - 0.003412429941818118, - -0.019093750044703484, - -0.02909649722278118, - 0.0011173808015882969, - -0.010141490958631039, - -0.005632326006889343, - -0.009375098161399364, - 0.012942788191139698, - 0.00759125268086791, - 0.003093650098890066, - 0.018010230734944344, - 0.0019407575018703938, - 0.012830471619963646, - -0.018763409927487373, - 0.00021265746909193695, - 0.00909100379794836, - 0.0014163401210680604, - 0.01543356478214264, - -0.004353903699666262, - 0.006431753281503916, - 0.02077188715338707, - 0.0054010869935154915, - -0.011073053814470768, - 0.01715134084224701, - -0.006428449880331755, - 0.014297189190983772, - -0.02909649722278118, - 0.02406208962202072, - -0.015169291757047176, - 0.025660943239927292, - -0.0013089790008962154, - 0.017944160848855972, - -0.0001739455619826913, - -0.0008919226238504052, - 0.018049871549010277, - 0.00794141460210085, - 0.003574297297745943, - 0.009460986591875553, - 0.0063359541818499565, - -0.0008613659883849323, - -0.012797437608242035, - 0.00392776308581233, - -0.010187738575041294, - -0.02143257111310959, - -0.0061939070001244545, - 0.024894550442695618, - -0.001739249099045992, - -0.004856023006141186, - 0.0013362321769818664, - -0.010240592993795872, - -0.02803940512239933, - 0.0022446720395237207, - 0.0010397505247965455, - -0.022053612396121025, - -0.024735987186431885, - 0.01359686441719532, - 0.01956944353878498, - 0.024947406724095345, - -0.010273627005517483, - -0.007558218203485012, - 0.02260858751833439, - 0.0003408713382668793, - 0.005044317804276943, - -0.01210372056812048, - -0.0016863944474607706, - -0.003352968255057931, - -0.007432688493281603, - 0.0010703071020543575, - -0.018168793991208076, - -0.029836462810635567, - -0.019199460744857788, - -0.0015542577020823956, - 0.036522578448057175, - 0.021485425531864166, - 0.01102019939571619, - 0.11194619536399841, - 0.010161311365664005, - -0.018697340041399002, - 0.02444528602063656, - 0.011621421203017235, - 0.014640744775533676, - 0.02782798558473587, - 0.003752681892365217, - 0.00048684110515750945, - -0.02613663673400879, - 0.016332093626260757, - -0.004713976290076971, - -0.007188235409557819, - -0.009467593394219875, - -0.009745080024003983, - 0.01518250536173582, - 0.005166544578969479, - 0.010670037008821964, - -0.02587236277759075, - 0.005880082491785288, - 0.015010727569460869, - -0.02801297791302204, - 0.009408132173120975, - 0.017508110031485558, - -0.011628028005361557, - -0.00690414197742939, - 0.012235856615006924, - -0.019305169582366943, - -0.011026806198060513, - -0.008615312166512012, - -0.001745855901390314, - 0.004248194396495819, - -0.06501124799251556, - -0.036496151238679886, - 0.041834473609924316, - -0.008687986992299557, - -0.014270761981606483, - -0.03276989609003067, - 0.02095687761902809, - 0.009460986591875553, - 0.0013866092776879668, - 0.032690614461898804, - -0.004948518704622984, - -0.03723611682653427, - -0.01222264301031828, - 0.001010845648124814, - 0.019001254811882973, - -0.016199957579374313, - -0.021128656342625618 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 4, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 325 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000005.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000005.json deleted file mode 100644 index 1ed5e76ad991c89acf4f1506b0cf654f5799010f..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000005.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000005", - "content": "[10, 3, 5]\n\n7\n2 Grundlagen\n\n## Verladezone\n\nDer Umschlagspunkt in der Logistik ist der zentrale Bereich einer Spedition, wo die G\u00fcter von den Kunden ankommen, gelagert und f\u00fcr den Weitertransport vorbereitet werden. Eine geeignete Verladestation ist entscheidend f\u00fcr eine sichere und effiziente Verla- dung. Die Gestaltung einer Verladestation variiert je nach Unternehmensgr\u00f6\u00dfe und -art, aber es gibt grundlegende Merkmale, die in den meisten Verladezonen zu finden sind. Es ist wichtig, die unterschiedlichen Abmessungen der Anh\u00e4nger bei der Gestaltung zu ber\u00fccksichtigen. Die Fahrbahndecken in den Verladezonen bestehen in der Regel aus Beton, Asphalt, Betonplatten oder Klinkerpflaster. [11]\nEine Verladestation besteht aus diversen Komponenten. Aus der vertieften Verladesta- tion, \u00dcberladebr\u00fccke und der Torrandabdichtung. Die vertiefte Verladestation dient zum H\u00f6henausgleich zwischen dem Lagerboden und der Anh\u00e4nger-Ladefl\u00e4che. [11] Eine \u00dcberladebr\u00fccke wird ben\u00f6tigt, um Anh\u00e4nger zu Be- und Entladen und wird \u00fcbli- cherweise an die Verladeschleusen angebaut. \u00dcberladebr\u00fccken sind in unterschiedli- chen Ausf\u00fchrungen und Materialien erh\u00e4ltlich. In der Regel werden \u00dcberladebr\u00fccken in elektrohydraulischen und manuellen Verladerampen unterteilt, welche beispielsweise aus Stahl oder Aluminium bestehen. Der Anhebe- bzw. der Absenkvorgang funktioniert vollautomatisiert. Um die Be- und Entladung mit einem Flurf\u00f6rderger\u00e4t zu erleichtern und das Flurf\u00f6rderger\u00e4t somit nicht auf den Boden aufsetzt, ist ein Klappkeil mit offenen\nScharnieren oder auch Vorschublippen auf die \u00dcberladebr\u00fccke angebaut. [12]\nDa eine Verladestation allen Wetterbedingungen ausgesetzt ist, werden sogenannte Torrandabdichtungen an das Tor angebracht, die die L\u00fccken zwischen Anh\u00e4nger und Geb\u00e4ude umschlie\u00dft. Torrandabdichtungen werden in drei Arten unterschieden. In auf- blasbare Torranddichtungen, Planentorabdichtungen und Kissentorabdichtungen. Auf- blasbare Torrandabdichtungen bestehen aus mit Luft gef\u00fcllten Kissen, die gegen das Dach und die Seiten des Anh\u00e4ngers dr\u00fccken, um die L\u00fccken abzudichten. Bei Planentor- abdichtungen werden die L\u00fccken mit Hilfe von Planen geschlossen, die die Seiten und das Dach des Anh\u00e4ngers umschlie\u00dfen. [11]\n\n## Ablauf einer Be- und Entladung\n\nDer Beladevorgang kann je nach Art und Umfang der zu transportierenden G\u00fcter sehr unterschiedlich sein aber kann grunds\u00e4tzlich in folgenden Arbeitsschritten erfolgen. Zu\n8\n2 Grundlagen\nBeginn einer Be- und Entladung steht das einzelne Packst\u00fcck. Das Packst\u00fcck wird zu ei- ner Ladeeinheit gebildet und auf einem geeigneten Ladungstr\u00e4ger wie einer Normpa- lette abgelegt. Die Ladeeinheit wird im Lager zwischengelagert, bis der Auftrag zur Aus- lieferung an Kunden erteilt wird. Der Anh\u00e4nger dockt an eine zugewiesene Verladesta- tion an, wo der Fahrer der Zugmaschine und das Verladepersonal den Beladevorgang abstimmen. Der Fahrer \u00f6ffnet die Laderaumt\u00fcren respektive die Abdeckung des Anh\u00e4- ngers, w\u00e4hrend das Verladepersonal die G\u00fcter kontrolliert und den Transport vorberei- tet.", - "embedding": [ - 0.023669270798563957, - 0.0034805797040462494, - 0.014640375040471554, - -0.01452069915831089, - -0.006183264777064323, - 0.024041596800088882, - -0.02350970357656479, - -0.007040943019092083, - -0.007060889154672623, - -0.024600084871053696, - 0.008317488245666027, - 0.02827015146613121, - -0.02658138982951641, - 0.01177479699254036, - 0.009580736048519611, - 0.00849035382270813, - 0.029573291540145874, - 0.015065889805555344, - -0.013151072897017002, - -0.01337047852575779, - -0.027179770171642303, - -0.009986304678022861, - 0.01781843975186348, - -0.01290507148951292, - -0.016728058457374573, - 0.007918568328022957, - 0.03909418731927872, - 0.0027708339039236307, - 0.01251280028373003, - 0.0002977358235511929, - -0.007592782843858004, - -0.014813240617513657, - -0.007160619366914034, - 0.0035104986745864153, - -0.006329535506665707, - -0.01296490989625454, - -0.003919391892850399, - -0.023882027715444565, - 0.016502002254128456, - -0.01854979433119297, - 0.025743655860424042, - -0.0018317090580239892, - 0.0008634962141513824, - -0.03140832483768463, - 0.007586134131997824, - 0.016648273915052414, - -0.02656809240579605, - -0.013297343626618385, - -0.03228595107793808, - 0.018416820093989372, - 0.030424321070313454, - 0.02491922117769718, - -0.03329654783010483, - -0.0029852534644305706, - -0.0032994032371789217, - -0.008257649838924408, - -0.024015001952648163, - -0.00372325605712831, - 0.016355732455849648, - -0.030105184763669968, - -0.025384629145264626, - 0.00125576788559556, - -0.018204063177108765, - 0.006575536448508501, - -0.013682966120541096, - -0.0041122036054730415, - -0.0034805797040462494, - -0.007911919616162777, - -0.01612967811524868, - -0.01704719476401806, - 0.02010558359324932, - 0.03159448876976967, - 0.009534195065498352, - 0.012113879434764385, - 0.02744571678340435, - -0.020664071664214134, - 0.011203011497855186, - 0.011050092056393623, - -0.02491922117769718, - 0.009148572571575642, - 0.022153373807668686, - -0.029679670929908752, - -0.022259753197431564, - 0.06648671627044678, - 0.027658473700284958, - -0.0149063216522336, - 0.006359454244375229, - 0.004201960284262896, - 0.0005115321837365627, - 0.009746952913701534, - -0.01708708517253399, - 0.009427816607058048, - -0.003076672786846757, - 0.023935217410326004, - 0.009574087336659431, - -0.0021325615234673023, - 0.0038529052399098873, - 0.028908424079418182, - 0.004142122343182564, - -0.03845591843128204, - -0.016369029879570007, - 0.012645773589611053, - -0.007798891980201006, - 0.001450241543352604, - -0.02491922117769718, - -0.013589885085821152, - -0.010578036308288574, - 0.0019696690142154694, - 0.00443798815831542, - -0.015797244384884834, - -0.018164170905947685, - 0.04465247690677643, - -0.022046994417905807, - -0.003606904298067093, - 0.009461060166358948, - -0.023243755102157593, - 0.02834993600845337, - -0.017406221479177475, - 0.0023220486473292112, - -0.028722262009978294, - 0.016634976491332054, - 0.028775451704859734, - 0.01293831504881382, - -0.000516934203915298, - 0.019001903012394905, - 0.013164369389414787, - 0.020783746615052223, - 0.009600682184100151, - -0.019241254776716232, - -0.011282796040177345, - -0.019214661791920662, - 0.013011449947953224, - -0.002445048885419965, - 0.001364639843814075, - -0.00884938146919012, - 0.006056939717382193, - -0.01298485603183508, - -0.0004236450477037579, - -0.023655973374843597, - -0.044093988835811615, - 0.026328738778829575, - 0.003076672786846757, - -0.028030799701809883, - -0.030158374458551407, - 0.004654070362448692, - 0.025983009487390518, - 0.01708708517253399, - 0.010092683136463165, - -0.01178809441626072, - 0.001879911869764328, - -0.0033343087416142225, - -0.01854979433119297, - 0.017259951680898666, - -0.03066367283463478, - -0.01533183641731739, - 0.01868276670575142, - -0.007273646537214518, - 0.0001451280404580757, - -0.014161670580506325, - -0.02912118099629879, - 0.029626481235027313, - 0.0053787752985954285, - 0.013895723968744278, - -0.014135075733065605, - 0.013922318816184998, - 0.024586787447333336, - -0.006605455186218023, - -0.0010380238527432084, - -0.005684614181518555, - -0.011555391363799572, - -0.008231055922806263, - 0.0033775251358747482, - -0.0298126433044672, - 0.016355732455849648, - -0.011415769346058369, - -0.003769796807318926, - 0.015052592381834984, - -0.0012341596884652972, - -0.038269754499197006, - -0.011847932823002338, - -0.010976957157254219, - 0.013682966120541096, - 0.015956811606884003, - 0.010338684543967247, - -0.041647277772426605, - -0.019161472097039223, - 0.014121778309345245, - 0.016767950728535652, - -0.014387725852429867, - -0.002925415523350239, - 0.000511947728227824, - 0.009866628795862198, - -0.0065921577624976635, - -0.004650746006518602, - -0.616996705532074, - 0.0029569966718554497, - -0.006721807178109884, - -0.00344401178881526, - 0.002875550417229533, - 0.030929621309041977, - 0.01698070764541626, - -0.003926040604710579, - -0.007433214690536261, - 0.031993407756090164, - -0.005658019334077835, - 0.017525898292660713, - -0.004245176911354065, - 0.007872027345001698, - -0.015664270147681236, - -0.009594033472239971, - -0.026820741593837738, - -0.010850631631910801, - 0.05092882364988327, - 0.009035544469952583, - -0.035078391432762146, - 0.02333683706820011, - -0.014028697274625301, - 0.012705611065030098, - 0.014387725852429867, - -0.0028738882392644882, - 0.016834435984492302, - 0.00013619387755170465, - -0.003084983676671982, - 0.003969256766140461, - -0.0071207270957529545, - 0.0031115782912820578, - -0.020052393898367882, - 0.02107628993690014, - 0.04260468855500221, - 0.024560192599892616, - -0.012632476165890694, - 0.022379428148269653, - -0.0005559951532632113, - 0.030211564153432846, - 0.00847040768712759, - -0.03579644858837128, - 0.0009183477959595621, - -0.024746356531977654, - 0.004693962167948484, - -0.006987753789871931, - 0.0435355007648468, - -0.0027924419846385717, - -0.008111379109323025, - -0.02253899723291397, - 0.024826139211654663, - 0.0011660107411444187, - 0.0027990906964987516, - 0.0013970520813018084, - 0.011748203076422215, - 0.009826736524701118, - 0.015943514183163643, - -0.007386674173176289, - 0.004088933113962412, - -0.006359454244375229, - 0.006203210446983576, - 0.012619178742170334, - -0.011276147328317165, - -0.015850432217121124, - -0.034413523972034454, - 0.018057791516184807, - -0.02108958549797535, - -0.02114277519285679, - 0.008137973956763744, - -0.00018637056928128004, - -0.009933114983141422, - 0.007107430137693882, - -0.006292967591434717, - -0.011681715957820415, - 0.02821696177124977, - 0.021209262311458588, - -0.009567438624799252, - -0.013417019508779049, - 0.001609809580259025, - 0.03172745928168297, - -0.0058541554026305676, - 0.006083534564822912, - -0.0052192071452736855, - -0.009594033472239971, - 0.0325784906744957, - 0.007220457307994366, - -0.01448080688714981, - 0.012200312688946724, - -0.005764398258179426, - 0.018190765753388405, - 0.023124080151319504, - 0.03712618350982666, - -0.005734479054808617, - -0.015491404570639133, - -0.0019447364611551166, - 0.03962608426809311, - -0.004374825861304998, - 0.028110584244132042, - 0.0026096035726368427, - -0.03305719420313835, - -0.010225657373666763, - -0.0051693422719836235, - 0.015464810654520988, - -0.003992527257651091, - 0.04906719550490379, - 0.01534513384103775, - -0.017233356833457947, - 0.0010081048822030425, - 0.026395225897431374, - -0.030078589916229248, - -0.013948912732303143, - -0.00271930661983788, - -0.016462111845612526, - -0.00934138335287571, - -0.017193464562296867, - -0.019932717084884644, - -0.007532944902777672, - -0.003703310154378414, - -0.004816962406039238, - -0.026461713016033173, - 0.009766899049282074, - 0.006136723794043064, - 0.009048841893672943, - -0.01045836042612791, - -0.016821138560771942, - 0.021435316652059555, - 0.01850990206003189, - -0.007153970655053854, - -0.014760050922632217, - 0.0021857507526874542, - 0.0021757776848971844, - 0.003906094469130039, - 0.019680067896842957, - -0.011070038191974163, - 0.02104969508945942, - 0.011495552957057953, - 0.03220616653561592, - -0.0031414972618222237, - 0.003889472922310233, - -0.04699281230568886, - -0.02256559208035469, - -0.01338377594947815, - 0.02346981130540371, - -0.03396141529083252, - -0.022312942892313004, - -0.036594290286302567, - -0.017166869714856148, - 0.009840033948421478, - -0.02829674631357193, - 0.013131126761436462, - -0.02268526703119278, - -0.038482509553432465, - -0.01783173717558384, - 0.016621679067611694, - 0.0010363616747781634, - 0.002029506955295801, - -0.01940082386136055, - -0.0010704360902309418, - 0.003613553009927273, - -0.031248755753040314, - 0.0080448929220438, - 0.006073561497032642, - -0.04763108491897583, - 0.008098081685602665, - -0.015012700110673904, - -0.011661769822239876, - 0.02335013449192047, - 0.02093001827597618, - -0.03337633237242699, - -0.035237960517406464, - 0.007772297132760286, - -0.0054585593752563, - -0.018283847719430923, - 0.00547850551083684, - -0.021953914314508438, - 0.0029387129470705986, - -0.013483505696058273, - 0.009494302794337273, - 0.007885324768722057, - -0.006186589132994413, - -0.004308339208364487, - 0.009055490605533123, - -0.012373178265988827, - -0.0023386701941490173, - 0.01489302422851324, - 0.015305242501199245, - 0.00017972190107684582, - 0.04451950639486313, - -0.02581014297902584, - 0.007406620308756828, - 0.0060170479118824005, - 0.03938673064112663, - 0.00042260618647560477, - 0.002170791383832693, - -0.019028497859835625, - 0.007114078849554062, - -0.0012441326398402452, - 0.03077005222439766, - 0.0029569966718554497, - 0.005043017212301493, - 0.03074345737695694, - -0.012140474282205105, - 0.021408721804618835, - -0.01449410431087017, - 0.010983605869114399, - -0.009421167895197868, - 0.01783173717558384, - -0.01704719476401806, - 0.05505100265145302, - 0.018829038366675377, - 0.027073390781879425, - -0.005421991925686598, - -0.024493705481290817, - -0.006788293831050396, - 0.005116153042763472, - 0.06414638459682465, - -0.01406858954578638, - 0.023602783679962158, - 0.02255229465663433, - 0.011395823210477829, - -0.003906094469130039, - 0.0024400625843554735, - 0.0298126433044672, - -0.0021541696041822433, - -0.027844637632369995, - -0.012000852264463902, - 0.012692314572632313, - 0.003773121163249016, - -0.01934763416647911, - -0.02108958549797535, - 0.0024001705460250378, - 0.007193862926214933, - -0.015504701994359493, - 0.015983406454324722, - 0.016634976491332054, - -0.005209234077483416, - 0.013709560967981815, - -0.0013987142592668533, - 0.03882824257016182, - -0.012399772182106972, - 0.011801391839981079, - 0.03912078216671944, - 0.035929422825574875, - -0.02503889799118042, - 0.013869129121303558, - 0.003424065886065364, - 0.0137893445789814, - 0.02357618883252144, - -0.018110981211066246, - 0.0017170194769278169, - 0.007546242326498032, - -0.0009515911224298179, - -0.009028895758092403, - -0.02010558359324932, - -0.005624776240438223, - -0.012027447111904621, - 0.012452961876988411, - -0.015278647653758526, - 0.012393123470246792, - 0.004564313217997551, - 0.00931478850543499, - 0.0070276460610330105, - 0.005412018857896328, - -0.010139224119484425, - 0.003036780748516321, - 0.0014161670114845037, - -0.020810341462492943, - -0.027764853090047836, - -0.008337434381246567, - 0.017512600868940353, - 0.028004204854369164, - -0.009514248929917812, - -0.018217360600829124, - 0.01289177406579256, - 0.017206761986017227, - 0.00803824421018362, - 0.0019447364611551166, - 0.00852359738200903, - 0.01333058625459671, - 0.028004204854369164, - -0.008789543993771076, - -0.022991105914115906, - -0.01700730249285698, - 0.03797721117734909, - -0.008749651722609997, - -0.010644523426890373, - -0.014041994698345661, - 0.02763187885284424, - -0.0037864185869693756, - 0.00852359738200903, - -0.006053615361452103, - -0.010112629272043705, - -0.010764199309051037, - 0.0009200099157169461, - 0.010651172138750553, - -0.015132376924157143, - 0.028004204854369164, - 0.009148572571575642, - 0.0014211535453796387, - 0.0014934578211978078, - 0.007958459667861462, - -0.018762551248073578, - -0.012020798400044441, - -0.02579684555530548, - 0.03005199506878853, - -0.009913169778883457, - -0.005554965231567621, - -0.00373655348084867, - 0.008244352415204048, - -0.027658473700284958, - -0.011980906128883362, - -0.0001484523672843352, - -0.0011244566412642598, - -0.0019048444228246808, - 0.001203409512527287, - -0.00021099143486935645, - 0.01136257965117693, - 0.01051155012100935, - 0.04433334246277809, - 0.018376927822828293, - -0.019267849624156952, - 0.002860591048374772, - 0.0035603635478764772, - 0.011635174974799156, - 0.023948514834046364, - 0.025358034297823906, - -0.008616678416728973, - 0.026873931288719177, - -0.01922795921564102, - -0.016661571338772774, - 0.019839636981487274, - -0.029360534623265266, - 0.011495552957057953, - 0.024520300328731537, - 0.009574087336659431, - -7.620001269970089e-05, - 0.024507002905011177, - -0.02171456068754196, - 0.02268526703119278, - 0.006804915610700846, - -0.0028472936246544123, - -0.013270748779177666, - 0.038269754499197006, - -0.008636624552309513, - -0.009760250337421894, - -0.02656809240579605, - -0.02922756038606167, - 0.04199301078915596, - 0.003590282751247287, - -0.008623327128589153, - 0.01610308326780796, - 0.028562692925333977, - 0.01087722647935152, - -0.024733059108257294, - -0.00690796971321106, - 0.03071686252951622, - 0.011894473806023598, - 0.02600960247218609, - -0.006402670871466398, - 0.007665918208658695, - -0.004128824919462204, - -0.019759852439165115, - 0.03957289457321167, - 0.007506350055336952, - 0.0019131553126499057, - 0.01932103931903839, - 0.002209021244198084, - -0.015478107146918774, - 0.0043681771494448185, - 0.001549140433780849, - 0.009627276100218296, - 0.0036833640187978745, - 0.0001314151450060308, - -0.01691422052681446, - 0.018363630399107933, - -0.01945401355624199, - -0.011242903769016266, - -0.013436965644359589, - 0.01138252578675747, - -0.014135075733065605, - 0.002026182599365711, - -0.0048003410920500755, - -0.01049160398542881, - -0.00846375897526741, - -0.026076089590787888, - -0.03574325889348984, - 0.01247290801256895, - -0.020743856206536293, - -0.01085728034377098, - -0.027791447937488556, - -0.02577025070786476, - -0.002694374183192849, - -0.011834635399281979, - 0.00746645824983716, - -0.0015001065330579877, - -0.010099331848323345, - -0.0257569532841444, - -0.01448080688714981, - 0.03409438952803612, - 0.0005842520040459931, - 0.006615428254008293, - -0.012698962353169918, - 0.01847000978887081, - 0.027951015159487724, - -0.00543528888374567, - -0.00807148776948452, - -0.01712697744369507, - -0.017472708597779274, - -0.007320187520235777, - 0.021235857158899307, - 0.004384798929095268, - 0.015850432217121124, - 0.016355732455849648, - 0.0032761329784989357, - -0.0009241653606295586, - 0.0011942676501348615, - -0.01295161247253418, - 0.004557664506137371, - 0.019640175625681877, - 0.0177120603621006, - 0.010850631631910801, - 0.0007409113459289074, - 0.013829236850142479, - -0.03667407110333443, - 0.01089717261493206, - -0.008344083093106747, - 0.007140673231333494, - -0.00887597631663084, - 0.012319988571107388, - -0.02175445295870304, - -0.011714959517121315, - -0.010371928103268147, - -0.009966358542442322, - 0.010571387596428394, - 0.011282796040177345, - -0.012399772182106972, - -0.010996903292834759, - 0.018935415893793106, - -0.02175445295870304, - 0.017259951680898666, - 0.0149063216522336, - 0.01773865520954132, - 0.024892626330256462, - 0.009667168371379375, - -0.004560988862067461, - -0.018443414941430092, - 0.032711464911699295, - 0.010139224119484425, - 0.002730941865593195, - 0.0500246062874794, - -0.004551015794277191, - 0.0045277453027665615, - -0.015132376924157143, - -0.005136098712682724, - 0.021289046853780746, - 0.028669072315096855, - -0.012187015265226364, - 0.007320187520235777, - -0.039971813559532166, - -0.0008634962141513824, - 0.01604989357292652, - 0.011455661617219448, - -0.001008935971185565, - -0.01869606412947178, - -0.032738059759140015, - 0.02672765962779522, - -0.01248620543628931, - -0.018416820093989372, - -0.023217162117362022, - -0.025690468028187752, - -0.003224605694413185, - 0.016515299677848816, - -0.01873595640063286, - 0.020664071664214134, - -0.009853331372141838, - -0.012200312688946724, - -0.01610308326780796, - -0.01498610619455576, - -0.013171018101274967, - -0.03412098437547684, - 0.0031132404692471027, - -0.01869606412947178, - 0.027685068547725677, - 0.029653076082468033, - 0.0050097741186618805, - -0.014281346462666988, - 0.022472510114312172, - -0.013004801236093044, - -0.012213610112667084, - 0.0011227944632992148, - -0.018416820093989372, - -0.00014959511463530362, - -0.023935217410326004, - 0.016475407406687737, - 0.02108958549797535, - 0.0004841063928324729, - 0.012326637282967567, - 0.009381275624036789, - 0.017924819141626358, - 0.03497201204299927, - -0.014361131004989147, - -0.014733456075191498, - -0.017605682834982872, - -0.027791447937488556, - -0.0027990906964987516, - 0.017326438799500465, - 0.006425940897315741, - -0.009966358542442322, - -0.04358869045972824, - -0.0022987781558185816, - 0.004105554893612862, - -0.027219662442803383, - -0.01706049218773842, - -0.017419518902897835, - 0.001048827893100679, - -0.0482693575322628, - 0.022884728386998177, - 0.03233913704752922, - -0.013483505696058273, - -0.005618127528578043, - -0.001682113972492516, - -0.023975109681487083, - -0.004118851851671934, - 0.017206761986017227, - 0.004311663564294577, - 0.002543116919696331, - 0.004391447640955448, - -0.00843051541596651, - 0.01177479699254036, - -0.015225457958877087, - 0.016541894525289536, - -0.017366331070661545, - 0.002064412459731102, - -0.015092484652996063, - -0.014427617192268372, - -0.022831538692116737, - 0.00845711026340723, - -0.020863531157374382, - 0.02272515930235386, - 0.00020143396977800876, - 0.023749055340886116, - 0.03303059935569763, - -0.03249870613217354, - -0.014321238733828068, - 0.002538130385801196, - -0.0068680779077112675, - -0.006346157286316156, - 0.019134877249598503, - 0.036833640187978745, - 0.0020245204214006662, - 0.0003993358404841274, - -0.013656371273100376, - -0.07813519239425659, - 0.0063428329303860664, - 0.01612967811524868, - 0.016541894525289536, - 0.011249552480876446, - 0.0045244209468364716, - -0.006213183514773846, - -0.002581346780061722, - 0.0036700668279081583, - 0.004248501267284155, - -0.004198635928332806, - 0.050609689205884933, - 0.028030799701809883, - 0.007240403443574905, - -0.004866827744990587, - -0.008264298550784588, - 0.008098081685602665, - -0.007286943960934877, - -0.003573660971596837, - 0.0023187242913991213, - -0.0149063216522336, - -0.005498451646417379, - -0.004221906419843435, - 0.04462588578462601, - -0.003055064706131816, - 0.02763187885284424, - 0.011967608705163002, - -0.01776525005698204, - -0.0017702088225632906, - 0.00015136116417124867, - -0.0005165186594240367, - 0.010172467678785324, - -0.021209262311458588, - 0.014214860275387764, - -0.015424918383359909, - -0.011016848497092724, - 0.020464612171053886, - 0.02578354813158512, - -0.03715277835726738, - -0.022153373807668686, - -0.0037166073452681303, - 0.022844836115837097, - -0.006768347695469856, - 0.006086858920753002, - 0.009906521067023277, - 0.0009981318144127727, - 0.011236255057156086, - 0.0023203864693641663, - 0.008084784261882305, - 0.0012391462223604321, - -0.0035936071071773767, - -0.024467112496495247, - -0.006040317937731743, - -0.008556840009987354, - -0.004986503627151251, - -0.015970109030604362, - 0.009520897641777992, - -0.011681715957820415, - -0.012240204028785229, - -0.03563687950372696, - 0.0031265378929674625, - -0.02518516778945923, - -0.04045051708817482, - -0.0028738882392644882, - -0.0036667424719780684, - 0.016555191949009895, - -0.013829236850142479, - 0.005661343690007925, - -0.030344536527991295, - 0.029599886387586594, - -0.04308339208364487, - 0.028881829231977463, - 0.025278249755501747, - 0.016555191949009895, - -0.023828839883208275, - 0.003576985327526927, - 0.0034573092125356197, - -0.005505099892616272, - 0.03550390526652336, - 0.010119277983903885, - -0.007778945844620466, - -0.014773348346352577, - -0.00032308389199897647, - -0.00041886631515808403, - -0.013436965644359589, - -0.009713709354400635, - 0.010252251289784908, - -0.016648273915052414, - 0.017938116565346718, - -0.009008949622511864, - -0.013476856984198093, - 0.007798891980201006, - 0.0004379812453407794, - 0.00849035382270813, - 0.014773348346352577, - -0.0267675518989563, - -0.00047995097702369094, - 0.01291836891323328, - 0.002418454270809889, - -0.0043648527935147285, - -0.028669072315096855, - -0.02192731946706772, - 0.02187412977218628, - 0.006927915848791599, - -0.017379628494381905, - -0.0054253158159554005, - -0.0007022659410722554, - -0.02922756038606167, - -0.007326836232095957, - 0.010764199309051037, - -0.001302308519370854, - -0.01253939513117075, - 0.02354959398508072, - 0.0019912770949304104, - 0.029333939775824547, - 0.02416127175092697, - 0.013057990930974483, - -0.025464411824941635, - 0.029466912150382996, - -0.005245801992714405, - -0.012605881318449974, - 0.007579485420137644, - -0.012286745011806488, - 0.026461713016033173, - -0.002858928870409727, - -0.025663873180747032, - 0.024413922801613808, - -0.004700610879808664, - -0.03324335813522339, - 0.017552493140101433, - 0.0306902676820755, - 0.012014149688184261, - 0.006113453768193722, - 0.03451990336179733, - 0.0023220486473292112, - 0.017978008836507797, - 0.009055490605533123, - 0.025717061012983322, - -0.014680267311632633, - 0.005418667569756508, - -0.008570137433707714, - -0.00888262502849102, - 0.006788293831050396, - -0.007153970655053854, - -0.04829595237970352, - -0.01538502611219883, - 0.031089188531041145, - 0.011941013857722282, - 0.00893581472337246, - 0.026036197319626808, - -0.00047995097702369094, - -0.010199062526226044, - -0.019121579825878143, - 0.0018051143269985914, - 0.007898622192442417, - -0.010697712190449238, - 0.030371131375432014, - -0.03576985374093056, - -0.012811990454792976, - 0.00048452193732373416, - 0.004750475753098726, - -0.005687938537448645, - -0.005691262893378735, - 0.00747310696169734, - -0.007007699925452471, - 0.01448080688714981, - 0.023735757917165756, - -0.0068680779077112675, - -0.006632050033658743, - -0.00036484585143625736, - 0.01956039108335972, - 0.016648273915052414, - -0.01710038259625435, - 0.011036794632673264, - 0.013004801236093044, - 0.0012748828157782555, - -0.01049160398542881, - -0.0169674102216959, - -0.031142378225922585, - 0.007147321943193674, - 0.015252052806317806, - -0.02110288292169571, - 0.022326238453388214, - -0.002353629795834422, - 0.01768546737730503, - -0.010086034424602985, - 0.015970109030604362, - -0.019573688507080078, - -0.008676516823470592, - -0.021235857158899307, - 0.03531774505972862, - -0.0003642225346993655, - -0.0217677503824234, - 0.008330785669386387, - 0.0025896576698869467, - -0.01848330721259117, - -0.0012624164810404181, - -0.009953061118721962, - 0.0019613581243902445, - -0.020836936309933662, - -0.021195964887738228, - -0.028775451704859734, - -0.011242903769016266, - 0.0014884714037179947, - 0.006721807178109884, - -0.0022788322530686855, - -0.02342991903424263, - -0.026315441355109215, - 0.17839716374874115, - -0.048162978142499924, - -0.011475606821477413, - 0.006269697565585375, - -0.0208901260048151, - -0.026235658675432205, - 0.029387129470705986, - -0.0011335985036566854, - 0.017419518902897835, - 0.0200789887458086, - 0.012133825570344925, - 0.015730757266283035, - -0.006352805532515049, - 0.002223980613052845, - 0.02091672085225582, - -0.0308232419192791, - -0.011894473806023598, - -0.021342236548662186, - 0.004943287465721369, - 0.04031754285097122, - 0.019640175625681877, - -0.020810341462492943, - 0.0019380877492949367, - -0.027099985629320145, - 0.02267196960747242, - 0.001455227960832417, - -0.004052365198731422, - 0.015451513230800629, - 0.013583236373960972, - 0.02433413825929165, - -0.018337035551667213, - -0.0004122176324017346, - -0.004637448582798243, - -0.011827986687421799, - 0.005265748128294945, - 0.00805154163390398, - 0.01688762567937374, - -0.0060669127851724625, - 0.012944963760674, - 0.039200566709041595, - 0.03821656480431557, - -0.017406221479177475, - -0.013895723968744278, - -0.0200789887458086, - -0.019653473049402237, - 0.023283647373318672, - 0.021461911499500275, - -0.0055848839692771435, - 0.007626026403158903, - 0.00503304461017251, - -0.021182667464017868, - 0.007340133655816317, - -0.0035337689332664013, - 0.041700467467308044, - 0.0013845858629792929, - 0.004301690496504307, - -0.0007380025344900787, - -0.00852359738200903, - 0.011641823686659336, - -0.007818837650120258, - -0.0267010647803545, - 0.016369029879570007, - -0.011262849904596806, - 0.03055729530751705, - 0.014334536157548428, - 0.015744054690003395, - 0.0008310839766636491, - -0.0016746341716498137, - 0.004753800109028816, - -0.015517999418079853, - -0.0023453189060091972, - -0.013104531913995743, - 0.0003536262083798647, - 0.003553715068846941, - -0.018855633214116096, - -0.036886829882860184, - 0.0050529902800917625, - -0.007100781425833702, - 0.031089188531041145, - 0.0340677946805954, - -0.010750901885330677, - 0.007040943019092083, - -0.006189913488924503, - -0.021355533972382545, - -0.0021225884556770325, - -0.02426765114068985, - 0.04186003655195236, - 0.031940218061208725, - 0.0149728087708354, - -0.02104969508945942, - -0.00372990476898849, - -0.02432084083557129, - 0.004720557015389204, - -0.007127375807613134, - 0.00345398485660553, - 0.007286943960934877, - 0.030903026461601257, - 0.01450740173459053, - -0.005305639933794737, - -0.01699400506913662, - -0.00703429477289319, - 0.05252450704574585, - 0.039971813559532166, - -0.01338377594947815, - -0.013869129121303558, - 0.0034672822803258896, - -0.008211109787225723, - 0.03481244295835495, - 0.002194061642512679, - -0.02840312570333481, - 0.0026594686787575483, - -0.0031248757150024176, - 0.00936797820031643, - -0.015105782076716423, - -0.001633079955354333, - -0.0013106194091960788, - 0.011415769346058369, - 0.00032370720873586833, - 0.004813638050109148, - -0.03486563265323639, - -0.02353629842400551, - -0.020557692274451256, - 0.018855633214116096, - -0.005342207849025726, - 0.01775195263326168, - -0.03412098437547684, - -0.03473266214132309, - 0.018071088939905167, - 0.0011385850375518203, - 0.016422219574451447, - 0.012206961400806904, - -0.002855604514479637, - 0.008171217516064644, - -0.008290893398225307, - 0.0012948288349434733, - 0.017193464562296867, - -0.019693365320563316, - -0.04454610124230385, - -0.009893223643302917, - 0.017339736223220825, - 0.022153373807668686, - 0.014201562851667404, - -0.001876587513834238, - -0.01691422052681446, - 0.019813042134046555, - -0.006106805056333542, - 0.016528597101569176, - -0.01137587707489729, - -0.030903026461601257, - -0.044040799140930176, - -0.009175166487693787, - 0.006834834348410368, - -0.005997101776301861, - -0.019719960168004036, - 0.0057012359611690044, - -0.0009499289444647729, - -0.03316357359290123, - -0.0370463989675045, - 0.043402526527643204, - -0.0013197612715885043, - -0.027951015159487724, - -0.0011369228595867753, - 0.007080835290253162, - -0.04435993731021881, - 0.00033347244607284665, - -3.072413528570905e-05, - -0.1672273874282837, - 0.02590322494506836, - 0.022472510114312172, - 0.0013505114475265145, - 0.019081687554717064, - 0.005558289587497711, - 0.01949390582740307, - 0.013895723968744278, - -0.03409438952803612, - 0.004401420708745718, - 0.03130194544792175, - -0.008364029228687286, - -0.0388016477227211, - -0.02510538324713707, - -0.016462111845612526, - -0.005927290767431259, - -0.009520897641777992, - 0.017366331070661545, - 0.044865235686302185, - 0.01534513384103775, - 0.030450915917754173, - -0.01293831504881382, - 0.014188265427947044, - 0.006552265956997871, - -0.0021109532099217176, - 0.008297542110085487, - -0.02171456068754196, - 0.020052393898367882, - -0.0014751739799976349, - -0.009055490605533123, - 0.009587384760379791, - -0.016847733408212662, - 0.015451513230800629, - -0.015025997534394264, - -0.022419320419430733, - -0.011555391363799572, - -0.000668191525619477, - 0.002405156847089529, - -0.011203011497855186, - 0.023655973374843597, - 0.016475407406687737, - 0.03385503590106964, - -0.021621480584144592, - 0.0024500354193150997, - 0.00850365124642849, - 0.017193464562296867, - 0.0063428329303860664, - -0.023110782727599144, - -0.00891586858779192, - -0.022326238453388214, - 0.001878249691799283, - -0.008603380993008614, - 0.0028240233659744263, - 0.038509104400873184, - 0.015557891689240932, - 0.020703963935375214, - 0.019148174673318863, - 0.007592782843858004, - -0.01381593942642212, - 0.023230459541082382, - 0.007147321943193674, - -0.008676516823470592, - -0.004863503389060497, - -0.00544858630746603, - -0.009600682184100151, - -0.021169370040297508, - -0.012991504743695259, - 0.012333285994827747, - -0.010990254580974579, - -0.0033392952755093575, - -0.0021392100024968386, - -0.025238357484340668, - 0.019906122237443924, - -0.014015399850904942, - 0.010438414290547371, - 0.02920096553862095, - 0.00022231496404856443, - 0.009733655489981174, - 0.02590322494506836, - -0.019919419661164284, - -0.03417417034506798, - 0.048987410962581635, - 0.004265123046934605, - -0.01864287443459034, - -0.007719107903540134, - 0.0033492683432996273, - -0.016648273915052414, - 0.010285494849085808, - -0.011116579174995422, - 0.0018067765049636364, - 0.011508850380778313, - -0.043216366320848465, - -0.006738428492099047, - -0.015172268263995647, - 0.009560789912939072, - -0.012007500976324081, - 0.0038794998545199633, - -0.011608581058681011, - 0.004674016032367945, - -0.0008472900954075158, - 0.010591333732008934, - -0.015305242501199245, - -0.04579605162143707, - 0.00012144214269937947, - 0.01293831504881382, - 0.01335053239017725, - -0.013669668696820736, - 0.025743655860424042, - 0.03712618350982666, - -0.003563687903806567, - 0.0013995453482493758, - -0.01781843975186348, - 0.014254751615226269, - 0.027099985629320145, - 0.0009731993195600808, - 0.024892626330256462, - -0.009215058758854866, - -0.022991105914115906, - 0.03074345737695694, - 0.015611081384122372, - 0.04268447309732437, - -0.013051342219114304, - -0.019613580778241158, - 0.024639977142214775, - -0.011728256940841675, - -0.025304844602942467, - -0.09324096888303757, - 0.00489009777083993, - 0.033615682274103165, - 0.013530046679079533, - -0.014560590498149395, - 0.01336382981389761, - -0.013762750662863255, - 0.01138252578675747, - -0.007865378633141518, - 0.0323125459253788, - -0.054678674787282944, - -0.025650575757026672, - -0.016741355881094933, - -0.01338377594947815, - 0.023815542459487915, - -0.004314987920224667, - 0.00042593051330186427, - -0.000805735879112035, - -0.008390623144805431, - 0.023749055340886116, - -0.01093706488609314, - -0.0007554552867077291, - -0.004085608758032322, - 0.0008319150656461716, - -0.030238159000873566, - -0.008084784261882305, - -0.03289762884378433, - -0.00025015627034008503, - 0.013869129121303558, - -0.0218342375010252, - 0.0324455164372921, - -0.011980906128883362, - 0.01704719476401806, - -0.020584287121891975, - 0.021648075431585312, - -0.003101605223491788, - -0.031062593683600426, - -0.011415769346058369, - 0.03470606729388237, - -0.03239232674241066, - -0.008244352415204048, - 0.0015616067685186863, - -0.01852319948375225, - -0.03225935623049736, - -0.00886932760477066, - -0.03414757922291756, - -0.017951413989067078, - 0.004494502209126949, - 0.004218582063913345, - 0.010225657373666763, - -0.02099650539457798, - -0.031248755753040314, - -0.015065889805555344, - -0.01789822429418564, - 0.02827015146613121, - 0.002416792092844844, - 0.00035840494092553854, - -0.012306691147387028, - -0.008836084976792336, - -0.02498570829629898, - -0.01950720325112343, - 0.012619178742170334, - -0.027711663395166397, - 0.020584287121891975, - 0.01610308326780796, - 0.00011552067007869482, - -0.020531097427010536, - 0.007725756615400314, - 0.018004601821303368, - 0.016767950728535652, - -0.028775451704859734, - 0.002907131565734744, - -0.004338258411735296, - -7.355093111982569e-05, - -0.035051796585321426, - -0.009720358066260815, - -0.04997141659259796, - -0.011442364193499088, - -0.0004367346118669957, - -0.013423668220639229, - -0.00443798815831542, - -0.034360334277153015, - 0.018084386363625526, - -0.018190765753388405, - 0.03811018541455269, - 0.029440317302942276, - -0.020411422476172447, - -0.01695411279797554, - 0.0250123031437397, - -0.020517800003290176, - 0.01604989357292652, - 0.025384629145264626, - 0.02983923815190792, - 0.0006307926960289478, - -0.025517601519823074, - 0.0022871431428939104, - -0.009933114983141422, - 0.011395823210477829, - -0.01295161247253418, - 0.013503451831638813, - -0.01870936155319214, - -0.003610228653997183, - -0.052843641489744186, - 0.01950720325112343, - 0.034280549734830856, - -0.00649242801591754, - -0.007306890096515417, - -0.00849700253456831, - -0.0010147534776479006, - 0.010804091580212116, - 0.021515101194381714, - 0.020863531157374382, - -0.010026196949183941, - 0.0080781364813447, - 0.006402670871466398, - -0.011641823686659336, - -0.01686103083193302, - -0.03723256289958954, - 0.006578860338777304, - 0.02186083234846592, - -0.0053255860693752766, - 0.004777070600539446, - -0.01045171171426773, - 0.010611279867589474, - 0.006861429195851088, - 0.00688802357763052, - -0.028615882620215416, - 0.004218582063913345, - 0.004953260533511639, - 0.003058389062061906, - 0.0008767935796640813, - 0.006927915848791599, - 0.0169674102216959, - -0.010996903292834759, - -0.01134263351559639, - 0.024812841787934303, - -0.020464612171053886, - 0.0002254315186291933, - -0.007752350997179747, - 0.026049494743347168, - 0.0019114931346848607, - 0.06414638459682465, - -0.02497241087257862, - -0.026980308815836906, - 0.009853331372141838, - -0.03289762884378433, - -0.009600682184100151, - -0.011588634923100471, - 0.024427220225334167, - 0.011515499092638493, - 0.009587384760379791, - -0.0045244209468364716, - 0.03539752587676048, - 0.01698070764541626, - 0.016674868762493134, - -0.014148373156785965, - 0.019001903012394905, - -0.009195112623274326, - 0.009673817083239555, - -0.006292967591434717, - 0.010199062526226044, - -0.029307344928383827, - 0.040051598101854324, - -0.0005061301053501666, - 0.0267675518989563, - -0.016781246289610863, - -0.0018134252168238163, - -0.026873931288719177, - -0.03534433990716934, - -0.007054240442812443, - -0.008091432973742485, - -0.012346583418548107, - -0.0011543756118044257, - 0.0038562295958399773, - 0.00847040768712759, - 0.008284244686365128, - 0.011834635399281979, - 0.0022389402147382498, - 0.009161869063973427, - -0.00042219064198434353, - -0.0005090389167889953, - 0.002707671606913209, - 0.011967608705163002, - 0.007792243268340826, - -0.0017702088225632906, - -0.006266373209655285, - 0.02333683706820011, - 0.002169129205867648, - -0.01848330721259117, - 0.009667168371379375, - -0.0045244209468364716, - 0.014214860275387764, - -0.017259951680898666, - 0.017605682834982872, - -0.02187412977218628, - 0.02255229465663433, - -0.01331728883087635, - 0.02422775886952877, - 0.0022854809649288654, - -0.0031464837957173586, - 0.030929621309041977, - 0.01491961907595396, - 0.011109930463135242, - 0.016648273915052414, - -0.002378562232479453, - -0.019813042134046555, - -0.02433413825929165, - 0.014228157699108124, - -0.006745077203959227, - -0.03178064897656441, - 0.0024733059108257294, - 0.02986583299934864, - -0.010145872831344604, - -0.012439664453268051, - -0.0013571600429713726, - -0.004285068716853857, - -0.005003125406801701, - 0.0023453189060091972, - -0.0030916323885321617, - -0.019666770473122597, - -0.022818241268396378, - 0.02013217844069004, - 0.00890921987593174, - 0.009394573047757149, - -0.011621877551078796, - -0.005987128708511591, - 0.024733059108257294, - -0.003103267401456833, - 0.00805819034576416, - -0.012672368437051773, - -0.006794942542910576, - -0.0003268237633164972, - -0.009102031588554382, - -0.015291945077478886, - -0.011143174022436142, - -0.01869606412947178, - -0.03066367283463478, - -0.0006170798442326486, - 0.02108958549797535, - 0.03164767846465111, - 0.007173916790634394, - 0.11574007570743561, - 0.027179770171642303, - -0.016568489372730255, - 0.03071686252951622, - 0.004261798691004515, - 0.014786645770072937, - 0.02252569980919361, - 0.0004795354325324297, - 0.011129876598715782, - -0.03534433990716934, - 0.012665719725191593, - -0.012379826977849007, - -0.00648577930405736, - -0.019161472097039223, - -0.0080116493627429, - 0.0006382724968716502, - 0.005687938537448645, - 0.011568688787519932, - -0.02898820862174034, - 0.0018184116343036294, - 0.015424918383359909, - -0.03720596805214882, - 0.012213610112667084, - 0.02171456068754196, - -0.027738258242607117, - -0.014720158651471138, - 0.0009665506659075618, - -0.019001903012394905, - -0.01692751795053482, - -0.02167467027902603, - -0.0034739309921860695, - -0.010159170255064964, - -0.06728455424308777, - -0.040689870715141296, - 0.03374865651130676, - -0.01610308326780796, - -0.009208410046994686, - -0.03715277835726738, - 0.015943514183163643, - 0.0031431594397872686, - -0.0007292761583812535, - 0.029520101845264435, - -0.017339736223220825, - -0.0466470792889595, - -0.0109503623098135, - 0.006249751430004835, - -0.0017984657315537333, - -0.009886574931442738, - -0.012419718317687511 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 5, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 406 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000006.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000006.json deleted file mode 100644 index 85188a1110a7f6b0fdf3ff20128799c44a53bbbb..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000006.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000006", - "content": "Der Anh\u00e4nger dockt an eine zugewiesene Verladesta- tion an, wo der Fahrer der Zugmaschine und das Verladepersonal den Beladevorgang abstimmen. Der Fahrer \u00f6ffnet die Laderaumt\u00fcren respektive die Abdeckung des Anh\u00e4- ngers, w\u00e4hrend das Verladepersonal die G\u00fcter kontrolliert und den Transport vorberei- tet. Anschlie\u00dfend wird die \u00dcberladebr\u00fccke angehoben und eventuell eine Verladebr\u00fc- cke zwischen dem Anh\u00e4nger und der Rampe platziert. [13]\nNun beginnt die eigentliche Beladung. Die Ladeeinheit wird mithilfe eines passenden Flurf\u00f6rderger\u00e4ts angehoben und zum entsprechenden Anh\u00e4nger transportiert. Dabei ist es wichtig, das Gewicht gleichm\u00e4\u00dfig zu verteilen. Der Anh\u00e4nger sollte l\u00fcckenlos und si- cher beladen werden, um eine formschl\u00fcssige und/oder kraftschl\u00fcssige Verbindung her- zustellen. Bei einer formschl\u00fcssigen Beladung, werden die Ladeeinheiten direkt an die Bordw\u00e4nde l\u00fcckenlos verladen. Bei einer Kraftschl\u00fcssigen Verladung werden die Lade- einheiten mithilfe von Zurrmitteln, beispielsweise mit Zurrgurten, gesichert. [14, 15] Ist der Anh\u00e4nger beladen und kontrolliert, kann die Auslieferung an den Kunden durch die Zugmaschine beginnen. Bei einem Entladevorgang werden die Ladeeinheiten aus dem Anh\u00e4nger entnommen und auf vorhergesehene Lagerpl\u00e4tze zwischengelagert. Dies erfolgt in der Regel \u00e4hnlich wie beim Verladevorgang. ## 2.2 Ermittlung der akustischen Kenngr\u00f6\u00dfen\n\nDer folgende Abschnitt behandelt die Ermittlung der akustischen Kenngr\u00f6\u00dfen, die f\u00fcr den Kontext wichtig sind. Im Rahmen dessen werden verschiedene Ans\u00e4tze und Verfah- ren vorgestellt, um den entstehenden L\u00e4rm zu bewerten und zu quantifizieren. Die ge- naue Erfassung und Analyse der akustischen Eigenschaften spielt eine gro\u00dfe Rolle bei der Beurteilung der L\u00e4rmbelastung der Verladet\u00e4tigkeiten. Zun\u00e4chst werden die grundlegenden Begriffe und Parameter erkl\u00e4rt, die zur Beschrei- bung des Schalls und der L\u00e4rmemissionen verwendet werden. Dazu geh\u00f6ren unter an- derem der Schalldruckpegel, die Schallleistung und die Schallemission. Die genaue Kenntnis dieser Begriffe ist wichtig, um die Messergebnisse korrekt zu interpretieren und vergleichbar zu machen. 9\n2 Grundlagen\n\n## Zur Beurteilung von Schallimmissionen\n\nDie Beurteilung von L\u00e4rmimmissionen hat das Ziel, das Ausma\u00df und die St\u00e4rke der L\u00e4rm- wirkung zu erfassen und zu bewerten. Die sogenannten Mittelungspegel eignen sich hervorragend im Schallimmissionsschutz zur quantitativen Erfassung und Charakterisie- rung von zeitlich schwankenden Ger\u00e4uschen. Hierbei wird ein sogenannter Beurtei- lungspegel (siehe Formel 1) verwendet, welcher eine Gr\u00f6\u00dfenordnung darstellt f\u00fcr die durchschnittliche Ger\u00e4uschimmission w\u00e4hrend einer bestimmten Beurteilungszeit Tr. Die Norm legt Verfahren zur Beurteilung von Schallimmissionen fest und bietet eine standardisierte Methode zur Bestimmung des Beurteilungspegels. Der Beurteilungspe- gel kann auch mithilfe einer Messung gem\u00e4\u00df der Norm DIN 45645-1 [16] ermittelt wer- den. Die ermittelten Beurteilungspegel werden mit den derzeitig geltenden Immissions- grenz- oder Richtwerten der jeweiligen Regelwerke verglichen. Die jeweiligen Regel- werke legen die wesentlichen Rahmenbedingungen und Schutzziele fest.", - "embedding": [ - 0.02934376895427704, - 0.010185169987380505, - 0.01434438768774271, - -0.04142187535762787, - -0.002705128863453865, - 0.003605746664106846, - -0.012759299948811531, - -0.013977590017020702, - -0.016479671001434326, - -0.010414418764412403, - 0.005885128863155842, - 0.007755139376968145, - -0.028557775542140007, - 0.014108588919043541, - 0.0015883625019341707, - 0.008167785592377186, - 0.039273492991924286, - 0.008154685609042645, - 0.012281153351068497, - -0.0031554377637803555, - -0.020828837528824806, - -0.0019027601229026914, - -0.0026576416566967964, - -0.005980103276669979, - -0.017632462084293365, - 0.03238294646143913, - 0.03725610673427582, - -0.023055819794535637, - -0.007715839426964521, - -0.004997610580176115, - -0.00034673791378736496, - -0.0034157983027398586, - -0.014147888869047165, - 0.007440741639584303, - -0.021798228845000267, - -0.01376799214631319, - -0.0028426777571439743, - -0.012209104374051094, - 0.031518351286649704, - -0.011966756545007229, - 0.014187188819050789, - -0.006553223822265863, - 0.007781338877975941, - -0.04246986657381058, - 0.017331164330244064, - 0.012484202161431313, - -0.006566323339939117, - -0.001227296655997634, - -0.023933513090014458, - 0.015038682147860527, - 0.011075963266193867, - 0.023697713389992714, - -0.023029619827866554, - 0.009097878821194172, - -0.014986282214522362, - -0.0020550463814288378, - -0.02095983549952507, - 0.002300669439136982, - 0.00417886720970273, - -0.014907683245837688, - -0.03311654180288315, - 0.004745437763631344, - -0.01989874430000782, - 0.014160988852381706, - -0.00666457274928689, - 0.0007663439610041678, - -0.003907044418156147, - -0.011835756711661816, - -0.011311761103570461, - -0.01043406780809164, - 0.025531699880957603, - 0.024549206718802452, - 0.008763831108808517, - 0.021981626749038696, - 0.03254014626145363, - -0.014606385491788387, - 0.00921577773988247, - -0.0034288980532437563, - -0.012831348925828934, - 0.012254954315721989, - 0.012084655463695526, - -0.03005116432905197, - -0.024077611044049263, - 0.05879233777523041, - 0.02123493328690529, - -0.005262883845716715, - -0.002685478888452053, - -0.0035664469469338655, - -0.010656766593456268, - 0.008482183329761028, - -0.0016161998501047492, - 0.01883765310049057, - 0.0002740744093898684, - 0.006546673830598593, - 0.019859444350004196, - -0.010493017733097076, - 0.005151534453034401, - 0.014855283312499523, - 0.001694799168035388, - -0.04252226650714874, - -0.02337021753191948, - 0.0038644697051495314, - -0.006150401663035154, - 0.006517198868095875, - -0.021326633170247078, - -0.009425376541912556, - 0.0015466066543012857, - 0.01554957777261734, - 0.003166900249198079, - -0.029684366658329964, - -0.0037334708031266928, - 0.02685478888452053, - -0.009523625485599041, - -0.010329268872737885, - 0.01027686893939972, - -0.004578413907438517, - 0.041762471199035645, - -0.016728568822145462, - 0.008475633338093758, - -0.02202092669904232, - 0.027090586721897125, - 0.025374500080943108, - 0.006517198868095875, - -0.0028770649805665016, - 0.02481120452284813, - 0.02685478888452053, - 0.019872544333338737, - 0.0069494955241680145, - -0.02065853774547577, - -0.013833491131663322, - -0.03254014626145363, - 0.0064811743795871735, - 0.009261627681553364, - 0.008737631142139435, - -0.011848856694996357, - 0.012569351121783257, - -0.01920444890856743, - 0.012667600996792316, - -0.024575406685471535, - -0.03382393345236778, - 0.008659032173454762, - 0.006923295557498932, - -0.03508152440190315, - -0.032880742102861404, - -0.0009538362501189113, - 0.043229661881923676, - 0.017422864213585854, - 0.02085503563284874, - -0.009281277656555176, - 0.0017013491597026587, - -0.016348671168088913, - -0.023488115519285202, - 0.013237446546554565, - -0.02395971119403839, - -0.019138948991894722, - 0.005652605555951595, - 0.008776931092143059, - 0.01110871322453022, - -0.015523377805948257, - -0.013453594408929348, - 0.0158377755433321, - 0.016204573214054108, - 0.008128486573696136, - -0.004768362734466791, - 0.01554957777261734, - 0.017514562234282494, - -0.008763831108808517, - -0.023396415635943413, - -0.003270061919465661, - -0.016204573214054108, - -0.004280391614884138, - 0.014069289900362492, - -0.010047621093690395, - 0.018588753417134285, - -0.01671546883881092, - 0.007971287705004215, - 0.026304593309760094, - -0.004663563333451748, - -0.02473260648548603, - -0.034636128693819046, - -0.024601606652140617, - -0.0007327754865400493, - 0.014134788885712624, - 0.011822657659649849, - -0.042286466807127, - -0.002084521111100912, - -0.0004867430543527007, - 0.024274108931422234, - -0.013636993244290352, - -0.014291987754404545, - -0.005449557211250067, - 0.01940094865858555, - -0.00894067995250225, - -0.027457384392619133, - -0.6296334862709045, - -0.008154685609042645, - 0.004188692197203636, - -0.005678805522620678, - -0.0006517198635265231, - 0.021418331190943718, - 0.020697837695479393, - -0.00025749485939741135, - 0.013093347661197186, - 0.043124862015247345, - -0.006831596605479717, - 0.010735365562140942, - 0.0076241400092840195, - 0.005479032173752785, - 0.0021320083178579807, - -0.016872666776180267, - -0.016584469005465508, - -0.01497318223118782, - 0.0386446975171566, - 0.0029654891695827246, - -0.019256848841905594, - 0.02200782671570778, - -0.013198146596550941, - 0.00644842442125082, - 0.004945211112499237, - -0.012582451105117798, - 0.016086673364043236, - -0.011672008782625198, - 0.015680577605962753, - -0.019649846479296684, - -0.01951884664595127, - 0.00734249223023653, - -0.030679959803819656, - 0.016846468672156334, - 0.04320346191525459, - 0.008095736615359783, - 0.007709289435297251, - 0.024850504472851753, - -0.004096992779523134, - 0.010624016635119915, - 0.007100144401192665, - -0.02194232866168022, - -0.0014876570785418153, - -0.0075717405416071415, - 0.008979979902505875, - -0.0019518847111612558, - 0.06083592399954796, - 5.582807716564275e-05, - 0.012667600996792316, - -0.027745582163333893, - 0.0031505252700299025, - 0.02357981540262699, - 0.015313779935240746, - 0.014449186623096466, - 0.02847917750477791, - 0.00512205995619297, - 0.04037388414144516, - -0.011049763299524784, - -0.016348671168088913, - 0.006536848843097687, - 0.0148159833624959, - 0.012785499915480614, - -0.005508506670594215, - -0.019859444350004196, - -0.03102055750787258, - 0.015339979901909828, - -0.015759175643324852, - -0.028924573212862015, - 0.0076241400092840195, - -0.021117035299539566, - -0.007990937680006027, - 0.009864222258329391, - -0.007185293827205896, - -0.018575653433799744, - 0.02452300675213337, - 0.014226488769054413, - 0.0027133161202073097, - -0.014370587654411793, - 0.005551081616431475, - 0.023317817598581314, - -0.012130504474043846, - 0.00994282215833664, - -0.0014393512392416596, - -0.009110978804528713, - 0.017711061984300613, - -0.00245295581407845, - 0.007938537746667862, - 0.0058196294121444225, - 0.0020059216767549515, - 0.006382924970239401, - 0.015955675393342972, - 0.03285454213619232, - 0.0014712822157889605, - -0.026239093393087387, - -0.008580432273447514, - 0.03806830197572708, - -0.014567085541784763, - 0.01468498446047306, - 0.006608898285776377, - -0.02868877537548542, - -0.011822657659649849, - -0.01680716872215271, - 0.007309742737561464, - -0.008678682148456573, - 0.02695958875119686, - 0.0034059733152389526, - -0.016951266676187515, - 0.018955551087856293, - 0.020409639924764633, - -0.027169186621904373, - -0.014409886673092842, - -0.011580308899283409, - -0.005544531624764204, - -0.017029866576194763, - -0.015169681049883366, - -0.021038435399532318, - 0.026147395372390747, - 0.004002018831670284, - 0.015313779935240746, - -0.036548715084791183, - 0.013636993244290352, - 0.010296518914401531, - 0.020593037828803062, - -0.00995592214167118, - -0.019021051004529, - 0.03709891065955162, - 0.012536602094769478, - 0.0022220700047910213, - 0.0007778063882142305, - -0.011626158840954304, - 0.014147888869047165, - -0.0013836766593158245, - 0.00046340885455720127, - -0.012294253334403038, - 0.020828837528824806, - 0.026422493159770966, - 0.03235674649477005, - 0.0006721884710714221, - 0.020239342004060745, - -0.01814335770905018, - -0.02540070004761219, - -0.017907559871673584, - 0.01862805336713791, - -0.0302345622330904, - -0.012084655463695526, - -0.03487192466855049, - -0.014252687804400921, - 0.013977590017020702, - -0.00980527326464653, - 0.003645046381279826, - -0.016741668805480003, - -0.03081095777451992, - -0.01201915554702282, - 0.014029989950358868, - -0.00526615884155035, - 0.008187435567378998, - -0.030548959970474243, - -0.006988795008510351, - 0.003553347196429968, - -0.017331164330244064, - 0.0004486714897211641, - 0.015182781033217907, - -0.05543876439332962, - -0.0018405355513095856, - -0.012497302144765854, - -0.018090957775712013, - 0.024785006418824196, - 0.003245499450713396, - -0.03146595135331154, - -0.0421292707324028, - 0.007276992779225111, - 1.246665033249883e-05, - -0.014946983195841312, - 0.021379033103585243, - 0.00039258753531612456, - -0.000677919655572623, - -0.010997363366186619, - -0.016283173114061356, - -0.0009096240974031389, - -0.021379033103585243, - 0.015536477789282799, - 0.0020566838793456554, - -0.01361079327762127, - 0.004627538844943047, - 0.01709536649286747, - 0.0058622038923203945, - 0.010879464447498322, - 0.01573297567665577, - -0.02858397550880909, - 0.02840057760477066, - -0.006870896089822054, - 0.02976296655833721, - -0.015719877555966377, - 0.010217919945716858, - -0.031046755611896515, - 0.001843810547143221, - 0.002248269971460104, - 0.010493017733097076, - 0.010257219895720482, - 0.02067163772881031, - 0.029003173112869263, - -0.005691905505955219, - 0.0309943575412035, - -0.009261627681553364, - 0.009759423322975636, - 0.0039004944264888763, - 0.011206962168216705, - -0.01085981447249651, - 0.046295035630464554, - 0.020357239991426468, - 0.020697837695479393, - -0.008338084444403648, - -0.01603427343070507, - -0.012857548892498016, - 0.003690896090120077, - 0.046714235097169876, - -0.016374871134757996, - 0.013519094325602055, - 0.032513946294784546, - -0.007565190549939871, - -0.00644842442125082, - 0.006258476059883833, - 0.04616403952240944, - 0.0023841813672333956, - -0.009097878821194172, - -0.01940094865858555, - 0.004882986657321453, - 0.0112528121098876, - 0.004005293361842632, - -0.006323975510895252, - -0.007276992779225111, - 0.0029704016633331776, - 0.0028770649805665016, - 0.01173095777630806, - 0.015339979901909828, - 0.014449186623096466, - 0.012706900015473366, - 0.005213758908212185, - 0.04681903123855591, - 0.0063501750119030476, - 0.0222043264657259, - 0.018392255529761314, - 0.014069289900362492, - -0.0026150669436901808, - 0.01826125755906105, - -0.029212770983576775, - -0.00492883613333106, - 0.04414665326476097, - -0.01506488211452961, - -0.02405141107738018, - -0.003373223589733243, - 0.007761688902974129, - -0.015811575576663017, - -0.01768486201763153, - -0.004968136083334684, - -0.008180885575711727, - 0.02887217327952385, - -0.011030113324522972, - 0.011986405588686466, - 0.01805165782570839, - -0.006621998269110918, - 0.035002924501895905, - 0.011789907701313496, - -0.013545293360948563, - 0.017894459888339043, - -0.002994963899254799, - -0.018706653267145157, - -0.022374624386429787, - -0.0151172811165452, - 0.005921153351664543, - 0.0032536869402974844, - -0.0029147271998226643, - -0.011999505572021008, - 0.008672132156789303, - 0.015195881016552448, - -0.0026789288967847824, - -0.014802884310483932, - 0.02685478888452053, - 0.03293314203619957, - 0.011711307801306248, - -0.0011233162367716432, - -0.029605768620967865, - 0.004666838329285383, - 0.022427024319767952, - -0.011527909897267818, - -0.011416560038924217, - -0.023160617798566818, - 0.01173095777630806, - -0.026435593143105507, - 0.004460514988750219, - -0.012228754349052906, - 0.00791233777999878, - -0.004588238894939423, - -0.009431925602257252, - 0.007250793278217316, - -0.005449557211250067, - 0.022374624386429787, - 0.019938044250011444, - -0.0016317559638991952, - 0.007892687804996967, - -0.0002707994426600635, - -0.0351601243019104, - -0.017946859821677208, - -0.026723790913820267, - 0.017658662050962448, - -0.001253496389836073, - -0.015392378903925419, - -0.027640782296657562, - 0.008691782131791115, - -0.013263645581901073, - -0.033954933285713196, - 0.00461116386577487, - 0.006831596605479717, - -0.009503975510597229, - 0.0020517713855952024, - 0.0006406668690033257, - 0.00623227609321475, - 0.006412399932742119, - 0.03772770240902901, - 0.014868383295834064, - -0.02503390423953533, - -0.01463258545845747, - 0.0007614315254613757, - 0.00513843446969986, - 0.014239588752388954, - 0.009425376541912556, - -0.00157608138397336, - 0.02926517091691494, - -0.01520898099988699, - -0.022558022290468216, - 0.0011282286141067743, - -0.03149215131998062, - 0.014724284410476685, - 0.027955180034041405, - 0.010453717783093452, - 0.010060721077024937, - 0.038959093391895294, - -0.01730496436357498, - 0.02406451106071472, - -0.00907167885452509, - 0.010800865478813648, - -0.004460514988750219, - 0.0295533686876297, - -0.011331411078572273, - -0.0027182286139577627, - -0.022151926532387733, - -0.011265912093222141, - 0.031623151153326035, - -0.005967003293335438, - -0.017344264313578606, - 0.018221957609057426, - 0.01624387316405773, - 0.017946859821677208, - -0.023501215502619743, - 0.011626158840954304, - 0.02020004205405712, - 0.02676309086382389, - 0.00893412996083498, - -0.015916375443339348, - -0.006651472765952349, - 0.00024357621441595256, - 0.0007209037430584431, - 0.012903398834168911, - 0.002844315255060792, - 0.011947106570005417, - 0.020108342170715332, - 0.003034263616427779, - -0.007113244384527206, - 0.015392378903925419, - 0.01024411991238594, - 0.0104209678247571, - 0.0038775696884840727, - 0.003085025819018483, - -0.0098118232563138, - 0.020501339808106422, - -0.011265912093222141, - -0.0063272505067288876, - 0.001853635418228805, - -0.0017275488935410976, - -0.0225056242197752, - -0.008724531158804893, - -0.019269948825240135, - -0.006923295557498932, - -0.005780329462140799, - -0.011095613241195679, - -0.025243502110242844, - 0.013368445448577404, - -0.015562677755951881, - -0.03419073298573494, - -0.01806475780904293, - -0.020828837528824806, - 0.0021434708032757044, - -0.014567085541784763, - 0.02579369768500328, - 0.00593752833083272, - -0.021379033103585243, - -0.034898124635219574, - -0.00985112227499485, - 0.008121936582028866, - -0.008449433371424675, - 0.011645808815956116, - -0.0017209990182891488, - -0.010925314389169216, - 0.00492883613333106, - -0.010126220993697643, - 0.010401318781077862, - -0.013492894358932972, - -0.014449186623096466, - -0.013898991048336029, - 0.026409393176436424, - -0.013014747761189938, - 0.004673388320952654, - 4.474945308174938e-05, - 0.013145746663212776, - 0.0057901544496417046, - 0.020016642287373543, - 0.0047847372479736805, - -0.0034485480282455683, - 0.009425376541912556, - 0.01632247120141983, - 0.0057999794371426105, - 0.006215901114046574, - 0.019780844449996948, - -0.021208733320236206, - 0.017422864213585854, - -0.021994726732373238, - 0.0026609166525304317, - -0.002947476925328374, - 0.029317570850253105, - -0.018287455663084984, - 4.016960519948043e-05, - -0.0024316683411598206, - 0.020422739908099174, - 0.009124078787863255, - -0.014501586556434631, - -0.023999011144042015, - -0.012156704440712929, - 0.005086035002022982, - -0.0013394644483923912, - 0.00446706498041749, - 0.0069822450168430805, - 0.0228069219738245, - 0.029998764395713806, - 0.0038317199796438217, - -0.0026920288801193237, - -0.029003173112869263, - 0.05402397736907005, - 0.021562431007623672, - -0.010041071102023125, - 0.0416838712990284, - -0.012268053367733955, - 0.009896972216665745, - -0.016086673364043236, - -0.00045726829557679594, - 0.03796350210905075, - 0.011724407784640789, - 0.00763069000095129, - -0.0048567866906523705, - -0.02973676659166813, - -0.02453610673546791, - -0.006242101080715656, - 0.015104181133210659, - -0.0098118232563138, - 0.0009415551321581006, - -0.016780968755483627, - 0.015182781033217907, - -0.01623077318072319, - 0.003618846647441387, - 0.014291987754404545, - -0.02094673551619053, - -0.017815859988331795, - 0.024470608681440353, - -0.019138948991894722, - 0.029134171083569527, - -0.01853635534644127, - -0.004568589385598898, - -0.02926517091691494, - -0.011573758907616138, - -0.004627538844943047, - -0.027064388617873192, - 0.0028999897185713053, - -0.011783357709646225, - 0.01988564431667328, - 0.01454088557511568, - 0.026239093393087387, - -0.008600082248449326, - 0.006687497720122337, - 0.0006926570786163211, - -0.012051905505359173, - -0.0030621010810136795, - -0.01101701334118843, - -0.015457878820598125, - -0.022165026515722275, - 0.02735258638858795, - 0.017606262117624283, - -0.0018470855429768562, - 0.007329392712563276, - 0.005600206088274717, - 0.0057901544496417046, - 0.03445272892713547, - -0.014724284410476685, - -0.014724284410476685, - -0.005443007219582796, - -0.02057993784546852, - 0.0070935944095253944, - -0.0005919515970163047, - 0.004303316120058298, - 0.014239588752388954, - -0.014553985558450222, - 0.008449433371424675, - 0.01940094865858555, - -0.03846129775047302, - -0.003661421360448003, - -0.001709536649286747, - 0.01680716872215271, - -0.056643955409526825, - 0.023396415635943413, - 0.023501215502619743, - -0.00893412996083498, - 0.004483439959585667, - -0.002351431641727686, - -0.014121688902378082, - -0.010872914455831051, - 0.0064942738972604275, - 0.0034387230407446623, - 0.009012728929519653, - -0.001956797204911709, - -0.027116786688566208, - 0.007794438861310482, - -0.020920535549521446, - 0.013008197769522667, - -0.01549717877060175, - -0.010872914455831051, - -0.012222204357385635, - -0.0386446975171566, - -0.038697097450494766, - -0.0022613697219640017, - -0.021195633336901665, - 0.010702615603804588, - 0.019086550921201706, - 0.02038343995809555, - 0.016204573214054108, - -0.011855406686663628, - 0.0027706283144652843, - -0.007787888869643211, - -0.005295633338391781, - 0.015287579968571663, - -0.006916745565831661, - 0.027745582163333893, - 0.0064811743795871735, - -0.011665458790957928, - -0.018601853400468826, - -0.05999752879142761, - 0.01448848657310009, - -0.0015343254199251533, - 0.0058523789048194885, - -0.012916498817503452, - 0.00048101184074766934, - -2.765818135230802e-05, - 0.0222043264657259, - -0.0008531308267265558, - 0.011226612143218517, - -0.016872666776180267, - 0.0388018973171711, - 0.006638372782617807, - -0.016204573214054108, - -0.009202677756547928, - -0.015706777572631836, - 0.008010586723685265, - -0.017134666442871094, - 0.011488609947264194, - -0.0004822399641852826, - -0.006143851671367884, - -0.012254954315721989, - 0.01057161670178175, - 0.035579320043325424, - 0.010800865478813648, - 0.016401071101427078, - 0.022636622190475464, - -0.01506488211452961, - 0.008436333388090134, - -0.015431678853929043, - -0.024392008781433105, - 0.01129866112023592, - -0.01540547888725996, - 0.023540515452623367, - -0.00148438208270818, - -0.014593285508453846, - 0.005357857793569565, - 0.015025582164525986, - -0.005089309997856617, - -0.0074472916312515736, - 0.007879587821662426, - 0.020632337778806686, - -0.009052028879523277, - 0.01540547888725996, - 0.018588753417134285, - 0.004948486108332872, - 0.0038677447009831667, - 0.0025495674926787615, - 0.0014696447178721428, - -0.0019191349856555462, - 0.007427641656249762, - -0.024654006585478783, - -0.0049059116281569, - -0.0047421627677977085, - -0.029212770983576775, - -0.0026167044416069984, - -0.013505994342267513, - -0.013636993244290352, - 0.006798846647143364, - -0.020619237795472145, - 0.01097116433084011, - -0.026199795305728912, - -0.019558146595954895, - 0.006271576043218374, - 0.0074669416062533855, - 0.025256602093577385, - -0.010892564430832863, - -0.021601730957627296, - -0.015012482181191444, - 0.022178126499056816, - -0.04309866204857826, - 0.011803007684648037, - 0.022558022290468216, - -0.00892757996916771, - -0.004453964997082949, - 0.008724531158804893, - 0.004411390516906977, - -0.010362018831074238, - 0.02056683786213398, - -0.0005858110380358994, - -0.025623399764299393, - -0.014226488769054413, - -0.00608817720785737, - 0.014029989950358868, - -0.01420028880238533, - -0.014475386589765549, - 0.011482059955596924, - -0.0038546447176486254, - 0.018090957775712013, - -0.009314026683568954, - -0.014409886673092842, - 0.0143967866897583, - 0.010158970020711422, - 0.0014860195806249976, - 0.03523872420191765, - -0.017409764230251312, - 0.010132770985364914, - 0.013794192112982273, - -0.01260210108011961, - -0.01173095777630806, - -0.04396325349807739, - -0.01737046428024769, - 0.020907435566186905, - 0.011311761103570461, - -0.026527291163802147, - 0.0011102162534371018, - -0.011744057759642601, - -0.029396168887615204, - -0.014658785425126553, - 0.014121688902378082, - -0.013080247677862644, - 0.012471102178096771, - 0.015431678853929043, - -0.004909186623990536, - 0.003975818865001202, - 0.030365562066435814, - -0.005488857161253691, - -0.008554233238101006, - 0.03314274176955223, - -0.0012559526367112994, - -0.03691551089286804, - 0.009261627681553364, - -0.018706653267145157, - 0.030391762033104897, - 0.010270319879055023, - -0.01999044232070446, - 0.0024464058224111795, - -0.007532441057264805, - -0.038277897983789444, - -0.003743295557796955, - 0.0016137436032295227, - 0.015759175643324852, - 0.0087900310754776, - 0.00791233777999878, - -0.00366797111928463, - 0.031623151153326035, - 0.0047716377303004265, - 0.02444440871477127, - -0.0210646353662014, - -0.015104181133210659, - -0.003939793910831213, - -0.0029851391445845366, - -0.00021225927048362792, - -0.010506117716431618, - -0.04181487113237381, - -0.00037027677171863616, - 0.032775942236185074, - 0.008377384394407272, - 0.010741915553808212, - 0.020252441987395287, - 0.0009382801363244653, - -0.01737046428024769, - 0.0007565190899185836, - 0.011056313291192055, - 0.02646179310977459, - -0.012444902211427689, - 0.01612597331404686, - -0.0052497838623821735, - -0.010735365562140942, - 0.0080695366486907, - 0.011842306703329086, - -0.025361401960253716, - -0.017514562234282494, - 0.018470855429768562, - -0.004968136083334684, - 0.006746447179466486, - 0.02327851764857769, - -0.0017586612375453115, - 0.008560783229768276, - -0.017606262117624283, - 0.028426777571439743, - 0.011757157742977142, - -0.027378784492611885, - 0.010453717783093452, - 0.013243996538221836, - -0.016374871134757996, - -0.018090957775712013, - 0.0041199177503585815, - -0.039168693125247955, - 0.0002626120112836361, - 0.01067641656845808, - -0.01961054652929306, - 0.01554957777261734, - -0.006340350490063429, - 0.017239464446902275, - -0.004018393345177174, - -0.005750854965299368, - -0.014868383295834064, - -0.01125936210155487, - -0.023344017565250397, - 0.03798970207571983, - 0.0158377755433321, - -0.02355361543595791, - -0.0036024716682732105, - -0.01129211112856865, - -0.013250546529889107, - 0.0042640166357159615, - -0.029029373079538345, - 0.012071555480360985, - -0.02685478888452053, - -0.006792296655476093, - 0.0028181152883917093, - -0.01709536649286747, - 0.005141709465533495, - 0.010191719979047775, - 0.002089433604851365, - -0.027457384392619133, - -0.020239342004060745, - 0.19639365375041962, - -0.05116819962859154, - -0.014501586556434631, - -0.000569845549762249, - -0.031439755111932755, - -0.033090341836214066, - 0.03460992872714996, - 0.0041297427378594875, - 0.0047421627677977085, - 0.022531824186444283, - 0.005462657194584608, - -0.00027161819161847234, - -0.016663068905472755, - 0.008993079885840416, - 0.017606262117624283, - -0.02491600438952446, - -0.04084547981619835, - -0.005184284411370754, - 0.0074669416062533855, - 0.040426284074783325, - 0.018405355513095856, - -0.026789288967847824, - -0.01729186438024044, - -0.019558146595954895, - 0.0471334308385849, - 0.016859568655490875, - -0.004355716053396463, - 0.018300555646419525, - 0.032094746828079224, - 0.03178035095334053, - -0.029815366491675377, - -0.005557631608098745, - 0.014475386589765549, - -0.016663068905472755, - -0.004696313291788101, - 0.0070215449668467045, - 0.0076241400092840195, - -0.02200782671570778, - 0.012916498817503452, - 0.01882455311715603, - 0.03141355514526367, - -0.02221742644906044, - -0.024706406518816948, - -0.027090586721897125, - 0.0007712564547546208, - 0.012726549990475178, - 0.005813079420477152, - 0.004257466644048691, - 0.01023756992071867, - -0.007394892163574696, - -0.01573297567665577, - 0.011337961070239544, - 0.007709289435297251, - 0.04008568450808525, - -0.007178743835538626, - -0.017553862184286118, - -0.0003408020129427314, - -0.005102409981191158, - 0.02171962894499302, - -0.00608817720785737, - -0.036548715084791183, - 0.019545046612620354, - -0.0059964777901768684, - 0.028243377804756165, - -0.020920535549521446, - 0.0102310199290514, - -0.018313655629754066, - -0.009124078787863255, - -0.009176477789878845, - -0.027771782130002975, - -0.00630432553589344, - -0.013925191015005112, - -0.019007951021194458, - 0.0017340988852083683, - -0.010899114422500134, - -0.03350953757762909, - 0.008685232140123844, - 0.0075717405416071415, - 0.02561029978096485, - 0.019662946462631226, - 0.004365540575236082, - -0.00385136972181499, - -0.0009612049325369298, - -0.014422986656427383, - -0.010460267774760723, - -0.017711061984300613, - 0.024261008948087692, - 0.003070288337767124, - 0.030286962166428566, - -0.0386446975171566, - -0.016047373414039612, - -0.00770273944362998, - -0.005397157743573189, - -0.010918764397501945, - -0.006726797204464674, - -0.009261627681553364, - 0.02037033997476101, - 0.009006178937852383, - 0.00024255277821794152, - -0.0053120083175599575, - -0.02329161763191223, - 0.054233573377132416, - 0.04860061779618263, - -0.021955428645014763, - -0.01833985559642315, - 0.014514686539769173, - -0.008554233238101006, - 0.028636375442147255, - -0.005479032173752785, - -0.02375011332333088, - -0.002601967193186283, - -0.025361401960253716, - 0.014318187721073627, - -0.01892935112118721, - -0.002543017501011491, - -0.003582821926102042, - 6.022882371325977e-05, - 0.0006042327731847763, - -0.004431040026247501, - -0.008017136715352535, - -0.013008197769522667, - -0.003399423323571682, - 0.01536617986857891, - 0.009975572116672993, - 0.014016889967024326, - -0.04461824893951416, - -0.034898124635219574, - 0.02406451106071472, - -0.0008211997919715941, - 0.011036663316190243, - 0.012182904407382011, - -0.01013932004570961, - 0.022440124303102493, - -0.00770273944362998, - 0.017422864213585854, - 0.0037236458156257868, - -0.021405231207609177, - -0.03408593311905861, - -0.017645562067627907, - 0.010329268872737885, - 0.018418455496430397, - -7.138420914998278e-05, - 0.0047847372479736805, - -0.0014598198467865586, - 0.021313533186912537, - 0.004401565529406071, - 0.0324353463947773, - -0.005488857161253691, - -0.028138579800724983, - -0.0225056242197752, - -0.023527415469288826, - -0.004902636632323265, - 0.0059539033100008965, - -0.016754768788814545, - 0.02126113325357437, - 0.010113121010363102, - -0.021103935316205025, - -0.03170175105333328, - 0.02123493328690529, - 0.0131850466132164, - -0.02229602448642254, - -0.012975447811186314, - -0.013374995440244675, - -0.03238294646143913, - 0.008423234336078167, - -0.009176477789878845, - -0.16453470289707184, - 0.007087044417858124, - 0.02173272892832756, - -0.012241854332387447, - 0.010466817766427994, - -0.003132513025775552, - 0.0038317199796438217, - 0.01979394443333149, - -0.02471950650215149, - 0.002434943336993456, - 0.024942204356193542, - -0.00985767226666212, - -0.028164779767394066, - -0.0295533686876297, - -0.013938290998339653, - -0.010833615437150002, - -0.0010897476458922029, - 0.014789784327149391, - 0.041395675390958786, - 0.019636746495962143, - -0.0005424176342785358, - -0.020147642120718956, - 0.01903415098786354, - 0.0017455612542107701, - -0.0021909577772021294, - -0.0026936663780361414, - -0.024955304339528084, - 0.034321729093790054, - -0.023920413106679916, - -0.009451575577259064, - -0.008757281117141247, - -0.006500823888927698, - 0.012425252236425877, - 0.0032585994340479374, - -0.01231390330940485, - -0.008999629877507687, - 0.006635097786784172, - 0.00403476832434535, - 0.004414665512740612, - 0.02984156645834446, - 0.005682080518454313, - 0.039456889033317566, - -0.01950574666261673, - 0.027562184259295464, - -0.002009196672588587, - 0.03581511974334717, - 0.018759053200483322, - -0.025570999830961227, - -0.0074472916312515736, - -0.01999044232070446, - -0.002958939177915454, - -0.007905787788331509, - -0.019099650904536247, - 0.0208419356495142, - -0.007014994975179434, - 0.018418455496430397, - 0.005318558309227228, - 0.024221710860729218, - -0.006720247212797403, - 0.0034550977870821953, - -0.005534706637263298, - -0.004355716053396463, - 0.00579342944547534, - 0.003618846647441387, - -0.0024611433036625385, - -0.02403831109404564, - -0.009680824354290962, - 0.031334955245256424, - -0.010597816668450832, - -0.016584469005465508, - -0.0017946859588846564, - -0.03138735517859459, - 0.00922232773154974, - -0.0148159833624959, - 0.01173750776797533, - 0.026003295555710793, - 0.004630813840776682, - 0.009196127764880657, - 0.012864098884165287, - -0.0007352317334152758, - -0.016833368688821793, - 0.045718640089035034, - 0.007250793278217316, - -0.0281123798340559, - -0.022243626415729523, - -0.012268053367733955, - -0.013204696588218212, - 0.00741454167291522, - -0.015772275626659393, - 0.004015118349343538, - 0.013676293194293976, - -0.02908177115023136, - -0.006684222724288702, - -0.04262706637382507, - 0.011672008782625198, - -0.0064811743795871735, - 0.005845829378813505, - -0.013257095590233803, - -0.010466817766427994, - -0.00155643152538687, - 0.004489989951252937, - -0.015719877555966377, - -0.018994851037859917, - 0.02461470663547516, - 0.006317425519227982, - 0.004935386124998331, - -0.012091205455362797, - 0.01582467555999756, - 0.038854293525218964, - -0.017239464446902275, - -0.005033635534346104, - -0.011049763299524784, - 0.02722158655524254, - 0.013833491131663322, - 0.003910319413989782, - 0.008364284411072731, - -0.0246278066188097, - -0.028086179867386818, - 0.0007303192978724837, - 0.01551027875393629, - 0.0575871467590332, - -0.015562677755951881, - 0.010073821060359478, - 0.009209227748215199, - -0.014029989950358868, - -0.02481120452284813, - -0.09824922680854797, - 0.009700474329292774, - 0.026776190847158432, - 0.00543318223208189, - 0.009091328829526901, - 0.004093717783689499, - 0.005777054466307163, - 0.0031554377637803555, - 0.011626158840954304, - 0.027797982096672058, - -0.04522084444761276, - -0.024496808648109436, - -0.006825046613812447, - -0.010682966560125351, - 0.023881113156676292, - -0.0038841194473206997, - 0.009379526600241661, - -0.028348177671432495, - -0.029107971116900444, - 0.024549206718802452, - -0.009451575577259064, - -0.001278877491131425, - 0.0021958702709525824, - -0.002063233871012926, - -0.016964366659522057, - -0.013925191015005112, - -0.03657491132616997, - 0.015051782131195068, - 0.011233162134885788, - -0.026632091030478477, - 0.03130875527858734, - -0.02086813561618328, - 0.0012854273663833737, - -0.006124202162027359, - -0.008180885575711727, - 0.004853512160480022, - -0.023933513090014458, - -0.0038939444348216057, - 0.046504635363817215, - -0.020226242020726204, - -0.00021225927048362792, - -0.0034747477620840073, - 0.002115633338689804, - -0.010944964364171028, - 0.007696189451962709, - -0.025479299947619438, - -0.008665582165122032, - 0.018890051171183586, - 0.0022613697219640017, - 0.0047519877552986145, - -0.03479332849383354, - -0.037911102175712585, - -0.028374377638101578, - 0.012589001096785069, - 0.028138579800724983, - -0.01231390330940485, - -0.0010586354183033109, - -0.0031963749788701534, - -0.026199795305728912, - 0.001987909432500601, - -0.01623077318072319, - 0.017724160104990005, - -0.02761458419263363, - 0.016387971118092537, - -0.0032373121939599514, - -0.011351061053574085, - -0.02211262658238411, - -0.010918764397501945, - 0.008809681050479412, - 0.01923064887523651, - -0.023501215502619743, - 0.002074696123600006, - -0.0038317199796438217, - 0.0046799383126199245, - -0.023710813373327255, - -0.008593532256782055, - -0.045351844280958176, - -0.014108588919043541, - 0.003419073298573494, - -0.012228754349052906, - -0.005836004391312599, - -0.03605091571807861, - 0.02936996892094612, - -0.017069166526198387, - 0.03290694206953049, - 0.014658785425126553, - -0.011121813207864761, - -0.023409515619277954, - 0.021274233236908913, - -0.01467188447713852, - 0.004300041124224663, - 0.02300341986119747, - 0.030679959803819656, - 0.005479032173752785, - -0.03460992872714996, - 0.010768115520477295, - -0.006314150523394346, - 0.004208342172205448, - -0.008586982265114784, - 0.01217635441571474, - 0.0023661688901484013, - -0.007506241090595722, - -0.04797182232141495, - 0.018300555646419525, - 0.022531824186444283, - -0.008829331025481224, - -0.0030260763596743345, - -0.004277116619050503, - 0.003736745798960328, - 0.007879587821662426, - 0.034059733152389526, - 0.009713573381304741, - -0.01129211112856865, - 0.017042966559529305, - -0.005390607751905918, - 0.0080695366486907, - -0.017265664413571358, - -0.04663563519716263, - 0.007846838794648647, - 0.018379155546426773, - -0.003592646913602948, - 0.004024943336844444, - -0.018863851204514503, - 0.0070411949418485165, - -0.006425499450415373, - 0.03188515082001686, - -0.0331951379776001, - -0.0006959320162422955, - 0.0005199021543376148, - -0.00748659111559391, - -0.008600082248449326, - 0.002019021660089493, - 0.0010332544334232807, - -0.007990937680006027, - -0.017029866576194763, - 0.0158377755433321, - -0.009156827814877033, - -0.020999135449528694, - 0.018903151154518127, - 0.027955180034041405, - 0.018968651071190834, - 0.038094501942396164, - -0.013807292096316814, - -0.02936996892094612, - -0.008311884477734566, - -0.02048823982477188, - -0.008246385492384434, - 0.006042327731847763, - 0.023448815569281578, - 0.0031898249872028828, - 0.016859568655490875, - -0.004355716053396463, - 0.039168693125247955, - 0.015575777739286423, - 0.014318187721073627, - -0.0074996910989284515, - 0.011134912259876728, - -0.0007164006237871945, - 0.015981875360012054, - 0.0016489495756104589, - 0.024496808648109436, - -0.03332613781094551, - 0.06188391521573067, - -0.00893412996083498, - 0.011364161036908627, - -0.015785375609993935, - -0.002674016635864973, - -0.012471102178096771, - -0.028374377638101578, - -0.014527786523103714, - 0.002983501646667719, - -0.011992955580353737, - -0.019099650904536247, - 0.00248570553958416, - 0.013597693294286728, - 0.022453224286437035, - -0.011226612143218517, - -0.004512914456427097, - 0.012562801130115986, - -0.01023756992071867, - -0.010656766593456268, - 0.012516952119767666, - 0.01585087552666664, - 0.014475386589765549, - 0.013846591114997864, - -0.00922887772321701, - 0.03555312007665634, - 0.007728939410299063, - -0.014763584360480309, - 0.002572492230683565, - -0.0015899999998509884, - 0.00260851695202291, - -0.010637116618454456, - 0.02037033997476101, - 0.003979093860834837, - 0.023815613240003586, - 0.02300341986119747, - 0.01882455311715603, - -0.0015220443019643426, - -0.00733594223856926, - 0.044172853231430054, - 0.03793730214238167, - 0.01037511881440878, - 0.012045355513691902, - -0.0131850466132164, - -0.03542212396860123, - 0.004506364464759827, - 0.016964366659522057, - -0.022741422057151794, - -0.032697342336177826, - 0.002233532490208745, - 0.021575530990958214, - -0.014449186623096466, - -0.009196127764880657, - 0.01564127765595913, - 0.007977837696671486, - -0.02549239993095398, - 0.009425376541912556, - -0.02538760006427765, - -0.02635699324309826, - -0.02936996892094612, - 0.02329161763191223, - 0.031623151153326035, - 0.002009196672588587, - -0.0041297427378594875, - 0.014383687637746334, - 0.01786825992166996, - -0.010630566626787186, - 0.005898228846490383, - -0.011927456595003605, - 0.011226612143218517, - -0.022754522040486336, - 0.007945087738335133, - -0.0018650979036465287, - -0.02608189545571804, - -0.01520898099988699, - -0.019479546695947647, - -0.015706777572631836, - 0.017999259755015373, - 0.015601977705955505, - 0.005623131059110165, - 0.11643188446760178, - 0.02085503563284874, - -0.020907435566186905, - 0.03497672453522682, - 0.010912214405834675, - 0.01989874430000782, - 0.02386801317334175, - 0.0022973944433033466, - 0.007231143303215504, - -0.031727951020002365, - 0.02270212210714817, - -0.012909948825836182, - 0.013217796571552753, - -0.023776313289999962, - -0.007945087738335133, - 0.02115633338689804, - 0.014606385491788387, - 0.010774665512144566, - -0.02221742644906044, - -0.022675922140479088, - 0.032016150653362274, - -0.03149215131998062, - 0.007781338877975941, - 0.029500968754291534, - -0.021510031074285507, - -0.011717857792973518, - 0.01144930999726057, - -0.001622749725356698, - 0.0025806797202676535, - -0.01482908334583044, - -0.008757281117141247, - 0.00028348996420390904, - -0.049596212804317474, - -0.021077735349535942, - 0.019269948825240135, - -0.030968157574534416, - 0.0025135427713394165, - -0.019007951021194458, - 0.010047621093690395, - -0.004116642754524946, - 0.011947106570005417, - 0.01856255531311035, - -0.009759423322975636, - -0.03371913731098175, - -0.00040220777736976743, - 0.017815859988331795, - 0.0029294644482433796, - -0.012530052103102207, - -0.024116910994052887 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 6, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 413 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000007.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000007.json deleted file mode 100644 index bf411755b93355142d148fb8c3a57df504c6dc7e..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000007.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000007", - "content": "Die ermittelten Beurteilungspegel werden mit den derzeitig geltenden Immissions- grenz- oder Richtwerten der jeweiligen Regelwerke verglichen. Die jeweiligen Regel- werke legen die wesentlichen Rahmenbedingungen und Schutzziele fest. Wird ein vor- gegebener Immissionsgrenz- oder Richtwert \u00fcberschritten, zeigt dies, dass ein Schutzziel nicht erreicht wurde und entsprechende Schallschutzma\u00dfnahmen ergriffen werden\n\n## m\u00fcssen. [17]\n\n\ud835\udc3f\ud835\udc5f = 10 \u2217 lg( 1 \ud835\udc47\ud835\udc5f \ud835\udc41 \u2211\ud835\udc47\ud835\udc56 \u2217 100,1(\ud835\udc3f\ud835\udc34\ud835\udc52\ud835\udc5e,\ud835\udc56\u2212\ud835\udc36\ud835\udc5a\ud835\udc52\ud835\udc61+\ud835\udc3e\ud835\udc3c,\ud835\udc56+\ud835\udc3e\ud835\udc47+\ud835\udc3e\ud835\udc45,\ud835\udc56 \ud835\udc56=1\n)\n\ud835\udc3f\ud835\udc5f,\ud835\udc4e\ud835\udc62\ud835\udc60 \ud835\udc40\ud835\udc52\ud835\udc60\ud835\udc60\ud835\udc62\ud835\udc5b\ud835\udc54 \ud835\udc5b\ud835\udc4e\ud835\udc50\u210e \ud835\udc37\ud835\udc3c\ud835\udc41 45645\u22121 = \ud835\udc3f\ud835\udc52\ud835\udc5e + \ud835\udc3e\ud835\udc3c + \ud835\udc3e\ud835\udc47 + \ud835\udc3e\ud835\udc45 + \ud835\udc3e\ud835\udc46\nFormel 1: Beurteilungspegel [dB(A)]\n\n## \ud835\udc41\n\n\ud835\udc47\ud835\udc5f = \u2211\ud835\udc47\ud835\udc57 = 16 \u210e \ud835\udc61\ud835\udc4e\ud835\udc54\ud835\udc60 \ud835\udc5c\ud835\udc51\ud835\udc52\ud835\udc5f 8 \u210e \ud835\udc5b\ud835\udc4e\ud835\udc50\u210e\ud835\udc61\ud835\udc60 \ud835\udc56=1\nMit LAeq,T: Mittelungsegel w\u00e4hrend Teilzeit Ti [dB(A)], N: Anzahl der gew\u00e4hlten Teilzeiten [-], Ti: Teilzei- ten i, Cmet: meteorologische Korrektur [dB(A)] nach DIN EN ISO 9613-2 [18], KT,i: Zuschlag f\u00fcr Ton- und\nInformationshaltigkeit in der Teilzeit Ti [dB(A)], KI,i: Zuschlag f\u00fcr Impulshaltigkeit in der Teilzeit Ti [dB(A)], KR,i: Zuschlag f\u00fcr Tageszeiten mit erh\u00f6hter Empfindlichkeit in der Teilzeit Ti, [dB(A)], KS: Zu-o-\nder Abschlag f\u00fcr bestimmte Ger\u00e4usche und Situationen [dB(A)]\nIn den Beurteilungspegel flie\u00dfen eine Anzahl von St\u00f6reinfl\u00fcsse mit ein, die mithilfe von Zu- bzw. Abschl\u00e4ge ber\u00fccksichtigt werden. F\u00fcr R\u00e4ume, die besonderen Schutz bed\u00fcrfen, wird ein Zuschlag von 6 dB(A) vergeben. Wenn w\u00e4hrend der Messung Einzelt\u00f6ne her-\n10\n2 Grundlagen\nvortreten oder das Ger\u00e4usch informationshaltig ist, kann dies zu einer erh\u00f6hten L\u00e4rm- belastung f\u00fchren. In diesem Fall wird ein Ton- und Informationszuschlag KT von 3 oder 6 dB vergeben. Wenn das Ger\u00e4usch nicht ton- oder informationshaltig ist, wird kein Zu- schlag vergeben. Der Ton- und Informationszuschlag kann nach der DIN 415681 [19] er- mittelt werden. Wenn das Ger\u00e4usch w\u00e4hrend bestimmter Teilzeiten Impulse aufweist, wird ein Impulszuschlag Ti f\u00fcr diese Zeiten vergeben (siehe Formel 2). Bei nicht Impuls- haltigen Ger\u00e4uschen kein Zuschlag zu vergeben. [17]\n\ud835\udc3e\ud835\udc3c,\ud835\udc56 = \ud835\udc3f\ud835\udc34\ud835\udc39\ud835\udc47\ud835\udc52\ud835\udc5e,\ud835\udc56 \u2212 \ud835\udc3f\ud835\udc34\ud835\udc52\ud835\udc5e,\ud835\udc56\n\n## Formel 2: Impulszuschlag [dB(A)]\n\nMit LAFTeq,i: Taktmaximalpegel in der Teilzeit Ti [dB(A)], LAeq,i: Mittelungspegel in der Teilzeit Ti [dB(A)]\nDer Taktmaximal-Mittelungspegel LAFTeq beschreibt den Maximalwert des Schalldruck- pegels LAF \u00fcber die zugeh\u00f6rige Taktzeit T von 5 Sekunden und wird mithilfe der Formel 3 nach der DIN 45641 [20] berechnet. \ud835\udc3f\u0305\ud835\udc34\ud835\udc39\ud835\udc47\ud835\udc52\ud835\udc5e = 10 \u2217 lg( 1 \ud835\udc41 \ud835\udc41 \u2211100,1\u2217\ud835\udc3f\ud835\udc34\ud835\udc39\ud835\udc47,\ud835\udc56 \ud835\udc56=1 )\nFormel 3: Taktmaximal-Mittelungspegel [dB(A)]\nMit LAFeq: Taktmaximalpegel [dB(A)], N: Anzahl der gemessenen Taktmaximalpegel [-]\nDer Taktmaximal-Mittelungspegel ist eine Gr\u00f6\u00dfe, die in der Beurteilung von impulshal- tigen Ger\u00e4uschen verwendet wird und kann als Ann\u00e4herung f\u00fcr den Impulsschallpegel verwendet werden. In der technischen Anleitung zum Schutz gegen L\u00e4rm (TA L\u00e4rm) [6], wird der zeitliche Schalldruckpegelverlauf in gleichlange Zeit Zeitintervalle, sogenannte Takte zerlegt. Der Taktmaximal-Mittelunvergspegel wird in einem 5-Sekunden-Takt bei beispielsweise Nachbarschaftsl\u00e4rm und in einem 3-Sekunden-Takt bei Arbeitsplatzl\u00e4rm ermittelt. [21, 17]\nBei der Bestimmung des Beurteilungspegels Lr f\u00fcr die unterschiedlichen Witterungsver- h\u00e4ltnisse, ist die meteorologische Korrektur Cmet nach EN ISO 9613-2 [18] zu beachten. Die meteorologische Korrektur Cmet ber\u00fccksichtigt verschiedene Faktoren, wie die geo- metrische Ausbreitung, die Luftabsorption, den Bodeneffekt, die Reflexion an Fl\u00e4chen und die Abschirmung durch Hindernisse. Um zuverl\u00e4ssige Ergebnisse zu erhalten, ist es von Bedeutung, dass die Faktoren bei der Messung und Auswertung der Schallemissio-\n11\n2 Grundlagen\nnen korrekt ber\u00fccksichtigt werden. F\u00fcr den Fall einer Punktschallquelle, gilt eine spezi- fische Voraussetzung (siehe Formel 4). Bei einer Punktschallquelle breitet sich der aus- gesendete Schall gleichm\u00e4\u00dfig, ungest\u00f6rt und verlustfrei in die Umgebung aus. Die Schall- leistung ist hierbei konstant \u00fcber den Zeitverlauf. [22, 17]\n\ud835\udc36\ud835\udc5a\ud835\udc52\ud835\udc61 = 0,\ud835\udc64\ud835\udc52\ud835\udc5b\ud835\udc5b \ud835\udc51\ud835\udc5d \u2264 10(\u210e\ud835\udc60 + \u210e\ud835\udc5f)\n\ud835\udc36\ud835\udc5a\ud835\udc52\ud835\udc61 = \ud835\udc360 [1 \u2212 10( 10(\u210e\ud835\udc60 + \u210e\ud835\udc5f) \ud835\udc51\ud835\udc5d )],\ud835\udc64\ud835\udc52\ud835\udc5b\ud835\udc5b \ud835\udc51\ud835\udc5d \u2265 10(\u210e\ud835\udc60 + \u210e\ud835\udc5f)\nFormel 4: meteorologische Korrektur [dB(A)]\nMit hs: Quellh\u00f6hen [m], hr: Aufpunkth\u00f6hen [m], dp: Abstand zwischen Quelle und Aufpunkt, projiziert\nauf die horizontale Bodenebene [m]\nJe geringer der Abstand dp zwischen der Schallquelle und dem Aufpunkt und je gr\u00f6\u00dfer die H\u00f6henunterschiede zwischen Schallquelle und Aufpunkt sind, desto st\u00e4rker sind die meteorologischen Auswirkungen zu ber\u00fccksichtigen. [17]\n\n## Charakterisierung der Ger\u00e4uschemissionen\n\nUm die Emissionen einer Quelle unabh\u00e4ngig von Umgebungseinfl\u00fcssen, Entfernung und Fremdger\u00e4uschen zu definieren, wird der Schallleistungspegel LWA ben\u00f6tigt. Dieser be- schreibt die Schallenergie, die von einer Quelle pro Zeiteinheit in die gesamte Luft gleich- f\u00f6rmig abgestrahlt wird.", - "embedding": [ - 0.030270833522081375, - 0.013295323587954044, - 0.002251522848382592, - -0.03866787999868393, - 0.010807309299707413, - 0.008662693202495575, - -0.016573799774050713, - -0.02370092272758484, - -0.017493845894932747, - -0.035531945526599884, - 0.011422833427786827, - 0.012627965770661831, - -0.019243231043219566, - 0.013684075325727463, - -0.008312816731631756, - 0.012323442846536636, - 0.03115200437605381, - -0.006424129009246826, - 0.021666452288627625, - -0.003981469664722681, - -0.006427368614822626, - 0.0008463457925245166, - -0.010502787306904793, - 0.013042634353041649, - -0.012815861962735653, - -0.003997667692601681, - 0.02721264958381653, - -0.03053000196814537, - -0.024543218314647675, - 0.0019227033481001854, - 0.01728651113808155, - -0.00896721612662077, - -0.02879357524216175, - 0.023208502680063248, - -0.007165997754782438, - -0.0015566283836960793, - -0.01210314966738224, - 0.0013258068356662989, - 0.03190359100699425, - -0.00982247106730938, - 0.01952831633388996, - 0.0017979786498472095, - 0.019424648955464363, - -0.025515099987387657, - 0.008338733576238155, - 0.006148763000965118, - 0.016016587615013123, - 0.0001914401800604537, - -0.027316316962242126, - 0.004775172099471092, - 0.01186341978609562, - 0.003187767695635557, - -0.022249581292271614, - -0.004788130521774292, - -0.007742647081613541, - -0.015265000984072685, - 0.0007653557695448399, - 0.016314631327986717, - -0.004396138712763786, - -0.013321240432560444, - -0.04112997651100159, - -0.01297784224152565, - -0.023441754281520844, - 0.019139563664793968, - -0.01185694057494402, - -0.017454970628023148, - -0.013230531476438046, - 0.007327978033572435, - -0.019411690533161163, - -0.00691330898553133, - 0.029156411066651344, - 0.03244784474372864, - 0.010230660438537598, - 0.026396270841360092, - 0.023389920592308044, - -0.00048067583702504635, - 0.010250098071992397, - -0.017584554851055145, - 0.013308282010257244, - 0.015407543629407883, - 0.025761308148503304, - -0.009323572739958763, - -0.03216275945305824, - 0.03345860168337822, - 0.005669302307069302, - -0.009660490788519382, - -0.019994819536805153, - 0.025230014696717262, - -0.021031491458415985, - 0.0007698102272115648, - 0.005325904581695795, - 0.011694960296154022, - 0.012485423125326633, - 0.00016187882283702493, - 0.018867436796426773, - -0.011351563036441803, - 0.011306208558380604, - 0.011254374869167805, - 0.009239342994987965, - -0.03338085114955902, - -0.007023455575108528, - -0.006116366945207119, - 0.0011136129032820463, - -0.001069068443030119, - -0.016457173973321915, - -0.017649346962571144, - 0.00692626740783453, - 0.018310226500034332, - 0.006232992745935917, - -0.026124143972992897, - -0.009718803688883781, - 0.01785668171942234, - 0.019930027425289154, - -0.00803421065211296, - 0.025683557614684105, - 0.0038940005470067263, - 0.04830893501639366, - -0.005095892585813999, - -0.015809254720807076, - -0.009705845266580582, - 0.026927566155791283, - 0.009615136310458183, - 0.01678113453090191, - -0.01731242798268795, - 0.033225350081920624, - 0.004797849338501692, - 0.0016513867303729057, - -0.01469483133405447, - -0.02824932336807251, - -0.020564988255500793, - -0.01741609536111355, - -0.0202280692756176, - 0.034313857555389404, - 0.0019340419676154852, - -0.003955553285777569, - 0.013450824655592442, - -0.010230660438537598, - -0.009466114453971386, - -0.02188674546778202, - -0.03589478135108948, - 0.0202021524310112, - 0.022949334233999252, - -0.028715824708342552, - -0.030193082988262177, - -0.001064209034666419, - 0.023182585835456848, - 0.005458727944642305, - 0.014396787621080875, - -0.0010763575555756688, - 0.0029885321855545044, - -0.014850332401692867, - -0.016431257128715515, - 0.009155113250017166, - -0.004528962541371584, - -0.014811457134783268, - 0.010515745729207993, - 0.006187638267874718, - 0.024530259892344475, - -0.016379423439502716, - 0.0042924717999994755, - -0.0010245238663628697, - 0.007302061188966036, - 0.004318388644605875, - 0.01216146256774664, - 0.018724894151091576, - 0.009459635242819786, - -0.0005142866866663098, - 0.006796683184802532, - -0.015122458338737488, - -0.007412207778543234, - 0.0018481925362721086, - 0.028612157329916954, - -0.010580537840723991, - 0.01729946956038475, - -0.011098873801529408, - 0.016820009797811508, - 0.006501879543066025, - 0.008338733576238155, - -0.015588960610330105, - -0.025476224720478058, - -0.027394067496061325, - 0.003997667692601681, - 0.015938837081193924, - 0.015848129987716675, - -0.022910458967089653, - -0.009044966660439968, - 0.009291176684200764, - 0.018763769418001175, - -0.012491902336478233, - -0.03187767416238785, - 0.013476740568876266, - 0.016612675040960312, - 0.004645588342100382, - -0.037734873592853546, - -0.6340288519859314, - -0.010042763315141201, - 0.012543736025691032, - 0.01495399884879589, - -0.00860438123345375, - 0.022366207093000412, - 0.013249969109892845, - -0.0043313466012477875, - 0.0006110697868280113, - 0.053803298622369766, - 0.005121809430420399, - 0.019295064732432365, - -0.008882986381649971, - 0.0011638267897069454, - -0.005636906251311302, - -0.018141767010092735, - -0.017675263807177544, - -0.012770508415997028, - 0.01469483133405447, - -0.0010002268245443702, - -0.012738112360239029, - 0.020487237721681595, - 0.005591551773250103, - 0.0012966503854840994, - 0.00014942660345695913, - 0.021031491458415985, - 0.01665155030786991, - -0.014837373979389668, - 0.013191656209528446, - 0.007729688659310341, - -0.025528058409690857, - 0.011183103546500206, - -0.026163019239902496, - 0.011727356351912022, - 0.04335882142186165, - -0.025566931813955307, - 0.012783465906977654, - 0.007366853300482035, - 0.0076972926035523415, - 0.006045096088200808, - -0.007237269077450037, - -0.011999483220279217, - 0.012563173659145832, - -0.01293248776346445, - 0.004593754652887583, - 0.019955944269895554, - 0.028949076309800148, - -0.00304198544472456, - 0.026059351861476898, - -0.03700920566916466, - 0.0009589219698682427, - 0.0001069068384822458, - 0.02644810453057289, - 0.013645200058817863, - 0.037320204079151154, - -0.011170145124197006, - 0.01093041431158781, - -0.019748609513044357, - -0.02418038435280323, - 0.014811457134783268, - -0.005225476808845997, - 0.01061941310763359, - 0.0005114520317874849, - -0.01624983921647072, - 0.002769859042018652, - 0.009200467728078365, - -0.005552676506340504, - -0.02427109144628048, - -0.0014140859711915255, - -0.012615007348358631, - -0.016962552443146706, - 0.02941557951271534, - -0.0068355584517121315, - -0.028586240485310555, - 0.040171053260564804, - 0.01067124679684639, - 0.022936375811696053, - -0.0344952754676342, - 0.011098873801529408, - 0.018595311790704727, - -0.003408060409128666, - -0.005653104279190302, - -0.01299727987498045, - 0.005737333558499813, - 0.013211093842983246, - -0.03760528936982155, - 0.0014894066844135523, - 0.015744462609291077, - 0.018737852573394775, - 0.01789555698633194, - 0.03389918804168701, - 0.040663473308086395, - 0.0022774396929889917, - -0.02545030787587166, - -0.016975510865449905, - 0.019930027425289154, - -0.015407543629407883, - 0.01956719160079956, - 0.015938837081193924, - -0.027419984340667725, - -0.023325128480792046, - -0.012304005213081837, - 0.017610471695661545, - -0.003589478088542819, - 0.03107425570487976, - -0.011746793985366821, - -0.004752494860440493, - 0.004788130521774292, - 0.015588960610330105, - -0.02643514610826969, - -0.0002336562320124358, - -0.025204097852110863, - -0.012005962431430817, - -0.00589283462613821, - -0.010405599139630795, - -0.03275884687900543, - 0.04667617380619049, - -0.005218997597694397, - -9.303729893872514e-05, - -0.007483478635549545, - 0.015692628920078278, - -0.009368926286697388, - 0.04276273772120476, - -0.019917069002985954, - -0.02432292513549328, - 0.03229234367609024, - 0.008131398819386959, - 0.014798498712480068, - 0.0030549438670277596, - 0.00036668236134573817, - 0.027419984340667725, - 0.006790203973650932, - 0.01680705137550831, - -0.010301931761205196, - 0.013709992170333862, - 0.020189194008708, - 0.01624983921647072, - -0.02361021377146244, - -0.0008836012566462159, - -0.03164442628622055, - -0.036542702466249466, - -0.0100751593708992, - 0.010185305960476398, - -0.03747570514678955, - -0.00982247106730938, - -0.040067389607429504, - -0.02257354184985161, - 0.018815603107213974, - 0.01608137972652912, - 0.0033497477415949106, - -0.010898018255829811, - -0.030452251434326172, - -0.01264740340411663, - 0.026823898777365685, - -0.0018773488700389862, - 0.004681223537772894, - -0.011753273196518421, - -0.011558896861970425, - -0.019308023154735565, - -0.012077233754098415, - 0.0030500844586640596, - 0.013062071986496449, - -0.04154464602470398, - -0.024387717247009277, - 0.0016667748568579555, - -0.024504343047738075, - 0.014344953931868076, - 0.007308540400117636, - -0.03151484206318855, - -0.0402228869497776, - 0.0008868408040143549, - 0.022599458694458008, - -0.006113127339631319, - 0.02306596003472805, - 0.00805364828556776, - 0.006699495483189821, - -0.024620968848466873, - -0.00811844039708376, - -0.007483478635549545, - -0.022094080224633217, - 0.02355838008224964, - 0.0017493846826255322, - -0.004282752983272076, - 0.012362318113446236, - 0.019178438931703568, - 0.010885059833526611, - 0.0003474472323432565, - 0.016599716618657112, - -0.014604122377932072, - 0.036672286689281464, - -0.003958792891353369, - 0.0405857227742672, - -0.016392381861805916, - 0.01380070112645626, - -0.02129065990447998, - 0.004324867390096188, - 0.010010368190705776, - -0.0037611769512295723, - 0.004094855859875679, - 0.026720231398940086, - 0.040145136415958405, - -0.02256058342754841, - 0.03387327119708061, - -0.018789686262607574, - 0.01266684103757143, - -0.011591292917728424, - 0.005575353745371103, - -0.010437995195388794, - 0.031385257840156555, - 0.03560969606041908, - 0.017597513273358345, - -0.002253142651170492, - -0.03148892521858215, - -0.003783854190260172, - -0.004240638110786676, - 0.04400674253702164, - 0.003693145466968417, - 0.018932228907942772, - 0.011675522662699223, - -0.012861216440796852, - 0.0036672286223620176, - -0.003456654492765665, - 0.033691853284835815, - 0.009317093528807163, - -0.011675522662699223, - -0.015161333605647087, - 0.00403330335393548, - 0.006712453905493021, - 0.006093689706176519, - -0.006119606550782919, - -0.011416354216635227, - -0.016509007662534714, - 0.007451082579791546, - 0.015938837081193924, - -0.004470649641007185, - 0.018297268077731133, - 0.019813401624560356, - -0.009284697473049164, - 0.03630945086479187, - 0.0017931192414835095, - 0.008656213991343975, - 0.009355967864394188, - 0.006527796387672424, - -0.0018368539167568088, - 0.014202411286532879, - -0.029830247163772583, - 0.013541532680392265, - 0.03695737197995186, - -0.008260983042418957, - -0.009323572739958763, - -0.00708824722096324, - 0.010276014916598797, - -0.024957887828350067, - 0.0058831158094108105, - 0.018141767010092735, - -0.009116237983107567, - 0.021212909370660782, - 0.0038194898515939713, - -0.005351821426302195, - 0.012602048926055431, - -0.0030517042614519596, - 0.003903719363734126, - 0.009122717194259167, - -0.026124143972992897, - 0.018297268077731133, - -0.002458857372403145, - -0.03573928028345108, - -0.02993391454219818, - -0.022651292383670807, - -0.0172735545784235, - 0.001822275691665709, - -0.010282494127750397, - 0.0051866015419363976, - 0.013237010687589645, - 0.0259556844830513, - -0.005270831286907196, - -0.015938837081193924, - 0.022107038646936417, - 0.03286251425743103, - 0.013956202194094658, - -0.018193600699305534, - -0.017675263807177544, - 0.012090192176401615, - 0.019722692668437958, - -0.01964494213461876, - -0.020474279299378395, - -0.018919270485639572, - -0.008507193066179752, - -0.014604122377932072, - 0.00810548197478056, - -0.010599975474178791, - -0.0006823409930802882, - 0.008552547544240952, - 0.0035344050265848637, - 0.007029934786260128, - -0.013476740568876266, - 0.008306337520480156, - 0.011532980017364025, - -0.006751328706741333, - 0.02371388114988804, - 0.00406245980411768, - -0.01383957639336586, - -0.01098224800080061, - -0.0259427260607481, - 0.011455229483544827, - -0.0025430868845432997, - -0.01739017851650715, - -0.023908257484436035, - -0.002455617766827345, - -0.011383959092199802, - -0.02659064717590809, - -0.0016829728847369552, - 0.00810548197478056, - 0.01900997944176197, - 0.0006507548969238997, - -0.008513672277331352, - 0.004477128852158785, - -0.02126474305987358, - 0.02824932336807251, - -0.0006880103028379381, - -0.00044220557902008295, - -0.025152264162898064, - 0.00803421065211296, - -0.006880912929773331, - 0.006867954507470131, - 0.018595311790704727, - 0.02139432728290558, - 0.02354542165994644, - -0.01380070112645626, - -0.00811844039708376, - -0.013049113564193249, - -0.03734612092375755, - 0.012576132081449032, - 0.0202151108533144, - 0.021796036511659622, - 0.0032007258851081133, - 0.031437091529369354, - -0.0024718157947063446, - 0.007029934786260128, - -0.023895299062132835, - 0.025592848658561707, - -0.013995077461004257, - 0.018919270485639572, - 0.013262927532196045, - -0.019243231043219566, - 0.005351821426302195, - 0.009848387911915779, - 0.03522094339132309, - -0.017143970355391502, - -0.026331478729844093, - 0.015459377318620682, - 0.01843981072306633, - 0.01678113453090191, - -0.03122975490987301, - -0.013722950592637062, - 0.025696516036987305, - 0.008481276221573353, - -0.0014408126007765532, - -0.018802644684910774, - -0.0031294547952711582, - -0.0009686407865956426, - -0.007165997754782438, - 0.03169625997543335, - -0.02415446750819683, - -0.0007297201664187014, - 0.03524686023592949, - 0.008546068333089352, - -0.003280096221715212, - -0.007548270747065544, - -0.01296488381922245, - 0.011507063172757626, - 0.014331995509564877, - -0.0054490091279149055, - -0.006119606550782919, - 0.0027552808169275522, - -0.01783076487481594, - -0.012478943914175034, - -0.0072113522328436375, - -0.015187250450253487, - -0.02310483530163765, - 0.022729042917490005, - -0.02429700829088688, - -0.009006091393530369, - -0.018025141209363937, - -0.02073344774544239, - -0.020461320877075195, - 0.022845666855573654, - -0.007593625225126743, - -0.0346507728099823, - -0.0009694506879895926, - -0.00490151671692729, - 0.0011622069869190454, - -0.009453156031668186, - 0.0027973956894129515, - 0.004104574676603079, - -0.016962552443146706, - -0.029804330319166183, - -0.0038486463017761707, - -0.0004964689142070711, - -0.005529999267309904, - 0.010126993060112, - 0.007347415667027235, - -0.01784372329711914, - 0.011008164845407009, - -0.01900997944176197, - 0.010574058629572392, - 0.008526630699634552, - -0.02529480680823326, - -0.01301023829728365, - 0.032603345811367035, - -0.018686018884181976, - 0.015109499916434288, - -0.00030593984411098063, - 0.003602436510846019, - -0.00893482007086277, - 0.021497992798686028, - 0.02478942833840847, - 0.00404950138181448, - -0.007658417336642742, - 0.022923417389392853, - 0.008993132971227169, - 0.01836206018924713, - -0.0015817353269085288, - -0.011254374869167805, - 0.018219517543911934, - -0.03516910970211029, - -0.0025657641235738993, - -0.0035732800606638193, - 0.033743686974048615, - 0.0021883505396544933, - 0.009388363920152187, - 0.002444279147312045, - 0.007710251025855541, - 0.00806012749671936, - -0.0019291825592517853, - -0.018206559121608734, - 0.010010368190705776, - -0.004963069222867489, - 0.014902165159583092, - -0.006693016272038221, - 0.003414539620280266, - -0.002073344774544239, - 0.021109241992235184, - 0.0007714300299994648, - -0.0037546977400779724, - -0.025515099987387657, - 0.05090061575174332, - 0.008507193066179752, - -0.014124661684036255, - 0.010029804892838001, - -0.015705587342381477, - 0.008170274086296558, - -0.022288456559181213, - -0.008844111114740372, - 0.03397693857550621, - 0.002943177707493305, - 0.020072568207979202, - -0.010865622200071812, - -0.02122586779296398, - -0.011293250136077404, - -0.0038616047240793705, - 0.022288456559181213, - -0.01732538640499115, - 0.0037579373456537724, - -0.007561229169368744, - 0.014202411286532879, - -0.02484126202762127, - 0.01679409295320511, - 0.021666452288627625, - -0.02705714851617813, - -0.02420629933476448, - 0.01610729657113552, - -0.013152780942618847, - 0.02199041284620762, - -0.02762731909751892, - -0.011027602478861809, - -0.028482573106884956, - 0.00045475902152247727, - -0.018906312063336372, - -0.028430739417672157, - -0.009304135106503963, - -0.0013096088077872992, - 0.008779319003224373, - 0.012913050130009651, - 0.016509007662534714, - -0.006006220821291208, - -0.01789555698633194, - 0.00863029807806015, - 0.0027504214085638523, - 0.007405728567391634, - -0.004266554955393076, - -0.0003310467582195997, - -0.03288843110203743, - 0.014435662887990475, - 0.005662823095917702, - -0.02073344774544239, - 0.006524556782096624, - -0.011345083825290203, - 0.009524427354335785, - 0.03636128455400467, - -0.013748867437243462, - -0.0028638073708862066, - -0.013684075325727463, - -0.010250098071992397, - 0.007658417336642742, - -0.0018400935223326087, - 0.00803421065211296, - 0.020046651363372803, - -0.014072827994823456, - -0.003263898193836212, - 0.00983542948961258, - -0.03519502654671669, - -0.004263315349817276, - 0.0016513867303729057, - 0.02074640616774559, - -0.0402747206389904, - 0.03757937252521515, - 0.00016673823120072484, - 0.018608270213007927, - -0.005277310498058796, - -0.020474279299378395, - -0.017053261399269104, - -0.018012182787060738, - 0.0172476377338171, - -0.004208242055028677, - -0.003469612915068865, - -0.022897500544786453, - -0.025255931541323662, - 0.012848258018493652, - -0.016262797638773918, - 0.01267979945987463, - -0.018673060461878777, - -0.005125049035996199, - -0.016547882929444313, - -0.024906054139137268, - -0.01954127475619316, - -0.025113388895988464, - -0.021731244400143623, - 0.01955423317849636, - -0.004635869525372982, - 0.0100816385820508, - 0.01473370660096407, - -0.008844111114740372, - -0.0049857464618980885, - 0.007904627360403538, - -0.001452151220291853, - 0.03226642683148384, - -0.007392770145088434, - 0.03053000196814537, - 0.02135545201599598, - -0.014267203398048878, - -0.02642218768596649, - -0.03190359100699425, - -0.005163924302905798, - -0.015822213143110275, - 0.018128808587789536, - -0.012602048926055431, - -0.018932228907942772, - 0.017571596428751945, - 0.014163536950945854, - 0.009142154827713966, - -0.005001944489777088, - -0.009563302621245384, - 0.03231826052069664, - 0.015239084139466286, - -0.002763379830867052, - -0.0060872104950249195, - 0.02079823985695839, - -0.018102891743183136, - -0.004169366788119078, - 0.01383957639336586, - 0.005743812769651413, - -0.01297784224152565, - -0.012388234958052635, - -0.014474538154900074, - 0.04105222597718239, - 0.010010368190705776, - 0.013269406743347645, - 0.022236622869968414, - -0.021744202822446823, - 0.011098873801529408, - -0.028119739145040512, - -0.024659844115376472, - 0.013904368504881859, - -0.017169887199997902, - 0.038952965289354324, - -0.016845926642417908, - 0.002944797510281205, - -0.008882986381649971, - -0.010016847401857376, - 0.018297268077731133, - 0.0003201130894012749, - 0.011539459228515625, - 0.0172605961561203, - -0.01790851540863514, - 0.010023325681686401, - 0.009232863783836365, - 0.003602436510846019, - 0.002259621862322092, - 0.009187509305775166, - -0.015083583071827888, - -0.006718933116644621, - 0.008351691998541355, - -0.0011111831991001964, - -0.006712453905493021, - 0.0067772455513477325, - -0.011584813706576824, - -0.013049113564193249, - -0.021459117531776428, - -0.006343139335513115, - -0.006450045853853226, - -0.016547882929444313, - 0.024595052003860474, - -0.009129196405410767, - 0.003579759271815419, - -0.0034922901540994644, - -0.005870157387107611, - 0.03586886450648308, - -0.002850848948583007, - -0.03327718377113342, - 0.001198652433231473, - 0.02713489904999733, - -0.035998448729515076, - 0.007924064993858337, - 0.013450824655592442, - -0.005274070892482996, - -0.0025430868845432997, - -0.004078657831996679, - 0.011293250136077404, - -0.025152264162898064, - 0.03882338106632233, - -0.012809382751584053, - -0.018219517543911934, - -0.0061455233953893185, - -0.0021786317229270935, - 0.013185176998376846, - -0.022651292383670807, - -0.006424129009246826, - 0.006168200634419918, - 0.016314631327986717, - 0.013684075325727463, - -0.0201373603194952, - 0.017778931185603142, - 0.005695219151675701, - 0.02127770148217678, - 0.008850590325891972, - 0.0348321907222271, - -0.0171958040446043, - 0.015459377318620682, - 0.009213426150381565, - 0.00035554624628275633, - 0.0055040824227035046, - -0.026797981932759285, - -0.016832968220114708, - 0.017675263807177544, - 0.026616564020514488, - -0.026642480865120888, - -0.005497603211551905, - -0.01792147383093834, - -0.0025511858984827995, - -0.012848258018493652, - 0.015329793095588684, - 0.0064597646705806255, - 0.01606842130422592, - 0.010178826749324799, - -0.005325904581695795, - -0.026240769773721695, - 0.007982376962900162, - -0.007898148149251938, - -0.011591292917728424, - 0.026279645040631294, - 0.00803421065211296, - -0.02480238676071167, - 0.0023503305856138468, - -0.02123882621526718, - 0.036672286689281464, - 0.02144615910947323, - -0.024089675396680832, - -0.01606842130422592, - 0.00032396012102253735, - -0.05468446761369705, - -0.01100168563425541, - -0.02361021377146244, - 0.009239342994987965, - 0.00017878548533190042, - 0.018543478101491928, - -0.018258392810821533, - 0.03877154737710953, - 0.007276144344359636, - 0.02775690332055092, - -0.04250356927514076, - -0.028663991019129753, - -0.007146560121327639, - -0.010463912039995193, - 0.014267203398048878, - -0.002944797510281205, - -0.03237009420990944, - -0.007671375758945942, - 0.031437091529369354, - -0.005277310498058796, - 0.021783078089356422, - 0.03154075890779495, - -0.015770379453897476, - -0.026901649311184883, - 0.003974990453571081, - 0.020305819809436798, - 0.02240508235991001, - 0.0022822991013526917, - 0.0008819814538583159, - -0.021575743332505226, - 0.006278347223997116, - 0.007613062858581543, - 0.006362576968967915, - -0.03353635221719742, - -0.009232863783836365, - 0.03859012946486473, - -0.019748609513044357, - -0.011215499602258205, - 0.016470132395625114, - -0.016923677176237106, - 2.413249785604421e-05, - -0.02938966266810894, - 0.0460023358464241, - 0.0013403849443420768, - -0.03249967843294144, - 0.009913180023431778, - 0.015887005254626274, - -0.010010368190705776, - -0.031981341540813446, - 0.006210315506905317, - -0.03859012946486473, - 0.009278218261897564, - 0.0027407025918364525, - -0.004370221868157387, - 0.023752756416797638, - -0.007425166200846434, - 0.022923417389392853, - -0.022042246535420418, - -0.005944668315351009, - -0.03216275945305824, - -0.026383312419056892, - -0.03817545995116234, - 0.03641311824321747, - 0.048801351338624954, - -0.012265129946172237, - 0.003994428087025881, - -0.020409487187862396, - 0.0010779773583635688, - -0.005960866343230009, - -0.024957887828350067, - 0.01267332024872303, - -0.024931970983743668, - 0.002338991966098547, - 0.008286899887025356, - -0.02122586779296398, - -0.0017477648798376322, - -0.009077362716197968, - -0.006599067710340023, - -0.026953481137752533, - -0.006796683184802532, - 0.19188806414604187, - -0.02995983138680458, - -0.012900091707706451, - 0.010898018255829811, - -0.023986008018255234, - -0.019359856843948364, - 0.019942985847592354, - 0.00589283462613821, - 0.0039199176244437695, - 0.02199041284620762, - 0.00490151671692729, - -0.010204743593931198, - 0.007606583647429943, - 0.01794739067554474, - 0.018064016476273537, - -0.017066219821572304, - -0.03913438320159912, - 0.003009589621797204, - -0.003268757602199912, - 0.02710898220539093, - 0.01843981072306633, - -0.014578205533325672, - 0.0005989212659187615, - -0.015563043765723705, - 0.04944927245378494, - 0.016897760331630707, - 0.008273941464722157, - 0.004392899107187986, - 0.040145136415958405, - 0.01266684103757143, - -0.02243099920451641, - 0.0016683946596458554, - 0.0036801870446652174, - -0.0010909356642514467, - -0.010165868327021599, - 0.014435662887990475, - -0.01663859188556671, - -0.021472075954079628, - 0.011254374869167805, - 0.016884801909327507, - 0.007127122487872839, - -0.0068938713520765305, - -0.024517301470041275, - -0.021122200414538383, - 0.026292603462934494, - 0.032085008919239044, - -0.007671375758945942, - 0.013709992170333862, - 0.000754422158934176, - 0.011733835563063622, - -0.00589283462613821, - 0.01293248776346445, - 0.017105095088481903, - 0.03506544232368469, - 0.006952184252440929, - -0.023247377946972847, - 0.015135416761040688, - -0.012025400064885616, - -0.005653104279190302, - -0.003955553285777569, - -0.03988597169518471, - 0.02126474305987358, - -0.02528184838593006, - 0.020888948813080788, - -0.024620968848466873, - 0.014046911150217056, - -0.022729042917490005, - 0.004350784234702587, - -0.00405922019854188, - -0.016262797638773918, - 0.007846314460039139, - -0.0013460542540997267, - -0.03050408512353897, - 0.005005184095352888, - -0.01781780645251274, - -0.032033175230026245, - 0.008850590325891972, - 0.019839318469166756, - 0.027290400117635727, - 0.030115332454442978, - 0.0014877868816256523, - -0.0006584489601664245, - -0.0037903334014117718, - -0.004169366788119078, - -0.006984580308198929, - -0.023364003747701645, - 0.020396528765559196, - -0.00491447513923049, - 0.005180122330784798, - 0.00406245980411768, - -0.02302708476781845, - 0.005594791378825903, - -0.006288066040724516, - 0.005309706553816795, - 0.0070040179416537285, - -0.019709734246134758, - -0.006537515204399824, - -0.00592199107632041, - -0.02257354184985161, - -0.00859142281115055, - -0.020577946677803993, - 0.06556952744722366, - 0.04849034920334816, - -0.013360115699470043, - -0.00979007501155138, - 0.002632176037877798, - 0.005679021123796701, - 0.021199950948357582, - -0.0022855387069284916, - -0.011403395794332027, - -0.018284309655427933, - -0.02941557951271534, - 0.015550085343420506, - -0.029208244755864143, - 0.001133050536736846, - 0.010211222805082798, - -0.0030630428809672594, - 0.012498381547629833, - -0.008772839792072773, - -0.01181806530803442, - -0.010839705355465412, - 0.011448750272393227, - 0.024400675669312477, - -0.007315019611269236, - 0.012621486559510231, - -0.023817548528313637, - -0.05369963124394417, - 0.02760140225291252, - -0.003845406696200371, - -0.009556823410093784, - 0.007418686989694834, - -0.016366465017199516, - 0.00980303343385458, - 0.003132694400846958, - 0.00604833522811532, - -0.007729688659310341, - -0.005947907920926809, - -0.02819748967885971, - -0.0035473632160574198, - 0.00979007501155138, - 0.009615136310458183, - -0.017027344554662704, - 0.007353894878178835, - 0.013735909014940262, - 0.01298432145267725, - -0.004574317019432783, - 0.004729817621409893, - -0.004101335071027279, - -0.01662563346326351, - -0.015446418896317482, - -0.024659844115376472, - -0.00691978819668293, - -0.004781651310622692, - -0.03812362626194954, - 0.026370353996753693, - 0.003965272102504969, - -0.009472593665122986, - -0.028612157329916954, - 0.003719062078744173, - 0.011059998534619808, - -0.017610471695661545, - -0.008461838588118553, - -0.010178826749324799, - -0.026098227128386497, - -0.005484644789248705, - -0.00981599185615778, - -0.16255022585391998, - 0.00782687682658434, - 0.02933782897889614, - -0.018867436796426773, - 0.007716730237007141, - 0.006424129009246826, - 0.00860438123345375, - 0.01551121100783348, - -0.020655697211623192, - -0.00859142281115055, - 0.03112608753144741, - -0.012537256814539433, - -0.03270701318979263, - -0.004781651310622692, - -0.021666452288627625, - -0.0044998060911893845, - -0.013904368504881859, - 0.03047816827893257, - 0.01792147383093834, - 0.01562783680856228, - 0.002121938858181238, - -0.023221461102366447, - 0.022910458967089653, - 0.0008281230693683028, - -0.0027261243667453527, - 0.008422963321208954, - -0.026383312419056892, - 0.020305819809436798, - -0.00890890322625637, - -0.00046245308476500213, - -0.017740055918693542, - 0.008338733576238155, - 0.01846572756767273, - 0.011610730551183224, - 0.0034210188314318657, - -0.0032541793771088123, - -0.003265517996624112, - -0.018543478101491928, - -0.0025301284622401, - 0.033225350081920624, - 0.010211222805082798, - 0.02716081589460373, - -0.016003629192709923, - 0.023778673261404037, - -0.01608137972652912, - 0.02430996671319008, - 0.005147726275026798, - -0.01794739067554474, - -0.007327978033572435, - -0.006699495483189821, - 9.754236816661432e-05, - -0.0202021524310112, - -0.011993004009127617, - 0.0027407025918364525, - -0.0051898411475121975, - 0.014008035883307457, - -0.017986265942454338, - 0.02411559224128723, - -0.0037903334014117718, - 0.0049825068563222885, - -0.0014359531924128532, - -0.020124401897192, - 0.0076389797031879425, - 0.004315149039030075, - 0.008999612182378769, - -0.015848129987716675, - 0.002957755932584405, - 0.02659064717590809, - -0.019320981577038765, - -0.005293508525937796, - 0.0009095180430449545, - -0.03387327119708061, - 0.008772839792072773, - -0.016858885064721107, - 0.013774784281849861, - 0.0005689549725502729, - -0.008260983042418957, - -0.007373332511633635, - -0.00019042780331801623, - -0.001452961121685803, - -0.018089933320879936, - 0.03804587572813034, - 0.008675651624798775, - -0.0010820267489179969, - -0.02085007354617119, - -0.008656213991343975, - -0.007289102766662836, - 0.025048596784472466, - -0.01910068839788437, - -0.011941170319914818, - 0.0065148379653692245, - -0.008377608843147755, - -0.008131398819386959, - -0.026059351861476898, - -0.007178956177085638, - -0.0036186345387250185, - -0.006861475296318531, - 0.013619283214211464, - -0.025022679939866066, - -0.015407543629407883, - 0.022068163380026817, - -0.02307891845703125, - -0.014500454999506474, - 0.01301671750843525, - -0.0011095633963122964, - 0.008792277425527573, - -0.02762731909751892, - 0.010230660438537598, - 0.03739795461297035, - -0.0035635612439364195, - -0.017688222229480743, - -0.003822729457169771, - 0.01386549323797226, - -0.001313658314757049, - 0.0054522487334907055, - -0.005630427040159702, - -0.020500196143984795, - -0.018089933320879936, - 0.01271219551563263, - -0.006731891538947821, - 0.05877932533621788, - -0.019359856843948364, - 0.0036672286223620176, - 0.008889465592801571, - -0.02368796430528164, - -0.041829731315374374, - -0.0862511396408081, - 0.0074705202132463455, - 0.027368150651454926, - -0.00034441010211594403, - 0.017079178243875504, - 0.005980303976684809, - -0.0011225218186154962, - -0.009064404293894768, - -0.0026629522908478975, - 0.026072310283780098, - -0.02193857915699482, - -0.04167423024773598, - -0.030167166143655777, - -0.01178566925227642, - -0.0036866662558168173, - -0.012304005213081837, - 0.008863548748195171, - -0.020383570343255997, - -0.028508489951491356, - 0.03053000196814537, - -0.003218543715775013, - -0.0034469356760382652, - -0.008241545408964157, - 0.006226513534784317, - -0.014228328131139278, - -0.005429571494460106, - -0.03734612092375755, - 0.02192562073469162, - 0.007846314460039139, - -0.011085915379226208, - 0.018828561529517174, - -0.021057408303022385, - -0.004072178620845079, - -0.0012934107799082994, - -0.015433460474014282, - -0.01728651113808155, - -0.016470132395625114, - -1.323680771747604e-05, - 0.020409487187862396, - -0.0028411303646862507, - -0.014902165159583092, - 0.011228458024561405, - 0.0065763904713094234, - -0.01552416943013668, - -0.0019162241369485855, - -0.026746148243546486, - 0.007606583647429943, - 0.021005574613809586, - 0.012589090503752232, - -0.005649864673614502, - -0.03848646208643913, - -0.03742387145757675, - -0.01186341978609562, - 0.014772581867873669, - 0.011377479881048203, - -0.002711546141654253, - -0.005870157387107611, - -0.0010301931761205196, - -0.026642480865120888, - 0.014111703261733055, - -0.019826360046863556, - 0.02199041284620762, - -0.030167166143655777, - 0.022016329690814018, - -0.001067448640242219, - -0.011701439507305622, - -0.02257354184985161, - -0.007457561790943146, - 0.010813788510859013, - -0.01265388261526823, - -0.02368796430528164, - 0.0049857464618980885, - -0.0017931192414835095, - 0.009569781832396984, - -0.017079178243875504, - 0.0055656349286437035, - -0.027782820165157318, - -0.01210314966738224, - 0.017429053783416748, - -0.005008423700928688, - -0.005805365275591612, - -0.031955424696207047, - 0.019774526357650757, - -0.025515099987387657, - 0.03273293003439903, - 0.011461708694696426, - -0.009044966660439968, - -0.018854478374123573, - 0.02889724262058735, - -0.012511339969933033, - -0.011105353012681007, - 0.01785668171942234, - 0.02477646991610527, - -0.002768239239230752, - -0.009990930557250977, - 0.01619800552725792, - 0.007937023416161537, - -0.014422704465687275, - 0.014098744839429855, - 0.023234419524669647, - -0.007885189726948738, - -0.02070753090083599, - -0.04317740350961685, - 0.021614618599414825, - 0.014319037087261677, - 0.005461967550218105, - -0.006751328706741333, - 0.0021122200414538383, - 0.011183103546500206, - 0.01836206018924713, - 0.02656473033130169, - 0.0072631859220564365, - -0.010515745729207993, - 0.015588960610330105, - -0.02070753090083599, - -0.0074705202132463455, - -0.03356226906180382, - -0.024374758824706078, - -0.005436050705611706, - 0.02420629933476448, - -0.007366853300482035, - -0.009304135106503963, - -0.013671116903424263, - 0.006965142674744129, - -0.005257872864603996, - 0.018206559121608734, - -0.012090192176401615, - -0.002066865563392639, - -0.0021462358999997377, - -0.011092394590377808, - -0.009187509305775166, - -0.016962552443146706, - 0.009070883505046368, - 0.009990930557250977, - -0.013437866233289242, - 0.015290917828679085, - -0.007049372419714928, - -0.02879357524216175, - 0.01565375365316868, - 0.04219256713986397, - 0.03063366934657097, - 0.03353635221719742, - -0.003453414887189865, - -0.02476351149380207, - 0.00606129365041852, - -0.034935858100652695, - 0.005128288641571999, - 0.007541791535913944, - 0.013172218576073647, - 0.008675651624798775, - 0.015550085343420506, - -0.015122458338737488, - 0.04325515404343605, - 0.008429442532360554, - 0.006275107618421316, - 0.007587146013975143, - -0.0030727616976946592, - -0.005474925972521305, - 0.011545938439667225, - 0.012018920853734016, - 0.031955424696207047, - -0.02824932336807251, - 0.05020086094737053, - 0.0009718803339637816, - 0.004739536438137293, - -0.019930027425289154, - 0.013930285349488258, - -0.014837373979389668, - -0.01622392237186432, - -0.01293896697461605, - -0.008371129631996155, - -0.009880783967673779, - -0.02359725534915924, - -0.008306337520480156, - 0.009919659234583378, - 0.03179992362856865, - -0.006602307315915823, - -0.01063237152993679, - -0.002329273382201791, - 0.0014197552809491754, - -0.0023535701911896467, - 0.009323572739958763, - 0.0259038507938385, - 0.008273941464722157, - 0.018724894151091576, - -0.009271739050745964, - 0.03794220834970474, - 0.013580407947301865, - -0.01960606686770916, - -0.014215369708836079, - -0.011118311434984207, - 0.00693922583013773, - 0.007574187591671944, - 0.020863031968474388, - -4.750571315526031e-05, - 0.005954387132078409, - 0.02822340652346611, - 0.00892186164855957, - 0.007988856174051762, - -0.008235066197812557, - 0.025074513629078865, - 0.045820917934179306, - 0.009608657099306583, - -0.008669172413647175, - -0.012511339969933033, - -0.025618765503168106, - -0.0050699757412076, - 0.019968902692198753, - -0.011377479881048203, - -0.036646369844675064, - 0.006991059519350529, - 0.009887263178825378, - -0.01622392237186432, - 0.022094080224633217, - 0.0038907609414309263, - 0.000694489513989538, - -0.0042373985052108765, - 0.011293250136077404, - -0.01907477155327797, - -0.018064016476273537, - -0.028508489951491356, - 0.042399901896715164, - 0.025048596784472466, - 0.006952184252440929, - 0.006816120818257332, - 0.010548141784965992, - 0.0343656912446022, - -0.0023001169320195913, - 0.02069457247853279, - -0.00693922583013773, - 0.019930027425289154, - -0.025605807080864906, - 0.005944668315351009, - 0.010347286239266396, - -0.035454194992780685, - -0.004768692888319492, - -0.016612675040960312, - 0.002633795840665698, - 0.03190359100699425, - 0.013386032544076443, - 0.014306078664958477, - 0.11890631914138794, - 0.02427109144628048, - -0.006803162395954132, - 0.029830247163772583, - 0.016936635598540306, - 0.028093822300434113, - -0.0019648182205855846, - -0.0017785410163924098, - 0.011396917514503002, - -0.05712064728140831, - 0.016534924507141113, - -0.012569652870297432, - 0.01300375908613205, - -0.03822729364037514, - -0.018310226500034332, - 0.02244395762681961, - 0.0018984063062816858, - 0.009388363920152187, - -0.01177919004112482, - -0.011189582757651806, - 0.052118703722953796, - -0.0004191234183963388, - 0.000438965973444283, - 0.03128159046173096, - -0.0348062738776207, - -0.02192562073469162, - 0.019761567935347557, - 0.006437087431550026, - 0.009019049815833569, - -0.010159389115869999, - -0.0053971754387021065, - 0.008578464388847351, - -0.04325515404343605, - -0.019968902692198753, - 0.019489441066980362, - -0.047531429678201675, - 0.0014659195439890027, - -0.024037841707468033, - 0.02705714851617813, - 0.00605805404484272, - 0.03003758192062378, - 0.022171830758452415, - -0.0013962681405246258, - -0.02355838008224964, - 0.00863029807806015, - 0.008656213991343975, - -0.0036056761164218187, - 0.0020441883243620396, - -0.01842685230076313 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 7, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 668 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000008.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000008.json deleted file mode 100644 index fc089c2fe9e01a116b1282418559df4ff76cb101..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000008.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000008", - "content": "[17]\n\n## Charakterisierung der Ger\u00e4uschemissionen\n\nUm die Emissionen einer Quelle unabh\u00e4ngig von Umgebungseinfl\u00fcssen, Entfernung und Fremdger\u00e4uschen zu definieren, wird der Schallleistungspegel LWA ben\u00f6tigt. Dieser be- schreibt die Schallenergie, die von einer Quelle pro Zeiteinheit in die gesamte Luft gleich- f\u00f6rmig abgestrahlt wird. Der Schallleistungspegel gibt somit Aufschluss \u00fcber die Ursache einer Ger\u00e4uschquelle. Hingegen beschreibt der Schalldruckpegel die Schallenergie, die an einem bestimmten Ort in der Umgebung \u00fcbertragen wird. Der Schalldruckpegel gibt somit Aufschluss \u00fcber die Wirkung einer Ger\u00e4uschquelle. [23, 24]\nDie DIN 3740 [25] gibt Auskunft \u00fcber verschiedene Verfahren zur Bestimmung von Schalleistungspegel f\u00fcr unterschiedliche Maschinen, Ger\u00e4te und Produkte. Sie stellt Richtlinien vor, um festzulegen, welche Verfahren unter bestimmten Bedingungen und Anforderungen an die Genauigkeit geeignet sind. Um den Schallleistungspegel zu be- stimmen, werden in der Regel unterschiedliche Verfahren angewendet: Die Messungen von Schalldruck, Schallintensit\u00e4t und Schwingschnelle. Die Abbildung 2 gibt einen \u00dcber- blick \u00fcber die Grundnormen f\u00fcr die Verfahren zur Bestimmung des Luftschallleistungs- pegel, entweder A-bewertet oder in Frequenzb\u00e4ndern beschrieben. Dort enthalten sind\n12\n2 Grundlagen\nf\u00fcr Schalldruckpegelmessungen die ISO 3741 bis ISO 3747 [26\u201331], Schallintensit\u00e4tsmes- sungen die ISO 9614-1 bis ISO 9614-3 [32\u201334] und f\u00fcr Schwingungsmessungen die\nISO/TS 7849-1 und ISO/TS 7849-2 [35, 36]. [IMAGE: Bestimmung des Schallleistungspegels ISO 3740 \u2014z]\n\nAbbildung 2: \u00dcberblick \u00fcber die Grundnormen zur Bestimmung des Schallleistungspegels\nIn dieser Thesis wird der Schallleistungspegel aus der Messung des Schalldruckpegels (siehe Abbildung 2 gr\u00fcner Kasten) ermittelt. Um den Schalldruckpegel zu bestimmen gibt es zwei Methoden zur Messung: die direkte und die indirekte Methode. Die direkte Methode findet Anwendung in einer Freifeld-Umgebung oder in einem diffusen Schall- feld. Hierbei wird die gesuchte Messgr\u00f6\u00dfe, der Schallleistungspegel, durch den Vergleich mit einem Bezugswert mithilfe einer anderen Messgr\u00f6\u00dfe, dem Schalldruckpegel, ermit- telt. Hingegen wird die Indirekte Methode nur im diffusen Schallfeld eingesetzt und die gesuchte Messgr\u00f6\u00dfe aus einer anderen Messgr\u00f6\u00dfe ermittelt. [37, 23] Ein diffuses Schall- feld enth\u00e4lt Schall aus allen Richtungen und entsteht oft in halligen R\u00e4umen, in denen der Direktschall zus\u00e4tzlich Reflexionen an den W\u00e4nden erf\u00e4hrt. In einem Freifeld erf\u00e4hrt der Schall keine zus\u00e4tzlichen Reflexionen. Die Schallleistung wird in Anlehnung an das H\u00fcllfl\u00e4chen-Verfahren indirekt aus dem Schalldruck p, der Schallschnelle v\u0305 und der Messfl\u00e4che S berechnet, welche in der Normreihe DIN EN ISO 3740 bis 3747 [25, 38, 27, 28, 39\u201341] (siehe Abbildung 2 roter und gr\u00fcner Kasten) beschrieben wird. Dabei wird der Schalldruckpegel von Messpunkten berechnet, die auf einer gedachten H\u00fcllfl\u00e4che\n13\n2 Grundlagen\nangeordneten sind, auf die die abgestrahlte Schallleistung der Quelle trifft. [42] Die Messfl\u00e4che ist so zu dimensionieren, dass alle Messpunkte im Fernfeld liegen, folglich zwischen Schalldruck und Schallschnelle kein Phasenunterschied besteht. Im Fernfeld ist die Schallpegelverteilung gleichbleibend auf der gesamten Messfl\u00e4che. Die H\u00fcllfl\u00e4che wird in n-Teilfl\u00e4chen Si zerlegt, auf denen ein Schalldruck-Effektivwert gemessen wird. [21, 43] Der Schalldruckpegel beschreibt die Druckschwankungen des Schalls in einem Medium wie Luft. Er h\u00e4ngt mit dem physikalischen Schalldruck zusammen und wird als Verh\u00e4ltnis von Kraft zu Fl\u00e4che definiert, auf die die Kraft senkrecht wirkt (siehe Formel 5). [44]\n\ud835\udc5d = \ud835\udc3c \ud835\udc63\n\n## Formel 5: Schalldruck [Pa = N/m\u00b2]\n\nMit I: Schallintensit\u00e4t [W/m\u00b2], v: Schallschnelle [m/s]\nDie Schallschnelle beschreibt die Geschwindigkeit, mit der sich ein Teilchen wie z.B.", - "embedding": [ - 0.0299252737313509, - 0.02765054814517498, - 0.005955357104539871, - -0.030986811965703964, - -0.002187843434512615, - 0.0005066792364232242, - -0.012005493976175785, - -0.018930768594145775, - -0.020687362179160118, - -0.03690109774470329, - 0.013559889979660511, - 0.03465164825320244, - -0.015834614634513855, - 0.00616703275591135, - 0.004739010706543922, - 0.011481043882668018, - 0.035384614020586014, - -0.01043214276432991, - 0.005686813034117222, - 0.0025021976325660944, - 0.004919093102216721, - 0.0010038804030045867, - -0.007032691966742277, - 0.008012088015675545, - -0.008043681271374226, - 0.01689615286886692, - 0.03558681160211563, - -0.027246152982115746, - -0.026361538097262383, - 0.001109718345105648, - 0.012555219233036041, - -0.0027423074934631586, - -0.02775164693593979, - 0.012081318534910679, - -0.014330768957734108, - -0.017199449241161346, - -0.015265933237969875, - -0.006258653476834297, - 0.017578570172190666, - -0.002284203190356493, - 0.002533791121095419, - 0.015784066170454025, - 0.010609065182507038, - -0.012599450536072254, - 0.0006263392861001194, - 0.009111538529396057, - 0.005127609707415104, - 0.00046126372762955725, - -0.01347142830491066, - 0.008195329457521439, - 0.012965933419764042, - 0.0037438184954226017, - -0.027574723586440086, - -0.00035641310387291014, - -0.0070895603857934475, - -0.018766483291983604, - -0.0030866756569594145, - 0.0017929257592186332, - 0.009478021413087845, - -0.010924999602138996, - -0.03323626145720482, - -0.0013229738688096404, - -0.018817031756043434, - 0.0065271975472569466, - -0.01997966878116131, - -0.014495054259896278, - -0.014722527004778385, - 0.012795329093933105, - -0.017414284870028496, - -0.007557142525911331, - 0.024946153163909912, - 0.03068351559340954, - 0.00904835108667612, - 0.022949449717998505, - 0.014166482724249363, - 0.0027328296564519405, - 0.012409890070557594, - 5.578210675594164e-06, - 0.0026649036444723606, - 0.009383241645991802, - 0.03091098740696907, - -0.03141648322343826, - -0.018109340220689774, - 0.03470219671726227, - 0.006672527175396681, - -0.01132307667285204, - -0.015935713425278664, - 0.02537582255899906, - -0.025552745908498764, - 0.0025195740163326263, - 0.004154532682150602, - 0.020611537620425224, - 0.015885164961218834, - 0.00019706386956386268, - 0.02684175781905651, - -0.003118269145488739, - 0.016112636774778366, - 0.013926372863352299, - -0.0010702266590669751, - -0.03492967039346695, - -0.011828570626676083, - 0.0008435439085587859, - 0.002486401004716754, - -0.005683653522282839, - -0.0294956024736166, - -0.005674175452440977, - 0.0019035027362406254, - 0.026058241724967957, - 0.020662087947130203, - -0.028282416984438896, - -0.016226373612880707, - 0.007948900572955608, - 0.0073928567580878735, - -0.013534614816308022, - 0.030178021639585495, - -0.015670329332351685, - 0.023606592789292336, - -0.012593131512403488, - -0.015670329332351685, - -0.01404010970145464, - 0.02916703186929226, - 0.006742032710462809, - 0.01737637259066105, - -0.0065587908029556274, - 0.03417142853140831, - -0.0005528845940716565, - -0.001114457380026579, - -0.016542308032512665, - -0.013610439375042915, - -0.01684560440480709, - -0.029950547963380814, - -0.008403846062719822, - 0.03341318666934967, - 0.00015826321032363921, - 0.008075274527072906, - 0.008018406108021736, - -0.008700824342668056, - -0.013787361793220043, - -0.024895602837204933, - -0.03250329568982124, - 0.02119285613298416, - 0.013547251932322979, - -0.03449999913573265, - -0.03482856974005699, - -0.009623351506888866, - 0.022191207855939865, - 0.015682967379689217, - 0.001553605659864843, - -0.00566153833642602, - 0.013041757978498936, - -0.0246681310236454, - -0.01441923063248396, - 0.008346977643668652, - 0.005219230428338051, - -0.027776923030614853, - 0.003345741657540202, - -0.005152884405106306, - 0.043270327150821686, - 0.003298351541161537, - -0.0027280906215310097, - 0.0007839113823138177, - 0.00654615368694067, - -0.004729532636702061, - 0.00030428398167714477, - 0.015291208401322365, - 0.026007691398262978, - -0.006119642872363329, - -0.003070879029110074, - -0.00645137345418334, - -0.00041821770719252527, - -0.009876098483800888, - 0.017313186079263687, - -0.015177471563220024, - 0.027524175122380257, - -0.01385054923593998, - 0.010394230484962463, - 0.005494093056768179, - -0.00702005485072732, - -0.018715932965278625, - -0.027448350563645363, - -0.01912032812833786, - 0.0013727335026487708, - -0.001157108461484313, - 0.01531648263335228, - -0.021331867203116417, - 0.005949038080871105, - 0.010305768810212612, - 0.020687362179160118, - -0.0053266482427716255, - -0.01580934040248394, - 0.009553845971822739, - 0.022406043484807014, - 0.006400824058800936, - -0.028383515775203705, - -0.617916464805603, - -0.017123626545071602, - -0.008422802202403545, - 0.0051118130795657635, - -0.004947527311742306, - 0.024807142093777657, - 0.005004395265132189, - 0.002004601527005434, - 0.005655219778418541, - 0.0497659333050251, - 0.001630219747312367, - -0.015076372772455215, - -0.009661263786256313, - 0.002378983423113823, - -0.010192032903432846, - -0.013281867839396, - -0.016757141798734665, - -0.020055493339896202, - 0.023935163393616676, - -0.007323351223021746, - -0.013041757978498936, - 0.018665384501218796, - 0.012548900209367275, - 0.0025843405164778233, - -0.0036364009138196707, - 0.015202746726572514, - 0.028914283961057663, - -0.009895054623484612, - 0.026386812329292297, - 0.007474999874830246, - -0.023808790370821953, - 0.01072912011295557, - -0.03548571467399597, - 0.013433516025543213, - 0.03086043894290924, - -0.006053296383470297, - 0.00518763717263937, - 0.002808653749525547, - 0.015139560215175152, - 0.0027849588077515364, - -0.01160109881311655, - -0.008732417598366737, - -0.0015109545784071088, - -0.009389559738337994, - 0.011803296394646168, - -0.005250824149698019, - 0.04792087897658348, - -0.0021562499459832907, - 0.008195329457521439, - -0.02570439502596855, - -0.0050770603120327, - 0.0019129806896671653, - 0.031062636524438858, - 0.025009339675307274, - 0.03520769253373146, - -0.014608791097998619, - 0.035182416439056396, - -0.027574723586440086, - -0.02590659260749817, - 0.02840879000723362, - 0.010804944671690464, - 0.025931866839528084, - 0.016099998727440834, - -0.011266208253800869, - -0.007784615270793438, - 0.022633515298366547, - -0.014709889888763428, - -0.026639560237526894, - 0.003841758007183671, - -0.017717581242322922, - -0.009496977552771568, - 0.02358131855726242, - 0.005440384615212679, - -0.030430767685174942, - 0.029293404892086983, - 0.013345054350793362, - 0.015101647935807705, - -0.02401098795235157, - 0.004783241543918848, - 0.0052824174053967, - -0.011689560487866402, - -0.008877746760845184, - -0.023619230836629868, - 0.006634615361690521, - 0.012649999931454659, - -0.03576373681426048, - -0.004299862310290337, - 0.026412086561322212, - 0.017667032778263092, - 0.030784614384174347, - 0.04031318426132202, - 0.04102087765932083, - -0.01344615314155817, - -0.03020329587161541, - -0.029596703127026558, - 0.025578022003173828, - -0.019145604223012924, - 0.010261538438498974, - 0.013142856769263744, - -0.033767033368349075, - -0.01786923035979271, - -0.004214560147374868, - 0.014646702446043491, - -0.02193845994770527, - 0.019208790734410286, - -0.008745054714381695, - -0.0078478017821908, - -0.002469024620950222, - 0.02481978014111519, - -0.034525275230407715, - 0.019790109246969223, - -0.018892856314778328, - -0.01999230682849884, - 0.0024500684812664986, - -0.008700824342668056, - -0.028282416984438896, - 0.06308571249246597, - 0.011266208253800869, - 0.028156042098999023, - -0.01874120905995369, - 0.018058789893984795, - 0.00790467020124197, - 0.0485527440905571, - -0.022772526368498802, - -0.022684065625071526, - 0.03394395485520363, - 0.013913735747337341, - 0.020687362179160118, - 0.00136799446772784, - -0.012251922860741615, - 0.03101208619773388, - 0.006950549315661192, - 0.013951648026704788, - -0.007057966664433479, - 0.0016491757705807686, - 0.016441207379102707, - 0.018918130546808243, - -0.019423626363277435, - 0.012510988861322403, - -0.026791207492351532, - -0.03144175559282303, - -0.008700824342668056, - 0.008764010854065418, - -0.03687582165002823, - -0.020624175667762756, - -0.03786153718829155, - -0.022418679669499397, - -0.0005366929690353572, - 0.00013940590724814683, - -0.004776922985911369, - 0.001875068643130362, - -0.026589009910821915, - 0.004811675753444433, - 0.03950439393520355, - 0.005304532591253519, - 0.007734065875411034, - -0.017338460311293602, - -0.017970329150557518, - -0.020447252318263054, - -0.020573625341057777, - 0.016011537984013557, - 0.0006291036843322217, - -0.04802197590470314, - -0.013142856769263744, - 0.0017060438403859735, - -0.03369120880961418, - 0.01842527464032173, - -0.000933585106395185, - -0.018185164779424667, - -0.042082417756319046, - -0.005364560056477785, - 0.03513186797499657, - -0.000138714793138206, - 0.02020714245736599, - 0.0012747938744723797, - 0.004157692193984985, - -0.02178681269288063, - -0.013863186351954937, - -0.008429120294749737, - -0.017806043848395348, - 0.023783516138792038, - 0.009004120714962482, - -0.010836537927389145, - 0.009035713970661163, - 0.017629120498895645, - 0.003449999960139394, - 0.007866757921874523, - 0.01793241687119007, - -0.014823625795543194, - 0.022684065625071526, - -0.0029618816915899515, - 0.021256042644381523, - -0.01781868003308773, - 0.01847582310438156, - -0.03899889811873436, - -0.002301579574123025, - 0.004081868100911379, - -0.015089010819792747, - -0.008757691830396652, - 0.016542308032512665, - 0.02646263688802719, - -0.009471703320741653, - 0.0232021976262331, - -0.030784614384174347, - 0.027347251772880554, - -0.011657966300845146, - 0.005152884405106306, - -0.010179394856095314, - 0.04943736270070076, - 0.040818680077791214, - 0.020775822922587395, - -0.010583790950477123, - -0.025881318375468254, - -0.011613735929131508, - 0.006302884314209223, - 0.03980769217014313, - -0.011942307464778423, - 0.010773351415991783, - 0.015215383842587471, - -0.013749450445175171, - -0.0022826234344393015, - 0.0009098901064135134, - 0.03492967039346695, - 0.008207966573536396, - -0.010198350995779037, - -0.0013269230257719755, - -0.0018039834685623646, - 0.0064703295938670635, - -0.0015646633692085743, - -0.018602197989821434, - -0.01113351620733738, - -0.01755329594016075, - 0.02422582358121872, - 0.008334340527653694, - -0.01706043817102909, - 0.034853845834732056, - 0.015404944308102131, - -0.0019587911665439606, - 0.051914282143116, - 0.0045494502410292625, - 0.020510438829660416, - 0.007664560340344906, - -0.008328021503984928, - 0.00022747252660337836, - 0.010691208764910698, - -0.022633515298366547, - 0.0021957417484372854, - 0.020978020504117012, - -0.017287911847233772, - -0.011613735929131508, - -0.019044505432248116, - 0.011101922951638699, - -0.02114230766892433, - 0.0013482485665008426, - 0.018109340220689774, - -0.003295192262157798, - 0.023619230836629868, - -0.005626785568892956, - -0.0040249996818602085, - 0.012024450115859509, - 0.016264285892248154, - -0.003320466959849, - 0.02498406544327736, - -0.01431813184171915, - 0.006824175361543894, - 0.003459477797150612, - -0.029369229450821877, - -0.01721208728849888, - -0.008189010433852673, - -0.0027217718306928873, - 0.0028449862729758024, - 0.008290109224617481, - 0.0018608515383675694, - 0.0015930974623188376, - 0.020055493339896202, - -0.007386538200080395, - -0.009989834390580654, - 0.015607141889631748, - 0.030329668894410133, - 0.002121497178450227, - -0.017363736405968666, - -0.015114285051822662, - -0.0022699860855937004, - 0.02231758087873459, - -0.017667032778263092, - -0.02167307585477829, - -0.01977747119963169, - 0.004407280124723911, - -0.026765933260321617, - 0.0018482141895219684, - -0.02661428414285183, - 0.011885439045727253, - 0.007771977689117193, - -0.006811538245528936, - -0.005206593312323093, - 0.0023631867952644825, - 0.00894093420356512, - 0.01775549352169037, - -0.0005781592917628586, - 0.018665384501218796, - -0.0005489354371093214, - -0.007942582480609417, - -0.009793955832719803, - -0.007993131875991821, - 0.02390988916158676, - 0.003690109821036458, - -0.0230252742767334, - -0.02325274609029293, - 0.010868131183087826, - -0.020674724131822586, - -0.015354394912719727, - -0.01439395546913147, - -0.006179670337587595, - 0.006028021685779095, - 0.006950549315661192, - -0.016769779846072197, - 0.02313901111483574, - -0.00018946170166600496, - 0.030809888616204262, - -0.0037912086118012667, - 0.005828983150422573, - -0.02422582358121872, - 0.006596703082323074, - 0.0074560437351465225, - 0.004426236264407635, - 0.013623076491057873, - 0.021812086924910545, - 0.02939450368285179, - -0.018185164779424667, - -0.02541373483836651, - -0.00974972452968359, - -0.030986811965703964, - 0.01846318691968918, - 0.020952746272087097, - 0.0029255494009703398, - 0.003273076843470335, - 0.03048131801187992, - 0.0054214284755289555, - -0.00452417554333806, - -0.03151758015155792, - 0.03614285588264465, - -0.01393901091068983, - 0.014621428214013577, - 0.010147801600396633, - -0.008290109224617481, - 0.007007417269051075, - 0.00904835108667612, - 0.044458240270614624, - -0.019587911665439606, - -0.009357966482639313, - 0.010015109553933144, - 0.012409890070557594, - 0.00914944987744093, - -0.02027032896876335, - -0.011594779789447784, - 0.03063296526670456, - 0.0034942305646836758, - 0.0043346150778234005, - -0.0280296690762043, - -0.014836262911558151, - -0.0015156936133280396, - 0.0013664148282259703, - 0.017629120498895645, - -0.023998349905014038, - -0.004325137007981539, - 0.03184615448117256, - 0.010463736020028591, - -0.009604395367205143, - 0.0028370877262204885, - -0.011474724858999252, - 0.006691483315080404, - 0.014558241702616215, - 0.004359889775514603, - 0.011992856860160828, - 0.009515933692455292, - -0.012839560396969318, - -0.007557142525911331, - -0.00011028072913177311, - -0.010678570717573166, - -0.028585713356733322, - 0.008049999363720417, - -0.025009339675307274, - -0.006088049151003361, - -0.0027517855633050203, - -0.02129395492374897, - -0.0217741746455431, - 0.01954999938607216, - -0.0046505494974553585, - -0.029293404892086983, - -0.0018877059919759631, - 0.002908173017203808, - 0.003247802145779133, - -0.010672252625226974, - 0.007595054805278778, - 0.006163873244076967, - -0.012157142162322998, - -0.04324505478143692, - 0.0012961194152012467, - 0.010653296485543251, - -0.022229120135307312, - 0.01917087845504284, - -0.0037406592164188623, - -0.025236811488866806, - -0.008700824342668056, - -0.016378020867705345, - 0.0006871565710753202, - 0.0027454670052975416, - -0.019916482269763947, - -0.009901373647153378, - 0.02487032860517502, - -0.012852197512984276, - 0.008909340016543865, - 0.008460713550448418, - -0.009256867691874504, - -0.009326373226940632, - 0.02444065921008587, - 0.006176510825753212, - 0.0031151098664849997, - -0.0096170324832201, - 0.028863735496997833, - 0.012631043791770935, - 0.0013585163978859782, - 0.013420878909528255, - -0.01110824104398489, - 0.02684175781905651, - -0.03662307560443878, - 0.010646977461874485, - 0.013357691466808319, - 0.037684615701436996, - 0.008467032574117184, - 0.006982142571359873, - 0.011101922951638699, - -0.0026254120748490095, - 0.0029255494009703398, - 0.008688186295330524, - -0.016378020867705345, - 0.014217032119631767, - 0.0008751373388804495, - -0.007797252386808395, - 0.0012052884558215737, - 0.008568131364881992, - -0.022633515298366547, - 0.030026372522115707, - 0.006609340663999319, - -0.002559065818786621, - -0.03791208565235138, - 0.044028569012880325, - 0.023315932601690292, - -0.018159888684749603, - 0.01122197788208723, - -0.010135164484381676, - 0.007159065920859575, - -0.021154943853616714, - -0.0051686810329556465, - 0.011045054532587528, - 0.011670604348182678, - 0.003987087868154049, - -0.0008230081875808537, - -0.018046153709292412, - 0.0010749655775725842, - -0.005216071382164955, - 0.01024258229881525, - -0.01933516375720501, - 0.0045557692646980286, - -0.014141208492219448, - 0.010962911881506443, - -0.016213735565543175, - 0.007531867828220129, - 0.020548351109027863, - -0.03136593475937843, - -0.04471098631620407, - 0.02661428414285183, - -0.01477307640016079, - 0.017199449241161346, - -0.032250549644231796, - -0.00980659294873476, - -0.015329120680689812, - -0.010356318205595016, - -0.016099998727440834, - -0.03331208601593971, - -0.006868406198918819, - -0.01803351566195488, - 0.01347142830491066, - -0.005844780243933201, - 0.029748350381851196, - 0.015164834447205067, - -0.009307417087256908, - 0.007519230712205172, - -0.0021625685039907694, - 0.006767307408154011, - -0.011417856439948082, - -0.017717581242322922, - -0.017894504591822624, - 0.03465164825320244, - 0.02139505371451378, - 0.001737637328915298, - 0.015556592494249344, - -0.005955357104539871, - 0.0025606455747038126, - 0.053430765867233276, - -0.018930768594145775, - 0.001960370922461152, - -0.0005900068208575249, - -0.01607472449541092, - 0.00021305802511051297, - 0.006302884314209223, - 0.0012052884558215737, - 0.012593131512403488, - -0.001625480712391436, - -0.01431813184171915, - 0.01623900979757309, - -0.0313912071287632, - -0.016491757705807686, - -0.005563598591834307, - 0.01393901091068983, - -0.02982417494058609, - 0.047010987997055054, - 0.004732692148536444, - 0.01885494403541088, - -0.00752554927021265, - -0.007266483269631863, - -0.005010714288800955, - -0.019954394549131393, - 0.0015923075843602419, - -0.006141758058220148, - 0.004296703264117241, - -0.021660439670085907, - -0.01867802068591118, - 0.008542857132852077, - -0.010312087833881378, - 0.020434614270925522, - -0.01325659267604351, - -0.0020077608060091734, - -0.006918955594301224, - -0.030329668894410133, - -0.029647251591086388, - -0.012814285233616829, - -0.01717417500913143, - 0.00996456015855074, - 0.00673571415245533, - 0.014368681237101555, - 0.03687582165002823, - -0.016415933147072792, - -0.005358241498470306, - 0.011778021231293678, - 0.0032572802156209946, - 0.011727471835911274, - -0.0064039831049740314, - 0.029192306101322174, - 0.01890549436211586, - -0.011588460765779018, - -0.035991206765174866, - -0.04852747172117233, - -0.004426236264407635, - -0.017565933987498283, - 0.025982417166233063, - -0.001174484845250845, - -0.020181868225336075, - 0.005712087731808424, - 0.015998899936676025, - 0.00907362625002861, - -0.00869450531899929, - -0.018703296780586243, - 0.035940658301115036, - 0.005952197592705488, - -0.007222252432256937, - -0.021066483110189438, - 0.026968130841851234, - -0.02547692134976387, - -0.012864834628999233, - 0.014090659096837044, - -8.031636389205232e-05, - -0.027119779959321022, - -0.0077656591311097145, - -0.010236263275146484, - 0.039074722677469254, - 0.022886263206601143, - 0.005870054941624403, - 0.0204851645976305, - -0.01717417500913143, - 0.009838186204433441, - -0.01786923035979271, - -0.0338934063911438, - 0.017528021708130836, - -0.02081373520195484, - 0.039681319147348404, - -0.02569175697863102, - -0.01100082416087389, - -0.00673571415245533, - 0.007026373408734798, - 0.005715247243642807, - 0.003273076843470335, - 0.011759065091609955, - 0.02140769176185131, - -0.020118679851293564, - -8.865899144439027e-05, - 0.010703845880925655, - -0.015796702355146408, - 0.006975824013352394, - 0.004776922985911369, - -0.003298351541161537, - -0.00047942993114702404, - 0.011007142253220081, - 0.003822802100330591, - 0.004419917240738869, - 0.014596153050661087, - -0.013294504955410957, - -0.016226373612880707, - -0.024465933442115784, - -0.02172362618148327, - -0.008100548759102821, - -0.009718131273984909, - 0.012548900209367275, - -0.02009340561926365, - 0.0022383928298950195, - -0.01040054950863123, - 0.004543131683021784, - 0.011045054532587528, - 0.009781318716704845, - -0.019221428781747818, - -0.011462087742984295, - 0.03187142685055733, - -0.031113184988498688, - 0.012789011001586914, - 0.030759340152144432, - -0.014558241702616215, - -0.009105219505727291, - -0.008871428668498993, - 0.023871976882219315, - -0.028889009729027748, - 0.02422582358121872, - -0.0077656591311097145, - -0.023075822740793228, - -0.004546291194856167, - -0.008896702900528908, - 0.023998349905014038, - -0.018008241429924965, - 0.005121291149407625, - -0.00030428398167714477, - 0.023973075672984123, - 0.0029697800055146217, - -0.030809888616204262, - 0.0017044642008841038, - 0.0058858515694737434, - 0.02281043864786625, - 0.00023082931875251234, - 0.03667362406849861, - -0.022671427577733994, - 0.011278845369815826, - -0.000662276754155755, - -0.009370604529976845, - 0.003547939471900463, - -0.01846318691968918, - -0.008934615179896355, - 0.007917307317256927, - -0.0013964285608381033, - -0.03199779987335205, - 0.01091868057847023, - -0.023758240044116974, - -0.010912362486124039, - -0.013104944489896297, - 0.006394505500793457, - 0.00904835108667612, - 0.031795602291822433, - 0.006362911779433489, - -0.0025653846096247435, - -0.01458351593464613, - 0.018324175849556923, - -0.017237361520528793, - -0.014330768957734108, - 0.02178681269288063, - 0.0011808035196736455, - -0.039630766957998276, - 0.014987912029027939, - -0.01585988886654377, - 0.028535163030028343, - 0.023151647299528122, - -0.01493736170232296, - -0.011386263184249401, - 0.02227967046201229, - -0.03525824099779129, - -0.015417581424117088, - -0.02150879055261612, - 0.003462637308984995, - -0.0074560437351465225, - 0.030430767685174942, - -0.020219778642058372, - 0.02427637204527855, - 0.008549175225198269, - 0.014027471654117107, - -0.02004285715520382, - -0.03295823931694031, - 0.003352060215547681, - -0.014217032119631767, - 0.0020409340504556894, - 0.005408790893852711, - -0.01663076877593994, - -0.0014185438631102443, - 0.03166922926902771, - -0.013951648026704788, - 0.01829889975488186, - 0.03867032751441002, - -0.016706593334674835, - -0.0326043963432312, - 0.0006599072366952896, - 0.024642856791615486, - 0.02509780041873455, - 0.012510988861322403, - -0.004776922985911369, - -0.019107691943645477, - 0.008877746760845184, - -0.0012455700198188424, - 0.012460439465939999, - -0.027347251772880554, - 0.00958543922752142, - 0.02792857028543949, - -0.009370604529976845, - -0.010514285415410995, - 0.01211291179060936, - -0.021091757342219353, - 0.0171615369617939, - -0.021496152505278587, - 0.052773624658584595, - 0.0020077608060091734, - -0.030329668894410133, - 0.019436262547969818, - 0.014027471654117107, - -0.011639010161161423, - -0.023770878091454506, - -0.006353433709591627, - -0.03192197531461716, - 0.001845054910518229, - 0.012327746488153934, - -0.004116620868444443, - 0.01477307640016079, - -0.01382527407258749, - 0.00980659294873476, - -0.011007142253220081, - -0.015518681146204472, - -0.02536318637430668, - -0.02401098795235157, - -0.03434835001826286, - 0.03990878909826279, - 0.02281043864786625, - -0.014381318353116512, - -0.0003698403015732765, - -0.01809670217335224, - -0.004824312869459391, - -0.011146153323352337, - -0.018753845244646072, - 0.01306703221052885, - -0.021976372227072716, - -0.004091346170753241, - -0.00030290178256109357, - -0.020573625341057777, - -0.0017455356428399682, - 0.006704120431095362, - -0.001320604351349175, - -0.027852745726704597, - 0.0025843405164778233, - 0.19229009747505188, - -0.02091483399271965, - -0.004780082032084465, - 0.017237361520528793, - -0.024529119953513145, - -0.028535163030028343, - 0.013319780118763447, - -0.020978020504117012, - 0.00032225274480879307, - 0.02825714275240898, - 0.013193406164646149, - -0.010906043462455273, - 0.008517581969499588, - 0.01570824161171913, - 0.01515219733119011, - -0.015190109610557556, - -0.030607691034674644, - -0.0014090659096837044, - -0.0040249996818602085, - 0.011443131603300571, - 0.016264285892248154, - -0.020459888502955437, - 0.0044293953105807304, - -0.012763735838234425, - 0.044306591153144836, - 0.0150510985404253, - 0.0009817651007324457, - -0.0016934064915403724, - 0.04324505478143692, - 0.02590659260749817, - -0.021091757342219353, - 0.006144917570054531, - 0.007841483689844608, - -0.005408790893852711, - -0.008031043224036694, - -0.0030219091568142176, - 0.006110164802521467, - -0.03058241680264473, - 0.023973075672984123, - 0.03894834965467453, - 0.009920329786837101, - -0.0026380494236946106, - -0.008220603689551353, - -0.033387910574674606, - 0.018374724313616753, - 0.023480219766497612, - -0.014343406073749065, - 0.007266483269631863, - 0.003677472472190857, - 0.010356318205595016, - -0.008997801691293716, - 0.005086538381874561, - 0.012315109372138977, - 0.04455934092402458, - -0.00556675810366869, - -0.01711098849773407, - 0.012890109792351723, - 0.0036364009138196707, - -0.00654615368694067, - 0.003769093193113804, - -0.037558238953351974, - 0.023012636229395866, - -0.014532966539263725, - 0.0033741756342351437, - -0.023151647299528122, - 0.017022527754306793, - -0.01869065873324871, - -0.0007874656585045159, - -0.0261340644210577, - -0.010571153834462166, - -0.007923626340925694, - -0.007797252386808395, - -0.025679120793938637, - 0.008511263877153397, - -0.017477471381425858, - -0.033539559692144394, - 0.02335384488105774, - 0.01167692244052887, - 0.019651098176836967, - 0.022090109065175056, - 0.009515933692455292, - 0.009781318716704845, - -0.016175823286175728, - 0.0026743817143142223, - 0.012138186022639275, - -0.009389559738337994, - 0.005440384615212679, - -0.006264972500503063, - -0.0014643543399870396, - -0.007405494339764118, - -0.014785713516175747, - 0.0064892852678895, - 0.003352060215547681, - -0.008100548759102821, - 0.009724450297653675, - -0.024137360975146294, - 0.012593131512403488, - -0.011929670348763466, - -0.016011537984013557, - -0.01550604309886694, - -0.007986812852323055, - 0.05575604364275932, - 0.04655604064464569, - -0.016769779846072197, - -0.004925412125885487, - -0.0002667668159119785, - 0.009256867691874504, - 0.019865933805704117, - -0.0023157966788858175, - -0.0011389423161745071, - -0.008372252807021141, - -0.03434835001826286, - 0.01755329594016075, - -0.02210274711251259, - 0.0022099586203694344, - 0.014431867748498917, - -0.007411812897771597, - 0.00933901034295559, - 0.0018766482826322317, - 0.012100274674594402, - -0.005506730638444424, - 0.010817581787705421, - 0.02487032860517502, - -0.005411950405687094, - 0.023770878091454506, - -0.022684065625071526, - -0.05373406410217285, - 0.022684065625071526, - -0.004284065682440996, - 0.0066219777800142765, - 0.024213185533881187, - -0.019815383478999138, - 0.008359614759683609, - 0.005923763383179903, - 0.009515933692455292, - 0.011778021231293678, - -0.0065651098266243935, - -0.019031867384910583, - 0.005955357104539871, - -0.015632417052984238, - 0.00324464263394475, - -0.022140659391880035, - 0.009882417507469654, - 0.027069229632616043, - 0.008612362667918205, - -0.009686538018286228, - 0.011158790439367294, - 0.010394230484962463, - -0.01575879007577896, - -0.020181868225336075, - -0.0363956019282341, - -0.0010560095543041825, - 0.00575631856918335, - -0.031113184988498688, - 0.010735439136624336, - 0.009193681180477142, - -0.008795604109764099, - -0.029040658846497536, - 0.02351813018321991, - 0.022014284506440163, - -0.012871153652668, - -0.014735164120793343, - -0.012668956071138382, - -0.020598899573087692, - 0.010071977972984314, - -0.006843131501227617, - -0.15538901090621948, - -0.00993928499519825, - 0.017123626545071602, - -0.03293296694755554, - -0.0005663118208758533, - 0.0022952610161155462, - 0.0012187155662104487, - 0.026058241724967957, - -0.013041757978498936, - -0.006659890059381723, - 0.0043409341014921665, - -0.002361607039347291, - -0.021534064784646034, - -0.007721428293734789, - -0.020396701991558075, - 0.0044293953105807304, - -0.012965933419764042, - 0.03672417625784874, - 0.023556042462587357, - 0.0006140968180261552, - 0.008713461458683014, - -0.01938571408390999, - 0.012176098302006721, - 0.0011239354498684406, - -0.007639285642653704, - 0.007866757921874523, - -0.023151647299528122, - 0.018715932965278625, - -0.021432965993881226, - -0.013888461515307426, - -0.022368131205439568, - 0.004265109542757273, - 0.008245878852903843, - 0.010305768810212612, - 0.010331043973565102, - -0.004830631893128157, - 0.004975961521267891, - -0.008214285597205162, - -0.010046702809631824, - 0.029242856428027153, - -0.005067582242190838, - 0.03548571467399597, - -0.014621428214013577, - 0.026816481724381447, - -0.006672527175396681, - 0.019651098176836967, - 0.02633626200258732, - -0.0021530906669795513, - 0.010248900391161442, - 0.008005768992006779, - 0.013370329514145851, - -0.019840659573674202, - -0.020978020504117012, - 0.012447801418602467, - -0.0006097527220845222, - 0.007474999874830246, - -0.02096538431942463, - 0.030430767685174942, - 0.0041292579844594, - 0.01271318644285202, - -0.014874175190925598, - -0.025021977722644806, - -7.793451004545204e-06, - -0.010558515787124634, - 0.01031840592622757, - 0.000533533631823957, - 0.008846153505146503, - 0.029849449172616005, - -0.023126373067498207, - 0.0018829669570550323, - -0.0008020775858312845, - -0.04241098836064339, - 0.007626648060977459, - -0.010880769230425358, - 0.00882719736546278, - -0.012258240953087807, - -0.00422403821721673, - 0.003137225052341819, - 0.007595054805278778, - 0.006514560431241989, - -0.01684560440480709, - 0.040009889751672745, - 0.01100082416087389, - -0.024756591767072678, - -0.02374560385942459, - -0.0030171701218932867, - -0.020523076876997948, - 0.017565933987498283, - -0.010280494578182697, - -0.002679120749235153, - 0.005165521986782551, - -0.013964285142719746, - -0.02015659213066101, - -0.03834175691008568, - 0.007645604200661182, - -0.010457416996359825, - -0.005964835174381733, - 0.012921703048050404, - -0.018968680873513222, - -0.004840109497308731, - 0.007190659176558256, - -0.026209888979792595, - -0.015493405982851982, - 0.014115933328866959, - -0.004517856985330582, - -0.004347252659499645, - -0.0321747250854969, - 0.0028844778425991535, - 0.038114283233881, - -0.015885164961218834, - -0.014532966539263725, - -0.003015590598806739, - 0.037078019231557846, - -0.008530219085514545, - 2.6928441002382897e-05, - 0.008890383876860142, - -0.0073928567580878735, - -0.02231758087873459, - 0.012068680487573147, - -0.0020851646549999714, - 0.05909230560064316, - -0.012965933419764042, - -0.007790933828800917, - -0.001699725165963173, - -0.013749450445175171, - -0.03700219467282295, - -0.08558021485805511, - -0.007822527550160885, - 0.016542308032512665, - 0.01997966878116131, - 0.016921427100896835, - 0.030076922848820686, - 0.015417581424117088, - -0.01129780150949955, - 0.009970879182219505, - 0.036471426486968994, - -0.012384614907205105, - -0.03189670294523239, - -0.021268680691719055, - -0.013433516025543213, - 0.014381318353116512, - -0.011771703138947487, - 0.008732417598366737, - -0.027043955400586128, - -0.035283517092466354, - 0.026715382933616638, - -0.012738460674881935, - 0.009307417087256908, - -0.0165170319378376, - -0.011064010672271252, - -0.011215658858418465, - 0.011158790439367294, - -0.03583955764770508, - 0.031593404710292816, - 0.022481868043541908, - -0.016378020867705345, - 0.022772526368498802, - -0.023695053532719612, - -0.01831153780221939, - -0.020447252318263054, - -0.009844505228102207, - -0.0045557692646980286, - -0.024301648139953613, - -0.0096170324832201, - 0.04094505310058594, - -0.006805219687521458, - -0.014381318353116512, - 0.011948625557124615, - 0.012567856349050999, - -0.0050770603120327, - 0.015518681146204472, - -0.008113186806440353, - -0.0038607141468673944, - 0.016226373612880707, - 0.024895602837204933, - -0.0020709477830678225, - -0.05176263675093651, - -0.03583955764770508, - -0.020548351109027863, - 0.016378020867705345, - 0.01824835129082203, - -0.008290109224617481, - -0.01306703221052885, - 0.0016396977007389069, - -0.023379120975732803, - 0.009920329786837101, - -0.017073076218366623, - 0.023985713720321655, - -0.041475821286439896, - 0.030506592243909836, - 0.001922458759509027, - -0.009256867691874504, - -0.018501097336411476, - -0.00022628776787314564, - 0.007576098665595055, - -0.007892033085227013, - -0.025552745908498764, - 0.0056331041269004345, - -0.0026380494236946106, - 0.01869065873324871, - -0.027296701446175575, - -0.004043955821543932, - -0.04291648045182228, - -0.007885714061558247, - 0.020763186737895012, - -0.009136812761425972, - -0.006144917570054531, - -0.02292417548596859, - 0.008991483598947525, - -0.018817031756043434, - 0.03616813197731972, - 0.021685713902115822, - -0.0006895260885357857, - -0.011013461276888847, - 0.017907142639160156, - -0.014785713516175747, - -0.02835824154317379, - 0.013433516025543213, - 0.017515383660793304, - -0.018374724313616753, - -0.010078296065330505, - 0.01393901091068983, - -0.011935988441109657, - -0.011594779789447784, - 0.017073076218366623, - 0.025717031210660934, - 0.0007242787978611887, - -0.013104944489896297, - -0.039630766957998276, - 0.022747252136468887, - 0.011613735929131508, - -0.001699725165963173, - -0.018020877614617348, - -0.007860438898205757, - 0.017148900777101517, - 0.014305493794381618, - 0.03546043857932091, - -0.002856043865904212, - -0.008707142435014248, - 0.02081373520195484, - -0.019764835014939308, - -0.015253296121954918, - -0.024326922371983528, - -0.02699340507388115, - -0.002928708679974079, - 0.01960054785013199, - -0.006122801918536425, - -0.009793955832719803, - -0.02101593278348446, - -0.007759340573102236, - -0.0035921703092753887, - 0.023265384137630463, - -0.016099998727440834, - 0.005228708498179913, - -0.0008004978881217539, - -0.005291895475238562, - -0.02140769176185131, - -0.0010054601589217782, - 0.00020930630853399634, - -0.005301373545080423, - -0.020396701991558075, - 0.023657141253352165, - -0.009326373226940632, - -0.01982802152633667, - 0.01534175779670477, - 0.028156042098999023, - 0.009478021413087845, - 0.03748241811990738, - -0.002856043865904212, - -0.02481978014111519, - -0.006868406198918819, - -0.03136593475937843, - 0.00022214112686924636, - 0.00907362625002861, - 0.007557142525911331, - 0.007892033085227013, - 0.02390988916158676, - 0.005569917615503073, - 0.05287472531199455, - 0.012928021140396595, - -0.0017455356428399682, - 0.0021736263297498226, - -0.002426373539492488, - -0.013319780118763447, - 0.017945054918527603, - -0.0031577609479427338, - 0.04592417553067207, - -0.015253296121954918, - 0.04711208492517471, - 0.0034436811693012714, - 0.005936400964856148, - -0.020030219107866287, - 0.012807966209948063, - -0.035612087696790695, - -0.02027032896876335, - -0.030178021639585495, - -0.01018571387976408, - -0.02825714275240898, - -0.008713461458683014, - -0.005083378870040178, - 0.005560439545661211, - 0.032831866294145584, - -0.010489010252058506, - -0.013547251932322979, - -0.0024800824467092752, - -0.004426236264407635, - 0.0015591345727443695, - 0.004963323939591646, - 0.014798351563513279, - 0.008062637411057949, - -0.0018355768406763673, - 0.0016791895031929016, - 0.0506252720952034, - 0.01189807616174221, - -0.01874120905995369, - -0.007727746851742268, - -0.010962911881506443, - 0.010173076763749123, - -0.005838461220264435, - 0.025565383955836296, - 0.012940659187734127, - 0.004584203008562326, - 0.030127471312880516, - -0.01043214276432991, - 0.0057278843596577644, - -0.017249999567866325, - 0.04215823858976364, - 0.03149230778217316, - 0.004931730683892965, - 0.0005809237482026219, - -0.01842527464032173, - -0.03149230778217316, - 0.01561977993696928, - 0.021066483110189438, - -0.027827471494674683, - -0.0318208783864975, - 0.01760384626686573, - 0.016276922076940536, - -0.016870878636837006, - 0.016643406823277473, - -0.0013474586885422468, - -0.00019568165589589626, - -0.017679668962955475, - 0.0023236949928104877, - -0.03326153755187988, - -0.012675274163484573, - -0.03308461606502533, - 0.033590108156204224, - 0.026058241724967957, - 0.019474174827337265, - -0.0033962910529226065, - 0.021710988134145737, - 0.01813461445271969, - -0.023821428418159485, - 0.01309230737388134, - 0.004088186658918858, - 0.010924999602138996, - -0.01412857137620449, - 0.014558241702616215, - 0.015228021889925003, - -0.04410439357161522, - -0.008182692341506481, - -0.01754065789282322, - -0.003870192216709256, - 0.02666483446955681, - 0.015480768866837025, - 0.011537911370396614, - 0.11767911911010742, - 0.031113184988498688, - -0.018652746453881264, - 0.02483241632580757, - 0.003614285495132208, - 0.009155768901109695, - 0.023543406277894974, - 0.007746702991425991, - 0.002051991643384099, - -0.04349780082702637, - 0.010444779880344868, - -0.017262637615203857, - 0.02129395492374897, - -0.039681319147348404, - 0.0003737894876394421, - 0.020990658551454544, - -0.006031181197613478, - 0.02308846078813076, - -0.029849449172616005, - 0.002988736145198345, - 0.04051538184285164, - -0.000812740356195718, - 0.010470055043697357, - 0.028661537915468216, - -0.029520878568291664, - -0.030405493453145027, - 0.03540989011526108, - 0.0028291894122958183, - 0.024162637069821358, - -0.011247252114117146, - -0.002529052086174488, - 0.003040865296497941, - -0.05969889834523201, - -0.03621868044137955, - 0.021913185715675354, - -0.04200659319758415, - 0.0069884611293673515, - -0.018892856314778328, - 0.011177746579051018, - 0.0018719092477113008, - 0.020775822922587395, - 0.022254394367337227, - -0.00011985748278675601, - -0.026108790189027786, - 0.010324724949896336, - 0.02575494349002838, - -0.012839560396969318, - -0.004947527311742306, - -0.027953844517469406 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 8, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 521 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000009.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000009.json deleted file mode 100644 index c1417791ec8669dad6568c55bd1e095e5c54fa34..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000009.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000009", - "content": "Er h\u00e4ngt mit dem physikalischen Schalldruck zusammen und wird als Verh\u00e4ltnis von Kraft zu Fl\u00e4che definiert, auf die die Kraft senkrecht wirkt (siehe Formel 5). [44]\n\ud835\udc5d = \ud835\udc3c \ud835\udc63\n\n## Formel 5: Schalldruck [Pa = N/m\u00b2]\n\nMit I: Schallintensit\u00e4t [W/m\u00b2], v: Schallschnelle [m/s]\nDie Schallschnelle beschreibt die Geschwindigkeit, mit der sich ein Teilchen wie z.B. ein Luftteilchen in einem Schallfeld um seine Ruhelage bewegt. Sie entspricht der Momen- tangeschwindigkeit des schwingenden Teilchens. Die Schallschnelle berechnet sich aus der zeitlichen Ableitung der Auslenkung \u03be des Teilchens (siehe Formel 6). [45\u201349]\n\ud835\udc63\u0305 = \ud835\udf15\ud835\udf09\u20d1 \ud835\udf15\ud835\udc61 = \ud835\udf09\u20d1\u0307\nFormel 6: Schallschnelle [m/s]\nMit \u03be: Auslenkung [m], t: Zeit [s]\nAus den Gr\u00f6\u00dfen des Schalldruckes p, der Schallgeschwindigkeit der Luft c und der Mess- fl\u00e4che S kann die abgestrahlte Schallleistung P definiert werden, wobei \u03c1 die Dichte der Luft bei Normalbedingungen darstellt (siehe Formel 7). \ud835\udc43 = \ud835\udc5d \u2217 \ud835\udc63 \u2217 \ud835\udc46 = \ud835\udc5d2 \ud835\udf0c \u2217 \ud835\udc50 \u2217 \ud835\udc46\nFormel 7: Schallleistung [W]\nMit \u03c1: Luftdichte [kg/m\u00b3], v: Luft-Schallgeschwindigkeit [m/s], p: Schalldruck [Pa = N/m\u00b2]\nDie abgestrahlte Leistung auf die einzelnen Messfl\u00e4chen Si ist die Summe aller Schallleis- tungen auf den einzelnen Teilfl\u00e4chen (siehe Formel 8). [21]\n14\n2 Grundlagen\n\ud835\udc41 \ud835\udc43\u0305 = \u2211 \ud835\udc56=1 \ud835\udc5d\ud835\udc52\ud835\udc53\ud835\udc53,\ud835\udc56 \ud835\udf0c \u2217 \ud835\udc50 2 \u2217 \ud835\udc46\ud835\udc56\nFormel 8: Schallleistung der einzelnen Teilfl\u00e4chen [W]\nMit \u03c1: Luftdichte [kg/m\u00b3], v: Luft-Schallgeschwindigkeit [m/s], peff: effektiver Schalldruck [Pa = N/m\u00b2],\nSi: Teilfl\u00e4chen [m\u00b2]\nUnter Einbeziehung der Bezugsgr\u00f6\u00dfen (siehe Formel 9), ergibt sich die Gleichung wie folgt: [46, 49]\n\ud835\udc430 = \ud835\udc5d0 2 \u2217 1\ud835\udc5a\u00b2 \ud835\udf0c \u2217 \ud835\udc50\nFormel 9: Bezugsgr\u00f6\u00dfe\n\ud835\udc43\u0305 \ud835\udc430 = \ud835\udc46 \u2044 1\ud835\udc5a2 \ud835\udc41 \ud835\udc41 \u2211 \ud835\udc56=1 \ud835\udc5d\ud835\udc52\ud835\udc53\ud835\udc53,\ud835\udc56 \ud835\udc5d0 2 2\nFormel 10: Schallleistung der einzelnen Teilfl\u00e4chen [W]\nMit \u03c1: Luftdichte [kg/m\u00b3], v: Luft-Schallgeschwindigkeit [m/s], peff: effektiver Schalldruck [Pa = N/m\u00b2],\nSi: Teilfl\u00e4chen [m\u00b2], N: Anzahl der Teilfl\u00e4chen [-]\nDurch Bildung des logarithmischen Verh\u00e4ltnisses des Schallleistungspegels zur Bezugs- gr\u00f6\u00dfe, ergibt sich der zeitbezogene Schallleistungspegel LWA (siehe Formel 11) und ent- sprechend der maximalen Schalleistungspegel LWAmax (siehe Formel 12). [50, 49, 21] Der zeitbezogene Schallleistungspegel LWA bezieht sich f\u00fcr 1 Ereignis pro Einwirkzeit T, wobei die durchschnittliche Einwirkzeit 5 Sekunden betrug. LWA = 10 \u2217 lg( 1 N N \u221110\ud835\udc3f\ud835\udc34\ud835\udc52\ud835\udc5e,\ud835\udc56\u22170,1 i=1 ) + 10 \u2217 lg( \ud835\udc46 \ud835\udc460 )\nLWA,5s = L\ud835\udc34\ud835\udc52\ud835\udc5e + 10 \u2217 lg( \ud835\udc46 \ud835\udc460 ) = L\ud835\udc34\ud835\udc52\ud835\udc5e + 10 \u2217 lg( 2\ud835\udf0b\ud835\udc5f\u00b2 \ud835\udc460 )\nFormel 11: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)]\n\ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc5a\ud835\udc4e\ud835\udc65 = \ud835\udc3f\u0305\ud835\udc34\ud835\udc39\ud835\udc5a\ud835\udc4e\ud835\udc65 + 10 \u2217 \ud835\udc59\ud835\udc54( \ud835\udc46 \ud835\udc460 ) = \ud835\udc3f\u0305\ud835\udc34\ud835\udc39\ud835\udc5a\ud835\udc4e\ud835\udc65 + 10 \u2217 \ud835\udc59\ud835\udc54( 2\ud835\udf0b\ud835\udc5f\u00b2 \ud835\udc460 )\nFormel 12: maximale Schallleistungspegel [dB(A)]\nMit LAeq: \u00e4quivalente Dauerschallpegel [dB(A)], S: H\u00fcllfl\u00e4che, hier Fl\u00e4cheninhalt einer Halbkugel mit\nRadius r [m\u00b2], S0: Bezugsfl\u00e4che = 1 m\u00b2, LAFmax: maximale Schalldruckpegel [dB(A)]\n15\n2 Grundlagen\nDabei stellt der erste Term den \u00e4quivalenten Dauerschallpegel nach DIN EN ISO 3744 ff [29] dar. Er gibt an welcher konstante Schallpegel \u00fcber die gesamte Messzeit notwendig w\u00e4re, um die gleiche Energie abzustrahlen wie das gemessene zeitlich ver\u00e4nderliche Ge- r\u00e4usch. Eine weitere wichtige akustische Gr\u00f6\u00dfe ist der Maximale Schalldruckpegel LAFmax, welcher zur Beurteilung von Ger\u00e4uschspitzen gem\u00e4\u00df der technischen Anleitung zum Schutz gegen L\u00e4rm (TA L\u00e4rm) [6] ben\u00f6tigt wird. Dieser gibt den h\u00f6chsten vorkommen- den Schalldruckpegel eines Einzelereignisses innerhalb der gemessenen Zeit an, der von einer sehr kurzen Einwirkzeit gepr\u00e4gt ist. [51]\nUm aussagekr\u00e4ftige Emissionsans\u00e4tze darbieten zu k\u00f6nnen, wird der st\u00fcndliche Schal- leistungspegel (siehe Formel 13) je Vorgang gebildet. Um die Impulshaltigkeit des Ge- r\u00e4usches einzubeziehen, wird der impulsbehaftete Schalleistungspegel bezogen auf 1 Stunde gebildet (siehe Formel 14). LWA,1h = 10 \u2217 lg(( \ud835\udc47 3600 s ) \u2217 10(0,1\u2217\ud835\udc3f\ud835\udc4a\ud835\udc34,5\ud835\udc60))\nFormel 13: st\u00fcndlicher Schallleistungspegel [dB(A)]\n\ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc47,1\u210e = 10 \u2217 \ud835\udc59\ud835\udc54(( \ud835\udc47 3600 \ud835\udc60 ) \u2217 10(0,1\u2217\ud835\udc3f\ud835\udc4a\ud835\udc34,5\ud835\udc60)) + \ud835\udc3e\ud835\udc3c\nFormel 14: impulsbehafteter st\u00fcndlicher Schallleistungspegel [dB(A)]\nMit: T: Zeit [s], LWA: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)]\nUm den \u00e4quivalenten Dauerschallpegel zu erfassen, m\u00fcssen verschiedene Einfl\u00fcsse be- r\u00fccksichtigt werden. Dazu wird der Schalldruckpegel in Anlehnung nach DIN EN ISO 3744 bis 3746 [29, 52, 30] gemessen. Das Verfahren zur Messung wird in Kapitel 5, aufgezeigt. Dabei wird Summe des direkten Schalls und dessen Beitr\u00e4ge gemessen. Die Beitr\u00e4ge des Schalls beinhalten alle Reflektionen an der Decke, des Bodens, der W\u00e4nde und weiteren m\u00f6glichen Hindernissen. Es k\u00f6nnen bei der Messung externe unerw\u00fcnschte Ger\u00e4usche auftreten, sprich Ger\u00e4usche die nicht von der zu betrachtenden Quelle ausgehen und zu einem erh\u00f6hten Schalldruckpegel f\u00fchren. Ist die Differenz zwischen Fremdger\u00e4usche und den gemessenen Schalldruckpegel gr\u00f6\u00dfer als 10 dB wird nach DIN EN ISO 3746 [30] keine Fremdger\u00e4uschkorrektur vorgenommen. Liegt die Differenz des Fremdger\u00e4usches und dem gemessenen Schalldruckpegel zwischen 3 dB und 10 dB, so ist es ratsam eine Fremdger\u00e4uschkorrektur nach Formel 15 durchzuf\u00fchren. [25] Um vorherrschende Fremdger\u00e4usche zu pr\u00fcfen, ist der 95-Perzentilpegel einzusetzen. Der 95-Perzentilpegel beinhaltet alle Pegelwerte, die 95 % der Messzeit \u00fcberschritten wurde.", - "embedding": [ - 0.015212252736091614, - 0.026750413700938225, - 0.01972937397658825, - -0.032035067677497864, - 0.006118244957178831, - -8.930631884140894e-05, - -0.027077559381723404, - -0.020861798897385597, - -0.011959674768149853, - -0.030927807092666626, - 0.014344059862196445, - 0.03326815366744995, - -0.013928837142884731, - 0.0059546721167862415, - 0.0007348971557803452, - 0.0040893154218792915, - 0.03379661962389946, - -0.010506395250558853, - 0.015979785472154617, - -0.0033217822201550007, - 0.0003882883465848863, - 0.008455445989966393, - -0.013727516867220402, - 0.005850866436958313, - -0.03475289046764374, - 0.014268564991652966, - 0.02370544709265232, - -0.01236860640347004, - -0.003966636024415493, - -0.01737644523382187, - 0.025529909878969193, - -0.01455796230584383, - -0.025945132598280907, - 0.02861262485384941, - -0.018559200689196587, - 0.0018732210155576468, - -0.01420565228909254, - -0.002050949027761817, - 0.02969472110271454, - -0.0011245617642998695, - 0.005482828244566917, - 0.024397484958171844, - 0.010871287435293198, - -0.0019990461878478527, - -0.0012354450300335884, - -0.011563325300812721, - 0.004800227005034685, - -0.0177035890519619, - -0.009116027504205704, - 0.008807756006717682, - 0.021314769983291626, - 0.0035923062823712826, - -0.01790490932762623, - 0.007744534406810999, - -0.0018480559810996056, - -0.030097361654043198, - 0.005007838364690542, - 0.012607674114406109, - 0.005523721221834421, - 0.003444461850449443, - -0.027782179415225983, - -0.010336531326174736, - -0.015350660309195518, - 0.013173886574804783, - -0.013010313734412193, - -0.015338078141212463, - -0.01910024881362915, - 0.0032557242084294558, - -0.012972566299140453, - 0.010380569845438004, - 0.023793524131178856, - 0.03518069535493851, - 0.002197220688685775, - 0.02142801322042942, - 0.026322608813643456, - 0.01172689814120531, - 0.00846173707395792, - 0.0014226099010556936, - 0.00827299989759922, - -0.001608988270163536, - 0.019112830981612206, - -0.01862211339175701, - -0.002233395352959633, - 0.031179456040263176, - 0.012997731566429138, - -0.019741956144571304, - -0.01902475394308567, - 0.027404705062508583, - -0.02446039766073227, - -0.004834828898310661, - 0.0029065595008432865, - 0.02987087517976761, - -0.00714057357981801, - -0.0146082928404212, - 0.025794142857193947, - -0.011789810843765736, - 0.014998350292444229, - 0.0026832199655473232, - -0.0008619018481113017, - -0.025504745543003082, - -0.003482209285721183, - -0.0014752991264685988, - 0.0004270188801456243, - -0.003812500275671482, - -0.019817451015114784, - -0.009279600344598293, - 0.00965078454464674, - 0.020685644820332527, - -0.0007561301463283598, - -0.02486303821206093, - -0.018005570396780968, - -0.012532179243862629, - 0.015099010430276394, - -0.011166976764798164, - 0.03757137060165405, - -0.012947401963174343, - 0.03329331800341606, - -0.025290843099355698, - -0.01740160956978798, - -0.01940222829580307, - 0.03432508558034897, - 0.016810230910778046, - 0.015086428262293339, - 0.0006837807013653219, - 0.020647896453738213, - 0.0006322710542008281, - -0.004149082116782665, - -0.01431889459490776, - -0.022812088951468468, - -0.007845194078981876, - -0.014180487021803856, - -0.008430280722677708, - 0.030097361654043198, - 0.009034241549670696, - -0.000791518425103277, - 0.008807756006717682, - -0.016357261687517166, - -0.008983911015093327, - -0.021516090258955956, - -0.023302806541323662, - 0.027908004820346832, - 0.0011536587262526155, - -0.02934241108596325, - -0.04708374664187431, - -0.014658622443675995, - 0.024523310363292694, - 0.01654599979519844, - 0.014381807297468185, - -0.011940800584852695, - -0.0010246880119666457, - -0.009694823063910007, - -0.017540017142891884, - 0.013878507539629936, - -0.0026722103357315063, - -0.013991749845445156, - 0.0062975455075502396, - -0.004894596058875322, - 0.03276485204696655, - 0.004979528021067381, - -0.004086169879883528, - -0.016281766816973686, - 0.031431108713150024, - 0.01205404382199049, - -0.0077130780555307865, - 0.005863449070602655, - 0.026045793667435646, - -0.005942089948803186, - 0.0009397561079822481, - 0.005183993838727474, - 0.0005559896235354245, - -0.0034413160756230354, - 0.02172999270260334, - -0.017728755250573158, - 0.023667698726058006, - 0.007436262909322977, - -0.0033406561706215143, - 0.012412644922733307, - -0.001265328493900597, - -0.016684407368302345, - -0.020383663475513458, - -0.03369595855474472, - 0.0021956476848572493, - 0.0015445029130205512, - 0.02117636241018772, - -0.016231436282396317, - 0.01228052843362093, - 0.012739790603518486, - 0.013249381445348263, - -0.013173886574804783, - -0.013563944958150387, - 0.01071400661021471, - 0.023944513872265816, - 0.0009153775172308087, - -0.030776817351579666, - -0.6309373378753662, - -0.008279290981590748, - -0.011557034216821194, - -0.006064769346266985, - -0.005410478916019201, - 0.022195545956492424, - 0.011682859621942043, - -0.009808065369725227, - -0.007725660223513842, - 0.041824258863925934, - 0.00047538289800286293, - -0.0048065185546875, - -0.008606435731053352, - -0.006225196179002523, - -0.017716173082590103, - -0.01745194010436535, - -0.008744843304157257, - -0.009757735766470432, - 0.01782941445708275, - -0.0063950601033866405, - -0.021843235939741135, - 0.016885727643966675, - 5.148507170815719e-06, - -0.002033648081123829, - 0.0007388291996903718, - 0.00523746944963932, - 0.025265676900744438, - -0.006744224578142166, - 0.01212953869253397, - -0.0032195495441555977, - -0.02210746891796589, - -0.00033225686638616025, - -0.025542492046952248, - 0.01735127903521061, - 0.0387037955224514, - -0.025794142857193947, - 0.002267997246235609, - 0.0037904807832092047, - 0.01937706395983696, - 0.0036143255420029163, - -0.00988985225558281, - -0.017288366332650185, - 0.0036111800000071526, - -0.01917574368417263, - 0.00741738872602582, - -0.0056904396042227745, - 0.030147690325975418, - -0.022573020309209824, - 0.020371081307530403, - -0.023290224373340607, - -0.0020729682873934507, - -0.007549505215138197, - 0.022875001654028893, - -0.000434096553362906, - 0.0170744638890028, - -0.02003135345876217, - 0.029946371912956238, - -0.01629434898495674, - -0.03379661962389946, - 0.011588490568101406, - 0.013123556971549988, - -0.0021767739672213793, - 0.0027445596642792225, - -0.013362624682486057, - -0.009260726161301136, - 0.020899547263979912, - -0.01071400661021471, - -0.025404084473848343, - 0.0202326737344265, - -0.0048505570739507675, - -0.020396247506141663, - 0.031154291704297066, - 0.005674711428582668, - -0.017212871462106705, - 0.020811470225453377, - 0.015551980584859848, - 0.03367079421877861, - -0.004240305628627539, - -0.002079259604215622, - 0.006769389845430851, - -0.001726949354633689, - -0.009990512393414974, - -0.015979785472154617, - -0.0010042415233328938, - 0.025794142857193947, - -0.03422442451119423, - -0.00592636177316308, - 0.031582098454236984, - 0.01431889459490776, - 0.008052805438637733, - 0.02178032323718071, - 0.040893152356147766, - 0.001410027383826673, - -0.010909034870564938, - -0.015677805989980698, - 0.015451320447027683, - -0.019188325852155685, - 0.001310940133407712, - 0.0028782489243894815, - -0.027429869398474693, - -0.017036717385053635, - -0.005835138261318207, - -0.0008760571945458651, - -0.01967904344201088, - 0.01955321803689003, - -0.005124226678162813, - -0.00857497937977314, - 0.008178630843758583, - 0.0382004976272583, - -0.036136966198682785, - 0.0014752991264685988, - -0.01967904344201088, - -0.01727578416466713, - -0.002739841351285577, - -0.011808684095740318, - -0.021969059482216835, - 0.051361799240112305, - 0.0025699774269014597, - 0.020924711599946022, - -0.023302806541323662, - 0.018584365025162697, - 0.008524649776518345, - 0.04033952206373215, - -0.02005651965737343, - -0.027228549122810364, - 0.031556930392980576, - 0.005073896609246731, - 0.01626918464899063, - -0.01639500819146633, - -0.017464522272348404, - 0.030021866783499718, - 0.003954053390771151, - 0.022862417623400688, - -0.0006161497440189123, - 0.015338078141212463, - 0.01942739449441433, - 0.004992110189050436, - -0.004573741927742958, - 0.02383127249777317, - -0.027480199933052063, - -0.036539606750011444, - 0.004130208399146795, - 0.007662747986614704, - -0.021767741069197655, - -0.0247875414788723, - -0.04396328702569008, - -0.02398226223886013, - -0.0033312193118035793, - 0.018081065267324448, - 0.010172958485782146, - 0.007543214131146669, - -0.0354071781039238, - 0.010638510808348656, - 0.025102104991674423, - 0.002865666290745139, - 0.008279290981590748, - -0.009210396558046341, - -0.008530940860509872, - -0.031078796833753586, - -0.005957818124443293, - 0.012337150052189827, - 0.004677547607570887, - -0.05178960785269737, - -0.018332716077566147, - -0.004894596058875322, - -0.030650991946458817, - 0.01642017439007759, - 0.004580033011734486, - -0.01492285542190075, - -0.03807467222213745, - -0.0008933581411838531, - 0.020245255902409554, - -0.009518668055534363, - 0.011733189225196838, - -0.0017411046428605914, - -0.011915636248886585, - -0.010028259828686714, - -0.012462974525988102, - -0.013060644268989563, - -0.03372112289071083, - 0.01433147769421339, - -0.008468028157949448, - -0.017615512013435364, - 0.017791667953133583, - 0.0326390266418457, - 0.006612108554691076, - 0.012022587470710278, - 0.008971328847110271, - -0.017867162823677063, - 0.031380776315927505, - -0.00562752690166235, - 0.036287955939769745, - -0.026221947744488716, - 0.013400372117757797, - -0.026674918830394745, - 0.0030638407915830612, - 0.01457054540514946, - -0.011915636248886585, - 0.0015893281670287251, - 0.02263593301177025, - 0.008166048675775528, - 0.0024095503613352776, - 0.041547443717718124, - -0.02145317755639553, - 0.022799506783485413, - -0.01004084199666977, - 0.002313608769327402, - -0.01679764874279499, - 0.04723473638296127, - 0.026599423959851265, - 0.014872525818645954, - -0.0054073333740234375, - -0.03417409211397171, - -0.02203197218477726, - 0.0072726900689303875, - 0.036011140793561935, - -0.00028841468156315386, - 0.00732302013784647, - 0.008983911015093327, - -0.014016915112733841, - -0.002584132831543684, - -0.006354167126119137, - 0.03905610740184784, - 0.013840760104358196, - -0.008090552873909473, - -0.0009531250689178705, - 0.00019149004947394133, - 0.018596947193145752, - -0.00620317691937089, - -0.02245977893471718, - -0.014016915112733841, - -0.024724630638957024, - 0.008939872495830059, - -0.0005618876311928034, - -0.013979167677462101, - 0.027555694803595543, - 0.0023843853268772364, - -0.015753300860524178, - 0.04715924337506294, - 0.006162283476442099, - 0.01200371328741312, - 0.01409240998327732, - -0.0065491958521306515, - -0.002043084939941764, - 0.007820028811693192, - -0.019540635868906975, - 0.011519286781549454, - 0.02919142134487629, - 0.0026155889499932528, - -0.010286200791597366, - -0.013828177005052567, - 0.009298473596572876, - -0.015199670568108559, - 0.0032038213685154915, - 0.01902475394308567, - -0.003570286789909005, - 0.012192451395094395, - 0.0007360767922364175, - -0.014054662548005581, - 0.0170744638890028, - -0.0043724216520786285, - 0.014180487021803856, - 0.020333334803581238, - -0.01200371328741312, - 0.012362315319478512, - -0.0008642610628157854, - -0.032513201236724854, - -0.015526816248893738, - -0.018370462581515312, - -0.008612727746367455, - 0.006618399638682604, - 0.008210087195038795, - 0.0093613862991333, - -0.0010820957832038403, - 0.01765326038002968, - -0.013740099966526031, - -0.002117007039487362, - 0.012859323993325233, - 0.026121288537979126, - -0.00471844058483839, - -0.023944513872265816, - -0.025794142857193947, - -0.013010313734412193, - 0.030248351395130157, - -0.007278981152921915, - -0.010103754699230194, - -0.013702352531254292, - 0.002623453037813306, - -0.02861262485384941, - 0.008103135973215103, - -0.026423268020153046, - 0.006439099088311195, - -0.0011237752623856068, - -0.0021626187954097986, - 0.0032431415747851133, - 0.001799298799596727, - 0.005822556093335152, - 0.023227311670780182, - -0.002818481996655464, - 0.007675330154597759, - -0.008845503441989422, - -0.008468028157949448, - -0.013714934699237347, - -0.02461138740181923, - 0.020723391324281693, - 0.00622205063700676, - -0.014394390396773815, - -0.030223187059164047, - 0.007700495421886444, - -0.02345379628241062, - -0.010172958485782146, - -0.009109736420214176, - 0.002614016178995371, - 0.013412954285740852, - 0.0013329595094546676, - -0.007052496075630188, - 0.02370544709265232, - -0.013526196591556072, - 0.04824133962392807, - -0.0003702010144479573, - -0.010021967813372612, - -0.019741956144571304, - 0.007467718794941902, - -0.02410808764398098, - 0.005850866436958313, - 0.004951217211782932, - 0.004356693476438522, - 0.019968440756201744, - -0.017489686608314514, - -0.01740160956978798, - -0.00965078454464674, - -0.0295940600335598, - 0.016936056315898895, - 0.017489686608314514, - 0.010292491875588894, - -0.005479682702571154, - 0.02115119807422161, - -0.003488500602543354, - -0.006857467349618673, - -0.02000618912279606, - 0.026901403442025185, - -0.020194927230477333, - 0.017011551186442375, - 0.008763717487454414, - -0.012142120860517025, - 0.008543523028492928, - 0.004872576333582401, - 0.037042904645204544, - -0.005492264870554209, - -0.006253506988286972, - 0.010575599037110806, - 0.012085500173270702, - 0.0177035890519619, - -0.02893977053463459, - 0.003107879776507616, - 0.027807343751192093, - 0.00011638820433290675, - 0.00037393643287941813, - -0.013979167677462101, - -0.0006574360886588693, - 0.0012975712306797504, - 0.006322710774838924, - 0.009418007917702198, - -0.0025448123924434185, - 0.0015940465964376926, - 0.027983499690890312, - 0.004617780912667513, - -0.00810942705720663, - 0.004466790705919266, - -0.003497937461361289, - 0.01636984385550022, - 0.020257839933037758, - 0.006693894509226084, - 0.01636984385550022, - 0.015715554356575012, - -0.020144596695899963, - -0.0008831348386593163, - -0.003903723321855068, - -0.009845812804996967, - -0.026574257761240005, - 0.006624690722674131, - -0.013878507539629936, - -0.012689460068941116, - -0.019767120480537415, - -0.022774340584874153, - -0.012821576558053493, - 0.023969680070877075, - -0.01436922512948513, - -0.024850454181432724, - -0.004834828898310661, - -0.007241233717650175, - 0.004359839484095573, - -0.016155941411852837, - -0.017288366332650185, - 0.020761139690876007, - -0.018257221207022667, - -0.022900165989995003, - 0.006181157659739256, - 0.008719678968191147, - -0.009587871842086315, - 0.027429869398474693, - -0.002749278210103512, - -0.027354374527931213, - 0.003812500275671482, - -0.0241584163159132, - 0.005501701962202787, - 0.001454852637834847, - -0.02228362299501896, - -0.010097463615238667, - 0.031582098454236984, - -0.010267327539622784, - 0.012739790603518486, - 0.0024064048193395138, - -0.009071988984942436, - -0.01204146072268486, - 0.02818481996655464, - 0.015237418003380299, - -0.0030544039327651262, - -0.008342203684151173, - 0.01687314361333847, - 0.005696730688214302, - 0.0065869432874023914, - 0.02205713838338852, - -0.007228651084005833, - 0.014910273253917694, - -0.036690596491098404, - -0.005596071016043425, - 0.010720297694206238, - 0.02851196564733982, - 0.005706167779862881, - 0.012267946265637875, - 0.010934200137853622, - -0.009870978072285652, - -0.0036394905764609575, - 0.006932962220162153, - -0.014029497280716896, - 0.003941470757126808, - -0.0024724630638957024, - -0.0020556673407554626, - 0.001955007202923298, - 0.02210746891796589, - 0.008631600998342037, - 0.015451320447027683, - -0.0008217950817197561, - -0.006939253769814968, - -0.03226155415177345, - 0.03351980447769165, - 0.024523310363292694, - -0.005482828244566917, - 0.018055900931358337, - -0.011676568537950516, - -0.0014430565061047673, - -0.025919968262314796, - 0.004649236798286438, - 0.019465140998363495, - 0.0002597108541522175, - 0.011242471635341644, - -0.0037370051722973585, - -0.036262791603803635, - -0.01864727772772312, - -0.019188325852155685, - 0.020421411842107773, - -0.008228960447013378, - 0.008524649776518345, - -0.011211015284061432, - 0.02223329246044159, - -0.0087888827547431, - 0.00022274973161984235, - 0.018232055008411407, - -0.0225101076066494, - -0.04373680055141449, - 0.015489068813621998, - -0.022812088951468468, - 0.018634695559740067, - -0.02823515050113201, - -0.010833540000021458, - -0.010216997005045414, - 0.0041459365747869015, - -0.008637892082333565, - -0.02575639635324478, - -0.00075023208046332, - -0.01047493889927864, - 0.01492285542190075, - 0.004583179019391537, - 0.032186057418584824, - 0.008392533287405968, - -0.0011426490964367986, - 0.017867162823677063, - 0.0013754254905506968, - 0.006099371239542961, - -0.00928589142858982, - -0.011198433116078377, - -0.03782302141189575, - 0.04303218051791191, - 0.036766089498996735, - 0.014822195284068584, - 0.013387789018452168, - 0.006303837057203054, - 0.0024001135025173426, - 0.04791419208049774, - -0.006061623804271221, - -0.0017159396084025502, - -0.013790429569780827, - -0.011594781652092934, - 0.022220710292458534, - -0.015816213563084602, - 0.002989918692037463, - 0.014897690154612064, - -0.012897071428596973, - -0.010531559586524963, - 0.015212252736091614, - -0.016017533838748932, - -0.015136757865548134, - -0.010984529741108418, - 0.01475928258150816, - -0.03523102402687073, - 0.04217657074332237, - 0.005677856970578432, - 0.023541873320937157, - -0.01727578416466713, - -0.010380569845438004, - -0.0001862801145762205, - -0.007052496075630188, - 0.019666461274027824, - -0.002442579483613372, - 0.019616130739450455, - -0.01884859800338745, - 2.4182008928619325e-05, - -0.020987624302506447, - -0.030852312222123146, - 0.014457302168011665, - -0.02256043814122677, - 0.01058818120509386, - -0.014016915112733841, - -0.020761139690876007, - -0.03349464014172554, - -0.015086428262293339, - -0.03417409211397171, - 0.006675020791590214, - 0.010204414837062359, - 0.0031865204218775034, - 0.027933169156312943, - -0.00014283113705459982, - 0.009606745094060898, - 0.003812500275671482, - -0.0012275810586288571, - 0.020408829674124718, - -0.007851485162973404, - 0.032035067677497864, - 0.027958335354924202, - -0.017565181478857994, - -0.0283358097076416, - -0.05234323814511299, - 0.012456683441996574, - -0.018735354766249657, - 0.01647050492465496, - -0.006662438623607159, - -0.02941790595650673, - 0.008166048675775528, - -0.003648927668109536, - 0.00029883458046242595, - -0.013840760104358196, - 0.007052496075630188, - 0.046957921236753464, - 0.013551361858844757, - -0.0012315131025388837, - -0.015187088400125504, - 0.027127889916300774, - -0.030575497075915337, - -0.005228032357990742, - 0.01867244392633438, - -0.0007643874268978834, - -0.026196783408522606, - -0.02167966216802597, - -0.02135251834988594, - 0.0328906774520874, - 0.02906559593975544, - 0.009757735766470432, - 0.026121288537979126, - -0.018005570396780968, - 0.0024347153957933187, - -0.03550783917307854, - -0.0177035890519619, - 0.01086499635130167, - -0.005070751067250967, - 0.0427553653717041, - -0.020534655079245567, - -0.0020226382184773684, - 0.004202557727694511, - -0.01090274378657341, - 0.008965037763118744, - 0.004167955834418535, - 0.006599525921046734, - 0.016105610877275467, - -0.009719988331198692, - 0.005684148520231247, - -0.002919142134487629, - -0.001491027302108705, - 0.014016915112733841, - 0.006099371239542961, - -0.005489119328558445, - -0.00991501659154892, - 0.008606435731053352, - -0.01730095036327839, - -0.007109117694199085, - -0.0001980762172024697, - -0.01902475394308567, - -0.013928837142884731, - -0.02463655173778534, - -0.021566420793533325, - -0.004419606178998947, - -0.0016703280853107572, - 0.019188325852155685, - -0.031028466299176216, - -0.015627475455403328, - -0.02909076027572155, - -0.004322091583162546, - 0.021088285371661186, - 0.0005233537522144616, - -0.0196035485714674, - -0.0061088078655302525, - 0.02383127249777317, - -0.03764686733484268, - 0.009153774939477444, - 0.031657591462135315, - -0.015828795731067657, - -0.014180487021803856, - 0.011940800584852695, - 0.013048062101006508, - -0.0283358097076416, - 0.02893977053463459, - 0.006599525921046734, - -0.013060644268989563, - -0.0028845402412116528, - -0.008449154905974865, - 0.018836015835404396, - -0.022120051085948944, - -0.002420560223981738, - 0.015287748537957668, - 0.022900165989995003, - -0.010544142685830593, - -0.018093647435307503, - 0.0002217667206423357, - 0.003928888589143753, - 0.02203197218477726, - -0.010009385645389557, - 0.030323846265673637, - -0.018836015835404396, - 0.015476485714316368, - 0.009814356453716755, - -0.007675330154597759, - -0.013677187263965607, - -0.03243770822882652, - -0.010323948226869106, - 0.015048680827021599, - -0.001734813442453742, - -0.016457920894026756, - 0.015111593529582024, - -0.025945132598280907, - -0.008543523028492928, - -0.018534036353230476, - 0.0298457108438015, - 0.008008766919374466, - 0.016558581963181496, - 0.0002740627678576857, - -0.008159756660461426, - -0.01704929955303669, - 0.012488139793276787, - 0.004369276110082865, - -0.011204724200069904, - 0.030122525990009308, - 0.0021752011962234974, - -0.029971536248922348, - 0.011148102581501007, - -0.01614335924386978, - 0.022963078692555428, - 0.015539398416876793, - -0.025328589603304863, - -0.006322710774838924, - 0.021012790501117706, - -0.02327764220535755, - -0.015715554356575012, - -0.031758252531290054, - 0.005910633597522974, - -0.00296318088658154, - 0.011909344233572483, - -0.01857178285717964, - 0.022799506783485413, - 0.008002475835382938, - 0.018810851499438286, - -0.02941790595650673, - -0.017011551186442375, - 0.007744534406810999, - -0.006750516127794981, - -0.004460499156266451, - -0.011242471635341644, - -0.02924175001680851, - -0.01077691838145256, - 0.036690596491098404, - -0.005533158313483, - 0.016332097351551056, - 0.02863778918981552, - -0.0049858191050589085, - -0.026725249364972115, - 0.006951835937798023, - 0.03399793803691864, - 0.02964439056813717, - 0.004105043597519398, - 0.0044510625302791595, - -0.010349113494157791, - 0.01413015741854906, - 0.008285582065582275, - 0.018911510705947876, - -0.040515679866075516, - 0.0034004230983555317, - 0.02944307029247284, - -0.020584983751177788, - -0.01090274378657341, - 0.020811470225453377, - -0.019943276420235634, - 0.007845194078981876, - -0.0235292911529541, - 0.05340016633272171, - -0.007071369793266058, - -0.021893564611673355, - 0.017389027401804924, - 0.025416668504476547, - -0.01892409287393093, - -0.01444472000002861, - 0.009506084956228733, - -0.02815965563058853, - 0.005325546953827143, - 0.006200031377375126, - -0.019112830981612206, - 0.0018087356584146619, - -0.0035293938126415014, - 0.0175777655094862, - -0.0141679048538208, - -0.004963799845427275, - -0.022044556215405464, - -0.031808581203222275, - -0.03248803690075874, - 0.04293151944875717, - 0.03508003428578377, - -0.009984220378100872, - -0.00424974225461483, - -0.011557034216821194, - -0.0008736979798413813, - -0.0027099577710032463, - -0.011538160964846611, - 0.013551361858844757, - -0.022535273805260658, - -0.012985149398446083, - 0.00854981504380703, - -0.020484324544668198, - -0.0038471021689474583, - -0.0019188325386494398, - 0.006049041170626879, - -0.023302806541323662, - 0.0032368504907935858, - 0.2150099128484726, - -0.01455796230584383, - -0.008719678968191147, - 0.00620317691937089, - -0.025404084473848343, - -0.021541254594922066, - 0.0016892018029466271, - -0.014507632702589035, - 0.0022003662306815386, - 0.01955321803689003, - -0.00562752690166235, - -0.008159756660461426, - -0.0072726900689303875, - 0.016785066574811935, - 0.01436922512948513, - 0.0007116981432773173, - -0.024171000346541405, - -0.0007234942750073969, - -0.015086428262293339, - -0.003155064070597291, - 0.01742677390575409, - -0.014016915112733841, - -0.009109736420214176, - -0.00363319949246943, - 0.04383746162056923, - 0.002647045301273465, - 0.0064925746992230415, - -0.014432137832045555, - 0.036564771085977554, - 0.013513614423573017, - -0.013966584578156471, - 0.008688222616910934, - 0.015589728020131588, - -0.0007659601978957653, - -0.011355713941156864, - 0.004652382805943489, - 0.006435953080654144, - -0.011651403270661831, - 0.024171000346541405, - 0.03304166719317436, - 0.01185272354632616, - -0.014985768124461174, - -0.014193070121109486, - -0.016533415764570236, - 0.004611489363014698, - 0.028084158897399902, - -0.002584132831543684, - -1.549467197037302e-05, - 0.007637582719326019, - 0.01699896901845932, - -0.008581271395087242, - 0.004054713528603315, - 0.008008766919374466, - 0.05757756158709526, - 0.0025448123924434185, - -0.0295940600335598, - 0.005102207418531179, - 0.015061262995004654, - 0.0008854940533638, - 0.00983952172100544, - -0.0240325927734375, - 0.02901526540517807, - -0.013966584578156471, - 0.020522071048617363, - -0.036640264093875885, - 0.021818069741129875, - -0.03447607532143593, - 0.009474629536271095, - -0.01455796230584383, - -0.022422030568122864, - -0.008656766265630722, - -0.007945854216814041, - -0.036539606750011444, - 0.004970090929418802, - -0.025089522823691368, - -0.03460190072655678, - 0.013576527126133442, - 0.013853342272341251, - 0.010292491875588894, - 0.01972937397658825, - 0.0014493477065116167, - 0.0005976691609248519, - -0.007436262909322977, - -0.007039913907647133, - -0.011613655835390091, - -0.01480961311608553, - 0.0005382954841479659, - 0.0022554146125912666, - 0.005051877349615097, - -0.01626918464899063, - -0.008354785852134228, - 0.006410788279026747, - 0.000840668857563287, - -0.007524340413510799, - 0.017011551186442375, - -0.01892409287393093, - 0.002821627538651228, - -3.966439180658199e-05, - -0.006907797418534756, - 0.015765883028507233, - -0.013350041583180428, - 0.05420544743537903, - 0.04909694939851761, - -0.00807167962193489, - -0.006876341067254543, - -0.010103754699230194, - 0.0074991751462221146, - 0.015262583270668983, - 0.003815645817667246, - -0.018584365025162697, - -0.012066625989973545, - -0.01634467951953411, - 0.004589470103383064, - -0.0323873795568943, - 0.0027335500344634056, - 0.015413573011755943, - -0.00972627941519022, - 0.02223329246044159, - -0.0011237752623856068, - -0.007820028811693192, - -0.008159756660461426, - 0.007146865129470825, - 0.022963078692555428, - 0.006914088502526283, - 0.01475928258150816, - -0.017779085785150528, - -0.0566716194152832, - 0.024623969569802284, - 0.0022475505247712135, - 0.00417424738407135, - 0.03246287256479263, - -0.007436262909322977, - 0.007587252650409937, - 0.005986128468066454, - 0.007077661342918873, - 0.007209777366369963, - -0.009644493460655212, - -0.026045793667435646, - 0.0044699362479150295, - 0.011481539346277714, - 0.0013604838168248534, - -0.026448434218764305, - 0.0023749484680593014, - 0.02230878733098507, - 0.015614893287420273, - -0.01078950148075819, - 0.00614655576646328, - -0.00205881311558187, - -0.00419312110170722, - -0.013450701721012592, - -0.026599423959851265, - -0.002956889569759369, - -0.0160678643733263, - -0.03253836929798126, - 0.01742677390575409, - 0.008990202099084854, - -0.020962459966540337, - -0.023139234632253647, - 0.01231827586889267, - -0.0006810282939113677, - -0.010600763373076916, - -0.012179868295788765, - -0.016659241169691086, - -0.014859942719340324, - 0.0026171617209911346, - -0.009713697247207165, - -0.15572112798690796, - 0.009084571152925491, - 0.017061881721019745, - -0.013287128880620003, - 0.01433147769421339, - 0.013916254974901676, - 0.015891708433628082, - 0.031103961169719696, - -0.011921927332878113, - 0.003976072650402784, - 0.004252887796610594, - -0.002304171910509467, - -0.005080188158899546, - -0.010525268502533436, - -0.013677187263965607, - -0.015375825576484203, - -0.008920998312532902, - 0.031934406608343124, - 0.02873845025897026, - 0.011330549605190754, - 0.014016915112733841, - -0.01619368977844715, - 0.01692347414791584, - 0.00466181943193078, - 0.002041512168943882, - 0.012104373425245285, - -0.01689830981194973, - 0.00826041679829359, - -0.004315800499171019, - -0.02137768268585205, - -0.016093028709292412, - 0.005105352960526943, - 0.01122988946735859, - -0.011582199484109879, - 0.0012802702840417624, - -0.00616542948409915, - -0.00943688116967678, - -0.026070958003401756, - -0.009826939553022385, - 0.041723597794771194, - 0.014344059862196445, - 0.026045793667435646, - -0.014910273253917694, - 0.01255734357982874, - -0.01444472000002861, - 0.03470255807042122, - 0.019993606954813004, - -0.002574695972725749, - -0.0017112211789935827, - -0.005067605525255203, - 0.006338438950479031, - -0.015828795731067657, - 0.0027131035458296537, - 0.023139234632253647, - -0.007448845077306032, - 0.006876341067254543, - -0.0166969895362854, - 0.027354374527931213, - -0.0007470864802598953, - -0.0025243659038096666, - -0.008556106127798557, - -0.01449505053460598, - 0.020622732117772102, - -0.012777538038790226, - 0.0062597980722785, - -0.016885727643966675, - 0.001772560877725482, - 0.04298185184597969, - -0.027857674285769463, - 0.0028452198021113873, - 0.014419554732739925, - -0.02951856516301632, - 0.011959674768149853, - -0.011154393665492535, - -0.006099371239542961, - -0.006958127487450838, - -0.0037684612907469273, - -0.0012354450300335884, - 0.006008148193359375, - 0.013991749845445156, - -0.015325495973229408, - 0.04270503669977188, - 0.01940222829580307, - -0.03387211263179779, - -0.025466997176408768, - -0.008323329500854015, - -0.016080446541309357, - 0.017716173082590103, - -0.026398103684186935, - -0.0028892585542052984, - 0.00972627941519022, - -0.015715554356575012, - -0.027329208329319954, - -0.022925330325961113, - 0.0085372319445014, - -0.0012448820052668452, - 1.533493195893243e-05, - 0.0032211223151534796, - -0.02010684832930565, - -0.006351021118462086, - 0.008644183166325092, - -0.018445957452058792, - -0.009084571152925491, - 0.006083643063902855, - 0.010128919966518879, - -0.0026612007059156895, - -0.029896041378378868, - 0.0016247164458036423, - 0.04763737693428993, - -0.017766501754522324, - -0.020119432359933853, - -0.01425598282366991, - 0.02941790595650673, - 0.013878507539629936, - 0.006907797418534756, - 0.01722545549273491, - 0.0009531250689178705, - -0.028134489431977272, - 0.011399753391742706, - -0.003011937951669097, - 0.07146865129470825, - -0.005240614991635084, - -0.005357003305107355, - 0.010877578519284725, - -0.015904290601611137, - -0.03369595855474472, - -0.0870206281542778, - 0.002738268580287695, - 0.025768978521227837, - 0.007794864010065794, - 0.022975660860538483, - 0.02881394512951374, - -0.01200371328741312, - -0.006228341720998287, - 0.0014619302237406373, - 0.04962541535496712, - -0.006454826798290014, - -0.030323846265673637, - -0.03198473900556564, - -0.003705548821017146, - -0.004142791032791138, - -0.013664604164659977, - 0.001780424965545535, - -0.03261386230587959, - -0.03369595855474472, - 0.024372318759560585, - -0.013790429569780827, - -0.003985509742051363, - -0.020824052393436432, - -0.008902125060558319, - -0.010418317280709743, - 0.007014748640358448, - -0.041975248605012894, - 0.01942739449441433, - 0.018961841240525246, - -0.00943688116967678, - 0.019062500447034836, - -0.01488510798662901, - -0.022447194904088974, - -0.01847112365067005, - -0.012569926679134369, - -0.014004332013428211, - -0.03266419470310211, - -0.0070084575563669205, - 0.03294100984930992, - -0.014067244715988636, - -0.0160678643733263, - 0.010468646883964539, - 0.015451320447027683, - -0.003315491136163473, - -0.0019738811533898115, - -0.00592636177316308, - -0.009990512393414974, - 0.026599423959851265, - 0.015199670568108559, - -0.0008060669642873108, - -0.0432586669921875, - -0.03495420888066292, - -0.018257221207022667, - 0.011525577865540981, - 0.0323873795568943, - -0.011953383684158325, - -0.003532539354637265, - 0.0010144647676497698, - -0.013110973872244358, - 0.0002748491824604571, - -0.01922607421875, - 0.020496906712651253, - -0.04283085837960243, - 0.01634467951953411, - 0.00367094692774117, - -0.006932962220162153, - -0.018332716077566147, - 0.00018018545233644545, - 0.02476237714290619, - 0.0016404446214437485, - -0.015199670568108559, - -0.001564949518069625, - -0.0011174840619787574, - 0.013110973872244358, - -0.021000206470489502, - 0.009701114147901535, - -0.050732675939798355, - -0.01942739449441433, - 0.025316007435321808, - -0.007436262909322977, - -0.0023466378916054964, - -0.0241584163159132, - 0.008990202099084854, - -0.01209179125726223, - 0.03953424096107483, - 0.022975660860538483, - -0.02140284702181816, - -0.005404187366366386, - 0.024850454181432724, - -0.020207509398460388, - -0.02160416729748249, - 0.009065697900950909, - 0.02931724488735199, - -0.00846173707395792, - -0.008801464922726154, - 0.011947091668844223, - 0.0019817452412098646, - -0.011915636248886585, - 0.01889892853796482, - 0.014973185956478119, - -0.019188325852155685, - -0.011915636248886585, - -0.03757137060165405, - 0.025353755801916122, - 0.016835397109389305, - 0.014432137832045555, - -0.03241254389286041, - -0.0038942864630371332, - 0.014746700413525105, - 0.012897071428596973, - 0.023894183337688446, - -0.0013408235972747207, - -0.018232055008411407, - 0.013765264302492142, - -0.020257839933037758, - -0.027329208329319954, - -0.025592822581529617, - -0.030147690325975418, - 0.0007482660585083067, - 0.026549093425273895, - -0.0010144647676497698, - -0.02335313707590103, - -0.01248184870928526, - 0.011915636248886585, - -0.002043084939941764, - 0.009883560240268707, - -0.010802083648741245, - -0.0018323278054594994, - 0.0014878816436976194, - -0.010361695662140846, - -0.01917574368417263, - -0.002991491463035345, - -0.0020147741306573153, - -0.006379331927746534, - -0.006750516127794981, - 0.027379538863897324, - -0.004564305301755667, - -0.016785066574811935, - 0.012834158726036549, - 0.03387211263179779, - 0.006344730034470558, - 0.04189975559711456, - -0.004366130568087101, - -0.0294682364910841, - -0.002488191006705165, - -0.027580859139561653, - 0.009380260482430458, - 0.012186159379780293, - -0.0007667466416023672, - 0.009864686988294125, - 0.011789810843765736, - -0.007580961566418409, - 0.035860151052474976, - 0.0020273567643016577, - 0.010103754699230194, - -0.00616542948409915, - -0.009078280068933964, - -0.007096535060554743, - 0.020345916971564293, - 0.0028782489243894815, - 0.036489274352788925, - -0.023151816800236702, - 0.04003754258155823, - 0.0020462304819375277, - 0.008946163579821587, - -0.021667080000042915, - 0.013274546712636948, - -0.020295586436986923, - -0.013312294147908688, - -0.020937293767929077, - -0.003107879776507616, - -0.01882343366742134, - -0.002603006549179554, - -0.0016766192857176065, - 0.009587871842086315, - 0.01667182333767414, - -0.0065491958521306515, - -0.014394390396773815, - -0.016432756558060646, - 0.0013243090361356735, - -0.0034067141823470592, - 0.020559819415211678, - 0.027706684544682503, - 0.011538160964846611, - 0.0036929664202034473, - 0.0013408235972747207, - 0.04242822155356407, - 0.017804250121116638, - -0.0118904709815979, - -0.008474319241940975, - 0.008650475181639194, - 0.02446039766073227, - -0.0036048886831849813, - 0.01480961311608553, - -0.01484736055135727, - 0.003545121755450964, - 0.03918193280696869, - 0.008122009225189686, - -0.00036980779259465635, - -0.03394760936498642, - 0.03341914340853691, - 0.03329331800341606, - 0.001029406557790935, - 0.003444461850449443, - -0.013878507539629936, - -0.02901526540517807, - 0.010097463615238667, - 0.008524649776518345, - -0.006080497521907091, - -0.03243770822882652, - 0.004290635697543621, - 0.011362005025148392, - -0.00037334661465138197, - 0.007021039724349976, - 0.006819719914346933, - 0.010424608364701271, - -0.014344059862196445, - 0.020371081307530403, - -0.030021866783499718, - -0.011682859621942043, - -0.029896041378378868, - 0.04177393019199371, - 0.02240944840013981, - 0.0014359788037836552, - -0.0036080344580113888, - 0.013576527126133442, - 0.015250001102685928, - -0.006907797418534756, - 0.009235561825335026, - -0.004592615645378828, - 0.018521452322602272, - -0.018659859895706177, - 0.004866285249590874, - 0.015853961929678917, - -0.030399341136217117, - -0.001608988270163536, - -0.023441214114427567, - 0.004517120774835348, - 0.025202766060829163, - 0.012702042236924171, - 0.0064925746992230415, - 0.11143069714307785, - 0.023617368191480637, - -0.015765883028507233, - 0.026096124202013016, - 0.022069720551371574, - 0.015426156111061573, - 0.01424339972436428, - -0.0198551993817091, - -0.001673473627306521, - -0.050657179206609726, - -0.0025432396214455366, - -0.01110406406223774, - 0.015916872769594193, - -0.020647896453738213, - -0.001852774410508573, - 0.027832509949803352, - 0.0016388717340305448, - 0.027228549122810364, - -0.027480199933052063, - 0.0016939202323555946, - 0.029820546507835388, - 0.0008909989264793694, - -0.006055332254618406, - 0.01925123855471611, - -0.013614274561405182, - -0.022447194904088974, - 0.03268935903906822, - 0.02110086753964424, - 0.014985768124461174, - -0.02198164351284504, - -0.01662149466574192, - 0.0036111800000071526, - -0.045800331979990005, - -0.028285479173064232, - 0.02899010106921196, - -0.03467739373445511, - -0.0008430280722677708, - -0.02132735215127468, - 0.005740769673138857, - 0.017414191737771034, - 0.007278981152921915, - 0.02871328592300415, - -0.010839831084012985, - -0.027304043993353844, - 0.0035388306714594364, - 0.013501032255589962, - -0.00728527270257473, - -0.0060144392773509026, - -0.03424958884716034 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 9, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 782 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000010.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000010.json deleted file mode 100644 index 4d33fb30ec49d28f91429db1ad6e59fd50d5d86e..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000010.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000010", - "content": "[25] Um vorherrschende Fremdger\u00e4usche zu pr\u00fcfen, ist der 95-Perzentilpegel einzusetzen. Der 95-Perzentilpegel beinhaltet alle Pegelwerte, die 95 % der Messzeit \u00fcberschritten wurde. [53] Um jene\n16\n2 Grundlagen\nEinfl\u00fcsse zu ber\u00fccksichtigen, sind Korrekturen an den gemessenen Schalldruckpegeln erforderlich. Zum einen wird eine Fremdger\u00e4uschkorrektur K1 (siehe Formel 15) nach den Verfahren der Normreihe DIN EN ISO 3746 ff [30] und eine Umgebungskorrektur K2 im Freien (siehe Formel 16) nach den Verfahren der Normreihe DIN EN ISO 3744 ff [29] vorgenommen. Bei Messungen im Freien kann in der Regel die Umgebungskorrektur K2 vernachl\u00e4ssigt werden, wenn der Boden aus eben und aus einem harten Material be- steht und keine Gegenst\u00e4nde in der N\u00e4he sind, wodurch die Emissionen reflektiert wer- den k\u00f6nnen. Au\u00dferdem muss die Emissionsquelle mindestens das Dreifache des gr\u00f6\u00dften Abstands betragen. \ud835\udc3e1 = \u221210lg(1 \u2212 10\u22120,1\u2217\u2206\ud835\udc3f\ud835\udc34) = 10lg(1 \u2212 10\u22120,1\u2217(\ud835\udc3f\ud835\udc34\ud835\udc52\ud835\udc5e\nFormel 15: Fremdger\u00e4uschkorrektur [dB(A)]\n\n## Mit L\u0305AFeq: gemessene mittlere Schalldruckpegel [dB(A)], L\u0305AF95: 95-Perzentilpegel [dB(A)]\n\n\ud835\udc3e2 = \ud835\udc3f\ud835\udc4a\ud835\udc34\u2217 \u2212 \ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc5f\nFormel 16: Umgebungskorrektur [dB(A)]\nMit: LWA*: Schallleistungspegel der Vergleichsschallquelle ohne Umgebungskorrektur [dB] d.h. K2 = 0 [dB(A), LWA* : kalibrierte Schallleistungspegel der Vergleichsschallquelle bezogen auf 1 pW =\n10-12 W [dB(A)]\nDer Messfl\u00e4chen-Schalldruckpegel nach DIN EN ISO 3744 ff [29] ber\u00fccksichtigt somit die notwendigen Korrekturen, um die Einfl\u00fcsse von Fremdger\u00e4uschen und der Messumge- bung zu ber\u00fccksichtigen (siehe Formel 17). \ud835\udc3f\u0305\ud835\udc5d\ud835\udc53 = \ud835\udc3f\u0305\ud835\udc34\ud835\udc52\ud835\udc5e \u2212 \ud835\udc3e1 \u2212 \ud835\udc3e2\nFormel 17: zeitlich gemittelte Messfl\u00e4chen-Schalldruckpegel [dB(A)]\n\n## Mit L\u0305AFeq: \u00e4quivalenter Dauerschallpegel [dB(A)] K1: Fremdger\u00e4uschkorrektur nach Formel 15, K2: Um-\n\ngebungskorrektur nach Formel 16 [dB(A)]\nDer \u00e4quivalente Dauerschallpegel wird nach der L\u00e4rmfibel [54] als A-bewerteten Schall-\ndruckpegel definiert, der konstant \u00fcber eine Einwirkzeit die gleiche Schallenergie aus- sendet wie der Schallpegel mit einer schwankenden Intensit\u00e4t. [54] Der \u00e4quivalente Dauerschallpegel ergibt sich aus dem gebildeten Mittelwert des gemes- senen Schalldruckpegel LAFeq (siehe Formel 18) aller Mikrofonpositionen auf der H\u00fcllfl\u00e4- che. Dies wird in Anlehnung an die Normreihe DIN EN ISO 3744 ff [29] durchgef\u00fchrt und\n17\n2 Grundlagen\nunter Ber\u00fccksichtigung der notwendigen Korrekturen wie der Fremdger\u00e4uschkorrektur K1 und der Umgebungskorrektur K2. \ud835\udc3f\u0305\ud835\udc34\ud835\udc52\ud835\udc5e = 10 \u2217 lg( 1 \ud835\udc41 \ud835\udc41 \u2211100,1\u2217\ud835\udc3f\ud835\udc34\ud835\udc39\ud835\udc52\ud835\udc5e,\ud835\udc56 \ud835\udc56=1 )\nFormel 18: \u00e4quivalenter Dauerschallpegel [dB(A)]\n\n## Mit L\u0305Aeq: \u00e4quivalenter Dauerschallpegel [dB(A)], N: Anzahl der gemessenen Schalldruckpegel [-]\n\nNach der Betrachtung der Grundlagen des Schallleistungspegels und der Schallmessung, ist es nun sinnvoll, auch die Richtcharakteristik von Schallquellen zu betrachten. In die- ser Thesis wird die 2D-Richtcharakteristik von mehreren Positionen entlang eines Krei- ses um die Schallquelle herum bestimmt und basiert auf Grundlage der einzelnen Schall- messungen an jedem einzelnen Mikrofon. Es werden somit die Messdaten von mehre- ren Mikrofonpositionen, die in einer Kreisbahn um die Schallquelle herum platziert sind, verwendet, um die Richtwerte f\u00fcr verschiedene Winkel zu berechnen. Die gesammelten Messwerte der verschiedenen Positionen werden im Anschluss analysiert, um die Richtcharakteristik zu bestimmen. Dazu werden statistische Verfahren oder mathema- tische Modelle verwendet, um die Beziehung zwischen den Schallpegeln und den Win- keln zu bestimmen. Durch die Verwendung mehrerer Mikrofonpositionen k\u00f6nnen Infor-\n\n## mationen \u00fcber die Schallausbreitung in verschiedene Richtungen gewonnen werden. Im Allgemeinen beschreibt die Richtcharakteristik, wie Schall in Abh\u00e4ngigkeit von der Richtung ausgestrahlt wird und ist damit eine wichtige Eigenschaft von Schallquellen. Bei gleichm\u00e4\u00dfiger Abstrahlung ergibt sich f\u00fcr die jeweilig gew\u00e4hlte H\u00fcllfl\u00e4che ein ge- schlossener Kreis oder Rechteck. Im Mittelpunkt des geschlossenen Kreises, befindet sich die Schallquelle, die sich im Ursprung des Koordinatensystems befindet. Der Mess- punkt liegt auf einer Kugeloberfl\u00e4che, mit dem Abstand r, um die Schallquelle herum. Um nun die Richtcharakteristik der Quelle zu bestimmen, wird der Schallpegel an diesem Messpunkt gemessen. Der komplexe Richtungsfaktor \u0393 beschreibt \"das Verh\u00e4ltnis des komplexen Schalldruckes in einer bestimmten Richtung zum komplexen Schalldruck in\nder Bezugsrichtung\" [55]\nDer Richtungsfaktor beschreibt somit, wie sich der Schalldruck in einer bestimmten Rich- tung im Vergleich zur Bezugsrichtung ver\u00e4ndert. Dabei ist der Schalldruck abh\u00e4ngig von dessen Entfernung r, der Richtung durch den azimutalen Winkel \ud835\udf11 und den polar Winkel\n\u03b8 zwischen der Quelle und dem Messpunkt. [55\u201357]\n18\n2 Grundlagen\n\ud835\udc5d(\ud835\udc5f,\ud835\udf11,\ud835\udf03) \u0393 = \ud835\udc5d0(\ud835\udc5f,\ud835\udf110,\ud835\udf030)\nFormel 19: komplexe Richtungsfaktor [-]\nMit p(r,\u03c6,\u03b8): Schalldruck im Messpunkt [dB], p0(r,\u03c60,\u03b80): Schalldruck im Ursprung [dB]\nDa die Bezugsrichtung meist eine geometrische Symmetrieachse des Strahlers ist, be- rechnet sich der Richtungsfaktor nach Formel 20. Dies bedeutet, dass die Achse des Strahlers so gerichtet ist, dass entlang derer die Eigenschaften des Strahlers spiegelsym- metrisch sind.", - "embedding": [ - 0.023081976920366287, - 0.03132270649075508, - -0.004788352642208338, - -0.03415339067578316, - 0.007162687834352255, - 0.0041368985548615456, - -0.02235446497797966, - -0.024021130055189133, - -0.028862392529845238, - -0.02783064730465412, - 0.010033054277300835, - 0.017910027876496315, - -0.023081976920366287, - 0.018637539818882942, - -0.006074726581573486, - 0.00824072863906622, - 0.03216926380991936, - -0.000944112369325012, - 0.01957669109106064, - -0.004044306464493275, - -0.004629623144865036, - 0.020396795123815536, - -0.005909382831305265, - -0.002602509455755353, - -0.025912661105394363, - 0.018624311313033104, - 0.027301548048853874, - -0.022817427292466164, - -0.03370365500450134, - -0.006111102178692818, - 0.012149453163146973, - -0.011660035699605942, - -0.025767158716917038, - 0.02035711333155632, - -0.01576717384159565, - 0.004880945198237896, - -0.01002644095569849, - -0.013002626597881317, - 0.03055551089346409, - 0.00046585581731051207, - 0.018187804147601128, - 0.0072751217521727085, - 0.0006006109178997576, - -0.009940462186932564, - 0.01597881317138672, - -0.008445754647254944, - 0.018743358552455902, - -0.010198397561907768, - -0.019021136686205864, - 0.01596558466553688, - 0.009199721738696098, - -0.002551252953708172, - -0.019206320866942406, - 0.005724198184907436, - -0.0009093902190215886, - -0.021216901019215584, - -0.006127636414021254, - 0.017804207280278206, - -0.010859772562980652, - -0.0030605115462094545, - -0.03555550426244736, - -0.009312155656516552, - -0.033677201718091965, - 0.007777766324579716, - -0.016203681007027626, - -0.013353154994547367, - 0.0025281046982854605, - 0.008406072854995728, - -0.014603153802454472, - -0.005029754713177681, - 0.030185140669345856, - 0.02973540686070919, - 0.008101840503513813, - 0.018994681537151337, - 0.01665341481566429, - 0.006984116975218058, - -0.002045301254838705, - -0.0007394995773211122, - 0.006650122813880444, - -0.0024024436715990305, - 0.023875627666711807, - -0.016190452501177788, - -0.032486725598573685, - 0.028888847678899765, - 0.013571408577263355, - -0.014775111339986324, - -0.016005268320441246, - 0.03261899948120117, - -0.01924600452184677, - -0.006111102178692818, - 0.005806869827210903, - 0.036190424114465714, - 0.004983458202332258, - 1.0011042377300328e-06, - 0.010899455286562443, - -0.013690456748008728, - 0.009609774686396122, - 0.01162696722894907, - -0.0030572046525776386, - -0.03095233626663685, - -0.0037499945610761642, - -0.005522478837519884, - 0.014140191487967968, - -0.001606313860975206, - -0.021084625273942947, - -0.009715594351291656, - 0.012943102978169918, - -0.001214449293911457, - -0.0031266489531844854, - -0.007757925428450108, - -0.017208969220519066, - 0.010667974129319191, - 0.018531719222664833, - -0.007896813564002514, - 0.029179852455854416, - -0.0011433515464887023, - 0.03164016455411911, - -0.011693105101585388, - -0.027671918272972107, - -0.006372345145791769, - 0.02175922691822052, - 0.010661359876394272, - 0.015912676230072975, - -0.015939129516482353, - 0.032195720821619034, - -0.007103164214640856, - 0.005310839042067528, - -0.022301554679870605, - -0.02965604141354561, - -0.014285693876445293, - -0.010859772562980652, - -0.008835965767502785, - 0.027592552825808525, - 0.0199735164642334, - 0.0038624282460659742, - -0.0006766690057702363, - -0.023412665352225304, - -0.008062157779932022, - -0.018716903403401375, - -0.026587262749671936, - 0.03002641163766384, - 0.020304203033447266, - -0.031084612011909485, - -0.042460255324840546, - -0.00331679405644536, - 0.022513195872306824, - 0.007043640594929457, - -0.0024669277481734753, - -0.007003958337008953, - -0.0015360427787527442, - -0.014179873280227184, - -0.013042309321463108, - 0.027116362005472183, - 0.006111102178692818, - -0.008174591697752476, - 0.001502973958849907, - 0.0055588544346392155, - 0.03092588111758232, - -0.007466920185834169, - 0.00012504115875344723, - -0.018306851387023926, - 0.011891516856849194, - 0.006878296844661236, - -0.001990737859159708, - 0.013743366114795208, - 0.008749986998736858, - -0.002491729101166129, - 0.017605794593691826, - -0.007678560446947813, - -0.001944441581144929, - -0.00685845548287034, - 0.014999978244304657, - -0.009775117971003056, - 0.018888860940933228, - 0.008842580020427704, - 0.010919296182692051, - 0.0007605809369124472, - 0.013280403800308704, - -0.030264506116509438, - -0.03084651567041874, - -0.027619007974863052, - 0.00847882404923439, - 0.010621678084135056, - 0.017023785039782524, - 0.0021180524490773678, - -0.00333167496137321, - 0.015410030260682106, - 0.012705008499324322, - -0.016097860410809517, - -0.006448403466492891, - 0.014126963913440704, - 0.013399451971054077, - 0.003988089505583048, - -0.03214281052350998, - -0.6285704970359802, - -0.00853834766894579, - -0.0004877638421021402, - 0.009861096739768982, - -0.013022467494010925, - 0.030687786638736725, - 0.00740739656612277, - -0.0001346517528872937, - 0.0006324395653791726, - 0.05671949312090874, - 0.00210978533141315, - 0.004156739916652441, - -0.015066116116940975, - -0.0029050884768366814, - -0.013353154994547367, - -0.02965604141354561, - -0.007824062369763851, - -0.011104481294751167, - 0.026706309989094734, - -0.012122998014092445, - -0.023571394383907318, - 0.022407375276088715, - 0.00015500969311688095, - 0.013320086523890495, - -0.003538354765623808, - 0.02035711333155632, - 0.008326707407832146, - -0.02464282140135765, - 0.01904759183526039, - 0.007129619363695383, - -0.03256608918309212, - -0.0027248638216406107, - -0.023769807070493698, - 0.011633581481873989, - 0.04031740128993988, - -0.022830653935670853, - -0.0029629587661474943, - 0.0012342905392870307, - 0.01716928742825985, - 0.002714943140745163, - -0.008194432593882084, - -0.007261894177645445, - 0.015899447724223137, - -0.013941778801381588, - 0.006755942478775978, - -0.0031299558468163013, - 0.03534386307001114, - -0.0025231444742530584, - 0.023571394383907318, - -0.029074031859636307, - -0.0074007827788591385, - -0.011203687638044357, - 0.021216901019215584, - 0.006203694734722376, - 0.024113722145557404, - -0.006339276675134897, - 0.03629624471068382, - -0.02136240340769291, - -0.026111073791980743, - 0.009160039946436882, - -0.014087281189858913, - 0.012156067416071892, - 0.0031216884963214397, - -0.0053141457028687, - -0.0071759154088795185, - 0.014193100854754448, - -0.01476188376545906, - -0.032671909779310226, - 0.013445748016238213, - -0.0084391413256526, - -0.024708958342671394, - 0.026269802823662758, - -0.0016782382735982537, - -0.02034388668835163, - 0.03523804247379303, - 0.013485429808497429, - 0.02793646790087223, - -0.023425891995429993, - -4.167177394265309e-05, - 0.008108453825116158, - -0.007493375334888697, - -0.008313479833304882, - -0.014034370891749859, - 0.004199729301035404, - 0.010542312636971474, - -0.024470863863825798, - -0.012599187903106213, - 0.02145499549806118, - 0.01231479737907648, - 0.012585960328578949, - 0.014298921450972557, - 0.03134915977716446, - -0.006428562104701996, - -0.020740710198879242, - -0.0008763214573264122, - 0.02973540686070919, - -0.024695731699466705, - 0.014629608020186424, - 0.013458975590765476, - -0.030793605372309685, - -0.01266532577574253, - -0.010859772562980652, - 0.018108438700437546, - -0.013862413354218006, - 0.02214282564818859, - -0.005181870888918638, - -0.01628304459154606, - 0.01182537991553545, - 0.02415340393781662, - -0.03962957113981247, - -0.006597212515771389, - -0.023769807070493698, - -0.011144164018332958, - -0.011468237265944481, - -0.0036276401951909065, - -0.023822717368602753, - 0.03494703769683838, - 0.010747338645160198, - 0.009900779463350773, - -0.011011889204382896, - 0.011547602713108063, - -0.00076967483619228, - 0.030079321935772896, - -0.02546292543411255, - -0.010105805471539497, - 0.035290952771902084, - 0.016137542203068733, - 0.01391532365232706, - 0.002430552151054144, - -0.02335975505411625, - 0.016415320336818695, - 0.007202370557934046, - 0.016031723469495773, - -0.0083796177059412, - 0.014550243504345417, - 0.016693098470568657, - 0.020978806540369987, - -0.01996028795838356, - -0.005886234808713198, - -0.02933858148753643, - -0.030079321935772896, - 0.002481808653101325, - 0.022222189232707024, - -0.04912691190838814, - -0.011329349130392075, - -0.0405290424823761, - -0.027380913496017456, - 0.01648145727813244, - 0.008908716961741447, - 0.002700062235817313, - 0.01252643670886755, - -0.03182535246014595, - 0.0017394154565408826, - 0.019100502133369446, - -0.003664015792310238, - 0.009325383231043816, - -0.004546951036900282, - -0.012195749208331108, - -0.029074031859636307, - -0.017632249742746353, - 0.025912661105394363, - 0.015317438170313835, - -0.0464814156293869, - -0.030608421191573143, - -0.006375652272254229, - -0.016719551756978035, - 0.012208976782858372, - -0.007394168991595507, - -0.02514546550810337, - -0.03873010352253914, - -0.0024669277481734753, - 0.02383594401180744, - -0.013081992045044899, - 0.0008697077282704413, - 0.000991235370747745, - 0.0012417309917509556, - -0.029100487008690834, - -0.006590598728507757, - -0.020780393853783607, - -0.024391498416662216, - 0.027275092899799347, - -0.013756593689322472, - -0.023915309458971024, - 0.01227511465549469, - 0.024021130055189133, - -0.001599700073711574, - 0.006593905854970217, - 0.006299593951553106, - -0.015119025483727455, - 0.035661324858665466, - -0.017288334667682648, - 0.018994681537151337, - -0.026719538494944572, - 0.017407381907105446, - -0.028280382975935936, - 0.00902776513248682, - 0.012883579358458519, - -0.01806875690817833, - 0.0015674580354243517, - 0.025171920657157898, - 0.03415339067578316, - -0.001772484160028398, - 0.030687786638736725, - -0.03600523993372917, - 0.017632249742746353, - -0.009325383231043816, - 0.011851835064589977, - -0.017328016459941864, - 0.042169250547885895, - 0.03992057591676712, - 0.0136640015989542, - -0.011197073385119438, - -0.027619007974863052, - -0.0057374257594347, - 0.004404755309224129, - 0.034973494708538055, - -0.0015203350922092795, - 0.01607140526175499, - 0.017195742577314377, - -0.001833661342971027, - -0.007824062369763851, - -0.016243362799286842, - 0.02703699842095375, - 0.026997314766049385, - -0.008167977444827557, - -0.012499981559813023, - -0.009894165210425854, - -0.0020254601258784533, - 0.009702366776764393, - -0.014629608020186424, - -0.011157391592860222, - -0.024470863863825798, - 0.0034060797188431025, - 0.021984094753861427, - -0.012394161894917488, - 0.032486725598573685, - 0.015925902873277664, - 0.005128961056470871, - 0.03304228186607361, - 0.003601185278967023, - 0.024179859086871147, - 0.018201032653450966, - 0.011574056930840015, - -0.011130936443805695, - 0.008458982221782207, - -0.02515869401395321, - 0.010119033046066761, - 0.041084595024585724, - -0.017539657652378082, - -0.006302901078015566, - -0.0007882759673520923, - 0.003654095344245434, - -0.014126963913440704, - 0.007023799233138561, - 0.009914007037878036, - -0.0007853824645280838, - 0.036481428891420364, - 0.00330356671474874, - -0.01187828928232193, - 0.02175922691822052, - 0.013346541672945023, - -0.0007878626347519457, - 0.00310680759139359, - -0.029682496562600136, - 0.015079343691468239, - 0.0033515163231641054, - -0.03603169322013855, - -0.030290961265563965, - -0.01546294055879116, - -0.011501305736601353, - -0.007255280390381813, - -0.005426579620689154, - 0.009642843157052994, - 0.010284376330673695, - 0.014391513541340828, - 0.0016881589544937015, - -0.018492037430405617, - 0.02444440871477127, - 0.03764544799923897, - -0.0042195706628263, - -0.025185149163007736, - -0.011335962451994419, - 0.009490727446973324, - 0.032804183661937714, - -0.010873000137507915, - -0.01966928318142891, - -0.003829359542578459, - -0.009490727446973324, - -0.0045105754397809505, - 0.009801573120057583, - -0.007288349326699972, - 0.004007930867373943, - 0.01042987871915102, - -0.016732780262827873, - 0.00025566265685483813, - 0.006544302683323622, - 0.005290997680276632, - 0.0065178475342690945, - -0.0005663021001964808, - 0.019325368106365204, - 0.004398141987621784, - -0.01834653504192829, - -0.019735421985387802, - -0.02005288191139698, - 0.018240714445710182, - -0.0005034714704379439, - -0.021587271243333817, - -0.018597856163978577, - 0.005955679342150688, - -0.0099272346124053, - -0.008101840503513813, - 0.005462955217808485, - 0.014378285966813564, - 0.01656082272529602, - 0.0002048194728558883, - -0.021878276020288467, - 0.007433851715177298, - -0.014378285966813564, - 0.03283064067363739, - -0.009034378454089165, - 0.00309192668646574, - -0.014246011152863503, - 0.011058185249567032, - -0.00638226605951786, - -0.003554889000952244, - 0.009523795917630196, - 0.02843911200761795, - 0.028809482231736183, - -0.012678553350269794, - -0.005598536692559719, - -0.0019460950279608369, - -0.025515835732221603, - 0.006134250201284885, - 0.014259238727390766, - 0.004589940421283245, - 0.0076256501488387585, - 0.02572747692465782, - -0.0013376303249970078, - 0.009821414016187191, - -0.02124335616827011, - 0.020423250272870064, - -0.02703699842095375, - 0.016600504517555237, - 0.024179859086871147, - -0.01607140526175499, - 0.01585976593196392, - 0.012989399023354053, - 0.029417946934700012, - -0.00828041136264801, - -0.020978806540369987, - 0.014708973467350006, - 0.022724835202097893, - 0.020515844225883484, - -0.03325391933321953, - -0.015410030260682106, - 0.024391498416662216, - -0.008425913751125336, - -0.0016683177091181278, - -0.01906081847846508, - 0.0011789003619924188, - -0.007943110540509224, - 0.000884588691405952, - 0.017513202503323555, - -0.011937813833355904, - 0.0017328016692772508, - 0.0397089384496212, - 0.0038525075651705265, - -0.010244694538414478, - 0.012030405923724174, - -0.015277755446732044, - 0.016216907650232315, - 0.004890866111963987, - -0.01272484939545393, - -0.008386231027543545, - 0.006898138206452131, - -0.028280382975935936, - -0.003878962714225054, - 0.01427246630191803, - -0.008055543527007103, - -0.03166662156581879, - 0.0219576396048069, - -0.016415320336818695, - -0.020502615720033646, - -0.02056875266134739, - -0.016335954889655113, - -0.022407375276088715, - 0.02534387819468975, - -0.002037034137174487, - -0.025793613865971565, - -0.0036309470888227224, - -0.004130285233259201, - 0.010211625136435032, - -0.024814778938889503, - 0.0035879577044397593, - -0.0003904177574440837, - -0.016944419592618942, - -0.023783033713698387, - -0.005257928743958473, - -0.002091597532853484, - -0.0020734097342938185, - 0.00902776513248682, - 0.004292321857064962, - -0.011263211257755756, - -0.009563478641211987, - -0.01301585417240858, - 0.006534382235258818, - -0.0008395325276069343, - -0.03113752044737339, - -0.019021136686205864, - 0.03452375903725624, - -0.0029563449788838625, - 0.002653765957802534, - -0.00320601393468678, - 0.0050595165230333805, - -0.004715601447969675, - 0.01307537779211998, - 0.011554216034710407, - -0.008869035169482231, - -0.02244705706834793, - 0.018240714445710182, - 0.009768504649400711, - 0.007116391789168119, - 0.01645500212907791, - -0.00750660290941596, - 0.016746006906032562, - -0.024669276550412178, - -0.0029993343632668257, - 0.012347865849733353, - 0.017433837056159973, - 0.01411373633891344, - -0.002645498840138316, - -0.0025132237933576107, - -0.011772469617426395, - 0.0020882906392216682, - -0.007440465502440929, - -0.007347872946411371, - -0.003262230660766363, - 0.004169967491179705, - 0.0074007827788591385, - -0.005476182326674461, - 0.012969558127224445, - -0.00017309415852651, - 0.017910027876496315, - -0.0019312141230329871, - 0.007936496287584305, - -0.02973540686070919, - 0.037169259041547775, - 0.007414010353386402, - 0.0010466254316270351, - 0.023201024159789085, - -0.015608442947268486, - 0.013544954359531403, - -0.03695761784911156, - -0.007658719085156918, - 0.014417968690395355, - 0.01542325783520937, - 0.01497352309525013, - -0.013783048838376999, - -0.035872962325811386, - -0.012003950774669647, - 0.006332662887871265, - 0.010211625136435032, - -0.011679877527058125, - 0.008412686176598072, - -0.015886221081018448, - 0.010145488195121288, - -0.01767193153500557, - 0.009107129648327827, - 0.0198544692248106, - -0.027301548048853874, - -0.0298412274569273, - 0.009120357222855091, - -0.02014547400176525, - 0.02044970542192459, - -0.03701052814722061, - -0.0040509202517569065, - -0.007447079289704561, - -0.005922610405832529, - -0.014285693876445293, - -0.029497312381863594, - 0.002974532777443528, - -0.017486747354269028, - 0.0008341588545590639, - 0.011197073385119438, - 0.02256610430777073, - -0.005482796113938093, - 0.0010598530061542988, - 0.009100516326725483, - -0.003262230660766363, - 0.005496023688465357, - -0.02746027708053589, - -0.0004943775711581111, - -0.035396773368120193, - 0.035978782922029495, - 0.011296279728412628, - 0.0030142152681946754, - -0.0009300581878051162, - -0.0034589897841215134, - 0.011124322190880775, - 0.04661368951201439, - -0.013518499210476875, - -0.0121759083122015, - -0.007334645371884108, - -0.018002619966864586, - 0.011157391592860222, - 0.009861096739768982, - 0.007480147760361433, - 0.02894175797700882, - -0.004874331410974264, - -0.008796283975243568, - -0.0020899439696222544, - -0.022195735946297646, - -0.018941771239042282, - -0.013399451971054077, - 0.023174569010734558, - -0.0464814156293869, - 0.032989371567964554, - -0.01307537779211998, - 0.021984094753861427, - -0.01697087474167347, - 0.0007986099808476865, - -0.005006606690585613, - -0.02107139863073826, - 0.022010549902915955, - -0.001431049546226859, - 0.0019262537825852633, - -0.008525120094418526, - -0.012222204357385635, - 0.0064384825527668, - -0.016428546980023384, - 0.01837299019098282, - -0.035767145454883575, - -0.007037026807665825, - -0.016402091830968857, - -0.023928536102175713, - -0.021997323259711266, - -0.0038128250744193792, - -0.012334638275206089, - 0.01382273156195879, - 0.0007779420120641589, - -0.0029447709675878286, - 0.02923276275396347, - 0.0019659362733364105, - -0.012089929543435574, - -0.0005567948101088405, - 0.004553564824163914, - 0.037460263818502426, - -0.013849186711013317, - 0.022195735946297646, - 0.01936505176126957, - -0.03645497187972069, - -0.01944441720843315, - -0.028915302827954292, - 0.0020271134562790394, - -0.011018502525985241, - 0.022777745500206947, - 0.0026736073195934296, - -0.02064811810851097, - 0.012129612267017365, - 0.005446420516818762, - 0.00685845548287034, - -0.005697743035852909, - -0.018730131909251213, - 0.047751255333423615, - 0.017936481162905693, - 0.0012045287294313312, - -0.010456333868205547, - 0.030370326712727547, - -0.012605802156031132, - 0.006094567943364382, - 0.012632257305085659, - -0.01017855666577816, - -0.019140183925628662, - -0.0025148773565888405, - -0.007665332872420549, - 0.04198406636714935, - 0.004679225850850344, - 0.009411361999809742, - 0.01476188376545906, - -0.03333328664302826, - 0.009331997483968735, - -0.032486725598573685, - -0.00728173553943634, - 0.01562167052179575, - -0.011679877527058125, - 0.04388882592320442, - -0.013167970813810825, - 0.011335962451994419, - -0.013902096077799797, - -0.015502623282372952, - -0.0013921937206760049, - 0.01411373633891344, - -0.010370355099439621, - 0.017407381907105446, - -0.021997323259711266, - 0.013796276412904263, - 0.017738070338964462, - -0.0021130922250449657, - 0.0013690455816686153, - 0.018624311313033104, - -0.012572732754051685, - -0.017023785039782524, - 0.017645476385951042, - -0.003716925857588649, - 0.007910041138529778, - -0.003650788450613618, - -0.0281481072306633, - 0.004715601447969675, - -0.018690448254346848, - -0.009417976252734661, - -0.015410030260682106, - -0.014497333206236362, - 0.02915339730679989, - -0.016706325113773346, - 0.0062433769926428795, - -0.013187811709940434, - -0.0045006549917161465, - 0.02624334767460823, - 0.0016236748779192567, - -0.006352504249662161, - -0.007103164214640856, - 0.02244705706834793, - -0.043862368911504745, - 0.013201039284467697, - 0.03216926380991936, - -0.01407405361533165, - -0.003156410763040185, - 0.0028968211263418198, - 0.003644174663349986, - -0.008134908974170685, - 0.04129623621702194, - -0.01382273156195879, - -0.02066134661436081, - -0.019484099000692368, - -0.0006816292880102992, - 0.018412671983242035, - -0.015634898096323013, - -0.012387548573315144, - -0.0023908696603029966, - 0.018399443477392197, - -0.014298921450972557, - -0.018637539818882942, - 0.010396810248494148, - 0.001162366010248661, - 0.026071390137076378, - -0.007513216696679592, - 0.021997323259711266, - -0.024285679683089256, - 0.01756611280143261, - 0.012804213911294937, - -0.013902096077799797, - 0.005228166934102774, - -0.016798917204141617, - -0.007341259159147739, - 0.029285671189427376, - 0.010939138010144234, - -0.03851846233010292, - -0.00608795415610075, - -0.017883572727441788, - 0.0006766690057702363, - -0.01362431887537241, - 0.02174600027501583, - 0.005393510684370995, - 0.016137542203068733, - 0.010390196926891804, - 0.0041898088529706, - -0.0315343476831913, - 0.03291000425815582, - 0.013280403800308704, - -0.01332669984549284, - 0.029179852455854416, - 0.008749986998736858, - -0.014206328429281712, - 0.020939122885465622, - -0.020820075646042824, - 0.03343910351395607, - 0.025092557072639465, - -0.01866399496793747, - -0.001378966262564063, - 0.007010571658611298, - -0.020925896242260933, - -0.02126981131732464, - -0.023068750277161598, - 0.016441775485873222, - -0.0005456341314129531, - 0.014828020706772804, - -0.01626981794834137, - 0.025595201179385185, - 0.0045767128467559814, - 0.022010549902915955, - -0.02366398647427559, - -0.008115068078041077, - -0.0019543622620403767, - -0.0010730804642662406, - 0.008723532781004906, - -0.005248008295893669, - -0.025171920657157898, - 5.378836431191303e-05, - 0.03613751381635666, - 0.0016807185020297766, - 0.01924600452184677, - 0.03182535246014595, - -0.005267849657684565, - -0.03444439545273781, - 0.028121652081608772, - 0.011309507302939892, - 0.029603131115436554, - 0.0023578007239848375, - 0.0003670629521366209, - -0.017923254519701004, - -0.003968248143792152, - 0.0020122325513511896, - 0.019880924373865128, - -0.026097845286130905, - -0.00898808240890503, - 0.03804227337241173, - -0.0011946080485358834, - -0.014656063169240952, - 0.01974864862859249, - -0.018505264073610306, - 0.013207652606070042, - -0.03489413112401962, - 0.045370303094387054, - 0.004662691615521908, - -0.032804183661937714, - 0.008260570466518402, - 0.018941771239042282, - -0.015251300297677517, - -0.025370333343744278, - 0.004292321857064962, - -0.026600491255521774, - 0.0020949044264853, - 0.012506595812737942, - 0.008611098863184452, - 0.025820069015026093, - -0.015383576042950153, - 0.025185149163007736, - -0.0046759191900491714, - 0.007030413020402193, - -0.036481428891420364, - -0.025370333343744278, - -0.031693074852228165, - 0.03473540022969246, - 0.04740734025835991, - -0.02087298594415188, - 0.008220887742936611, - -0.012195749208331108, - -0.0025165306869894266, - -0.010555540211498737, - -0.025899432599544525, - 0.009331997483968735, - -0.015039660967886448, - -0.006683191284537315, - 0.012142839841544628, - -0.02465604990720749, - -0.009708981029689312, - -0.008148136548697948, - -0.0044510518200695515, - -0.017195742577314377, - -0.002614083467051387, - 0.20222193002700806, - -0.02743382193148136, - 0.002397483214735985, - 0.008346549235284328, - -0.029417946934700012, - -0.032275084406137466, - 0.00982802826911211, - -0.0016931192949414253, - 0.006514540873467922, - 0.024497319012880325, - 0.001886571291834116, - -0.004322083666920662, - 0.003086966462433338, - 0.008611098863184452, - 0.0058333249762654305, - -0.007678560446947813, - -0.03383592888712883, - -0.006084647495299578, - -0.012572732754051685, - 0.02076716534793377, - 0.024669276550412178, - -0.006107795517891645, - 0.006197080947458744, - -0.008961627259850502, - 0.054550185799598694, - 0.020793620496988297, - 0.0012028752826154232, - 0.004980151541531086, - 0.04362427443265915, - 0.010019826702773571, - -0.02206346020102501, - -0.006220228970050812, - 0.013035695068538189, - 0.0023561473935842514, - -0.020621662959456444, - 0.0192724596709013, - -0.0052347807213664055, - -0.013280403800308704, - 0.024616366252303123, - 0.019986743107438087, - 0.012513209134340286, - -0.024708958342671394, - -0.004811501130461693, - -0.018187804147601128, - 0.017711615189909935, - 0.013234107755124569, - -0.011759242042899132, - -0.005677901674062014, - 0.003776449477300048, - 0.011560830287635326, - -0.008068771101534367, - 0.005128961056470871, - 0.00011625727347563952, - 0.033386196941137314, - -0.012063474394381046, - -0.026388850063085556, - 0.02335975505411625, - -0.005036368500441313, - -0.0007262721192091703, - 0.009391521103680134, - -0.02514546550810337, - 0.021283037960529327, - -0.02822747267782688, - 0.026269802823662758, - -0.036666613072156906, - 0.019193094223737717, - -0.03322746604681015, - -0.005102505907416344, - -0.0018038995331153274, - -0.027592552825808525, - 0.0036871640477329493, - -0.01191797200590372, - -0.023399436846375465, - 0.019537009298801422, - -0.023730125278234482, - -0.03261899948120117, - 0.008015861734747887, - 0.010482789017260075, - 0.028783027082681656, - 0.04203697666525841, - 0.006421948317438364, - -0.0015095877461135387, - -0.016693098470568657, - -0.016216907650232315, - -0.003384585026651621, - -0.02386239916086197, - 0.001599700073711574, - 0.007652105297893286, - 0.0006989903631620109, - -0.014219556003808975, - -0.0003623093361966312, - 0.014219556003808975, - 0.0025165306869894266, - 0.00032014670432545245, - 0.012162680737674236, - -0.015185163356363773, - -0.0069245933555066586, - 0.0029447709675878286, - -0.0090806744992733, - -0.005029754713177681, - -0.023293616250157356, - 0.0608464740216732, - 0.02533065155148506, - -0.01937827840447426, - -0.016891509294509888, - -0.011686490848660469, - 0.008551575243473053, - 0.024589911103248596, - 0.0114748515188694, - -0.0030572046525776386, - -0.021521132439374924, - -0.029206307604908943, - 0.012962943874299526, - -0.026997314766049385, - 0.0036276401951909065, - 0.015079343691468239, - 0.011931199580430984, - 0.009153425693511963, - -0.008617712184786797, - -0.0136640015989542, - -0.00943120289593935, - 0.012943102978169918, - 0.026587262749671936, - -0.0020122325513511896, - 0.002825723495334387, - -0.025515835732221603, - -0.04738088324666023, - 0.016746006906032562, - -0.0018501956947147846, - -0.007123005576431751, - 0.02955022267997265, - -0.015224846079945564, - 0.021494677290320396, - 0.0011177232954651117, - 0.027592552825808525, - 0.006296287290751934, - 0.00718252919614315, - -0.024669276550412178, - -0.002258594613522291, - 0.008756601251661777, - 0.02515869401395321, - -0.015740718692541122, - 0.021111080422997475, - 0.006190467160195112, - 0.011130936443805695, - -0.010145488195121288, - 0.01716928742825985, - 0.0011714599095284939, - -0.01867722161114216, - -0.004011237528175116, - -0.022724835202097893, - 0.0016898124013096094, - -0.004857797175645828, - -0.027222182601690292, - 0.021798910573124886, - -0.006931206677109003, - -0.014140191487967968, - -0.03230154141783714, - 0.02075393870472908, - 0.019391506910324097, - -0.020939122885465622, - -0.01785711757838726, - -0.009583319537341595, - -0.02403435669839382, - -0.0011846874840557575, - -0.0002155668189516291, - -0.16730134189128876, - 0.0025347184855490923, - 0.011686490848660469, - -0.022632243111729622, - 0.01481479313224554, - 0.01292326208204031, - 0.007883586920797825, - 0.021137535572052002, - -0.0035019791685044765, - -0.0019742033910006285, - 0.024722186848521233, - -0.006180546712130308, - -0.017103150486946106, - -0.007466920185834169, - -0.003249003319069743, - -0.005876314360648394, - -0.02465604990720749, - 0.023690441623330116, - 0.02883593738079071, - 0.015912676230072975, - 0.006309514865279198, - -0.01756611280143261, - 0.020317431539297104, - 0.012843896634876728, - 0.010416651144623756, - 0.009484113194048405, - -0.023968219757080078, - 0.01517193578183651, - -0.011587284505367279, - -0.011805538088083267, - -0.004424596671015024, - -0.0031332627404481173, - 0.028783027082681656, - 0.007936496287584305, - 0.011560830287635326, - -0.02604493498802185, - 0.002655419521033764, - -0.008749986998736858, - 0.0006291326717473567, - 0.020105790346860886, - 0.013148128986358643, - 0.03312164545059204, - -0.015290983021259308, - 0.022989384829998016, - -0.0054331934079527855, - 0.03904756158590317, - 0.025277741253376007, - -0.023796262219548225, - -0.005578695796430111, - 0.004361766390502453, - 0.007738084066659212, - -0.011964268051087856, - 0.004467586055397987, - 0.006279752589762211, - -0.015396802686154842, - 0.007698401343077421, - -0.027513187378644943, - 0.013293631374835968, - 0.009206335991621017, - -0.001547616790048778, - -0.007698401343077421, - -0.023108432069420815, - 0.01925923116505146, - -0.008994695730507374, - -0.004507268778979778, - -0.012513209134340286, - -0.004166660830378532, - 0.0249338261783123, - -0.030687786638736725, - 0.00441467622295022, - -0.0021759227383881807, - -0.03624333441257477, - 0.018544945865869522, - -0.008134908974170685, - -0.001102015608921647, - 0.000442294345702976, - -0.014179873280227184, - -0.009867710992693901, - -0.0011855141492560506, - 0.006455017253756523, - -0.010820089839398861, - 0.038968198001384735, - 0.0025115704629570246, - -0.007539671845734119, - -0.031984079629182816, - -0.012989399023354053, - -0.01501320581883192, - 0.01915341056883335, - -0.022989384829998016, - -0.007301576901227236, - 0.011309507302939892, - -0.0044609722681343555, - -0.006593905854970217, - -0.02075393870472908, - -0.0032357757445424795, - -0.004146819468587637, - -0.0021908036433160305, - -0.0014748655958101153, - -0.02346557378768921, - -0.0019775102846324444, - 0.012830669060349464, - -0.03084651567041874, - -0.02066134661436081, - 0.01526452787220478, - 6.94443442625925e-05, - -0.010443106293678284, - -0.020211610943078995, - -0.002056875266134739, - 0.046534325927495956, - -0.015132253058254719, - -0.011739401146769524, - -0.017790978774428368, - 0.018015846610069275, - -0.0014054212952032685, - -0.0062665254808962345, - 0.00025008231750689447, - -0.005644833203405142, - -0.009999985806643963, - 0.010952364653348923, - -0.005585309583693743, - 0.050449661910533905, - -0.01726187951862812, - 0.009993371553719044, - 0.016825372353196144, - -0.017142832279205322, - -0.03441793844103813, - -0.08306866139173508, - 0.012830669060349464, - 0.021018488332629204, - 0.007771153002977371, - 0.02244705706834793, - 0.02484123408794403, - -0.0033994659315794706, - -0.0091401981189847, - -0.005241394508630037, - 0.03999994322657585, - -0.02047616057097912, - -0.02743382193148136, - -0.016931192949414253, - -0.014999978244304657, - 0.0028902075719088316, - 0.00399139616638422, - 0.009371679276227951, - -0.029391491785645485, - -0.044867660850286484, - 0.02833329141139984, - -0.01575394533574581, - -0.0017542963614687324, - 0.0037367669865489006, - -0.006130943540483713, - -0.021679863333702087, - -0.01501320581883192, - -0.038968198001384735, - 0.014259238727390766, - 0.005846552550792694, - -0.012063474394381046, - 0.024391498416662216, - -0.022420601919293404, - -0.006970889400690794, - -0.017195742577314377, - -0.015899447724223137, - -0.01718251407146454, - -0.006335969548672438, - -0.004262560047209263, - 0.022804200649261475, - -0.017539657652378082, - -0.006898138206452131, - 0.01472220104187727, - 0.004064147360622883, - -0.009120357222855091, - 0.0017576032551005483, - -0.011587284505367279, - -0.0032820720225572586, - 0.02804228663444519, - 0.010502629913389683, - -0.007691788021475077, - -0.038862377405166626, - -0.03195762634277344, - -0.024695731699466705, - 0.02047616057097912, - 0.02046293392777443, - -0.0018072064267471433, - -0.0034656033385545015, - -0.0026322712656110525, - -0.01814812235534191, - -0.00016265684098470956, - -0.03470894321799278, - 0.02177245542407036, - -0.031058156862854958, - 0.02095235139131546, - -0.002590935444459319, - -0.0014740389306098223, - -0.012883579358458519, - -0.005254622083157301, - 0.010615063831210136, - -0.006679884623736143, - -0.018425898626446724, - 0.0013020813930779696, - 0.006871683057397604, - 0.01431214902549982, - -0.02316134236752987, - 0.016031723469495773, - -0.04343909025192261, - -0.011752628721296787, - 0.017301563173532486, - -0.003667322685942054, - -0.009212949313223362, - -0.02835974656045437, - 0.00828041136264801, - -0.029708951711654663, - 0.02695763297379017, - 0.019695738330483437, - -0.004751977045089006, - -0.01517193578183651, - 0.005674595013260841, - -0.034867674112319946, - -0.027275092899799347, - 0.015912676230072975, - 0.019193094223737717, - -0.0011276438599452376, - -0.020899441093206406, - 0.019113728776574135, - 0.022328009828925133, - -0.01707669533789158, - 0.013584636151790619, - 0.01834653504192829, - -0.005102505907416344, - -0.004160047043114901, - -0.04383591562509537, - 0.02115076221525669, - 0.021494677290320396, - -0.011990723200142384, - -0.021931184455752373, - -0.011355803348124027, - 0.026798903942108154, - 0.018928544595837593, - 0.024510545656085014, - 0.005039675161242485, - -0.0312433410435915, - 0.0069510480388998985, - -0.021005259826779366, - -0.019126957282423973, - -0.036269787698984146, - -0.03296291455626488, - -0.018915316089987755, - 0.02455022931098938, - 0.0029497311916202307, - -0.0026256574783474207, - 0.001169806462712586, - 0.011468237265944481, - -0.006964275613427162, - 0.01945764385163784, - -0.021124308928847313, - -0.0033052200451493263, - -0.0024173245765268803, - 0.0013384571066126227, - -0.01411373633891344, - 0.002048608148470521, - 0.013009240850806236, - 0.00014436569472309202, - -0.00863093975931406, - 0.021216901019215584, - 0.002375988522544503, - -0.021415313705801964, - 0.013888868503272533, - 0.027380913496017456, - 0.009133584797382355, - 0.03859782591462135, - -0.008353162556886673, - -0.029708951711654663, - 0.010357127524912357, - -0.028412656858563423, - -0.0012880272697657347, - 0.014947067946195602, - -0.0013698723632842302, - 0.01227511465549469, - 0.016626959666609764, - -0.01546294055879116, - 0.04343909025192261, - 0.003422614187002182, - 0.005290997680276632, - 0.007559512741863728, - -0.00898146815598011, - -0.0034556828904896975, - -9.383253927808255e-05, - 0.00412036431953311, - 0.03174598515033722, - -0.03915338218212128, - 0.04920627921819687, - 0.00968913920223713, - 0.005651446990668774, - -0.01686505414545536, - 0.007162687834352255, - -0.013419292867183685, - -0.033888839185237885, - -0.015330665744841099, - 0.0143650583922863, - -0.0304232370108366, - -0.01996028795838356, - -0.0028587921988219023, - 0.008359775878489017, - 0.025793613865971565, - -0.00341600039973855, - -0.015568760223686695, - -0.008816124871373177, - -0.004761897958815098, - 0.002982799895107746, - 0.0022437137085944414, - 0.024126948788762093, - 0.00828041136264801, - 0.001054892665706575, - -0.012394161894917488, - 0.04939146339893341, - 0.010707656852900982, - -0.02177245542407036, - -0.019510554149746895, - -0.004679225850850344, - 0.015687808394432068, - -0.0035813439171761274, - 0.021190445870161057, - 0.004556871484965086, - 0.005125653930008411, - 0.030396781861782074, - 0.0022470206022262573, - -0.01162696722894907, - -0.01127643883228302, - 0.03074069693684578, - 0.02904757671058178, - -0.003875655820593238, - -0.012546278536319733, - -0.01665341481566429, - -0.020581981167197227, - -0.0022949702106416225, - 0.005062823183834553, - -0.022486740723252296, - -0.018042301759123802, - 0.00760580925270915, - 0.024814778938889503, - -0.006309514865279198, - 0.013055536895990372, - 0.009695753455162048, - 0.005727504845708609, - -0.006977503187954426, - 0.003392852144315839, - -0.0341004803776741, - -0.00676255626603961, - -0.013544954359531403, - 0.029708951711654663, - 0.026693083345890045, - 0.02104494348168373, - 0.0055687748827040195, - 0.023624304682016373, - 0.029470857232809067, - -0.020383568480610847, - 0.024682503193616867, - -0.0015889527276158333, - 0.018703676760196686, - -0.014576698653399944, - 0.008855807594954967, - -0.004801580216735601, - -0.02503964677453041, - -0.008921944536268711, - -0.007321417797356844, - 0.012579347006976604, - 0.037169259041547775, - 0.013730138540267944, - 0.005145495291799307, - 0.12264532595872879, - 0.01855817437171936, - -0.01431214902549982, - 0.030396781861782074, - 0.006706339307129383, - 0.01935182325541973, - -0.002033727243542671, - -0.0040509202517569065, - 0.0071494607254862785, - -0.06767185777425766, - 0.009775117971003056, - -0.01845235377550125, - 0.026679854840040207, - -0.022499967366456985, - -0.003425921080633998, - 0.016785690560936928, - 0.007010571658611298, - 0.00824072863906622, - -0.011349190026521683, - -0.011302893981337547, - 0.041163962334394455, - 0.002371028298512101, - 0.0017410689033567905, - 0.02825392782688141, - -0.025290967896580696, - -0.0143650583922863, - 0.03939147666096687, - 0.0047089881263673306, - 0.003144836751744151, - -0.020092563703656197, - -0.011898131109774113, - 0.006838614586740732, - -0.04402109980583191, - -0.015290983021259308, - 0.014828020706772804, - -0.03894174098968506, - 0.01187828928232193, - -0.020542297512292862, - 0.013941778801381588, - 0.00728173553943634, - 0.007923268713057041, - 0.02355816774070263, - -0.005896155722439289, - -0.026177210733294487, - 0.00638226605951786, - 0.007665332872420549, - 0.0009350184700451791, - -0.002045301254838705, - -0.024378271773457527 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 10, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 705 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000011.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000011.json deleted file mode 100644 index c6b5597dbec7b7f308c5af2b2733f1bd616ca1d3..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000011.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000011", - "content": "[55\u201357]\n18\n2 Grundlagen\n\ud835\udc5d(\ud835\udc5f,\ud835\udf11,\ud835\udf03) \u0393 = \ud835\udc5d0(\ud835\udc5f,\ud835\udf110,\ud835\udf030)\nFormel 19: komplexe Richtungsfaktor [-]\nMit p(r,\u03c6,\u03b8): Schalldruck im Messpunkt [dB], p0(r,\u03c60,\u03b80): Schalldruck im Ursprung [dB]\nDa die Bezugsrichtung meist eine geometrische Symmetrieachse des Strahlers ist, be- rechnet sich der Richtungsfaktor nach Formel 20. Dies bedeutet, dass die Achse des Strahlers so gerichtet ist, dass entlang derer die Eigenschaften des Strahlers spiegelsym- metrisch sind. [55]\n\u0393 = \ud835\udc5d\u0303(\ud835\udc5f,\ud835\udf11,\ud835\udf03) \ud835\udc5d\u03030(\ud835\udc5f,\ud835\udf110,\ud835\udf030)\nFormel 20: Richtungsfaktor [-]\nMit p(r,\u03c6,\u03b8): Schalldruck im Messpunkt [dB(A)], p0(r,\u03c60,\u03b80): Schalldruck im Ursprung [dB(A)]\nEine gerichtete Schallabstrahlung l\u00e4sst sich daran erkennen, dass es starke Unterschiede im gemessenen Schalldruckpegel gibt. Um die Richtwirkung einer Schallquelle definie- ren zu k\u00f6nnen, wird das Richtma\u00df DI eingef\u00fchrt, welche das Ma\u00df f\u00fcr die gerichtete Schallabstrahlung einer Schallquelle im Vergleich einer Kugelwelle (siehe Formel 21) be- schreibt. Ergibt sich ein positiver Wert des Richtma\u00dfes, deutet dies auf eine gerichtete Schallquelle hin und ein h\u00f6herer Schalldruckpegel auf der Achse der Schallquelle gemes- sen wird, als auf einer Kugel. Hingegen negative Werte auf eine ungerichtete Schallab- strahlung hindeuten, bei welchen der Schalldruckpegel auf der Achse der Schallquelle niedriger ist als auf einer Kugel. [42, 55]\n\ud835\udc37\ud835\udc3c = 20lg(\ud835\udee4) = 20lg( \ud835\udc5d\u0303(\ud835\udc5f,\ud835\udf11,\ud835\udf03) \ud835\udc5d\u03030(\ud835\udc5f,\ud835\udf110,\ud835\udf030) ) = \ud835\udc3f\ud835\udc5d(\ud835\udc5f,\ud835\udf11,\ud835\udf03) \u2212 \ud835\udc3f\ud835\udc5d(\ud835\udc5f,\ud835\udf110,\ud835\udf030)\nFormel 21: Richtma\u00df [dB(A)]\nMit: Lp(r,\u03c6,\u03b8): Schalldruckpegel im Messpunkt [dB(A)], Lp(r,\u03c60,\u03b80): Schalldruckpegel im Ursprung\n[dB(A)]\n19\n2 Grundlagen\n\n[IMAGE: ]\n\nAbbildung 3: Geometrische Darstellung der Richtcharakteristik (Quelle: in Anlehnung an [55] \u2013 GeoGebra 3D)\nUm die Richtcharakteristik zu visualisieren, werden die berechneten Richtwerte in ei- nem Polarkoordinatendiagramm dargestellt. Dies bedeutet, dass die kartesischen Koor- dinaten in Abh\u00e4ngigkeit vom Winkel angegeben werden. Die Konturen, die sich aus dem Polarkoordinatendiagramm ergeben, beschreiben die horizontale, beziehungsweise vertikale, Richtcharakteristik (siehe Formel 22). \ud835\udf03 = \ud835\udf030 = 0\u00b0 \u2229 0\u00b0 \u2264 \ud835\udf11 \u2264 360\u00b0 Beziehungsweise \ud835\udf11 = \ud835\udf110 = \ud835\udc50\ud835\udc5c\ud835\udc5b\ud835\udc60\ud835\udc61. \u2229 0\u00b0 \u2264 \ud835\udf03 \u2264 360\u00b0\nFormel 22: Konturen des Polarkoordinatendiagramms\nMit: \ud835\udf11: azimutalen Winkel = arctan(y/x) [\u00b0], \ud835\udf03: polar Winkel [\u00b0]\nDie Messpunkte MP in der Ebene, wird durch die Angabe von zwei Koordinaten im kar- tesischen Koordinatensystem [x; y] beschrieben. Von der Quelle Q aus geht ein Vektor mit dem Abstand r zum Messpunkt mit einem Winkel \ud835\udf11 mit 0\u00b0 \u2264 \ud835\udf11 \u2264 360\u00b0 aus. [58]\n20\n2 Grundlagen\n\n## 2.3 Statistik\n\nDie Statistik bezogen auf Messwerte dient dazu, die gesammelten Informationen syste- matisch zu analysieren und interpretieren zu k\u00f6nnen. Durch statistische Methoden k\u00f6n- nen Muster, Trends, Zusammenh\u00e4nge und Unsicherheiten in den Messwerten identifi- ziert werden. Dies erm\u00f6glicht eine zuverl\u00e4ssige und fundierte Aussage \u00fcber die gemes- senen Verladet\u00e4tigkeiten. Im Folgenden werden somit verschiedene statistische Analy- semethoden vorgestellt, die in der Auswertung von Verladeger\u00e4uschen eingesetzt wer- den k\u00f6nnen. [59]\nUm statistische Aussagen treffen zu k\u00f6nnen sind statistische Parameter notwendig, die Aufschluss \u00fcber die Verteilung der Variablen liefern. Bevor \u00fcberhaupt eine statistische Aussage gemacht werden kann, ist eine Gewinnung notwendig, die die eigentliche Da- tenerhebung und eine dahinterliegende Planung umfasst. Bei den erhobenen Daten handelt es sich um eine Prim\u00e4rerhebung, welche immer objektiv, valide und reliabel sind. Objektiv bedeutet, dass die Messung unabh\u00e4ngig von pers\u00f6nlichen Meinungen o- der subjektiven Einsch\u00e4tzungen durchgef\u00fchrt wurde. Die objektive Schallleistungsmes- sung basiert auf den anerkannten Regeln der Technik, sowie festgesetzten Verfahren, um eine genaue und verl\u00e4ssliche Bestimmung der Schallleistung zu erm\u00f6glichen. Valid bedeutet, dass die Erhebungsmethode den beabsichtigten Sachverhalt genau und pr\u00e4- zise misst. Reliabel bedeutet, dass die Messungen unter konstanten Bedingungen wie- derholbar sind. Diese Eigenschaften der Datenerhebung sorgen daf\u00fcr, dass die Daten vertrauensw\u00fcrdig und aussagekr\u00e4ftig sind. [60]\nDie statistische Einheit ist der Beladevorgang, der untersucht und gemessen wird.", - "embedding": [ - 0.012142976745963097, - 0.022195715457201004, - 0.012410788796842098, - -0.02829659730195999, - 0.0049806456081569195, - 0.01358654722571373, - -0.00922317523509264, - -0.005908188410103321, - -0.008164992555975914, - -0.0458545982837677, - 0.021895242854952812, - 0.023175515234470367, - -0.03472407907247543, - 0.00913825910538435, - -0.00039089901838451624, - 6.602161647606408e-06, - 0.03140582516789436, - -0.012188700959086418, - 0.011365669779479504, - 0.008498123846948147, - 0.010353210382163525, - 0.014670858159661293, - -0.004151082132011652, - -0.006162936333566904, - -0.03333929553627968, - 0.028244342654943466, - 0.020850123837590218, - -0.024181442335247993, - -0.021986691281199455, - -0.013233819976449013, - 0.007648964878171682, - -0.003261097939684987, - -0.026441510766744614, - 0.01810668781399727, - -0.016708839684724808, - 0.007766540627926588, - -0.0011177874403074384, - -0.0096150953322649, - 0.020314501598477364, - 0.003094532061368227, - 0.019243253394961357, - 0.009856779128313065, - 0.008772468194365501, - -0.011457117274403572, - 0.007093745283782482, - -0.010261762887239456, - 0.018903590738773346, - -0.02214345894753933, - -0.007753476966172457, - 0.02806144580245018, - 0.001272922265343368, - 0.021777667105197906, - -0.02926333248615265, - 0.0014354056911543012, - 0.018459415063261986, - -0.009667350910604, - 0.00903374794870615, - -0.00047765206545591354, - -0.013416715897619724, - -0.0063719600439071655, - -0.022365547716617584, - -0.011737992987036705, - -0.025448648259043694, - -0.0028201884124428034, - -0.03028232418000698, - -0.0038408124819397926, - -0.011933952569961548, - -0.002477258676663041, - -0.01906035840511322, - 0.001868150313384831, - 0.015533081255853176, - 0.03710172697901726, - 0.0037069066893309355, - 0.0157421063631773, - 0.030569732189178467, - -0.0019857261795550585, - 0.007185193244367838, - 0.004206604324281216, - -0.0009659185889177024, - 0.0008573242230340838, - 0.015180354006588459, - -0.017649447545409203, - -0.018185071647167206, - 0.028035318478941917, - 0.009432199411094189, - -0.011920888908207417, - -0.02381565049290657, - 0.022117331624031067, - -0.0290543083101511, - -0.0005037800292484462, - -0.008295631967484951, - 0.019935645163059235, - 0.0031533201690763235, - 0.0016338150016963482, - 0.021686220541596413, - -0.008053948171436787, - 0.002459295792505145, - 0.011822909116744995, - -0.005320309195667505, - -0.01126115769147873, - -0.014448770321905613, - -0.01570291258394718, - 0.013495099730789661, - -0.005924518685787916, - -0.01707463152706623, - -0.015376313589513302, - -0.008543848060071468, - 0.01192742120474577, - -0.0008891676552593708, - -0.027486629784107208, - -0.0228227861225605, - 0.006636505946516991, - -0.013612675480544567, - -0.002480524592101574, - 0.04109930619597435, - -0.012449980713427067, - 0.03480246290564537, - -0.013135840184986591, - -0.01920406147837639, - -0.009536711499094963, - 0.028087573125958443, - 0.010627553798258305, - 0.016891736537218094, - -0.01141139306128025, - 0.04047223553061485, - -0.007296237163245678, - -0.004301317967474461, - -0.007779604755342007, - -0.030021043494343758, - -0.020131604745984077, - 0.00026821999927051365, - 0.0004180476244073361, - 0.0052713192999362946, - 0.029576867818832397, - 0.01069287396967411, - 0.009765330702066422, - -0.018864398822188377, - -0.0022763998713344336, - -0.03171936422586441, - -0.031876131892204285, - 0.03289512172341347, - 0.01998790167272091, - -0.029132692143321037, - -0.032973505556583405, - -0.01242385245859623, - 0.006244586315006018, - 0.019034231081604958, - 0.001850187312811613, - 0.016774160787463188, - -0.013168499805033207, - 0.005999636370688677, - -0.019465342164039612, - 0.018642310053110123, - 0.0021702549420297146, - -0.018315711989998817, - 0.000973267073277384, - 0.007799200713634491, - 0.044234663248062134, - -0.003265996929258108, - 0.008961895480751991, - -0.007531389128416777, - 0.018158942461013794, - 0.008524252101778984, - -0.00889657624065876, - 0.022300226613879204, - 0.0169048011302948, - -0.0053399051539599895, - 0.014409578405320644, - 0.006198862101882696, - -0.005026369355618954, - -0.0016362644964829087, - 0.016878671944141388, - -0.013651867397129536, - 0.02104608528316021, - 0.000640951911918819, - 0.008988023735582829, - 0.0020592110231518745, - 0.008700615726411343, - -0.019935645163059235, - -0.026088783517479897, - -0.021202852949500084, - 0.009856779128313065, - 0.0038538763765245676, - 0.017597191035747528, - -0.013018263503909111, - 0.01612096093595028, - 0.004814079497009516, - 0.023110194131731987, - -0.010444658808410168, - -0.008831256069242954, - 0.0073354290798306465, - 0.019465342164039612, - 0.01717914454638958, - -0.03454118221998215, - -0.6182923913002014, - 0.011156645603477955, - -0.011796780861914158, - -0.020144669339060783, - -0.0018632513238117099, - 0.020954636856913567, - 0.022666018456220627, - -0.0003208841953892261, - -0.009595499373972416, - 0.04739614948630333, - 0.0006131909321993589, - 0.008981491439044476, - -0.0050165713764727116, - 0.0019857261795550585, - -0.02132042869925499, - -0.0267289187759161, - -0.004356840159744024, - 0.001139016472734511, - 0.03323478624224663, - 0.0016387139912694693, - -0.030256196856498718, - 0.004941453225910664, - 0.0005466462462209165, - 0.016277728602290154, - 0.003964920528233051, - 0.02182992361485958, - 0.03017781302332878, - -0.017806215211749077, - 0.012325872667133808, - 0.004536469932645559, - -0.022509250789880753, - 0.001397030195221305, - -0.014017659239470959, - 0.0075901770032942295, - 0.04122994467616081, - -0.005454214755445719, - 0.0013872322160750628, - 0.02730373479425907, - 0.023867905139923096, - 0.0036513847298920155, - -0.014135234989225864, - -0.025043664500117302, - 0.009131727740168571, - -0.020993828773498535, - -0.0018746822606772184, - 0.005535864736884832, - 0.041256073862314224, - -0.00814539659768343, - -0.007315833121538162, - -0.04201378673315048, - -0.001959598157554865, - 0.005529332906007767, - 0.022535379976034164, - 0.004833675455302, - 0.028688518330454826, - -0.01153550110757351, - 0.006496068090200424, - -0.017153015360236168, - -0.03145808354020119, - -0.00023535591026302427, - -0.02009241282939911, - 0.008308696560561657, - 0.002289463998749852, - -0.0181720070540905, - -0.0020461471285670996, - 0.006319703999906778, - -0.02279665879905224, - -0.012907220050692558, - 0.02343679405748844, - -0.004778153728693724, - -0.0023221238516271114, - 0.024338210001587868, - -0.008151928894221783, - -0.014853754080832005, - 0.02874077297747135, - 0.02491302415728569, - 0.021333491429686546, - -0.014579410664737225, - 0.001954699167981744, - 0.01519341766834259, - -0.0007793485419824719, - 0.0037265026476234198, - -0.009092535823583603, - 0.015520017594099045, - 0.014383451081812382, - -0.02658521570265293, - -0.007002297323197126, - 0.030883267521858215, - 0.013860891573131084, - 0.015454697422683239, - 0.008583039976656437, - 0.03017781302332878, - -0.004987177439033985, - -0.009014151990413666, - 0.004947985522449017, - 0.029080437496304512, - -0.017440423369407654, - 0.00823031272739172, - 0.0032496668864041567, - -0.04473109543323517, - -0.029655253514647484, - -0.0003225172113161534, - 0.0075640492141246796, - -0.0009291761671192944, - 0.012208296917378902, - 0.008850852027535439, - -0.015820490196347237, - 0.003883270313963294, - 0.00925583578646183, - -0.05191628634929657, - -6.155638857308077e-06, - -0.022261034697294235, - -0.0127308564260602, - -0.004778153728693724, - -0.004781419411301613, - -0.033626705408096313, - 0.044574327766895294, - -0.006198862101882696, - 0.002689548535272479, - -0.007792668882757425, - 0.010444658808410168, - -0.012162572704255581, - 0.029446229338645935, - -0.02480851300060749, - -0.007074149325489998, - 0.03135357052087784, - -0.0019775612745434046, - 0.009340750984847546, - -0.00011655526759568602, - -0.010954153724014759, - 0.034306030720472336, - -0.0026127975434064865, - 0.00894883181899786, - -0.020797869190573692, - 0.029446229338645935, - 0.01618628017604351, - 0.02094157226383686, - -0.02392016164958477, - -0.0021931170485913754, - -0.03788556531071663, - -0.036840446293354034, - -0.00530397891998291, - 0.01541550550609827, - -0.029916532337665558, - -0.015768233686685562, - -0.04384274408221245, - -0.008073544129729271, - 0.0038865364622324705, - 0.02081093192100525, - -0.005989838391542435, - 0.010516510345041752, - -0.020066285505890846, - -0.0015113401459529996, - 0.04287600889801979, - 0.007002297323197126, - 0.0009291761671192944, - -0.01920406147837639, - -0.01469698641449213, - -0.010379338636994362, - -0.016434496268630028, - 0.014892945997416973, - 0.021124469116330147, - -0.03840812295675278, - -0.010072334669530392, - -0.013547355309128761, - -0.02666359953582287, - -0.0119404848664999, - -0.0020085880532860756, - -0.017871536314487457, - -0.04018482565879822, - 0.005813474766910076, - 0.012828836217522621, - -0.01228668075054884, - 0.0010067435214295983, - -0.009053343906998634, - -0.0008516086963936687, - -0.019190998747944832, - -0.006963105406612158, - -0.007381153292953968, - -0.02378952130675316, - 0.024011610075831413, - -0.004494011867791414, - -0.03958388417959213, - -0.0021065680775791407, - 0.019922582432627678, - 0.02279665879905224, - 0.016682712361216545, - 0.026049591600894928, - -0.015310993418097496, - 0.017335912212729454, - -0.011365669779479504, - 0.03284286707639694, - -0.01380863506346941, - 0.016238536685705185, - -0.02871464565396309, - 0.010895365849137306, - 0.015885809436440468, - -0.00616946816444397, - -0.007048021536320448, - 0.025344137102365494, - 0.03670980781316757, - 0.0015031751245260239, - 0.04068125784397125, - -0.01541550550609827, - 0.016656585037708282, - -0.001716281403787434, - 0.01802830398082733, - -0.01220176462084055, - 0.026650534942746162, - 0.029184948652982712, - 0.012966007925570011, - -0.0096150953322649, - -0.045906852930784225, - 0.002519716741517186, - 0.013429779559373856, - 0.031431954354047775, - 0.0030243131332099438, - 0.01666964776813984, - 0.03004717268049717, - -0.017401231452822685, - -3.345095319673419e-05, - -0.0008042517583817244, - 0.027225350961089134, - 0.011901292949914932, - -0.007002297323197126, - -0.010464254766702652, - 0.0011365669779479504, - 0.0021392279304564, - 0.0037526304367929697, - -0.018642310053110123, - -0.01618628017604351, - -0.009628158994019032, - -0.003817950375378132, - -0.004755291622132063, - -0.006786741781979799, - 0.020027093589305878, - -0.009739203378558159, - -0.002823454327881336, - 0.04530591145157814, - 0.0038898023776710033, - 0.01734897680580616, - 0.006176000460982323, - 0.006045360583811998, - -0.00970001146197319, - 0.011829441413283348, - -0.02235248312354088, - 0.018041366711258888, - 0.008765935897827148, - -0.005343170836567879, - -0.0023172248620539904, - -0.01785847172141075, - 0.0037820246070623398, - -0.004033506382256746, - -0.0055097369477152824, - 0.027591142803430557, - -0.006293576210737228, - 0.030203940346837044, - 0.002121265046298504, - 0.004046570044010878, - 0.016578201204538345, - 0.005882060620933771, - 0.008615699596703053, - 0.015820490196347237, - -0.006541791837662458, - 0.0042915199883282185, - 0.016578201204538345, - -0.01878601498901844, - -0.01625160127878189, - -0.013873955234885216, - -0.003964920528233051, - -0.00438949977979064, - 0.013965402729809284, - -0.007472601253539324, - 0.015219545923173428, - 0.01295294426381588, - -0.015493889339268208, - 0.003883270313963294, - 0.029759764671325684, - 0.016329985111951828, - -0.004693237598985434, - -0.022365547716617584, - -0.019073422998189926, - -0.008694084361195564, - 0.03255545720458031, - -0.004040038213133812, - -0.03603047877550125, - 0.009399538859724998, - -0.01047078613191843, - -0.022783594205975533, - -0.012959475629031658, - -0.002199648879468441, - -0.008119268342852592, - -0.00461158761754632, - -0.010745130479335785, - 0.01179024949669838, - 0.007322365418076515, - 0.012913752347230911, - -0.008302164264023304, - -0.014043786562979221, - 0.026441510766744614, - 0.009869842790067196, - -0.023110194131731987, - -0.008106204681098461, - -0.017675574868917465, - 0.03556017577648163, - 0.0077012209221720695, - -0.015872744843363762, - -0.02333228290081024, - 0.003412966849282384, - -0.024011610075831413, - -0.013070520013570786, - -0.006541791837662458, - -0.0030520742293447256, - 0.02330615371465683, - 0.004967581480741501, - -0.0069435094483196735, - 0.0231363233178854, - -0.012103784829378128, - 0.03576919808983803, - -0.0008001692476682365, - -0.003314986824989319, - -0.009732671082019806, - 0.017597191035747528, - 0.0021882180590182543, - 0.001338242320343852, - 0.01810668781399727, - 0.0031680171377956867, - 0.012502236291766167, - -0.010477318428456783, - 0.002278032945469022, - 0.0006376859382726252, - -0.03610886260867119, - 0.0027042455039918423, - -0.0018028303747996688, - 0.003012882312759757, - 0.006378491874784231, - 0.023293090984225273, - 0.004631183575838804, - 0.003301922930404544, - -0.01403072290122509, - 0.007962500676512718, - -0.019047293812036514, - 0.026101848110556602, - 0.02827046997845173, - -0.025265753269195557, - -0.003377040848135948, - 0.0071982573717832565, - 0.03344380855560303, - -0.00811273604631424, - -0.01830264739692211, - 0.017949920147657394, - 0.009628158994019032, - 0.012319340370595455, - -0.03976678103208542, - -0.029550740495324135, - 0.03049134835600853, - 0.0018469212809577584, - 0.01652594469487667, - -0.01768863946199417, - -0.00886391568928957, - -0.00975226704031229, - -0.0035991286858916283, - -0.00252788164652884, - -0.018864398822188377, - 0.014932137914001942, - 0.018838271498680115, - 0.007257045246660709, - -0.020641101524233818, - 0.01148324552923441, - -0.01823732629418373, - 0.018981974571943283, - 0.0004253961087670177, - 0.00433724420145154, - 0.008413208648562431, - 0.0010541005758568645, - -0.033313170075416565, - -0.008628764189779758, - -0.008426272310316563, - -0.010875769890844822, - -0.02288810722529888, - 0.012071125209331512, - -0.010300954803824425, - -0.0007960867369547486, - -0.03660529479384422, - -0.024560296908020973, - -0.02100689336657524, - 0.0380423329770565, - -0.016787225380539894, - -0.02375032939016819, - -0.007348493207246065, - -0.003925728145986795, - -0.015598401427268982, - -0.018015239387750626, - -0.01139832939952612, - 0.0022078140173107386, - -0.0035762665793299675, - -0.017819279804825783, - -0.00858957227319479, - 0.02590588852763176, - -0.001300683245062828, - 0.012404256500303745, - -0.002823454327881336, - -0.004941453225910664, - -0.002444598823785782, - -0.01697012037038803, - -0.007583645172417164, - -0.0038538763765245676, - -0.03516825661063194, - -0.013442843221127987, - 0.031876131892204285, - -0.002637292491272092, - 0.01452715415507555, - -0.010483850724995136, - 0.014892945997416973, - -0.026493767276406288, - 0.010738598182797432, - -0.0025621745735406876, - -0.01108479406684637, - -0.007368089165538549, - 0.024612553417682648, - 0.014082979410886765, - 0.014043786562979221, - 0.018629247322678566, - -0.012182168662548065, - 0.026885686442255974, - -0.022091204300522804, - 0.009732671082019806, - 0.004559331573545933, - 0.016721904277801514, - 0.011986209079623222, - 0.013521227054297924, - -0.0028022252954542637, - -0.0021555579733103514, - -0.0024527637287974358, - 0.0035076807253062725, - -0.024782385677099228, - 0.008988023735582829, - -0.01622547209262848, - -0.007211321499198675, - -0.012841899879276752, - 0.013148903846740723, - 0.0015064411563798785, - 0.02036675624549389, - -0.017976047471165657, - -0.007596708834171295, - -0.01872069388628006, - 0.012587152421474457, - -0.004921857267618179, - -0.0011929053580388427, - 0.05160275101661682, - -0.019347766414284706, - 0.0013627372682094574, - -0.04172637686133385, - -0.009464859031140804, - 0.016473688185214996, - 0.007681624963879585, - 0.01669577695429325, - 0.005006773397326469, - -0.028688518330454826, - -0.015611466020345688, - -0.01425281073898077, - 0.0013366092462092638, - -0.014109106734395027, - -0.005849400535225868, - -0.011195837520062923, - 0.02009241282939911, - -0.01314237155020237, - 0.0084524005651474, - 0.025579288601875305, - -0.02915882132947445, - -0.03900906816124916, - 0.019974837079644203, - 0.007884116843342781, - 0.02423369698226452, - -0.027329862117767334, - -0.023384537547826767, - -0.01153550110757351, - -0.015219545923173428, - -0.022875042632222176, - -0.042693112045526505, - -0.009334219619631767, - -0.0115681616589427, - 0.007655496709048748, - 0.0009895970579236746, - 0.031980641186237335, - 0.000535215251147747, - -0.002918168203905225, - 0.03083101101219654, - -0.01286802813410759, - 0.0024527637287974358, - -0.008099672384560108, - -0.0017081163823604584, - -0.04376436024904251, - 0.038617148995399475, - 0.01041853055357933, - 0.0035860647913068533, - 0.016408368945121765, - -0.010967218317091465, - 0.003791822586208582, - 0.04023708403110504, - -0.010255230590701103, - -0.0036644486244767904, - -0.004105358384549618, - -0.025670737028121948, - -0.005927784368395805, - -0.0028789762873202562, - 0.015428570099174976, - 0.020236117765307426, - -0.019517598673701286, - -0.001485212123952806, - 0.00536276726052165, - -0.01882520690560341, - -0.028453364968299866, - -0.0008434437331743538, - 0.024220634251832962, - -0.04454819858074188, - 0.03642239794135094, - -0.0012076023267582059, - 0.010679810307919979, - -0.018981974571943283, - 0.0014688821975141764, - 0.0054411510936915874, - -0.014801498502492905, - 0.02111140452325344, - 0.0035632026847451925, - 0.032973505556583405, - -0.006714889779686928, - 0.0026732184924185276, - 0.006182532291859388, - -0.013821699656546116, - 0.01562452968209982, - -0.031092291697859764, - -0.003187613096088171, - -0.016447560861706734, - -0.008458931930363178, - -0.035194382071495056, - -0.017401231452822685, - -0.021790731698274612, - 0.013900083489716053, - 0.011215433478355408, - 0.00391919631510973, - 0.02354130707681179, - -0.012528364546597004, - -0.01673496887087822, - 0.00930809136480093, - -0.005741622764617205, - 0.029655253514647484, - -0.01069287396967411, - 0.021647028625011444, - 0.03537727892398834, - -0.03853876516222954, - -0.01570291258394718, - -0.04028933867812157, - -0.006554855965077877, - -0.004562597721815109, - 0.01751880720257759, - 0.0036709806881844997, - -0.015833552926778793, - -0.003043909091502428, - 0.009595499373972416, - 0.01005927100777626, - -0.012972540222108364, - -0.0035730006638914347, - 0.055077772587537766, - 0.019765812903642654, - 0.018838271498680115, - -0.00864182785153389, - 0.03514212742447853, - -0.02881915681064129, - -0.006345832254737616, - 0.019112614914774895, - -0.0046834396198391914, - -0.021842988207936287, - 0.013795571401715279, - -0.008883511647582054, - 0.033652834594249725, - 0.012031933292746544, - 0.016891736537218094, - 0.015611466020345688, - -0.02738211862742901, - 0.007002297323197126, - -0.024168377742171288, - -0.009686946868896484, - 0.019073422998189926, - -0.019360831007361412, - 0.025683799758553505, - -0.008498123846948147, - -0.0028430502861738205, - 0.006153138354420662, - -0.005744888912886381, - 0.013795571401715279, - -0.0006972903502173722, - -0.012227892875671387, - 0.020275309681892395, - -0.03203289955854416, - -0.009660818614065647, - 0.021790731698274612, - -8.961078856373206e-05, - 0.013952339068055153, - 0.004314382094889879, - -0.027774037793278694, - -0.023619690909981728, - 0.006747549865394831, - -0.011424457654356956, - 0.0003819175180979073, - 0.005888592451810837, - -0.008243376389145851, - -0.00988943874835968, - -0.006672431714832783, - -0.015833552926778793, - -0.011293817311525345, - -0.016408368945121765, - 0.009961291216313839, - -0.03812071681022644, - -0.019530661404132843, - -0.011300349608063698, - 0.00290510430932045, - 0.01861618272960186, - 0.009131727740168571, - -0.009543242864310741, - -0.008360952138900757, - 0.03192838653922081, - -0.043921127915382385, - -0.003582798643037677, - 0.02816595882177353, - -0.02761727012693882, - -0.010104994289577007, - 0.003252933034673333, - 0.006989233661442995, - -0.018629247322678566, - 0.04209217056632042, - -0.008354419842362404, - -0.014553282409906387, - -0.029028180986642838, - -0.009856779128313065, - 0.006045360583811998, - -0.01861618272960186, - -0.005019837524741888, - 0.007524856831878424, - 0.020954636856913567, - -0.0017979313852265477, - -0.016160152852535248, - 0.01201233733445406, - -0.003690576646476984, - 0.016604328528046608, - -0.0015488991048187017, - 0.019047293812036514, - -0.01785847172141075, - 0.01011152658611536, - 0.019073422998189926, - -0.0038767384830862284, - 0.00939300749450922, - -0.0255662240087986, - -0.016852544620633125, - 0.019857261329889297, - 0.022639891132712364, - -0.022300226613879204, - 0.01830264739692211, - -0.008328292518854141, - -0.0204973965883255, - -0.010738598182797432, - 0.03200677037239075, - 0.005068827420473099, - 0.01541550550609827, - 0.01789766363799572, - -0.00291653536260128, - -0.01148324552923441, - 0.036161117255687714, - 0.008040884509682655, - -0.0215555801987648, - 0.019008101895451546, - 0.012685132212936878, - -0.02816595882177353, - 0.0232408344745636, - -0.013638803735375404, - 0.021647028625011444, - 0.03313027322292328, - -0.023502115160226822, - -0.0014827626291662455, - 0.015101970173418522, - -0.013240351341664791, - -0.012809240259230137, - -0.012051529251039028, - 0.012312809005379677, - -0.008929235860705376, - 0.020850123837590218, - -0.027120839804410934, - 0.018838271498680115, - -0.0024935887195169926, - 0.03281673789024353, - -0.0028479492757469416, - 0.006799805909395218, - 0.004516873974353075, - 0.00572202680632472, - 0.014487962238490582, - -0.01144405361264944, - -0.024612553417682648, - -0.008445868268609047, - 0.03383572772145271, - -0.009680415503680706, - -0.0043339780531823635, - 0.030517475679516792, - -0.013482035137712955, - -0.02412918582558632, - 0.002348251873627305, - 0.019034231081604958, - 0.019896453246474266, - 0.002080440055578947, - 0.0018371233018115163, - -0.02307100221514702, - -0.01580742560327053, - 0.005695898551493883, - 0.027434375137090683, - -0.030256196856498718, - 0.01002661045640707, - 0.032424818724393845, - -0.019138742238283157, - -0.010934557765722275, - 0.0220781397074461, - -0.012926816008985043, - 0.0042588599026203156, - -0.013083583675324917, - 0.04697810113430023, - 0.024926088750362396, - -0.008798595517873764, - 0.013991530984640121, - 0.023933226242661476, - -0.0107255345210433, - -0.012933348305523396, - 0.0030145151540637016, - -0.010973749682307243, - -0.004709567874670029, - 0.008347888477146626, - 0.00416741194203496, - 0.026088783517479897, - -0.024220634251832962, - 0.007250513415783644, - -0.0001778947771526873, - -0.0069500417448580265, - -0.039374858140945435, - -0.030412964522838593, - -0.03600434958934784, - 0.02785242162644863, - 0.03412313759326935, - -0.006009434349834919, - 0.016316920518875122, - -0.026206359267234802, - -0.013031328096985817, - -0.004902261309325695, - -0.00922317523509264, - 0.0021424940787255764, - -0.00628051208332181, - -0.00436337199062109, - 0.00416741194203496, - -0.02009241282939911, - -0.011640013195574284, - 0.002020019106566906, - -0.006407886277884245, - -0.03801620379090309, - -0.001614219043403864, - 0.1916748285293579, - -0.014670858159661293, - -0.0007899629999883473, - 0.014461834914982319, - -0.028871413320302963, - -0.030569732189178467, - 0.02176460437476635, - -0.005467278882861137, - 0.011907825246453285, - 0.018080558627843857, - 0.02111140452325344, - 0.007577112875878811, - -0.009334219619631767, - 0.01734897680580616, - 0.017270591109991074, - -0.017806215211749077, - -0.020732548087835312, - -0.017401231452822685, - -0.009484454989433289, - 0.023018747568130493, - 0.029576867818832397, - -0.0077273487113416195, - -0.011248094029724598, - -0.011248094029724598, - 0.03976678103208542, - 0.020353693515062332, - -0.016499817371368408, - 0.0011937218951061368, - 0.04365984722971916, - 0.014657794497907162, - -0.01755799911916256, - -0.0005123532610014081, - 0.010183378122746944, - 0.006420949939638376, - -0.0076163047924637794, - 0.014292002655565739, - -0.004761823453009129, - -0.006643037777394056, - 0.0314842127263546, - 0.011169709265232086, - 0.010483850724995136, - -0.02939397282898426, - -0.0027646664530038834, - -0.0219736285507679, - 0.025239624083042145, - 0.018093623220920563, - -0.010549169965088367, - 0.005522801075130701, - 0.004689971450716257, - 0.02152945287525654, - -0.012058060616254807, - -0.006734485737979412, - 0.007426877040416002, - 0.04339856654405594, - -0.009471391327679157, - -0.02819208614528179, - 0.018603118136525154, - -0.01358654722571373, - 0.008609168231487274, - -0.005356234963983297, - -0.03778105229139328, - 0.015663720667362213, - -0.03626563027501106, - 0.025997335091233253, - -0.02785242162644863, - 0.022456996142864227, - -0.03245094418525696, - -0.004814079497009516, - -0.012103784829378128, - -0.028139829635620117, - 0.005258255172520876, - -0.013913147151470184, - -0.0238809697329998, - 0.010457722470164299, - -0.023528242483735085, - -0.03657916560769081, - 0.001596256042830646, - 0.0016297325491905212, - 0.02423369698226452, - 0.04475722089409828, - -0.009164387360215187, - 0.009543242864310741, - -0.011248094029724598, - -0.02552703209221363, - 0.0006801438867114484, - -0.014135234989225864, - 0.005983306560665369, - 0.013429779559373856, - 0.015925001353025436, - -0.01184250507503748, - -0.0006160486955195665, - 0.009562838822603226, - -0.00029740986065007746, - 0.013253415934741497, - 0.00650259992107749, - -0.006153138354420662, - -0.015402441844344139, - 0.0024413326755166054, - -0.007988628931343555, - 0.00018156901933252811, - -0.021581707522273064, - 0.0718519315123558, - 0.03281673789024353, - -0.01779315248131752, - 0.0018485542386770248, - -0.010653682053089142, - 0.007936372421681881, - 0.021503323689103127, - 0.011777184903621674, - -0.019347766414284706, - -0.01902116648852825, - -0.029968788847327232, - 0.020510461181402206, - -0.026506831869482994, - 0.005065561272203922, - 0.0011063565034419298, - -0.0006483003962785006, - 0.028897540643811226, - -0.011156645603477955, - 0.0014280572067946196, - -0.0007479133200831711, - -0.007172129582613707, - -0.0045462679117918015, - 0.004294786136597395, - 0.008027820847928524, - -0.0365530364215374, - -0.032294176518917084, - 0.015036650002002716, - 0.0028022252954542637, - 0.009183983318507671, - 0.039374858140945435, - -0.019765812903642654, - 0.025958143174648285, - 0.0016640254762023687, - 0.009464859031140804, - -0.0036775125190615654, - -0.013900083489716053, - -0.027329862117767334, - -0.009112131781876087, - 0.005996370688080788, - 0.010287890210747719, - -0.017505744472146034, - 0.01508890651166439, - -0.009190515615046024, - 0.012175636366009712, - -0.013390587642788887, - -0.009059875272214413, - 0.0020330832339823246, - -0.022182650864124298, - -0.027878550812602043, - -0.012541428208351135, - -0.006100882310420275, - -0.00944526307284832, - -0.027538886293768883, - -0.008759403601288795, - 0.006326236296445131, - -0.018158942461013794, - -0.028793029487133026, - 0.01358654722571373, - 0.009177451953291893, - 0.0016803554026409984, - -0.00864182785153389, - 0.0060551585629582405, - -0.013560419902205467, - 0.011992741376161575, - -0.0019857261795550585, - -0.16387467086315155, - 0.01916486956179142, - 0.018668439239263535, - -0.019791942089796066, - 0.01909955032169819, - 0.001287619350478053, - 0.023280026391148567, - 0.013625739142298698, - -0.007831860333681107, - 0.009432199411094189, - 0.03328704088926315, - -0.0019498001784086227, - -0.021137531846761703, - -0.016878671944141388, - -0.007969032973051071, - -0.01563759334385395, - -0.02436433732509613, - 0.03114454634487629, - 0.019622109830379486, - 0.023280026391148567, - 0.010144186206161976, - -0.035194382071495056, - 0.013116244226694107, - 0.02696407027542591, - -0.006264182273298502, - 0.008067012764513493, - -0.015990320593118668, - 0.030621986836194992, - -0.01430506631731987, - -0.014213618822395802, - -0.005287649109959602, - -0.006623441819101572, - 0.026911815628409386, - -0.011947017163038254, - -0.0014909276505932212, - -0.0027140434831380844, - -0.02028837241232395, - 0.009517115540802479, - -0.019138742238283157, - 0.01768863946199417, - 0.025069793686270714, - 0.02070642076432705, - -0.013305671513080597, - 0.028244342654943466, - -0.00811273604631424, - 0.03788556531071663, - 0.0226137638092041, - -0.015898874029517174, - -0.01656513661146164, - -0.014840690419077873, - -0.003922462463378906, - -0.021059148013591766, - 0.02385484240949154, - 0.015245674178004265, - 0.005617514718323946, - -0.002457662718370557, - -0.014448770321905613, - 0.020614972338080406, - -0.006198862101882696, - -0.01105213351547718, - -0.0016093200538307428, - -0.02286197803914547, - 0.00785145629197359, - -0.012796176597476006, - 0.0058689964935183525, - -0.015729041770100594, - 0.007681624963879585, - 0.019282445311546326, - -0.04133445769548416, - -0.005646908655762672, - -0.00661364383995533, - -0.023044874891638756, - 0.0059441146440804005, - -0.0009169286349788308, - -0.0016966854454949498, - 0.008792064152657986, - 0.0017358773620799184, - 0.000858140701893717, - 0.005924518685787916, - -0.002509918762370944, - -0.03083101101219654, - 0.042379576712846756, - 0.003579532727599144, - -0.027695653960108757, - -0.006936977617442608, - -0.00900108739733696, - -0.011515905149281025, - 0.020066285505890846, - -0.008942299522459507, - -0.012848432175815105, - 0.020196925848722458, - -0.02580137550830841, - -0.0017995643429458141, - -0.0030471752397716045, - 0.002287830924615264, - -0.002196382964029908, - -0.008916172198951244, - -0.005039433483034372, - -0.012456512078642845, - -0.009197047911584377, - 0.01810668781399727, - -0.01857699081301689, - -0.03859101980924606, - 0.017022376880049706, - 0.011378733441233635, - 0.01314237155020237, - -0.0220781397074461, - 0.012018868699669838, - 0.04828450083732605, - 0.001946534146554768, - -0.01098681427538395, - -0.00944526307284832, - 0.007942904718220234, - 0.01139832939952612, - -0.015454697422683239, - 0.01707463152706623, - -0.009948226623237133, - -0.002967158332467079, - 0.004601789638400078, - -0.01697012037038803, - 0.04739614948630333, - -0.011365669779479504, - 0.014540218748152256, - 0.02337147481739521, - -0.009843714535236359, - -0.03438441455364227, - -0.07550985366106033, - 0.003314986824989319, - 0.023397602140903473, - 0.022195715457201004, - 0.020027093589305878, - 0.03164098039269447, - -0.00814539659768343, - -0.005130881443619728, - -0.001660759444348514, - 0.04663843661546707, - -0.028348853811621666, - -0.018563926219940186, - -0.02457336150109768, - -0.011065198108553886, - 0.012789644300937653, - -0.009797991253435612, - 0.009059875272214413, - -0.04653392359614372, - -0.03255545720458031, - 0.03579532727599144, - -0.02347598597407341, - -0.0033509128261357546, - 0.0011422823881730437, - 0.0061172121204435825, - -0.017910728231072426, - 0.007034957408905029, - -0.0359259657561779, - -0.0014051952166482806, - 0.020719485357403755, - 0.005953912623226643, - 0.02026224508881569, - -0.03344380855560303, - 0.005281117279082537, - -0.03412313759326935, - -0.013207691721618176, - -0.02542252093553543, - -0.01762332022190094, - -0.0034619567450135946, - 0.035507917404174805, - 0.00048826655256561935, - -0.002358049852773547, - 0.008792064152657986, - 0.004591991659253836, - 0.0036317885387688875, - -0.003197411075234413, - -0.004784685559570789, - -0.015376313589513302, - 0.026885686442255974, - 0.015533081255853176, - 0.009967822581529617, - -0.019831134006381035, - -0.026506831869482994, - -0.02586669661104679, - 0.010784322395920753, - 0.013390587642788887, - 6.267269782256335e-06, - -0.0026405586395412683, - -0.0028201884124428034, - -0.007250513415783644, - 0.0006405436433851719, - -0.03323478624224663, - 0.025108985602855682, - -0.030987778678536415, - 0.04065512865781784, - -0.012090721167623997, - 0.006930445786565542, - -0.0314842127263546, - 0.0034390948712825775, - 0.015480825677514076, - -0.006097616162151098, - -0.007250513415783644, - 0.016160152852535248, - -0.0017554733203724027, - -0.008746339939534664, - -0.03637014329433441, - 0.008857383392751217, - -0.06626054644584656, - -9.87964085652493e-05, - 0.02115059643983841, - -0.031092291697859764, - 0.000881002692040056, - -0.02651989459991455, - 0.023998545482754707, - -0.01906035840511322, - 0.04851965233683586, - 0.03310414403676987, - -0.016238536685705185, - -0.02269214764237404, - 0.02169928327202797, - -0.006897785700857639, - -0.010967218317091465, - 0.022287163883447647, - 0.030569732189178467, - -0.021189788356423378, - -0.014814562164247036, - 0.0006972903502173722, - 0.01358654722571373, - -0.015232609584927559, - 0.006812869571149349, - 0.015467762015759945, - -0.00469650374725461, - -0.010843110270798206, - -0.041935402899980545, - 0.021673155948519707, - 0.022901169955730438, - -0.006257650442421436, - -0.030256196856498718, - -0.013357928022742271, - 0.01956985332071781, - 0.007720816880464554, - 0.02011854201555252, - 0.0009291761671192944, - -0.0011496309889480472, - 0.006496068090200424, - -0.034750208258628845, - -0.01646062545478344, - -0.03511599823832512, - -0.05225595086812973, - -0.006417684257030487, - 0.020314501598477364, - 0.010686341673135757, - -0.01122196577489376, - -0.010176846757531166, - 0.0203928854316473, - 0.011731460690498352, - 0.014932137914001942, - -0.03545566275715828, - -0.006042094435542822, - -0.011548565700650215, - 0.0018436552491039038, - -0.016303857788443565, - 0.0028822424355894327, - -0.0010132755851373076, - 0.002302527893334627, - 0.002011854201555252, - 0.03974065184593201, - 0.005437884945422411, - -0.01327954325824976, - 0.00900108739733696, - 0.04410402476787567, - 0.014292002655565739, - 0.06411805003881454, - -0.010941090062260628, - -0.02683343179523945, - 0.004621385596692562, - -0.008569976314902306, - 0.002513184677809477, - 0.032294176518917084, - -0.0031647509895265102, - -0.0012606747914105654, - 0.0116204172372818, - -0.016617393121123314, - 0.03482859209179878, - 0.011019473895430565, - 0.009948226623237133, - -0.018590055406093597, - 0.014762306585907936, - -0.013821699656546116, - 0.006734485737979412, - -0.0014403046807274222, - 0.022182650864124298, - -0.024612553417682648, - 0.0388784296810627, - 0.010575298219919205, - 0.010353210382163525, - -0.018354903906583786, - -0.0020820731297135353, - -0.031562596559524536, - -0.03853876516222954, - -0.006646303925663233, - 0.018707631155848503, - -0.04008031636476517, - -0.009686946868896484, - -0.012554492801427841, - 0.014435706660151482, - 0.020405950024724007, - -0.00013115019828546792, - -0.01783234439790249, - 0.0038440783973783255, - -0.01055570226162672, - -0.0005825721891596913, - 0.02381565049290657, - 0.021842988207936287, - 0.010398934595286846, - -0.0034488928504288197, - -0.017022376880049706, - 0.04410402476787567, - 0.024821577593684196, - -0.020275309681892395, - -0.019935645163059235, - 0.006512397900223732, - 0.009726138785481453, - -0.005075359251350164, - 0.028322726488113403, - -0.009366879239678383, - 0.012939879670739174, - 0.02837498113512993, - 0.004791217390447855, - -0.011999272741377354, - -0.012619812041521072, - 0.03388798609375954, - 0.024455785751342773, - -0.012992136180400848, - 0.007498729042708874, - -0.003984516486525536, - -0.0182765182107687, - 9.843918815022334e-05, - 0.007779604755342007, - -0.012280148454010487, - -0.026702791452407837, - 0.0024478647392243147, - 0.013050924055278301, - -0.004895729478448629, - -0.0031206600833684206, - -0.0024511306546628475, - 0.0029638921841979027, - -0.008001692593097687, - 0.020027093589305878, - -0.031327441334724426, - -0.010621022433042526, - -0.007394216954708099, - 0.013077052310109138, - 0.021607836708426476, - 0.015990320593118668, - -0.010653682053089142, - -0.0007785320049151778, - 0.015389378182590008, - -0.021059148013591766, - 0.03195451572537422, - -0.01069287396967411, - 0.011026006191968918, - 0.0016713739605620503, - 0.011751057580113411, - 0.016160152852535248, - -0.004637715872377157, - -0.012058060616254807, - -0.009373411536216736, - -0.0022486390080302954, - 0.014448770321905613, - 0.01375637948513031, - 0.0006344199064187706, - 0.11255931854248047, - 0.02655908651649952, - -0.010235634632408619, - 0.020445141941308975, - 0.0044711497612297535, - 0.007028425578027964, - 0.006202128250151873, - -0.004856537561863661, - -0.006247851997613907, - -0.05972855165600777, - 0.003994314465671778, - -0.014187490567564964, - 0.0059114545583724976, - -0.02104608528316021, - -0.0022159789223223925, - 0.011809845454990864, - -0.002970424247905612, - 0.017571063712239265, - -0.013677995651960373, - -0.022875042632222176, - 0.040602874010801315, - 0.007720816880464554, - -0.001913874177262187, - 0.02635006420314312, - -0.01380863506346941, - -0.03417539224028587, - 0.009850246831774712, - 0.01486681867390871, - 0.005702430848032236, - -0.02121591567993164, - -0.009144791401922703, - 0.023593561723828316, - -0.052961405366659164, - -0.03221579268574715, - 0.02248312346637249, - -0.04407789558172226, - 0.007890649139881134, - -0.019478406757116318, - 0.006313172169029713, - 0.030125556513667107, - -0.001157795893959701, - 0.019726620987057686, - -0.010438126511871815, - -0.04593298211693764, - 0.0023858107160776854, - -0.0016566769918426871, - -0.012410788796842098, - -0.00236131576821208, - -0.019478406757116318 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 11, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 577 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000012.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000012.json deleted file mode 100644 index 0a026d1c21f1e714cb99e24c4e48d2a7d54ad17c..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000012.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000012", - "content": "Diese Eigenschaften der Datenerhebung sorgen daf\u00fcr, dass die Daten vertrauensw\u00fcrdig und aussagekr\u00e4ftig sind. [60]\nDie statistische Einheit ist der Beladevorgang, der untersucht und gemessen wird. Die akustischen Kenngr\u00f6\u00dfen werden f\u00fcr jeden Beladevorgang separat ermittelt und analy- siert. Die einzelnen Messdaten einer akustischen Kenngr\u00f6\u00dfe, repr\u00e4sentieren die Merk- male der statistischen Einheit. Ein Merkmal ist der Schalldruckpegel, Schallleistungspe- gel oder eine andere akustische Messgr\u00f6\u00dfe. Um die Verteilung der Messwerte zu visua- lisieren, wird eine H\u00e4ufigkeitsverteilung erstellt. Diese zeigt, wie oft ein bestimmter Wert in der Messreihe auftritt. Die H\u00e4ufigkeitsverteilung erm\u00f6glicht es, wichtige Infor- mationen zu erlangen, um die Messergebnisse besser interpretieren zu k\u00f6nnen. [60] Hierbei werden die Messwerte xi und deren H\u00e4ufigkeit ni beziehungsweise hi in eine H\u00e4ufigkeitstabelle gegen\u00fcbergestellt und anschlie\u00dfen in einem S\u00e4ulendiagramm visua-\n21\n2 Grundlagen\nlisiert. Die absolute H\u00e4ufigkeit ni stellt die konkreten Werte dar, wobei die relative H\u00e4u- figkeit die Anteile an der gesamten Anzahl der Messwerte widerspiegelt (siehe Formel 23). [61]\n\n## \ud835\udc5b\ud835\udc56\n\n\u210e\ud835\udc56 = \ud835\udc5b\n\n## Formel 23: relative H\u00e4ufigkeit [-]\n\nMit: ni: absolute H\u00e4ufigkeit [-], n: gesamte Anzahl der Messwerte [-]\nDer Mittelwert, oder auch Median genannt, wird aus den Einzelwerten berechnet und stellt die mittlere Gr\u00f6\u00dfenordnung dar. [60] Bei den Messwerten handelt es sich um Schallpegelgr\u00f6\u00dfen, die energetisch gemittelt werden m\u00fcssen, da es sich hierbei um lo- garithmische Verh\u00e4ltnisse handelt (siehe Formel 24). [62]\n\ud835\udc3f\u0305\ud835\udc5a\ud835\udc56\ud835\udc61\ud835\udc61\ud835\udc52\ud835\udc59 = 10 \u2217 lg( 1 \ud835\udc41 \ud835\udc41 \u2211100,1\u2217\ud835\udc3f\ud835\udc56 \ud835\udc56=1 )\nFormel 24: Mittelungspegel [dB(A)]\nMit: Li: der i-te Schallpegel [dB(A)], N: Anzahl der gemessenen Schalldruckpegel [-]\nEine weitere wichtige Kenngr\u00f6\u00dfe stellt das Streuungsma\u00df dar, welche die Abweichung der einzelnen Messwerte vom Mittelwert darstellt. In der Regel werden folgende Unter- scheidungen gemacht: Spannweite, Varianz, Standardabweichung und Quartilsabstand. Die Spannweite stellt \u201edie Differenz zwischen dem gr\u00f6\u00dften (Maximum) und dem kleins- ten Wert (Minimum)\u201c [59] dar. Der Quartilabstand gibt an wo sich die Werte im mittle- ren 50%-Bereich der Messreihe befinden. Die Varianz (siehe Formel 25) umfasst alle Werte einer Verteilung und gibt die mittlere quadrierte Abweichung vom Mittelwert an. Hierbei wird die quadrierte Abweichung aller einzelnen Messwerte zu einem Mittelwert aufsummiert. Eine gro\u00dfe Varianz deutet auf eine gr\u00f6\u00dfere Streuung um den Mittelwert hin. Folglich deutet eine kleine Varianz eine geringe Streuung um den Mittelwert hin. Um die Kenngr\u00f6\u00dfe interpretierbar zu machen, wird die Quadratwurzel der Varianz, die sogenannte Standardabweichung (siehe Formel 26), berechnet, die die positive Wurzel der Varianz darstellt. Die Standardabweichung gibt \u00e4hnlich wie die Varianz, die durch- schnittliche Abweichung vom Mittelwert an. [59, 60]\n\ud835\udf0e = \ud835\udc602 = \u2211 (\ud835\udc3f\ud835\udc56 \u2212 \ud835\udc3f\u0305)\u00b2 \ud835\udc5b \ud835\udc56=1 \ud835\udc5b\nFormel 25: Varianz der Schalldruckpegel [dB(A)]\n22\n2 Grundlagen\n\ud835\udc60 = \u221a\ud835\udc602 = \u221a \u2211 (\ud835\udc3f\ud835\udc56 \u2212 \ud835\udc3f\u0305)\u00b2 \ud835\udc5b \ud835\udc56=1 \ud835\udc5b\nFormel 26: Standardabweichung der Schalldruckpegel [dB(A)]\nMit: Li: der i-te Schallpegel [dB(A)], L\u0305: Mittelungspegel [dB(A)]; n: Anzahl der Messwerte [-]\nDie Messdaten, die einer nat\u00fcrlichen Variation unterliegen, werden auf einem Dia- gramm entsprechend ihrer H\u00e4ufigkeitsverteilung dargestellt. Wenn eine bestimmte Re- gelm\u00e4\u00dfigkeit in der Verteilung der Daten vermutet wird, kann eine Funktion angepasst werden, wie zum Beispiel eine Gau\u00dfsche Glockenkurve oder auch Normalverteilung ge- nannt. Dabei werden die Daten analysiert und eine Funktion verwendet, die am besten zu der beobachteten Verteilung passt.", - "embedding": [ - 0.01918942481279373, - 0.03707396984100342, - 0.023398304358124733, - -0.04313782602548599, - -0.003030329942703247, - 0.0019605194684118032, - 0.002568184630945325, - -0.008456139825284481, - 0.003063911572098732, - -0.041986461728811264, - 0.02454967051744461, - 0.028144489973783493, - -0.017782200127840042, - 0.001025834702886641, - -0.0080275759100914, - 0.007541443686932325, - 0.04042572155594826, - 0.01377800665795803, - 0.014942165464162827, - -0.009940122254192829, - -0.01712976023554802, - 0.014481619000434875, - 0.006262148730456829, - 0.007861267775297165, - -0.014392068609595299, - 0.033952489495277405, - 0.016170289367437363, - -0.021249089390039444, - -0.024050746113061905, - -0.0062685455195605755, - 0.0040105897933244705, - -0.013739627785980701, - -0.010227963328361511, - -0.0001452199649065733, - -0.020635027438402176, - 0.012255646288394928, - -0.01116824522614479, - -0.013125566765666008, - 0.02896323800086975, - -0.02005934529006481, - 0.004157708492130041, - 0.009172544814646244, - 0.0007287983316928148, - -0.022259732708334923, - 0.014942165464162827, - -0.0004973259055987, - -0.00011543638538569212, - -0.002796858549118042, - 0.007112880237400532, - 0.006457241252064705, - 0.0058975499123334885, - 0.010560580529272556, - -0.027274569496512413, - 0.011225813068449497, - -0.0040489686653018, - -0.017500754445791245, - -0.007771716918796301, - -0.0031022904440760612, - -0.014903786592185497, - -0.029551714658737183, - -0.027811873704195023, - 0.001318473368883133, - -0.016413355246186256, - 0.003914642613381147, - -0.04098861292004585, - -0.012127716094255447, - -0.024588050320744514, - 0.006201382260769606, - -0.010682113468647003, - 0.006844228133559227, - 0.02014889568090439, - 0.03259643539786339, - 0.0075734262354671955, - 0.025317247956991196, - 0.024408947676420212, - 0.0022915371228009462, - 0.016144702211022377, - 0.009178941138088703, - -0.003241413738578558, - 0.005644889082759619, - 0.015236402861773968, - -0.00408095121383667, - -0.013368632644414902, - 0.035769086331129074, - 0.0071384659968316555, - 0.009684262797236443, - -0.016707591712474823, - 0.022848207503557205, - -0.007253602612763643, - -0.006997743621468544, - 0.007880456745624542, - 0.00426325062289834, - -0.006537197157740593, - 0.0036811712197959423, - -0.000303033011732623, - 0.004103338811546564, - 0.0036459907423704863, - 0.020443134009838104, - -0.004938078578561544, - -0.01258186623454094, - -0.021504947915673256, - -0.002899202285334468, - 0.0035724311601370573, - -0.00538263376802206, - -0.012134113349020481, - 0.014967751689255238, - -0.0205454770475626, - 0.003674774896353483, - -0.0019573213066905737, - -0.019893037155270576, - -0.025534728541970253, - 0.015505054965615273, - -0.016758764162659645, - -0.011302570812404156, - 0.041244469583034515, - -0.009051011875271797, - 0.03837884962558746, - -0.02208063192665577, - -0.00983777828514576, - -0.013957108370959759, - 0.023398304358124733, - 0.0029087970033288, - 0.021991081535816193, - -0.005152360536158085, - 0.01852419041097164, - 0.013368632644414902, - 0.01116824522614479, - -0.016029566526412964, - -0.02616158314049244, - -0.014635134488344193, - -0.006527602672576904, - 0.0031774488743394613, - 0.014942165464162827, - 0.02474156580865383, - -0.01113626267760992, - -0.0016175085911527276, - -0.0006484426558017731, - 0.01512126624584198, - -0.009882553480565548, - -0.038225334137678146, - 0.02709546685218811, - 0.01700183004140854, - -0.028553863987326622, - -0.037688031792640686, - -0.008692809380590916, - 0.03425952047109604, - 0.01739841140806675, - 0.012396368198096752, - -0.004803752526640892, - -0.00557132950052619, - 0.0074454969726502895, - -0.018575362861156464, - 0.026008067652583122, - -0.013112773187458515, - -0.008449743501842022, - -0.009697056375443935, - 0.004355999641120434, - 0.017769407480955124, - -0.011283381842076778, - -0.00816190242767334, - 0.0012625042581930757, - 0.02822124771773815, - 0.004320818930864334, - -0.0033997264690697193, - 0.0005189140210859478, - 0.028400348499417305, - -0.006079849321395159, - -0.002800056943669915, - -0.014340897090733051, - -0.002788863144814968, - -0.0012057354906573892, - 0.01570974290370941, - 0.0006016684346832335, - 0.01659245602786541, - -0.005427408963441849, - 0.005609708372503519, - -0.0017878147773444653, - 0.00345409638248384, - -0.02804214507341385, - -0.025061389431357384, - -0.02133863978087902, - 0.00538583192974329, - 0.013317461125552654, - 0.004992448724806309, - -0.022387662902474403, - 0.026135995984077454, - 0.01879284344613552, - 0.02924468368291855, - -0.0036683783400803804, - -0.012428350746631622, - 0.0011313764844089746, - 0.00023846857948228717, - -0.006214175373315811, - -0.013522148132324219, - -0.6263428330421448, - 0.0072280168533325195, - -0.00046094597200863063, - -0.000923491083085537, - 0.009140562266111374, - 0.03057515062391758, - 0.018895186483860016, - -0.006844228133559227, - -0.0011225813068449497, - 0.03605053201317787, - -0.002406673738732934, - 0.0006372487987391651, - 0.00734315300360322, - -0.00859686266630888, - -0.017078587785363197, - -0.02007213793694973, - -0.016554076224565506, - -0.02275865711271763, - 0.02502300962805748, - -0.002126827836036682, - -0.0342339351773262, - 0.024728771299123764, - 0.008839928545057774, - 0.023910023272037506, - -0.011219416745007038, - 0.020110517740249634, - 0.02255397103726864, - 0.005174748133867979, - -0.004279241897165775, - -0.007183241192251444, - -0.035231783986091614, - 0.0011217817664146423, - -0.018844015896320343, - 0.012127716094255447, - 0.03901849687099457, - 8.530299237463623e-05, - 0.008481726050376892, - 0.019381318241357803, - 0.01840905472636223, - 0.005721646826714277, - -0.011149055324494839, - -0.01348376926034689, - 0.01076526753604412, - -0.0029983476269990206, - 0.01348376926034689, - -0.006825038697570562, - 0.029321441426873207, - -0.010522201657295227, - 0.009390025399625301, - -0.044596221297979355, - 0.005664078518748283, - -0.01338142529129982, - 0.016016773879528046, - 0.011660773307085037, - 0.03226381912827492, - -0.004215276800096035, - 0.02208063192665577, - -0.01023435965180397, - -0.0268396083265543, - 0.004778166767209768, - -0.004611858632415533, - 0.003046321216970682, - 0.0026337485760450363, - -0.026379061862826347, - -0.029065581038594246, - 0.014264139346778393, - 0.0027824665885418653, - -0.042395833879709244, - 0.02307848073542118, - -0.01893356628715992, - -0.01258186623454094, - 0.033287256956100464, - 0.0035532417241483927, - -0.02228531800210476, - 0.029474956914782524, - 0.016809936612844467, - 0.011923029087483883, - -0.02722339704632759, - 0.013215117156505585, - 0.004260052461177111, - -0.0045191096141934395, - -0.008193884044885635, - -0.018025266006588936, - 0.0003088297962676734, - -0.0002520610869396478, - -0.019765106961131096, - 0.008174695074558258, - 0.02135143242776394, - 0.0040841493755578995, - 0.01831950433552265, - 0.010144809260964394, - 0.023577407002449036, - 0.010726888664066792, - -0.02247721329331398, - -0.006383682135492563, - 0.03223823383450508, - -0.01464792713522911, - 0.019240597262978554, - -0.005238712765276432, - -0.03285229578614235, - -0.026379061862826347, - -0.009677866473793983, - 0.02227252535521984, - -0.008795153349637985, - 0.005747232586145401, - -0.0004509514837991446, - 0.007515857927501202, - 0.005337858106940985, - 0.017027415335178375, - -0.022464420646429062, - 0.010387875139713287, - -0.006786659825593233, - -0.015044509433209896, - -0.007707752287387848, - -0.008737584576010704, - -0.024524085223674774, - 0.034361861646175385, - 0.0024914268869906664, - 0.004397576674818993, - 0.0014927773736417294, - 0.010963558219373226, - 0.013099980540573597, - 0.05086476728320122, - -0.02549634873867035, - -0.007784510031342506, - 0.01679714396595955, - 0.004020184278488159, - 0.02903999574482441, - 0.0054689859971404076, - -0.037688031792640686, - 0.03336401283740997, - -0.01197420060634613, - 0.004787761252373457, - -0.020622234791517258, - 0.03090776689350605, - 0.0016103126108646393, - 0.016682006418704987, - -0.02020006813108921, - 0.010112826712429523, - -0.029014410451054573, - -0.030216947197914124, - -0.0036683783400803804, - 0.00325420661829412, - -0.04306107014417648, - -0.02435777708888054, - -0.038916151970624924, - -0.006399672944098711, - -9.324860729975626e-05, - 0.01673317886888981, - 0.002280343323945999, - 0.007394324988126755, - -0.02543238364160061, - -0.003498871810734272, - 0.03955579921603203, - 0.017718235030770302, - 0.00441356748342514, - -0.018895186483860016, - -0.022438833490014076, - -0.0027296957559883595, - -0.014174588024616241, - -0.0007220021216198802, - 0.019777899608016014, - -0.05526554211974144, - -0.017884543165564537, - -0.008085144683718681, - -0.028067732229828835, - 0.003594818990677595, - -0.007196034304797649, - -0.023539027199149132, - -0.03292905166745186, - 0.0039306338876485825, - 0.02080133557319641, - -0.015671363100409508, - 0.0053154705092310905, - 0.0017814182210713625, - 0.011923029087483883, - -0.033287256956100464, - -0.007630994543433189, - -0.013227909803390503, - -0.035359714180231094, - 0.018281124532222748, - -0.004685417748987675, - -0.031752102077007294, - -0.0031534621957689524, - 0.033082567155361176, - 0.00048653187695890665, - 0.009505162015557289, - 0.009569126181304455, - -0.010061655193567276, - 0.02676285058259964, - -0.0009698655339889228, - 0.013368632644414902, - -0.030856594443321228, - 0.01954762637615204, - -0.01906149461865425, - 0.004426360595971346, - 0.002157211070880294, - -0.007112880237400532, - -0.0029295855201780796, - 0.03124038316309452, - 0.01562019158154726, - 0.015837671235203743, - 0.02208063192665577, - -0.028144489973783493, - 0.02241324819624424, - -0.025918515399098396, - 0.003100691130384803, - -0.01972672902047634, - 0.031470656394958496, - 0.01826833188533783, - 0.030421635136008263, - -0.004838933236896992, - -0.04088626801967621, - -0.008635241538286209, - 0.010394271463155746, - 0.04152591526508331, - -0.011731134727597237, - 0.015300367958843708, - 0.0318288579583168, - -0.005296281073242426, - -0.004378387238830328, - -0.015300367958843708, - 0.03257085010409355, - 0.006482827477157116, - 0.009952914901077747, - -0.01026634220033884, - 0.016566870734095573, - 0.025598691776394844, - 0.012965654954314232, - -0.01559460535645485, - -0.0020020967349410057, - -0.004032977391034365, - 0.007842077873647213, - -0.0060030915774405, - 0.011948615312576294, - 0.025330040603876114, - 0.012389971874654293, - -0.011814288794994354, - 0.030805423855781555, - 0.011897442862391472, - 0.01153924036771059, - 0.0015591407427564263, - -0.003566034836694598, - -0.011264191940426826, - 0.02822124771773815, - -0.02456246316432953, - 0.010515804402530193, - 0.040169861167669296, - -0.00672269519418478, - -0.011756720952689648, - -0.009006236679852009, - 0.006837831810116768, - -0.014097830280661583, - -0.00933245662599802, - 0.013867557980120182, - -0.016157494857907295, - 0.023385511711239815, - -0.01210852712392807, - -0.0063325101509690285, - 0.039427872747182846, - 0.01024075597524643, - 0.006946571636945009, - 0.007336756680160761, - -0.004912492819130421, - 0.013688456267118454, - 0.011903840117156506, - -0.01666921377182007, - -0.00513317110016942, - -0.02154332771897316, - 0.006978554185479879, - 0.015505054965615273, - -0.018485812470316887, - -0.017219310626387596, - 0.027811873704195023, - 0.01820436678826809, - -0.016413355246186256, - 0.006418862380087376, - 0.017423998564481735, - 0.0159144289791584, - 0.017475169152021408, - -0.01907428726553917, - -0.024792736396193504, - -0.010343099944293499, - 0.028016559779644012, - 0.0005053215427324176, - -0.02481832355260849, - -0.008788756094872952, - 0.00269131688401103, - -0.025406798347830772, - -0.010503011755645275, - -0.014264139346778393, - 0.009095787070691586, - -0.0052451095543801785, - -0.03157300129532814, - 0.003172651631757617, - 0.020762957632541656, - 0.031342726200819016, - 0.004778166767209768, - -0.005200333893299103, - 0.04249817878007889, - 0.0024258631747215986, - -0.013330253772437572, - -0.016835521906614304, - -0.02181197889149189, - 0.01421296689659357, - -0.0044935233891010284, - -0.03443862125277519, - -0.019649971276521683, - -0.011654376983642578, - -0.01725768856704235, - -0.010950764641165733, - -0.020890887826681137, - -0.0009186937240883708, - 0.017577512189745903, - 0.0025010216049849987, - -0.004560686647891998, - 0.019573213532567024, - -0.0080275759100914, - 0.04160267114639282, - 0.017948508262634277, - -0.009818589314818382, - -0.015543433837592602, - -0.0018565768841654062, - 0.01719372533261776, - 0.007112880237400532, - 0.01672038622200489, - 0.004506316501647234, - 0.01712976023554802, - -0.04139798507094383, - -0.0017142553115263581, - -0.008980650454759598, - -0.007656580302864313, - 0.018178781494498253, - 0.01518523134291172, - -0.01211492344737053, - 0.007682166527956724, - 0.04019544646143913, - 0.008756774477660656, - 0.0031022904440760612, - -0.006099038757383823, - 0.009082994423806667, - -0.012306817807257175, - 0.024715978652238846, - 0.01592722162604332, - -0.01725768856704235, - -0.02804214507341385, - 0.020187275484204292, - 0.033287256956100464, - -0.01210852712392807, - -0.01733444631099701, - 0.025905722752213478, - 0.01847301982343197, - -0.0014935769140720367, - -0.029807573184370995, - -0.008213073946535587, - 0.028988825157284737, - 0.0159144289791584, - 0.0285026915371418, - -0.03633197769522667, - 0.012767364270985126, - -0.0011265791254118085, - 0.007682166527956724, - -0.0006064657936803997, - -0.01973952166736126, - 0.027197811752557755, - 0.025509141385555267, - 0.01732165366411209, - -0.0047365897335112095, - -0.0021236296743154526, - -0.00357882771641016, - 0.02428101934492588, - 0.0060734529979527, - 0.011820686049759388, - 0.008616051636636257, - 0.0007427906384691596, - -0.010784456506371498, - -0.0007319966098293662, - -0.01290808618068695, - -0.00028124501113779843, - -0.02883530966937542, - -0.0018309908919036388, - -0.017743822187185287, - -0.015402711927890778, - -0.0342339351773262, - -0.0323917493224144, - -0.008225866593420506, - 0.024511292576789856, - -0.02543238364160061, - -0.03446420654654503, - -0.009537143632769585, - -0.01441765483468771, - -0.020366376265883446, - -0.024472912773489952, - 0.01111067645251751, - 0.013330253772437572, - -0.03735541179776192, - -0.029347026720643044, - -0.013004033826291561, - 0.009671470150351524, - 0.002571383025497198, - 0.016144702211022377, - -0.009754624217748642, - -0.018357882276177406, - 0.006198184099048376, - -0.02924468368291855, - 0.009677866473793983, - -0.02909116819500923, - -0.024984631687402725, - -0.025189317762851715, - 0.005427408963441849, - -0.016912279650568962, - 0.006300527602434158, - 0.0009978500893339515, - -0.0029759600292891264, - -0.004330413416028023, - 0.004416766110807657, - 0.023193618282675743, - -0.007176844868808985, - -0.018767258152365685, - 0.007618201430886984, - 0.008910289965569973, - 0.0016854711575433612, - 0.007317567244172096, - -0.028477106243371964, - 0.016605248674750328, - -0.028681794181466103, - -0.00107460783328861, - -0.019227802753448486, - 0.024370569735765457, - -0.010227963328361511, - -0.0016263037687167525, - 0.010893196798861027, - 0.00809154100716114, - -0.009345250204205513, - -0.0016486913664266467, - -0.011878253892064095, - -0.007323963567614555, - -0.001760629704222083, - -0.00018309909501112998, - -0.007317567244172096, - 0.021236296743154526, - 0.015313160605728626, - 0.02796538919210434, - -0.010087240487337112, - 0.006425259169191122, - -0.018498605117201805, - 0.028477106243371964, - 0.009876157157123089, - 0.0044295587576925755, - 0.06155967339873314, - -0.020494306460022926, - 0.008436950854957104, - -0.030344877392053604, - 0.00473019341006875, - 0.028937652707099915, - 0.01611911691725254, - -0.012025373056530952, - -0.015313160605728626, - -0.019253389909863472, - -0.019035909324884415, - 0.005980703979730606, - 0.029065581038594246, - -0.0007883655489422381, - 0.0025697837118059397, - -0.007381531875580549, - -0.0018885591998696327, - -0.012319610454142094, - 0.012466729618608952, - 0.01606794446706772, - -0.029270268976688385, - -0.03070307895541191, - 0.01651569828391075, - -0.008424157276749611, - 0.01613190956413746, - -0.026123203337192535, - -0.011859064921736717, - -0.013125566765666008, - -0.011596809141337872, - -0.004020184278488159, - -0.03003784641623497, - -0.0038954531773924828, - 0.005520157981663942, - 0.02549634873867035, - 0.01428972464054823, - 0.033824559301137924, - 0.015824878588318825, - -0.005628897808492184, - 0.014711892232298851, - -0.008891100063920021, - 0.006997743621468544, - -0.009684262797236443, - -0.02193990908563137, - -0.019752314314246178, - 0.01840905472636223, - 0.01893356628715992, - 0.012837724760174751, - 0.013176738284528255, - -0.00980579573661089, - 0.005827188491821289, - 0.044391535222530365, - 0.005174748133867979, - -0.018178781494498253, - -0.016643628478050232, - -0.029602885246276855, - 0.016208667308092117, - 0.01037508249282837, - 0.006780263502150774, - 0.01954762637615204, - -0.01972672902047634, - 0.00144720240496099, - 0.0034668894950300455, - -0.019291767850518227, - -0.006569179706275463, - -0.0031870435923337936, - 0.029781987890601158, - -0.034822408109903336, - 0.027325740084052086, - -0.001511966809630394, - -0.0049444749020040035, - -0.03198237344622612, - -0.002195589942857623, - -0.009677866473793983, - -0.017782200127840042, - 0.027146639302372932, - 0.00762459821999073, - 0.022298110648989677, - -0.010566976852715015, - -0.003882660297676921, - -0.0029759600292891264, - -0.02717222459614277, - 6.156606832519174e-05, - -0.004029779229313135, - 0.002800056943669915, - -0.012159698642790318, - -0.04577317461371422, - -0.01565857045352459, - -0.022899379953742027, - -0.030268119648098946, - 0.02655816450715065, - 0.014609548263251781, - 0.004877312108874321, - 0.021556120365858078, - 0.0021923917811363935, - -0.0011497663799673319, - 0.0009850570932030678, - -0.009856968186795712, - 0.011993390507996082, - 0.010630941018462181, - 0.028860894963145256, - 0.025381213054060936, - -0.019624384120106697, - -0.030958939343690872, - -0.056033119559288025, - 0.005373038817197084, - 0.009306871332228184, - 0.019880244508385658, - -0.009441196918487549, - -0.013969901017844677, - 0.002160409465432167, - 0.026276718825101852, - -0.019496455788612366, - -0.00015951209934428334, - -0.025138147175312042, - 0.027914216741919518, - 0.014340897090733051, - -0.008488122373819351, - -0.009856968186795712, - 0.02448570542037487, - -0.019816279411315918, - -0.008411364629864693, - 0.023782093077898026, - -0.02193990908563137, - -0.0061150300316512585, - 0.00582079216837883, - 0.000823546142783016, - 0.03612729161977768, - 0.007970008067786694, - 0.02301451750099659, - 0.006812245585024357, - -0.020622234791517258, - -0.013067997992038727, - -0.016208667308092117, - -0.028349176049232483, - -0.0031870435923337936, - -0.013765214011073112, - 0.030012261122465134, - 0.010080844163894653, - -0.007758924271911383, - 0.03180327266454697, - -0.009306871332228184, - 0.010112826712429523, - 0.007432703860104084, - -0.009479575790464878, - 0.01954762637615204, - -0.013957108370959759, - -0.007336756680160761, - 0.0187416709959507, - 0.00010089439456351101, - 0.008270641788840294, - 0.007170448545366526, - -0.02007213793694973, - -0.027811873704195023, - 0.006677919998764992, - -0.015466676093637943, - -0.013036015443503857, - 0.003511664690449834, - 0.00690819276496768, - -0.026660507544875145, - -0.0042760432697832584, - -0.013867557980120182, - -0.0036140084266662598, - -0.015569020062685013, - 0.021504947915673256, - -0.038916151970624924, - 0.0007371937390416861, - -0.0063964747823774815, - -0.007880456745624542, - 0.015517848543822765, - -0.003100691130384803, - -0.009716245345771313, - -0.01846022717654705, - 0.020775750279426575, - -0.030549563467502594, - 0.011769513599574566, - 0.02883530966937542, - -0.01585046388208866, - -0.016848314553499222, - 0.015198023989796638, - 0.010100034065544605, - 0.00622057169675827, - 0.029781987890601158, - -0.00023127254098653793, - -0.020519891753792763, - -0.014519997872412205, - -0.012517901137471199, - 0.03497592359781265, - -0.039427872747182846, - 0.009204527363181114, - -0.01624704711139202, - 0.019701141864061356, - 0.0014048258308321238, - -0.000706010905560106, - 0.0061310213059186935, - 0.010874006897211075, - 0.017948508262634277, - -0.013573319651186466, - 0.0076373908668756485, - -0.017308861017227173, - 0.012345196679234505, - 0.010029672645032406, - -0.010893196798861027, - 0.002390682464465499, - -0.04208880662918091, - -0.007016933057457209, - -0.0023187221959233284, - 0.012965654954314232, - -0.03280112147331238, - 0.021389812231063843, - -0.0062845367938280106, - -0.023782093077898026, - -0.01117464154958725, - 0.04416126385331154, - -0.00498605240136385, - 0.013163945637643337, - 0.00622057169675827, - -0.013650077395141125, - 0.009575522504746914, - 0.017372826114296913, - -0.014890993945300579, - -0.007285584695637226, - 0.020622234791517258, - 0.008584069088101387, - -0.04400774836540222, - 0.01746237650513649, - -0.028144489973783493, - 0.02280982956290245, - 0.0205454770475626, - -0.009006236679852009, - -0.009358042851090431, - 0.02113395370543003, - -0.016093531623482704, - -0.019841864705085754, - -0.014110623858869076, - 0.0014288126258179545, - -0.008507311344146729, - 0.035564400255680084, - -0.01485261507332325, - 0.02261793613433838, - 0.0060670566745102406, - 0.021645670756697655, - -0.04403333365917206, - 0.0015135658904910088, - -0.0034668894950300455, - 0.01468630600720644, - 0.006210977211594582, - -0.019918622449040413, - -0.029526127502322197, - -0.009358042851090431, - 0.023922815918922424, - -0.012409161776304245, - 0.01117464154958725, - 0.03090776689350605, - -0.013598905876278877, - -0.02536841854453087, - 0.012153302319347858, - 0.025982480496168137, - 0.026110410690307617, - 0.003853876143693924, - 0.016758764162659645, - -0.019982587546110153, - -0.011993390507996082, - -0.02689078077673912, - 0.012025373056530952, - -0.047078054398298264, - 0.013650077395141125, - 0.008916686289012432, - -0.012671416625380516, - 0.004960466176271439, - 0.02154332771897316, - -0.010010483674705029, - 0.008072351105511189, - -0.012357989326119423, - 0.019368525594472885, - 0.018447434529662132, - -0.008705602027475834, - 0.024178674444556236, - -0.004304827656596899, - -0.021837566047906876, - -0.03477123752236366, - 0.011942218989133835, - -0.034413035959005356, - 0.0015439491253346205, - 0.005836783442646265, - -0.0069849505089223385, - 0.00986336451023817, - -0.020647820085287094, - 0.024037953466176987, - 0.0020020967349410057, - -0.021300261840224266, - -0.016298217698931694, - -0.01673317886888981, - -0.050890352576971054, - 0.01806364580988884, - 0.01294646505266428, - -0.01666921377182007, - -0.0016838719602674246, - -0.0098313819617033, - -0.009114976972341537, - -0.0005928732571192086, - -0.022912172600626945, - -0.0027073079254478216, - -0.006300527602434158, - 0.001938131870701909, - 0.007387928664684296, - -0.005990298930555582, - 0.003745136084035039, - -0.0016854711575433612, - -0.0050340257585048676, - -0.030293704941868782, - -0.010432650335133076, - 0.18421848118305206, - -0.034361861646175385, - -0.0010250350460410118, - 0.012421954423189163, - -0.03500150889158249, - -0.032084718346595764, - 0.038097403943538666, - -0.01264583133161068, - 0.017718235030770302, - 0.02435777708888054, - 0.0058079990558326244, - 0.014711892232298851, - -0.0018373874481767416, - 0.01611911691725254, - 0.02909116819500923, - -0.05500968545675278, - -0.025701036676764488, - -0.014008279889822006, - 0.00336134759709239, - 0.010074447840452194, - 0.017372826114296913, - -0.01250510849058628, - -0.01431531086564064, - -0.010547786951065063, - 0.03525736927986145, - -0.003905047895386815, - -0.011008333414793015, - 0.004832536913454533, - 0.03901849687099457, - 0.030063431710004807, - -0.00603507412597537, - -0.0040137879550457, - 0.008616051636636257, - 0.001114585786126554, - -0.018907979130744934, - 0.0026321494951844215, - -0.010758871212601662, - 0.002721700118854642, - 0.03715072572231293, - 0.012121319770812988, - 0.017718235030770302, - -0.021325847133994102, - -0.008648034185171127, - -0.012773760594427586, - 0.0260976180434227, - 0.028886480256915092, - -0.0029935501515865326, - 0.0035884224344044924, - -0.00949876569211483, - 0.0042344662360847, - -0.002744087716564536, - 0.008513707667589188, - -0.01564577780663967, - 0.03354311361908913, - -0.003716351930052042, - -0.007451893296092749, - 0.014929372817277908, - -0.008552086539566517, - 0.0015351539477705956, - -0.0016598852816969156, - -0.0381229892373085, - 0.009671470150351524, - -0.014276931993663311, - 0.02133863978087902, - -0.022310905158519745, - 0.015057302080094814, - -0.036229632794857025, - 0.002963166916742921, - -0.020583856850862503, - -0.007906042970716953, - -0.009959311224520206, - -0.005667276680469513, - -0.024524085223674774, - 0.0033517528790980577, - -0.0032909864094108343, - -0.02996108867228031, - 0.02140260487794876, - 0.030191361904144287, - 0.015313160605728626, - 0.007336756680160761, - -0.007132069673389196, - -4.5874719944549724e-05, - -0.02554752118885517, - -0.012300421483814716, - 0.00010254349035676569, - 0.0007899646298028529, - 0.00792523194104433, - 0.004615056794136763, - 0.00737513555213809, - -0.04011869058012962, - -0.021057195961475372, - -0.001535953488200903, - 0.007906042970716953, - -0.012569073587656021, - 0.007758924271911383, - -0.0005205131601542234, - -0.0023634973913431168, - 0.009959311224520206, - -0.021927116438746452, - -0.012492315843701363, - -0.028681794181466103, - 0.07558074593544006, - 0.05270695313811302, - -0.003294184571132064, - 0.005238712765276432, - -0.009134165942668915, - -0.01920221745967865, - 0.015569020062685013, - 0.007528651040047407, - -0.01959879882633686, - -0.006729091517627239, - -0.029781987890601158, - 0.02113395370543003, - -0.01793571561574936, - 0.0015015724347904325, - 0.017833372578024864, - -0.010387875139713287, - 0.0004341607273090631, - 0.0016135107725858688, - 0.0074454969726502895, - 0.0002740489726420492, - -0.0102023771032691, - 0.004906096030026674, - 0.019586006179451942, - 0.002390682464465499, - -0.012466729618608952, - -0.03518061339855194, - 0.025061389431357384, - 0.0036172065883874893, - 0.008213073946535587, - 0.0323917493224144, - -0.02174801379442215, - 0.024664808064699173, - 0.011232210323214531, - 0.009754624217748642, - 0.0053090741857886314, - -0.029270268976688385, - -0.028323590755462646, - -0.023385511711239815, - 0.019291767850518227, - 0.008353795856237411, - -0.005500968545675278, - -0.0005516959354281425, - 0.006313320714980364, - 0.005836783442646265, - -0.009345250204205513, - 0.01153924036771059, - 0.013074394315481186, - -0.013995487242937088, - -0.025982480496168137, - 0.003156660357490182, - -0.015210817568004131, - 0.001172153977677226, - -0.01645173318684101, - 0.004538299050182104, - 0.01070769876241684, - -0.014276931993663311, - -0.01592722162604332, - 0.001374442595988512, - 0.015569020062685013, - -0.0037355413660407066, - -0.02635347656905651, - 0.008987046778202057, - -0.004979655612260103, - 0.007055311929434538, - -0.005414615850895643, - -0.15883725881576538, - 0.01746237650513649, - 0.02140260487794876, - -0.014507205225527287, - 0.0048101493157446384, - 0.0019685151055455208, - 0.00538583192974329, - 0.01301043014973402, - -0.010592562146484852, - -0.009409214369952679, - 0.03497592359781265, - -0.017833372578024864, - -0.008955065160989761, - -0.03193120285868645, - -0.010183188132941723, - -0.00625575240701437, - -0.014622341841459274, - 0.039837244898080826, - 0.01847301982343197, - 0.028912067413330078, - 0.016003979369997978, - -0.02053268440067768, - 0.016003979369997978, - 0.015453883446753025, - -0.00048293385771103203, - 0.005625699646770954, - -0.009914536029100418, - 0.03418276086449623, - -0.010439046658575535, - -0.023666957393288612, - -0.0014416055055335164, - -0.02668609283864498, - 0.01645173318684101, - 0.015236402861773968, - -0.0058335852809250355, - -0.0039018497336655855, - -0.005657682195305824, - -0.009997690096497536, - 0.002337911631911993, - 0.011871857568621635, - 0.015415504574775696, - 0.03553881496191025, - -0.014328103512525558, - 0.020890887826681137, - -0.0008403368992730975, - 0.021300261840224266, - 0.018076438456773758, - -0.010541390627622604, - -0.01037508249282837, - -0.010195980779826641, - 0.0016966649563983083, - -0.028809722512960434, - 0.010790852829813957, - 0.011468879878520966, - -0.008507311344146729, - 0.007496668491512537, - -0.027990974485874176, - 0.0311892107129097, - 0.005769620183855295, - -0.012805743142962456, - 0.00043655940680764616, - -0.006380483508110046, - 0.026532577350735664, - -0.0018038059351965785, - 0.019099874421954155, - -0.017692649737000465, - -0.013714042492210865, - 0.02295055240392685, - -0.027914216741919518, - -0.008628844283521175, - 0.00029923507827334106, - -0.02454967051744461, - 0.006709902081638575, - 0.007669373415410519, - -0.005497770383954048, - 0.0036044137086719275, - -0.012428350746631622, - 0.0025633873883634806, - -0.009473179467022419, - -0.014225760474801064, - -0.02094205841422081, - 0.045594073832035065, - 0.008142712526023388, - -0.029807573184370995, - -0.006390078458935022, - -0.018165988847613335, - -0.0024498498532921076, - 0.002590572228655219, - -0.00893587525933981, - -0.004269646946340799, - 0.00495087169110775, - -0.01906149461865425, - -0.018025266006588936, - -0.01606794446706772, - 0.013317461125552654, - -0.006735487841069698, - -0.010541390627622604, - 0.014328103512525558, - 0.002104440238326788, - -0.006054263561964035, - -0.010611752048134804, - -0.012300421483814716, - -0.00855848379433155, - 0.03157300129532814, - 0.0043176207691431046, - 0.001092198072001338, - -0.011584016494452953, - 0.010848421603441238, - 0.03715072572231293, - -0.00849451869726181, - -0.03472006693482399, - 0.005213127005845308, - 0.018895186483860016, - 0.01700183004140854, - -0.002533004153519869, - 0.020622234791517258, - -0.027018709108233452, - -0.01592722162604332, - 0.01947087049484253, - -0.006338906474411488, - 0.05900108441710472, - -0.014366482384502888, - 0.006754677277058363, - 0.018613742664456367, - 0.000697215786203742, - -0.029526127502322197, - -0.08909010142087936, - 0.0008955064695328474, - 0.008513707667589188, - 0.014954958111047745, - 0.011699152179062366, - 0.014635134488344193, - 0.0016087134135887027, - -0.0010114426258951426, - 0.006230166647583246, - 0.04835734888911247, - -0.021261882036924362, - -0.0169378649443388, - -0.030472805723547935, - -0.004605461843311787, - 0.005836783442646265, - -0.013522148132324219, - -0.01164158433675766, - -0.023910023272037506, - -0.024255432188510895, - 0.03492475301027298, - -0.009517954662442207, - -0.00993372593075037, - -0.007362342439591885, - -0.010982747189700603, - -0.005919937510043383, - 0.018690500408411026, - -0.0330313965678215, - 0.017551926895976067, - 0.019035909324884415, - -0.003156660357490182, - 0.030140189453959465, - -0.04119329899549484, - -0.003511664690449834, - -0.02087809331715107, - -0.0020100921392440796, - -0.010010483674705029, - -0.02857944928109646, - -0.017513548955321312, - 0.03149624168872833, - -0.012460333295166492, - 0.0037131537683308125, - 0.013266288675367832, - 0.014507205225527287, - 0.005021232645958662, - 0.01920221745967865, - -0.005763223860412836, - -0.009479575790464878, - 0.027146639302372932, - 0.012050958350300789, - 0.007950818166136742, - -0.019841864705085754, - -0.02173522114753723, - -0.016835521906614304, - 0.020890887826681137, - 0.010004086419939995, - -0.0006716298521496356, - -0.00044255610555410385, - -0.01565857045352459, - -0.014635134488344193, - -0.015517848543822765, - -0.019240597262978554, - 0.020903680473566055, - -0.01744958385825157, - 0.046873368322849274, - -0.015530641190707684, - -0.01217888854444027, - -0.03510385379195213, - -0.00451591145247221, - 0.01334304641932249, - -0.013330253772437572, - -0.006997743621468544, - 0.016349390149116516, - -0.002974360715597868, - 0.010835628025233746, - -0.019368525594472885, - 0.023794885724782944, - -0.04705246910452843, - -0.016170289367437363, - 0.020097723230719566, - -0.017897337675094604, - -0.009019029326736927, - -0.020583856850862503, - 0.013061601668596268, - -0.012498712167143822, - 0.04175618663430214, - 0.02133863978087902, - -0.011520051397383213, - -0.012249249033629894, - 0.01579929329454899, - -0.024511292576789856, - -0.005561735015362501, - 0.011481672525405884, - 0.025944102555513382, - -0.004787761252373457, - -0.026865195482969284, - -0.00451591145247221, - 0.01780778542160988, - -0.022669106721878052, - -0.004586272407323122, - -0.000823546142783016, - -0.008680016733705997, - -0.012326006777584553, - -0.02863062173128128, - 0.022259732708334923, - 0.017078587785363197, - -0.0019605194684118032, - -0.016835521906614304, - -0.006163003388792276, - 0.009965707547962666, - -0.00092588976258412, - 0.007323963567614555, - 0.0018661716021597385, - -0.028144489973783493, - 0.009984897449612617, - -0.016042359173297882, - -0.012377179227769375, - -0.05096711218357086, - -0.051350899040699005, - -0.0040105897933244705, - 0.01692507229745388, - 0.004506316501647234, - 0.007119276560842991, - 0.001389634213410318, - 0.01953483372926712, - 0.010432650335133076, - 0.011372932232916355, - -0.007490272168070078, - -0.015108473598957062, - 0.014443240128457546, - -0.012281231582164764, - -0.012626641429960728, - -0.005721646826714277, - 0.011123470030725002, - -0.01394431572407484, - -0.0055265543051064014, - 0.02495904453098774, - -0.002390682464465499, - -0.028860894963145256, - 0.024383362382650375, - 0.02421705424785614, - 0.004371990449726582, - 0.04909934103488922, - -0.0161958746612072, - -0.020762957632541656, - -0.009888949804008007, - -0.017411204054951668, - -0.021197916939854622, - 0.01760309934616089, - 0.008257849141955376, - 0.0024162684567272663, - 0.017846165224909782, - -0.018818428739905357, - 0.03794388845562935, - -0.0029407793190330267, - 0.002424264093860984, - -0.004218475427478552, - -0.009549937210977077, - -0.005113981664180756, - 0.0161958746612072, - 0.015006130561232567, - 0.026660507544875145, - -0.015261989086866379, - 0.05073683708906174, - 0.004941276740282774, - 0.002497823443263769, - -0.029730815440416336, - -0.012652227655053139, - -0.03141948580741882, - -0.01481423620134592, - 0.00024266626860480756, - 0.02086530067026615, - -0.012421954423189163, - 0.0056800697930157185, - 0.009780210442841053, - 0.018114816397428513, - 0.0009826584719121456, - 0.005964712705463171, - -0.0038186954334378242, - 0.021172331646084785, - -0.00712567288428545, - 0.006169400177896023, - 0.016848314553499222, - 0.007650183979421854, - 0.005993497092276812, - 0.004704607184976339, - 0.0005233116098679602, - 0.047333914786577225, - 0.02314244583249092, - -0.012127716094255447, - 0.0045830742456018925, - 0.006111831869930029, - 0.0005105186719447374, - -0.011993390507996082, - 0.023846058174967766, - -0.001081004273146391, - 0.015274781733751297, - 0.029193511232733727, - 0.011219416745007038, - -0.0009178941254504025, - -0.01468630600720644, - 0.03592260181903839, - 0.04411008954048157, - 0.002841633977368474, - 0.0011961407726630569, - -0.0099721048027277, - -0.01725768856704235, - 0.021901529282331467, - 0.009786606766283512, - -0.006709902081638575, - -0.014340897090733051, - 0.006652333773672581, - 0.012428350746631622, - -0.0005716849700547755, - 0.0046630301512777805, - -0.0008267443627119064, - 0.01084202527999878, - -0.020084930583834648, - 0.03129155561327934, - -0.031752102077007294, - -0.0011177839478477836, - -0.02735132724046707, - 0.01739841140806675, - 0.015236402861773968, - 0.01287610363215208, - 0.010547786951065063, - -0.015070094726979733, - 0.019752314314246178, - -0.009166148491203785, - 0.020993230864405632, - -0.0070745013654232025, - 0.006271743681281805, - -0.003825091989710927, - 0.00650521507486701, - -0.0014839821960777044, - -0.013125566765666008, - -0.003757928963750601, - -0.0179996807128191, - -0.010726888664066792, - 0.015824878588318825, - 0.011481672525405884, - 0.012377179227769375, - 0.12322169542312622, - 0.030344877392053604, - -0.00892947893589735, - 0.01933014765381813, - 0.017846165224909782, - 0.02127467468380928, - 0.02630230411887169, - -0.006741884630173445, - -0.011903840117156506, - -0.04943195730447769, - 0.028349176049232483, - -0.025841759517788887, - 0.010170395486056805, - -0.0323917493224144, - -0.00025885735522024333, - 0.01738561876118183, - -0.0067674703896045685, - 0.02435777708888054, - -0.03505268320441246, - -0.02208063192665577, - 0.032007958739995956, - -0.00019579210493247956, - 0.013624491170048714, - 0.015146852470934391, - -0.008296228013932705, - -0.028809722512960434, - 0.027018709108233452, - -0.0064220610074698925, - 0.003322968725115061, - -0.01585046388208866, - 0.0032446119002997875, - 0.008743980899453163, - -0.06345303356647491, - -0.03070307895541191, - 0.003623603144660592, - -0.03520619869232178, - -0.0003354151558596641, - -0.02260514162480831, - 0.00014282128540799022, - 0.006434853654354811, - -0.0016774755204096437, - 0.01939411275088787, - -0.015325954183936119, - -0.011737531051039696, - 0.00890389271080494, - 0.006054263561964035, - -0.007029725704342127, - -0.03083100914955139, - -0.0094603868201375 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 12, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 518 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000013.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000013.json deleted file mode 100644 index 74c6c2b3c4ac02964b9488e14b73e5b794418e2a..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000013.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000013", - "content": "Wenn eine bestimmte Re- gelm\u00e4\u00dfigkeit in der Verteilung der Daten vermutet wird, kann eine Funktion angepasst werden, wie zum Beispiel eine Gau\u00dfsche Glockenkurve oder auch Normalverteilung ge- nannt. Dabei werden die Daten analysiert und eine Funktion verwendet, die am besten zu der beobachteten Verteilung passt. [63] Mithilfe dieser Normalverteilung k\u00f6nnen Aussagen \u00fcber die Wahrscheinlichkeit von Ereignissen oder das Verhalten der Mess- werte getroffen werden (siehe Formel 27). Hierbei ben\u00f6tigt man den Mittelwert, den Erfahrungswert \u03bc und die Varianz \u03c3. Mithilfe einer normalverteilten Zufallsgr\u00f6\u00dfe x, kann eine glockenf\u00f6rmige H\u00e4ufigkeitsverteilung gebildet werden. [64] Innerhalb des Intervalls \u03bc \u00b1 \u03c3 der Funktion befinden sich 68,27 % der gemessenen Werte. [63]\n\ud835\udc53(\ud835\udc65) = 1 \ud835\udf0e\u221a2\ud835\udf0b \u2217 \ud835\udc52\u2212 1 2 ( \ud835\udc65\u2212\ud835\udf07 \ud835\udf0e ) 2\nFormel 27: Dichtefunktion der Normalverteilung\nMit: x: Zufallsgr\u00f6\u00dfe, \u03bc: Erfahrungswert, \u03c3: Varianz\n23\n3 Aktuelle Prognosegrundlage\n\n## 3 Aktuelle Prognosegrundlage\n\nDie Untersuchungen der Emissionen von Verladeger\u00e4usche sind Gegenstand einzelner Untersuchungen und Grundlage von zahlreichen Schallimmissionsprognosen f\u00fcr Gewer- bebetriebe. Im folgenden Kapitel ist der derzeitige Stand der aktuellen Prognosegrund- lage zur betrachteten Thematik aufgezeigt. Ziel dieses Abschnittes ist es einen konkreten \u00dcberblick \u00fcber die derzeitige Prognosegrundlage zu bekommen. ## 3.1 Schallimmissionsprognosen f\u00fcr Gewerbe \u2013 Technischer Bericht des\n\n\n## HLUG\n\nIm Rahmen von Schallimmissionsprognosen f\u00fcr Gewerbe Genehmigungsverfahren, wer- den bei der \u00dcberpr\u00fcfung der immissionsschutztechnischen Grenzwerte, vor allem die Lkw- und Verladeger\u00e4usche bei der Belieferung der G\u00fcter betrachtet. Hierbei werden in der Praxis erfahrungsgem\u00e4\u00df die Verladeger\u00e4usche des Technischen Berichts des Hessi- schen Landesamt f\u00fcr Umwelt und Geologie von 1995 [7] und 2005 [8] herangezogen. Im Jahr 1991 und 1995 f\u00fchrte Dipl.-Ing. Ekkehard Knothe von T\u00dcV NORD, damals RWT\u00dcV, im Auftrag des HLUG (Hessisches Landesamt f\u00fcr Umwelt und Geologie) eine schalltechnische Untersuchung durch, um Kennwerte und Emissionsdatenkataloge zur Prognose und Beurteilung von Lkw- und Verladeger\u00e4usche auf Betriebsgel\u00e4nden anzu- fertigen. Im Jahre 2005 wurde eine erneute Beauftragung der HLUG zur Aktualisierung und Erweiterung erteilt. Die erzielten Ergebnisse sind zu heutigem Stand Grundlage f\u00fcr zahlreiche Schallimmissionsprognosen bei Verladevorg\u00e4ngen. Im Jahr 1995 wurden Ger\u00e4uschemissionen bei \u00fcblichen Verladeger\u00e4usche genauer un- tersucht und Emissionsans\u00e4tze entwickelt. Hierbei wurden die Emissionen einzelner Be- und Entladevorg\u00e4nge eines Palettenhubwagens \u00fcber eine \u00dcberladebr\u00fccke, Hubstapler (Elektro- und Verbrennungsmotor), Autolader-Systeme und \u00dcberladesysteme mit und ohne Torrandabdichtungen ermittelt. Im Jahr 2005 wurden die Untersuchungen erwei- tert und es entstanden erneuerte Emissionsans\u00e4tze. Hierbei wurden beispielsweise die Emissionen von Handhubwagen bei Bewegungsvorg\u00e4ngen und unterschiedlichen Lade- einheiten (Leerfahrt, Glas- und PET-Flaschen) ermittelt. Die Untersuchung fand zudem\n24\n3 Aktuelle Prognosegrundlage\nauf unterschiedlichen Fahrbahnoberfl\u00e4chen (Asphalt eben, Asphalt uneben und Pflas- tersteinen) statt. Aus den erlangten Kenngr\u00f6\u00dfen, wurden Mittel- und Maximalwerte ge- bildet, um einen st\u00fcndlichen Schallleistungspegel zu berechnen. [8] Die der Erfassung der Verladeger\u00e4usche von Fahrzeugen fand bei der Untersuchung 1995 in Speditionen und Lebensmittelzentren ermittelt. Bei der Ermittlung der Emissionen wurde zwischen der Verladung an Innen- und Au\u00dfenrampen und verschiedenen Hilfsmitteln unterschie- den. Der Emissionsort wurde so gew\u00e4hlt, dass beispielsweise eine benachbarte Verlade- t\u00e4tigkeit die Messergebnisse nicht beeintr\u00e4chtigen. Die Messwerterfassung erfolgte mit einem Pegelschreiben \u201eRION LR 04\u201c oder einem Magnetbandger\u00e4t \u201eSony TCD-D 10\u201c. [7] Eine \u00dcbersicht zur Erhebung und Ergebnisse der Schallpegelmessungen sind folgend auf- gezeigt.", - "embedding": [ - 0.012341904453933239, - 0.016354672610759735, - -0.00055068323854357, - -0.015589078888297081, - -0.002001434564590454, - 0.004982961341738701, - -0.0096623245626688, - 0.003524372586980462, - -0.020750239491462708, - -0.035375725477933884, - 0.016697870567440987, - 0.018875854089856148, - -0.012275904417037964, - 0.004662863910198212, - -0.00214498327113688, - 0.013543094508349895, - 0.0384645015001297, - 0.004177767783403397, - 0.003537572454661131, - 0.005972953513264656, - -0.004025968722999096, - 0.014005091041326523, - 0.0037619706708937883, - -0.02148943394422531, - -0.011675309389829636, - 0.016420671716332436, - 0.04018048942089081, - -0.011048314161598682, - 0.00133566465228796, - 0.008315935730934143, - 0.015034683048725128, - -0.007365542929619551, - -0.02336381934583187, - 0.003775170771405101, - -0.003105275798588991, - -0.0095897251740098, - 0.014295488595962524, - -0.008711932227015495, - 0.027350187301635742, - -0.00529975863173604, - 0.013912691734731197, - -0.0042371670715510845, - 0.006916746497154236, - -0.029330171644687653, - 0.018400657922029495, - 0.007015745621174574, - 0.008447933942079544, - 0.007438142318278551, - -0.010064922273159027, - 0.009233328513801098, - 0.03046536259353161, - 0.011926107108592987, - -0.018493056297302246, - 0.0023462818935513496, - -0.0006991820991970599, - -0.008837331086397171, - -0.004699163604527712, - -0.007655940484255552, - -0.023495817556977272, - -0.024340610951185226, - -0.033923737704753876, - -0.007233543787151575, - -0.02097463794052601, - 0.006982745602726936, - -0.005870654247701168, - -0.020261842757463455, - -0.018255459144711494, - -0.0036134719848632812, - -0.01552307978272438, - 0.01916625164449215, - 0.01731826551258564, - 0.016684670001268387, - 0.002050934126600623, - 0.008005738258361816, - 0.01738426461815834, - -0.0029089273884892464, - 0.006995945703238249, - 0.0023248319048434496, - -0.00393686955794692, - 0.004788262769579887, - 0.03212855011224747, - -0.021925030276179314, - -0.018625054508447647, - 0.033976536244153976, - 0.008863731287419796, - -0.0013901141937822104, - -0.01754266396164894, - 0.024485809728503227, - -0.02090863697230816, - -0.011404711753129959, - 0.001235015457496047, - 0.00873833242803812, - 0.0009363677236251533, - 0.0032653247471898794, - -0.0020228843204677105, - -0.013925892300903797, - -0.007629540748894215, - 0.022809423506259918, - 0.0052964589558541775, - -0.037619706243276596, - -0.006015853490680456, - 0.010163920931518078, - 0.01071171648800373, - -0.0097415242344141, - -0.016526272520422935, - 0.005725455470383167, - 0.003425373462960124, - 0.0014924134593456984, - -0.004438465461134911, - -0.016354672610759735, - -0.0144274877384305, - 0.022373827174305916, - -0.008249935694038868, - -0.009682124480605125, - 0.028300579637289047, - -0.011912907473742962, - 0.04625244066119194, - -0.008111337199807167, - -0.007207144051790237, - -0.01708066649734974, - 0.02493460662662983, - -0.009081529453396797, - 0.02510620467364788, - 0.0014074391219764948, - 0.03585091978311539, - 0.014018290676176548, - 0.008045337162911892, - -0.004557264503091574, - -0.01726546511054039, - -0.012084506452083588, - -0.024578209966421127, - -0.006101652514189482, - 0.0011681909672915936, - 0.024208612740039825, - -0.019879044964909554, - 7.007289241300896e-05, - -0.011761108413338661, - 0.014995083212852478, - -0.02485540695488453, - -0.03484772890806198, - 0.010520318523049355, - 0.018743854016065598, - -0.03051816299557686, - -0.0286437775939703, - -0.021779831498861313, - 0.03508532792329788, - 0.014691486023366451, - -0.003207575064152479, - -0.00425366684794426, - -0.016249073669314384, - 0.0031976751051843166, - -0.020552240312099457, - 0.015589078888297081, - -0.008309335447847843, - -0.005105060525238514, - -0.011602710001170635, - 0.0026581294368952513, - 0.0380685031414032, - -0.007741739973425865, - -0.004613364115357399, - 0.005930054001510143, - 0.003001326695084572, - 0.011840308085083961, - 0.013859892264008522, - 0.005798054859042168, - 0.008269735611975193, - -0.006392050534486771, - -0.0057023558765649796, - 0.008210335858166218, - -0.014717885293066502, - -0.01544388011097908, - 0.032022953033447266, - -0.025396602228283882, - 0.0145066874101758, - -0.010434518568217754, - 0.00978112407028675, - 0.011424511671066284, - 0.006081852596253157, - -0.0382269024848938, - -0.014519887045025826, - -0.021529031917452812, - 0.015457079745829105, - 0.014150289818644524, - 0.01341769564896822, - -0.016658270731568336, - 0.016249073669314384, - 0.031706154346466064, - 0.008883531205356121, - -0.010672117583453655, - -0.03094056062400341, - -0.010414719581604004, - 0.004715663380920887, - -0.0007474442245438695, - -0.02088223770260811, - -0.6378190517425537, - 0.0027125789783895016, - -0.003422073321416974, - 0.002870977623388171, - 0.006131352391093969, - 0.022189028561115265, - 0.0048014628700912, - -0.018691055476665497, - -0.020499439910054207, - 0.049050819128751755, - -0.01144431158900261, - 0.004933461546897888, - 0.0010254670633003116, - -0.01359589397907257, - -0.009002329781651497, - -0.026505393907427788, - -0.03334294259548187, - 0.00026874165632762015, - 0.03241894766688347, - 0.007979338057339191, - -0.03284134343266487, - 0.01953584887087345, - -0.0006855696556158364, - 0.003758670762181282, - 0.006524049211293459, - 0.03651091828942299, - 0.012058106251060963, - -0.016605470329523087, - 0.022096628323197365, - -0.003639871720224619, - -0.01743706502020359, - 0.011820508167147636, - -0.0385701023042202, - 0.006976145785301924, - 0.04245087131857872, - -0.00337422383017838, - 0.006081852596253157, - 0.026346994563937187, - 0.018123459070920944, - 0.020275043323636055, - -0.008375334553420544, - -0.005870654247701168, - 0.016381071880459785, - 0.002214282751083374, - -0.00533935846760869, - -0.004181067459285259, - 0.029884567484259605, - -0.007504141889512539, - 0.009173928759992123, - -0.0381741039454937, - 0.0023215319961309433, - 0.004633164033293724, - 0.015602278523147106, - 0.011318911798298359, - 0.03302614390850067, - -0.002818178152665496, - 0.03247174620628357, - -0.015179881826043129, - -0.006778147537261248, - 0.005590156652033329, - -0.010375119745731354, - -0.0017555863596498966, - -0.0019832844845950603, - -0.011860108003020287, - -0.014704685658216476, - 0.017978260293602943, - 0.0018677854677662253, - -0.05013320967555046, - 0.0287229772657156, - -0.004735463298857212, - -0.0074315425008535385, - 0.017780261114239693, - -0.007959538139402866, - -0.020644640550017357, - 0.022505825385451317, - 0.014876284636557102, - 0.011813907884061337, - -0.015945475548505783, - 0.010064922273159027, - 0.027429386973381042, - -0.00476186303421855, - -0.0015575878787785769, - -0.026043398305773735, - 0.004062268417328596, - 0.01719946600496769, - -0.017938660457730293, - -0.020050644874572754, - 0.017740663141012192, - 0.008428134955465794, - 0.014176690019667149, - 0.01169510930776596, - 0.033844538033008575, - 0.008857131004333496, - -0.026597794145345688, - -0.008263136260211468, - 0.04181727394461632, - -0.023918215185403824, - 0.024274611845612526, - 0.0013381396420300007, - -0.024604609236121178, - -0.026162195950746536, - -0.019733846187591553, - 0.014084290713071823, - -0.015958676114678383, - 0.02283582277595997, - 0.0006851571961306036, - -0.006982745602726936, - -0.001861185533925891, - 0.02729738876223564, - -0.033501338213682175, - -0.01453308667987585, - -0.0034451731480658054, - 0.009272928349673748, - -0.012962299399077892, - -0.011602710001170635, - -0.029567770659923553, - 0.022030629217624664, - -0.005765055306255817, - -0.010401519015431404, - -0.009035330265760422, - 0.007068545091897249, - -0.008606333285570145, - 0.039573293179273605, - -0.005101760383695364, - -0.01342429593205452, - 0.019786646589636803, - 0.02096143737435341, - -0.004593564197421074, - -0.024248212575912476, - -0.028458978980779648, - 0.026544993743300438, - -0.010342119261622429, - 0.024023814126849174, - -0.0190342515707016, - 0.025871798396110535, - -0.004897161852568388, - 0.03305254504084587, - -0.013675093650817871, - 0.0003551597474142909, - -0.02670339308679104, - -0.04287326708436012, - -0.003943469375371933, - 0.035692524164915085, - -0.041394878178834915, - -0.014189889654517174, - -0.03500612825155258, - -0.020037444308400154, - 0.011893107555806637, - 0.01702786795794964, - 0.0043988656252622604, - -0.004547364544123411, - -0.02510620467364788, - -0.004322966560721397, - 0.020420242100954056, - 0.005596756469458342, - 0.00850733369588852, - -0.003455073107033968, - -0.0145726865157485, - -0.00616435194388032, - -0.02346941828727722, - 0.005121560301631689, - 0.010355319827795029, - -0.031653355807065964, - -0.007339143194258213, - -0.012566301971673965, - -0.01267190184444189, - 0.003946769516915083, - 0.0012737901415675879, - -0.027376586571335793, - -0.0290133748203516, - -0.005956453736871481, - -0.005646256264299154, - -0.001165715977549553, - 0.016763869673013687, - 0.004732163157314062, - 0.00783413928002119, - -0.022703824564814568, - -0.0025063306093215942, - -0.02100103721022606, - -0.030438963323831558, - 0.023944614455103874, - -0.010355319827795029, - -0.02724458836019039, - 0.0005011836183257401, - 0.016407473012804985, - 0.006929946132004261, - 0.01057971827685833, - 0.008989130146801472, - -0.013147098012268543, - 0.007933137938380241, - -0.012051505967974663, - 0.02327141910791397, - -0.014625485986471176, - 0.01544388011097908, - -0.022690623998641968, - -0.011774308979511261, - 0.013754293322563171, - 0.006649448536336422, - -0.009411526843905449, - 0.019681047648191452, - 0.02703339047729969, - -0.006197351962327957, - 0.005662756040692329, - -0.01900785230100155, - 0.02119903452694416, - -0.02139703370630741, - 0.020380642265081406, - -0.009154128842055798, - 0.015800276771187782, - 0.008329135365784168, - 0.009959322400391102, - -0.0016846369253471494, - -0.039573293179273605, - -0.010586317628622055, - 0.010837116278707981, - 0.06420429795980453, - -0.014876284636557102, - 0.008711932227015495, - 0.04654283821582794, - -0.0096755251288414, - -0.0030145265627652407, - 0.0039533693343400955, - 0.03447813168168068, - 0.017041068524122238, - -0.0016664870781823993, - -0.012104306370019913, - 0.0035309726372361183, - 0.01330549642443657, - 0.007576741278171539, - -0.01057971827685833, - -0.013952291570603848, - 0.0143614886328578, - -0.0023908314760774374, - 0.015153482556343079, - 0.01525908149778843, - 0.014770685695111752, - -0.0033643238712102175, - -0.0005548081826418638, - 0.037962906062603, - 0.015536279417574406, - -0.002783528296276927, - 0.012830300256609917, - 0.0016978367930278182, - -0.013127298094332218, - 0.017833061516284943, - -0.026373395696282387, - 0.008381934836506844, - 0.02867017686367035, - -0.006804547272622585, - -0.0056792558170855045, - -0.024327410385012627, - 0.013622294180095196, - -0.008223536424338818, - 0.0029072773177176714, - 0.014480287209153175, - -0.026597794145345688, - 0.023865414783358574, - -0.013714693486690521, - 0.008111337199807167, - 0.022294627502560616, - 0.0050885602831840515, - -0.005256859119981527, - -0.0004739588184747845, - -0.026122597977519035, - 0.003461673157289624, - 0.0016004876233637333, - -0.011899707838892937, - -0.025475801900029182, - -0.02315261960029602, - -0.008962729945778847, - 0.0066362484358251095, - -0.011101113632321358, - -0.00620725192129612, - -0.0020162842702120543, - 0.029488570988178253, - -0.0142822889611125, - 0.003252124646678567, - 0.009543525986373425, - 0.0014445637352764606, - 0.009154128842055798, - -0.012190105393528938, - -0.014599086716771126, - 0.004629863891750574, - 0.026294196024537086, - -0.015958676114678383, - -0.022294627502560616, - -0.007147744297981262, - -0.01064571738243103, - -0.015536279417574406, - -0.0033709239214658737, - -0.02125183492898941, - -0.0024155811406672, - 0.006415150128304958, - -0.02114623598754406, - 0.011074714362621307, - 0.009127729572355747, - 0.02696739137172699, - 0.017965059727430344, - -0.012988699600100517, - 0.026439394801855087, - 0.011959107592701912, - -0.011312312446534634, - -0.029356572777032852, - -0.024023814126849174, - 0.006510849576443434, - 0.011186913587152958, - -0.01916625164449215, - -0.008210335858166218, - -0.00038424076046794653, - -0.01446708757430315, - -0.009378527291119099, - 0.0015592379495501518, - -0.002153233392164111, - -0.006560348905622959, - -0.01908705197274685, - 0.0014957133680582047, - 0.005151260178536177, - 0.0042371670715510845, - 0.029382972046732903, - 0.006134652532637119, - -0.014203089289367199, - -0.008474334143102169, - -0.010817316360771656, - 0.007853939197957516, - 0.015575879253447056, - 0.014110689982771873, - 0.0021218834444880486, - 0.01900785230100155, - -0.025502201169729233, - -0.007167544215917587, - 0.004085368476808071, - -0.03680131584405899, - 0.01693546772003174, - 0.024287810549139977, - 0.007603141013532877, - 0.010870115831494331, - 0.02484220638871193, - -0.005656156223267317, - 0.013153698295354843, - -0.020275043323636055, - -0.0047585628926754, - -0.01330549642443657, - 0.02090863697230816, - 0.014229489490389824, - -0.007537141442298889, - 0.0022060328628867865, - 0.0059432536363601685, - 0.02147623337805271, - 0.0013859892496839166, - -0.025528602302074432, - 0.02890777587890625, - 0.024499010294675827, - 0.007860538549721241, - -0.031125357374548912, - -0.02320542000234127, - 0.039467692375183105, - 0.0073061431758105755, - 0.020776638761162758, - -0.01915305107831955, - 0.0019073851872235537, - -0.00526675907894969, - 0.0036497716791927814, - 0.027693385258316994, - -0.009253128431737423, - 0.0023578316904604435, - 0.016341473907232285, - 0.011609310284256935, - -0.007108144927769899, - 0.0029303771443665028, - -0.001022992073558271, - 0.01902105286717415, - -0.003019476542249322, - 0.0010807416401803493, - -0.005131460260599852, - 0.0008579933200962842, - -0.030412564054131508, - -0.009919722564518452, - -0.016565870493650436, - 0.006448150146752596, - -0.030386164784431458, - 0.018229058012366295, - -0.011074714362621307, - -0.020407041534781456, - -0.018017860129475594, - -0.027534985914826393, - -0.024631008505821228, - 0.009616125375032425, - -0.004052368458360434, - -0.007451341953128576, - -0.024010613560676575, - -0.0007585816201753914, - -0.011912907473742962, - -0.016064275056123734, - 0.0037487708032131195, - 0.010691916570067406, - -0.03701251372694969, - -0.01894185319542885, - 0.0018941853195428848, - 0.022175827994942665, - -0.000724756857380271, - 0.035375725477933884, - -0.0145066874101758, - -0.024485809728503227, - 0.0075899409130215645, - -0.024512208998203278, - -0.0006414325325749815, - -0.01548347994685173, - -0.013516695238649845, - -0.016433872282505035, - 0.0058607542887330055, - -0.011041713878512383, - 0.002666379325091839, - 0.004540764726698399, - 0.009068329818546772, - -0.012269305065274239, - 0.007576741278171539, - -0.008870331570506096, - -0.00865253247320652, - 0.0032438747584819794, - -0.004629863891750574, - 0.018466657027602196, - 0.01360909454524517, - 0.019773446023464203, - -0.017833061516284943, - 0.029990166425704956, - -0.020763438194990158, - -0.015034683048725128, - -0.013298897072672844, - 0.012751100584864616, - 0.00436916621401906, - 0.003108575940132141, - -0.011813907884061337, - 0.025911398231983185, - 0.004969761241227388, - -0.0028099282644689083, - -0.025634201243519783, - 0.021621432155370712, - 0.020697439089417458, - 0.006896946579217911, - -0.003745470894500613, - 0.018796654418110847, - 0.019958244636654854, - 0.02327141910791397, - -0.0017555863596498966, - 0.006830947007983923, - -0.02890777587890625, - 0.04548684507608414, - -0.002309981966391206, - 0.011926107108592987, - 0.027376586571335793, - -0.033659737557172775, - -0.0044186655431985855, - -0.03606212139129639, - 0.007972737774252892, - 0.0387284979224205, - 0.027270987629890442, - -0.006161052267998457, - -0.014044690877199173, - -0.016090674325823784, - -0.0193378496915102, - 0.013622294180095196, - 0.008012337610125542, - -0.016169873997569084, - -0.014519887045025826, - -0.005448257550597191, - -0.006566949188709259, - -5.450113894767128e-05, - -0.0024452810175716877, - 0.015853077173233032, - -0.02321862056851387, - -0.022123027592897415, - 0.011596109718084335, - -0.0005036586080677807, - 0.016763869673013687, - -0.013556295074522495, - -0.022136228159070015, - -0.024485809728503227, - -0.0040556685999035835, - -0.013470495119690895, - -0.03439893200993538, - 0.008025537244975567, - -0.005441657733172178, - 0.009688724763691425, - 0.008949530310928822, - 0.03231335058808327, - -0.0025904797948896885, - -0.008355535566806793, - -0.013807092793285847, - -0.006590048782527447, - -0.004567164462059736, - -0.02323181927204132, - -0.000914917909540236, - -0.030491763725876808, - 0.01548347994685173, - 0.019799847155809402, - 0.013470495119690895, - 0.007913338951766491, - -0.0007750814547762275, - 0.015008283779025078, - 0.03294694423675537, - -0.010559918358922005, - -0.013081097975373268, - -0.0043988656252622604, - -0.03637891635298729, - -0.009239927865564823, - 0.016103874891996384, - 0.008903331123292446, - 0.014599086716771126, - -0.0195754487067461, - -0.009853723458945751, - 0.020063843578100204, - -0.02672979235649109, - -0.0007074319873936474, - -0.0019337850390002131, - 0.016103874891996384, - -0.02729738876223564, - 0.03600931912660599, - 0.011714909225702286, - 0.0003306161961518228, - -0.009952723048627377, - -0.00728634325787425, - -0.014942283742129803, - -0.020288242027163506, - 0.023852214217185974, - 0.002064133994281292, - 0.03307894244790077, - -0.0036860713735222816, - 0.0014800385106354952, - -0.0007292943191714585, - -0.016367873176932335, - -0.004190967418253422, - 0.000609257782343775, - 0.0068375468254089355, - -0.005840954836457968, - -0.03215495124459267, - -0.003156425431370735, - 0.0026977290399372578, - -0.018070660531520844, - 0.025568202137947083, - -0.0011665408965200186, - 0.01729186624288559, - 0.025515401735901833, - -0.021859031170606613, - 0.006857346743345261, - 0.0016994867473840714, - 0.002499730559065938, - 0.041078079491853714, - 0.006487749516963959, - 0.0380949042737484, - 0.02317902073264122, - -0.02138383314013481, - -0.003342874115332961, - -0.05266759172081947, - 0.012005306780338287, - 0.015813477337360382, - 0.007642740849405527, - -0.013925892300903797, - -0.011160513386130333, - -0.012289104983210564, - 0.018902253359556198, - 0.00667584827169776, - -0.0192058514803648, - -0.016249073669314384, - 0.03054456226527691, - 0.021832630038261414, - -0.012256104499101639, - -0.014731085859239101, - -0.0034847729839384556, - -0.02477620728313923, - -0.008395134471356869, - 0.015061083249747753, - -0.005260159261524677, - -0.016341473907232285, - -0.0029584269504994154, - -0.0003553659771569073, - 0.04820602387189865, - 0.01712026633322239, - 0.02336381934583187, - 0.018849452957510948, - -0.005748555529862642, - 0.012005306780338287, - -0.021832630038261414, - -0.02346941828727722, - 0.018268657848238945, - -0.016697870567440987, - 0.048813220113515854, - 0.002031134208664298, - -0.014071091078221798, - 0.011860108003020287, - -0.0008579933200962842, - -0.010830515995621681, - -0.002973276888951659, - -0.018559055402874947, - 0.01446708757430315, - -0.01766146346926689, - 0.012883099727332592, - 0.015179881826043129, - -0.018783453851938248, - 0.007702140137553215, - 0.00537895830348134, - -0.0032785246148705482, - -0.011173713020980358, - 0.005237059202045202, - -0.0145726865157485, - 0.005916853900998831, - 0.025581400841474533, - -0.01960184797644615, - -0.005161160137504339, - -0.008599733002483845, - -0.0195622481405735, - -0.020671039819717407, - -0.017912261188030243, - 0.009721724316477776, - -0.03616771847009659, - -0.0012787401210516691, - -0.014863085001707077, - 0.0046463641338050365, - 0.029462171718478203, - -0.0037520709447562695, - -0.01153670996427536, - -0.004445065278559923, - 0.02713898941874504, - -0.048734020441770554, - 0.010592917911708355, - 0.039731692522764206, - -0.016552671790122986, - -0.009147528558969498, - 0.013873091898858547, - 0.0011030164314433932, - 0.0013381396420300007, - 0.02319221943616867, - -0.02142343297600746, - -0.02106703631579876, - -0.00865253247320652, - -0.015800276771187782, - 0.01923225075006485, - -0.02296782098710537, - -0.003540872596204281, - -0.010368519462645054, - 0.029488570988178253, - 0.010632517747581005, - -0.023839015513658524, - -0.0037883706390857697, - -0.0024749808944761753, - 0.013061298988759518, - 0.006537249311804771, - 0.018189458176493645, - -0.018519455567002296, - 0.017714262008666992, - 0.006491049658507109, - -0.011206712573766708, - 0.0143614886328578, - -0.03437253460288048, - -0.012163705192506313, - 0.001645037205889821, - 0.02282262220978737, - -0.04044448584318161, - 0.013186697848141193, - -0.011833707801997662, - -0.011127513833343983, - -0.007820939645171165, - 0.02896057441830635, - 0.014242689125239849, - 0.0015122132608667016, - 0.022241827100515366, - 0.008428134955465794, - -0.026030197739601135, - 0.03648451715707779, - -0.014995083212852478, - -0.008975930511951447, - 0.026175396516919136, - 0.01540428027510643, - -0.028379779309034348, - 0.012784101068973541, - -0.012619102373719215, - 0.024499010294675827, - 0.020684238523244858, - -0.03978449106216431, - -0.0032455248292535543, - 0.0011690158862620592, - -0.027957383543252945, - -0.01533828116953373, - -0.03212855011224747, - 0.008830731734633446, - 0.002885827561840415, - 0.009794323705136776, - -0.010883315466344357, - 0.02125183492898941, - 0.004478065297007561, - 0.02148943394422531, - -0.01936424896121025, - 0.0029815267771482468, - -0.008177336305379868, - -0.012110905721783638, - 0.014876284636557102, - -0.0038345702923834324, - -0.026109397411346436, - -0.0013859892496839166, - 0.015034683048725128, - -0.0030805261339992285, - 0.027983782812952995, - 0.031811751425266266, - -0.01766146346926689, - -0.009246528148651123, - -0.00783413928002119, - 0.002095483709126711, - 0.007193943951278925, - -0.008065137080848217, - 0.011285912245512009, - -0.020618239417672157, - -0.021713830530643463, - -0.0005894579226151109, - -0.0038345702923834324, - -0.047255631536245346, - -0.010045122355222702, - 0.022162627428770065, - -0.013939091935753822, - -0.0019502848153933883, - 0.022189028561115265, - -0.015575879253447056, - 0.002786828437820077, - -0.002600379753857851, - 0.027561385184526443, - 0.02489500679075718, - -0.007048745173960924, - 0.01730506494641304, - 0.001215215539559722, - -0.00846773386001587, - -0.021779831498861313, - -0.006764947436749935, - -0.03503252938389778, - -0.0003728971059899777, - 0.010427919216454029, - -0.013087698258459568, - 0.02481580711901188, - -0.01166210975497961, - 0.027746183797717094, - 0.004537464585155249, - 0.0006529824458993971, - -0.03656371682882309, - -0.03218134865164757, - -0.04226607084274292, - 0.025634201243519783, - 0.029462171718478203, - -0.024327410385012627, - 0.01723906584084034, - -0.007319343276321888, - -0.011741308495402336, - -0.002164783189073205, - -0.01271150168031454, - 0.000594820361584425, - -0.012460703030228615, - -0.013153698295354843, - 0.013166897930204868, - 0.0018842853605747223, - -0.01245410367846489, - -0.00949072651565075, - -0.020578639581799507, - -0.027270987629890442, - -0.0011690158862620592, - 0.189972922205925, - -0.026122597977519035, - -0.012216505594551563, - -0.00016644246352370828, - -0.02494780719280243, - -0.020380642265081406, - 0.028142182156443596, - -0.008012337610125542, - 0.01554947905242443, - 0.019905446097254753, - 0.007530541624873877, - -0.008124536834657192, - 0.007583341095596552, - 0.013741093687713146, - 0.004045768640935421, - -0.022083427757024765, - -0.02919817343354225, - -0.026214996352791786, - -0.002229132689535618, - 0.013741093687713146, - 0.0380157046020031, - -0.014308689162135124, - -0.01335169654339552, - -0.0290925744920969, - 0.03299974277615547, - 0.0024221811909228563, - 0.01166210975497961, - 0.006764947436749935, - 0.028538178652524948, - 0.006956345867365599, - -0.018836254253983498, - -0.0012234655441716313, - 0.012104306370019913, - -0.009378527291119099, - -0.016249073669314384, - 0.012256104499101639, - 0.0142822889611125, - -0.010111121460795403, - 0.021753430366516113, - 0.0191134512424469, - 0.023799415677785873, - -0.04268847033381462, - 0.002684529172256589, - -0.018031060695648193, - 0.0027769284788519144, - 0.023746615275740623, - 0.0023693814873695374, - 0.01154991053044796, - -0.001961834728717804, - -0.008480934426188469, - -0.020354241132736206, - 0.015945475548505783, - -0.005930054001510143, - 0.041183680295944214, - -0.012308903969824314, - -0.016711071133613586, - 0.0022736822720617056, - -0.005441657733172178, - 0.006883746478706598, - 0.007048745173960924, - -0.03503252938389778, - -0.001601312542334199, - -0.001141791115514934, - 0.02465740777552128, - -0.03128375858068466, - 0.015734277665615082, - -0.01356949470937252, - -0.014453887939453125, - -0.002146633341908455, - -0.031943753361701965, - -0.004606764297932386, - -0.002316582016646862, - -0.006718747783452272, - 0.0074315425008535385, - -0.029646970331668854, - -0.028247781097888947, - 0.01139151118695736, - 0.013411096297204494, - 0.018004659563302994, - 0.013701493851840496, - -0.011827108450233936, - 0.008388535119593143, - -0.0031184758991003036, - -0.03637891635298729, - -0.018572255969047546, - -0.0191134512424469, - -0.004445065278559923, - 0.022017428651452065, - -0.007438142318278551, - -0.02890777587890625, - -0.02283582277595997, - 0.01144431158900261, - -0.006629648618400097, - 0.0017753861611708999, - 0.0015724378172308207, - -0.002562429988756776, - 0.010322320275008678, - 0.010586317628622055, - -0.029646970331668854, - 0.004992861300706863, - -0.027930982410907745, - 0.06610509008169174, - 0.04817962646484375, - -0.018361058086156845, - -0.0007672440260648727, - 0.011747908778488636, - -0.0075107417069375515, - 0.021634632721543312, - 0.009022129699587822, - -0.015166682191193104, - -0.010051721706986427, - -0.03508532792329788, - 0.02674299292266369, - -0.010005522519350052, - 0.0073259430937469006, - 0.00728634325787425, - 0.014229489490389824, - 0.007787939626723528, - -0.0190342515707016, - 0.005504357162863016, - -0.015760676935315132, - -0.006764947436749935, - 0.004616664256900549, - 0.016183074563741684, - 0.006392050534486771, - -0.01139151118695736, - -0.031468555331230164, - 0.019879044964909554, - -0.002534380415454507, - 0.019654646515846252, - 0.03239255025982857, - -0.024314211681485176, - 0.023878615349531174, - 0.008969330228865147, - 0.01719946600496769, - 0.0014726135414093733, - -0.02141023427248001, - -0.024182211607694626, - -0.010790916159749031, - 0.009655725210905075, - 0.00722034415230155, - -0.0007862189086154103, - 0.009503926150500774, - 0.011021913960576057, - 0.008131137117743492, - 0.004920261912047863, - 0.008500734344124794, - 0.00873173214495182, - -0.02719178795814514, - -0.016024675220251083, - -0.015061083249747753, - -0.016539471223950386, - -0.007055344991385937, - -0.018466657027602196, - 0.01147731114178896, - -0.004923561587929726, - -0.03215495124459267, - -0.04432525485754013, - 0.033791735768318176, - 0.015100683085620403, - -0.018809853121638298, - -0.02497420646250248, - 0.009002329781651497, - -0.02504020556807518, - -0.0003780533152166754, - 0.0021944830659776926, - -0.16716350615024567, - 0.0028330280911177397, - 0.0094445263966918, - -0.029541371390223503, - 0.005035760812461376, - -0.00241888128221035, - 0.007233543787151575, - 0.02287542261183262, - -0.026637393981218338, - -0.008494134061038494, - 0.03273574635386467, - -0.0042371670715510845, - -0.020671039819717407, - -0.009820723906159401, - -0.016605470329523087, - -0.01060611754655838, - -0.017912261188030243, - 0.04630523920059204, - 0.028326980769634247, - 0.021687431260943413, - 0.021938228979706764, - -0.027666985988616943, - 0.02312622033059597, - -0.003090426092967391, - -0.0022918321192264557, - 0.014757485128939152, - -0.023957813158631325, - 0.011959107592701912, - -0.013470495119690895, - -0.014123890548944473, - -0.021647831425070763, - 0.0004916961770504713, - 0.01252010278403759, - -0.01923225075006485, - -0.026320595294237137, - -0.010434518568217754, - 0.009992321953177452, - 0.01147071085870266, - 0.00530635891482234, - 0.016341473907232285, - 0.020116643980145454, - 0.022149428725242615, - -0.016249073669314384, - 0.02694099023938179, - -0.01725226640701294, - 0.020789839327335358, - 0.009437927044928074, - -0.011629109270870686, - -0.01240790355950594, - -0.0037883706390857697, - 0.016011476516723633, - -0.01071831677109003, - 0.0144274877384305, - 0.02882857620716095, - -0.003412173595279455, - 0.02498740516602993, - -0.012724701315164566, - 0.025449402630329132, - -0.0015419130213558674, - -0.01333849597722292, - 0.0017555863596498966, - -0.03632611781358719, - 0.01960184797644615, - 0.01139151118695736, - 0.0008753181900829077, - -0.021568631753325462, - -0.005408658180385828, - 0.0095897251740098, - -0.017965059727430344, - -0.0014742634957656264, - -0.005560456775128841, - -0.018229058012366295, - -0.0026977290399372578, - -0.01345729548484087, - 0.0016334872925654054, - 0.027693385258316994, - -0.008183936588466167, - -0.000333091156790033, - 0.004088668152689934, - -0.018770255148410797, - -0.014031491242349148, - 0.04258286952972412, - 0.016117075458168983, - -0.021700631827116013, - -0.02337701804935932, - -0.02148943394422531, - 0.0019832844845950603, - 0.020354241132736206, - -0.02480260655283928, - 0.008672332391142845, - 0.01248050294816494, - -0.011985506862401962, - -0.015047882683575153, - -0.020314643159508705, - 0.016156675294041634, - -0.002083933912217617, - -0.005438357591629028, - -0.0018067359924316406, - 0.010091321542859077, - -0.013833492994308472, - 0.006378850433975458, - -0.010216720402240753, - -0.03490052744746208, - 0.016605470329523087, - 0.010190321132540703, - 0.009213528595864773, - -0.01725226640701294, - 0.014453887939453125, - 0.037593308836221695, - -0.020327841863036156, - -0.01702786795794964, - -0.010988914407789707, - 0.03070296160876751, - -0.0004789087688550353, - -0.013246096670627594, - 0.0145066874101758, - -0.0070223454385995865, - -0.014942283742129803, - 0.029145373031497, - 0.011714909225702286, - 0.04741403087973595, - -0.010342119261622429, - 0.00670884782448411, - 0.015589078888297081, - -0.010513718239963055, - -0.023654216900467873, - -0.08849211037158966, - 0.01240130327641964, - 0.0192586500197649, - 0.007596541196107864, - 0.016711071133613586, - 0.039414893835783005, - -0.013087698258459568, - 0.0037883706390857697, - -0.007530541624873877, - 0.060561127960681915, - -0.0391508974134922, - -0.030042966827750206, - -0.03244534879922867, - 0.00764934066683054, - 0.015285481698811054, - -0.007926538586616516, - 0.003722371067851782, - -0.020063843578100204, - -0.020671039819717407, - 0.03978449106216431, - 0.004491264931857586, - -0.016394272446632385, - -0.006573549006134272, - -0.0190474521368742, - -0.020631439983844757, - 0.0075899409130215645, - -0.033527739346027374, - 0.01346389576792717, - 0.01346389576792717, - -0.014176690019667149, - 0.02119903452694416, - -0.02702018991112709, - 0.005411957856267691, - -0.02306022122502327, - -0.013041499070823193, - -0.02121223509311676, - -0.014929084107279778, - -0.010289319790899754, - 0.02141023427248001, - -0.012157105840742588, - 0.0022588325664401054, - 0.013292296789586544, - 0.013411096297204494, - -0.010005522519350052, - -0.0007792064570821822, - -0.02123863436281681, - -0.028247781097888947, - 0.02713898941874504, - 0.013430895283818245, - 0.0009718424407765269, - -0.016711071133613586, - -0.028115781024098396, - -0.011213312856853008, - 0.006286451127380133, - 0.017740663141012192, - 0.00776153989136219, - -0.014137090183794498, - 0.003992969170212746, - -0.014783885329961777, - -6.450418732129037e-05, - -0.024723408743739128, - 0.018440255895256996, - -0.04487965255975723, - 0.03413493558764458, - -0.0012729651061818004, - 0.02295462228357792, - -0.014599086716771126, - -0.02683539129793644, - 0.0287229772657156, - -0.013556295074522495, - -0.014599086716771126, - 0.013556295074522495, - -0.0023264819756150246, - -0.001500663347542286, - -0.013094298541545868, - 0.014783885329961777, - -0.026452595368027687, - 0.0022423325572162867, - 0.012473903596401215, - -0.0145066874101758, - 0.00877793226391077, - -0.026254596188664436, - 0.01566827856004238, - -0.013965491205453873, - 0.0388604998588562, - 0.02144983410835266, - 0.0015806877054274082, - -0.0008942930726334453, - 0.01939065009355545, - -0.013582694344222546, - -0.005435057915747166, - 0.0038708699867129326, - 0.02719178795814514, - 0.0007470317068509758, - -0.021832630038261414, - -0.004751963075250387, - 0.012605901807546616, - -0.004949961788952351, - 0.013635493814945221, - 0.01693546772003174, - -0.003656371496617794, - -0.012421103194355965, - -0.04105168208479881, - 0.020789839327335358, - 0.024274611845612526, - 0.004920261912047863, - -0.019720647484064102, - -0.010804115794599056, - 0.0013472145656123757, - 0.00858653336763382, - 0.020737038925290108, - 0.008375334553420544, - -0.014044690877199173, - 0.009286127984523773, - -0.012539902701973915, - -0.013859892264008522, - -0.04231887310743332, - -0.043084464967250824, - -0.012777500785887241, - 0.014123890548944473, - 0.020261842757463455, - 0.012797300703823566, - -0.005491157528012991, - 0.0064514498226344585, - -0.008230135776102543, - 0.010249719955027103, - -0.018083859235048294, - -0.006797946989536285, - 0.005121560301631689, - 0.014559486880898476, - -0.00872513186186552, - 0.0012284154072403908, - -0.012916099280118942, - -0.010078121908009052, - 0.00627985130995512, - 0.020420242100954056, - 0.0009264678228646517, - -0.026624193415045738, - 0.020710639655590057, - 0.022030629217624664, - 0.02711259014904499, - 0.05623156204819679, - -0.02477620728313923, - -0.015166682191193104, - 0.0035540724638849497, - -0.010731516405940056, - -0.0075107417069375515, - -0.0028132281731814146, - 0.005550556816160679, - -0.007906738668680191, - 0.019839445129036903, - -9.343052806798369e-05, - 0.024221811443567276, - 0.008157536387443542, - 0.007160944398492575, - -0.007160944398492575, - -0.005068760830909014, - 0.009246528148651123, - 0.010520318523049355, - -0.0035342725459486246, - 0.01739746518433094, - -0.02501380629837513, - 0.04039168730378151, - 0.02290182188153267, - 0.010856915265321732, - 0.003425373462960124, - -0.005042360629886389, - -0.0190474521368742, - -0.0189682524651289, - -0.0071279448457062244, - -0.0044219656847417355, - -0.003304924350231886, - -0.01342429593205452, - -0.003986368887126446, - 0.02114623598754406, - 0.022545425221323967, - -0.013312096707522869, - -0.007972737774252892, - 0.012236304581165314, - -0.005481257569044828, - -0.002417231211438775, - 0.014480287209153175, - 0.01945664919912815, - 0.009266328066587448, - 0.018704254180192947, - -0.0047585628926754, - 0.03318454325199127, - 0.027376586571335793, - -0.004019368905574083, - -0.017687862738966942, - 0.002333081793040037, - 0.004732163157314062, - -0.0018908852944150567, - 0.0383853018283844, - -0.006685748230665922, - 0.0094445263966918, - 0.0193510502576828, - 0.024235012009739876, - 0.010302520357072353, - -0.011087913997471333, - 0.035745322704315186, - 0.04619964212179184, - 0.0013480394845828414, - 0.002565730130299926, - -0.0025541801005601883, - -0.03529652580618858, - 0.013206497766077518, - 0.015971876680850983, - -0.0063524506986141205, - -0.038834098726511, - 0.016249073669314384, - 0.02506660483777523, - -0.005078660789877176, - 0.003458373248577118, - -0.00108321662992239, - 0.0023627816699445248, - -0.013127298094332218, - 0.022400226444005966, - -0.02143663354218006, - -0.016697870567440987, - -0.02092183753848076, - 0.027719784528017044, - 0.03313174098730087, - 0.018136659637093544, - 0.0033148243092000484, - -0.0028792277444154024, - 0.0036299717612564564, - -0.01050051860511303, - 0.015866275876760483, - -0.02500060573220253, - 0.020657839253544807, - -0.020737038925290108, - -0.0012490402441471815, - 4.851993435295299e-05, - -0.009583125822246075, - -0.006530649494379759, - -0.005184259731322527, - -0.0020591840147972107, - 0.016803469508886337, - 0.013701493851840496, - 0.01169510930776596, - 0.12619102001190186, - 0.02303382195532322, - -0.01345069520175457, - 0.019707446917891502, - 0.0004467340186238289, - 0.011417911387979984, - 0.011094514280557632, - 0.006857346743345261, - 0.0022588325664401054, - -0.049262017011642456, - -0.0026779291220009327, - -0.013939091935753822, - 0.021740231662988663, - -0.030174965038895607, - -0.008949530310928822, - 0.037830907851457596, - -0.0015064382459968328, - 0.006995945703238249, - -0.028062982484698296, - 0.004415365867316723, - 0.026386594399809837, - -0.031521353870630264, - 0.010190321132540703, - 0.01166210975497961, - -0.014612286351621151, - -0.00869213230907917, - 0.021502632647752762, - 0.0016516371397301555, - 0.009965922683477402, - -0.006174251902848482, - 0.004999461118131876, - 0.01071831677109003, - -0.05393478274345398, - -0.033633340150117874, - 0.016460271552205086, - -0.03632611781358719, - -0.0029617270920425653, - -0.033738937228918076, - 0.006771547254174948, - 0.0039566694758832455, - -0.005187559872865677, - 0.025911398231983185, - -0.00432956637814641, - -0.029488570988178253, - 0.007952937856316566, - -0.002463430864736438, - 0.010236520320177078, - -0.0008852181490510702, - -0.011820508167147636 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 13, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 506 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000014.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000014.json deleted file mode 100644 index ac5360727e8f326461bfffda79c83372134e92bc..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000014.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000014", - "content": "Die Messwerterfassung erfolgte mit einem Pegelschreiben \u201eRION LR 04\u201c oder einem Magnetbandger\u00e4t \u201eSony TCD-D 10\u201c. [7] Eine \u00dcbersicht zur Erhebung und Ergebnisse der Schallpegelmessungen sind folgend auf- gezeigt. Hierbei wurde der Schallleistungspegel innerhalb von einer Einwirkzeit von f\u00fcnf Sekunden auf einer Stunde umgerechnet (siehe Tabelle 2). | LWA,1h | bei | der | Be- | und | Entladung | [dB(A)] | Vorgang | Au\u00dfenrampe | Innenrampe | Palettenhubwagen | \u00fcber | \u00dcberladebr\u00fccke | 85,0 | 80,0 | Palettenhubwagen | \u00fcber | fahrzeugeigene | Ladeboardwand | 88,0 | - | Rollcontainer | \u00fcber | \u00dcberladebr\u00fccke | - | 64,0 | Rollcontainer | \u00fcber | fahrzeugeigene | Ladebrordwand | 78,0 | - | Kleinstapler | \u00fcber | \u00dcberladebr\u00fccke | 75,0 | 70,0 | Rollger\u00e4usche, | Wageboden | 75,0 | 75,0 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 2: \u00dcbersicht \u00fcber den Schallleistungspegel verschiedener Vorg\u00e4nge [7]\nHier: LWAT,1h: st\u00fcndlich mittlerer Schalleistungspegel [dB(A)]\nNach dem Technischen Bericht 1995 k\u00f6nnen Verladeger\u00e4usche eines Gabelstaplers meist aus den Datenbl\u00e4ttern der Firmen entnommen werden. Bei der Messung der Ge- r\u00e4uschemissionen von Gabelstaplern wurden Gabelstapler der Klasse eine Tonne bis drei Tonnen ermittelt. Der mittlere st\u00fcndliche Schallleistungspegel betrug 110 dB(A) mit einer Standardabweichung von 3,1 dB. \u00c4hnlich wie bei der Emissionsansatz Ermittlung von Lkw-Ger\u00e4uschen, wurde der Emissionsansatz der Verladeger\u00e4usche gew\u00e4hlt (siehe Formel 28 und Formel 29). [7, 8]\n25\n3 Aktuelle Prognosegrundlage\n\ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc5f = \ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc47,1\u210e + 10 \u2217 \ud835\udc59\ud835\udc54(\ud835\udc5b \u2212 ( \ud835\udc47\ud835\udc38 1 \u210e ))\nFormel 28: Schallleistungspegel nach dem Technischen Bericht 1995 [7] [dB(A)]\n\ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc47,1\u210e = \ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc47 + 10 \u2217 \ud835\udc59\ud835\udc54( \ud835\udc47\ud835\udc38 3600 \ud835\udc60 ) \u221210 \u2217 \ud835\udc59\ud835\udc54( \ud835\udc46 \ud835\udc460\n)\nFormel 29: Schallleistungspegel nach dem Technischen Bericht 2005 [8] [dB(A)] Mit: LWAT,1h: st\u00fcndlich gemittelter Schallleistungspegel [dB(A)], n: Anzahl der Ereignisse in der Beurtei- lungszeit TE, LWAT: Schallleistungspegel inklusive Impulszuschlag KI, S: Gr\u00f6\u00dfe der Fl\u00e4che (S0 = 1 m\u00b2)\nNach R\u00fcckfrage beim T\u00dcV Nord bez\u00fcglich des aktuellen Forschungsstandes teilte Dipl.- Ing. Knut Lenkewitz mit, dass derzeit weitere Untersuchungen durchgef\u00fchrt werden. Er informierte zudem, dass die Untersuchungen von 2019 bis 2021 gezeigt haben, dass im Vergleich zu den Ergebnissen aus dem Jahr 1995 der ermittelte Schallleistungspegel auf- grund des fortschrittlichen Technologiestandes niedriger angesetzt werden kann. Dar- \u00fcber hinaus wurden aktuelle Datenbl\u00e4tter bereitgestellt, die den aktuellen Stand der Technik widerspiegeln. In Tabelle 3 sind die aktuellen Datenbl\u00e4tter zusammengefasst. | LWAT,1h | bei | der | Gesamter | Vorgang | Be- | und | Entladung | [dB(A)] | Paletten | an | einer | Au\u00dfenrampe | \u00fcber | eine | Mini-\u00dcberladebr\u00fccke, | Klappkeil- | \u00dcberladebr\u00fccke | oder | schwenkbare | \u00dcberladebr\u00fccke | mit | Elektro-Flurf\u00f6derfahrzeug | 79,9 | Paletten | an | einer | Au\u00dfenrampe | \u00fcber | die | fahrzeugeigene | Ladebordwand | des | Lkw | mit | Elektro-Flurf\u00f6rderfahrzeug | 82,0 | Rollwagen | an | einer | Au\u00dfenrampe | \u00fcber | eine | Mini-\u00dcberladebr\u00fccke; | Klappkeil- | \u00dcberladebr\u00fccke | oder | schwenkbare | \u00dcberladebr\u00fccke | 73,8 | Rollwagen | an | einer | Au\u00dfenrampe | \u00fcber | die | fahrzeugeigene | Ladebordwand | des | Lkw | 74,5 | Paletten | an | Vorsatzrampen | mit | Planen-Torrrandabdichtung | und | Typ | A: | Br\u00fcckenplateau | und | Klappkeil, | rutschfeste | und | profilierte | Metalloberfl\u00e4che | 75,5 | integrierter | Vorschub- | Typ | B: | Br\u00fcckenplateau | \u2013 | rutschfeste | und | \u00fcberladebr\u00fccke | mit | Elektro- | ger\u00e4uschged\u00e4mmte | und | entdr\u00f6hnte | Korund- | 70,5 | Flurf\u00f6rderfahrzeug | Beschichtung | auf | PU-Basis |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 3: \u00dcbersicht \u00fcber die aktuellen Untersuchungsergebnisse\nHier: LWAT,1h: st\u00fcndlich mittlerer Schalleistungspegel [dB(A)]\n26\n3 Aktuelle Prognosegrundlage\n\n## 3.2 Be- und Entladevorg\u00e4ngen mit Palettenhubwagen und beladener Palette bei Lkw in Logistikzentren\n\nIm Zuge einer Bachelor Thesis an der TH Bingen im Studiengang Umweltschutz, hat sich Martin Heroldt im Jahr 2016 das Ziel gesetzt, einzelne Verladeger\u00e4usche aus dem Tech- nischen Bericht des Hessischen Landesamt f\u00fcr Umwelt und Geologie von 1995 [7] zu \u00fcberpr\u00fcfen und zu best\u00e4tigen beziehungsweise zu aktualisieren. In der Thesis wurde der Schalldruckpegel bei Verladet\u00e4tigkeiten, anhand von drei ver- schiedenen Varianten, jeweils eine Be- und Entladung einer beladenen Normpalette ge- messen. Der erste Typ \u201eTYP 1\u201c bestand aus einer \u00dcberladerampe mit schwenkbarer \u00dcberladebr\u00fccke auf eine Lkw eigene Ladebordwand, welche au\u00dferhalb der Werkshalle lag. Der zweite Typ \u201eTYP 2\u201c und der dritte Typ \u201eTYP 3\u201c bestand aus innen liegenden \u00dcberladebr\u00fccken, welche sich im Wesentlichen durch die L\u00e4nge und das Oberfl\u00e4chen- material charakterisieren lassen. Die Messung erfolgte mit einer standardisierten bela- denen Euro-Palette, welche mit 16 Wasserk\u00e4sten, mit einem Gewicht pro Kasten von 13,2 kg, beladen war. Um eine Vergleichbarkeit mit dem technischen Bericht 1995 [7] zu erzielen, wurde dasselbe Messverfahren (siehe Kapitel Fehler! Verweisquelle konnte nicht gefunden werden.) angewendet, mit dem Unterschied, dass die Vorg\u00e4nge zusam- men gemessen wurden, um praxisn\u00e4here Ergebnisse zu erzielen und nicht nur isolierte Teilschritte. Alle Messungen fanden unter gleichen Rahmenbedingungen statt. Es wurden ortsfeste Emissionsorte in einem Abstand von 3 m und einer Mikrofonh\u00f6he von 1,5 m links und rechts des Lkws angeordnet. Ein Beladevorgang bestand jeweils aus der Einfahrt eines Handhubwagens mit geladener Palette \u00fcber die \u00dcberladebr\u00fccke, das Festsetzen der Pa- lette in den Lkw und die Ausfahrt des leeren Handhubwagens aus dem Lkw \u00fcber die \u00dcberladebr\u00fccke. Ein Entladevorgang bestand jeweils aus der Einfahrt des leeren Hand- hubwagens \u00fcber die \u00dcberladebr\u00fccke, die Aufnahme einer Palette in den Lkw und die Ausfahrt des Handhubwagens mit Palette aus dem Lkw \u00fcber die \u00dcberladebr\u00fccke. In den Ergebnissen wurden deutlich niedrigere Schallleistungspegel gemessen als bei dem technischen Bericht der HLUG aus dem Jahr 1995.", - "embedding": [ - 0.014617474749684334, - 0.010245461016893387, - 0.011502166278660297, - -0.04479164630174637, - -0.0006002424634061754, - 0.006032188422977924, - -0.0066406987607479095, - -0.01677371747791767, - -0.018586019054055214, - -0.03066362626850605, - 0.0070177107118070126, - 0.039791278541088104, - -0.023083703592419624, - 0.0021860068663954735, - 0.010767986066639423, - 0.014366133138537407, - 0.027647530660033226, - 0.012315718457102776, - 0.01464393176138401, - -0.002052068477496505, - -0.01484235841780901, - -0.016138751059770584, - -0.009114425629377365, - 0.012831629253923893, - -0.011264054104685783, - 0.004365399479866028, - 0.0337061770260334, - -0.014762988314032555, - -0.006429043132811785, - 0.01087381411343813, - 0.0062206946313381195, - -0.012302489951252937, - -0.020636435598134995, - 0.021152345463633537, - -0.005589034408330917, - -0.02920849248766899, - -0.004223193507641554, - 0.0027250677812844515, - 0.0362989604473114, - -0.00036006278241984546, - 0.015318584628403187, - 0.018043652176856995, - 0.0014939919346943498, - -0.019313586875796318, - -0.004441463388502598, - 0.012805172242224216, - 0.006012345664203167, - 0.0062206946313381195, - -0.025001835078001022, - 0.010734914802014828, - 0.009610493667423725, - 0.007163223810493946, - -0.016138751059770584, - 0.018268536776304245, - 0.00564194843173027, - -0.008565443567931652, - -0.002761445939540863, - 0.030531341210007668, - -0.0003464209148660302, - -0.018268536776304245, - -0.026681851595640182, - 0.003948702476918697, - -0.020239580422639847, - 0.013400454074144363, - -0.013254940509796143, - -0.017871681600809097, - 0.007070624735206366, - -0.005787461530417204, - -0.016906002536416054, - -0.0033683027140796185, - 0.013942821882665157, - 0.02907620742917061, - 0.001477456302382052, - -0.002870580879971385, - 0.024896007031202316, - -0.014008964411914349, - 0.0030342834070324898, - -1.0812735126819462e-05, - 0.0015948590589687228, - 0.0035948404110968113, - 0.02013375237584114, - -0.01641654781997204, - -0.02074226178228855, - 0.04905121773481369, - 0.009709707461297512, - -0.013473210856318474, - -0.009299623779952526, - 0.0064158146269619465, - -0.018705075606703758, - -0.002104982500895858, - 0.01529212761670351, - 0.022369366139173508, - -0.007738662883639336, - 0.0018089951481670141, - 0.037039753049612045, - -0.01007349044084549, - 0.0026043576654046774, - 0.016734031960368156, - -0.01365179568529129, - -0.027859186753630638, - -0.015847723931074142, - -0.0033534206449985504, - 0.007546850014477968, - 0.0031351507641375065, - -0.028414783999323845, - -0.011720436625182629, - 0.008691113442182541, - 0.01205114834010601, - -0.002991290995851159, - -0.024604979902505875, - -0.018400821834802628, - 0.006743219681084156, - 0.012269418686628342, - 0.0018007273320108652, - 0.010238846763968468, - 0.0030838903039693832, - 0.023678986355662346, - -0.01261997316032648, - 0.002599396975710988, - -0.016390090808272362, - 0.02691996470093727, - 0.01937972940504551, - 0.03669581562280655, - -0.012719186954200268, - 0.02685382217168808, - 0.012037919834256172, - -0.006918496917933226, - -0.0022389208897948265, - 0.0005365803954191506, - -0.014458732679486275, - -0.03127213567495346, - -0.010992869734764099, - 0.018043652176856995, - -0.00768574932590127, - -0.001632064231671393, - 0.019207758828997612, - -0.014128020964562893, - 0.0011963510187342763, - -0.01885058917105198, - -0.029023293405771255, - -0.007368265651166439, - 0.009484822861850262, - -0.01349966786801815, - -0.03143087774515152, - -0.0012285953853279352, - 0.03759535029530525, - 0.0020471077878028154, - 0.019432643428444862, - -0.012070991098880768, - -1.4791615285503212e-05, - -0.03336223587393761, - -0.0269993357360363, - 0.008671270683407784, - -0.0050731236115098, - -0.011700593866407871, - 0.007831262424588203, - 0.017712939530611038, - 0.003209560876712203, - -0.02182699739933014, - -0.009359152056276798, - 0.0009880024008452892, - 0.018652161583304405, - 0.015662524849176407, - 0.005066509358584881, - 0.014022192917764187, - 0.012725801207125187, - -0.008691113442182541, - -0.0224355086684227, - 0.0038627171888947487, - -0.013228483498096466, - 5.4050757171353325e-05, - 0.01155508030205965, - -0.022713307291269302, - 0.015503782778978348, - -0.016879545524716377, - 0.006048724055290222, - 0.011469095014035702, - -0.008486072532832623, - -0.032912466675043106, - -0.034976109862327576, - -0.02602042816579342, - -0.0016841513570398092, - 0.009603879414498806, - 0.005747776012867689, - -0.024538837373256683, - -0.010265303775668144, - 0.012791943736374378, - 0.02662893757224083, - -0.007255823351442814, - -0.014776216819882393, - 0.003249246394261718, - 0.009293009527027607, - 0.00132946262601763, - -0.03267435356974602, - -0.6425868272781372, - -0.019035788252949715, - -0.0003030149673577398, - 0.007963547483086586, - 0.005549348890781403, - 0.03592856228351593, - 0.01632394827902317, - -0.009927976876497269, - -0.010364516638219357, - 0.04669654741883278, - 0.012388475239276886, - 0.0080032330006361, - -0.004613433964550495, - -0.0031434185802936554, - -0.019670754671096802, - -0.0181494802236557, - -0.02357315830886364, - 0.0026275075506418943, - 0.025822000578045845, - 0.007441021967679262, - -0.0353994220495224, - 0.022144481539726257, - -0.002381127094849944, - 0.005264936480671167, - -0.004471227526664734, - -0.004593591205775738, - 0.018718304112553596, - -0.014286762103438377, - 0.008247959427535534, - 0.0006738259107805789, - -0.0218137688934803, - -0.005086352117359638, - -0.036351874470710754, - 0.024776950478553772, - 0.04135224223136902, - -0.005681633949279785, - 0.005410450045019388, - 0.030848823487758636, - 0.011581537313759327, - 0.016072608530521393, - -0.006726684048771858, - -0.014736531302332878, - -0.011746893636882305, - -0.012838243506848812, - -0.0035617693793028593, - 0.005410450045019388, - 0.03328286483883858, - 0.005602262914180756, - 0.018784446641802788, - -0.03571690618991852, - 0.015424411743879318, - 0.0015361576806753874, - 0.013757622800767422, - 0.018890274688601494, - 0.021192030981183052, - -0.001082255388610065, - 0.038018662482500076, - -0.003783346386626363, - -0.01608583703637123, - 0.01186595018953085, - 0.004477841779589653, - 0.009464980103075504, - 0.0009301277459599078, - -0.021377230063080788, - -0.019578155130147934, - 0.01824207976460457, - -0.015622839331626892, - -0.03423531726002693, - 0.018321450799703598, - -0.005026823841035366, - -0.010192546993494034, - 0.012686115689575672, - 0.008168588392436504, - -0.014379361644387245, - 0.03225104510784149, - 0.005040052346885204, - 0.010966412723064423, - -0.006247151643037796, - 0.009008597582578659, - 0.02365252934396267, - -0.01072168629616499, - 0.005268243607133627, - -0.01830822229385376, - -0.005803997162729502, - 0.01930035836994648, - -0.010212389752268791, - -0.005112809129059315, - 0.014829129911959171, - 0.010523258708417416, - 0.006452193018049002, - 0.018652161583304405, - 0.04645843431353569, - -0.012567060068249702, - -0.01625780574977398, - -0.02128463052213192, - 0.02883809432387352, - -0.009802306070923805, - 0.027171306312084198, - -0.008949069306254387, - -0.01969721168279648, - -0.02968471683561802, - -0.001848680665716529, - 0.013889907859265804, - -0.024155210703611374, - 0.03301829472184181, - 0.0016684425063431263, - -0.018414050340652466, - -0.0033997204154729843, - 0.01845373585820198, - -0.012745643965899944, - 0.001221154467202723, - -0.016390090808272362, - -0.01641654781997204, - -0.006872197147458792, - -0.02227676659822464, - -0.022951418533921242, - 0.024062611162662506, - 0.018361136317253113, - 0.004381935112178326, - -0.019273901358246803, - 0.008591900579631329, - -0.006002424750477076, - 0.0419342927634716, - 0.001322848373092711, - -0.03479091078042984, - 0.029922829940915108, - 0.033759091049432755, - 0.006409200374037027, - 0.0021711247973144054, - -0.009438523091375828, - 0.010166089981794357, - 0.005020209588110447, - 0.015001100488007069, - -0.016681117936968803, - 0.016535604372620583, - 0.027859186753630638, - 0.030240314081311226, - -0.011760122142732143, - 0.013360768556594849, - -0.019181301817297935, - -0.02371867187321186, - 0.0023546700831502676, - -0.0008284337818622589, - -0.033679720014333725, - -0.013559196144342422, - -0.04812522232532501, - -0.02121848799288273, - 0.018493419513106346, - 0.0073881084099411964, - 0.007255823351442814, - -0.015517011284828186, - -0.026959650218486786, - 0.0054666707292199135, - 0.005479899235069752, - -0.00549312774091959, - 0.010047033429145813, - -0.02533254586160183, - -0.010238846763968468, - -0.0009722935501486063, - -0.025663258507847786, - 0.0037006684578955173, - 0.0015278898645192385, - -0.042145948857069016, - -0.01717057265341282, - 0.002705225022509694, - -0.023890642449259758, - 0.02791210077702999, - 0.009193796664476395, - -0.018043652176856995, - -0.029049750417470932, - -0.0029482983518391848, - 0.0050003668293356895, - -0.0030028659384697676, - 0.00629014428704977, - -0.009319466538727283, - 0.01212390512228012, - -0.006515028420835733, - -0.012408317998051643, - -0.006346364971250296, - -0.018784446641802788, - 0.018638933077454567, - 0.021192030981183052, - -0.01740868389606476, - -0.0013732819352298975, - 0.022594250738620758, - 0.006134709343314171, - 0.0039553167298436165, - 0.011475709266960621, - -0.013810536824166775, - 0.03860071673989296, - -0.01928712986409664, - 0.026509881019592285, - -0.011270668357610703, - 0.001909862388856709, - -0.041616808623075485, - 0.00942529458552599, - -0.002281913533806801, - -0.008598514832556248, - 0.001299698487855494, - 0.018877046182751656, - 0.018638933077454567, - 0.00800984725356102, - 0.014696845784783363, - -0.005079737864434719, - 0.016059380024671555, - -0.0018354521598666906, - 0.009663407690823078, - -0.023467330262064934, - 0.05878738313913345, - 0.0358491912484169, - 0.029314320534467697, - -0.02395678497850895, - -0.028705809265375137, - -0.010609243996441364, - -0.011680751107633114, - 0.04849562048912048, - -0.012573674321174622, - 0.018281765282154083, - 0.01875798963010311, - -0.015887409448623657, - 0.019022559747099876, - 0.005899903830140829, - 0.03989710658788681, - 0.014471961185336113, - -0.013162340968847275, - -0.012368632480502129, - 0.011006098240613937, - 0.022157710045576096, - -0.004471227526664734, - -0.01391636487096548, - -0.0071830665692687035, - 0.007963547483086586, - 0.013466596603393555, - 0.018877046182751656, - 0.005678326822817326, - 0.0235599298030138, - 0.012950685806572437, - -0.0038064962718635798, - 0.03714558109641075, - 0.03005511499941349, - 0.020014695823192596, - 0.01717057265341282, - 0.01998823881149292, - -0.016813402995467186, - 0.005288086365908384, - -0.02486955001950264, - 0.01740868389606476, - 0.031245678663253784, - -0.017593882977962494, - -0.01185933593660593, - 0.0015179684851318598, - 0.0033071208745241165, - -0.01717057265341282, - -0.014128020964562893, - 0.00834717322140932, - -0.002877195132896304, - 0.02678767964243889, - -0.008109060116112232, - 0.00069614895619452, - 0.018189165741205215, - 0.007712205871939659, - 0.017660025507211685, - 0.021721171215176582, - -0.02623208425939083, - -0.004153743851929903, - 0.0014634010149165988, - -0.016046151518821716, - -0.008453001268208027, - -0.013969278894364834, - -0.01699860207736492, - -0.0013278090627864003, - -0.010688615031540394, - 0.003909016959369183, - -0.0044745346531271935, - 0.027118392288684845, - -0.012328946962952614, - -0.003224442945793271, - 0.014895272441208363, - 0.025054749101400375, - 0.018652161583304405, - 0.001036782399751246, - -0.028467698022723198, - -0.002303409855812788, - 0.008314101956784725, - -0.018810903653502464, - -0.017276400700211525, - -0.019776582717895508, - 0.015675753355026245, - -0.027039021253585815, - -0.000525832234416157, - -0.006098330952227116, - 0.015808038413524628, - -0.004600205458700657, - 0.0021082896273583174, - 0.014247077517211437, - 0.007083853241056204, - 0.017527740448713303, - 0.016985373571515083, - -0.003598147537559271, - 0.017871681600809097, - -0.0022901813499629498, - -0.02631145343184471, - -0.005612184293568134, - -0.02907620742917061, - 0.023374730721116066, - -0.015159842558205128, - -0.027250677347183228, - -0.02472403645515442, - 0.010166089981794357, - -0.005840375553816557, - -0.013704708777368069, - 0.010364516638219357, - 0.005913132335990667, - 0.02631145343184471, - -0.01746159791946411, - -0.005952817853540182, - 0.005162416025996208, - 0.001957815606147051, - 0.03759535029530525, - 0.01837436482310295, - -0.025808772072196007, - -0.022858820855617523, - 0.006825897842645645, - 0.01777908205986023, - 0.007619606796652079, - 0.029658259823918343, - 0.01731608621776104, - 0.009438523091375828, - -0.02242228016257286, - -0.027965014800429344, - -0.0020934075582772493, - -0.0344998873770237, - 0.02173439972102642, - 0.030531341210007668, - 0.006892039906233549, - -0.0015849376795813441, - 0.027515245601534843, - -0.01717057265341282, - 0.004077679943293333, - -0.02135077305138111, - 0.01784522458910942, - -0.020252808928489685, - 0.037648264318704605, - -0.0021860068663954735, - -0.0185463335365057, - 0.0013501321664080024, - 0.0020752183627337217, - 0.05098257586359978, - -0.010245461016893387, - -0.02471080794930458, - 0.021707942709326744, - 0.018863817676901817, - 0.025650030001997948, - -0.019578155130147934, - -0.001237689983099699, - 0.026747994124889374, - 0.013340925797820091, - 0.006898654159158468, - 0.002529947552829981, - -0.01898287422955036, - 0.018784446641802788, - 0.01320202648639679, - 0.012891157530248165, - -0.009101197123527527, - 0.010933341458439827, - 0.023771585896611214, - 0.0021711247973144054, - -0.005939589347690344, - 0.021787313744425774, - 0.014101563952863216, - 0.02791210077702999, - 0.01514661405235529, - 0.0046994187869131565, - -0.007407951168715954, - 0.026179170235991478, - -0.019723668694496155, - 0.006690305657684803, - 0.004064451437443495, - -0.0062140803784132, - -0.016072608530521393, - 0.004649811889976263, - -0.019088702276349068, - -0.014286762103438377, - -0.0005700649926438928, - -0.01162783708423376, - -0.025610344484448433, - 0.017355769872665405, - -0.012368632480502129, - -0.044579990208148956, - -0.015437640249729156, - -0.03256852552294731, - -0.006683691404759884, - -0.013089585117995739, - 0.02287204936146736, - -0.011105312034487724, - -0.003535312367603183, - -0.029922829940915108, - 0.014432275667786598, - 0.01677371747791767, - -0.017382226884365082, - 0.011945321224629879, - 0.0027879029512405396, - -0.023229217156767845, - 0.01807010918855667, - -0.021932825446128845, - 0.006690305657684803, - 3.214108073734678e-05, - -0.012322332710027695, - -0.014326447620987892, - 0.01662820391356945, - -0.017051516100764275, - 0.00900198332965374, - 0.010285146534442902, - -0.007149995304644108, - 0.005407142918556929, - 0.019498785957694054, - 0.009689864702522755, - 0.0016113946912810206, - 0.016271034255623817, - 0.002343095140531659, - 0.005582420155405998, - 0.017739396542310715, - 0.009200410917401314, - -0.013433525338768959, - 0.025954285636544228, - -0.033309321850538254, - -0.008419930003583431, - 0.003574997652322054, - 0.02136400155723095, - 0.004534062929451466, - -0.0050995806232094765, - 0.002273645717650652, - 0.006872197147458792, - 0.02320276014506817, - -0.008228116668760777, - -0.009359152056276798, - -0.0043984707444906235, - 0.006224001757800579, - -0.008611743338406086, - 0.01464393176138401, - 0.0006142976926639676, - 0.003998309373855591, - 0.018321450799703598, - 0.004878003615885973, - -0.01953847147524357, - -0.013307854533195496, - 0.04484456032514572, - -0.0025266404263675213, - -0.01616520807147026, - 0.019803039729595184, - -0.029578890651464462, - -0.003945395350456238, - -0.01936650089919567, - 0.005298007745295763, - 0.018718304112553596, - 0.002769713755697012, - 0.003899095579981804, - 0.005460056476294994, - -0.018400821834802628, - -0.02899683639407158, - 0.011264054104685783, - 0.003846181556582451, - 0.00014985392044764012, - -0.0029053057078272104, - -0.03317703679203987, - 0.007242594845592976, - -0.013135884888470173, - 0.020252808928489685, - 0.009974276646971703, - -0.014829129911959171, - -0.02120525948703289, - 0.02371867187321186, - -0.03793929144740105, - 0.026814136654138565, - -0.006581170484423637, - -0.009187182411551476, - -0.03301829472184181, - 0.0004485282697714865, - -0.018519876524806023, - -0.03600793331861496, - 0.004051223397254944, - -0.012547217309474945, - 0.02051737904548645, - 0.007315351627767086, - 0.026179170235991478, - -7.523700332967564e-05, - -0.005311236251145601, - -0.0024704192765057087, - 6.12850853940472e-05, - -0.0017660026205703616, - -0.022144481539726257, - -0.01731608621776104, - -0.01201807800680399, - 0.018969645723700523, - 0.010265303775668144, - 0.0002459671231918037, - 0.00044894166057929397, - 0.02152274362742901, - 0.0018420664127916098, - 0.038944657891988754, - -0.012448003515601158, - -0.0013865104410797358, - -0.0026738073211163282, - -0.017501283437013626, - 0.005116116255521774, - -0.012805172242224216, - 0.0027118392754346132, - 0.009961048141121864, - -0.01739545539021492, - -0.009762621484696865, - 0.01529212761670351, - -0.02791210077702999, - -0.01220989041030407, - -0.01762033998966217, - 0.015199528075754642, - -0.03037259913980961, - 0.032065846025943756, - 0.005784154403954744, - -0.007004482205957174, - 0.008314101956784725, - -0.019895639270544052, - -0.029393691569566727, - -0.01830822229385376, - 0.009431908838450909, - -0.009835377335548401, - 0.005430292803794146, - -0.006333136465400457, - -0.02234290912747383, - 0.006412507500499487, - -0.013559196144342422, - 0.014114792458713055, - -0.014577789232134819, - -0.022144481539726257, - -0.005589034408330917, - -0.022078339010477066, - -0.01746159791946411, - -0.011905635707080364, - -0.020411550998687744, - 0.019340043887495995, - 0.008175202645361423, - 0.02410229668021202, - 0.024896007031202316, - -0.02058352157473564, - -0.007718820124864578, - 0.0029648339841514826, - -0.005304621998220682, - 0.02325567416846752, - 0.01514661405235529, - 0.042675089091062546, - 0.012375246733427048, - -0.02493569254875183, - -0.01529212761670351, - -0.04087601602077484, - 0.010470344685018063, - -0.019723668694496155, - 0.023533472791314125, - 0.016972145065665245, - -0.038415517657995224, - 0.0056254127994179726, - 0.003952009603381157, - 0.016456233337521553, - 0.010774600319564342, - -0.011316968128085136, - 0.04111412912607193, - 0.023467330262064934, - -0.015040786005556583, - -0.022237081080675125, - 0.0032376714516431093, - -0.010020576417446136, - -0.004200043622404337, - 0.006485264282673597, - -0.00736165139824152, - -0.01106562651693821, - 0.0028838093858212233, - -0.012342175468802452, - 0.04918350279331207, - -0.00310869375243783, - 0.014921729452908039, - 0.007639449555426836, - -0.03907694295048714, - 0.015450868755578995, - -0.028044385835528374, - -0.02952597662806511, - 0.01747482642531395, - -0.034685082733631134, - 0.030451970174908638, - -0.009550965391099453, - -0.010602629743516445, - -0.0063166008330881596, - 0.001176508259959519, - -0.009815534576773643, - -0.018943188712000847, - -0.0006800267728976905, - 0.012481074780225754, - -0.006081795319914818, - 0.0008821745286695659, - 0.012805172242224216, - -0.0020454542245715857, - -0.0025646723806858063, - -0.002682075137272477, - -0.013208640739321709, - -0.005460056476294994, - -0.0015055667608976364, - -0.011581537313759327, - 0.0010582787217572331, - 0.004772175569087267, - -0.019895639270544052, - -0.017197029665112495, - -0.019207758828997612, - -0.021006831899285316, - -0.0012178473407402635, - -0.02325567416846752, - 0.0031698753591626883, - -0.04045270383358002, - -0.002938376972451806, - 0.004153743851929903, - -0.009775849990546703, - 0.03217167407274246, - -0.006584477610886097, - -0.023533472791314125, - -0.007632835302501917, - 0.021072974428534508, - -0.03973836451768875, - 0.014882043935358524, - 0.03106047958135605, - -0.010357902385294437, - -0.004593591205775738, - -0.003317042253911495, - 0.006018959917128086, - -0.01391636487096548, - 0.028017928823828697, - -0.0029664875473827124, - -0.021006831899285316, - 0.0007829609094187617, - -0.0011665868805721402, - 0.023096932098269463, - -0.013314468786120415, - -0.012937457300722599, - 0.018731532618403435, - 0.016495918855071068, - 0.013731165789067745, - -0.007831262424588203, - 0.011799807660281658, - 0.005850296933203936, - 0.015173071064054966, - -0.0057246265932917595, - 0.031457334756851196, - -0.02455206587910652, - 0.023321816697716713, - 0.019088702276349068, - -0.011832878924906254, - 0.002189313992857933, - -0.029711173847317696, - -0.011336810886859894, - 0.026880279183387756, - 0.007890790700912476, - -0.036272503435611725, - -0.002481994219124317, - -0.025147348642349243, - -0.0142603050917387, - -0.004147129599004984, - 0.014895272441208363, - 0.005284779239445925, - 0.009140882641077042, - 0.011991620995104313, - 0.00221081031486392, - -0.007546850014477968, - 0.014577789232134819, - 0.008618357591331005, - -0.005598955787718296, - 0.034896738827228546, - 0.008737413212656975, - -0.03137796372175217, - 0.007956933230161667, - -0.014696845784783363, - 0.033600348979234695, - 0.020781947299838066, - -0.016231348738074303, - -0.006551406811922789, - 0.0015510397497564554, - -0.029552433639764786, - -0.003789960639551282, - -0.011303739622235298, - 0.01861247606575489, - 0.013717937283217907, - 0.0072888946160674095, - -0.021866682916879654, - 0.03106047958135605, - -0.0018817518139258027, - 0.018017195165157318, - -0.02746233157813549, - -0.019961781799793243, - 0.006524949800223112, - -0.011323582381010056, - 0.008340558968484402, - -0.0055724987760186195, - -0.03637833148241043, - -0.0006882945308461785, - 0.020398322492837906, - -0.009398837573826313, - 0.012831629253923893, - 0.028864551335573196, - 0.001345171476714313, - -0.02822958491742611, - 0.0017345849191769958, - 0.0051293447613716125, - 0.019035788252949715, - 0.0010880427435040474, - 0.008247959427535534, - -0.02907620742917061, - 0.012646430172026157, - -0.0035088553559035063, - 0.005612184293568134, - -0.03487028181552887, - -0.01570221036672592, - 0.024896007031202316, - -0.005635334178805351, - -0.003436098573729396, - 0.015054014511406422, - -0.030160943046212196, - 0.01664143241941929, - -0.025292860344052315, - 0.017263172194361687, - 0.017263172194361687, - -0.03209230303764343, - 0.012467846274375916, - 0.010529872961342335, - -0.003889174200594425, - -0.0257029440253973, - 0.015106928534805775, - -0.03510839492082596, - 0.01391636487096548, - 0.003783346386626363, - -0.03426177427172661, - 0.02173439972102642, - -0.003288931678980589, - 0.017527740448713303, - -0.0009987505618482828, - 0.004216579254716635, - -0.030028657987713814, - -0.018956417217850685, - -0.04243697598576546, - 0.03492319583892822, - 0.02320276014506817, - -0.01236201822757721, - 0.006154552102088928, - -0.011522009037435055, - -0.016522375866770744, - 0.0024472693912684917, - -0.028044385835528374, - 0.0054236785508692265, - -0.04217240586876869, - -0.019009331241250038, - 0.018705075606703758, - -0.02273976430296898, - 0.0016097411280497909, - -0.006706841289997101, - 0.0033468063920736313, - -0.024300724267959595, - -0.017117658630013466, - 0.18593956530094147, - -0.030346142128109932, - -0.013149112462997437, - 0.003449327079579234, - -0.02006760984659195, - -0.017871681600809097, - 0.028652895241975784, - 0.008419930003583431, - 0.011674136854708195, - 0.03137796372175217, - 0.005777540151029825, - -0.0014551331987604499, - -0.005142573267221451, - 0.007632835302501917, - 0.010682000778615475, - -0.009524508379399776, - -0.03357389196753502, - -0.000935915217269212, - -0.015477325767278671, - 0.027568159624934196, - 0.010252075269818306, - -0.029155578464269638, - -0.011965163983404636, - -0.009868448600172997, - 0.038944657891988754, - 0.016059380024671555, - 0.0003323656565044075, - 0.006098330952227116, - 0.030451970174908638, - 0.02304401807487011, - -0.031245678663253784, - 0.015027557499706745, - 0.017964281141757965, - -0.01707797311246395, - 0.006409200374037027, - 0.0033137351274490356, - 0.008373630233108997, - -0.008624971844255924, - 0.00884324125945568, - 0.02251487970352173, - 0.013638567179441452, - -0.02624531276524067, - -0.016032923012971878, - -0.016363633796572685, - -0.0014435582561418414, - 0.012653044424951077, - 0.006971410941332579, - 0.00933930929750204, - 0.0009888291824609041, - 0.004193429369479418, - -0.004719261545687914, - 0.013704708777368069, - 0.026271769776940346, - 0.03389137610793114, - 0.0032277500722557306, - -0.02166825719177723, - 0.008823398500680923, - 0.0012112330878153443, - -0.0016610014718025923, - 0.013393839821219444, - -0.038865286856889725, - 0.017818767577409744, - -0.015517011284828186, - 0.022369366139173508, - -0.019564928486943245, - 0.01936650089919567, - -0.009431908838450909, - -0.001670922851189971, - 0.0005655176937580109, - -0.02791210077702999, - 0.008327330462634563, - -0.007976775988936424, - -0.024829864501953125, - 0.005503049120306969, - -0.0370926670730114, - -0.029711173847317696, - 0.012811786495149136, - 0.0038858670741319656, - 0.02632468193769455, - 0.020094066858291626, - 0.01422062050551176, - -0.007441021967679262, - -0.005026823841035366, - -0.00892922654747963, - -0.011574923060834408, - -0.019948553293943405, - 0.0052484008483588696, - 0.013221869245171547, - 0.012441389262676239, - -0.01867861859500408, - -0.014352904632687569, - -0.005036745220422745, - -0.005579113028943539, - -0.004342249594628811, - 0.0014179281424731016, - -0.025993971154093742, - 0.0018205700907856226, - 0.011171454563736916, - -0.016363633796572685, - -0.0037568893749266863, - -0.007024324964731932, - 0.03338869288563728, - 0.031086936593055725, - -0.024684350937604904, - -0.03217167407274246, - 0.007652678061276674, - -0.0030756224878132343, - 0.038627173751592636, - 0.0006204985547810793, - -0.00768574932590127, - -0.0016816710121929646, - -0.0265495665371418, - 0.012004849500954151, - -0.02157565765082836, - 0.02602042816579342, - 0.02304401807487011, - 0.0048515466041862965, - 0.006892039906233549, - -0.007196295075118542, - -0.010099947452545166, - 0.005691555328667164, - -0.00728228036314249, - 0.016826631501317024, - -0.007593149784952402, - -0.0012087527429684997, - -0.03989710658788681, - -0.03561107814311981, - 0.016204893589019775, - -0.007738662883639336, - 0.009789077565073967, - 0.01776585355401039, - -0.0037105896044522524, - 0.01579480990767479, - -0.004739104304462671, - 0.01143602468073368, - -0.007368265651166439, - -0.015186299569904804, - -0.014061878435313702, - -0.01293084304779768, - -0.0023794735316187143, - 0.027806272730231285, - 0.0011533584911376238, - -0.002273645717650652, - 0.011502166278660297, - 0.013836993835866451, - 0.0029185342136770487, - 0.01853310503065586, - 0.004302564542740583, - -0.014366133138537407, - -0.018863817676901817, - -0.022594250738620758, - 0.004973909817636013, - 0.003664290066808462, - -0.009385609067976475, - 0.01633717678487301, - 0.0037998820189386606, - -0.02822958491742611, - -0.030716540291905403, - 0.009451751597225666, - 0.00892261229455471, - -0.02090100385248661, - -0.024287495762109756, - 0.00392555259168148, - -0.01723671518266201, - -0.00524178659543395, - -0.002344748703762889, - -0.1674196869134903, - 0.01892996020615101, - 0.013221869245171547, - -0.0228852778673172, - 0.006650620140135288, - -0.0027879029512405396, - 0.020887775346636772, - 0.01747482642531395, - -0.004788711201399565, - -0.005747776012867689, - 0.01433967612683773, - 0.002190967556089163, - -0.02281913533806801, - -0.011085469275712967, - -0.0082016596570611, - -0.0014667081413790584, - -0.010000733658671379, - 0.0440773069858551, - 0.022461965680122375, - 0.0074608647264540195, - -0.0036444473080337048, - -0.01608583703637123, - 0.017421912401914597, - 0.0010475305607542396, - 0.007632835302501917, - 0.017898138612508774, - -0.027118392288684845, - 0.028494155034422874, - -0.0010806018253788352, - -0.015278899110853672, - -0.026681851595640182, - 0.008902769535779953, - 0.007421179208904505, - 0.0016767103224992752, - -0.007315351627767086, - -0.02013375237584114, - 0.008466229774057865, - -0.007302123121917248, - -0.013717937283217907, - 0.033229950815439224, - 0.007269051857292652, - 0.03219813108444214, - -0.009663407690823078, - 0.014247077517211437, - -0.0016138750361278653, - 0.03828323259949684, - 0.002930109156295657, - -0.013625338673591614, - -0.010807671584188938, - -0.017210258170962334, - -0.012533988803625107, - -0.01822885125875473, - 0.0073881084099411964, - 0.012937457300722599, - -0.011343425139784813, - 0.00539722153916955, - 0.010033804923295975, - 0.01869184710085392, - -0.006508414167910814, - 0.009504665620625019, - -0.013069742359220982, - -0.022223852574825287, - 0.018123023211956024, - -0.001802380895242095, - -0.006729991175234318, - -0.023004332557320595, - -0.009557579644024372, - 0.014194163493812084, - -0.000943356251809746, - -0.0032757034059613943, - -0.007877562195062637, - -0.022170938551425934, - 0.002806092146784067, - -0.02471080794930458, - 0.015239213593304157, - 0.005169030278921127, - -0.0022554565221071243, - -0.003264128463342786, - 0.012996985577046871, - 0.011025940999388695, - -0.010682000778615475, - 0.046643633395433426, - 0.009352537803351879, - -0.020411550998687744, - -0.01891673170030117, - -0.009517894126474857, - -0.008988754823803902, - 0.02822958491742611, - -0.01807010918855667, - 0.009934591129422188, - 0.0036146831698715687, - -0.018096566200256348, - -0.015014328993856907, - -0.04066435992717743, - -0.00116824044380337, - -0.010430659167468548, - -0.01961784064769745, - 0.015278899110853672, - -0.015728667378425598, - -0.013526124879717827, - 1.683272967056837e-05, - -0.012838243506848812, - -0.01723671518266201, - 0.024075839668512344, - 0.007804805412888527, - 0.009121039882302284, - -0.025120891630649567, - 0.005810611415654421, - 0.04547952860593796, - -0.02128463052213192, - -0.006276915781199932, - -0.004934224300086498, - 0.017210258170962334, - 0.007189680822193623, - 0.008730798959732056, - 0.006131402216851711, - -0.017501283437013626, - -0.01747482642531395, - 0.0018304914701730013, - 0.0019280514679849148, - 0.042304690927267075, - -0.016879545524716377, - -0.00047209151671268046, - 0.00884324125945568, - -0.011330196633934975, - -0.022237081080675125, - -0.09439846128225327, - -0.002111596753820777, - 0.019353272393345833, - 0.019392957910895348, - 0.011654294095933437, - 0.02121848799288273, - 0.0044513847678899765, - -0.0007370745879597962, - 0.002892077201977372, - 0.052675820887088776, - -0.017104430124163628, - -0.02883809432387352, - -0.01601969450712204, - -0.007976775988936424, - 0.029737630859017372, - -0.0058205327950417995, - 0.024313952773809433, - -0.02067612111568451, - -0.03830968961119652, - 0.038336146622896194, - -0.011746893636882305, - -0.0022008889354765415, - -0.004653119016438723, - -0.00417358661070466, - -0.016879545524716377, - -0.018665390089154243, - -0.034896738827228546, - 0.015622839331626892, - 0.0285206101834774, - -0.015358270145952702, - 0.01292422879487276, - -0.018890274688601494, - -0.005374071653932333, - 0.0061677806079387665, - -0.011072240769863129, - -0.014829129911959171, - -0.021099431440234184, - -0.0025894755963236094, - 0.023626072332262993, - -0.014035421423614025, - 0.004904460161924362, - 0.02104651741683483, - 0.0001523342652944848, - -0.022594250738620758, - -0.008492686785757542, - -0.029155578464269638, - -0.014855586923658848, - 0.010675386525690556, - 0.012725801207125187, - 0.0004245516611263156, - -0.026179170235991478, - -0.02762107364833355, - -0.01537149865180254, - 0.010807671584188938, - 0.022845592349767685, - -0.002313331002369523, - 0.0068589686416089535, - 0.000507229648064822, - -0.01564929634332657, - -0.009603879414498806, - -0.018797675147652626, - 0.012606744654476643, - -0.02746233157813549, - 0.024234581738710403, - 0.004696111660450697, - -0.006620856001973152, - -0.016284262761473656, - -0.007672520820051432, - 0.01646946184337139, - 0.011469095014035702, - -0.02082163281738758, - -0.0018271843437105417, - -0.00020752183627337217, - 0.015530239790678024, - -0.022078339010477066, - 0.0037238181103020906, - -0.0474638007581234, - -0.031933560967445374, - 0.007639449555426836, - 0.0005101233837194741, - 0.0017362384824082255, - -0.03338869288563728, - 0.018969645723700523, - -0.01407510694116354, - 0.027594616636633873, - 0.02174762822687626, - -0.014247077517211437, - -0.008876312524080276, - 0.02128463052213192, - -0.02005438134074211, - 1.5385863662231714e-05, - 0.026351138949394226, - 0.0311133936047554, - -0.009967662394046783, - -0.027197763323783875, - 0.02387741394340992, - -0.00613801646977663, - 0.008876312524080276, - -0.0021694712340831757, - 0.017514511942863464, - -0.007619606796652079, - -0.019736897200345993, - -0.05555963143706322, - 0.022395823150873184, - 0.03158961981534958, - -0.003312081564217806, - -0.006944953929632902, - -0.0033765705302357674, - -0.0006477822898887098, - 0.009756007231771946, - 0.03463217243552208, - -0.0025481367483735085, - -0.024538837373256683, - 0.012560445815324783, - -0.016906002536416054, - -0.005334386136382818, - -0.02554420195519924, - -0.016892774030566216, - -0.0008247132645919919, - 0.029658259823918343, - 0.005178951192647219, - 0.004980524070560932, - -0.006240537390112877, - 0.006485264282673597, - -0.014511646702885628, - 0.0224355086684227, - -0.026377595961093903, - -0.0031764896120876074, - -0.007513778749853373, - -0.006756448186933994, - -0.007679135072976351, - -0.0034691698383539915, - 0.011607994325459003, - 0.004636583384126425, - -0.013956050388514996, - -0.002744910307228565, - -0.009868448600172997, - -0.02189313992857933, - 0.015675753355026245, - 0.033600348979234695, - 0.018890274688601494, - 0.0392356812953949, - -0.012547217309474945, - -0.03767472133040428, - -0.010159475728869438, - -0.020649664103984833, - -0.006055338308215141, - 0.011389724910259247, - 0.026430509984493256, - 0.005390607286244631, - 0.0068589686416089535, - -0.0010541448136791587, - 0.026827365159988403, - 0.02090100385248661, - 0.009623722173273563, - -0.0037403537426143885, - -0.008307487703859806, - 0.0055724987760186195, - 0.002768060192465782, - -0.0011872564209625125, - 0.034896738827228546, - -0.03545233607292175, - 0.05376055836677551, - 0.004656426142901182, - 0.016363633796572685, - -0.024591751396656036, - 0.00482178246602416, - -0.01976335421204567, - -0.005833761300891638, - -0.025425145402550697, - -0.01365179568529129, - -0.020887775346636772, - -0.008605129085481167, - -0.01342691108584404, - 0.011144997552037239, - 0.03431468829512596, - -0.014829129911959171, - -0.014008964411914349, - -0.005086352117359638, - 0.00941868033260107, - -0.017752625048160553, - 0.0015212756115943193, - 0.002892077201977372, - 0.009623722173273563, - 0.00835378747433424, - -0.007712205871939659, - 0.026033656671643257, - 0.009676636196672916, - -0.01624457724392414, - 0.0024489229544997215, - 0.0012517452705651522, - 0.001461747451685369, - -0.006729991175234318, - 0.020715804770588875, - 0.0027118392754346132, - 0.0032211358193308115, - 0.004811861086636782, - 0.007401336915791035, - 0.0010500109056010842, - -0.005403835792094469, - 0.04021459072828293, - 0.02762107364833355, - 0.011336810886859894, - 0.00539391441270709, - -0.023387959226965904, - -0.028785180300474167, - 0.004464613273739815, - 0.022065110504627228, - -0.012262804433703423, - -0.02746233157813549, - 0.008109060116112232, - 0.015397954732179642, - -0.02144337259232998, - 0.00360476179048419, - -0.012117290869355202, - 0.009696478955447674, - -0.011978392489254475, - -0.008796941488981247, - -0.02586168609559536, - -0.019432643428444862, - -0.0323568731546402, - 0.036351874470710754, - 0.026271769776940346, - 0.013400454074144363, - 0.006505107041448355, - 0.004444770514965057, - 0.025054749101400375, - -0.013625338673591614, - 0.01595355197787285, - 0.002483647782355547, - 0.006399278994649649, - -0.03140442073345184, - 0.015345041640102863, - -0.005155801773071289, - -0.03677518665790558, - -0.014326447620987892, - -0.009894905611872673, - 0.020411550998687744, - 0.011846107430756092, - 0.019207758828997612, - 0.011760122142732143, - 0.12530019879341125, - 0.018956417217850685, - -0.014657160267233849, - 0.032224588096141815, - 0.008300873450934887, - 0.009584036655724049, - 0.02516057714819908, - 0.0030276691541075706, - 0.015080471523106098, - -0.0561416856944561, - -0.00038486620178446174, - -0.014855586923658848, - 0.011350039392709732, - -0.030848823487758636, - 0.0018817518139258027, - 0.014128020964562893, - 0.007811419665813446, - 0.01609906554222107, - -0.017368998378515244, - -0.006511721294373274, - 0.03793929144740105, - -0.013704708777368069, - 0.018347907811403275, - 0.021192030981183052, - -0.010734914802014828, - -0.009167339652776718, - 0.017104430124163628, - 0.006508414167910814, - -0.0011781618231907487, - -0.02722422033548355, - -0.004537370055913925, - 0.004884617868810892, - -0.04973910003900528, - -0.01838759332895279, - 0.03762180730700493, - -0.043680451810359955, - -0.0038957884535193443, - -0.028017928823828697, - 0.009828763082623482, - -0.008671270683407784, - 0.005926360841840506, - 0.030187400057911873, - -0.007844490930438042, - -0.019803039729595184, - 0.013929593376815319, - 0.005794075783342123, - -0.005403835792094469, - -0.0038329532835632563, - -0.018572790548205376 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 14, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 906 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000015.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000015.json deleted file mode 100644 index 01356888f629257136f223cd3cf1a6725a9de452..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000015.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000015", - "content": "Ein Entladevorgang bestand jeweils aus der Einfahrt des leeren Hand- hubwagens \u00fcber die \u00dcberladebr\u00fccke, die Aufnahme einer Palette in den Lkw und die Ausfahrt des Handhubwagens mit Palette aus dem Lkw \u00fcber die \u00dcberladebr\u00fccke. In den Ergebnissen wurden deutlich niedrigere Schallleistungspegel gemessen als bei dem technischen Bericht der HLUG aus dem Jahr 1995. Die Ergebnisse des Schallleistungspe- gels LWAT,1h weichen bis zu 8 dB(A) voneinander und bei Ger\u00e4uschspitzen bis zu 11 dB(A) voneinander ab (siehe Tabelle 4). [65]\n27\n3 Aktuelle Prognosegrundlage\n\n| LWAT,1h | LWA,max | Lkw-Ausf\u00fchrung | [dB(A)] | [dB(A)] | Beladung | 84,0 | 110,0 | TYP | 1 | Entladung | 82,2 | 108,0 | Beladung | 80,0 | 106,6 | TYP | 2 | Entladung | 79,1 | 105,8 | Beladung | 78,6 | 104,5 | TYP | 3 | Entladung | 75,7 | 101,9 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 4: \u00dcbersicht \u00fcber die Schallleistungspegel verschiedener Fahrzeugtypen [65]\nHier: LWAT,1h: impulsbehafteter st\u00fcndlicher Schallleistungspegel [dB(A)], LWAmax: Ger\u00e4uschspitzen\n[dB(A)]\nDie Erkenntnis war, dass eine \u00dcberpr\u00fcfung der alten Ergebnisse des HLUG ratsam ist. In der Praxis hat sich gezeigt, dass die Kombination aus einer innenliegenden, in die Werks- halle integrierten Vorschub\u00fcberladebr\u00fccke mit Tr\u00e4nenblech und Teleskoplippe sowie einer Torrandabdichtung die effizienteste Verladevariante darstellt, w\u00e4hrend au\u00dfenlie- gende Laderampen aufgrund hoher Schallpegel vermieden werden sollten. Es wurde auch darauf hingewiesen, dass die Arbeit aufgrund des umfangreichen Umfangs der Messungen und Auswertungen ausschlie\u00dflich auf die Be- und Entladungen mit dem Pa- lettenhubwagen fokussiert war. Zusammenfassend l\u00e4sst sich sagen, dass weitere Unter- suchungen erforderlich sind, um einen umfassenden \u00dcberblick \u00fcber alle in der Praxis stattfindenden Be- und Entladungen zu erhalten. ## 3.3 Ger\u00e4uschemissionen durch Ladevorg\u00e4nge in Ladezonen von\n\n\n## Discountern\n\nIm Zuge einer Diplomarbeit an der Fachhochschule L\u00fcbeck im Studiengang Umweltinge- nieurwesen, hat sich Bianca Berghofer im Jahr 2009 zum Ziel gemacht, Ger\u00e4uschemissi- onen von Ladevorg\u00e4ngen innerhalb von Ladezonen in Discountern zu untersuchen und folglich Ger\u00e4uschemissionsans\u00e4tze f\u00fcr schalltechnische Immissionsprognose zu entwi- ckeln. 28\n3 Aktuelle Prognosegrundlage\nEs wurden an Discountern die Emissionen w\u00e4hrend des Beladens mithilfe von 15 Mes- sungen an drei verschiedenen Standorten erfasst. Die ermittelten Emissionen wurden demgem\u00e4\u00df durch eine Kalibrierungsrechnung f\u00fcr jeden Standort und die unterschiedli- chen Fahrzeugausf\u00fchrungen \u00fcberpr\u00fcft und im Anschluss ein Emissionssatz f\u00fcr die Im- missionsprognose ausgearbeitet. Die Messungen wurden mit einem discountereigenen Lkw der Marke Mercedes-Benz \u2013 Actros, zu dem ein auf dem Lkw liegendes K\u00fchlaggregat geh\u00f6rt, durchgef\u00fchrt. Der Umschlag fand mithilfe eines Handhubwagens statt. Die Last- kraftwagen waren in verschiedenen Ausf\u00fchrungen erh\u00e4ltlich, entweder mit einer L\u00e4nge von 15 oder 18 Metern und optional mit einem Anh\u00e4nger. Aus den ermittelten akusti- schen Gr\u00f6\u00dfen wurde f\u00fcr jeden Standort die Schallleistung, je nach Fahrzeugausf\u00fchrung, ermittelt. Um eine Vergleichbarkeit zu erzielen, wurden die Daten der aktuellen Richtli- nien und Studien, der im Jahr 2007 ver\u00f6ffentlichte \u201eParkplatzl\u00e4rmstudie\u201c [66] und des im Jahr 1995 publizierte Technischen Bericht des Hlug [7] ausgewertet und dargestellt. Hierf\u00fcr wurden feste Emissionsorte ausgew\u00e4hlt und Mikrofone auf einer Seite des Lkw in einer H\u00f6he von 4,2 m platziert. Anhand der Untersuchungsergebnisse k\u00f6nnen fol- gende Schallleistungspegel LWA,1h f\u00fcr die weitere Prognose von Ger\u00e4uschimmissionen von Ladevorg\u00e4ngen in Ladezonen von Discountern mit unterschiedlichen Fahrzeugtypen LWA,1h (siehe Tabelle 5) angesetzt werden. [67]\n\n| LWAeq,1h | KI | Lkw-Ausf\u00fchrung | [dB(A)] | [dB(A)] | Lkw | mit | 15 | m | L\u00e4nge | 84,6 | 9,5 | Lkw | mit | 18 | m | L\u00e4nge | 88,5 | 10,6 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 5: \u00dcbersicht \u00fcber die Schallleistungspegel verschiedener Fahrzeugtypen [67]\nHier: LWAeq,1h: st\u00fcndlich mittlerer Schalleistungspegel [dB(A)], KI: Impulszuschlag [dB(A)]\nAls Erkenntnis wurde gezogen, dass bei einer Lkw-L\u00e4nge von 15 m ein signifikanter Un- terschied zwischen der Verwendung der Ladebordwand des Lkws und der innenliegen- den \u00dcberladebr\u00fccke besteht. Durch die Verwendung der \u00dcberladebr\u00fccke kann der Lkw n\u00e4her an die Verladestation heranfahren, wodurch die Seitenwand der Einhausung die entstehenden Emissionen abschirmt und somit den Pegel mindert. Zudem erzeugen k\u00fcr- zere \u00dcberladebr\u00fccken weniger Ger\u00e4uschbelastung als l\u00e4ngere. Bei einer Lkw-L\u00e4nge von 18 m ist kein deutlicher Unterschied zwischen der Verwendung der Ladebordwand des Lkws und der innenliegenden \u00dcberladebr\u00fccke erkennbar, obwohl ein h\u00f6herer Schallleis- tungspegel gemessen wurde. [67]\n29\n3 Aktuelle Prognosegrundlage\n\n## 3.4 Fazit\n\nF\u00fcr eine Schallimmissionsprognose werden schalltechnische Eingangsdaten ben\u00f6tigt und sind erforderlich, um eine Simulation durchf\u00fchren zu k\u00f6nnen. F\u00fcr Be- und Entlade- vorg\u00e4nge an einem Umschlagspunkt stehen Ver\u00f6ffentlichungen zur Verf\u00fcgung, die auf messtechnisch ermittelten Schalldruckpegeln basieren. F\u00fcr Verladet\u00e4tigkeiten werden zu derzeitigem Stand beispielgebend der der Technische Bericht [7, 8] von der hessischen Landesanstalt f\u00fcr Umwelt verwendet. Die bisherigen Ver\u00f6ffentlichungen und Untersuchungen in diesem Bereich konzentrieren sich haupt- s\u00e4chlich auf Verbraucherm\u00e4rkte und Verladungen mit Handhubwagen, was nur einen kleinen Teil der tats\u00e4chlich m\u00f6glichen Verladet\u00e4tigkeiten abdeckt.", - "embedding": [ - 0.01348924357444048, - 0.01690651848912239, - 0.014468463137745857, - -0.03189456835389137, - 0.0017103028949350119, - 0.0056188530288636684, - -0.005309099797159433, - -0.014828176237642765, - -0.021769307553768158, - -0.03189456835389137, - 0.015720797702670097, - 0.024140750989317894, - -0.016653386875987053, - 0.007600605953484774, - 0.01962435245513916, - 0.006328287068754435, - 0.02551298961043358, - -0.0019850837998092175, - 0.014868143945932388, - -0.009032797068357468, - -0.012949674390256405, - -0.010458326898515224, - -0.009445801377296448, - 0.004000143613666296, - -0.016720000654459, - 0.009365865029394627, - 0.03253405913710594, - -0.019704287871718407, - -0.014002167619764805, - -0.001567083760164678, - 0.004396494477987289, - -0.008100207895040512, - -0.02194250375032425, - 0.014681626111268997, - -0.0027578009758144617, - -0.02837737277150154, - -0.008586486801505089, - -0.01232350617647171, - 0.03671738877892494, - -0.006691331043839455, - 0.014042136259377003, - 0.011670693755149841, - 0.0099254185333848, - -0.02819085493683815, - -0.0075406539253890514, - 0.011324303224682808, - -0.0068945023231208324, - 0.006961116101592779, - -0.015507634729146957, - 0.01629367470741272, - 0.009332558140158653, - 0.010098613798618317, - -0.019371220842003822, - 0.012949674390256405, - 0.0007077689515426755, - 0.004629641771316528, - -0.007747155614197254, - 0.02252870239317417, - 0.003065888537093997, - -0.012596622109413147, - -0.03442588075995445, - 0.007454056292772293, - -0.024300623685121536, - 0.02508666180074215, - -0.022515378892421722, - -0.017839107662439346, - 0.001560422359034419, - -0.011091155931353569, - 0.0016237052623182535, - -0.0013689084444195032, - 0.01150416024029255, - 0.026672065258026123, - -0.008493227884173393, - -0.0026895219925791025, - 0.03450581803917885, - -0.02069016918540001, - 0.012356813065707684, - -0.0036370998714119196, - -0.0004800338938366622, - 0.0034106136299669743, - 0.013236111961305141, - -0.020223872736096382, - -0.02320815995335579, - 0.05616854503750801, - 0.017612623050808907, - 0.003776988247409463, - -0.008966183289885521, - 0.009519075974822044, - -0.02231553941965103, - -0.005229163449257612, - 0.003940191585570574, - 0.01554760243743658, - -0.003247410524636507, - -0.004136701580137014, - 0.03157482296228409, - -0.009012813679873943, - 0.0034539124462753534, - 0.014095427468419075, - -0.005948590114712715, - -0.030961977317929268, - -0.035811442881822586, - -0.005665482487529516, - -0.008839618414640427, - -0.004842805210500956, - -0.017892399802803993, - -0.00731416791677475, - 0.01481485366821289, - 0.025113308802247047, - 0.003067553974688053, - -0.028697116300463676, - -0.014641658402979374, - 0.015147920697927475, - 0.0017086375737562776, - -0.004239952191710472, - 0.009525737725198269, - -0.015747442841529846, - 0.021982470527291298, - -0.018225466832518578, - 0.008513211272656918, - -0.024700304493308067, - 0.027844464406371117, - 0.009112733416259289, - 0.02447381801903248, - -0.010738104581832886, - 0.0302691962569952, - 0.017639268189668655, - -0.0036237770691514015, - 0.004003474488854408, - -0.0177591722458601, - -0.01858518086373806, - -0.03674403205513954, - -0.014375204220414162, - 0.014588367193937302, - 0.002940988168120384, - -0.00653811963275075, - 0.02298167534172535, - -0.017172973603010178, - 0.005605529993772507, - -0.007320829201489687, - -0.040021419525146484, - -0.0013231115881353617, - 0.01797233521938324, - -0.024593722075223923, - -0.034345947206020355, - -0.00721424724906683, - 0.04034116491675377, - 0.015827380120754242, - 0.019757578149437904, - -0.02320815995335579, - 8.154955867212266e-05, - -0.027498073875904083, - -0.027045100927352905, - 0.01689319685101509, - -0.00846658181399107, - -0.010638183914124966, - 0.009872128255665302, - 0.0135691799223423, - 0.01127101294696331, - -0.01536108460277319, - -0.010191872715950012, - -0.0030692191794514656, - 0.018065594136714935, - 0.01586734689772129, - 0.007021068129688501, - 0.023487936705350876, - 0.014908112585544586, - -0.003730358788743615, - -0.019357897341251373, - 0.007533992640674114, - -0.018758375197649002, - -0.013975522480905056, - 0.004819490481168032, - -0.017839107662439346, - 0.011830566450953484, - -0.019504446536302567, - 0.00047503787209279835, - 0.020343778654932976, - -0.0043265498243272305, - -0.04196653515100479, - -0.035438407212495804, - -0.02363448776304722, - -0.00031766336178407073, - 0.014162040315568447, - 0.007294183596968651, - -0.0314149484038353, - -0.007613928522914648, - 0.011390917003154755, - 0.01733284629881382, - -0.013236111961305141, - -0.005145896691828966, - 0.00021170618128962815, - 0.01585402525961399, - -0.010604877024888992, - -0.03216101974248886, - -0.6322425007820129, - -0.004659617785364389, - -0.0022748527117073536, - -0.002582940272986889, - -0.009492430835962296, - 0.03066887892782688, - 0.01429526787251234, - -0.0125300083309412, - -0.0008867928991094232, - 0.04572353884577751, - -0.010778072290122509, - 0.019784223288297653, - -0.006494821049273014, - -0.0022731872741132975, - 0.0008389143622480333, - -0.020636877045035362, - -0.020090647041797638, - -0.0036304383538663387, - 0.03266728296875954, - 0.013842295855283737, - -0.020197227597236633, - 0.02258199267089367, - -0.007920350879430771, - 0.0016728327609598637, - -0.002586271148175001, - -0.0031191795133054256, - 0.024154072627425194, - -0.016573451459407806, - 0.0070477137342095375, - -0.02276851050555706, - -0.011637386865913868, - 0.012083698064088821, - -0.031228432431817055, - 0.0068945023231208324, - 0.04660283774137497, - -0.004726231098175049, - -0.00506262993440032, - 0.02989616058766842, - 0.00673462962731719, - 0.0019118088530376554, - -0.010391714051365852, - -0.021995794028043747, - -0.0120237460359931, - -0.010937944985926151, - 0.011537467129528522, - 0.010644844733178616, - 0.04953383654356003, - 0.004659617785364389, - 0.012716526165604591, - -0.03466569259762764, - 0.00866642314940691, - 0.007507347036153078, - 0.008832956664264202, - 0.01359582506120205, - 0.02236882969737053, - 0.0012948008952662349, - 0.039381928741931915, - -0.016213737428188324, - -0.01815885305404663, - 0.017066391184926033, - 0.010711458511650562, - 0.022275570780038834, - 0.003730358788743615, - -0.020623555406928062, - -0.00909274909645319, - 0.021409595385193825, - -0.011704000644385815, - -0.04012800380587578, - 0.00347056589089334, - 0.0018218805780634284, - -0.010771410539746284, - 0.018345370888710022, - 0.0018601833144202828, - -0.01107117161154747, - 0.024980081245303154, - 0.008426614105701447, - -0.0030459044501185417, - -0.021422917023301125, - 0.0022965020034462214, - 0.03682396933436394, - 0.0016969802090898156, - 0.005045976489782333, - -0.011390917003154755, - -0.006231697741895914, - 0.03282715752720833, - -0.008886247873306274, - -0.012583299539983273, - 0.010811379179358482, - 0.002223227173089981, - 0.0024730279110372066, - 0.025619570165872574, - 0.03109520487487316, - 0.0009292589966207743, - -0.021636079996824265, - -0.008326693437993526, - 0.03922205790877342, - -0.005149227567017078, - 0.02443384937942028, - -0.011863873340189457, - -0.03594467043876648, - -0.023434646427631378, - -0.013229451142251492, - 0.015014694072306156, - -0.025539634749293327, - 0.03010932356119156, - 0.0034605739638209343, - -0.014468463137745857, - -0.011217721737921238, - 0.008792988955974579, - -0.019730933010578156, - -0.0043232194148004055, - 0.004896095953881741, - -0.0073607973754405975, - -0.02023719623684883, - -0.01421533152461052, - -0.02275518886744976, - 0.027258263900876045, - 0.001572912442497909, - 0.014774885028600693, - -0.025965960696339607, - 0.02383432723581791, - 0.012310183607041836, - 0.032507412135601044, - -0.011051188223063946, - -0.03232089430093765, - 0.028057627379894257, - 0.02278183400630951, - 0.0023348049726337194, - -0.00402345834299922, - -0.0060385181568562984, - 0.024300623685121536, - -0.00033265139791183174, - 0.018025627359747887, - -0.015987250953912735, - 0.025752797722816467, - 0.0250999853014946, - 0.032294247299432755, - -0.0019417849835008383, - 0.008726375177502632, - -0.019504446536302567, - -0.03072216920554638, - -0.004536382853984833, - 0.009752223268151283, - -0.026778647676110268, - -0.014748239889740944, - -0.0500667430460453, - -0.016586773097515106, - 0.02090333215892315, - 0.00501266960054636, - 0.010917960666120052, - -0.016173770651221275, - -0.0261391568928957, - -0.005605529993772507, - 0.009492430835962296, - -0.002837737090885639, - 0.007820431143045425, - -0.02210237644612789, - -0.012270215898752213, - -0.0012115339050069451, - -0.018745053559541702, - -0.0004500577924773097, - 0.01925131492316723, - -0.03842269629240036, - -0.005302438512444496, - 6.614517042180523e-05, - -0.012296861037611961, - 0.013842295855283737, - -0.003440589876845479, - -0.0271783284842968, - -0.044764306396245956, - 0.003796972334384918, - -0.011097817681729794, - 0.006438199430704117, - 0.03301367536187172, - -0.01585402525961399, - -0.005971904844045639, - -0.007873721420764923, - -0.012003761716187, - -0.0019417849835008383, - -0.012430088594555855, - 0.016866549849510193, - 0.015321115963160992, - -0.009652303531765938, - 0.0004042609652969986, - 0.017625944688916206, - 0.010265148244798183, - 0.00909274909645319, - -0.0013830638490617275, - -0.028697116300463676, - 0.03695719689130783, - -0.012463395483791828, - 0.027311556041240692, - -0.019690964370965958, - 0.000970059831161052, - -0.037490107119083405, - 0.016613420099020004, - 0.008892908692359924, - 0.01797233521938324, - 0.006098470650613308, - 0.017026422545313835, - 0.03280051052570343, - 0.0036037929821759462, - 0.01502801664173603, - 4.238807377987541e-05, - 0.0075206696055829525, - -0.006201721262186766, - 0.011157769709825516, - -0.013549195602536201, - 0.04852131009101868, - 0.02091665379703045, - 0.022009117528796196, - -0.014335235580801964, - -0.034132782369852066, - -0.006048510316759348, - -0.01336267776787281, - 0.057554107159376144, - -0.021795952692627907, - 0.004030119627714157, - 0.02065020054578781, - -0.013522550463676453, - 0.009179347194731236, - 0.008513211272656918, - 0.03772991523146629, - 0.011850550770759583, - -0.01733284629881382, - -0.015587570145726204, - 0.02150285430252552, - 0.030455714091658592, - -0.004676271229982376, - -0.013555857352912426, - -0.01179725956171751, - 0.012636590749025345, - 0.006568096112459898, - 0.009305913001298904, - 0.016253706067800522, - 0.01632031984627247, - 0.017186295241117477, - 0.0011765618110075593, - 0.034532465040683746, - 0.01650683768093586, - 0.017039746046066284, - 0.0034072829876095057, - 0.013722390867769718, - -0.00835333950817585, - 0.015627538785338402, - -0.021422917023301125, - 0.014228654094040394, - 0.021969148889183998, - -0.018292080610990524, - -0.02356787398457527, - -0.0003132918500341475, - 0.010664829052984715, - -0.008193466812372208, - -0.02232886105775833, - 0.004872781224548817, - -0.014641658402979374, - 0.023487936705350876, - -0.005345737561583519, - 0.012796462513506413, - 0.017625944688916206, - 0.01232350617647171, - 0.027844464406371117, - 0.019091444090008736, - -0.01492143515497446, - -0.006854534149169922, - 0.0023214821703732014, - -0.02692519687116146, - -0.008826294913887978, - -0.009992032311856747, - -0.013316048309206963, - -0.003650422440841794, - -0.010291793383657932, - 0.007907028310000896, - -0.017053069546818733, - 0.03048235923051834, - -0.00015154582797549665, - -0.0040634265169501305, - 0.027684591710567474, - 0.020743459463119507, - 0.015081307850778103, - -0.0025929324328899384, - -0.022288894280791283, - -0.002727824728935957, - 0.026831937953829765, - -0.02338135614991188, - -0.004842805210500956, - -0.012410104274749756, - 0.018252111971378326, - -0.030135970562696457, - -0.002138294978067279, - -0.009272606112062931, - 0.009985371492803097, - 0.002854390535503626, - 0.01265657413750887, - 0.008919553831219673, - -0.0004816992150153965, - 0.025419730693101883, - 0.017172973603010178, - -0.010718120262026787, - 0.011477514170110226, - -0.009072765707969666, - -0.023687778040766716, - -0.027737881988286972, - -0.019264638423919678, - 0.02399419993162155, - -0.004946055822074413, - -0.0037836495321244, - -0.021436240524053574, - 0.014575044624507427, - -0.0198375154286623, - -0.020810073241591454, - 0.005229163449257612, - 0.004043442662805319, - 0.018212145194411278, - -0.004579681437462568, - -0.0005204183398745954, - 0.018904924392700195, - 0.006974438671022654, - 0.0313883051276207, - 0.019557738676667213, - -0.01818549819290638, - -0.02508666180074215, - 0.004453115630894899, - 0.019091444090008736, - 0.008106868714094162, - 0.01798565872013569, - 0.01605386473238468, - 0.024380559101700783, - -0.011111140251159668, - -0.02612583339214325, - -0.00866642314940691, - -0.03535847365856171, - 0.02046368271112442, - 0.0208766870200634, - 0.00825341884046793, - -0.015227857045829296, - 0.020943300798535347, - -0.018465274944901466, - 0.019757578149437904, - -0.01285641547292471, - 0.008932877331972122, - -0.01773252710700035, - 0.03272057697176933, - -0.008273403160274029, - -0.01918470300734043, - -0.014934757724404335, - -0.015041339211165905, - 0.03679732605814934, - -0.005818693432956934, - -0.0054423268884420395, - 0.022182311862707138, - 0.026019252836704254, - 0.025020049884915352, - -0.020157260820269585, - 0.0060018808580935, - 0.029150089249014854, - 0.01674664579331875, - 0.02025051973760128, - -0.0048994263634085655, - -0.01461501233279705, - -0.0045830123126506805, - 0.005782056134194136, - 0.021249722689390182, - -0.0060684941709041595, - 0.010664829052984715, - 0.022235602140426636, - 0.009845482185482979, - -0.013549195602536201, - 0.013962199911475182, - 0.0024796894285827875, - 0.026245739310979843, - 0.010511618107557297, - -0.003530518151819706, - -0.014934757724404335, - 0.022688575088977814, - -0.023541228845715523, - -0.010604877024888992, - -0.002854390535503626, - 0.0011915498180314898, - -0.016040543094277382, - 0.0015612550778314471, - -0.01233682967722416, - -0.002331474330276251, - -0.013342694379389286, - -0.0013522549998015165, - -0.025153275579214096, - 0.02588602527976036, - -0.008812972344458103, - -0.039355285465717316, - -0.015587570145726204, - -0.03304031863808632, - -0.00950575340539217, - -0.006731299217790365, - 0.011737307533621788, - -0.0024180717300623655, - -0.008240096271038055, - -0.030402423813939095, - 0.015294470824301243, - 0.013962199911475182, - -0.00690116360783577, - 0.014868143945932388, - 0.0004675438394770026, - -0.023701101541519165, - 0.031068559736013412, - -0.021382950246334076, - 0.01605386473238468, - -0.009485769085586071, - -0.017252909019589424, - -0.013369339518249035, - 0.008846279233694077, - -0.022435443475842476, - -0.001000868622213602, - 0.0036370998714119196, - -0.00815349817276001, - 0.0022748527117073536, - 0.011957132257521152, - 0.01241676602512598, - -0.0003234920441173017, - 0.02029048651456833, - 0.008373322896659374, - 0.01023850217461586, - 0.011530805379152298, - 0.015534279868006706, - -0.007647235412150621, - 0.020570263266563416, - -0.03109520487487316, - -0.0014147053007036448, - -0.0013705737655982375, - 0.014721594750881195, - -0.0041133868508040905, - -0.009205992333590984, - -0.0038369405083358288, - 0.0151345981284976, - 0.013722390867769718, - -0.010458326898515224, - -0.017186295241117477, - -0.006441530305892229, - -0.0008201793534681201, - -0.017386136576533318, - 0.013655778020620346, - -0.004373179282993078, - -0.0027261595241725445, - 0.033120255917310715, - 0.006518135778605938, - -0.02091665379703045, - -0.03240083158016205, - 0.036690741777420044, - 0.008659761399030685, - -0.018318725749850273, - 0.02883034385740757, - -0.019344573840498924, - -0.004526390694081783, - -0.02338135614991188, - 0.006384908687323332, - 0.029576415196061134, - 0.01554760243743658, - 0.013789004646241665, - 0.004026789218187332, - -0.013842295855283737, - -0.026245739310979843, - 0.0003661663504317403, - 0.0026795300655066967, - -0.003427267074584961, - -0.004000143613666296, - -0.023088255897164345, - 0.020756781101226807, - -0.014828176237642765, - 0.0028027649968862534, - 0.01608050987124443, - -0.019571060314774513, - -0.02111649513244629, - 0.030002743005752563, - -0.021875889971852303, - 0.02671203389763832, - -0.008599809370934963, - -0.017719203606247902, - -0.03607789799571037, - -0.015267825685441494, - -0.021556144580245018, - -0.04114052653312683, - 0.0016003905329853296, - -0.024740273132920265, - 0.008226773701608181, - 0.013056255877017975, - 0.03391961753368378, - -0.015947284176945686, - 0.011364271864295006, - 0.005812032148241997, - 0.0010283467127010226, - -0.0032091077882796526, - -0.014868143945932388, - -0.009265944361686707, - -0.014761562459170818, - 0.029789580032229424, - 0.01502801664173603, - 0.010997897014021873, - 0.008539857342839241, - 0.030349133536219597, - 0.014162040315568447, - 0.0459899939596653, - -0.023248128592967987, - -0.01835869438946247, - -0.0016295339446514845, - -0.008739697746932507, - 0.006764606107026339, - -0.01694648712873459, - 0.0011457530781626701, - 0.00971225555986166, - -0.027498073875904083, - 0.010471650399267673, - 0.022675251588225365, - -0.037943076342344284, - -0.027524719014763832, - -0.0062250359915196896, - 0.01242342684417963, - -0.031068559736013412, - 0.023141546174883842, - 0.01945115625858307, - -0.011750630103051662, - -0.002837737090885639, - -0.025206567719578743, - -0.037916433066129684, - -0.020983267575502396, - 0.017506040632724762, - -0.0010758087737485766, - -0.001632864587008953, - -0.002627904526889324, - -0.01755933091044426, - 0.010431681759655476, - -0.009825498796999454, - 0.011777275241911411, - -0.007986964657902718, - -0.020929977297782898, - -0.010731442831456661, - -0.02235550805926323, - -0.028270790353417397, - -0.016839904710650444, - -0.0198508370667696, - 0.00595192052423954, - 0.009179347194731236, - 0.029123444110155106, - 0.02529982663691044, - -0.011191076599061489, - -0.007700526155531406, - 0.0120237460359931, - -0.005162550136446953, - 0.01440184935927391, - 0.012190279550850391, - 0.039168767631053925, - 0.014681626111268997, - -0.01777249574661255, - -0.021769307553768158, - -0.04825485497713089, - 0.013842295855283737, - -0.013535873033106327, - 0.016866549849510193, - 0.0017702550394460559, - -0.01570747420191765, - 0.015107952989637852, - 0.008020271547138691, - 0.013629131950438023, - 0.0010325099574401975, - -0.01273651048541069, - 0.04969370737671852, - 0.018252111971378326, - -0.002787776989862323, - -0.008733035996556282, - -0.00022773507225792855, - -0.004579681437462568, - -0.005622183438390493, - 0.004143362864851952, - 0.005788717418909073, - -0.009838821366429329, - -0.009552382864058018, - 0.007607267238199711, - 0.04660283774137497, - 0.008513211272656918, - 0.008526534773409367, - 0.006791251245886087, - -0.023967554792761803, - 0.010911298915743828, - -0.025579603388905525, - -0.01773252710700035, - 0.008379984647035599, - -0.03389297425746918, - 0.0376499779522419, - -0.010425020009279251, - -0.01818549819290638, - 0.0019201355753466487, - 0.0016212072223424911, - -0.01440184935927391, - -0.012430088594555855, - 0.0023947570007294416, - 0.018225466832518578, - -0.007367458660155535, - 0.0099254185333848, - 0.01778581738471985, - 0.0024447173345834017, - -0.006541450507938862, - 0.0009009482455439866, - 0.0011982112191617489, - -0.005295777227729559, - -0.005868653766810894, - -0.01190384104847908, - -0.008133514784276485, - 0.006641370709985495, - -0.012436749413609505, - -0.018238790333271027, - -0.014908112585544586, - -0.018292080610990524, - -0.003137498162686825, - -0.022422119975090027, - 0.03221431374549866, - -0.03280051052570343, - -0.011750630103051662, - 0.01653348281979561, - -0.0038835699670016766, - 0.028883634135127068, - 0.0038402711506932974, - -0.025779442861676216, - -0.014255299232900143, - 0.034106139093637466, - -0.03658416122198105, - 0.014415171928703785, - 0.026192447170615196, - -0.00721424724906683, - 0.0034905499778687954, - -0.0012798127718269825, - -0.0007793785189278424, - -0.01986416056752205, - 0.025792766362428665, - -0.0058786459267139435, - -0.01925131492316723, - 0.005542247090488672, - -0.0004542211536318064, - 0.02131633646786213, - -0.0077804625034332275, - -0.012270215898752213, - 0.015534279868006706, - 0.011983777396380901, - 0.014854821376502514, - -0.011191076599061489, - 0.012450071983039379, - 0.015520957298576832, - 0.009445801377296448, - -0.005945259239524603, - 0.030828749760985374, - -0.02045035921037197, - 0.014881466515362263, - 0.019277961924672127, - -0.007893705740571022, - -0.0019018168095499277, - -0.04559031128883362, - -0.012410104274749756, - 0.006571426521986723, - 0.017172973603010178, - -0.03152153268456459, - 0.007487362716346979, - -0.016546806320548058, - -0.015720797702670097, - -0.010931283235549927, - -0.00013385160127654672, - -0.0005270796827971935, - 0.0034139445051550865, - 0.027737881988286972, - -0.0009492430835962296, - -0.01632031984627247, - 0.014761562459170818, - -0.003766996320337057, - 0.002146621700376272, - 0.033733099699020386, - 0.00919266976416111, - -0.03426600992679596, - 0.012989642098546028, - -0.012350152246654034, - 0.025579603388905525, - 0.01536108460277319, - -0.02671203389763832, - -0.002771123545244336, - 0.0009617331088520586, - -0.040607620030641556, - -0.008786327205598354, - -0.018878279253840446, - 0.007287522312253714, - 0.0031075221486389637, - -0.0012789801694452763, - -0.01735949143767357, - 0.02212902158498764, - 0.005215840879827738, - 0.017705881968140602, - -0.0208900086581707, - -0.014774885028600693, - 0.004463107790797949, - -0.0027128367219120264, - 0.014974725432693958, - -0.001403880538418889, - -0.045830123126506805, - 0.004629641771316528, - 0.018065594136714935, - -0.0012748168082907796, - 0.008406629785895348, - 0.028084272518754005, - -0.006994422525167465, - -0.013935554772615433, - 0.007480701431632042, - 0.013749036937952042, - 0.010951267555356026, - -0.004989354871213436, - 0.004030119627714157, - -0.01965099759399891, - -0.0026662072632461786, - 0.008613131940364838, - 0.0014646654017269611, - -0.028777053579688072, - -0.023474615067243576, - 0.022235602140426636, - -0.0006103466730564833, - -0.01325609628111124, - 0.01565418392419815, - -0.040607620030641556, - 0.010804717428982258, - -0.010818039998412132, - 0.020956622436642647, - 0.023088255897164345, - -0.030615586787462234, - 0.006927809212356806, - 0.009572367183864117, - -0.0042699286714196205, - -0.013502566143870354, - 0.009898773394525051, - -0.026911873370409012, - 0.004246613942086697, - -0.000897617603186518, - -0.028137562796473503, - 0.01338266208767891, - -0.006215044297277927, - 0.020596910268068314, - -0.002496342873200774, - 0.003077545901760459, - -0.02797769010066986, - -0.012077036313712597, - -0.0333867110311985, - 0.03298702836036682, - 0.011017881333827972, - -0.02356787398457527, - 0.012816446833312511, - -0.010078630410134792, - -0.013455936685204506, - 0.0028510598931461573, - -0.01751936413347721, - 0.006658024154603481, - -0.0501200333237648, - 3.880369149555918e-06, - 0.011044526472687721, - -0.02444717288017273, - 0.0022631953470408916, - 0.005798709578812122, - -0.0037270281463861465, - -0.03261399269104004, - -0.009579028002917767, - 0.19664320349693298, - -0.03306696563959122, - -0.02148953080177307, - -0.004313227254897356, - -0.017079714685678482, - -0.036264415830373764, - 0.02757800929248333, - -0.006867856718599796, - 0.009312573820352554, - 0.03320019319653511, - 0.0011457530781626701, - 0.012903044931590557, - 0.00030642232741229236, - 0.008599809370934963, - 0.011410901322960854, - -0.006358263082802296, - -0.0459367036819458, - -0.0018451953073963523, - -0.012097020633518696, - 0.044178105890750885, - 0.01737281307578087, - -0.03173469379544258, - -0.004423139616847038, - -0.020210551097989082, - 0.04201982542872429, - 0.011664032936096191, - -0.0031125179957598448, - 0.0008339183987118304, - 0.026858583092689514, - 0.02342132478952408, - -0.03887566551566124, - 0.007447395008057356, - 0.01674664579331875, - -0.012869738042354584, - 4.478199844015762e-05, - 0.008952860720455647, - -0.00024272312293760478, - -0.024540431797504425, - 0.009245960973203182, - 0.015760766342282295, - 0.00949909258633852, - -0.029762933030724525, - -0.013895586133003235, - -0.017692558467388153, - -0.011124462820589542, - 0.003986821044236422, - 0.018665116280317307, - 0.003856924595311284, - 0.023114901036024094, - -0.0007747988565824926, - -0.0019118088530376554, - 0.027311556041240692, - 0.020743459463119507, - 0.03197450190782547, - -0.006434869021177292, - -0.018118886277079582, - -0.002379768993705511, - -0.008633116260170937, - 0.005735426675528288, - 0.01169067807495594, - -0.03637099638581276, - 0.01648019254207611, - -0.011510821059346199, - 0.01649351418018341, - -0.026618774980306625, - 0.015094630420207977, - -0.00773383304476738, - -0.009825498796999454, - 0.0051792035810649395, - -0.023661132901906967, - 0.005555570125579834, - -0.02507334016263485, - -0.03050900623202324, - -0.0007398267043754458, - -0.02901686169207096, - -0.030322488397359848, - 0.009166024625301361, - 0.008506550453603268, - 0.022222280502319336, - 0.02840401791036129, - 0.014388526789844036, - -0.009618996642529964, - -0.0009184342925436795, - -0.014028813689947128, - -0.00402345834299922, - -0.02482020854949951, - 0.009452462196350098, - 0.012989642098546028, - 0.01380232721567154, - -0.028057627379894257, - -0.027524719014763832, - 0.010158565826714039, - -0.009865466505289078, - -0.004889434669166803, - 0.0058786459267139435, - -0.0188116654753685, - 0.01252334751188755, - -0.002186589641496539, - -0.0053390758112072945, - -0.017013100907206535, - -0.010891315527260303, - 0.054836273193359375, - 0.044604431837797165, - -0.01943783275783062, - -0.016013897955417633, - 0.00971225555986166, - 0.005462311208248138, - 0.029789580032229424, - -0.0009958725422620773, - -0.01734616793692112, - 0.0010441674385219812, - -0.033360064029693604, - 0.006075155921280384, - -0.02443384937942028, - 0.00731416791677475, - 0.014721594750881195, - 0.01390890870243311, - 0.0002941404527518898, - -0.005815363023430109, - -0.00657808780670166, - -0.002108318731188774, - -5.865114871994592e-05, - 0.017879076302051544, - -0.006827889010310173, - 0.009052781388163567, - -0.03306696563959122, - -0.033306773751974106, - 0.025419730693101883, - -0.008892908692359924, - 0.009585689753293991, - 0.023101579397916794, - 0.003763665445148945, - 0.009359203279018402, - -0.003910215571522713, - 0.0017086375737562776, - -0.015041339211165905, - -0.02424733154475689, - -0.027471426874399185, - -0.0027128367219120264, - 0.0060918089002370834, - 0.02675200067460537, - 0.00746071757748723, - 0.004249944351613522, - 0.011177754029631615, - 0.008726375177502632, - -0.0026545498985797167, - 0.026245739310979843, - 0.004799506161361933, - -0.017639268189668655, - -0.027111714705824852, - -0.01695980876684189, - 0.00777380121871829, - 0.0006540617905557156, - -0.007334151770919561, - 0.021409595385193825, - 0.015387729741632938, - -0.015387729741632938, - -0.02127636782824993, - 0.008519873023033142, - 0.007500685751438141, - -0.03266728296875954, - -0.01795901358127594, - 0.000963398430030793, - -0.01837201602756977, - 0.002458039904013276, - -0.004786183591932058, - -0.16882537305355072, - 0.007347474340349436, - 0.00035888049751520157, - -0.018678439781069756, - 0.014015491120517254, - 0.0055455779656767845, - 0.016666710376739502, - 0.012583299539983273, - -0.02130301296710968, - -0.0015637531178072095, - 0.015187889337539673, - 0.004706247244030237, - -0.016786614432930946, - 0.0007335817208513618, - -0.01262992899864912, - -0.011137785390019417, - -0.0051825339905917645, - 0.03173469379544258, - 0.019144734367728233, - 0.003047569887712598, - -0.00036949702189303935, - -0.010638183914124966, - 0.015081307850778103, - 0.00407341867685318, - 0.011677355505526066, - 0.02676532417535782, - -0.026232415810227394, - 0.026791969314217567, - -0.007021068129688501, - -0.009445801377296448, - -0.019104765728116035, - 0.018092239275574684, - 0.014348558150231838, - -0.004593004006892443, - -0.0075739603489637375, - -0.006531458348035812, - 0.00616841483861208, - 0.011330964975059032, - -0.008206789381802082, - 0.03820953145623207, - 0.0031358327250927687, - 0.03735687956213951, - -0.008886247873306274, - 0.009559044614434242, - -0.0023964224383234978, - 0.023128224536776543, - 0.010897976346313953, - -0.01799898035824299, - -0.009552382864058018, - -0.01283643115311861, - -0.0008826295379549265, - -0.019704287871718407, - 0.0023997530806809664, - 0.026831937953829765, - -0.011610741727054119, - 0.021023236215114594, - 0.004086741246283054, - 0.01630699634552002, - -0.005708781071007252, - 0.0078004468232393265, - -0.010937944985926151, - -0.01588067039847374, - 0.0010524940444156528, - 0.009225976653397083, - -0.01695980876684189, - -0.025779442861676216, - 0.003368980251252651, - 0.0074140881188213825, - -0.001975091639906168, - -0.0029476494528353214, - -0.0156808290630579, - -0.023527905344963074, - 0.0026179125998169184, - -0.02002403326332569, - 0.013296063989400864, - 0.006681338883936405, - 0.005165880545973778, - 0.007194263394922018, - 0.019264638423919678, - -0.012276876717805862, - -0.02693851850926876, - 0.03698384389281273, - 0.005745418835431337, - -0.009232637472450733, - -0.025619570165872574, - 0.0007881215424276888, - -0.008040254935622215, - 0.022448766976594925, - -0.010285131633281708, - 0.006688000168651342, - 0.013222789391875267, - -0.020556941628456116, - -0.02210237644612789, - -0.042312927544116974, - 0.001035840716212988, - 0.0005162549787200987, - -0.011330964975059032, - -0.006771267391741276, - -0.013749036937952042, - -0.010831363499164581, - 0.0018635140731930733, - -0.01296299695968628, - -0.02904350683093071, - 0.016973132267594337, - 0.010464988648891449, - 0.021436240524053574, - -0.02552631124854088, - 0.025859380140900612, - 0.04612322151660919, - -0.018425308167934418, - -0.0013630797620862722, - -0.016160447150468826, - 0.024806885048747063, - 0.010305115953087807, - 0.011510821059346199, - 0.01285641547292471, - -0.013122869655489922, - -0.016666710376739502, - 0.008659761399030685, - 0.006947793066501617, - 0.04934731870889664, - -0.024926790967583656, - -0.00362710771150887, - -0.0061917295679450035, - -0.009305913001298904, - -0.023461291566491127, - -0.09304580837488174, - -0.0014313586289063096, - 0.016160447150468826, - 0.0050559681840240955, - 0.0010916294995695353, - 0.02256867103278637, - 0.0009492430835962296, - 0.013948877342045307, - -0.0013339363504201174, - 0.048361435532569885, - -0.0271783284842968, - -0.035811442881822586, - -0.02070349082350731, - -0.014082103967666626, - 0.04428468644618988, - -0.013975522480905056, - 0.017839107662439346, - -0.017466071993112564, - -0.025326471775770187, - 0.03634435310959816, - -0.012403442524373531, - -0.007514008320868015, - 0.000994207221083343, - -0.011930487118661404, - -0.027924399822950363, - -0.013102885335683823, - -0.03317354619503021, - 0.0312817245721817, - 0.024060813710093498, - -0.012743172235786915, - 0.02006400190293789, - -0.020410392433404922, - -0.00746071757748723, - -0.006688000168651342, - -0.0044298009015619755, - -0.0029859524220228195, - -0.016200415790081024, - -0.0033573228865861893, - 0.030402423813939095, - -0.018864957615733147, - -0.00464962562546134, - 0.011750630103051662, - 0.00825341884046793, - -0.01941118761897087, - 0.0021899205166846514, - -0.04058097302913666, - -0.003145824884995818, - 0.008706390857696533, - 0.008526534773409367, - -0.013602486811578274, - -0.032027795910835266, - -0.02671203389763832, - -0.021023236215114594, - 0.01346925925463438, - 0.020183905959129333, - 0.003766996320337057, - -0.007793785072863102, - -0.003493880620226264, - -0.012829769402742386, - -0.001331438310444355, - -0.02147620916366577, - 0.011251028627157211, - -0.03407949209213257, - 0.018651794642210007, - 0.012803124263882637, - -0.005898629780858755, - -0.0146283358335495, - -0.01492143515497446, - 0.01525450311601162, - 0.016546806320548058, - -0.022049084305763245, - -0.0008909562020562589, - -0.005455649457871914, - 0.004459776915609837, - -0.01388226356357336, - -0.01127101294696331, - -0.04071420058608055, - -0.019770901650190353, - 0.007394103799015284, - -0.00401346618309617, - -0.0104383435100317, - -0.01918470300734043, - 0.007087681442499161, - -0.007240892853587866, - 0.037276942282915115, - 0.019517770037055016, - -0.006341610103845596, - -0.018265435472130775, - 0.02588602527976036, - -0.022222280502319336, - -0.004849466495215893, - 0.02776452712714672, - 0.021409595385193825, - -0.01961102895438671, - -0.023647809401154518, - 0.02488682232797146, - -0.00438650231808424, - 0.013535873033106327, - 0.00814683735370636, - 0.010877992957830429, - -0.008073561824858189, - -0.009392510168254375, - -0.051292434334754944, - 0.017199618741869926, - 0.02507334016263485, - 0.00035513349575921893, - -0.011890518479049206, - -0.0004080079961568117, - -0.001716964179649949, - 0.018038948997855186, - 0.02840401791036129, - 0.004629641771316528, - -0.009132717736065388, - 0.01590731553733349, - -0.017239587381482124, - -0.006961116101592779, - -0.018745053559541702, - -0.0250600166618824, - 0.006484828889369965, - 0.008926215581595898, - 0.008133514784276485, - 0.004366517998278141, - -0.00418000016361475, - -0.0006969442474655807, - -0.0036237770691514015, - 0.025646217167377472, - -0.03066887892782688, - -0.015840701758861542, - -0.00631496449932456, - -0.005915283225476742, - 0.010178550146520138, - -0.002121641533449292, - 0.011290996335446835, - -0.012669896706938744, - -0.005009338725358248, - 0.008399968966841698, - -0.019517770037055016, - -0.009599012322723866, - 0.007094343192875385, - 0.027498073875904083, - 0.02673867903649807, - 0.042099762707948685, - -0.023954233154654503, - -0.02693851850926876, - -0.011657371185719967, - -0.026245739310979843, - -0.005712111946195364, - 0.013062916696071625, - 0.03399955481290817, - 0.0011415897170081735, - 0.01524117961525917, - -0.010478311218321323, - 0.03447917476296425, - 0.01711968146264553, - 0.016546806320548058, - -0.013062916696071625, - 0.00752733089029789, - 0.008486566133797169, - 0.012496701441705227, - -0.0019317929400131106, - 0.029363252222537994, - -0.02904350683093071, - 0.041673436760902405, - 0.0018268765415996313, - 0.01773252710700035, - -0.015987250953912735, - 0.0009151036501862109, - -0.014801531098783016, - -0.006961116101592779, - -0.01981087028980255, - -0.002451378619298339, - -0.008966183289885521, - -0.002144956262782216, - -0.008866263553500175, - 0.01525450311601162, - 0.04140698164701462, - -0.015147920697927475, - -0.010085291229188442, - 0.006534789223223925, - 0.00940583273768425, - -0.012510024942457676, - 0.00016819921438582242, - 0.0010658168466761708, - 0.008786327205598354, - -0.0011241036700084805, - -0.00866642314940691, - 0.029176734387874603, - 0.004379841033369303, - -0.01421533152461052, - 0.007140972651541233, - -0.004646295215934515, - -0.0025995937176048756, - 0.0014047132572159171, - 0.020770104601979256, - -0.01586734689772129, - 0.01294301263988018, - -0.006548111792653799, - 0.013789004646241665, - 0.009205992333590984, - -0.020130613818764687, - 0.03719700500369072, - 0.029283316805958748, - 0.005289115943014622, - 0.018225466832518578, - -0.01612047851085663, - -0.029976097866892815, - -0.008213450200855732, - 0.021982470527291298, - -0.014095427468419075, - -0.029123444110155106, - 6.224203389137983e-05, - 0.013789004646241665, - -0.0056521594524383545, - 0.00887958612293005, - -0.006961116101592779, - 0.004453115630894899, - -0.02002403326332569, - 0.014548399485647678, - -0.03522524610161781, - -0.020397068932652473, - -0.03671738877892494, - 0.019770901650190353, - 0.03213437646627426, - 0.00731416791677475, - 0.007973642088472843, - 0.00742074940353632, - 0.025233212858438492, - -0.01127767376601696, - 0.026818614453077316, - -0.007913690060377121, - 0.010698135942220688, - -0.026898551732301712, - 0.011624064296483994, - 0.006201721262186766, - -0.04156685620546341, - -0.0135691799223423, - -0.004642964340746403, - 0.01590731553733349, - 0.026272384449839592, - 0.01158409658819437, - 0.003530518151819706, - 0.12406107783317566, - 0.030455714091658592, - -0.022462088614702225, - 0.02591267041862011, - 0.007713849190622568, - 0.008746358565986156, - 0.02859053574502468, - -0.0007281693397089839, - 0.029523124918341637, - -0.04130040109157562, - -0.002709506079554558, - -0.00908608827739954, - 0.013895586133003235, - -0.035864733159542084, - -0.01244341116398573, - 0.01181724388152361, - 0.004416478332132101, - 0.002223227173089981, - -0.012669896706938744, - -0.011251028627157211, - 0.03802301362156868, - -0.017852431163191795, - 0.014015491120517254, - 0.030135970562696457, - -0.020783428102731705, - -0.002006733091548085, - 0.018491921946406364, - -0.0008534861262887716, - 0.001651183352805674, - -0.019051475450396538, - -0.01605386473238468, - 0.012896383181214333, - -0.05321090295910835, - -0.0292300246655941, - 0.019770901650190353, - -0.030322488397359848, - -0.006717976648360491, - -0.018838312476873398, - 0.007787123788148165, - -0.007454056292772293, - 0.01606718823313713, - 0.02779117226600647, - -0.0031175140757113695, - -0.02837737277150154, - 0.009432478807866573, - -0.006138438358902931, - -0.00046546218800358474, - 0.006221705581992865, - -0.01715965010225773 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 15, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 759 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000016.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000016.json deleted file mode 100644 index 0ff71aab6c6be6e325e9c5b9b16149189b71fd9c..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000016.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000016", - "content": "F\u00fcr Verladet\u00e4tigkeiten werden zu derzeitigem Stand beispielgebend der der Technische Bericht [7, 8] von der hessischen Landesanstalt f\u00fcr Umwelt verwendet. Die bisherigen Ver\u00f6ffentlichungen und Untersuchungen in diesem Bereich konzentrieren sich haupt- s\u00e4chlich auf Verbraucherm\u00e4rkte und Verladungen mit Handhubwagen, was nur einen kleinen Teil der tats\u00e4chlich m\u00f6glichen Verladet\u00e4tigkeiten abdeckt. Daher wurde in dieser Arbeit der Fokus auf die Analyse von Verladeger\u00e4uschen bei in- dustriellen Verladevorg\u00e4ngen gelegt, um eine umfassendere Perspektive zu erhalten. Die gew\u00e4hlte Vorgehensweise erm\u00f6glicht eine genaue Untersuchung der Schallemissio- nen und Richtcharakteristik in einem gr\u00f6\u00dferen Anwendungsbereich, f\u00fcr die Verladung mit einem Gabelstapler und einem Gabelhubwagen. Die gewonnenen Erkenntnisse tra- gen dazu bei, ein umfassenderes Verst\u00e4ndnis der L\u00e4rmbelastung bei verschiedenen Ver- ladet\u00e4tigkeiten zu gewinnen. 30\n4 Beschreibung des Betriebs und Untersuchungsobjekte\n\n## 4 Beschreibung des Betriebs und Untersuchungsobjekte\n\nIn diesem Abschnitt erfolgt eine Beschreibung des Betriebs sowie der Untersuchungs- objekte, die Gegenstand dieser Thesis sind. Eine genaue Beschreibung der Umgebung tr\u00e4gt zu einem vollst\u00e4ndigen Verst\u00e4ndnis bei und hilft die Ergebnisse der Untersuchung zu kontextualisieren. Das Ziel dieses Kapitels ist es, ein Verst\u00e4ndnis des Untersuchungs- kontexts zu vermitteln und somit ein umfassendes Verst\u00e4ndnis der Forschungsfragen zu erlangen. ## 4.1 Beschreibung des Betriebs\n\nIm folgenden Abschnitt wird der Betrieb, in dem die Untersuchungen stattfanden, ge- nauer beschrieben. Dabei werden relevante Informationen \u00fcber den Betrieb, die Ar- beitsabl\u00e4ufe und andere wesentliche Aspekte des Betriebs dargelegt. Um die Ge- r\u00e4uschemissionen der verschiedenen Verladevorg\u00e4nge zu ermitteln, wurde die Messung in der Zweigniederlassung des internationalen Transport- und Logistikunternehmen \u201eGebr\u00fcder Weiss GmbH\u201c in der 90 Zeppelinstra\u00dfe, 73730 Esslingen am Neckar durchge- f\u00fchrt. Die Urspr\u00fcnge des Unternehmens reichen weit zur\u00fcck, denn \u201eGebr\u00fcder Weiss\u201c ist das \u00e4lteste Transport- und Logistikunternehmen in \u00d6sterreich mit Hauptsitz in Lauterach, \u00d6sterreich. [68] Die Anf\u00e4nge (1474 bis 1918) nahmen in Fussach am Bodensee ihren Lauf, wo einst im Jahr 1471 die Familie Spehler und Vis (Weiss) im Auftrag der Stadt, Mail\u00e4nder Bote an einer der wichtigsten Transithafen f\u00fcr den Nord- und S\u00fcdhandel be- trieben haben. Im Jahr 1823 ging die Faktorei \u00fcber in den alleinigen Besitz von Josef Weiss, der mit seinen Halbbr\u00fcdern Leonhard und Johann Alois Karl Weiss das Gesch\u00e4ft unter bis heute bekannten Namen \u201eSpedition Gebr\u00fcder Weiss\u201c weiterf\u00fchrte. Von dort aus wuchs das Unternehmen stetig weiter, bis hin zur globalen Expansion im Jahr 1997 bis 2020. [69] Die Hauptgesch\u00e4ftsbereiche umfasst die Landverkehre, Paketdienste, Luft- und Seefracht, sowie Logistik- und Speziall\u00f6sungen. [70] In dem Unternehmen ar-\n31\n4 Beschreibung des Betriebs und Untersuchungsobjekte\nbeiten Stand 2023 rund um 8400 Besch\u00e4ftige an 191 firmeneigene Niederlassungen, Be- triebsst\u00e4tten und Standorte in 431 L\u00e4ndern. Es wurden bereits 15,5 Millionen Sendungen im Landverkehr in 2022 mit Gebr\u00fcder Weiss bereits verwickelt. [71]\nDer Standort in Esslingen am Neckar geh\u00f6rt zu einer der Zweigniederlassungen und be- sch\u00e4ftigt sich haupts\u00e4chlich mit dem Landverkehr. Am Standort befinden sich vier Um- schlaghallen mit insgesamt 153 Verladestationen. Die Messung fand in der Umschlag- halle drei, dem Exportbereich statt. Hierbei wurden spezifisch die Verladevorg\u00e4nge der 8 Verladestationen an der S\u00fcd-West Fassade untersucht, bei welchen haupts\u00e4chlich Be- ladungsvorg\u00e4nge durchgef\u00fchrt werden. Die genauere Beschreibung und Begr\u00fcndung der Wahl des Messortes ist in Kapitel 5.3 aufgezeigt. Die Verladestationen (siehe Abbil- dung 4) bestehen aus einer vertieften Verladestation, einer innenliegenden hydrauli- schen \u00dcberladebr\u00fccke mit Klapplippe und einer Planen-Torrandabdichtung. [IMAGE: - Au]\n\n\n[IMAGE: a -]\n\nAbbildung 4: Verladezone von innen und au\u00dfen\nDie innenliegende hydraulische \u00dcberladebr\u00fccke ist eine wichtige Komponente in Spedi- tionen, da sie den schnellen und sicheren Transport von G\u00fctern zwischen Anh\u00e4nger und\n- 1 in \u00d6sterreich, Deutschland, der Schweiz, Armenien, Australien, Bosnien-Herzegowina, Bulgarien, China, Georgien, Hongkong, Japan, Kanada, Kasachstan, Kroatien, Malaysia, Mazedonien, Montenegro, Neu- seeland, Polen, Rum\u00e4nien, Russische F\u00f6deration, Serbien, Singapur, Slowakei, Slowenien, S\u00fcdkorea, Tschechien, T\u00fcrkei, Ukraine, Ungarn, Usbekistan, Taiwan, USA und Vietnam [71]\n32\n4 Beschreibung des Betriebs und Untersuchungsobjekte\nLagerhalle erm\u00f6glicht.", - "embedding": [ - 0.0071282112039625645, - 0.004021387081593275, - -0.00160300696734339, - -0.03596384450793266, - -0.013711719773709774, - 0.011310991831123829, - -0.01400088332593441, - -0.010631794109940529, - -0.005188127513974905, - -0.035775549709796906, - -0.010362805798649788, - 0.015224783681333065, - -0.03211729973554611, - -0.007793959230184555, - 0.009118731133639812, - 0.0088362917304039, - 0.03682461008429527, - -0.006206923630088568, - 0.010504025034606457, - -0.005867324769496918, - -0.027974866330623627, - -0.008459707722067833, - 0.003977676387876272, - -0.004693859722465277, - -0.02706030383706093, - 0.010134164243936539, - 0.029373610392212868, - -0.0170001108199358, - -0.003261492820456624, - 0.003394306404516101, - -0.016973212361335754, - -0.022352995350956917, - -0.01803571917116642, - 0.005917760543525219, - 0.00394405284896493, - -0.025123583152890205, - -0.005349521059542894, - -0.015103738754987717, - 0.024128323420882225, - -0.015574469231069088, - 0.010288833640515804, - 0.005211663898080587, - 0.009293573908507824, - -0.030395768582820892, - 0.010705766268074512, - 0.01889648474752903, - -0.003345552133396268, - 0.006200199015438557, - -0.020725611597299576, - 0.024047626182436943, - 0.013442730531096458, - 0.01753808930516243, - -0.030072981491684914, - 0.01934031769633293, - -0.0038969796150922775, - -0.0032329128589481115, - -0.009165803901851177, - 0.00872197188436985, - -0.007498071528971195, - -0.023711388930678368, - -0.035775549709796906, - 0.003668338991701603, - -0.03539896756410599, - 0.017242202535271645, - -0.035506561398506165, - -0.00991897378116846, - -0.00892371404916048, - 0.0028933139983564615, - 0.0009557519224472344, - -0.02872803620994091, - 0.0038129205349832773, - 0.027974866330623627, - -0.0009498677682131529, - 0.014229523949325085, - 0.02913152053952217, - -0.019972441717982292, - -0.006129589397460222, - -0.003809558227658272, - -0.0012264222605153918, - 0.008762320503592491, - 0.022258847951889038, - -0.026455078274011612, - -0.036905307322740555, - 0.04427560791373253, - 0.03510307893157005, - 0.014081579633057117, - 0.0009397806716151536, - 0.008163819089531898, - -0.00808984786272049, - -0.00790828000754118, - 0.0008969105547294021, - 0.02532532438635826, - 0.003421205095946789, - 0.011452211067080498, - 0.012669387273490429, - -0.0098584508523345, - -0.010981480590999126, - 0.02746378816664219, - -0.007108037360012531, - -0.03456509858369827, - -0.023711388930678368, - 0.010066917166113853, - -0.015749312937259674, - 0.00024944538017734885, - -0.023617243394255638, - -0.0048687029629945755, - 0.005591610912233591, - 1.4198106327967253e-05, - -1.7560470951138996e-05, - -0.020564217120409012, - -0.013462904840707779, - 0.01916547305881977, - -0.018466101959347725, - -0.002528497716411948, - 0.013577225618064404, - -0.029803993180394173, - 0.026616472750902176, - -0.011586706154048443, - 0.02496218867599964, - -0.02660302259027958, - 0.011600155383348465, - 0.021048396825790405, - 0.016731122508645058, - -0.0031236361246556044, - 0.039810389280319214, - 0.014740603044629097, - -0.0021754493936896324, - 0.003775934688746929, - 0.0032715799752622843, - -0.03556035831570625, - -0.027840372174978256, - 0.00938099529594183, - 0.015507222153246403, - 0.005117517895996571, - -0.005971558392047882, - -0.0020594478119164705, - -0.021868813782930374, - 0.005571437068283558, - -0.018654394894838333, - -0.052721865475177765, - 0.00474765757098794, - 0.0115530826151371, - -0.024262817576527596, - -0.018506450578570366, - -0.006859222427010536, - 0.024478008970618248, - 0.016300739720463753, - 0.02654922567307949, - -0.021949511021375656, - 0.0012600457994267344, - -0.023899681866168976, - -0.02315996214747429, - 0.013476354070007801, - -0.003809558227658272, - 0.005510914139449596, - 0.005157866049557924, - 0.0027705878019332886, - 0.006166575476527214, - -0.01853334903717041, - -0.020241430029273033, - 0.019636204466223717, - 0.01843920350074768, - 0.011317716911435127, - -0.00377257214859128, - 0.015547570772469044, - 0.015601368620991707, - 0.0025116857141256332, - -0.010786463506519794, - -0.004192867781966925, - -0.018909934908151627, - -0.01757843792438507, - 0.010880609042942524, - -0.030368870124220848, - 0.015184435062110424, - -0.028216958045959473, - -0.000933896575588733, - 0.021398084238171577, - 0.001012912136502564, - -0.049843680113554, - -0.04236578568816185, - 0.0011230295058339834, - 0.013496528379619122, - 0.016636976972222328, - 0.008506780490279198, - -0.017551539465785027, - -0.00461988802999258, - 0.02151912823319435, - 0.007780510000884533, - -0.015466873534023762, - -0.008493331260979176, - 0.013947085477411747, - 0.018331607803702354, - -0.0062035610899329185, - 0.0013146842829883099, - -0.6171686053276062, - 0.0028748211916536093, - -0.002817660802975297, - -0.016233492642641068, - -0.006482637487351894, - 0.026952708140015602, - 0.021034948527812958, - 0.0007678798283450305, - -0.0032934353221207857, - 0.04917120933532715, - -0.014189175330102444, - 0.009340646676719189, - 0.000632124429102987, - -0.0077670603059232235, - -0.017874326556921005, - -0.014525411650538445, - -0.033785030245780945, - -0.004263477399945259, - 0.030879950150847435, - 0.004613163415342569, - -0.01572241261601448, - 0.024451110512018204, - 0.00022990163415670395, - -0.0011238701408728957, - 0.023213759064674377, - 0.005736192688345909, - 0.02710065245628357, - -0.022003309801220894, - 0.010725940577685833, - -0.002518410561606288, - -0.017955023795366287, - 0.004808180499821901, - -0.01786087639629841, - 0.027248596772551537, - 0.024491459131240845, - 0.03144482523202896, - -0.02379208616912365, - 0.03781986981630325, - 0.0283245537430048, - 0.01137151475995779, - -0.009407893754541874, - -0.023953480646014214, - -0.012750083580613136, - -0.008056223392486572, - 0.007424099370837212, - 0.0065431599505245686, - 0.041343625634908676, - 0.007780510000884533, - -0.007000441662967205, - -0.020241430029273033, - 0.009925697930157185, - 0.002590701449662447, - 0.009905523620545864, - 0.0011305948719382286, - 0.03483409062027931, - 0.003789384150877595, - 0.02084665559232235, - -0.017417045310139656, - -0.01318719144910574, - 0.02216470241546631, - 0.007363576907664537, - 0.035452764481306076, - 0.003041258081793785, - -0.03529137000441551, - -0.040267668664455414, - 0.028109362348914146, - -0.027921069413423538, - -0.04050976037979126, - 0.023899681866168976, - -0.002044317312538624, - -0.008795944042503834, - 0.02216470241546631, - -0.02283717505633831, - -0.011102525517344475, - 0.02446455880999565, - 0.012501268647611141, - 0.012850954197347164, - 0.0016786601627245545, - 0.01230625156313181, - 0.035775549709796906, - 0.0012516399146988988, - -0.009851725772023201, - -0.005514276679605246, - -0.005130967125296593, - 0.03211729973554611, - -0.010591446422040462, - -0.023778637871146202, - -0.002479743445292115, - -0.0017854152247309685, - -0.003933965694159269, - 0.022151252254843712, - 0.03991798311471939, - -0.012595415115356445, - -0.005729468073695898, - 0.007007166277617216, - 0.03157931938767433, - -0.0040919966995716095, - 0.029400508850812912, - -0.0007796481368131936, - -0.020093485713005066, - -0.015332379378378391, - -0.007646015379577875, - 0.008614376187324524, - -0.014323670417070389, - 0.021761218085885048, - 0.030207477509975433, - -0.01650248095393181, - 0.012104509398341179, - 0.0183585062623024, - -0.025715358555316925, - 0.013106494210660458, - -0.002689891029149294, - -0.010678867809474468, - 0.00854040402919054, - -0.015318929217755795, - -0.031202737241983414, - 0.03507617861032486, - -0.0015458468114957213, - 0.012064161710441113, - -0.018883034586906433, - 0.015883807092905045, - 0.006368317175656557, - 0.01979759894311428, - -0.009253225289285183, - -0.015507222153246403, - 0.04085944592952728, - 0.011411862447857857, - -0.013684820383787155, - -0.011727925390005112, - -0.0061968364752829075, - 0.016838718205690384, - 0.008695072494447231, - 0.02541946992278099, - -0.020133834332227707, - 0.03098754584789276, - 0.01857369765639305, - 0.04341484233736992, - 0.0006800380651839077, - 0.011438761837780476, - -0.04357623681426048, - -0.03281667083501816, - -0.023038916289806366, - 0.02293132059276104, - -0.022191600874066353, - -0.02488149330019951, - -0.04500187933444977, - -0.006358230020850897, - 0.013631023466587067, - -0.005228475667536259, - 0.005457116290926933, - -0.021989859640598297, - -0.016367986798286438, - -0.004004575312137604, - 0.012373498640954494, - -0.0030631134286522865, - -0.0032379564363509417, - -0.028082462027668953, - -0.0010566228302195668, - -0.004256752785295248, - -0.012413847260177135, - 0.0031606219708919525, - 0.014686805196106434, - -0.044921182096004486, - -0.0012205380480736494, - -0.025069784373044968, - -0.018224012106657028, - 0.021182892844080925, - -0.010087091475725174, - -0.026724068447947502, - -0.04766486957669258, - 0.0012482776073738933, - -0.015103738754987717, - -0.019326867535710335, - 0.01983794756233692, - -0.01685216836631298, - 0.0009372589411213994, - -0.015413075685501099, - -0.012312976643443108, - -0.006284257862716913, - -0.016098998486995697, - 0.010026568546891212, - 0.02718134969472885, - -0.020779408514499664, - -0.015413075685501099, - 0.020187633112072945, - 0.001916547422297299, - 0.010625069960951805, - 0.006021993700414896, - -0.01943446323275566, - 0.02188226394355297, - -0.012333150953054428, - 0.030610959976911545, - -0.0041390699334442616, - 0.009387719444930553, - -0.03784676641225815, - 0.014202624559402466, - 0.00901785958558321, - 0.01549377292394638, - -0.0008843016694299877, - 0.005147778894752264, - 0.032332491129636765, - 0.0036952379159629345, - 0.029427409172058105, - -0.008647999726235867, - 0.009488590992987156, - -0.004734208341687918, - 0.02455870620906353, - -0.00015393321518786252, - 0.06810804456472397, - 0.005433579906821251, - 0.022312646731734276, - -0.008775769732892513, - -0.035452764481306076, - 0.00016790804511401802, - 0.0002824385592248291, - 0.037900567054748535, - -0.005322622135281563, - 0.011438761837780476, - 0.007699813228100538, - -0.005480653140693903, - 0.002372147748246789, - 0.0012877853587269783, - 0.02727549523115158, - 0.014269872568547726, - -0.018546799197793007, - -0.02080630697309971, - 0.006338055711239576, - 0.0170001108199358, - -0.005658858455717564, - -0.010322457179427147, - -0.020456621423363686, - -0.0015592962736263871, - -0.01667732372879982, - 0.013738618232309818, - 0.008305038325488567, - 0.009623085148632526, - 0.019273068755865097, - 0.001186914392746985, - 0.026078494265675545, - 0.018385404720902443, - 0.02346929907798767, - 0.030288172885775566, - 0.018277809023857117, - -0.017336348071694374, - 0.012407122179865837, - -0.00936082098633051, - 0.02178811840713024, - 0.019474811851978302, - -0.015977952629327774, - -0.01051074918359518, - 0.003991126082837582, - -0.0012222192017361522, - -0.00969705730676651, - -0.017322897911071777, - 0.008136920630931854, - -0.021546026691794395, - 0.02926601469516754, - -0.0010204773861914873, - 0.012017088010907173, - 0.004623250104486942, - 0.015856908634305, - 0.020039688795804977, - 0.01784742809832096, - -0.008984236046671867, - 0.010450227186083794, - -0.0020493606571108103, - -0.025002537295222282, - -0.0004308028728701174, - -0.013180466368794441, - -0.0028680963441729546, - 0.001456744153983891, - 0.0039474149234592915, - -0.006250634323805571, - 0.000350736576365307, - 0.022944770753383636, - 0.00833866186439991, - 0.004115533549338579, - 0.008661448955535889, - 0.0134830791503191, - 0.011835521087050438, - -0.006163212936371565, - -0.021626723930239677, - -0.015695514157414436, - 0.024007277563214302, - -0.012467645108699799, - -0.002341886516660452, - -0.01352342776954174, - 0.0367170125246048, - -0.03012678027153015, - -0.001751791569404304, - -0.01085371058434248, - -0.007699813228100538, - -0.02008003741502762, - 0.0006464144680649042, - 0.013866388238966465, - 0.011875868774950504, - 0.042796168476343155, - 0.004935950040817261, - -0.020900454372167587, - 0.0030933746602386236, - -0.005171315744519234, - -0.03453820198774338, - -0.012043987400829792, - -0.020873554050922394, - 0.032144200056791306, - -0.009979495778679848, - -0.0039003421552479267, - -0.0023570170160382986, - 0.015655165538191795, - -0.026993056759238243, - -0.013382208533585072, - 0.016596628352999687, - -0.01712115667760372, - 0.016381436958909035, - -0.007161835208535194, - -0.010752839967608452, - 0.016744572669267654, - 0.00541340559720993, - 0.03779296949505806, - 0.013947085477411747, - -0.004475306253880262, - -0.0262802354991436, - -0.013032522052526474, - 0.021061846986413002, - 0.036232832819223404, - 0.03878822922706604, - -0.010268659330904484, - 0.03381193056702614, - 0.0028126174584031105, - -0.01685216836631298, - 0.0062943450175225735, - -0.03496858477592468, - 0.022326095029711723, - 0.023576894775032997, - -0.007948627695441246, - -0.008029324933886528, - 0.03297806531190872, - -0.0062035610899329185, - 0.0012970318784937263, - -0.007874656468629837, - 0.004660236183553934, - 0.0021754493936896324, - 0.029346711933612823, - -0.00043542610364966094, - -0.0077670603059232235, - -0.01098820473998785, - -0.028970126062631607, - 0.03085304982960224, - 0.02346929907798767, - -0.02415522187948227, - 0.013960534706711769, - 0.02320031076669693, - 0.0003719615051522851, - -0.02465285174548626, - -0.008096572011709213, - 0.017955023795366287, - 0.011707751080393791, - 0.022621983662247658, - -0.02342895045876503, - -0.01595105417072773, - -0.00369860022328794, - 0.007531695067882538, - 0.012407122179865837, - 0.006126226857304573, - 0.015184435062110424, - 0.019044429063796997, - 0.007733436767011881, - -0.015359277836978436, - 0.0022157977800816298, - 0.0052587371319532394, - 0.022554736584424973, - 0.018089517951011658, - -0.002125013852491975, - -0.008708522655069828, - 0.024800796061754227, - -0.030933747068047523, - -0.008298314176499844, - -0.01105545274913311, - 0.012272628024220467, - -0.022218501195311546, - -0.007390475831925869, - 0.005352883134037256, - 0.0031656655482947826, - -0.012353324331343174, - -0.013173741288483143, - -0.022769927978515625, - 0.025661561638116837, - -0.015144086442887783, - -0.02237989380955696, - -0.007693088613450527, - -0.03440370783209801, - -0.006005181930959225, - -0.02805556356906891, - -0.009649984538555145, - -0.010255210101604462, - -0.004273564554750919, - -0.02297166921198368, - -0.0052587371319532394, - 0.027262046933174133, - -0.016973212361335754, - 0.015359277836978436, - -0.016596628352999687, - 0.0063346936367452145, - 0.011317716911435127, - -0.03375813364982605, - -0.010006395168602467, - -0.009468416683375835, - -0.0262802354991436, - -0.010584721341729164, - 0.00575636699795723, - -0.006149763241410255, - -0.006132951471954584, - -0.006375041790306568, - 0.005998457316309214, - 0.0044315955601632595, - 0.002402408979833126, - -0.0027167899534106255, - -0.00445176986977458, - 0.019864846020936966, - 0.01939411461353302, - 0.012830780819058418, - 0.0016576453344896436, - 0.0056554959155619144, - -0.019636204466223717, - 0.007585492916405201, - -0.00856057833880186, - 0.0022477402817457914, - -0.01463300734758377, - 0.013079595752060413, - 0.008910263888537884, - -0.027087202295660973, - -0.0010053467703983188, - 0.0007796481368131936, - 0.03330085054039955, - 0.012319700792431831, - -0.001988838193938136, - -0.007148385513573885, - -0.0009977815207093954, - -0.027947967872023582, - 0.01979759894311428, - -0.010167788714170456, - 0.025930549949407578, - 0.036232832819223404, - -0.012810606509447098, - -0.001410511671565473, - -0.020133834332227707, - 0.026266787201166153, - 0.0003568308602552861, - -0.0069331941194832325, - 0.040536656975746155, - -0.020039688795804977, - 0.00188628607429564, - -0.035775549709796906, - 0.00491577573120594, - 0.010544372722506523, - 0.01698666252195835, - -0.01098820473998785, - -0.014525411650538445, - -0.01934031769633293, - -0.01604519970715046, - 0.012454195879399776, - 0.001277698203921318, - -0.012077610939741135, - -0.02369794063270092, - -0.030557163059711456, - 0.01198346447199583, - -0.01690596528351307, - -0.0037490357644855976, - 0.007242531515657902, - -0.02767897956073284, - -0.014982692897319794, - 0.028647340834140778, - -0.021061846986413002, - 0.0283245537430048, - -0.012104509398341179, - -0.006825598422437906, - -0.005225113593041897, - -0.006553247105330229, - -0.015507222153246403, - -0.037093598395586014, - 0.01515753660351038, - -0.021451881155371666, - 0.020362475886940956, - 0.01065196841955185, - 0.028808733448386192, - -0.007007166277617216, - 0.0181298665702343, - -0.0009750855388119817, - -0.0020409547723829746, - 0.003382537979632616, - -0.01862749643623829, - -0.01849300041794777, - -0.025217728689312935, - 0.02872803620994091, - 0.020496970042586327, - 0.0031354043167084455, - 0.005588248837739229, - 0.019824497401714325, - 0.0033186532091349363, - 0.03486098721623421, - -0.015547570772469044, - -0.003503583138808608, - -0.010288833640515804, - -0.020012790337204933, - -0.0005199055303819478, - -0.00033812772016972303, - 0.010584721341729164, - -0.005463841371238232, - -0.039487600326538086, - 0.0015685426769778132, - 0.02587675303220749, - -0.02065836265683174, - -0.012339875102043152, - -0.013180466368794441, - 0.005823614075779915, - -0.05831683799624443, - 0.013973983936011791, - 0.01948826014995575, - -0.025944000110030174, - 0.007854482159018517, - 0.001006187405437231, - -0.025728808715939522, - -0.025755707174539566, - 0.03800816088914871, - 0.0105376485735178, - -0.011290817521512508, - -0.012817330658435822, - -0.03521067276597023, - -0.008257965557277203, - -0.013604124076664448, - 0.025446370244026184, - -0.005457116290926933, - -0.0027655442245304585, - -0.015265132300555706, - -0.03136413171887398, - -0.02406107634305954, - -0.00949531514197588, - -0.01581656001508236, - 0.03515687584877014, - 0.01268956158310175, - 0.023496199399232864, - 0.022406792268157005, - -0.01264248788356781, - -0.0015996445436030626, - -0.0008099093683995306, - -0.008647999726235867, - 0.013725169003009796, - 0.02446455880999565, - 0.04586264118552208, - 0.013671371154487133, - -0.02329445630311966, - -0.013409106992185116, - -0.04704619571566582, - 0.008143644779920578, - -0.003570830449461937, - 0.02092735283076763, - 0.005110792815685272, - -0.0278672706335783, - -0.012877853587269783, - 0.007780510000884533, - 0.011068901978433132, - 0.0013886563247069716, - -0.013879838399589062, - 0.04562055319547653, - 0.015641717240214348, - -0.002925256500020623, - -0.012239004485309124, - 0.010147614404559135, - -0.006428839638829231, - 0.007484621834009886, - -0.002499917522072792, - -0.0029487931169569492, - -0.00956256315112114, - -0.0064860000275075436, - -0.0024629314430058002, - 0.05194179713726044, - -0.007498071528971195, - 0.027087202295660973, - 0.004650149028748274, - -0.03456509858369827, - -0.006842410191893578, - -0.009959321469068527, - -0.0076123918406665325, - 0.010577996261417866, - -0.030530264601111412, - 0.02324065938591957, - -0.012783707119524479, - -0.015883807092905045, - -0.0005106590106151998, - 0.007289604749530554, - -0.02714100107550621, - -0.01017451286315918, - -0.0009574330761097372, - 0.020765958353877068, - -0.002061129081994295, - -0.011129423975944519, - 0.011855694465339184, - 0.0036347152199596167, - 0.007625841069966555, - -0.009623085148632526, - 0.017417045310139656, - 0.005863962695002556, - 0.005020009353756905, - -0.0064322021789848804, - -0.009623085148632526, - 0.013711719773709774, - -0.015735862776637077, - -0.019811047241091728, - -0.007054239511489868, - -0.018694743514060974, - -0.003984401002526283, - -0.03200970217585564, - -0.00445176986977458, - -0.028163159266114235, - -0.024262817576527596, - 0.0051679532043635845, - -0.004801455419510603, - 0.02029522880911827, - 0.0028748211916536093, - -0.019313417375087738, - -0.010268659330904484, - 0.04527086764574051, - -0.039218612015247345, - 0.008533679880201817, - 0.00999294500797987, - -0.015695514157414436, - -0.01085371058434248, - 0.016798369586467743, - 0.011606879532337189, - -0.016327638179063797, - 0.03136413171887398, - -0.0075653186067938805, - -0.014256422407925129, - -0.007511520758271217, - 0.0009196065366268158, - 0.013415832072496414, - -0.008769044652581215, - 0.00046610768185928464, - 0.012635763734579086, - -0.0019619392696768045, - 0.010867159813642502, - -0.009966046549379826, - -0.0008616057457402349, - 0.013355309143662453, - 0.0013701632851734757, - 0.002056085504591465, - 0.013906736858189106, - -0.030664758756756783, - 0.01866784319281578, - 0.023052366450428963, - -0.012555066496133804, - -0.009461691603064537, - -0.033058762550354004, - -0.0321710966527462, - 0.0005299926269799471, - 0.0003839399141725153, - -0.020147284492850304, - 0.0010969712166115642, - -0.007901554927229881, - -0.028216958045959473, - -0.01465990673750639, - -0.0024427573662251234, - 0.007074413355439901, - -0.004397972021251917, - 0.008197442628443241, - -0.009091831743717194, - 0.005884136538952589, - 0.030288172885775566, - 0.0011793491430580616, - -0.003718774300068617, - 0.02601124718785286, - 0.0014441353268921375, - -0.037174295634031296, - 0.011539632454514503, - -0.02683166414499283, - 0.033462245017290115, - 0.01558791846036911, - -0.02180156670510769, - 0.004169330932199955, - -0.0038768055383116007, - -0.030691657215356827, - 0.011559806764125824, - 0.0013180465903133154, - 0.0005468043964356184, - -0.0031404478941112757, - 0.01595105417072773, - -0.003863356076180935, - 0.02691235952079296, - 0.0032278692815452814, - 0.02958880178630352, - -0.0040919966995716095, - -0.005554625298827887, - 0.010994929820299149, - -0.005537813063710928, - 0.017618786543607712, - -0.004983023274689913, - -0.052264582365751266, - -0.0035607432946562767, - 0.022460591048002243, - 0.01983794756233692, - 0.012043987400829792, - 0.03800816088914871, - 0.011896043084561825, - -0.017228752374649048, - -0.004176056012511253, - 0.010773013345897198, - -0.003907066769897938, - -0.011082351207733154, - 0.015144086442887783, - -0.03155242279171944, - -0.01644868403673172, - 0.022366443648934364, - 0.03209039941430092, - -0.012669387273490429, - -0.005675670225173235, - 0.001405468094162643, - 0.005164590664207935, - 0.004243303090333939, - 0.023765187710523605, - -0.007706537842750549, - 0.004071822389960289, - -0.009058208204805851, - 0.02021453157067299, - 0.019555507227778435, - -0.013382208533585072, - 0.009118731133639812, - 0.010645244270563126, - -0.0054369424469769, - -0.03136413171887398, - 0.00412225816398859, - -0.03408091887831688, - 0.009804653003811836, - 0.004841804038733244, - -0.026925809681415558, - 0.022500939667224884, - -0.018102966248989105, - 0.012884578667581081, - -0.0014878460206091404, - 0.002439395058900118, - -0.013308236375451088, - -0.009609635919332504, - -0.033785030245780945, - 0.034591998904943466, - 0.0013298148987814784, - -0.026562673971056938, - 0.002158637624233961, - 0.0003791065246332437, - 0.002962242579087615, - 0.0002181333547923714, - -0.01713460683822632, - -0.00445176986977458, - -0.03222489356994629, - -0.012447470799088478, - 0.006385128945112228, - -0.01409502886235714, - -0.0025957447942346334, - 0.0006657480262219906, - -0.017753280699253082, - -0.038223352283239365, - -0.018560247495770454, - 0.19722281396389008, - -0.023805536329746246, - -0.002592382486909628, - 0.00032278691651299596, - -0.027921069413423538, - -0.026616472750902176, - 0.02142498269677162, - -0.012736634351313114, - 0.012312976643443108, - 0.02646852843463421, - 0.020402824506163597, - 0.003718774300068617, - -0.00674153957515955, - 0.014377467334270477, - 0.0063414182513952255, - -0.0219764094799757, - -0.03421541303396225, - -0.006469188258051872, - -0.0024309891741722822, - 0.03249388560652733, - 0.025769157335162163, - -0.038411643356084824, - -0.0048283543437719345, - -0.02346929907798767, - 0.030826151371002197, - 0.0005543697625398636, - -0.012817330658435822, - 0.007504796143621206, - 0.028028665110468864, - 0.014269872568547726, - -0.024706648662686348, - 0.02442421019077301, - 0.008849741891026497, - -0.013153566978871822, - 0.00019564754620660096, - 0.005366332828998566, - 0.003152216086164117, - -0.007646015379577875, - 0.020402824506163597, - 0.02151912823319435, - -0.0015702239470556378, - -0.018600596114993095, - -0.0004158823867328465, - -0.010705766268074512, - -0.014471613802015781, - 0.006818873807787895, - 0.0011280730832368135, - 0.01599140278995037, - 0.01137151475995779, - -0.009112006053328514, - -0.026858562603592873, - 0.006193474400788546, - 0.007780510000884533, - 0.03316635638475418, - 0.0030580698512494564, - -0.0024545255582779646, - 0.0023317993618547916, - -0.0008582433802075684, - 0.014269872568547726, - -0.004206317011266947, - -0.03765847533941269, - 0.0075720432214438915, - -0.003377494402229786, - 0.00544702960178256, - -0.017242202535271645, - 0.010880609042942524, - -0.011317716911435127, - -0.015170985832810402, - 0.012131408788263798, - -0.018143314868211746, - 0.007760335691273212, - -0.02570190839469433, - -0.034780289977788925, - 0.0013583949767053127, - -0.02767897956073284, - -0.02905082330107689, - 0.0071752844378352165, - -0.014242973178625107, - 0.029023924842476845, - 0.02228574827313423, - -0.0017349797999486327, - 0.0052654617466032505, - -0.012682836502790451, - -0.01749774068593979, - 0.0025638025254011154, - -0.006035442929714918, - 0.021774668246507645, - 0.017053909599781036, - 0.006348142866045237, - -0.033193256705999374, - -0.029346711933612823, - 0.005319259595125914, - 0.014175726100802422, - -0.006714640650898218, - 0.0021754493936896324, - 0.005803439766168594, - 0.022003309801220894, - -0.00017127041064668447, - -0.007693088613450527, - -0.0181298665702343, - -0.040213871747255325, - 0.05541175603866577, - 0.03238628804683685, - -0.010746114887297153, - -0.003863356076180935, - 0.0018173576099798083, - 0.009004410356283188, - 0.023980379104614258, - -0.009569287300109863, - -0.008163819089531898, - 0.014256422407925129, - -0.033596739172935486, - 0.006344780791550875, - -0.021196341142058372, - 0.01515753660351038, - 0.0006069066585041583, - 0.0006228779093362391, - -0.006563334260135889, - 0.021909162402153015, - -0.0015408032340928912, - -0.010994929820299149, - 0.005423492752015591, - 0.01650248095393181, - -0.007108037360012531, - -0.005961471237242222, - -0.03830404952168465, - -0.02061801590025425, - 0.02886253036558628, - -0.008910263888537884, - -0.005050270352512598, - 0.011761548928916454, - -0.0021519127767533064, - 0.019824497401714325, - -0.008614376187324524, - 0.008822842501103878, - -0.006586870644241571, - -0.029696397483348846, - -0.03139102831482887, - -0.024128323420882225, - 0.013530151918530464, - 0.01847955211997032, - 0.006085878703743219, - 0.0019367216154932976, - -0.005457116290926933, - 0.006005181930959225, - -0.001433207537047565, - 0.01302579790353775, - 0.004028111696243286, - -0.02759828232228756, - -0.03281667083501816, - -0.009582736529409885, - -0.001861068420112133, - 0.00230490043759346, - -0.03566795587539673, - 0.020698711276054382, - 0.01826436072587967, - -0.023711388930678368, - -0.018883034586906433, - 0.025177380070090294, - 0.0071282112039625645, - -0.029938487336039543, - -0.009071657434105873, - 0.010732665657997131, - -0.007356852293014526, - 0.0016710947966203094, - 0.004381160251796246, - -0.17075428366661072, - 0.005863962695002556, - 0.011902768164873123, - -0.02102149836719036, - 0.020456621423363686, - -0.0016895878361538053, - 0.005457116290926933, - 0.022191600874066353, - -0.017148055136203766, - -0.008318488486111164, - 0.026724068447947502, - 0.001396221574395895, - -0.03959519788622856, - -0.011163047514855862, - -0.02415522187948227, - -0.012360049411654472, - -0.0167714711278677, - 0.016246942803263664, - 0.03515687584877014, - -0.0030866500455886126, - 0.012158307246863842, - -0.005379782058298588, - 0.004276926629245281, - 0.007874656468629837, - 0.004108808469027281, - 0.023038916289806366, - -0.023671042174100876, - 0.03469959646463394, - -0.012911477126181126, - -0.019811047241091728, - 0.00049258628860116, - 0.007518245372921228, - 0.01979759894311428, - -0.004798093345016241, - -0.017417045310139656, - 0.0017021966632455587, - -0.0055647119879722595, - 0.01784742809832096, - 0.001365960342809558, - 0.02759828232228756, - 0.015749312937259674, - 0.020187633112072945, - -0.017161505296826363, - 0.0008149529458023608, - 0.0017332985298708081, - 0.020375924184918404, - 0.027652081102132797, - -0.011761548928916454, - -0.003024446312338114, - -0.02551361732184887, - -0.006825598422437906, - -0.01568206585943699, - -0.015977952629327774, - 0.03225179389119148, - -0.005816889461129904, - 0.01627384126186371, - 0.007134936284273863, - 0.017914675176143646, - -0.008769044652581215, - 0.009347371757030487, - -0.009939147159457207, - -0.014686805196106434, - 0.002341886516660452, - -0.0028580091893672943, - -0.021236689761281013, - -0.02071216143667698, - 0.0013399019371718168, - -0.001946808653883636, - -0.0003780557890422642, - -0.002767225494608283, - 0.0017181679140776396, - -0.006529710721224546, - -0.0014517005765810609, - -0.0014895271742716432, - 0.02092735283076763, - 0.019676553085446358, - 0.01065196841955185, - -0.0004951080773025751, - 0.011660677380859852, - -0.009414618834853172, - -0.02360379509627819, - 0.042984459549188614, - -0.004256752785295248, - -0.022218501195311546, - 0.00312699843198061, - 0.0034464229829609394, - -0.007800684310495853, - 0.01617969572544098, - 0.0038667183835059404, - 0.002446119673550129, - 0.022487489506602287, - -0.029830891638994217, - -0.010820087045431137, - -0.02732929401099682, - 0.009737405925989151, - -0.0026243249885737896, - 0.008284864947199821, - 0.0005720221670344472, - -0.0002349451679037884, - -0.009105280973017216, - -0.004693859722465277, - -0.00949531514197588, - -0.02918531745672226, - 0.013274612836539745, - 0.002617600141093135, - 0.013920186087489128, - -0.027894170954823494, - 0.03225179389119148, - 0.057294681668281555, - -0.01712115667760372, - 0.0004003314534202218, - -5.022530967835337e-05, - 0.015964504331350327, - 0.03472649306058884, - 0.019811047241091728, - 0.021129094064235687, - -0.0014903678093105555, - -0.024814244359731674, - 0.019555507227778435, - 0.008641274645924568, - 0.04263477399945259, - -0.011774998158216476, - -0.016879066824913025, - 0.008668174035847187, - -0.007666189689189196, - -0.02352309785783291, - -0.09210187196731567, - 0.0007098790374584496, - 0.02188226394355297, - 0.00592448515817523, - 0.009885349310934544, - 0.018277809023857117, - 0.0006930672680027783, - 0.022998569533228874, - 0.0115530826151371, - 0.028970126062631607, - -0.03416161611676216, - -0.008843016810715199, - -0.010248485021293163, - -0.015964504331350327, - 0.03838474676012993, - -0.001953533384948969, - 0.01151273399591446, - -0.0023385239765048027, - -0.019326867535710335, - 0.02891632914543152, - -0.0016803413163870573, - 0.015170985832810402, - -0.004616525489836931, - -0.01409502886235714, - -0.016556279733777046, - -0.01640833541750908, - -0.04777246713638306, - 0.019770698621869087, - 0.026455078274011612, - -0.012474370189011097, - 0.018963731825351715, - -0.030072981491684914, - 0.004848528653383255, - -0.018694743514060974, - 0.009871900081634521, - 0.010477125644683838, - -0.01463300734758377, - 0.00641202786937356, - 0.040402162820100784, - -0.02306581661105156, - 0.00524528743699193, - 0.002841197419911623, - 0.0079284543171525, - -0.03295116499066353, - 0.005490740295499563, - -0.02597089856863022, - -0.0026058319490402937, - 0.010302282869815826, - 0.0015197884058579803, - 0.000991897308267653, - -0.011310991831123829, - -0.021828465163707733, - -0.013382208533585072, - 0.004360985942184925, - 0.030019184574484825, - 0.0001294510147999972, - 0.005675670225173235, - -0.0007048355182632804, - -0.01345617976039648, - -0.010053467936813831, - -0.022218501195311546, - 0.01916547305881977, - -0.02710065245628357, - 0.02555396594107151, - 0.0010196368675678968, - -0.009885349310934544, - -0.020765958353877068, - -0.015009592287242413, - 0.011216845363378525, - 0.0010070279240608215, - -0.038357846438884735, - 0.0108738848939538, - -0.005379782058298588, - 0.0027705878019332886, - -0.03018057718873024, - -0.014364018104970455, - -0.04564744979143143, - -0.014471613802015781, - 0.012797156348824501, - -0.0004366869980003685, - -0.02337515354156494, - -0.03292426839470863, - 0.013288062065839767, - -0.025903651490807533, - 0.038895826786756516, - 0.019004080444574356, - -0.0038835301529616117, - -0.024585604667663574, - 0.027087202295660973, - -0.014565760269761086, - 0.0010120715014636517, - 0.025298425927758217, - 0.02442421019077301, - -0.026226438581943512, - -0.006556609645485878, - 0.009690332226455212, - -0.006886121351271868, - 0.000845634494908154, - 0.0016811819514259696, - 0.012279353104531765, - -0.017282549291849136, - -0.02002623863518238, - -0.05885481834411621, - 0.01826436072587967, - 0.026670269668102264, - -0.009024584665894508, - -0.014780951663851738, - -0.00870179757475853, - 0.0029303000774234533, - 0.009636534377932549, - 0.019878294318914413, - 0.023092715069651604, - -0.0072492565959692, - 0.018385404720902443, - 0.002397365402430296, - -0.02002623863518238, - -0.00969705730676651, - -0.03798126056790352, - 0.0021367822773754597, - 0.010678867809474468, - 0.012911477126181126, - 0.011479110457003117, - -0.001433207537047565, - 0.0038969796150922775, - 0.015870356932282448, - 0.034457504749298096, - -0.030691657215356827, - -0.002530178753659129, - -0.005292360670864582, - -0.011210121214389801, - -0.0038532689213752747, - -0.009105280973017216, - 0.013240988366305828, - -0.012292802333831787, - -0.0020779408514499664, - 0.008977511897683144, - -0.02021453157067299, - -0.01182879600673914, - 0.008029324933886528, - 0.026266787201166153, - 0.040940143167972565, - 0.053528834134340286, - -0.01393363531678915, - -0.03905721753835678, - 0.01558791846036911, - -0.027974866330623627, - -0.01250799372792244, - 0.007935178466141224, - 0.03905721753835678, - -0.008863191120326519, - 0.01032918132841587, - -0.010349355638027191, - 0.030207477509975433, - 0.024989088997244835, - 0.004629975184798241, - -0.02410142309963703, - 0.009892074391245842, - 0.012588690035045147, - 0.01162705384194851, - 0.01098820473998785, - 0.014054681174457073, - -0.020671812817454338, - 0.039810389280319214, - -0.004740932956337929, - 0.02084665559232235, - -0.006089240778237581, - 0.0167714711278677, - -0.023348255082964897, - -0.021586375311017036, - -0.0188023392111063, - -0.006832323502749205, - -0.012003638781607151, - -0.004414783790707588, - -0.013920186087489128, - 0.021855365484952927, - 0.031875208020210266, - -0.011546357534825802, - -0.018237462267279625, - 0.007484621834009886, - 0.02057766728103161, - -0.01379914116114378, - 0.007424099370837212, - 0.015830008313059807, - 0.008634550496935844, - -0.0012222192017361522, - 0.003691875608637929, - 0.04013317450881004, - -0.0010179555974900723, - -0.0098584508523345, - 0.019999340176582336, - 0.003182477317750454, - 0.003678426146507263, - -0.005194852128624916, - 0.0289970263838768, - -0.0011978420661762357, - 0.012091060169041157, - 0.0008347068214789033, - 0.016556279733777046, - -0.005033458583056927, - -0.019690003246068954, - 0.05971558019518852, - 0.02773277647793293, - -0.0008885046700015664, - 0.021720871329307556, - -0.005880774464458227, - -0.02591709978878498, - -0.02301201783120632, - 0.01681181974709034, - -0.006442289333790541, - -0.018318157643079758, - 0.0026125567965209484, - 0.02840524911880493, - -0.0035641056019812822, - -0.008735421113669872, - -0.011142874136567116, - 0.008163819089531898, - -0.012615589424967766, - 1.673301449045539e-05, - -0.021922612562775612, - -0.01979759894311428, - -0.023186860606074333, - 0.037631575018167496, - 0.01975725032389164, - 0.013671371154487133, - 0.014740603044629097, - 0.0012281034141778946, - 0.010113990865647793, - -0.005517639219760895, - 0.014901996590197086, - -0.012494544498622417, - 0.0024982362519949675, - -0.004946037195622921, - 0.018506450578570366, - -0.009004410356283188, - -0.016287289559841156, - -0.011479110457003117, - -0.006280895788222551, - 0.0002921053674072027, - 0.014888547360897064, - -0.0008405909757129848, - 0.019326867535710335, - 0.12760843336582184, - 0.024276267737150192, - -0.029481206089258194, - 0.019690003246068954, - -0.0022124354727566242, - -0.004414783790707588, - 0.018735092133283615, - 0.0026192814111709595, - -0.010430052876472473, - -0.03695910423994064, - 0.017470842227339745, - -0.010087091475725174, - 0.020416272804141045, - -0.0339733250439167, - -0.007639290764927864, - 0.00940116960555315, - -0.015184435062110424, - 0.017645685002207756, - -0.02025488018989563, - -0.006327968556433916, - 0.02138463407754898, - -0.02346929907798767, - 0.021895714104175568, - 0.02853974513709545, - -0.019232721999287605, - -0.014552311040461063, - 0.02297166921198368, - -0.01843920350074768, - -0.00704751443117857, - -0.017242202535271645, - -0.0022527838591486216, - 0.006607044953852892, - -0.05907000973820686, - -0.032735973596572876, - 0.031068241223692894, - -0.026360932737588882, - 0.004381160251796246, - -0.013146842829883099, - 0.017887774854898453, - 0.00278739957138896, - -0.0026982969138771296, - 0.02243369072675705, - 0.013402381911873817, - -0.026952708140015602, - 7.281619036803022e-05, - 0.0015374408103525639, - -0.0006216170149855316, - -0.002659629797562957, - -0.017148055136203766 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 16, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 617 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000017.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000017.json deleted file mode 100644 index 80c11408e913a8ceb3a5f4c5a3780109603b79d6..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000017.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000017", - "content": "Die Verladestationen (siehe Abbil- dung 4) bestehen aus einer vertieften Verladestation, einer innenliegenden hydrauli- schen \u00dcberladebr\u00fccke mit Klapplippe und einer Planen-Torrandabdichtung. [IMAGE: - Au]\n\n\n[IMAGE: a -]\n\nAbbildung 4: Verladezone von innen und au\u00dfen\nDie innenliegende hydraulische \u00dcberladebr\u00fccke ist eine wichtige Komponente in Spedi- tionen, da sie den schnellen und sicheren Transport von G\u00fctern zwischen Anh\u00e4nger und\n- 1 in \u00d6sterreich, Deutschland, der Schweiz, Armenien, Australien, Bosnien-Herzegowina, Bulgarien, China, Georgien, Hongkong, Japan, Kanada, Kasachstan, Kroatien, Malaysia, Mazedonien, Montenegro, Neu- seeland, Polen, Rum\u00e4nien, Russische F\u00f6deration, Serbien, Singapur, Slowakei, Slowenien, S\u00fcdkorea, Tschechien, T\u00fcrkei, Ukraine, Ungarn, Usbekistan, Taiwan, USA und Vietnam [71]\n32\n4 Beschreibung des Betriebs und Untersuchungsobjekte\nLagerhalle erm\u00f6glicht. Die vorhandene \u00dcberladebr\u00fccke besteht aus Stahl mit einer ge- riffelten Oberfl\u00e4che, um ein sicheres Begehen und Befahren zu erm\u00f6glichen (siehe Ab- bildung 5). [IMAGE: ]\n\nAbbildung 5: Oberfl\u00e4che der innenliegenden \u00dcberladebr\u00fccke\nW\u00e4hrend der Betriebszeiten ist das Betriebsgrundst\u00fcck gepr\u00e4gt durch ein hohes Ver- kehrsaufkommen, dass von dem pendeln der Zugmaschinen bis hin zum Umschlag der Wechselbr\u00fccken reicht. ## 4.2 Beschreibung der Untersuchungsobjekte\n\nIn diesem Abschnitt werden die untersuchten Untersuchungsobjekte detailliert darge- stellt. Dabei handelt es sich um verschiedene Anh\u00e4ngertypen sowie Flurf\u00f6rderger\u00e4te, die im Rahmen dieser Arbeit genauer betrachtet werden. Die Beschreibung der einzel- nen Objekte liefert einen \u00dcberblick \u00fcber ihre spezifischen Merkmale und Eigenschaften, die f\u00fcr die weiteren Untersuchungen von Bedeutung sind. ## Die Anh\u00e4nger\n\nBei der schalltechnischen Untersuchung fanden die Verladevorg\u00e4nge in verschiedene Anh\u00e4nger statt, zum einen in Aufliegern, auch Sattelauflieger genannt und zum anderen in Wechselbr\u00fccken. Ein Auflieger verf\u00fcgt \u00fcber mehrere Hinterachsen, aber keine Vorderachse, da der Auf- lieger auf der Zugmaschine vorne mit einer Sattelplatte und dem K\u00f6nigszapfen aufliegt. Auflieger gibt es in verschiedensten Ausf\u00fchrungen. [72, 73] In dieser schalltechnischen Untersuchung kamen Ausf\u00fchrungen als Tautliner und als Koffer-Auflieger vor. Ein Tau- tliner ist ein Sattelauflieger, der \u00fcber keine festen Ladeboardw\u00e4nde verf\u00fcgt, sondern Planen als Ladeboardw\u00e4nde hat (siehe Abbildung 6). [74] Ein Koffer-Auflieger verf\u00fcgt im Gegensatz zu einem Tautliner \u00fcber feste Ladeboardw\u00e4nde (siehe Abbildung 7). Des Weiteren fanden Verladungen in sogenannte Wechselbr\u00fccken, oder auch Wechsel- beh\u00e4lter genannt, statt (siehe Abbildung 8). Dies sind austauschbare Ladungstr\u00e4ger die\n33\n4 Beschreibung des Betriebs und Untersuchungsobjekte\neiner Zugmaschine angeh\u00e4ngt werden k\u00f6nnen. Wechelbr\u00fccken sollen den Frachtalltag erleichtern, da diese dabei helfen, Ladegut schnell und effizient umzuschlagen. Wech- selbr\u00fccken gibt es in verschiedenen Ausf\u00fchrungen, zum Beispiel mit Planen, mit Rollto- ren oder mit Fl\u00fcgeltoren. [75] Bei der Analyse der L\u00e4rmemissionen der Beladevorg\u00e4nge ist es wichtig, die unterschiedlichen Merkmale der Anh\u00e4nger zu ber\u00fccksichtigen, um ein umfassendes Verst\u00e4ndnis zu erlangen. [IMAGE: ]\n\nAbbildung 6: Tautliner\n\n[IMAGE: ]\n\nAbbildung 7: Koffer Auflieger - blau\n\n[IMAGE: TIIEERNIIIERIIIIE u I uesl a0 3 | |) I]\n\nAbbildung 8: Wechselbr\u00fccke\n34\n4 Beschreibung des Betriebs und Untersuchungsobjekte\nDie Auflieger, die in der Thesis untersucht worden sind, weisen bestimmte Abmessun- gen auf. Auflieger haben in der Regel eine L\u00e4nge von circa 13,70 m, eine Breite von circa 2,50 m und eine H\u00f6he von circa 2,60 m. Die Abmessungen erm\u00f6glichen die Aufnahme von 34 Paletten, wobei jeder Auflieger eine Kapazit\u00e4t von 24 t, oder 88 m\u00b3, aufweist. Wechselbr\u00fccken haben in der Regel eine L\u00e4nge von circa 7,45 m, eine Breite von circa 2,50 m und eine H\u00f6he von 2,50 m auf. Die Abmessungen bei einer Wechselbr\u00fccke er- m\u00f6glichen eine Aufnahme von 18 Paletten, wobei jede Wechselbr\u00fccke eine Kapazit\u00e4t von circa 46 m\u00b3 besitzt. [76]\n35\n4 Beschreibung des Betriebs und Untersuchungsobjekte\n\n## Die Flurf\u00f6rderger\u00e4te\n\nDas Unternehmen (siehe Kapitel 4.1) setzt f\u00fcr den Umschlag der G\u00fcter in die Anh\u00e4nger Flurf\u00f6rderger\u00e4te ein, zum einem Gabelhubwagen und zum anderen Gabelstapler. Diese Flurf\u00f6rderger\u00e4te erm\u00f6glichen eine schnelle und sichere Verladung der G\u00fcter. Die Gabel- hubwagen werden in der Regel f\u00fcr kleinere Lasten verwendet.", - "embedding": [ - 0.007557435892522335, - 0.002347793895751238, - 0.005575378425419331, - -0.024000421166419983, - -0.006182130891829729, - 0.011481099762022495, - -0.019362136721611023, - -0.015128354541957378, - 0.004833792336285114, - -0.023124000057578087, - 0.010409170761704445, - 0.020346423611044884, - -0.018027281388640404, - -0.004071981646120548, - 0.01005186140537262, - 0.00938443373888731, - 0.03260281682014465, - 0.014305868186056614, - -0.006323706358671188, - -0.036270298063755035, - -0.013678891584277153, - -0.00037605996476486325, - 0.0021590266842395067, - -0.020926209166646004, - -0.02812633477151394, - 0.01522273849695921, - 0.02586112730205059, - -0.012957530096173286, - 0.005983250681310892, - -0.001189908478409052, - -0.01640927605330944, - -0.0017444125842303038, - -0.016840744763612747, - 0.005450657103210688, - 0.0022247580345720053, - -0.025308309122920036, - -0.007287768181413412, - -0.02590157650411129, - 0.018795834854245186, - -0.0019449779065325856, - 0.020710475742816925, - 0.004085464868694544, - -0.0001465264504076913, - -0.02292175032198429, - 0.00866981502622366, - 0.005821450147777796, - -0.010982214473187923, - -0.001717445789836347, - -0.022166680544614792, - 0.015357572585344315, - 0.012249653227627277, - 0.004196702968329191, - -0.02769486792385578, - 4.5137727283872664e-05, - -0.0065697780810296535, - -0.0068900082260370255, - -0.013901366852223873, - 0.008143963292241096, - 0.0031298301182687283, - -0.022679049521684647, - -0.031416282057762146, - 0.005966396536678076, - -0.03022974357008934, - 0.01618005894124508, - -0.017137378454208374, - -0.010335012339055538, - 0.009020382538437843, - -0.007307993248105049, - -0.003664109157398343, - -0.02416222169995308, - 0.0078001366928219795, - 0.03815797343850136, - 0.008042837493121624, - -0.004341648891568184, - 0.02799150161445141, - -0.04134004935622215, - -0.0033354517072439194, - 0.012917079962790012, - -0.023663336411118507, - 0.015276672318577766, - 0.027088114991784096, - -0.048971645534038544, - -0.016786811873316765, - 0.03543432801961899, - 0.01504745427519083, - 0.005561895202845335, - -0.0022062184289097786, - 0.0042843446135520935, - 0.0021135201677680016, - -0.007038325536996126, - -0.013335064984858036, - 0.03724110126495361, - 7.505398389184847e-05, - 0.026400461792945862, - 0.01787896454334259, - -0.01743401400744915, - -0.013968784362077713, - 0.025645393878221512, - 0.004098948091268539, - -0.031551115214824677, - -0.015559823252260685, - 0.00895970780402422, - 0.011049631983041763, - 0.00010597096115816385, - -0.019456520676612854, - -0.0031989323906600475, - 0.002219701884314418, - 0.007105742581188679, - -0.00018307905702386051, - -0.03864337503910065, - -0.005427061580121517, - 0.023906037211418152, - -0.021141942590475082, - -0.01210807729512453, - 0.007854070514440536, - -0.04045014828443527, - 0.020036306232213974, - -0.02671058103442192, - 0.03311518579721451, - -0.017191313207149506, - -0.0010264224838465452, - 0.021034076809883118, - 0.016207026317715645, - -0.00774620333686471, - 0.023434119299054146, - 0.023326251655817032, - 0.011690092273056507, - 0.014076651073992252, - 0.011730542406439781, - -0.017825031653046608, - -0.021101493388414383, - 0.01681377738714218, - 0.01442721951752901, - -0.001275022397749126, - -0.011440649628639221, - -0.003707930212840438, - -0.01917336881160736, - -0.003927035257220268, - -0.027492616325616837, - -0.04120521619915962, - 0.015816006809473038, - -0.0013854175340384245, - -0.025483593344688416, - -0.01190582662820816, - 0.002401727484539151, - 0.01743401400744915, - 0.008710265159606934, - 0.026508329436182976, - -0.019847538322210312, - 0.0032191574573516846, - -0.016827261075377464, - -0.014831720851361752, - 0.009923769161105156, - -0.02509257383644581, - -0.0052787442691624165, - 0.016382308676838875, - -0.012559770606458187, - 0.0149126211181283, - -0.013941816985607147, - -0.028719604015350342, - 0.01609915867447853, - 0.00924960058182478, - 0.012944047339260578, - -0.006138309836387634, - 0.003365789307281375, - 0.0072203511372208595, - -0.022180164232850075, - -0.0005755719030275941, - 0.002797801746055484, - -0.01708344556391239, - -0.003724784357473254, - 0.01712389476597309, - -0.033951155841350555, - 0.02050822414457798, - -0.013732824474573135, - -0.0029124105349183083, - 0.023218384012579918, - -0.002936006523668766, - -0.03869730606675148, - -0.030553344637155533, - 0.0012522691395133734, - -0.0023056583013385534, - 0.023070067167282104, - 0.005760774947702885, - -0.022166680544614792, - -0.02625214494764805, - 0.017932899296283722, - 0.0075102439150214195, - -0.002472515217959881, - -0.009121508337557316, - -0.005592233035713434, - 0.03130841255187988, - -0.0020528449676930904, - -0.005056268535554409, - -0.6178625226020813, - 0.002332625212147832, - 0.002175880828872323, - -0.016153091564774513, - 0.002546673873439431, - 0.036000631749629974, - 0.03236011788249016, - -0.00015885109314695, - -0.009087800048291683, - 0.03632423281669617, - -0.013388998806476593, - 0.023461084812879562, - 0.0032225283794105053, - 0.01662500947713852, - -0.00774620333686471, - -0.015371056273579597, - -0.026117311790585518, - -0.016571076586842537, - 0.03834673762321472, - 0.003910180646926165, - -0.024903807789087296, - 0.022679049521684647, - -0.00028778595151379704, - 0.00716641778126359, - 0.009721518494188786, - -0.004961884580552578, - 0.028153302147984505, - -0.0005848417058587074, - 0.008130479604005814, - 0.0017629521898925304, - -0.021479027345776558, - 0.011117048561573029, - -0.01938910409808159, - 0.00127923593390733, - 0.03225225210189819, - 0.020791376009583473, - -0.013382256962358952, - 0.02733081579208374, - 0.021600378677248955, - 0.014858687296509743, - 0.002598922001197934, - -0.03233315050601959, - -0.004840534180402756, - -0.014224967919290066, - 0.013422707095742226, - -0.006852929014712572, - 0.04187938570976257, - 0.008649589493870735, - 0.006741691380739212, - -0.024863356724381447, - 0.017150862142443657, - -0.003910180646926165, - 0.004105689935386181, - 0.014373285695910454, - 0.024458855390548706, - 0.011696834117174149, - 0.028207235038280487, - -0.014440702274441719, - -0.013928334228694439, - 0.014319351874291897, - 0.01103614829480648, - 0.04007261246442795, - -0.01522273849695921, - -0.025874610990285873, - -0.02433750592172146, - 0.005979880224913359, - -0.022908266633749008, - -0.027937568724155426, - 0.003269720124080777, - 0.0005726224044337869, - -0.011393457651138306, - 0.020090239122509956, - -0.01623399183154106, - -0.0008220649906434119, - 0.013213714584708214, - 0.026063378900289536, - 0.010874347761273384, - 0.002924208529293537, - 0.01671939343214035, - 0.052099790424108505, - 0.005592233035713434, - -0.004854017402976751, - 0.008845099247992039, - 3.4182481613243e-05, - 0.04587046802043915, - 0.003980968613177538, - -0.027047665789723396, - 0.0013129443395882845, - -0.008332730270922184, - -0.013564283028244972, - 0.029771307483315468, - 0.033061254769563675, - -0.021344194188714027, - -0.00849453080445528, - -0.0030624133069068193, - 0.035380396991968155, - -0.015977807343006134, - 0.022328481078147888, - -0.006798995658755302, - -0.01961832121014595, - -0.0026477992068976164, - -0.007570919115096331, - 0.005194473080337048, - -0.016126126050949097, - 0.02812633477151394, - 0.02799150161445141, - -0.023973453789949417, - 0.01698906160891056, - 0.022395897656679153, - -0.03842763975262642, - -0.00895970780402422, - -0.0098293861374259, - -0.0010559173533692956, - -0.0021893642842769623, - -0.024094803258776665, - -0.0232318677008152, - 0.01712389476597309, - 0.0123710036277771, - 0.020144173875451088, - -0.03540736064314842, - 0.016247475519776344, - 0.0034045539796352386, - 0.002111834706738591, - -0.019807089120149612, - -0.01406316738575697, - 0.0377265028655529, - 0.016786811873316765, - -0.030337609350681305, - -0.016530627384781837, - 0.00016569813305977732, - 0.011251882649958134, - 0.007072033826261759, - 0.029501641169190407, - -0.008838357403874397, - 0.017528396099805832, - 0.026724062860012054, - 0.02626562863588333, - 0.009647360071539879, - 0.019537420943379402, - -0.04724577069282532, - -0.018027281388640404, - -0.02278691530227661, - 0.028018468990921974, - -0.011602450162172318, - -0.018620550632476807, - -0.03300732001662254, - -0.020926209166646004, - 0.009081058204174042, - -0.02362288534641266, - 0.0012809212785214186, - -0.02799150161445141, - -0.012815955094993114, - -0.006347302347421646, - 0.008076545782387257, - -0.005218069069087505, - 0.009168700315058231, - -0.043362557888031006, - 0.005875383969396353, - -0.0030303902458399534, - -0.019065503031015396, - 0.010908056050539017, - 0.008925999514758587, - -0.03732200339436531, - -0.0034399479627609253, - -0.027303848415613174, - 0.006434943992644548, - 0.03821190446615219, - 0.0028483644127845764, - -0.018714934587478638, - -0.04147488251328468, - 0.003930405713617802, - -0.016598043963313103, - -0.006637195125222206, - 0.0016500288620591164, - -0.015330606140196323, - -0.00782036129385233, - -0.006805737037211657, - -0.009815902449190617, - -0.001044962089508772, - -0.010348496027290821, - 0.0009202408255077899, - 0.021950947120785713, - -0.02358243614435196, - -0.01308562234044075, - 0.013786758296191692, - 0.012856405228376389, - 0.014278901740908623, - 0.020305974408984184, - -0.030930878594517708, - 0.020804859697818756, - -0.013220456428825855, - 0.035515230149030685, - -0.008588914759457111, - 0.01971270516514778, - -0.035380396991968155, - -0.0037551219575107098, - 0.014899137429893017, - 0.030823012813925743, - -0.004031531512737274, - 0.005167506169527769, - 0.028207235038280487, - -0.00511694373562932, - 0.033276986330747604, - -0.01549240667372942, - 0.022584665566682816, - -0.0055551533587276936, - 0.02153296209871769, - 0.0032107303850352764, - 0.07113832235336304, - 0.014575536362826824, - 0.02711508236825466, - -0.003180392784997821, - -0.031011778861284256, - -0.01005186140537262, - 0.010382204316556454, - 0.04667947068810463, - -0.0024876841343939304, - 0.019874505698680878, - 0.014359802007675171, - 0.0026815077289938927, - -0.0028770167846232653, - 0.016665460541844368, - 0.03419385850429535, - 0.010267595760524273, - -0.011892342939972878, - -0.013571023941040039, - 0.0013045172672718763, - 0.018607066944241524, - -0.01484520360827446, - -0.009067574515938759, - -0.009101282805204391, - 0.007301251403987408, - -0.010361979715526104, - 0.017002545297145844, - 0.017353113740682602, - 0.011353007517755032, - 0.001468003261834383, - 0.006161905825138092, - 0.03492195904254913, - 0.0014578907284885645, - 0.044603027403354645, - 0.03225225210189819, - 0.023528501391410828, - -0.021195877343416214, - 0.01578904129564762, - 0.007638336159288883, - 0.014939587563276291, - 0.011218174360692501, - -0.012404711917042732, - -0.020696992054581642, - 0.02064305916428566, - 0.003893326735123992, - -0.005201214924454689, - -0.01121143251657486, - -0.0035157918464392424, - -0.008137221448123455, - 0.031227514147758484, - 0.004715812858194113, - 0.009552976116538048, - 0.0012893484672531486, - 0.017177829518914223, - 0.015748590230941772, - 0.007611369248479605, - -0.009397917427122593, - 0.02201836369931698, - 0.009512525983154774, - -0.019240787252783775, - -0.02157341130077839, - -0.007752944715321064, - 0.007206867914646864, - -0.004227040335536003, - -0.00447985390201211, - 0.005868642125278711, - 0.002300602151080966, - 0.0160047747194767, - 0.0028298248071223497, - 0.003379272762686014, - 0.014966554008424282, - 0.004513562191277742, - 0.013301356695592403, - -0.0051742480136454105, - -0.020211590453982353, - -0.02286781556904316, - 0.03489499166607857, - -0.0035090502351522446, - -0.009613651782274246, - -0.03403205797076225, - 0.04824354127049446, - -0.027856668457388878, - 0.017555363476276398, - -0.006950683426111937, - -0.01406316738575697, - -0.017514914274215698, - 0.010678838938474655, - 0.013193489983677864, - -0.0012775504728779197, - 0.036539964377880096, - -0.0034433186519891024, - -0.007085517514497042, - -0.017218278720974922, - -0.007948453538119793, - -0.018512682989239693, - -0.007328218314796686, - -0.009593426249921322, - 0.02969040721654892, - -0.022193647921085358, - -0.004237153101712465, - -0.011218174360692501, - 0.0173935629427433, - -0.023258835077285767, - -0.013469899073243141, - -0.00015558558516204357, - -0.018566617742180824, - -0.007941712625324726, - -0.003246124368160963, - -0.0032124158460646868, - 0.00858217291533947, - 0.0034618584904819727, - 0.037025365978479385, - 0.013247422873973846, - -0.028827471658587456, - -0.014292385429143906, - -0.014198001474142075, - 0.008359696716070175, - 0.0247420072555542, - 0.03128144517540932, - -0.016921645030379295, - 0.03227921575307846, - 0.0008136378601193428, - -0.021559927612543106, - 0.017541879788041115, - -0.029636474326252937, - 0.009377692826092243, - 0.021209361031651497, - 0.006047296803444624, - -0.0003261293168179691, - 0.03287248685956001, - -0.014359802007675171, - 0.0053697568364441395, - -0.0034753417130559683, - 0.005642795469611883, - 0.005339419469237328, - 0.02969040721654892, - 0.004055127035826445, - -0.003043873468413949, - -0.02750610001385212, - -0.02568584308028221, - 0.03869730606675148, - 0.015762073919177055, - -0.019955405965447426, - 0.013584507629275322, - 0.027047665789723396, - 0.012148527428507805, - -0.012499094940721989, - 0.007806878536939621, - 0.0123710036277771, - 0.0168002936989069, - 0.013860916718840599, - -0.004837163258343935, - -0.026373496279120445, - 0.002164082834497094, - -0.0015253076562657952, - 0.014117101207375526, - 0.012667637318372726, - 0.0196587722748518, - 0.0149126211181283, - 0.007415860425680876, - -0.017447495833039284, - 0.010179953649640083, - 0.0030017378740012646, - 0.021007109433412552, - 0.008878807537257671, - -0.008912515826523304, - -0.02085879258811474, - 0.022234097123146057, - -0.02675103023648262, - -0.00831250473856926, - -0.015371056273579597, - 0.012121560983359814, - -0.030283676460385323, - -0.021586894989013672, - -0.008265313692390919, - 0.0010306360200047493, - -0.0072945100255310535, - -0.026319561526179314, - -0.032575853168964386, - 0.03451745957136154, - -0.01845875009894371, - -0.016207026317715645, - -0.004179848358035088, - -0.02969040721654892, - 0.002042732434347272, - -0.021654311567544937, - -0.0007778226281516254, - -0.007752944715321064, - -0.008305763825774193, - -0.02394648641347885, - -0.005413577891886234, - 0.02683193050324917, - -0.011285590939223766, - 0.016341859474778175, - -0.004968626424670219, - 0.00030274406890384853, - 0.013705858029425144, - -0.023164451122283936, - -0.0061147138476371765, - -0.009478817693889141, - -0.025025157257914543, - -0.01948348805308342, - 0.00924960058182478, - -0.007105742581188679, - -0.0053495317697525024, - 0.00658663222566247, - 0.012175493873655796, - 0.009748485870659351, - 0.005531557369977236, - -0.003566354513168335, - -0.010085569694638252, - 0.015708141028881073, - 0.009290050715208054, - 0.015627240762114525, - 0.009660843759775162, - -0.008568689227104187, - -0.02509257383644581, - 0.021141942590475082, - -0.01698906160891056, - -0.0024640881456434727, - -0.010152987204492092, - 0.009060832671821117, - 0.013314840383827686, - -0.014359802007675171, - -0.0026848784182220697, - -0.003084323601797223, - 0.012768763117492199, - 0.002593865618109703, - -0.01694861240684986, - -0.022840850055217743, - 0.008717007003724575, - -0.0253757257014513, - 0.009883319027721882, - -0.008770939894020557, - 0.022894782945513725, - 0.014319351874291897, - -0.001793289789929986, - 0.021694762632250786, - -0.022908266633749008, - 0.04012654721736908, - 0.005137168802320957, - -0.01357776578515768, - 0.04832444339990616, - -0.014993521384894848, - -0.016193542629480362, - -0.005400094669312239, - -0.0038663598243147135, - 0.021829595789313316, - 0.014022717252373695, - 0.011966501362621784, - -0.009087800048291683, - -0.018404817208647728, - -0.02126329392194748, - 0.0010609736200422049, - -0.002890500007197261, - -0.0009724889532662928, - -0.01983405463397503, - -0.017811547964811325, - 0.021789146587252617, - -0.008919257670640945, - 0.003458487568423152, - -0.011777734383940697, - -0.022625114768743515, - -0.0007297880947589874, - 0.03535342961549759, - -0.014764303341507912, - 0.012465386651456356, - -0.016031742095947266, - -0.0047394088469445705, - -0.010099053382873535, - 0.0002652434050105512, - -0.015613757073879242, - -0.03063424490392208, - 0.012613704428076744, - -0.022948715835809708, - 0.019105952233076096, - 0.019416069611907005, - 0.026319561526179314, - -0.009485559538006783, - 0.02675103023648262, - 0.01023388747125864, - 0.00033118558349087834, - -0.004280973691493273, - -0.011602450162172318, - -0.020359907299280167, - -0.026360012590885162, - 0.03799617290496826, - 0.029447706416249275, - 0.00987657718360424, - 0.007375410292297602, - 0.019914954900741577, - 0.006367527414113283, - 0.038670338690280914, - -0.01618005894124508, - -0.004692216869443655, - -0.02799150161445141, - -0.02603641152381897, - -0.012148527428507805, - -0.0058248210698366165, - 0.016921645030379295, - -0.012640670873224735, - -0.036000631749629974, - 0.011164240539073944, - 0.012074369005858898, - -0.026063378900289536, - -0.006252918392419815, - -0.012114819139242172, - 0.016018258407711983, - -0.04123218357563019, - 0.016881193965673447, - 0.033061254769563675, - -0.0042337821796536446, - 0.01689467765390873, - 0.004580979235470295, - -0.024620655924081802, - -0.030688177794218063, - 0.03147021308541298, - -0.005521445069462061, - -0.005760774947702885, - -0.010672097094357014, - -0.024768972769379616, - -0.00924960058182478, - -0.02363636903464794, - 0.02153296209871769, - -0.003913551568984985, - 0.0010281079448759556, - -0.011002440005540848, - -0.027034182101488113, - -0.041178248822689056, - 0.005598974414169788, - -0.014319351874291897, - 0.021546445786952972, - 0.017016028985381126, - 0.02460717223584652, - 0.03076907806098461, - -0.017865480855107307, - 0.0017477833898738027, - -0.0009564774227328598, - -0.004398953635245562, - 0.008015871047973633, - 0.02791060134768486, - 0.049376145005226135, - 0.010308045893907547, - -0.006340560503304005, - -0.0072203511372208595, - -0.0493222139775753, - 0.017110412940382957, - 0.007793394848704338, - 0.012532804161310196, - 0.014764303341507912, - -0.012923821806907654, - -0.00849453080445528, - 0.0016719393897801638, - 0.009236116893589497, - 0.018202565610408783, - -0.020265523344278336, - 0.05048178508877754, - 0.020629575476050377, - -0.00044958654325455427, - -0.005160764791071415, - -0.008993416093289852, - 0.00829228013753891, - -0.010463104583323002, - -0.00511694373562932, - -0.008737231604754925, - -0.013099106028676033, - -0.005268631502985954, - 0.007382151670753956, - 0.060028016567230225, - -0.003603433957323432, - 0.01662500947713852, - 0.01190582662820816, - -0.03508375957608223, - 0.002619147067889571, - -0.006478765048086643, - -0.017892448231577873, - 0.004543900024145842, - -0.023420635610818863, - 0.0336005873978138, - -0.0018185712397098541, - -0.007240576203912497, - -0.002448919229209423, - 6.968170055188239e-05, - -0.03473319113254547, - -0.018296949565410614, - 0.0025567864067852497, - 0.019335169345140457, - -0.01181144267320633, - 0.004921434447169304, - 0.0019230673788115382, - 0.0031921907793730497, - 0.01239122822880745, - -0.0074900188483297825, - 0.013206972740590572, - 0.008925999514758587, - 0.0067855119705200195, - -0.01766323111951351, - -0.014467669650912285, - -0.004179848358035088, - -0.028638703748583794, - -0.014171035028994083, - -4.932494994136505e-05, - -0.021816112101078033, - 0.0019550903234630823, - -0.027047665789723396, - -0.005541670136153698, - -0.03540736064314842, - -0.035029828548431396, - 0.0009303533588536084, - -0.0046686213463544846, - 0.01940258778631687, - -0.006650678347796202, - -0.013901366852223873, - -0.015020487830042839, - 0.039398442953825, - -0.040638912469148636, - 0.0006889165379106998, - 0.02844993583858013, - -0.012492354027926922, - -0.012708087451756, - 0.003980968613177538, - 0.004860759247094393, - -0.00012735475320369005, - 0.016395792365074158, - -0.0017629521898925304, - -0.011535033583641052, - 0.00039438894600607455, - -0.0032848890405148268, - 0.011663125827908516, - -0.0034820835571736097, - -0.012236169539391994, - -0.002727014012634754, - -0.01130581647157669, - 0.013395740650594234, - -0.0083799222484231, - -0.006343931425362825, - 0.019416069611907005, - 0.010463104583323002, - 0.008845099247992039, - 0.01983405463397503, - -0.019267752766609192, - -0.009546234272420406, - 0.028342070057988167, - -0.015667689964175224, - -0.0075304689817130566, - -0.03918270766735077, - -0.029258940368890762, - 0.015101388096809387, - -0.001017995411530137, - -0.012229427695274353, - -0.020319456234574318, - -0.023326251655817032, - -0.024148738011717796, - -0.01565420627593994, - 0.000916870019864291, - 0.003751751035451889, - -0.016422759741544724, - 0.011555258184671402, - -0.010159728117287159, - 0.019456520676612854, - 0.029933108016848564, - 0.013415965251624584, - -0.015937358140945435, - 0.03823887184262276, - 0.0026966764125972986, - -0.033951155841350555, - 0.011090082116425037, - -0.019456520676612854, - 0.029043205082416534, - 0.014791270717978477, - -0.013544057495892048, - 0.012377744540572166, - -0.0031551115680485964, - -0.032791584730148315, - 0.014548569917678833, - 0.007206867914646864, - 0.023393668234348297, - -0.008649589493870735, - 0.009910286404192448, - 0.012404711917042732, - 0.02799150161445141, - 0.006546182092279196, - 0.030040975660085678, - 0.005457398947328329, - 0.005669762380421162, - 0.0022770061623305082, - -0.006205726880580187, - 0.016072191298007965, - -0.01297101378440857, - -0.06143029034137726, - -0.00395737262442708, - 0.014791270717978477, - 0.013678891584277153, - 0.018067732453346252, - 0.027074631303548813, - 0.006734949536621571, - -0.01791941560804844, - -9.53317285166122e-05, - 0.0015826120506972075, - 0.01658456027507782, - -0.019564388319849968, - 0.026777997612953186, - -0.032575853168964386, - -0.008211379870772362, - 0.007908003404736519, - 0.028557803481817245, - -0.004112431779503822, - -0.0029545461293309927, - -0.0083799222484231, - 0.004402324091643095, - 0.019807089120149612, - 0.018701450899243355, - 0.00678888289257884, - 0.007928228937089443, - -0.011332782916724682, - 0.021964428946375847, - 0.013254164718091488, - -0.01640927605330944, - 0.007806878536939621, - 0.006178759969770908, - -0.010024894960224628, - -0.011460875160992146, - 0.005207956302911043, - -0.04160971939563751, - 0.015667689964175224, - 0.012067627161741257, - -0.03165898099541664, - 0.023568952456116676, - -0.011272107250988483, - 0.02572629414498806, - -0.00849453080445528, - 0.008663073182106018, - -0.01569465734064579, - -0.017177829518914223, - -0.018890218809247017, - 0.04276929050683975, - 0.004486595280468464, - -0.01636882685124874, - -0.009869836270809174, - 0.004945030435919762, - -0.01654410921037197, - 0.0027404974680393934, - -0.010018153116106987, - -0.0037989430129528046, - -0.022948715835809708, - -0.004395582713186741, - 0.000985129619948566, - -0.02344760112464428, - -0.006660790648311377, - 0.009512525983154774, - 0.004183219280093908, - -0.023771202191710472, - -0.01770368032157421, - 0.172047957777977, - -0.029717374593019485, - -0.0025146508123725653, - -0.0010002984199672937, - -0.02737126685678959, - -0.01618005894124508, - 0.021505994722247124, - -0.001885988051071763, - 0.008534980937838554, - 0.031497180461883545, - 0.014386769384145737, - -0.0026208325289189816, - -0.011265366338193417, - 0.003650625701993704, - 0.008878807537257671, - -0.01764974743127823, - -0.02420267090201378, - -0.007982162758708, - -0.006970908492803574, - 0.03942541033029556, - 0.020319456234574318, - -0.034436557441949844, - 0.0014106988674029708, - -0.023353219032287598, - 0.016638493165373802, - 0.0001323056931141764, - -0.01241819467395544, - 0.009256341494619846, - 0.017555363476276398, - 0.01738007925450802, - -0.019726188853383064, - 0.014818237163126469, - 0.0019887988455593586, - -0.001946663367561996, - -0.007355185225605965, - -0.003664109157398343, - -0.004034901969134808, - -0.0034921960905194283, - 0.012337294407188892, - 0.021330710500478745, - 0.00531582348048687, - -0.01158896740525961, - -0.006465281825512648, - -0.00551807414740324, - -0.03179381415247917, - -0.0010045119561254978, - 0.004092206712812185, - 0.005268631502985954, - -0.0010955247562378645, - -0.011346266604959965, - -0.014359802007675171, - 0.022301513701677322, - 0.00040007723146118224, - 0.03950630873441696, - -0.003707930212840438, - -0.0032663494348526, - -0.0032714055851101875, - -0.002585438545793295, - 0.029528606683015823, - -0.011170982383191586, - -0.038184937089681625, - 0.01925426907837391, - -0.011312557384371758, - 0.018647518008947372, - -0.0027758912183344364, - 0.007833844982087612, - -0.01014624536037445, - -0.009748485870659351, - 0.006212468259036541, - -0.02362288534641266, - -0.010564230382442474, - -0.02251724898815155, - -0.021923979744315147, - 0.0006442528683692217, - -0.026737546548247337, - -0.03508375957608223, - 0.00678888289257884, - -0.0027000473346561193, - 0.02960950694978237, - 0.018377849832177162, - 0.001121648820117116, - -0.007961937226355076, - -0.005052897613495588, - -0.011562000028789043, - 0.013982267118990421, - -0.021465545520186424, - 0.020305974408984184, - 0.022571181878447533, - 0.022261064499616623, - -0.042283885180950165, - -0.024067837744951248, - -0.012060885317623615, - 0.010982214473187923, - -0.009505784139037132, - -0.00571695389226079, - -0.0021977913565933704, - 0.01609915867447853, - 0.004051756579428911, - -0.013220456428825855, - 0.0037584928795695305, - -0.03427475690841675, - 0.050535716116428375, - 0.02812633477151394, - -0.006613599136471748, - -0.011420425027608871, - 0.013449673540890217, - -0.002221387345343828, - 0.032575853168964386, - -0.001689636381343007, - -0.02653529681265354, - 0.01170357596129179, - -0.01911943592131138, - -0.00283151026815176, - -0.022530732676386833, - 0.007193384692072868, - -0.0017764356452971697, - -0.00031896625296212733, - -0.022935234010219574, - 0.006205726880580187, - -0.005781000014394522, - -0.008636106736958027, - -0.008130479604005814, - 0.020750924944877625, - -0.003418037435039878, - -0.009047349914908409, - -0.04093554988503456, - -0.024593688547611237, - 0.03726806864142418, - -0.0002629259543027729, - -0.002858476946130395, - 0.021586894989013672, - 6.515212589874864e-05, - 0.021465545520186424, - -0.007146192714571953, - 0.003603433957323432, - 0.011386716738343239, - -0.024863356724381447, - -0.04244568571448326, - -0.023326251655817032, - 0.01442721951752901, - 0.011899084784090519, - 0.004142769146710634, - -0.006370898336172104, - -0.007085517514497042, - 0.01708344556391239, - -0.006593374069780111, - 0.021330710500478745, - -0.010955248028039932, - -0.0225981492549181, - -0.01853965036571026, - -0.009883319027721882, - 0.002782633062452078, - 0.00016453939315397292, - -0.010678838938474655, - 0.016072191298007965, - 0.0002646113862283528, - -0.02091272547841072, - -0.022894782945513725, - 0.03500286117196083, - 0.004948401357978582, - -0.04462999477982521, - -0.029124105349183083, - 0.0021775662899017334, - -0.017636263743042946, - 0.003229269990697503, - 0.0058450461365282536, - -0.1705378144979477, - 0.011137274093925953, - 0.007240576203912497, - -0.011575483717024326, - 0.03133537992835045, - -0.00014326094242278486, - 0.014346318319439888, - 0.019146403297781944, - -0.01948348805308342, - -0.004270861390978098, - 0.02532179281115532, - -0.0034820835571736097, - -0.03616243228316307, - -0.01853965036571026, - -0.013860916718840599, - -0.002039361512288451, - -0.006610228214412928, - 0.0007938341586850584, - 0.031497180461883545, - 0.002135430695489049, - 0.012788987718522549, - -0.02555100992321968, - 0.009391175583004951, - 0.006583261303603649, - -0.00418996112421155, - 0.018526166677474976, - -0.018121665343642235, - 0.036809634417295456, - -0.007038325536996126, - -0.012290103361010551, - 0.0039944518357515335, - -0.0003080110182054341, - 0.026360012590885162, - -0.014629470184445381, - -0.020589124411344528, - -0.010173211805522442, - -0.0034096103627234697, - 0.011541775427758694, - -0.010119277983903885, - 0.026360012590885162, - 0.006188872270286083, - 0.024013902992010117, - -0.00829228013753891, - -0.00479334220290184, - 0.011130532249808311, - 0.02064305916428566, - 0.02201836369931698, - -0.02340715192258358, - 0.005386611446738243, - -0.013941816985607147, - 0.004567495547235012, - -0.01344293262809515, - -0.016422759741544724, - 0.04414459317922592, - 0.004560754168778658, - 0.007105742581188679, - 0.005777629092335701, - 0.018350882455706596, - -0.006060780491679907, - 0.019335169345140457, - -0.01706996187567711, - -0.006084376480430365, - -0.00013641390250995755, - 0.0038427640683948994, - -0.026413945481181145, - -0.01591039076447487, - 0.005936059169471264, - 0.009499043226242065, - 0.012188977561891079, - -0.0050090765580534935, - 0.008265313692390919, - -0.008541722781956196, - 0.017447495833039284, - -0.027721833437681198, - 0.021856563165783882, - 0.030876945704221725, - 0.015303638763725758, - -0.00028546847170218825, - 0.012654154561460018, - -0.01822953298687935, - -0.019861022010445595, - 0.05576726794242859, - -0.008042837493121624, - -0.02327231876552105, - -0.013544057495892048, - -0.009006899781525135, - -0.017366595566272736, - 0.020346423611044884, - -0.012788987718522549, - -0.0006223423406481743, - 0.011157498694956303, - -0.03459835797548294, - -0.006215839181095362, - -0.03152414783835411, - 0.0002203690237365663, - -0.0044629997573792934, - 0.014373285695910454, - -0.023299284279346466, - 0.01007882785052061, - 0.003241067985072732, - -0.0018691339064389467, - -0.02456672303378582, - -0.029987042769789696, - 0.0068192207254469395, - -0.00531582348048687, - 0.0010525465477257967, - -0.021425094455480576, - 0.03632423281669617, - 0.04449516162276268, - -0.024647623300552368, - 0.015182288363575935, - -0.01286314707249403, - 0.022503765299916267, - 0.03718717023730278, - 0.01573510654270649, - 0.01592387445271015, - -0.009532751515507698, - -0.01406316738575697, - 0.027721833437681198, - 0.00551807414740324, - 0.040288347750902176, - -0.007213609758764505, - -0.008878807537257671, - 0.013719341717660427, - -0.016112642362713814, - -0.017757615074515343, - -0.09389827400445938, - -0.0012539546005427837, - 0.032791584730148315, - 0.016530627384781837, - 0.0033202827908098698, - -0.00013715127715840936, - 0.005986621603369713, - 0.014049684628844261, - -0.0052045853808522224, - 0.013766533695161343, - -0.03254888579249382, - -0.007773169782012701, - -0.0024472340010106564, - -0.017110412940382957, - 0.03721413388848305, - 0.009209150448441505, - -0.0026680242735892534, - 0.007955195382237434, - -0.016422759741544724, - 0.02292175032198429, - -0.008420372381806374, - 0.017150862142443657, - -0.00123457214795053, - -0.0013525517424568534, - -0.013746308162808418, - -0.025712810456752777, - -0.04301198944449425, - 0.013476640917360783, - 0.028153302147984505, - -0.016651976853609085, - 0.02702069841325283, - -0.024364471435546875, - 0.00938443373888731, - -0.01778458058834076, - 0.0019854281563311815, - -0.0024438630789518356, - -0.03058031015098095, - -0.0032916306518018246, - 0.034355659037828445, - -0.032036516815423965, - -0.004510191269218922, - -0.0036000630352646112, - 0.0023511648178100586, - -0.037699535489082336, - -0.01766323111951351, - -0.029879175126552582, - -0.00633044820278883, - 0.0032798326574265957, - -0.013200230896472931, - -7.373724656645209e-05, - -0.003261293051764369, - -0.03152414783835411, - -0.015290155075490475, - -0.00829228013753891, - 0.03554219752550125, - -0.004570866469293833, - -0.0010988956782966852, - -0.007031583692878485, - 0.0017073332564905286, - -0.015371056273579597, - -0.02176217921078205, - -0.0031669093295931816, - -0.024350987747311592, - 0.017110412940382957, - 0.014251935295760632, - 0.001965202856808901, - -0.009633876383304596, - -0.009175441227853298, - 0.012182235717773438, - 0.011744026094675064, - -0.024404922500252724, - 0.0031635386403650045, - -0.005538299214094877, - 0.012748537585139275, - -0.03945237770676613, - -0.01774413138628006, - -0.04595136642456055, - -0.030256709083914757, - -0.007901262491941452, - -0.009087800048291683, - -0.020750924944877625, - -0.026777997612953186, - 0.032575853168964386, - -0.031173579394817352, - 0.038670338690280914, - 0.022759949788451195, - -0.011636159382760525, - -0.03516466170549393, - 0.038670338690280914, - -0.013982267118990421, - 0.0013121016090735793, - 0.006728207692503929, - 0.027964534237980843, - -0.02170824632048607, - -0.006970908492803574, - 0.010072086937725544, - -0.013247422873973846, - 0.003458487568423152, - -0.008393405936658382, - 0.013004722073674202, - -0.02920500561594963, - -0.015842974185943604, - -0.058517880737781525, - 0.022759949788451195, - 0.036378163844347, - 0.004486595280468464, - -0.004961884580552578, - -0.002657911740243435, - 0.012074369005858898, - 0.011939534917473793, - 0.020845308899879456, - 0.027384748682379723, - -0.010766481049358845, - 0.015033971518278122, - 0.010665355250239372, - -0.016975577920675278, - -0.011049631983041763, - -0.03009490855038166, - 0.0011039519449695945, - 0.012458644807338715, - 0.013914850540459156, - 0.020184623077511787, - -0.003286574501544237, - 0.005454028025269508, - 0.016732877120375633, - 0.0225981492549181, - -0.04147488251328468, - 0.006000105291604996, - -0.0035292753018438816, - 0.0006472023669630289, - -0.0008814760949462652, - 0.007355185225605965, - 0.008056321181356907, - -0.017096929252147675, - -0.018526166677474976, - 0.015060937963426113, - -0.02046777494251728, - -0.0105237802490592, - 0.0077596865594387054, - 0.018377849832177162, - 0.027182498946785927, - 0.05304362624883652, - -0.015101388096809387, - -0.04174455255270004, - 0.028369035571813583, - -0.030391544103622437, - -0.006107972003519535, - -0.005720324814319611, - 0.03325001895427704, - 0.001041591283865273, - 0.006478765048086643, - -0.004024789668619633, - 0.02603641152381897, - 0.019375620409846306, - 0.011541775427758694, - -0.030418509617447853, - -5.914780558669008e-05, - 0.012330553494393826, - 0.013132814317941666, - -0.00205115950666368, - 0.01925426907837391, - -0.04185241833329201, - 0.03513769432902336, - -0.013112589716911316, - 0.004779858980327845, - -0.013180006295442581, - 0.02112846076488495, - -0.02340715192258358, - -0.03419385850429535, - -0.011939534917473793, - 0.018108181655406952, - -0.010597938671708107, - -0.0025197069626301527, - -0.00034719708492048085, - 0.00953949335962534, - 0.03384329006075859, - -0.00615179305896163, - 0.0015539597952738404, - 0.005828191991895437, - 0.009532751515507698, - -0.021209361031651497, - 0.008568689227104187, - 0.011568741872906685, - 0.016598043963313103, - -0.001263224403373897, - 0.0029899401124566793, - 0.021964428946375847, - -0.02532179281115532, - -0.008777681738138199, - 0.015856457874178886, - 0.0009640618227422237, - 0.013274390250444412, - -0.011218174360692501, - 0.02634652890264988, - -0.0023494793567806482, - 0.013402481563389301, - -0.0026848784182220697, - 0.021411610767245293, - -0.0035023086238652468, - -0.015276672318577766, - 0.044522128999233246, - 0.030014008283615112, - -0.005828191991895437, - 0.010705805383622646, - -0.002373075345531106, - -0.014683403074741364, - -0.013510349206626415, - 0.01317326445132494, - 0.0008106883615255356, - -0.031092679128050804, - -0.0019129548454657197, - 0.03699840232729912, - -0.006943942047655582, - -0.010806931182742119, - 0.005828191991895437, - 2.7756806957768276e-05, - 0.0022854332346469164, - 0.01129907462745905, - -0.020144173875451088, - -0.022058812901377678, - -0.02211274765431881, - 0.02381165325641632, - 0.009950736537575722, - 0.02251724898815155, - -0.007125967647880316, - 0.0033573622349649668, - 0.009000157937407494, - 0.0020073384512215853, - 0.0027876892127096653, - -0.014831720851361752, - -0.023434119299054146, - -0.010382204316556454, - 0.014103617519140244, - -0.013254164718091488, - -0.007692269515246153, - -0.020656540989875793, - -0.02246331423521042, - -0.010793447494506836, - 0.025888094678521156, - 0.01216875296086073, - 0.0101664699614048, - 0.12318418174982071, - 0.02099362574517727, - -0.018741901963949203, - 0.025928543880581856, - 0.006654049269855022, - 0.0006939728045836091, - 0.002710159868001938, - -0.005036043468862772, - -0.004004564601927996, - -0.034085988998413086, - 0.015357572585344315, - -0.00444614514708519, - 0.005285485647618771, - -0.02176217921078205, - -0.020076755434274673, - 0.003856247290968895, - 0.004018047824501991, - 0.010881089605391026, - -0.03888607397675514, - -0.025335274636745453, - 0.01150132529437542, - -0.028369035571813583, - 0.009950736537575722, - 0.020400358363986015, - -0.013388998806476593, - -0.0028247686568647623, - 0.01824301667511463, - -0.02812633477151394, - -0.004240523558109999, - -0.004365244880318642, - -0.017528396099805832, - 0.0021168910898268223, - -0.05482343211770058, - -0.04414459317922592, - 0.05137168616056442, - -0.020723959431052208, - -0.008278796449303627, - 9.343562851427123e-05, - 0.012249653227627277, - 0.001081198686733842, - 0.001130076008848846, - 0.03311518579721451, - -0.003522533690556884, - -0.031901683658361435, - 0.002445548539981246, - 0.002799487207084894, - -0.004493337124586105, - -0.009627134539186954, - -0.008912515826523304 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 17, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 604 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000018.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000018.json deleted file mode 100644 index d449022443c6f7df25df34ec79e93c2d2d765b0e..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000018.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000018", - "content": "Diese Flurf\u00f6rderger\u00e4te erm\u00f6glichen eine schnelle und sichere Verladung der G\u00fcter. Die Gabel- hubwagen werden in der Regel f\u00fcr kleinere Lasten verwendet. Die Gabelstapler sind hingegen f\u00fcr den Transport f\u00fcr schweren G\u00fctern, k\u00f6nnen aber auch auf unebenen Ge- l\u00e4nden eingesetzt werden und haben zudem den Vorteil, dass Sie wendiger sind. Die Gabelhubwagen, die das Unternehmen einsetzt, stammen von der Firma Crown und geh\u00f6ren zur Serie WT 3040. Sie sind mit einem Bedienerstand und einem Heckeinstieg ausgestattet, was eine komfortable Bedienung erm\u00f6glicht. In Tabelle 6 sind weitere De- tails aufgef\u00fchrt, um eine detaillierte \u00dcbersicht \u00fcber deren technische Spezifikationen zu geben. [77]\n\n## Hersteller + Typzeichen\n\n\n## Crown Equipment Corporation WT 3040-2.0 (el.) ## Eigengewicht ohne Batterie\n\n724 bis 801 kg\n\n## Gesamtl\u00e4nge (ohne Gabel)/ Gabell\u00e4nge\n\n4200 mm/ 4220 mm\n\n## Fahrgeschwindigkeit mit/ ohne Last\n\n10,0 / 12,5 km/h\n\n[IMAGE: ETRZEIF]\n\n\n[IMAGE: ]\n\nTabelle 6: Gabelhubwagen [77]\nDie Gabelstapler sind in der Regel die bevorzugten Flurf\u00f6rderger\u00e4te f\u00fcr die Verladung, da sie aufgrund ihrer h\u00f6heren Tragkraft und Hubh\u00f6he eine effizientere Arbeitsweise er- m\u00f6glichen. Die Gabelstapler stammen ebenfalls von der Firma Crown und geh\u00f6ren zur Serie SCF 6200. Um eine genaue und pr\u00e4zise Fortbewegung zu erm\u00f6glichen, sind die Gabelstapler mit einem Elektroantrieb ausgestattet. Ein weiterer wichtiger Vorteil ist\n36\n4 Beschreibung des Betriebs und Untersuchungsobjekte\nihre Wendigkeit, die es den Gabelstaplern erm\u00f6glicht, auch in engen Bereichen zu ar- beiten. Weitere Details zu den technischen Spezifikationen sind in Tabelle 7 aufgef\u00fchrt. ## Hersteller + Typzeichen\n\n\n## Crown Equipment Corporation SCF 6200 (el.) ## Eigengewicht ohne Batterie\n\n2570 bis 2767 kg\n\n## Gesamtl\u00e4nge (ohne Gabel) / Gabell\u00e4nge\n\n2413 bis 3663 mm/ 4150 mm\n\n## Fahrgeschwindigkeit mit/ ohne Last\n\n16,0 / 16,0 km/h\n\n[IMAGE: ]\n\n\n[IMAGE: ]\n\nTabelle 7: Elektro-Gegengewichtsstapler [78]\n37\n5 Beschreibung der Untersuchungsmethodik\n\n## 5 Beschreibung der Untersuchungsmethodik\n\nUm das Ziel der Thesis zu erreichen ist eine bestimmende Komponente die Methodik, die in diesem Kapitel beschrieben wird. Die beschriebene Methodik beschreibt die Vor- gehensweise, die bei der Durchf\u00fchrung der Untersuchung angewendet wird, um die er- halten Daten auszuwerten. Dar\u00fcber hinaus werden die Vor- und Nachteile der gew\u00e4hl- ten Methodik diskutiert und Alternativen vorgestellt. Ziel dieses Abschnitts ist es, ein vollst\u00e4ndiges Verst\u00e4ndnis der Methodik zu vermitteln und die Grundlage f\u00fcr die Inter- pretation der Ergebnisse zu schaffen. ## 5.1 Prozessablauf der untersuchten Verladet\u00e4tigkeit\n\nDer Beladevorgang eines Anh\u00e4ngers kann je nach Art und Umfang der zu transportie- renden G\u00fcter sehr unterschiedlich sein. Die allgemeine Beschreibung ist in Kapitel 2.1 dargestellt. Das Ziel dieser Thesis besteht darin, detailliert die Verladet\u00e4tigkeiten in Spe- ditionen mit verschiedenen Flurf\u00f6rderger\u00e4ten und anderen Parametern unter die Lupe zu nehmen und Emissionsans\u00e4tze auszuarbeiten, die als Prognosegrundlage f\u00fcr weiter- f\u00fchrende Schallimmissionsprognosen zur Verf\u00fcgung steht. In der Praxis ist es schwierig alle Aspekte von Verladet\u00e4tigkeiten in Speditionen aufzunehmen, da dies je nach Unter- nehmen unterschiedlich ist. Die Untersuchungen fanden, wie in Kapitel 4.1 beschrieben, im Exportbereich des Unternehmens statt. Hier wurden speziell nur die Beladungen von Anh\u00e4ngern untersucht. Die Gr\u00fcnde f\u00fcr die Wahl der Messpositionen und des Aufbaus sind in 5.3 begr\u00fcndet. Die Verladet\u00e4tigkeiten bestehen in dieser Thesis somit aus der Beladung eines Anh\u00e4- ngers.", - "embedding": [ - 0.009077651426196098, - 0.0029701380990445614, - 0.013579685240983963, - -0.031922295689582825, - -0.005030503962188959, - 0.010214867070317268, - -0.010241624899208546, - -0.00900406762957573, - 0.0009248233982361853, - -0.024189231917262077, - 0.0024299609940499067, - 0.03826393932104111, - -0.04131435230374336, - 0.010074387304484844, - 0.013292036950588226, - 0.025433478876948357, - 0.030397089198231697, - 0.0161083173006773, - -0.01062292605638504, - -0.01162635162472725, - -0.03529380261898041, - 0.001975074876099825, - 0.0022777747362852097, - -0.0128170819953084, - -0.02382799983024597, - 0.04091298207640648, - 0.027119234204292297, - -0.015265439637005329, - -0.004037113394588232, - -0.0038330836687237024, - -0.0108838165178895, - -0.011927378363907337, - -0.004876645747572184, - 0.0018078373977914453, - -0.0161083173006773, - -0.03762174770236015, - 0.004512067884206772, - -0.028818367049098015, - 0.020563524216413498, - -0.002545354887843132, - 0.026637589558959007, - 0.027748046442866325, - -0.00496695376932621, - -0.015840737149119377, - -0.0038230493664741516, - -0.0008621093584224582, - -0.01107112318277359, - -0.0013955970061942935, - 0.00374612002633512, - 0.035026222467422485, - -0.002152346773073077, - 0.01557315606623888, - -0.016603339463472366, - 0.01219495851546526, - 0.004602375905960798, - -0.000982520286925137, - -0.00931178405880928, - 0.0057830726727843285, - 0.00542518449947238, - -0.0205902811139822, - -0.025339826941490173, - 0.022222518920898438, - -0.029032431542873383, - 0.004538825713098049, - -0.02900567278265953, - -0.01786096580326557, - 0.007927057333290577, - -0.018784116953611374, - -0.005692764651030302, - 0.003135703271254897, - 0.013874023221433163, - 0.0292464941740036, - 0.015653429552912712, - 0.0029233116656541824, - 0.038130149245262146, - -0.026477040722966194, - 0.004104008432477713, - 0.0032059429213404655, - -0.026396768167614937, - 0.0074052768759429455, - 0.007472171448171139, - -0.034437548369169235, - -0.023506904020905495, - 0.045756179839372635, - 0.014007813297212124, - -0.0011321979109197855, - -0.011439044959843159, - -0.0031724954023957253, - -0.015118270181119442, - 0.0001135124548454769, - 0.0052980841137468815, - 0.029540833085775375, - -0.00395014975219965, - 0.014101466163992882, - 0.027145991101861, - -0.007184523157775402, - -0.006793187465518713, - 0.02496521547436714, - -0.0067898426204919815, - -0.038130149245262146, - -0.017646901309490204, - 0.01597452722489834, - -0.015131649561226368, - 0.006201166659593582, - -0.02244996279478073, - -7.698151603108272e-05, - 0.0008378598722629249, - 0.006274750921875238, - -0.011097881011664867, - -0.03631060570478439, - -0.017098361626267433, - 0.016054799780249596, - -0.015854114666581154, - 0.0025169244036078453, - -0.0052980841137468815, - -0.020951515063643456, - 0.03435727208852768, - -0.009559296071529388, - 0.02483142539858818, - -0.018877768889069557, - 0.009338541887700558, - 0.023118913173675537, - 0.037300653755664825, - -0.010248314589262009, - 0.01814192533493042, - 0.006512228399515152, - 0.007251418195664883, - 0.01586749404668808, - 0.012603018432855606, - -0.028229691088199615, - -0.01676388829946518, - 0.004374932963401079, - -0.0027159370947629213, - -0.009097720496356487, - -0.0036323985550552607, - 0.021673981100320816, - 0.012201648205518723, - 0.005348255392163992, - -0.025272931903600693, - -0.03398266062140465, - 0.007518998347222805, - 0.0010360362939536572, - -0.024925077334046364, - -0.02659745328128338, - -0.010047629475593567, - 0.014047950506210327, - 0.010750026442110538, - 0.021714117377996445, - -0.010208177380263805, - -0.00027656901511363685, - -0.006930322386324406, - -0.007873541675508022, - 0.035614900290966034, - -0.022369688376784325, - -0.0005150915239937603, - -0.006876806262880564, - -0.006997216958552599, - 0.013700095936655998, - -0.026463663205504417, - -0.017646901309490204, - 0.021165577694773674, - -0.005649283062666655, - 0.01628224365413189, - -0.022476719692349434, - 0.006157685071229935, - 0.016322379931807518, - -0.02572781778872013, - -0.004170903470367193, - 0.00796719454228878, - -0.013084662146866322, - 0.00960612203925848, - -0.016188589856028557, - -0.012910734862089157, - 0.01903831772506237, - -0.013820507563650608, - -0.005435219034552574, - 0.0155062610283494, - -0.009947286918759346, - -0.030022475868463516, - -0.032778549939394, - 0.007258107885718346, - 0.011251739226281643, - 0.009913839399814606, - -0.006615915801376104, - -0.026062292978167534, - -0.03590923547744751, - 0.010823611170053482, - 0.02273092232644558, - -0.004428449086844921, - -0.010596168227493763, - 0.003913357388228178, - 0.017285669222474098, - 0.007144385948777199, - 0.006642673630267382, - -0.627635657787323, - -0.0009231510339304805, - -0.010134592652320862, - -0.01597452722489834, - -0.003212632378563285, - 0.03090549074113369, - 0.002980172401294112, - 0.017299046739935875, - -0.015252060256898403, - 0.037273894995450974, - -0.0071176281198859215, - 0.018155302852392197, - -0.0051810177974402905, - 0.010067697614431381, - -0.016028042882680893, - -0.02465749718248844, - -0.01474365871399641, - -0.015238681808114052, - 0.039815906435251236, - 0.003608985338360071, - -0.0286310613155365, - 0.03604302555322647, - -0.012529433704912663, - -0.00496695376932621, - 0.020670555531978607, - 0.012208337895572186, - 0.02314567007124424, - 0.0021891389042139053, - 0.013064594008028507, - -0.00340161076746881, - -0.025206036865711212, - 0.024363160133361816, - -0.024537086486816406, - 0.009539227001369, - 0.0364176370203495, - 0.026811515912413597, - -0.011887242086231709, - 0.027881836518645287, - 0.018583431839942932, - 0.027988867834210396, - -0.00624464824795723, - -0.02155357040464878, - -0.004866611212491989, - -0.016429413110017776, - 0.009679706767201424, - -0.003108945209532976, - 0.036337364464998245, - 0.008007331751286983, - 0.0005757150938734412, - -0.027199506759643555, - 0.019854435697197914, - 0.010750026442110538, - 0.013044524937868118, - -0.000763439224101603, - 0.021018410101532936, - 0.009846944361925125, - 0.032510969787836075, - -0.023480145260691643, - -0.011633040383458138, - 0.008402012288570404, - 0.015680188313126564, - 0.018101787194609642, - -0.028818367049098015, - -0.02459060214459896, - -0.02769453078508377, - 0.023680830374360085, - -0.04155517369508743, - -0.019707268103957176, - 0.020496629178524017, - 0.008696350269019604, - -0.013673338107764721, - 0.011579524725675583, - -0.012208337895572186, - 0.002985189436003566, - 0.020295944064855576, - 0.03435727208852768, - -0.010964090935885906, - -0.012288611382246017, - 0.025754576548933983, - 0.029674623161554337, - 0.00240153050981462, - 0.01901155896484852, - 0.003209287766367197, - -0.002856416627764702, - 0.028577543795108795, - -0.0008604369359090924, - -0.017847586423158646, - -0.004027079325169325, - -0.008482285775244236, - -0.010529273189604282, - 0.021366262808442116, - 0.018583431839942932, - -0.01986781507730484, - -0.009920529089868069, - -0.0028346756007522345, - 0.03601627051830292, - 0.004910093266516924, - 0.0008111018687486649, - -0.004378277808427811, - -0.036471154540777206, - -0.007284865714609623, - -0.013874023221433163, - 0.01634913869202137, - 0.002545354887843132, - 0.03625709190964699, - 0.02994220331311226, - -0.023306218907237053, - -0.0034785401076078415, - 0.01842288300395012, - -0.03435727208852768, - 0.01362651214003563, - -0.0007784905610606074, - 0.009164615534245968, - 0.004388311877846718, - -0.0241758543998003, - -0.022583752870559692, - 0.026998823508620262, - 0.005676040891557932, - -0.004542170558124781, - -0.02618270367383957, - 0.006990527734160423, - 0.005629214458167553, - 0.018222197890281677, - -0.0037528094835579395, - -0.0173124261200428, - 0.036203574389219284, - 0.012154822237789631, - -0.019185487180948257, - -0.003501953324303031, - -0.003137375460937619, - 0.024028684943914413, - -0.0022510169073939323, - 0.024550465866923332, - -0.003281199838966131, - 0.023266080766916275, - 0.025366583839058876, - 0.028684576973319054, - 0.0074052768759429455, - 0.01897142268717289, - -0.01814192533493042, - -0.017125120386481285, - -0.006870116572827101, - 0.026784759014844894, - -0.025379963219165802, - -0.004395001567900181, - -0.04382960498332977, - -0.015412608161568642, - 0.0016397637082263827, - 0.0013320466969162226, - -0.014529594220221043, - -0.016643475741147995, - -0.018543293699622154, - -0.01700470969080925, - 0.02224927768111229, - 0.007030664477497339, - 0.01143235620111227, - -0.040859468281269073, - -0.014208498410880566, - 0.006308198440819979, - -0.030932249501347542, - 0.0018513192189857364, - 0.018088407814502716, - -0.043615542352199554, - -0.0031156346667557955, - -0.0214866753667593, - -0.0003284126578364521, - 0.026610830798745155, - 0.016496308147907257, - -0.021272610872983932, - -0.045033715665340424, - -0.006358369719237089, - -0.026985444128513336, - 0.0036591566167771816, - 0.01455635204911232, - -0.019573478028178215, - -0.002627301262691617, - -0.015425987541675568, - 0.015787219628691673, - 0.004003665875643492, - -0.011124638840556145, - -0.002856416627764702, - 0.006662742234766483, - -0.020576901733875275, - -0.012536123394966125, - 0.00642526475712657, - 0.009418816305696964, - 0.0028413652908056974, - 0.01497110165655613, - -0.052338648587465286, - 0.01707160472869873, - -0.005348255392163992, - 0.014596489258110523, - -0.00498367752879858, - 0.014476078562438488, - -0.031199829652905464, - 0.00903751514852047, - 0.014007813297212124, - 0.011091191321611404, - -0.017459595575928688, - 0.014128223992884159, - 0.022985123097896576, - -0.00986701250076294, - 0.00855587050318718, - 0.008970620110630989, - 0.015546398237347603, - -0.008756555616855621, - 0.00960612203925848, - -0.004301348701119423, - 0.065557099878788, - 0.0025637508369982243, - 0.004716097842901945, - 0.01019479800015688, - -0.02286471240222454, - 0.009753291495144367, - 0.015559777617454529, - 0.049716364592313766, - -0.02014877460896969, - 0.012629776261746883, - 0.01862356811761856, - -0.00798726361244917, - 0.010141282342374325, - 0.010529273189604282, - 0.02424274943768978, - 0.006756395101547241, - -0.0036323985550552607, - -0.00272931600920856, - -0.000745043100323528, - 0.004304693546146154, - -0.01796799711883068, - -0.018851011991500854, - -0.014904206618666649, - 0.012255163863301277, - 0.00965963862836361, - 0.012067858129739761, - 0.020322700962424278, - 0.008268222212791443, - 0.0048532322980463505, - -0.009418816305696964, - 0.06191801279783249, - -0.0014691815013065934, - 0.02424274943768978, - 0.010602857917547226, - 0.025955259799957275, - -0.02814941667020321, - 0.0026624209713190794, - -0.006043963599950075, - 0.013318794779479504, - 0.009826875291764736, - -0.005495424382388592, - -0.0009114444255828857, - 0.0011196550913155079, - 0.004833163693547249, - 0.005575698334723711, - -0.007612651214003563, - 0.014181740581989288, - -0.017847586423158646, - 0.030959006398916245, - -0.006829979829490185, - 0.0241758543998003, - 0.0066259498707950115, - 0.0018128545489162207, - 0.029835170134902, - 0.01700470969080925, - -0.01814192533493042, - -0.005866691470146179, - -0.0012517727445811033, - -0.01331210508942604, - -0.025861607864499092, - -0.01297094114124775, - -0.01624210551381111, - -0.009238199330866337, - -0.014061328954994678, - 0.00798726361244917, - 0.013258589431643486, - 0.024443432688713074, - -0.0031674783676862717, - 0.003445092588663101, - 0.01396767608821392, - 0.006321577820926905, - 0.02697206474840641, - 0.005107433535158634, - -0.03355453163385391, - -0.0015176803572103381, - 0.025272931903600693, - -0.016469549387693405, - -0.009780049324035645, - -0.031788505613803864, - 0.03414320945739746, - -0.027052339166402817, - 0.016911055892705917, - -0.018396126106381416, - 0.011566145345568657, - -0.018155302852392197, - 0.012395643629133701, - 0.0077263726852834225, - 0.011131328530609608, - 0.03970887139439583, - 0.010362035594880581, - 0.018570052459836006, - -0.008636144921183586, - -0.002690851455554366, - -0.032751791179180145, - -0.02242320403456688, - -0.019426308572292328, - 0.028684576973319054, - -0.010168040171265602, - -0.01562667265534401, - -0.0010795181151479483, - 0.022128866985440254, - -0.024951836094260216, - -0.02465749718248844, - -0.0008031580946408212, - 0.0012684965040534735, - -0.008662902750074863, - -0.017392700538039207, - -0.0006116711883805692, - 0.0012057824060320854, - 0.011499251239001751, - 0.046237826347351074, - 0.0008963930304162204, - -0.026811515912413597, - -0.004334796220064163, - -0.004137455951422453, - 0.017018089070916176, - 0.019653750583529472, - 0.030878731980919838, - -0.002710919827222824, - 0.01593438908457756, - -0.002473442582413554, - -0.026477040722966194, - 0.014502836391329765, - -0.023547040298581123, - 0.011974205262959003, - 0.024884941056370735, - 0.02227603644132614, - -0.01110457070171833, - 0.029433799907565117, - -0.029032431542873383, - 0.00445855176076293, - -0.0020118672400712967, - -0.017847586423158646, - -0.01136546116322279, - 0.03029005602002144, - -0.00975998118519783, - -0.009111098945140839, - -0.013205073773860931, - -0.008729797787964344, - 0.03350101783871651, - -0.00032235030084848404, - 0.004043802618980408, - 0.02048324979841709, - 0.024670876562595367, - -0.010321898385882378, - -0.016161832958459854, - -0.00458899699151516, - 0.0058533125557005405, - 0.014168361201882362, - 0.018717221915721893, - -0.0038330836687237024, - -0.017165256664156914, - -0.0011840414954349399, - 0.003996976185590029, - 0.019412929192185402, - 0.006903564091771841, - 0.02424274943768978, - 0.013051214627921581, - 0.010188108310103416, - -0.019881194457411766, - 0.022811194881796837, - 0.003726051654666662, - 0.019359413534402847, - 0.0073450710624456406, - -0.014181740581989288, - -0.028256447985768318, - 0.032992616295814514, - -0.02679813839495182, - -0.001944972202181816, - -0.0007759820437058806, - 0.020991651341319084, - -0.01593438908457756, - -0.01167317759245634, - -0.010308519937098026, - -0.018061650916934013, - -0.01070989016443491, - -0.00024353961634915322, - -0.020309321582317352, - 0.003856496885418892, - -0.002455046633258462, - -0.009846944361925125, - -0.004388311877846718, - -0.04484640806913376, - -0.00205702125094831, - -0.006595847196877003, - -0.01012121420353651, - -0.012696671299636364, - -0.013225141912698746, - -0.008990688249468803, - -0.005301428958773613, - 0.029781654477119446, - -0.004538825713098049, - 0.01986781507730484, - -0.014395804144442081, - 0.0003520349564496428, - 0.015773842111229897, - -0.01770041696727276, - -0.008074226789176464, - -0.021928181871771812, - -0.03197580948472023, - -0.005669351201504469, - -0.001227523316629231, - -0.016924435272812843, - 0.0012124718632549047, - -0.0028681231196969748, - 0.02780156210064888, - 5.853312541148625e-05, - 0.012221716344356537, - -4.706167965196073e-05, - 0.0037762229330837727, - 0.01131194457411766, - 0.01343251671642065, - 0.018703842535614967, - 0.004264556337147951, - 0.01229530107229948, - -0.02307877503335476, - 0.004190972074866295, - -0.015921009704470634, - -0.0021857942920178175, - -0.0068433587439358234, - 0.026637589558959007, - -0.0073450710624456406, - 0.0036257090978324413, - -0.016884298995137215, - -0.0006877642590552568, - 0.010549341328442097, - -0.007579203695058823, - -0.020055120810866356, - -0.009291715919971466, - 0.012409023009240627, - -0.023814620450139046, - 0.0211789570748806, - -0.005709488410502672, - 0.020844481885433197, - 0.0235871784389019, - 0.00034910827525891364, - -0.007318313233554363, - -0.02725302428007126, - 0.0399496965110302, - 0.0020637107081711292, - -0.019399549812078476, - 0.05121481418609619, - -0.014516215771436691, - -0.012629776261746883, - -0.01724553108215332, - 0.0032427352853119373, - 0.00993390753865242, - 0.017365941777825356, - -0.003092221450060606, - 0.0003758662787731737, - -0.018636947497725487, - -0.0038631863426417112, - -0.0014532939530909061, - 0.024818046018481255, - -0.013753612525761127, - -0.018369367346167564, - -0.028309965506196022, - 0.013532859273254871, - -0.00870972964912653, - 0.012268543243408203, - -0.01234881766140461, - -0.022396447136998177, - 0.0006702042883262038, - 0.03152092546224594, - -0.016536444425582886, - 0.024122336879372597, - -0.013285347260534763, - -0.008876966312527657, - -0.017258910462260246, - -0.02010863833129406, - 0.003018636954948306, - -0.011392218992114067, - 0.01121160201728344, - -0.022757679224014282, - 0.04053837060928345, - 0.017580006271600723, - 0.023613935336470604, - 0.00033614737913012505, - 0.019613614305853844, - 0.007518998347222805, - -0.02489832043647766, - -0.0102951405569911, - -0.02459060214459896, - -0.012783634476363659, - -0.026677725836634636, - 0.01903831772506237, - 0.019265759736299515, - 0.015305575914680958, - -0.001827905885875225, - 0.03309964761137962, - 0.006411885842680931, - 0.025500373914837837, - -0.026236219331622124, - -0.017941240221261978, - -0.006371749099344015, - -0.0316547155380249, - -0.010101145133376122, - 0.0026256288401782513, - 0.01444932073354721, - -0.0014532939530909061, - -0.054960932582616806, - 0.007325002457946539, - 0.0008144466555677354, - -0.01402119267731905, - -0.015880873426795006, - 0.004997056443244219, - -0.003829738823696971, - -0.02511238306760788, - 0.030263299122452736, - 0.02331959828734398, - -0.01019479800015688, - 0.012375575490295887, - -0.015680188313126564, - -0.01514502801001072, - -0.02600877732038498, - 0.015519640408456326, - -0.0070708016864955425, - -0.004849887453019619, - -0.01901155896484852, - -0.029166221618652344, - -0.00514757027849555, - -0.022784437984228134, - 0.014904206618666649, - -0.013753612525761127, - -0.0029350181575864553, - -0.017432836815714836, - -0.029674623161554337, - -0.03529380261898041, - -0.011425666511058807, - -0.017820827662944794, - 0.013740233145654202, - 0.0024700979702174664, - 0.0004791354585904628, - 0.02959434874355793, - -0.005552285350859165, - -0.0089505510404706, - 0.008823450654745102, - -0.015720324590802193, - 0.023266080766916275, - 0.019332654774188995, - 0.045649148523807526, - 0.01786096580326557, - -0.01527881808578968, - -0.017018089070916176, - -0.0584929883480072, - 0.007264797110110521, - 0.0012576259905472398, - -0.005866691470146179, - 0.012549501843750477, - -0.0034618163481354713, - -0.006388472858816385, - 0.0008955568191595376, - -0.010221555829048157, - 0.013981055468320847, - -0.019078454002738, - 0.054131437093019485, - 0.010495825670659542, - 0.0016422723419964314, - -0.011124638840556145, - 0.002557061379775405, - 0.0061409613117575645, - 0.008937172591686249, - 0.002946724882349372, - 0.011612972244620323, - -0.01005431916564703, - -0.0135729955509305, - -0.008636144921183586, - 0.040618643164634705, - 0.00858931802213192, - 0.02946055866777897, - 0.008923793211579323, - -0.03235042095184326, - -0.010816921480000019, - -0.031922295689582825, - -0.03459809347987175, - 0.01835598796606064, - -0.02014877460896969, - 0.019988225772976875, - 0.004167558625340462, - -0.00939874816685915, - 0.02014877460896969, - -0.006117547862231731, - -0.0351867713034153, - -0.021058546379208565, - 0.020777586847543716, - 0.012783634476363659, - -0.008963930420577526, - 0.003903323318809271, - 0.01838274672627449, - 0.006562399677932262, - 0.01307128369808197, - -0.012890666723251343, - 0.008174569346010685, - -0.00832842756062746, - 0.0005569008644670248, - -0.02548699639737606, - -0.007432034704834223, - 0.010763405822217464, - -0.028256447985768318, - -0.01658996008336544, - -0.00015845753659959882, - -0.025152521207928658, - 0.010127902962267399, - -0.02410895936191082, - 0.0310125220566988, - -0.04455207288265228, - -0.028497271239757538, - -0.003028671257197857, - 0.01110457070171833, - 0.02562078647315502, - -0.023052018135786057, - -0.01737932115793228, - -0.0025938537437468767, - 0.043133895844221115, - -0.023680830374360085, - 0.029861928895115852, - 0.029514074325561523, - 0.0070641119964420795, - -0.002229275880381465, - 0.0076728565618395805, - 0.01329872664064169, - -0.016469549387693405, - 0.018302472308278084, - -0.004659236874431372, - -0.022195762023329735, - -0.009552606381475925, - 0.0023062052205204964, - 0.010201487690210342, - -0.010783473961055279, - -0.01779407076537609, - -0.0030587739311158657, - 0.017780691385269165, - 0.01165979914367199, - -0.0199748482555151, - -0.0029149497859179974, - 0.0018312506144866347, - 0.02635663002729416, - 0.008468907326459885, - 0.023399870842695236, - -0.0316547155380249, - 0.01634913869202137, - 0.024777907878160477, - -0.0184897780418396, - -0.004341485444456339, - -0.04880659282207489, - -0.033688321709632874, - -0.00010870437836274505, - 0.01055603101849556, - -0.013559617102146149, - -0.0044150701723992825, - -0.007050733081996441, - -0.03213635832071304, - -0.021259231492877007, - 0.0043214173056185246, - -0.007304934319108725, - 0.005234533920884132, - 0.022476719692349434, - -0.01129856612533331, - 0.011285186745226383, - 0.0256341639906168, - -0.014435941353440285, - -0.01383388601243496, - 0.02683827467262745, - 0.01665685512125492, - -0.032644759863615036, - 0.01835598796606064, - -0.018543293699622154, - 0.024844802916049957, - -0.01005431916564703, - -0.04995718598365784, - 0.0008963930304162204, - 0.001863025827333331, - -0.03342074155807495, - -0.0108838165178895, - 0.01363989058881998, - 0.027480466291308403, - -0.0009540899773128331, - 0.006863427348434925, - -0.016322379931807518, - 0.022944984957575798, - 0.008248154073953629, - 0.020683934912085533, - -0.013566305860877037, - 0.014917585067451, - -0.006779808551073074, - -0.009813496842980385, - -0.010335277765989304, - -0.02155357040464878, - -0.049207963049411774, - 0.0017258910229429603, - 0.01533233467489481, - 0.003973563201725483, - 0.006150995381176472, - 0.005719522479921579, - 0.01949320361018181, - 0.001817871700040996, - -0.00939874816685915, - 0.00544190825894475, - 0.008308359421789646, - -0.0036691909190267324, - 0.027855077758431435, - -0.02756074070930481, - -0.014208498410880566, - 0.006411885842680931, - 0.025995397940278053, - -0.033367227762937546, - -0.011974205262959003, - 0.015091512352228165, - -0.0019031628035008907, - 0.00017298629973083735, - 0.0286310613155365, - -0.024644117802381516, - -0.007104249205440283, - 0.010489135980606079, - 0.03446430340409279, - 0.012730118818581104, - -0.016616718843579292, - 0.003953494597226381, - 0.022637268528342247, - -0.018703842535614967, - -0.013185004703700542, - 0.011960825882852077, - -0.017513111233711243, - 0.0033982661552727222, - 0.011552766896784306, - -0.030637910589575768, - 0.010703200474381447, - -0.012308680452406406, - 0.03665846213698387, - 0.007110938895493746, - -0.0001287728809984401, - -0.012857219204306602, - -0.02441667579114437, - -0.012308680452406406, - 0.03649791330099106, - -0.00900406762957573, - -0.013238520361483097, - -0.008830140344798565, - 0.02314567007124424, - -0.017780691385269165, - -0.006512228399515152, - -0.013700095936655998, - 0.006823290139436722, - -0.016496308147907257, - -0.010341967456042767, - -0.01205447968095541, - -0.01557315606623888, - -0.0028965536039322615, - -0.00010661390842869878, - 0.00855587050318718, - -0.010616236366331577, - -0.014636626467108727, - 0.16975276172161102, - -0.045274537056684494, - 0.006722947582602501, - 0.0071176281198859215, - -0.01133201364427805, - -0.034919191151857376, - 0.038745585829019547, - -0.002108864951878786, - 0.018543293699622154, - 0.0083618750795722, - 0.011893930844962597, - 0.0026691106613725424, - -0.014944342896342278, - 0.008582628332078457, - 0.0036725355312228203, - 0.0023128946777433157, - -0.04088622331619263, - -0.028095901012420654, - -0.011097881011664867, - 0.024951836094260216, - 0.026022154837846756, - -0.015345713123679161, - -0.0014206826454028487, - -0.018917907029390335, - 0.031199829652905464, - 0.0007630211184732616, - -0.01776731200516224, - 0.010823611170053482, - 0.02662421017885208, - 0.013392379507422447, - -0.028336722403764725, - 0.011265118606388569, - 0.0009908821666613221, - -0.005020469892770052, - -0.012475918047130108, - 0.0076059615239501, - 0.0027845045551657677, - 0.007525687571614981, - 0.015720324590802193, - 0.030584394931793213, - 0.002627301262691617, - -0.029300009831786156, - -0.019586855545639992, - -0.020122015848755836, - -0.012074547819793224, - 0.013024456799030304, - -0.010582788847386837, - 0.008863587863743305, - -0.0030972384847700596, - -0.02093813568353653, - -0.009231510572135448, - 0.00493350625038147, - 0.005936931353062391, - 0.03890613466501236, - -0.013412447646260262, - -0.008080916479229927, - 0.006375093478709459, - 0.003428368829190731, - 0.018543293699622154, - -0.0014440958620980382, - -0.026891790330410004, - 0.015907632187008858, - -0.009746601805090904, - 0.014797174371778965, - -0.011318634264171124, - 0.016991330310702324, - -0.027614256367087364, - -0.011352081783115864, - 0.02135288529098034, - -0.02570105902850628, - -0.0241758543998003, - -0.00296679325401783, - -0.019091833382844925, - 0.013927538879215717, - -0.0274537093937397, - -0.027480466291308403, - -0.01127849705517292, - -0.00724472850561142, - 0.01431553065776825, - 0.022048592567443848, - 0.015720324590802193, - -0.0013470981502905488, - -0.013379000127315521, - -0.011010916903614998, - 0.016054799780249596, - -0.014074708335101604, - -0.0017961307894438505, - 0.0179011020809412, - 0.012877288274466991, - -0.046960290521383286, - -0.00691694300621748, - 0.009552606381475925, - -0.003239390440285206, - -0.006676121149212122, - -0.00793374702334404, - -0.0135729955509305, - -0.0009106082143262029, - 0.004331451375037432, - 0.00032757644657976925, - -0.005338221322745085, - -0.0253532063215971, - 0.05678047612309456, - 0.04029754921793938, - -0.021781012415885925, - -0.017472974956035614, - 0.02010863833129406, - 0.01271005067974329, - 0.0322166346013546, - 0.005308118183165789, - -0.01945306733250618, - -0.01097078062593937, - -0.020978271961212158, - 0.008937172591686249, - -0.017098361626267433, - 0.02100503072142601, - -0.0009432195220142603, - -0.008923793211579323, - 0.007706304080784321, - -0.004435138776898384, - -0.0003365654847584665, - 0.0021607086528092623, - -0.013285347260534763, - -0.0017258910229429603, - -0.0038799101021140814, - 0.00393342599272728, - -0.02014877460896969, - -0.02283795364201069, - 0.03020978346467018, - -0.002555388957262039, - 0.002617266960442066, - 0.027507225051522255, - -0.016028042882680893, - 0.02693192847073078, - -0.012930803932249546, - 0.009485711343586445, - -0.007318313233554363, - -0.018851011991500854, - -0.03438403084874153, - -0.026062292978167534, - 0.0013872351264581084, - 0.016951194033026695, - 0.013358931988477707, - 0.004224419128149748, - 0.0034785401076078415, - 0.005033848807215691, - -0.008442149497568607, - 0.013914160430431366, - -0.003940115682780743, - 0.00046910118544474244, - -0.04495343938469887, - -0.0014842328382655978, - -0.009057583287358284, - 0.014288771897554398, - -0.02555389143526554, - 0.018329231068491936, - -0.0029701380990445614, - -0.01527881808578968, - -0.011251739226281643, - 0.041929785162210464, - -0.009980734437704086, - -0.036685217171907425, - -0.03045060485601425, - 0.0036257090978324413, - -0.0006530624814331532, - -0.007712993770837784, - -0.001382217975333333, - -0.16921760141849518, - 0.011131328530609608, - -0.0025035454891622066, - -0.02194156125187874, - 0.025326447561383247, - -0.0012609708355739713, - 0.013552927412092686, - 0.011271807365119457, - -0.018436262384057045, - 0.00855587050318718, - 0.01831585168838501, - -0.0038163599092513323, - -0.02935352735221386, - -0.029835170134902, - -0.008495665155351162, - -0.017018089070916176, - -0.03679225221276283, - 0.014114845544099808, - 0.008890345692634583, - 0.012977629899978638, - 0.022717542946338654, - -0.021098682656884193, - 0.023092154413461685, - 0.009224820882081985, - 0.010134592652320862, - 0.014770416542887688, - -0.011806967668235302, - 0.032163117080926895, - -0.012937493622303009, - -0.007224660366773605, - -0.01313817873597145, - -0.0031173070892691612, - 0.010422240942716599, - -0.02303863875567913, - -0.025687681511044502, - -0.008187947794795036, - -0.020550144836306572, - -0.001356296124868095, - -0.0073517607524991035, - 0.037889327853918076, - 0.0077263726852834225, - 0.024496950209140778, - -0.004535481333732605, - 0.004217729903757572, - 0.01165979914367199, - 0.026410147547721863, - 0.013439205475151539, - -0.007779888808727264, - 0.0092448890209198, - -0.039441291242837906, - 0.01862356811761856, - -0.013807128183543682, - 0.005956999957561493, - 0.03516001254320145, - 0.007826714776456356, - -0.007137696724385023, - 0.010890506207942963, - 0.019573478028178215, - -0.015091512352228165, - 0.004284624941647053, - -0.0036524671595543623, - -0.02141978032886982, - -0.000945728097576648, - -0.025433478876948357, - -0.020991651341319084, - -0.021219095215201378, - -0.021446537226438522, - 0.024951836094260216, - -0.011786899529397488, - -0.007699614856392145, - -0.0028146072290837765, - 0.0028480547480285168, - -0.0006538986344821751, - -0.015024617314338684, - 0.02028256468474865, - 0.02190142311155796, - -0.007003906648606062, - -0.007331692148000002, - 0.020188910886645317, - 0.0005188543582335114, - -0.016469549387693405, - 0.046933531761169434, - -0.013305415399372578, - -0.02279781736433506, - -0.004388311877846718, - -0.020510006695985794, - -0.013887402601540089, - 0.027533981949090958, - -0.009592743590474129, - 0.0102951405569911, - 0.01835598796606064, - -0.019988225772976875, - -0.01438242569565773, - -0.031066039577126503, - 0.017472974956035614, - 0.0003004003665409982, - 0.0007312459638342261, - -0.01766028068959713, - 0.0012300318339839578, - -0.011546077206730843, - 0.004471930675208569, - -0.011679867282509804, - -0.03532056137919426, - 0.018944663926959038, - 0.028443755581974983, - 0.023787861689925194, - 0.0029818445909768343, - 0.02087124064564705, - 0.05929572880268097, - -0.00254869950003922, - 0.005799796432256699, - -0.007920368574559689, - 0.00713100703433156, - 0.0146232470870018, - 0.021031787618994713, - 0.012061168439686298, - -0.01976078376173973, - -0.02307877503335476, - 0.03366156294941902, - 0.0008353513549081981, - 0.035240285098552704, - -0.0155062610283494, - -0.00229449849575758, - 0.007739751599729061, - -0.014542973600327969, - -0.008221395313739777, - -0.08990687876939774, - 0.007197902072221041, - 0.007853473536670208, - 0.010355345904827118, - -0.010964090935885906, - -0.000945728097576648, - -0.005997136700898409, - -0.018770737573504448, - 0.009545916691422462, - 0.029808413237333298, - -0.036230333149433136, - -0.019854435697197914, - -0.02111206203699112, - 0.0028062453493475914, - 0.04928823560476303, - 0.008549180813133717, - 0.012910734862089157, - -0.011612972244620323, - -0.02469763532280922, - 0.0411805622279644, - -0.007947126403450966, - 0.00575296999886632, - -0.0009557623416185379, - -0.011820347048342228, - -0.01855667307972908, - -0.018958043307065964, - -0.03355453163385391, - 0.020122015848755836, - 0.023961789906024933, - -0.023841379210352898, - 0.018396126106381416, - -0.02238306775689125, - 0.010428930632770061, - 0.00039635287248529494, - 0.00921144150197506, - -0.0020068499725311995, - -0.028925398364663124, - -0.011117949150502682, - 0.02790859527885914, - -0.030985765159130096, - 0.006037273909896612, - 0.01157283503562212, - -0.010549341328442097, - -0.020336080342531204, - -0.00798726361244917, - -0.019439687952399254, - 0.012074547819793224, - 0.005104088690131903, - -0.009599432349205017, - -0.0071644545532763, - -0.009579364210367203, - -0.019881194457411766, - -0.041100289672613144, - -0.0025905088987201452, - 0.021326126530766487, - -0.0015193527797237039, - -0.009719843976199627, - 0.0074454136192798615, - 0.0015160079346969724, - -0.008649523369967937, - -0.006699534598737955, - -0.014288771897554398, - -0.04262549430131912, - 0.02069731429219246, - 0.010796853341162205, - 0.0019148694118484855, - -0.007325002457946539, - 0.00107366475276649, - 0.007498929742723703, - -0.006027239840477705, - -0.013981055468320847, - 0.00727817602455616, - -0.013940918259322643, - 0.01824895665049553, - -0.031092796474695206, - -0.0081946374848485, - -0.03352777659893036, - -0.009947286918759346, - 0.017365941777825356, - -0.007980573922395706, - -0.01062292605638504, - -0.015466124750673771, - 0.04048485681414604, - -0.03366156294941902, - 0.03826393932104111, - 0.003212632378563285, - -0.0017242187168449163, - -0.017820827662944794, - 0.03714010491967201, - -0.021406400948762894, - 0.010569410398602486, - 0.03350101783871651, - 0.04535480961203575, - 5.858538861502893e-05, - -0.020295944064855576, - 0.00990046001970768, - -0.0066794659942388535, - 0.02546023763716221, - 0.0035220219288021326, - 0.0059001389890909195, - -0.018168682232499123, - -0.022583752870559692, - -0.059830889105796814, - 0.015907632187008858, - 0.013185004703700542, - 0.018342608585953712, - -0.013994433917105198, - 0.01008776668459177, - 0.0004045056994073093, - 0.009773359633982182, - 0.024724392220377922, - 0.009793427772819996, - -0.013098041526973248, - 0.009218131192028522, - 0.002455046633258462, - 0.003376525128260255, - -0.020162153989076614, - -0.02238306775689125, - 0.0011656454298645258, - 0.007171144243329763, - 0.009492401033639908, - 0.016389274969697, - -0.01539922971278429, - 0.0037059830501675606, - 0.00014685544010717422, - 0.02935352735221386, - -0.04048485681414604, - -0.007993952371180058, - -0.012957561761140823, - 0.0008604369359090924, - -0.0013930883724242449, - -0.00595031026750803, - 0.012603018432855606, - -0.00381970452144742, - -0.02738681435585022, - 0.010188108310103416, - -0.0013496066676452756, - -0.005997136700898409, - 0.020443111658096313, - 0.023613935336470604, - 0.01600128412246704, - 0.049475543200969696, - -0.013425827026367188, - -0.028550786897540092, - 0.019158728420734406, - -0.01455635204911232, - -0.0059135183691978455, - 0.0018429573392495513, - 0.03922722861170769, - -0.000837023719213903, - 0.02562078647315502, - 0.004856577143073082, - 0.01976078376173973, - 0.02307877503335476, - 0.01593438908457756, - -0.011646419763565063, - -0.003226011525839567, - -0.003266148502007127, - 0.019653750583529472, - 0.0018713877070695162, - 0.005207776091992855, - -0.034571338444948196, - 0.035748690366744995, - 0.0089505510404706, - 0.019131969660520554, - -0.012215027585625648, - 9.652739390730858e-05, - -0.01514502801001072, - -0.019292518496513367, - -0.01129856612533331, - 0.004274590406566858, - -0.029407043009996414, - -0.008014021441340446, - 0.01062292605638504, - 0.020857861265540123, - 0.013352242298424244, - 0.0007801629835739732, - 0.001419010222889483, - 0.0026256288401782513, - 0.005512148141860962, - -0.022878089919686317, - 0.00936530064791441, - 0.014395804144442081, - 0.0010903885122388601, - 0.002692523878067732, - -0.0022978433407843113, - 0.029674623161554337, - -0.006258027628064156, - -0.025366583839058876, - 0.0010753371752798557, - -0.006990527734160423, - -0.007592582609504461, - -0.003936770837754011, - 0.022195762023329735, - -0.01824895665049553, - 0.0256341639906168, - 0.010074387304484844, - 0.03232366591691971, - -0.02758749946951866, - -0.0020770898554474115, - 0.03416996821761131, - 0.02817617543041706, - 0.0027661083731800318, - 0.00757251400500536, - 0.0029701380990445614, - 0.004234453663229942, - -0.01689767651259899, - 0.0013964331010356545, - -0.0017610109644010663, - -0.008703039959073067, - -0.003272837959229946, - 0.02452370710670948, - -0.011097881011664867, - -0.009947286918759346, - -0.004140800796449184, - 0.0070708016864955425, - -0.005361634306609631, - 0.0004222746938467026, - -0.015051375143229961, - -0.02659745328128338, - -0.03505298122763634, - 0.012723429128527641, - 0.02465749718248844, - -0.00347519526258111, - -0.0022660682443529367, - -0.003719362197443843, - 0.018101787194609642, - 0.001791113638319075, - -0.00793374702334404, - -0.005003746133297682, - 0.0003309212042950094, - -0.0167237501591444, - 0.016777265816926956, - 0.000972486101090908, - -0.022944984957575798, - -0.016402654349803925, - -0.011164776049554348, - 0.0025068901013582945, - 0.02218238264322281, - 0.007030664477497339, - 0.007846783846616745, - 0.12447822093963623, - 0.03433051332831383, - -0.0033715080935508013, - 0.02548699639737606, - 0.0016389274969696999, - 0.012730118818581104, - 0.02972813881933689, - -0.00401704479008913, - -0.0023246014025062323, - -0.029754897579550743, - -0.00709755951538682, - -0.0040404582396149635, - -0.013185004703700542, - -0.02045649103820324, - -0.01107112318277359, - 0.014114845544099808, - 0.007110938895493746, - 0.017406079918146133, - 0.0027627635281533003, - -0.010870438069105148, - 0.025152521207928658, - -0.015479503199458122, - 0.01303783617913723, - 0.018743978813290596, - -0.017299046739935875, - -0.012730118818581104, - 0.0026941963005810976, - 0.001065302873030305, - -0.001774389878846705, - -0.014128223992884159, - -0.009686396457254887, - 0.00939874816685915, - -0.04439152404665947, - -0.01862356811761856, - 0.04209033399820328, - -0.01172669418156147, - -0.012964251451194286, - -0.0161083173006773, - 0.012669913470745087, - -0.016603339463472366, - 0.004766268655657768, - 0.014596489258110523, - 0.003910013008862734, - -0.01707160472869873, - 0.015720324590802193, - -0.005375013221055269, - 0.005930241663008928, - -0.014516215771436691, - -0.0030303436797112226 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 18, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 509 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000019.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000019.json deleted file mode 100644 index 21ede24d5fb982ced9bfb9ceae946cc9b9289e4f..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000019.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000019", - "content": "Die Gr\u00fcnde f\u00fcr die Wahl der Messpositionen und des Aufbaus sind in 5.3 begr\u00fcndet. Die Verladet\u00e4tigkeiten bestehen in dieser Thesis somit aus der Beladung eines Anh\u00e4- ngers. Der Ablauf beginnt mit dem Einsatz eines geeigneten Flurf\u00f6rderger\u00e4ts, dass die Ladeeinheit mit den Gabeln anhebt und zum jeweiligen Anh\u00e4nger bef\u00f6rdert. Der Bela- devorgang beginnt, wenn das Flurf\u00f6rderger\u00e4t die \u00dcberladebr\u00fccke ber\u00fchrt und in den Anh\u00e4nger eintritt. Anschlie\u00dfend wird die Ladeeinheit l\u00fcckenlos formschl\u00fcssig und/oder kraftschl\u00fcssig beladen, um ein Verrutschen w\u00e4hrend des Transports zu vermeiden. Im letzten Schritt f\u00e4hrt das Flurf\u00f6rderger\u00e4t aus dem Anh\u00e4nger \u00fcber die \u00dcberladebr\u00fccke heraus und der Vorgang ist beendet (siehe Abbildung 9). 38\n5 Beschreibung der Untersuchungsmethodik\n\n[IMAGE: Sachs REINFAHRT RAUSFAHRT Das Flurf\u00f6rderger\u00e4t Das Flurf\u00f6rderger\u00e4t Das Flurf\u00f6rderger\u00e4t transportiert die bef\u00f6rdert die f\u00e4hrt leer aus dem Ladung von der Ladeeinheit im Anh\u00e4nger heraus \u00dcberladebr\u00fccke in Anh\u00e4nger und setzt auf die den Anh\u00e4nger sie dort ab \u00dcberladebr\u00fccke.] Abbildung 9: Prozessablauf des Beladevorgangs\nIn diesem Zusammenhang konzentriert sich die Thesis darauf, detailliert die einzelnen Vorg\u00e4nge eines Beladevorgangs zu beurteilen und insbesondere die L\u00e4rmemissionen die dabei entstehen zu untersucht. Hierbei werden die unterschiedlichen Phasen des Bela- dens, wie beispielsweise die Reinfahrt des Flurf\u00f6rderger\u00e4ts \u00fcber die \u00dcberladebr\u00fccke, genauer betrachtet und die entstehenden Ger\u00e4usche analysiert. Ziel ist es ein besseres Verst\u00e4ndnis f\u00fcr die L\u00e4rmemissionen eines Beladevorgangs zu erlangen und Ma\u00dfnahmen zu identifizieren, die zur Reduktion der L\u00e4rmbelastung beitragen kann. ## 5.2 Messequipment und Messaufbau\n\nUm die L\u00e4rmemissionen eines Beladevorgangs zu beschreiben, ist eine Messung des A- bewerteten Schalldruckpegels unerl\u00e4sslich, um die notwendigen akustischen Gr\u00f6\u00dfen bestimmen zu k\u00f6nnen. Der A-bewertete Schalldruckpegel ber\u00fccksichtigt die nat\u00fcrliche frequenzabh\u00e4ngige Empfindlichkeit des menschlichen Geh\u00f6rs und bietet somit eine ge- nauere Beurteilung der Lautst\u00e4rke. [79] Um eine solch eine Messung durchf\u00fchren zu k\u00f6nnen, sind bestimmte Messsysteme notwendig. Hierzu geh\u00f6ren Schallpegelmesser, die in der Lage sind, den Schalldruckpegel und den A-bewerteten Schalldruckpegel zu messen. In dieser Thesis wurde der Handschallpegelmesser von der Firma Norsonic\n39\n5 Beschreibung der Untersuchungsmethodik\nNor140 verwendet. Der Norsonic Nor140 ist ein zuverl\u00e4ssiges Messger\u00e4t, welches spezi- ell f\u00fcr akustische Messungen entwickelt wurde. Es zeichnet sich durch eine hohe Genau- igkeit und vielseitigen Einstellungsm\u00f6glichkeiten aus, die eine detaillierte Analyse des A- bewerteten Schalldruckpegels erm\u00f6glichen. [80]\nUm eine fehlerfreie Messung zu gew\u00e4hrleisten, ist die Kalibrierung des Handschallpegel- messers notwendig. Hierbei kam, ebenso von der Firma Norsonic, der Akustische Kalib- rator Typ 1251 Klasse 1 zur Verwendung. Hierbei sendet der Kalibrator ein sinusf\u00f6rmiges Schallsignal mit 1000 Hz an das Messmikrofon. Das Messger\u00e4t muss so eingestellt wer- den, dass ein Schalldruckpegel von 114 dB bezogen auf 20 \u03bcPa angezeigt wird. [81]\nUm die Mikrofone in der gew\u00fcnschten H\u00f6he mit einem Mikrofonhalter zu positionieren, wurden Mikrofonst\u00e4nder verwendet und f\u00fcr die variable Positionierung ein langer Stab. Da die Mikrofone in einer gewissen H\u00f6he liegen, wurde jeweils ein 5 m langes Mikrofon- kabel an die Handschallpegelmesser zwischengeschaltet. Damit es zu keinen St\u00f6rger\u00e4u- schen durch Wind kommt, wurde jedes Mikrofon mit einem Windschutz ausger\u00fcstet. Um die Schadensfreiheit der Messger\u00e4te zu gew\u00e4hrleisten und diese auf dem Betriebs- gel\u00e4nde sichtbar zu machen, wurde die ortsfeste Mikrofonposition zus\u00e4tzlich mit Pylo- nen ausgestattet.", - "embedding": [ - 0.008315703831613064, - -0.0014989537885412574, - -0.006298264488577843, - -0.03578876703977585, - -0.006906487513333559, - 0.01586032658815384, - -0.017907677218317986, - -0.0016809221124276519, - -0.009485618211328983, - -0.0004935579490847886, - 0.009565385058522224, - 0.0173227209597826, - -0.030364613980054855, - 0.016591522842645645, - 0.0058828117325901985, - 0.0016244205180555582, - 0.03360847011208534, - 0.011572853662073612, - -0.012476879172027111, - -0.010150343179702759, - -0.02716064266860485, - -0.010768536478281021, - 0.004626482259482145, - -0.009738213382661343, - -0.02019432932138443, - 0.016697879880666733, - 0.03427319601178169, - -0.02113823965191841, - -0.018838291987776756, - 0.012696238234639168, - -0.009911042638123035, - -0.016604818403720856, - -0.003895285539329052, - 0.00400496507063508, - -0.027067581191658974, - -0.023650897666811943, - -0.0025591892190277576, - -0.007278733421117067, - 0.02111165039241314, - -0.015621026046574116, - 0.015235485509037971, - 0.004869106691330671, - 0.0013261253479868174, - -0.01015699002891779, - -1.8825205188477412e-05, - 0.004307414870709181, - 0.0068466621451079845, - 0.004746132995933294, - -0.024342210963368416, - 0.01821345090866089, - 8.86991765582934e-05, - 0.007684214971959591, - -0.027652539312839508, - 0.012928890995681286, - -0.00793016329407692, - -0.004021583124995232, - -0.005251323338598013, - 0.00965179968625307, - -0.010755241848528385, - -0.028237497434020042, - -0.02427573874592781, - 0.018399573862552643, - -0.02887563221156597, - 0.011566205881536007, - -0.00319566298276186, - -0.013234664686024189, - -0.00567009998485446, - -0.021483896300196648, - -0.0161129217594862, - -0.019635962322354317, - 0.013301136903464794, - 0.01785450056195259, - 0.0023132411297410727, - 0.01153961755335331, - 0.03895285353064537, - -0.012436995282769203, - 0.01637881062924862, - 0.003921874333173037, - -0.0032903861720114946, - 0.012410406023263931, - 0.02268039993941784, - -0.03475179523229599, - -0.017881087958812714, - 0.05785762146115303, - 0.024302328005433083, - -0.00600246200338006, - -0.002304932102560997, - 0.005759837571531534, - 0.001684245653450489, - -0.007272086106240749, - 0.010143695399165154, - 0.045733045786619186, - -0.006191908847540617, - 0.004510155878961086, - 0.019649256020784378, - 0.004636453464627266, - -0.005673423409461975, - 0.021989086642861366, - -0.0003282077086623758, - -0.027253704145550728, - -0.017548726871609688, - 0.0018014033557847142, - -0.0041844407096505165, - 0.0030278200283646584, - -0.02087234891951084, - -0.013959214091300964, - -0.0016053096624091268, - -0.003476509125903249, - 0.0016859074821695685, - -0.04185105487704277, - -0.019330188632011414, - 0.03188018500804901, - -0.013148250058293343, - 0.011506381444633007, - 0.0045334212481975555, - -0.013932625763118267, - 0.02204226329922676, - -0.02281334437429905, - 0.017096713185310364, - -0.015301957726478577, - 0.01651175692677498, - 0.024036437273025513, - 0.012417053803801537, - -0.0034366257023066282, - 0.027253704145550728, - 0.006687128450721502, - -0.010708712041378021, - 0.0037656642962247133, - -0.00544077018275857, - -0.01507595181465149, - -0.02452833391726017, - 0.011785564944148064, - 0.02032727561891079, - 0.0083888228982687, - -0.0068400148302316666, - 0.00033713996526785195, - -0.018585696816444397, - 0.00426753144711256, - -0.02346477471292019, - -0.022773461416363716, - 0.002969656605273485, - -0.0018944648327305913, - -0.03453908488154411, - -0.0312686413526535, - 0.0062317922711372375, - 0.029939191415905952, - -0.0008633109391666949, - 0.014318165369331837, - -0.01134684681892395, - 0.0026323089841753244, - -0.020699521526694298, - -0.027067581191658974, - 0.01968913897871971, - -0.012948833405971527, - -0.010230110026896, - 0.0017631817609071732, - -0.016059743240475655, - 0.011971687898039818, - -0.02375725284218788, - -0.016551639884710312, - 0.025379180908203125, - 0.019383367151021957, - 0.015807148069143295, - 0.011200607754290104, - 0.011094251647591591, - 0.011586148291826248, - 0.004633129574358463, - -0.018027327954769135, - -0.005799720995128155, - -0.00767756812274456, - -0.006580772344022989, - -0.0036991918459534645, - -0.007657626178115606, - 0.010655533522367477, - -0.018718641251325607, - 0.0004094287287443876, - 0.019104182720184326, - -0.008741127327084541, - -0.03342234715819359, - -0.027599360793828964, - -0.021842846646904945, - -0.00694637093693018, - 0.008029871620237827, - 0.00554380239918828, - -0.03156111761927605, - 0.007431619800627232, - 0.007970046252012253, - 0.014145337045192719, - -0.008249230682849884, - -0.0036260720808058977, - 0.014703705906867981, - 0.007511386647820473, - 0.006015756633132696, - -0.017362603917717934, - -0.6313287615776062, - -0.009485618211328983, - -0.0033070044592022896, - -0.0020357188768684864, - 0.005091789644211531, - 0.03541652113199234, - 0.01809380017220974, - -0.00011383406672393903, - 0.014185220934450626, - 0.045307621359825134, - -0.005507242400199175, - 0.018333101645112038, - -0.000715825182851404, - 0.004304090980440378, - -0.010183579288423061, - -0.01560773141682148, - -0.010243404656648636, - -0.016192689538002014, - 0.030630504712462425, - -0.00445697782561183, - -0.04193082079291344, - 0.012742768973112106, - -0.0073319110088050365, - 0.010442822240293026, - -0.0040780846029520035, - -0.008089696988463402, - 0.008894014172255993, - -0.012470231391489506, - -0.0028466826770454645, - 0.0018761848332360387, - -0.015979977324604988, - 0.01442452147603035, - -0.029194699600338936, - 0.016977064311504364, - 0.033768005669116974, - 0.011446556076407433, - -0.018678758293390274, - 0.024448566138744354, - 0.003122543217614293, - 0.0066173323430120945, - -0.00714578852057457, - -0.030072135850787163, - -0.0066173323430120945, - -0.024581512436270714, - 0.00439382903277874, - -0.009339379146695137, - 0.0500936396420002, - -0.009485618211328983, - 0.029992369934916496, - -0.017163187265396118, - -0.00032135273795574903, - 0.005021993536502123, - 0.011054368689656258, - 0.004104673862457275, - 0.01462393905967474, - 0.0053842682391405106, - 0.036533258855342865, - -0.015115834772586823, - -0.02244109846651554, - -0.0034798327833414078, - 0.008495179004967213, - 0.02700110897421837, - -0.0195561945438385, - -0.02623002789914608, - -0.027519594877958298, - 0.011905215680599213, - -0.034166838973760605, - -0.031428173184394836, - 0.020765993744134903, - -0.012390464544296265, - -0.0120713971555233, - 0.01628575101494789, - -0.008581593632698059, - -0.001659318571910262, - 0.02716064266860485, - 0.02257404290139675, - -0.0074515617452561855, - -0.011971687898039818, - 0.009226376190781593, - 0.02111165039241314, - -0.00491563742980361, - 0.010097164660692215, - -0.014318165369331837, - -0.0037856060080230236, - 0.018957942724227905, - -0.006248410325497389, - -0.00714578852057457, - 0.004859135951846838, - -0.0024760987143963575, - -0.003506421810016036, - 0.01707012578845024, - 0.03254491090774536, - -0.01808050647377968, - -0.023637602105736732, - -0.0007926839753054082, - 0.03868696466088295, - -0.006926429457962513, - 0.017641788348555565, - 0.0049488740041852, - -0.03384777158498764, - -0.023385006934404373, - 0.002647265326231718, - 0.012044807896018028, - -0.021085061132907867, - 0.03437954932451248, - 0.010462763719260693, - 0.0040780846029520035, - 0.016338927671313286, - 0.005636863876134157, - -0.029699889943003654, - 0.00010386320354882628, - -0.005786426831036806, - -0.008947191759943962, - -0.0009663432138040662, - -0.016458578407764435, - -0.023052645847201347, - 0.017389193177223206, - 0.006614008918404579, - 0.0010585737181827426, - -0.017641788348555565, - 0.013653441332280636, - 0.014078864827752113, - 0.015434903092682362, - -0.006228468380868435, - -0.015368429943919182, - 0.05860210955142975, - 0.022122031077742577, - -0.008874071761965752, - 0.010422879830002785, - 0.0039351689629256725, - 0.007205613423138857, - 0.003566246945410967, - 0.020805876702070236, - -0.018173567950725555, - 0.01187197957187891, - 0.033129867166280746, - 0.027732305228710175, - 0.004782692529261112, - 0.008933897130191326, - -0.010243404656648636, - -0.032092899084091187, - 0.0011499733664095402, - 0.010117107070982456, - -0.011632679030299187, - -0.016751056537032127, - -0.042436011135578156, - -0.01785450056195259, - 0.012297403067350388, - -0.0013784724287688732, - 0.004809281788766384, - -0.015900209546089172, - -0.013301136903464794, - -0.0031175578478723764, - 0.010183579288423061, - -0.018957942724227905, - 0.012064749374985695, - -0.02044692635536194, - -0.011293669231235981, - 0.0013510525459423661, - -0.022135324776172638, - 0.00711255194619298, - 0.019994912669062614, - -0.0516623891890049, - -0.006291617173701525, - -0.015660909935832024, - -0.017615199089050293, - 0.02845020778477192, - -0.0033252842258661985, - -0.009691683575510979, - -0.03648008033633232, - 0.011273727752268314, - 0.004081408493220806, - -0.01707012578845024, - -0.0033269461710006, - -0.016724469140172005, - 0.008235936053097248, - -0.01653834618628025, - -0.008508473634719849, - -0.015182306990027428, - -0.022786755114793777, - 0.017907677218317986, - 0.025379180908203125, - -0.01612621545791626, - 0.0049189613200724125, - 0.009691683575510979, - 0.005254647228866816, - -0.001219769474118948, - -0.0017066801665350795, - -0.024355504661798477, - 0.04655730351805687, - -0.01849263533949852, - 0.012137869372963905, - -0.0037822823505848646, - 0.0010901481145992875, - -0.015089246444404125, - 0.00593931321054697, - 0.016485167667269707, - -0.005985843949019909, - -0.018333101645112038, - 0.009984161704778671, - 0.004982110112905502, - 0.00423429487273097, - 0.024182677268981934, - 0.00026194300153292716, - 0.007664273492991924, - -0.004772721789777279, - 0.01187197957187891, - -0.007890279404819012, - 0.035363342612981796, - 0.027891838923096657, - 0.002218517940491438, - -0.024209266528487206, - -0.03190677613019943, - -0.013294490054249763, - 0.009824628010392189, - 0.051875099539756775, - -0.007119199261069298, - 0.02071281522512436, - 0.012722826562821865, - -0.00747815053910017, - -0.0046896315179765224, - -0.003985023126006126, - 0.039006032049655914, - -0.0012280785012990236, - -0.008814246393740177, - -0.008242583833634853, - 0.011493086814880371, - -0.0033585205674171448, - -0.0035762176848948, - -0.011898568831384182, - -0.0038554021157324314, - 0.009478971362113953, - -0.0087211849167943, - 0.029566945508122444, - 0.022800050675868988, - 0.010668828152120113, - 0.018014034256339073, - 0.0046696895733475685, - 0.03382118046283722, - 0.011127487756311893, - 0.031295228749513626, - 0.021324362605810165, - 0.013786385767161846, - -0.018027327954769135, - 0.018333101645112038, - -0.023265358060598373, - 0.009911042638123035, - 0.022853227332234383, - -0.01298206951469183, - -0.005118378438055515, - -0.01417192630469799, - -0.005035288166254759, - -0.0004744470934383571, - -0.01890476420521736, - 0.00426753144711256, - -0.004270854871720076, - 0.027971606701612473, - -0.02035386487841606, - -0.0027502975426614285, - 0.015833737328648567, - -0.0030610563699156046, - 0.033369168639183044, - 0.00925296451896429, - -0.019596077501773834, - -0.0015587789239361882, - -0.000928952475078404, - -0.011612736620008945, - -0.012756062671542168, - -0.027227114886045456, - -0.016192689538002014, - 0.004107997287064791, - -0.009392556734383106, - -0.0010286611504852772, - 0.004380534403026104, - 0.02781207300722599, - -0.013606910593807697, - 0.008574945852160454, - 0.017495548352599144, - 0.020912231877446175, - -0.004230971448123455, - -0.0030544090550392866, - -0.02648262307047844, - -0.002617352642118931, - 0.023943375796079636, - -0.0010369701776653528, - -0.0031823685858398676, - -0.03270444646477699, - 0.021802963688969612, - -0.0344061404466629, - -0.014411226846277714, - -0.014530877582728863, - -0.004410447087138891, - -0.03257150202989578, - -0.0074449144303798676, - 0.0036028067115694284, - 0.007903574034571648, - 0.035070862621068954, - 0.015474786050617695, - 0.0003174059384036809, - -0.0012845800956711173, - -0.0006622317596338689, - -0.02845020778477192, - -0.01850592903792858, - -0.03320963680744171, - 0.021404128521680832, - -0.011459850706160069, - -0.0220289696007967, - -0.020952116698026657, - 0.022760165855288506, - -0.012995364144444466, - -0.02188272960484028, - 0.005324443336576223, - 0.00200248253531754, - 0.007537975907325745, - -0.01108760479837656, - -0.00022372133389580995, - 0.005530507769435644, - 0.006710393819957972, - 0.037729762494564056, - 0.014570760540664196, - -0.030338026583194733, - -0.02389019913971424, - 0.005832957569509745, - 0.008940543979406357, - 0.028290674090385437, - 0.03568241000175476, - -0.007524681277573109, - 0.02556530386209488, - -0.029832834377884865, - -0.00911337323486805, - 0.01838628016412258, - -0.038075417280197144, - 0.026309795677661896, - 0.03528357669711113, - -0.0041977353394031525, - 0.014770178124308586, - 0.034166838973760605, - -0.021058471873402596, - -0.001039462978951633, - -0.0018130360404029489, - 0.01068212278187275, - -0.0044403597712516785, - 0.0449087880551815, - 0.008900661021471024, - -0.012795946560800076, - -0.00010967953858198598, - -0.007757334969937801, - 0.033103279769420624, - 0.0005326105165295303, - -0.012317344546318054, - 0.021723195910453796, - 0.02084575966000557, - -0.00028728562756441534, - -0.013281195424497128, - 0.001143326167948544, - 0.028264084830880165, - 0.027067581191658974, - 0.010283287614583969, - -0.0066538923420012, - 0.00149064464494586, - -0.017748143523931503, - 0.011067662388086319, - 0.010190226137638092, - 0.0012837491231039166, - 0.0028682861011475325, - 0.018931353464722633, - 0.008116286247968674, - -0.019609373062849045, - 0.006085552740842104, - 0.005999138578772545, - 0.00547068240121007, - 0.01613951101899147, - -0.009153256192803383, - -0.004955521319061518, - 0.036001477390527725, - -0.03634713590145111, - 0.002078925957903266, - 0.0037556933239102364, - 0.0066838045604527, - -0.03235878795385361, - -0.012762710452079773, - -0.015660909935832024, - -0.015714086592197418, - -0.014158631674945354, - -0.016099628061056137, - -0.034831564873456955, - 0.014490993693470955, - -0.015448196791112423, - -0.006058963946998119, - -0.018559107556939125, - -0.03897944465279579, - -0.007710804231464863, - -0.02057987079024315, - 0.01141996681690216, - -0.0046630422584712505, - -0.01462393905967474, - -0.03305010125041008, - -0.012536703608930111, - 0.0183463953435421, - -0.0021055147517472506, - 0.01383956428617239, - -0.005959255155175924, - -0.001975893508642912, - 0.009226376190781593, - -0.017349310219287872, - 0.0021670018322765827, - -0.02020762488245964, - -0.01298871636390686, - -0.014278282411396503, - 0.014078864827752113, - -0.004473595879971981, - -0.009911042638123035, - 0.01667129062116146, - 0.017522137612104416, - -0.007531328592449427, - 0.01769496686756611, - -0.002339830156415701, - -0.004619835410267115, - -0.008295761421322823, - 0.021683312952518463, - -0.006793484557420015, - 0.014211809262633324, - 0.01992844045162201, - -0.019582783803343773, - 0.012928890995681286, - -0.029540356248617172, - -0.005367650184780359, - -0.004889048635959625, - 0.01417192630469799, - 0.012038161046802998, - -0.0031906776130199432, - 0.005467358976602554, - 0.0003325699653942138, - 0.01859899051487446, - 0.006258381064981222, - -0.006152025423943996, - -0.0018778466619551182, - 0.0043340036645531654, - 0.00846858974546194, - 0.021802963688969612, - 0.010582413524389267, - 0.024448566138744354, - 0.025658365339040756, - 0.006820073351264, - -0.0003236377378925681, - -0.034831564873456955, - 0.054108574986457825, - 0.005460711661726236, - -0.009359320625662804, - 0.057379018515348434, - -0.00923967082053423, - -0.0033917566761374474, - -0.03097616136074066, - 0.0045699807815253735, - 0.012948833405971527, - 0.02702769823372364, - 0.018146978691220284, - -0.020925527438521385, - -0.018692051991820335, - -0.028503386303782463, - -5.940975097473711e-05, - 0.011984982527792454, - -0.013932625763118267, - -0.002100529382005334, - -0.021709902212023735, - 0.014743588864803314, - -0.008521768264472485, - 0.003077674424275756, - 0.009851217269897461, - -0.024182677268981934, - -0.008568299002945423, - 0.01978220045566559, - -0.026814986020326614, - 0.03552287817001343, - -0.022627221420407295, - 0.004134586546570063, - -0.03722457215189934, - -0.016711173579096794, - -0.002407964551821351, - -0.013985803350806236, - 0.0161129217594862, - -0.02283993363380432, - 0.04264872521162033, - 0.03655984625220299, - 0.03156111761927605, - -0.000866634538397193, - 0.021723195910453796, - -0.004443683195859194, - -0.014251693151891232, - -0.021404128521680832, - -0.020380452275276184, - -0.0041711460798978806, - -0.016352223232388496, - 0.04025571420788765, - 0.014982890337705612, - 0.002946391236037016, - 0.008475237525999546, - 0.003802224062383175, - 0.004473595879971981, - 0.03905921056866646, - -0.017229659482836723, - -0.007165729999542236, - -0.01599327102303505, - -0.027493005618453026, - -0.006102170795202255, - -0.0011408333666622639, - 0.020938821136951447, - 0.024714456871151924, - -0.018146978691220284, - -0.007046079728752375, - 0.021058471873402596, - -0.020393747836351395, - -0.014185220934450626, - 0.001036139321513474, - 0.020633047446608543, - -0.047035906463861465, - 0.015820443630218506, - 0.015049362555146217, - -0.0012887346092611551, - 0.001046941033564508, - 0.002276681363582611, - -0.024581512436270714, - -0.0167776457965374, - 0.026868164539337158, - -0.0002864547132048756, - -0.001733269076794386, - -0.010210168547928333, - -0.03538993373513222, - -0.0068666040897369385, - -0.023424891754984856, - 0.009525502100586891, - -0.0133077846840024, - -0.018572403118014336, - -0.018293218687176704, - -0.04182446375489235, - -0.031534530222415924, - 0.003729104297235608, - -0.019104182720184326, - 0.02911493368446827, - 0.004061466548591852, - 0.012377169914543629, - 0.016232572495937347, - -0.011453202925622463, - 0.00800328329205513, - -0.0036360430531203747, - -0.007830454967916012, - 0.01174568198621273, - 0.01929030567407608, - 0.032863978296518326, - 0.015328546985983849, - -0.019715728238224983, - -0.015448196791112423, - -0.062377747148275375, - 0.03764999657869339, - -0.014397932216525078, - 0.010602355934679508, - 0.018785113468766212, - -0.018944647163152695, - 0.011991630308330059, - 0.005636863876134157, - 0.019516311585903168, - 0.01200492400676012, - -0.002186943544074893, - 0.03751705214381218, - 0.02664215862751007, - -0.021816257387399673, - -0.007524681277573109, - 0.010775184258818626, - 0.006567478179931641, - -0.01331443153321743, - 0.0011341861682012677, - -0.005151615012437105, - -0.007577859330922365, - -0.0009921012679114938, - -0.00649435818195343, - 0.0424891896545887, - 0.009512207470834255, - 0.009259612299501896, - 0.008800952695310116, - -0.029540356248617172, - -0.0034266547299921513, - -0.022800050675868988, - -0.026017317548394203, - 0.014211809262633324, - -0.012975421734154224, - 0.019051004201173782, - 0.0012679619248956442, - -0.002245106967166066, - 0.015567847527563572, - 0.00931943766772747, - -0.009332732297480106, - -0.019210537895560265, - 0.004174469970166683, - 0.01810709573328495, - -0.0008396301418542862, - 0.02266710437834263, - 0.011187313124537468, - 0.002800151938572526, - 0.024222560226917267, - 0.006886545568704605, - -0.0009829613845795393, - -0.012104633264243603, - -0.004699602257460356, - -0.01212457474321127, - 0.00603569857776165, - -0.00226006330922246, - -0.027466416358947754, - -0.014038980938494205, - -0.009166550822556019, - -0.01784120500087738, - 0.021537072956562042, - -0.018864881247282028, - 0.0016061405185610056, - -0.03156111761927605, - -0.02229486033320427, - -8.111716306302696e-05, - 0.02032727561891079, - 0.015368429943919182, - -0.017482254654169083, - -0.025099996477365494, - -0.014690411277115345, - 0.03081662766635418, - -0.015381724573671818, - 0.017761439085006714, - 0.035469699651002884, - -0.013228017836809158, - 0.006115465424954891, - 0.016046449542045593, - 0.00892060250043869, - 0.00851512048393488, - 0.013141603209078312, - 0.00012432425864972174, - -0.027838662266731262, - -0.011207254603505135, - -0.003486479865387082, - 0.021311067044734955, - -0.012536703608930111, - 0.014145337045192719, - -0.0053909155540168285, - -0.010409585200250149, - 0.00800993014127016, - -0.009219728410243988, - -0.0003304927085991949, - -0.0019077593460679054, - 0.017548726871609688, - -0.012443642131984234, - 0.03786270692944527, - -0.008734479546546936, - 0.0072454968467354774, - 0.019835378974676132, - -0.01835969090461731, - 0.0026356326416134834, - -0.024461861699819565, - -0.022095441818237305, - 0.024860696867108345, - 0.013533790595829487, - -0.0449087880551815, - -0.011579500511288643, - -0.015913505107164383, - -0.014517582952976227, - -0.009405851364135742, - 0.019596077501773834, - -0.016764352098107338, - 0.01023675687611103, - 0.012476879172027111, - -0.004493537358939648, - 0.00413126265630126, - 0.020407041534781456, - 0.002560851164162159, - -0.002368080895394087, - 0.016963768750429153, - 0.005596980452537537, - -0.03852743282914162, - -0.005866193678230047, - -0.03998982533812523, - 0.025272825732827187, - 0.006241763010621071, - -0.02556530386209488, - 0.0038753438275307417, - -0.010336466133594513, - -0.03541652113199234, - -0.008422059006989002, - 0.009259612299501896, - 0.003406713018193841, - -0.004167822655290365, - 0.007265438791364431, - -0.005098436959087849, - 0.023664191365242004, - 0.003506421810016036, - 0.011592795141041279, - -0.0029679948929697275, - -0.003592835972085595, - 0.0057831029407680035, - 0.011965041048824787, - -0.00567009998485446, - -0.015647614374756813, - -0.0453873872756958, - 0.004550039302557707, - 0.03084321692585945, - -0.000630657363217324, - 0.012902302667498589, - 0.010329818353056908, - 0.001778137986548245, - -0.011739034205675125, - 0.0011640987358987331, - 0.005969225894659758, - 0.020925527438521385, - -0.0025974109303206205, - 0.018426163122057915, - -0.012769357301294804, - -0.016830824315547943, - 0.008947191759943962, - 0.014796767383813858, - -0.03515063226222992, - -0.013540438376367092, - 0.010130401700735092, - -0.01717648096382618, - -0.001791432499885559, - 0.011333552189171314, - -0.02177637442946434, - 0.007265438791364431, - -0.025498831644654274, - 0.030922982841730118, - 0.015767265111207962, - -0.03291715681552887, - 0.0051748803816735744, - 0.016977064311504364, - -0.015142424032092094, - -0.008182758465409279, - 0.009924336336553097, - -0.0322258435189724, - 0.008761068806052208, - 0.013274548575282097, - -0.03161429613828659, - 0.009911042638123035, - 0.003802224062383175, - 0.0148765342310071, - 0.000170231782249175, - 0.014211809262633324, - -0.013613557443022728, - -0.026017317548394203, - -0.03517721965909004, - 0.03424660488963127, - 0.016564933583140373, - -0.01042952761054039, - -0.014557466842234135, - 0.00957203283905983, - -0.014982890337705612, - 0.008747774176299572, - -0.021723195910453796, - 0.0073385583236813545, - -0.02190931886434555, - -0.002982951235026121, - 0.002869948046281934, - -0.010269992984831333, - 0.009405851364135742, - 0.004955521319061518, - 0.01705683022737503, - -0.024820812046527863, - -0.014517582952976227, - 0.1913342922925949, - -0.04227647930383682, - -0.02361101470887661, - 0.018692051991820335, - -0.01572738215327263, - -0.01995502971112728, - 0.013434082269668579, - 0.003566246945410967, - 0.010735300369560719, - 0.02714734897017479, - 0.010196873918175697, - -0.0024727750569581985, - -0.012995364144444466, - -0.004363916348665953, - 0.010648886673152447, - -0.007664273492991924, - -0.02229486033320427, - -0.010110459290444851, - 0.0017615199321880937, - 0.028795864433050156, - 0.02649591863155365, - -0.02334512397646904, - -0.00548065360635519, - -0.015979977324604988, - 0.03624077886343002, - 0.012217636220157146, - -0.0024561570025980473, - 0.02543235942721367, - 0.013400846160948277, - 0.01141996681690216, - -0.029992369934916496, - -0.000953048758674413, - 0.017628492787480354, - -0.007225555367767811, - 0.0037856060080230236, - 0.01495630107820034, - 0.00694637093693018, - -0.01665799506008625, - 0.019250420853495598, - 0.034672029316425323, - 0.02402314357459545, - -0.024182677268981934, - -0.014185220934450626, - -0.019117476418614388, - -0.011778918094933033, - 0.0013834577985107899, - -0.000208765035495162, - 0.003439949359744787, - -0.001753210905008018, - -0.005932665895670652, - -0.013168192468583584, - 0.014012392610311508, - 0.01757531613111496, - 0.021603545174002647, - -0.009877805598080158, - -0.01586032658815384, - 0.0031208815053105354, - -0.005796397570520639, - 0.016352223232388496, - -0.0009223052184097469, - -0.04030889272689819, - 0.020407041534781456, - -0.003410036675632, - 0.018333101645112038, - -0.01306183636188507, - 0.009199786931276321, - -0.015660909935832024, - -0.007272086106240749, - -0.006384678650647402, - -0.014132042415440083, - -0.014849944971501827, - -0.0041777933947741985, - -0.00859488733112812, - 0.011586148291826248, - -0.02427573874592781, - -0.04155857488512993, - 0.008501825854182243, - -8.989360503619537e-05, - 0.03201313316822052, - 0.019994912669062614, - -0.001434974023140967, - 0.0006431209621950984, - -0.0002924787695519626, - -0.028290674090385437, - 0.006447827443480492, - -0.009877805598080158, - 0.018984531983733177, - 0.013327726162970066, - 0.024368800222873688, - -0.03711821511387825, - -0.023278651759028435, - -0.0083888228982687, - -0.008674655109643936, - -0.0035463052336126566, - -0.003174059558659792, - -0.010655533522367477, - 0.03499109670519829, - 0.015461491420865059, - -0.005387592129409313, - 0.001278763753362, - -0.028370441868901253, - 0.044536542147397995, - 0.05022658407688141, - -0.014982890337705612, - -0.02113823965191841, - 0.002796828281134367, - -0.006324853748083115, - 0.04331344738602638, - -0.009478971362113953, - -0.012191046960651875, - 0.006893192883580923, - -0.01691059023141861, - 0.010808420367538929, - -0.014610644429922104, - 0.013852858915925026, - 0.012277461588382721, - -0.0028716097585856915, - -0.0014574084198102355, - 0.002113823778927326, - -0.0021636781748384237, - -0.004732838366180658, - -0.006075582001358271, - 0.02109835483133793, - -0.0038753438275307417, - 0.010422879830002785, - -0.0337945930659771, - -0.045041732490062714, - 0.023770548403263092, - -0.00826252531260252, - 0.014158631674945354, - 0.022082148119807243, - -0.01838628016412258, - 0.025937549769878387, - -0.013407493010163307, - 0.008402117528021336, - 0.00787698570638895, - -0.024475155398249626, - -0.04078749567270279, - -0.015368429943919182, - -0.010954659432172775, - 0.015248780138790607, - 0.011154077015817165, - 0.0015479772118851542, - 0.0013244635192677379, - 0.017096713185310364, - 0.0001795794814825058, - 0.025538714602589607, - 0.009665094316005707, - -0.02898198738694191, - -0.03398071601986885, - -0.02612367272377014, - 0.008348939940333366, - 0.01837298460304737, - -0.016312338411808014, - 0.01290894951671362, - 0.0018180215265601873, - -0.00846194289624691, - -0.045174676924943924, - 0.01437134388834238, - 0.006657215766608715, - -0.027705717831850052, - -0.02506011351943016, - -0.0007353514665737748, - -0.02152377925813198, - -0.004799311049282551, - -0.009884453378617764, - -0.16793599724769592, - 0.008887366391718388, - 0.014185220934450626, - -0.01887817494571209, - 0.024754339829087257, - 0.006793484557420015, - 0.024501744657754898, - 0.024887284263968468, - -0.02898198738694191, - 9.794299694476649e-05, - 0.02321217954158783, - -0.00433068023994565, - -0.019861968234181404, - -0.024741046130657196, - -0.011659267358481884, - -0.0049256086349487305, - -0.02100529335439205, - 0.003659308422356844, - 0.030231669545173645, - 0.010243404656648636, - 0.0027669155970215797, - -0.017282836139202118, - -0.004011612385511398, - 0.010329818353056908, - -0.0011358479969203472, - 0.00626502837985754, - -0.026283206418156624, - 0.024289032444357872, - -0.015315252356231213, - -0.009219728410243988, - -0.018173567950725555, - 0.016564933583140373, - 0.016166100278496742, - -0.00800328329205513, - -0.004879077896475792, - -0.009518854320049286, - 0.0010652210330590606, - 0.002158692805096507, - -0.00977145042270422, - 0.009798038750886917, - 0.010981248691678047, - 0.03895285353064537, - -0.006992901675403118, - 0.005277912598103285, - 0.0026406180113554, - 0.03230560943484306, - 0.018200157210230827, - -0.02543235942721367, - 0.01200492400676012, - -0.01757531613111496, - 0.010662181302905083, - -0.016604818403720856, - 0.0009538796730339527, - 0.02452833391726017, - -0.0016609802842140198, - 0.011333552189171314, - 0.004895695950835943, - 0.02124459482729435, - 0.012776005081832409, - 0.00990439485758543, - 0.006547536235302687, - -0.025219647213816643, - 0.0017581962747499347, - -0.012377169914543629, - -0.019489722326397896, - -0.022720282897353172, - -0.0030195110011845827, - 0.029566945508122444, - -0.004593246150761843, - -0.007085963152348995, - 0.0036991918459534645, - -0.03044438175857067, - 0.004779369104653597, - -0.011041074059903622, - 0.015222190879285336, - 0.022853227332234383, - 0.0026572360657155514, - 0.006447827443480492, - 0.010442822240293026, - -0.007471503224223852, - -0.010017397813498974, - 0.045706454664468765, - -0.00573324877768755, - -0.033635061234235764, - -0.009731566533446312, - -0.02492716908454895, - -0.027572771534323692, - 0.015567847527563572, - -0.009365968406200409, - 0.008495179004967213, - 0.01994173415005207, - -0.027253704145550728, - -0.01147314440459013, - -0.03991005942225456, - 0.017668377608060837, - -0.005085142329335213, - 0.011094251647591591, - -0.01980878971517086, - -0.010768536478281021, - -0.005188174545764923, - 0.004353945609182119, - -0.012164458632469177, - -0.03156111761927605, - 0.032465144991874695, - -0.004201058764010668, - 0.007405031006783247, - -0.0010510956635698676, - 0.016166100278496742, - 0.060941942036151886, - -0.018279923126101494, - -0.006261704955250025, - -0.0061453781090676785, - 0.012430348433554173, - 0.017482254654169083, - 0.020393747836351395, - 0.0117988595739007, - 0.0029380822088569403, - -0.01782791130244732, - 0.011891921050846577, - 0.014730295166373253, - 0.04841853305697441, - -0.022494276985526085, - -0.011386730708181858, - 0.018293218687176704, - -0.009432440623641014, - -0.020938821136951447, - -0.10194215178489685, - 0.003385109594091773, - 0.010382996872067451, - 0.004101349972188473, - 0.013480613008141518, - 0.013261253945529461, - 0.008800952695310116, - -0.0005508903996087611, - -0.0030211727134883404, - 0.04126609489321709, - -0.028264084830880165, - -0.03031143732368946, - -0.01560773141682148, - -0.01015699002891779, - 0.023717369884252548, - -0.005307825282216072, - 0.0024628043174743652, - -0.01613951101899147, - -0.012436995282769203, - 0.029992369934916496, - -0.015820443630218506, - 0.0034565674141049385, - -0.005636863876134157, - -0.018652169033885002, - -0.01913077011704445, - -0.009944278746843338, - -0.02898198738694191, - -0.00474945642054081, - 0.031933363527059555, - -0.021829552948474884, - 0.031109105795621872, - -0.012802593410015106, - 0.01141996681690216, - -0.008767715655267239, - 0.0010070576099678874, - -0.010861597955226898, - -0.026575684547424316, - -0.0013701634015887976, - 0.0406811386346817, - -0.017415782436728477, - 0.0018495959229767323, - 0.01245693676173687, - 0.0083888228982687, - -0.015501375310122967, - -0.005537155084311962, - -0.014278282411396503, - -0.011552911251783371, - -0.008083050139248371, - 0.005367650184780359, - -0.003729104297235608, - -0.024980345740914345, - -0.03145476430654526, - -0.037596818059682846, - 0.005164909176528454, - 0.020167741924524307, - -0.02192261442542076, - -0.006833367981016636, - -0.005650158040225506, - -0.009206433780491352, - -0.017947562038898468, - -0.020034795626997948, - 0.01042952761054039, - -0.034299783408641815, - 0.02545894868671894, - 0.012224283069372177, - -0.013759797438979149, - -0.014264987781643867, - -0.009492265991866589, - 0.020619753748178482, - 0.013121661730110645, - -0.01862557977437973, - 0.01199827715754509, - -0.007950104773044586, - 0.006813426036387682, - -0.025658365339040756, - -0.017508843913674355, - -0.03948463499546051, - -0.01982208527624607, - 0.004287472926080227, - -0.011519675143063068, - -0.00813622772693634, - -0.033528704196214676, - 0.037304338067770004, - -0.01812038943171501, - 0.03419342637062073, - 0.02047351375222206, - 0.0023198884446173906, - 0.0037756350357085466, - 0.02214862033724785, - -0.0023996555246412754, - 0.006178614217787981, - 0.03124205209314823, - 0.0173227209597826, - 0.001371825230307877, - -0.04698272794485092, - 0.011852038092911243, - -0.007657626178115606, - 0.01942325010895729, - -0.0015230500139296055, - 0.007837101817131042, - -0.009233023039996624, - -0.021018588915467262, - -0.043472982943058014, - 0.025246236473321915, - 0.021616840735077858, - -0.01245028991252184, - -0.027386648580431938, - -0.010037340223789215, - 0.01068876963108778, - 0.0001838378666434437, - 0.02204226329922676, - 0.009758155792951584, - -0.00878765806555748, - 0.001053588348440826, - -0.0016127878334373236, - -0.010070576332509518, - -0.02847679704427719, - -0.030790038406848907, - 0.006045669317245483, - 0.020247507840394974, - 0.007591153495013714, - 0.014185220934450626, - -0.01298206951469183, - 0.012423700653016567, - -0.004473595879971981, - 0.028689509257674217, - -0.04118632897734642, - -0.005361002869904041, - 0.003908580169081688, - -0.004500184673815966, - -0.0042043826542794704, - -0.004151204600930214, - -0.0018778466619551182, - 0.005430798977613449, - -0.00787698570638895, - 0.014916417188942432, - -0.008741127327084541, - -0.010948012582957745, - 0.018585696816444397, - 0.029699889943003654, - 0.023119118064641953, - 0.05272594839334488, - 0.004008288495242596, - -0.021444011479616165, - 0.005341061390936375, - -0.029673300683498383, - 0.0030095402617007494, - 0.010708712041378021, - 0.014211809262633324, - -0.008023224771022797, - 0.003292048117145896, - -0.0045766280964016914, - 0.025512125343084335, - 0.01760190539062023, - 0.01917065493762493, - -0.014358049258589745, - -0.0013834577985107899, - 0.005414180923253298, - 0.01285577192902565, - 0.01305518951267004, - 0.009505560621619225, - -0.03499109670519829, - 0.04722202941775322, - 0.0008583255112171173, - 0.007484797853976488, - -0.011114193126559258, - 0.007012843620032072, - -0.01745566539466381, - -0.025618482381105423, - -0.005128349643200636, - 0.0019310245988890529, - -0.02060646004974842, - -0.018692051991820335, - -0.002100529382005334, - 0.016684584319591522, - 0.020154446363449097, - -0.0061320834793150425, - -0.005311148706823587, - -0.0006289955344982445, - 0.008169463835656643, - -0.016751056537032127, - 0.02440868318080902, - 0.012802593410015106, - 0.030205080285668373, - 0.012490172870457172, - -0.00046946166548877954, - 0.048737600445747375, - -0.011559559032320976, - -0.029673300683498383, - 0.0025010257959365845, - -0.014690411277115345, - 0.009186492301523685, - -0.02778548374772072, - 0.01679094135761261, - 0.0018928030040115118, - 0.012789299711585045, - 0.007989988662302494, - 0.015222190879285336, - 0.003333593253046274, - 0.0034598910715430975, - 0.041399043053388596, - 0.025392476469278336, - 0.0012546675279736519, - 5.436589276541781e-07, - -0.012510115280747414, - -0.008834188804030418, - 0.0015479772118851542, - 0.02442197874188423, - -0.0083888228982687, - -0.038873087614774704, - 0.013254606164991856, - 0.020300686359405518, - -0.02385031431913376, - 0.008222642354667187, - 0.014397932216525078, - 0.013281195424497128, - -0.019077593460679054, - 0.02057987079024315, - -0.008774363435804844, - -0.022241681814193726, - -0.016485167667269707, - 0.018426163122057915, - 0.0281843189150095, - -0.00011715769505826756, - -0.004928932059556246, - 0.00212878012098372, - 0.016312338411808014, - 0.000368298904504627, - 0.0055039189755916595, - -0.011493086814880371, - -0.007531328592449427, - -0.014145337045192719, - 0.027519594877958298, - 0.015793854370713234, - -0.011147430166602135, - -0.027227114886045456, - -0.01625916175544262, - -0.015807148069143295, - 0.020938821136951447, - 0.0027802102267742157, - 0.005886135622859001, - 0.12050125747919083, - 0.01278265193104744, - -0.0069862543605268, - 0.016724469140172005, - -0.008215994574129581, - 0.01952960528433323, - 0.024209266528487206, - 0.006338147912174463, - 0.004363916348665953, - -0.04363251477479935, - 0.013341020792722702, - 0.00022289043408818543, - -0.003745722584426403, - -0.0179874449968338, - -0.0030244963709264994, - 0.009279553778469563, - -0.0002845851704478264, - 0.016046449542045593, - -0.037065036594867706, - -0.006042345426976681, - 0.02415608800947666, - -0.033369168639183044, - 0.016059743240475655, - 0.040096182376146317, - -0.013759797438979149, - -0.012609823606908321, - 0.016844118013978004, - 0.01068876963108778, - 0.01560773141682148, - -0.009711625054478645, - -0.009585327468812466, - 0.010642238892614841, - -0.05716630816459656, - -0.016724469140172005, - 0.03015190362930298, - -0.012104633264243603, - -0.00669377576559782, - -0.008348939940333366, - 0.010502646677196026, - 0.00012141608021920547, - -0.005846251733601093, - 0.032996922731399536, - -0.0037224572151899338, - -0.02387690357863903, - -0.006879898719489574, - 0.005935989785939455, - -0.002481084084138274, - -0.01624586619436741, - -0.012350580655038357 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 19, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 500 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000020.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000020.json deleted file mode 100644 index 403b8948d42c7bb57de2e5339d27ffccf2ecd4a0..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000020.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000020", - "content": "Damit es zu keinen St\u00f6rger\u00e4u- schen durch Wind kommt, wurde jedes Mikrofon mit einem Windschutz ausger\u00fcstet. Um die Schadensfreiheit der Messger\u00e4te zu gew\u00e4hrleisten und diese auf dem Betriebs- gel\u00e4nde sichtbar zu machen, wurde die ortsfeste Mikrofonposition zus\u00e4tzlich mit Pylo- nen ausgestattet. Zusammengefasst wurden folgende Ger\u00e4te verwendet (siehe Tabelle\n8):\n\n| Schallpegelmessger\u00e4te | Fa. | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | Verwendete | Ger\u00e4teeinstel- | Zeitbewertung | Fast, | A-bewertung | lung | und | Konfiguration | Aufzeichnung | des | Pegel- | (1-Sekunden | Mittelungspegel | LAeq, | LACeq, | Terzspektrum | und | Maximalpe- | Zeit-Verlaufs | gel | LAFmax | mit | den | internen | Speichern | der | Norsonic-Messger\u00e4te | Kalibrator | Fa. | Norsonic-Tippkemper | GmbH | Typ | 1251 | \u00fcberpr\u00fcft, | erf\u00fcllt | Klasse | IEC | Klasse | 1 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nWeitere Ger\u00e4te: Mikrofonkabel 5 m, Mikrofonst\u00e4nder mit Mikrofonhalterung, Pylonen, Armbanduhr mit Sekundenanzeige, Klemmbrett f\u00fcr den Aufschrieb, Laser-Entfernungsmesser Fa. Bosch GLM 40 Professional und Meterstab\nTabelle 8: Verwendete Messger\u00e4te und Equipment\nDie folgende Tabelle gibt eine Zusammenfassung \u00fcber die relevanten Daten zur Ei- chung/Kalibrierung (Stand 27.07.2021) f\u00fcr die verwendeten Handschallpegelmesser Norsonic Nor140 mit den jeweiligen Mikrofonen dar (siehe Tabelle 9). 40\n5 Beschreibung der Untersuchungsmethodik\n\n| Bezeichnung | Serien- | Kalibrator | Eichung | intern | nummer | (Eichkette) | Datum | G\u00fcltig | bis | Erweiterte | Messunsi- | cherheit | 140-1 | 1403303 | 33706 | 22.01.2020 | 31.12.2022 | 0,5 | dB | 140-2 | 1405444 | 33706 | 20.02.2019 | 31.12.2021 | 0,5 | dB | 140-3 | 1406583 | 19909 | 22.01.2020 | 31.12.2022 | 0,5 | dB | Kalibrierung | DKD/DAkkS2 | Bezeichnung | Serien- | Kalibrator | Erweiterte | Messunsi- | intern | nummer | (Eichkette) | Datum | G\u00fcltig | bis | cherheit | \u2264 | 2 | kHz | / | > | 2 | kHz | 140-1 | 1403303 | 33706 | 18.08.2020 | 18.08.2022 | 0,35 | dB | / | \u2264 | 0,65 | dB | 140-2 | 1405444 | 33706 | 16.07.2021 | 16.07.2023 | 0,35 | dB | / | \u2264 | 0,65 | dB | 140-3 | 1406583 | 19909 | 21.01.2020 | 21.01.2022 | 0,35 | dB | / | \u2264 | 0,65 | dB |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 9: Handschallpegelmesser Norsonic 140, Stand: 27.07.2021\n(Quelle: Datenbank von Heine+Jud)\n\n## 5.3 Vorgehensweise bei der Messwerterfassung\n\nBevor die eigentliche Messung beginnt, ist eine Planung erforderlich, die den Standort der Messger\u00e4te, die Messzeitpunkte und die M\u00f6glichkeiten auf dem Betriebsgel\u00e4nde festgelegt. Somit wurde am 23.03.2023 die \u00f6rtliche Situation begutachtet und eine Pro- bemessung durchgef\u00fchrt, um alle Abl\u00e4ufe der Messung zu verinnerlichen und eventu- elle Optimierungen vorzunehmen. Am 24.04.2023 fand eine Messung statt die nicht aus- gewertet werden konnte, da ein Messger\u00e4t nicht richtig aufgezeichnet hat. In Tabelle 10 sind die Messungstage aufgef\u00fchrt. Die Tabelle 10 gibt einen \u00dcberblick \u00fcber die verschie- denen Datumsangaben, an denen die Messungen durchgef\u00fchrt wurden. - 2 DKD/DAkkS = Deutscher Kalibrierdienst/ Deutsche Akkreditierungsstelle GmbH, ist eine Deutsche Akkre- ditierungsstelle. Die DAkkS ist f\u00fcr die Akkreditierung von Konformit\u00e4tsbewertungen zust\u00e4ndig, die Pr\u00fc- fungen, Kalibrierungen, Inspektionen und Zertifizierungen durchf\u00fchren. [82]\n41\n5 Beschreibung der Untersuchungsmethodik\n\n| Datum | Zweck | 23.03.2023 | \u00d6rtliche | Begutachtung | und | Probemessung | 17.04.2023 | Messung | der | Verladevorg\u00e4nge | an | 8 | Verladezonen | 24.04.2023 | Messung | (Defekt) | 26.04.2023 | Messung | der | Verladevorg\u00e4nge | an | 8 | Verladezonen | 27.04.2023 | Messung | der | Verladevorg\u00e4nge | an | 8 | Verladezonen | 03.05.2023 | Messung | der | Verladevorg\u00e4nge | an | 8 | Verladezonen |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 10: \u00dcberblick \u00fcber die verschiedenen Messungstage\nAm Tag der Probemessung wurde ein geeigneter Ort gesucht, der eine nahezu st\u00f6rungs- freie Messung erm\u00f6glichte und den Betriebsablauf nicht beeintr\u00e4chtigte. Zun\u00e4chst wurde die gro\u00dfe Umschlaghalle als erstes Messort in Betracht gezogen. Allerdings traten bei der Positionierung der Mikrofone erste Schwierigkeiten auf, da im normalen Be- triebsablauf nahezu alle Verladestationen besetzt waren, wodurch es schwierig war, ein Mikrofon im Nahfeld zu platzieren. Im Fernfeld wiederum waren die Zugmaschinen in Bewegung. Diese Umst\u00e4nde erschwerten die Aufstellung der Mikrofone sowohl im Nah- als auch im Fernfeld. Durch den reichlichen Betrieb war zudem der Einfluss von Fremd- ger\u00e4uschen enorm gro\u00df und konnte nicht ausgeschlossen werden. Nach Absprache mit dem Lagerpersonal wurde die Probemessung im Exportbereich des Unternehmens fort- gef\u00fchrt, wo auf der einen Seite die Beladung und auf der anderen Seite die Entladung stattfanden (siehe Abbildung 10). Da die Entladestationen zu der Seite der gro\u00dfen Um- schlaghalle ausgerichtet sind, war die Positionierung der Mikrofone wie oben beschrie- ben aufgrund des hohen Betriebs nicht m\u00f6glich. Daher beschr\u00e4nkte sich der Bereich der Messung auf die Beladestationen des Exportbereichs. [IMAGE: ]\n\nAbbildung 10: Exportbereich von au\u00dfen\n42\n5 Beschreibung der Untersuchungsmethodik\n\n## Im Folgenden wird nun das eigentliche Messvorgehen detailliert beschrieben. Vor Be-\n\nginn der Messung m\u00fcssen die Messger\u00e4te auf ihre Funktionsf\u00e4higkeit gepr\u00fcft werden, um eine fehlerfreie Messung zu gew\u00e4hrleisten. Hierbei werden die Einstellungen der Schallpegelmesser kontrolliert, die Uhrzeit mit der Uhr des Protokollierers abgeglichen und die Mikrofone kalibriert.", - "embedding": [ - 0.012145699001848698, - -0.001116404659114778, - -0.0030690920539200306, - -0.0381031297147274, - -0.0023798123002052307, - 0.02648664079606533, - 0.0007684980519115925, - -0.013053849339485168, - -0.004870693199336529, - -0.020763330161571503, - 0.009244843386113644, - 0.015824036672711372, - -0.02921762503683567, - 0.009375512599945068, - -0.0012062396854162216, - 0.00848696194589138, - 0.028407476842403412, - -0.0033875980880111456, - 0.016490448266267776, - -0.016085375100374222, - -0.014229872263967991, - 0.011655689217150211, - -0.012145699001848698, - 0.009349378757178783, - 0.005435837432742119, - 0.004197746980935335, - 0.013066916726529598, - -0.020593460649251938, - -0.01658191718161106, - 0.015458161942660809, - -0.0008771167485974729, - -0.00296945683658123, - -0.00982632115483284, - 0.010897808708250523, - -0.023729519918560982, - -0.017352866008877754, - -0.003684870433062315, - -0.009205643087625504, - 0.02430446445941925, - -0.0049262274987995625, - -0.003144226735457778, - 0.000304826651699841, - 0.005912779830396175, - -0.01954810693860054, - -0.020136117935180664, - 0.014308273792266846, - 0.008950837887823582, - 0.01801927760243416, - -0.019874779507517815, - 0.008304025046527386, - 0.01121794804930687, - -0.012616108171641827, - -0.005667774938046932, - 0.01645124889910221, - 0.0028812550008296967, - -0.009427780285477638, - 0.012818644754588604, - 0.018385151401162148, - -0.01666031777858734, - -0.028302941471338272, - -0.041631195694208145, - -0.002920455764979124, - -0.023337513208389282, - 0.00468448968604207, - -0.00848696194589138, - -0.02945283055305481, - -0.025924762710928917, - -0.010616869665682316, - -0.027545060962438583, - -0.016359779983758926, - 0.016856322064995766, - 0.0344182588160038, - 0.0014349108096212149, - 0.004570154007524252, - 0.023285245522856712, - -0.02433059923350811, - 0.017875541001558304, - -0.025428220629692078, - 0.0036914038937538862, - 0.021664947271347046, - 0.02958349883556366, - -0.02963576652109623, - -0.03465346246957779, - 0.04278108477592468, - 0.014608812518417835, - -0.005811511073261499, - -0.010950076393783092, - 0.015288292430341244, - -0.013236786238849163, - -0.015614964999258518, - 0.02976643666625023, - 0.047354504466056824, - -0.006076116114854813, - -0.008787501603364944, - 0.02669571153819561, - 0.012518106028437614, - 0.01004845928400755, - 0.032040078192949295, - -0.0041160788387060165, - -0.013563459739089012, - -0.00614798441529274, - -0.013171452097594738, - 0.008715633302927017, - 0.001373659586533904, - -0.015432028099894524, - -0.006938532926142216, - 0.015445095486938953, - -0.017039259895682335, - -0.0019845380447804928, - -0.014504277147352695, - -0.01618991047143936, - 0.03828606382012367, - -0.004615888465195894, - -0.004005009774118662, - 0.03899167850613594, - -0.007121469359844923, - 0.03873034194111824, - -0.020697996020317078, - 0.01311265118420124, - 0.00782708264887333, - 0.019613441079854965, - 0.0177318062633276, - 0.01899929717183113, - -0.011146079748868942, - 0.025754893198609352, - -0.008049220778048038, - -0.01736593246459961, - -0.003374531166628003, - -0.017431266605854034, - -0.020867865532636642, - -0.01973104476928711, - 0.003134426660835743, - 0.02974030189216137, - 0.0013703928561881185, - -4.0834114770404994e-05, - -0.0028142870869487524, - -0.020776396617293358, - 0.002894321922212839, - -0.014060001820325851, - -0.02960963360965252, - 0.009480047971010208, - 0.0017803673399612308, - -0.021717214956879616, - -0.02646050602197647, - 0.012635708786547184, - 0.031151529401540756, - -0.01500082015991211, - 0.013445856980979443, - -0.009048840031027794, - 0.006847064476460218, - -0.010675670579075813, - -0.022736435756087303, - 0.007990419864654541, - -0.004805358592420816, - -0.00850002933293581, - 0.005710242781788111, - -0.0005565689643844962, - 0.015222958289086819, - -0.02903468906879425, - -0.021403608843684196, - 0.008055754005908966, - 0.01496161986142397, - 0.007428542245179415, - 0.005524038802832365, - 0.010460066609084606, - 0.00839549396187067, - 0.006298253778368235, - -0.002825720701366663, - -0.006327654235064983, - 0.005801710765808821, - -0.01894702948629856, - -0.009120707400143147, - -0.018646489828824997, - 0.026943981647491455, - -0.006513857748359442, - 0.008375893346965313, - -0.0013173085171729326, - 0.0058801122941076756, - -0.02503621205687523, - -0.03522840887308121, - -0.030785655602812767, - -0.006755596026778221, - -0.005501172039657831, - 0.006905865389853716, - -0.030994726344943047, - 0.003884140867739916, - -0.0075592114590108395, - 0.02913922443985939, - -0.005461971275508404, - -0.010714871808886528, - 0.016464315354824066, - 0.013733329251408577, - 0.0021821751724928617, - -0.004521152935922146, - -0.6359929442405701, - -0.006657593883574009, - 0.0074220085516572, - 0.01136168371886015, - -0.004488485865294933, - 0.027231454849243164, - 0.026447439566254616, - 0.005448904354125261, - 0.00018916402768809348, - 0.045681942254304886, - -5.045565194450319e-05, - -0.0015018787235021591, - -0.014608812518417835, - -0.003013557754456997, - -0.01970490999519825, - -0.023820988833904266, - -0.010597269050776958, - 0.009434313513338566, - 0.015549630858004093, - -0.004544020164757967, - -0.04824305698275566, - 0.015680300071835518, - 0.006899332161992788, - 0.01510535553097725, - -0.009702185168862343, - -0.01069527119398117, - -0.0002809386933222413, - -0.012106497772037983, - -0.0007403225172311068, - 0.01010072696954012, - -0.02950509823858738, - 0.013811730779707432, - -0.018228348344564438, - 0.015876304358243942, - 0.028041603043675423, - -0.0011703057680279016, - -0.016216043382883072, - 0.014465076848864555, - -0.004579954314976931, - 0.0003836365067400038, - -0.01090434193611145, - -0.010401265695691109, - 0.0028306208550930023, - -0.01196929533034563, - 0.0032585624139755964, - 0.001692165737040341, - 0.03290249779820442, - -0.016098441556096077, - 0.011368217878043652, - -0.011923561803996563, - 0.005965047515928745, - -0.0200969185680151, - 0.015575764700770378, - 0.011139546521008015, - 0.0223313607275486, - 0.0006721295067109168, - 0.026813313364982605, - -0.012113031931221485, - -0.0195742417126894, - 0.0016464315121993423, - -0.00036628200905397534, - 0.020397456362843513, - -0.0038090061862021685, - -0.020214520394802094, - -0.018163014203310013, - 0.017588069662451744, - -0.03358197584748268, - -0.03820766508579254, - 0.024552736431360245, - -0.0296880342066288, - -0.003100126050412655, - 0.0328502282500267, - -0.007487343158572912, - -0.017143795266747475, - 0.014517344534397125, - 0.014465076848864555, - 0.01663418486714363, - -0.009074973873794079, - 0.025206081569194794, - 0.02007078379392624, - -0.005314968526363373, - 0.004583220928907394, - -0.015353626571595669, - 0.013380522839725018, - 0.01897316239774227, - -0.012629174627363682, - -0.0038351400289684534, - 0.008219090290367603, - 0.018241414800286293, - -0.0044362181797623634, - 0.013733329251408577, - 0.04398323968052864, - -0.0031915942672640085, - -0.014674147590994835, - -0.008545763790607452, - 0.027623461559414864, - -0.011453152634203434, - 0.01791474223136902, - 0.0031213597394526005, - -0.03339903801679611, - -0.031517401337623596, - 0.010819407179951668, - 0.018724892288446426, - -0.02459193766117096, - 0.015275225043296814, - -0.015667233616113663, - -0.007722547743469477, - 0.006768662948161364, - 0.018254483118653297, - -0.023507382720708847, - 0.0008550663478672504, - -0.01443894300609827, - -0.011890893802046776, - -0.0029563899151980877, - -0.007500410079956055, - -0.0296880342066288, - 0.025232216343283653, - 0.023533517494797707, - -0.006945066154003143, - 0.0004973594914190471, - 0.008042687550187111, - -0.013589593581855297, - 0.046335287392139435, - -0.0030543918255716562, - -0.028433609753847122, - 0.026447439566254616, - 0.019874779507517815, - -0.0003468857903499156, - 0.007735614664852619, - -0.01120488066226244, - -0.0076506794430315495, - 0.001598247210495174, - 0.025415152311325073, - -0.013132250867784023, - 0.023128442466259003, - 0.035881754010915756, - 0.025702625513076782, - -0.008075354620814323, - 0.008062287233769894, - -0.02170414850115776, - -0.024892475455999374, - -0.0033875980880111456, - 0.003929875325411558, - -0.014073069207370281, - -0.004527686629444361, - -0.04999402165412903, - -0.0189208947122097, - 0.0054162368178367615, - 0.005896446295082569, - 0.0111656803637743, - -0.0008003486436791718, - -0.010414332151412964, - 0.01332172192633152, - 0.026682643219828606, - -0.0024402467533946037, - 0.010649536736309528, - -0.026290636509656906, - -0.02170414850115776, - -0.017561936751008034, - -0.01980944536626339, - 0.011727557517588139, - 0.023468181490898132, - -0.05995101481676102, - -0.0254804864525795, - -0.0007341973832808435, - -0.02606849931180477, - 0.025911696255207062, - -0.005631841253489256, - -0.0216780137270689, - -0.026159966364502907, - 0.0036652700509876013, - 0.019325969740748405, - -0.008506562560796738, - 0.00869603268802166, - 0.004406817723065615, - 0.009401646442711353, - -0.025428220629692078, - -0.006409322377294302, - -0.004795558284968138, - -0.018267549574375153, - 0.00829095859080553, - -0.010270596481859684, - -0.02498394437134266, - 0.0027865199372172356, - 0.03444439172744751, - -0.0007652313215658069, - 0.006595526356250048, - -0.0016790988156571984, - -0.02414766140282154, - 0.04398323968052864, - -0.014974686317145824, - 0.008578430861234665, - -0.011988895945250988, - 0.0088005680590868, - -0.020632661879062653, - -0.008859369903802872, - 0.025336751714348793, - -0.01510535553097725, - -0.011387817561626434, - 0.018372084945440292, - 0.008134155534207821, - 0.01723526231944561, - 0.035986289381980896, - -0.015928572043776512, - 0.01473948173224926, - -0.018907828256487846, - 0.005922580137848854, - -0.017718739807605743, - 0.03264115750789642, - 0.02919149212539196, - 0.011289816349744797, - -0.02051505818963051, - -0.02386019006371498, - -0.012367836199700832, - 0.003541134297847748, - 0.046884097158908844, - 0.0034333323128521442, - 0.00994392391294241, - 0.004063811153173447, - 0.011753691360354424, - 0.013589593581855297, - -0.010682204738259315, - 0.047014765441417694, - -0.0032683624885976315, - -0.012890513055026531, - -0.007820549421012402, - 0.00450481940060854, - 0.0038776074070483446, - 0.0026427838020026684, - -0.012681442312896252, - -0.018306750804185867, - -0.00724560534581542, - 0.008584964089095592, - 0.023285245522856712, - 0.021403608843684196, - 0.031099261716008186, - 0.009251376613974571, - 0.005063430406153202, - 0.02438286691904068, - 0.015366693958640099, - 0.025624223053455353, - 0.026787178590893745, - 0.013445856980979443, - -0.009310178458690643, - 0.004354550037533045, - -0.01778407394886017, - 0.023115376010537148, - 0.02480100840330124, - 0.004570154007524252, - 4.361593892099336e-05, - -0.00038690323708578944, - -0.01458267867565155, - -0.020920133218169212, - -0.00026338003226555884, - 0.025781026110053062, - -0.01453041099011898, - 0.031229929998517036, - -0.02251429669559002, - -0.011623022146522999, - 0.01973104476928711, - -0.012322102673351765, - 0.010675670579075813, - 0.01146621908992529, - -0.02004465088248253, - 0.015366693958640099, - 0.01099580992013216, - -0.0027783531695604324, - -0.018607288599014282, - -0.023520449176430702, - -0.01639898121356964, - -0.0021576746366918087, - 0.0023389779962599277, - -0.01069527119398117, - 0.017888609319925308, - 0.03833833336830139, - -0.031621936708688736, - 0.006530191749334335, - 0.020240653306245804, - 0.03271955996751785, - 0.015222958289086819, - -0.01618991047143936, - -0.027571193873882294, - -0.01055153552442789, - 0.025075413286685944, - 0.0029678235296159983, - -0.00752654392272234, - -0.03444439172744751, - 0.007885884493589401, - -0.0357249490916729, - -0.0023847122211009264, - 0.004828225821256638, - -0.003495400305837393, - -0.02412152849137783, - -0.020136117935180664, - 0.016255244612693787, - -0.002910655690357089, - 0.015327492728829384, - -0.003459466155618429, - 0.006017315201461315, - 0.015405894257128239, - -0.011335549876093864, - -0.014935486018657684, - -0.01470028143376112, - -0.030498184263706207, - 0.013785596936941147, - -0.0001514945615781471, - -0.01666031777858734, - -0.022239891812205315, - 0.006357055157423019, - -0.006958133075386286, - -0.01115261297672987, - 0.005997714586555958, - -0.0024941477458924055, - -0.0028028537053614855, - -0.0034365991596132517, - -0.0005994447856210172, - -0.018176080659031868, - -0.006886265240609646, - 0.030759520828723907, - -0.002139707561582327, - -0.0292960274964571, - -0.022906305268406868, - -0.0039658090099692345, - 0.008173356764018536, - 0.025389019399881363, - 0.02482714131474495, - 0.014661080203950405, - 0.02251429669559002, - -0.02903468906879425, - -0.004919694270938635, - -0.006089183036237955, - -0.041343722492456436, - 0.02866881527006626, - 0.02947896346449852, - -0.001038819900713861, - 0.020789464935660362, - 0.030968591570854187, - -0.011975829489529133, - 0.0009906355990096927, - -0.02033212222158909, - 0.015131489373743534, - -0.004831492435187101, - 0.018986230716109276, - 0.028041603043675423, - -0.005448904354125261, - 0.002499047899618745, - 0.006141450721770525, - 0.03454892709851265, - -0.01479174941778183, - -0.02375565469264984, - 0.007154136896133423, - 0.011845160275697708, - 0.0025023145135492086, - -0.020907066762447357, - -0.020188385620713234, - 0.032118480652570724, - 0.01010072696954012, - 0.004929494112730026, - -0.015288292430341244, - -0.007709480822086334, - 0.008493496105074883, - 0.015144556760787964, - 0.010264063253998756, - -0.01697392389178276, - 0.013498124666512012, - 0.02154734544456005, - 0.007539610844105482, - -0.010571135208010674, - 0.00360646890476346, - -0.0014716614969074726, - 0.015432028099894524, - 0.01320411916822195, - 0.0023406115360558033, - 0.0030788921285420656, - 0.02027985453605652, - -0.01647738181054592, - 0.006118583492934704, - -0.01233516912907362, - -0.005458704195916653, - -0.023585785180330276, - 0.008114554919302464, - -0.014987753704190254, - -0.012289434671401978, - -0.001502695376984775, - -0.03130833059549332, - -0.010741005651652813, - 0.008826701901853085, - -0.00013424214557744563, - -0.032405953854322433, - -0.000988185522146523, - -0.02380792237818241, - 0.017888609319925308, - -0.02900855429470539, - 0.010146460495889187, - 0.004393750801682472, - -0.006245986092835665, - -0.019874779507517815, - -0.009591116569936275, - 0.04312082380056381, - -0.00021968752844259143, - 0.015549630858004093, - 0.0030070242937654257, - -0.007304406259208918, - 0.017666472122073174, - -0.0070626684464514256, - 0.002858388004824519, - -0.004772691056132317, - -0.02879948355257511, - -0.0130081158131361, - 0.02480100840330124, - -0.006004248280078173, - 0.003515000455081463, - 0.012838245369493961, - 0.011394351720809937, - -0.0016366313211619854, - 0.03339903801679611, - 0.016908589750528336, - -0.011668756604194641, - -0.012465838342905045, - 0.003795939264819026, - -0.008794034831225872, - 0.013981601223349571, - 0.0031295265071094036, - -0.008996572345495224, - 0.012524639256298542, - -0.031987812370061874, - -0.012341702356934547, - 0.0015614965232089162, - 0.017875541001558304, - 0.011231014505028725, - -0.011335549876093864, - 0.01136168371886015, - 0.007304406259208918, - 0.020815597847104073, - -0.00042794152977876365, - -0.004932761192321777, - 0.008323625661432743, - -0.0012895413674414158, - 0.004491752479225397, - 0.01479174941778183, - 0.007095335517078638, - 0.032196883112192154, - 0.020985467359423637, - 0.017248330637812614, - 0.0008591497899033129, - -0.0338955819606781, - 0.0528164766728878, - -0.008669898845255375, - -0.011289816349744797, - 0.03948822245001793, - -0.01775793917477131, - 0.015026954002678394, - -0.03815539553761482, - -0.000738689152058214, - 0.009042305871844292, - 0.009702185168862343, - 0.004096478223800659, - -0.011244081892073154, - -0.028590412810444832, - -0.025402085855603218, - 0.012354769743978977, - 0.021220672875642776, - -0.01907769776880741, - 0.004357816651463509, - -0.023285245522856712, - 0.011884360574185848, - -0.004609354771673679, - 0.023768721148371696, - 0.009035772643983364, - -0.023820988833904266, - -0.036299895495176315, - 0.012433171272277832, - -0.012204499915242195, - 0.014870150946080685, - -0.022658033296465874, - 0.007938152179121971, - -0.031177662312984467, - -0.014256006106734276, - -0.015758700668811798, - -0.02359885163605213, - -0.0033026630990207195, - -0.00747427623718977, - 0.009676051326096058, - 0.02267109975218773, - 0.02976643666625023, - 0.021717214956879616, - -0.011093812063336372, - 0.009166441857814789, - -0.00942124705761671, - -0.0030070242937654257, - -0.03402625024318695, - -0.0068405307829380035, - -0.013210652396082878, - 0.01999238319694996, - -0.008506562560796738, - -0.005710242781788111, - -0.004080144688487053, - 0.006984266918152571, - -0.013589593581855297, - 0.022475097328424454, - 0.0002305085799889639, - -0.007030000910162926, - -0.011198347434401512, - -0.015706432983279228, - -0.001639081398025155, - -0.007996953092515469, - 0.017352866008877754, - 0.02409539371728897, - -0.01311265118420124, - -0.015066155232489109, - 0.0017640336882323027, - -0.008892036974430084, - 0.0006578376051038504, - -0.00966951809823513, - 0.01873795874416828, - -0.02659117616713047, - 0.03554201498627663, - 0.005844178609549999, - 0.0029416896868497133, - 0.005334568675607443, - 0.0021250073332339525, - -0.02443513460457325, - -0.036796435713768005, - 0.01868569105863571, - 0.009741386398673058, - 0.0005467687733471394, - -0.022056955844163895, - -0.0007623729179613292, - -0.015118422918021679, - -0.0111656803637743, - 0.018332883715629578, - -0.02438286691904068, - -0.01694779098033905, - -0.016072306782007217, - -0.03909621387720108, - -0.018581155687570572, - -0.005412970203906298, - 0.000712555309291929, - 0.026891713961958885, - 0.0106430035084486, - 0.01676485314965248, - 0.008526163175702095, - -0.006027115508913994, - -0.010675670579075813, - 0.004805358592420816, - -0.019744111225008965, - 0.03606468811631203, - 0.016111508011817932, - 0.0346795953810215, - 0.02430446445941925, - -0.028407476842403412, - -0.028355209156870842, - -0.056971754878759384, - 0.01962650939822197, - -0.02267109975218773, - 0.023729519918560982, - 0.02274950221180916, - -0.02913922443985939, - 0.0014626779593527317, - 0.017509669065475464, - 0.007095335517078638, - -0.0023732788395136595, - -0.005514238961040974, - 0.035986289381980896, - 0.017940877005457878, - -0.010812873020768166, - -0.021129203960299492, - 0.00993085652589798, - -0.010525401681661606, - -0.003400665009394288, - 0.009094573557376862, - 0.003515000455081463, - -0.012668375857174397, - -0.00018242640362586826, - -0.013615727424621582, - 0.05467198044061661, - -0.001383459777571261, - 0.021455876529216766, - 0.025336751714348793, - -0.02133827470242977, - 0.013132250867784023, - -0.028276806697249413, - -0.020632661879062653, - 0.01650351658463478, - -0.012322102673351765, - 0.022579632699489594, - 0.0014659446896985173, - -0.010466599836945534, - 0.0088005680590868, - -0.018568089231848717, - -0.0052431002259254456, - -0.01902543008327484, - 0.011525020003318787, - 0.01060380320996046, - -0.0006978550227358937, - 5.860333658347372e-06, - 0.009584583342075348, - -0.016882456839084625, - 0.027257587760686874, - 0.00747427623718977, - -0.012576906941831112, - -0.01897316239774227, - 0.018711823970079422, - -0.007794415578246117, - 0.01238743681460619, - 0.016163775697350502, - -0.01801927760243416, - -0.026604242622852325, - -0.012269834987819195, - -0.013230253010988235, - 0.013850932009518147, - -0.009101107716560364, - -0.012929714284837246, - -0.023298311978578568, - -0.011459685862064362, - 0.00839549396187067, - 0.0047334907576441765, - 0.006781729869544506, - -0.022684168070554733, - -0.017640337347984314, - -0.006977733690291643, - 0.0030968592036515474, - -0.008617631159722805, - 0.011570754460990429, - 0.030890190973877907, - -0.003237328492105007, - 0.0008738500764593482, - -0.007095335517078638, - 0.008617631159722805, - -0.001150705385953188, - 0.027205320075154305, - 0.012498505413532257, - -0.02869494818150997, - -0.012955848127603531, - 0.0018146680667996407, - 0.010264063253998756, - -0.020789464935660362, - -0.0006259869551286101, - -0.00021764583652839065, - 0.0007341973832808435, - 0.014399741776287556, - -0.007343607023358345, - -0.0029482231475412846, - -0.015719501301646233, - 0.006017315201461315, - -0.02139054238796234, - 0.014412809163331985, - -0.023232977837324142, - 0.013955467380583286, - 0.019535040482878685, - -0.026761045679450035, - 0.0025888828095048666, - -0.02222682535648346, - -0.012981981970369816, - 0.0073109399527311325, - 0.02183481678366661, - -0.036508966237306595, - -0.012113031931221485, - -0.023951658979058266, - -0.01702619157731533, - -0.017196062952280045, - 0.002044972497969866, - -0.007389341481029987, - 0.031831007450819016, - -0.013027715496718884, - -0.006807863712310791, - -0.006441989913582802, - 0.012132631614804268, - 0.0001919203350553289, - 0.0032863295637071133, - 0.011603421531617641, - 0.007637612521648407, - -0.032562755048274994, - -0.005161432083696127, - -0.02222682535648346, - 0.04042904078960419, - 0.01658191718161106, - -0.010571135208010674, - -0.012256767600774765, - -0.006314587313681841, - -0.03891327604651451, - -0.019090764224529266, - -0.010068058967590332, - 0.007996953092515469, - -0.006419122684746981, - 0.011655689217150211, - -0.0009073340333998203, - 0.03541134297847748, - 0.007324006874114275, - 0.017666472122073174, - -0.018293682485818863, - -0.026525840163230896, - 0.008637231774628162, - 0.006134917493909597, - 0.012968914583325386, - -0.025689557194709778, - -0.031543537974357605, - 0.00895737111568451, - 0.021847885102033615, - -0.0166864525526762, - 0.015732567757368088, - 0.014203738421201706, - -0.0028975887689739466, - -0.027937067672610283, - 0.010159527882933617, - 0.012570373713970184, - 0.031752608716487885, - -0.002913922304287553, - 0.009937389753758907, - -0.020449724048376083, - 0.009728319011628628, - 0.013086517341434956, - 0.011694890446960926, - -0.04743290692567825, - -0.006046715658158064, - 0.02911308966577053, - -0.00721293780952692, - -0.0012519739102572203, - 0.01894702948629856, - -0.027545060962438583, - 0.013694128952920437, - -0.037632718682289124, - 0.027153052389621735, - 0.0097871208563447, - -0.03802472725510597, - 0.004687756299972534, - 0.020711062476038933, - -0.027989335358142853, - -0.03818152844905853, - 0.020737197250127792, - -0.03015844337642193, - 0.017378998920321465, - 0.005674308631569147, - -0.04317309334874153, - 0.01624217815697193, - -0.0037110042758286, - 0.025362884625792503, - -0.010989276692271233, - 0.00016384688206017017, - -0.013707195408642292, - -0.02984483726322651, - -0.030576584860682487, - 0.027754131704568863, - 0.01931290328502655, - -0.010322864167392254, - 0.0019616708159446716, - 0.0052953679114580154, - -0.0042630815878510475, - 0.012975447811186314, - -0.03277182579040527, - 0.00853922963142395, - -0.027963202446699142, - -0.004514619708061218, - 0.01679098792374134, - -0.004419884644448757, - -0.000971035216934979, - -0.00666086096316576, - -0.009231776930391788, - -0.004103011917322874, - -0.012433171272277832, - 0.18711824715137482, - -0.025937829166650772, - -0.025323685258626938, - 0.021978553384542465, - -0.02503621205687523, - -0.00942124705761671, - 0.013811730779707432, - 0.02115533873438835, - 0.02222682535648346, - 0.012269834987819195, - 0.008885503746569157, - -0.015850169584155083, - 0.004919694270938635, - 0.004700823221355677, - 0.01132248342037201, - -0.018084611743688583, - -0.02246202901005745, - -0.015993906185030937, - -0.011159147135913372, - 0.025493554770946503, - 0.01931290328502655, - -0.030132310464978218, - 0.009447380900382996, - -0.0007145970012061298, - 0.046570491045713425, - 0.01684325560927391, - 0.000257663254160434, - 0.025493554770946503, - 0.02246202901005745, - 0.0254804864525795, - -0.02617303468286991, - 0.001141721848398447, - 0.021717214956879616, - 0.00012066480849171057, - -0.011936628259718418, - 0.005693908780813217, - 0.0073109399527311325, - 0.0032111946493387222, - 0.01986171305179596, - 0.02144281007349491, - -0.0013450757833197713, - -0.0331115648150444, - 0.0057853772304952145, - -0.032223016023635864, - 0.006912399083375931, - 0.013419723138213158, - -0.00276528624817729, - 0.002860021311789751, - -0.011747158132493496, - -0.0017542334971949458, - -0.0002466380537953228, - 0.005971580743789673, - 0.002139707561582327, - 0.01565416529774666, - -0.007755214814096689, - -0.027074651792645454, - 0.0028665547724813223, - -0.004024610389024019, - -0.008833236061036587, - 0.005664508324116468, - -0.03428759053349495, - 0.014974686317145824, - -0.001400610082782805, - 0.027179187163710594, - -0.0454467348754406, - 0.0013940766220912337, - -0.011420485563576221, - -0.003547667758539319, - -0.0018653023289516568, - -0.013171452097594738, - 0.009956990368664265, - -0.003263462334871292, - -0.011642622761428356, - 0.02201775461435318, - -0.01055153552442789, - -0.03298089653253555, - 0.030341381207108498, - 0.017169928178191185, - 0.03535907715559006, - 0.012354769743978977, - -0.0031458602752536535, - 0.006553058512508869, - -0.015837103128433228, - -0.013628793880343437, - 0.0020580394193530083, - -0.012015029788017273, - 0.0011115046218037605, - -0.014517344534397125, - 0.009793654084205627, - -0.031439002603292465, - -0.018163014203310013, - 0.003580335061997175, - 0.0016545982798561454, - -0.009172975085675716, - 0.0034627330023795366, - -0.0056383744813501835, - 0.026865581050515175, - -0.0025627489667385817, - 0.002312844153493643, - -0.012942780740559101, - -0.02467033825814724, - 0.03321610018610954, - 0.028302941471338272, - -0.02519301511347294, - -0.030811788514256477, - 0.008944304659962654, - -0.006755596026778221, - 0.040507443249225616, - -0.010466599836945534, - 0.006455056834965944, - 0.001226656837388873, - -0.04280721768736839, - 0.01454347837716341, - -0.02940056286752224, - 0.012374370358884335, - 0.04437524825334549, - 0.005804977845400572, - 0.004939294420182705, - -0.0011784725356847048, - 0.008042687550187111, - 0.010420866310596466, - -0.0017215663101524115, - 0.017980076372623444, - -0.0004765341291204095, - 0.013040782883763313, - -0.030759520828723907, - -0.02971416898071766, - 0.031883276998996735, - 0.004292482044547796, - -0.0027244521770626307, - 0.010172594338655472, - 0.0034071984700858593, - 0.03439212590456009, - -0.00735014071688056, - 0.013916266150772572, - 0.0007341973832808435, - 0.004579954314976931, - -0.0433560274541378, - -0.013373988680541515, - -0.013641861267387867, - 0.04040290787816048, - -0.002757119480520487, - -0.004642022307962179, - 0.004279415123164654, - 0.02529755048453808, - 0.0019796378910541534, - 0.036561232060194016, - 0.002327544614672661, - -0.004981761798262596, - -0.02193935215473175, - -0.00660859327763319, - -0.003831873182207346, - 0.006971199996769428, - -0.031674206256866455, - 0.012302502058446407, - 0.008245224133133888, - -0.010290197096765041, - -0.0378417894244194, - 0.01485708449035883, - 0.0019878046587109566, - -0.007219471503049135, - -0.027937067672610283, - 0.018411286175251007, - -0.02869494818150997, - -0.015484295785427094, - 0.010237929411232471, - -0.16412046551704407, - 0.009166441857814789, - 0.0214166771620512, - -0.030341381207108498, - 0.016098441556096077, - 0.013968533836305141, - 0.031726472079753876, - 0.02666957676410675, - -0.03130833059549332, - 0.006183918099850416, - 0.021037735044956207, - -0.005749443080276251, - -0.018332883715629578, - -0.022239891812205315, - -0.0012201233766973019, - -0.0023504116106778383, - -0.037110041826963425, - 0.022840971127152443, - 0.018398217856884003, - 0.007964286021888256, - -0.0023912456817924976, - -0.021377475932240486, - 0.015549630858004093, - -0.0037240711972117424, - -0.013106117025017738, - 0.006174118258059025, - -0.025558888912200928, - 0.017823273316025734, - -0.006781729869544506, - -0.02472260594367981, - -0.016098441556096077, - -0.010571135208010674, - 0.013125717639923096, - 0.004818425513803959, - 0.007043067831546068, - -0.013929333537817001, - 0.008232157677412033, - -0.007487343158572912, - -0.004958895035088062, - 0.014020801521837711, - -0.0018473353702574968, - 0.03418305516242981, - -0.0056187743321061134, - 0.005965047515928745, - -0.002286710310727358, - 0.03920074924826622, - 0.02856427989900112, - -0.030994726344943047, - 0.0019339036662131548, - -0.012727176770567894, - 0.012197966687381268, - -0.02493167668581009, - -0.014151470735669136, - 0.02919149212539196, - -0.0015329126035794616, - 0.0005177765851840377, - -0.01692165620625019, - 0.022448962554335594, - 0.010270596481859684, - 0.00961725041270256, - -0.0037894058041274548, - -0.03384331241250038, - 0.003982143010944128, - -0.013132250867784023, - -0.020501991733908653, - -0.010433932766318321, - -0.001477378304116428, - 0.02903468906879425, - -0.01196929533034563, - 0.0016015139408409595, - 0.0037730722688138485, - -0.017405133694410324, - 0.00977405346930027, - -0.016438180580735207, - 0.01907769776880741, - 0.0020123051945120096, - 0.002848587930202484, - -0.009375512599945068, - 0.017666472122073174, - -0.002815920626744628, - -0.0020368057303130627, - 0.036116957664489746, - -0.007885884493589401, - -0.030628852546215057, - -0.017431266605854034, - -0.009571515955030918, - -0.01203463040292263, - 0.023285245522856712, - 0.004086678382009268, - 0.020292920991778374, - 0.01801927760243416, - -0.01079980656504631, - -0.008493496105074883, - -0.015236024744808674, - 0.03582948446273804, - 0.0028110204730182886, - -0.019169166684150696, - 0.0026052165776491165, - -0.01494855247437954, - -0.0072848061099648476, - 0.002971090143546462, - -0.0053705028258264065, - -0.012844778597354889, - 0.035881754010915756, - -0.005857245530933142, - -0.002566015813499689, - 0.002585616195574403, - 0.02020145393908024, - 0.03899167850613594, - -0.014360541477799416, - -0.02524528279900551, - -0.010505801066756248, - 0.021717214956879616, - 0.011949695646762848, - -0.0001258711563423276, - 0.018345950171351433, - -0.00736974086612463, - -0.017405133694410324, - -0.005997714586555958, - 0.008480428718030453, - 0.030654985457658768, - -0.006484457291662693, - -0.006441989913582802, - 0.015418961644172668, - -0.01713072694838047, - -0.02898242138326168, - -0.08807101845741272, - -0.002771819708868861, - 0.024552736431360245, - 0.010832473635673523, - 0.014033867977559566, - 0.025715691968798637, - 0.02274950221180916, - 0.002822454087436199, - 0.013641861267387867, - 0.04267654940485954, - -0.03865193948149681, - -0.03548974543809891, - -0.01485708449035883, - -0.014046935364603996, - -0.0006737628718838096, - -0.017901675775647163, - 0.00014496110088657588, - -0.025545822456479073, - -0.011975829489529133, - 0.023389780893921852, - -0.018489686772227287, - 0.0018685690592974424, - -0.019143031910061836, - -0.006481190677732229, - -0.028433609753847122, - -0.011871294118463993, - -0.041788000613451004, - 0.01309958379715681, - 0.018541954457759857, - 0.0014136770041659474, - 0.009676051326096058, - -0.013746396638453007, - -0.001357325934804976, - -0.010629937052726746, - -0.010597269050776958, - -0.0010339197469875216, - -0.013681061565876007, - -0.004429684951901436, - 0.03316383436322212, - -0.02659117616713047, - -0.0003987451200373471, - 0.02606849931180477, - 0.005791910924017429, - -0.023442048579454422, - 0.005285567604005337, - -0.005484838038682938, - -0.025715691968798637, - 0.012080364860594273, - -0.005955247208476067, - 0.0007035717717371881, - -0.018724892288446426, - -0.027362123131752014, - -0.02269723452627659, - 0.004080144688487053, - 0.03590788692235947, - -0.002319377614185214, - -0.005158165469765663, - 0.005409703589975834, - -0.017117660492658615, - -0.020684929564595222, - -0.036273758858442307, - 0.01749660074710846, - -0.030262978747487068, - 0.02401699312031269, - -0.00885283574461937, - -0.00484129274263978, - -0.011740624904632568, - -0.012975447811186314, - 0.014922418631613255, - -0.0016039640177041292, - -0.02144281007349491, - 0.001545979524962604, - -0.01085207425057888, - 0.0073370737954974174, - -0.030994726344943047, - -0.003988676238805056, - -0.030419781804084778, - -0.0006039365543983877, - -0.001039636554196477, - 0.0044362181797623634, - 0.004001743160188198, - -0.027388257905840874, - 0.030393648892641068, - -0.010649536736309528, - 0.02359885163605213, - 0.015667233616113663, - 0.00041446625255048275, - 0.012015029788017273, - 0.015262158587574959, - -0.013955467380583286, - 0.004501552786678076, - 0.027858667075634003, - 0.030759520828723907, - 0.013458924368023872, - -0.02958349883556366, - 0.015288292430341244, - -0.0023259110748767853, - 0.0020221052691340446, - -0.0007223555003292859, - 0.008219090290367603, - -0.003160560503602028, - -0.03410465270280838, - -0.05472424626350403, - 0.02051505818963051, - 0.02619916759431362, - 0.0013099584029987454, - -0.018803292885422707, - -0.02149507775902748, - 0.01458267867565155, - 0.009297111071646214, - 0.026551974937319756, - 0.002757119480520487, - -0.020776396617293358, - 0.001572113367728889, - -0.01146621908992529, - -0.005651441402733326, - -0.03922688215970993, - -0.007944685406982899, - 0.0017395332688465714, - 0.025937829166650772, - 0.008493496105074883, - -0.011636089533567429, - -0.017483534291386604, - 0.022344427183270454, - 0.007676813285797834, - 0.013249853625893593, - -0.009963523596525192, - -0.011041544377803802, - -0.00606304919347167, - -0.0020564061123877764, - 0.0016774653922766447, - -0.020946267992258072, - 0.018163014203310013, - 0.010636470280587673, - -0.010211795568466187, - 0.014399741776287556, - -0.0033875980880111456, - -0.009970057755708694, - 0.01731366477906704, - 0.04536833614110947, - 0.019352102652192116, - 0.02963576652109623, - -0.014060001820325851, - -0.011087278835475445, - 0.007670280057936907, - -0.01652964949607849, - 0.0009653184679336846, - 0.006262319628149271, - 0.017405133694410324, - -0.014164537191390991, - 0.007252138573676348, - -0.030393648892641068, - 0.032066214829683304, - 0.01801927760243416, - -0.0050274962559342384, - -0.006729462184011936, - -0.004367616958916187, - 0.002566015813499689, - 0.006023848429322243, - 0.01437360793352127, - 0.021325208246707916, - -0.05059510096907616, - 0.04299015551805496, - 0.010963142849504948, - -0.0012756576761603355, - -0.02017531916499138, - 0.005471771117299795, - -0.018228348344564438, - -0.013315187767148018, - -0.005922580137848854, - -0.004815158899873495, - -0.02183481678366661, - -0.024134594947099686, - -0.009244843386113644, - 0.025519687682390213, - 0.02947896346449852, - -0.00666086096316576, - -0.012799045071005821, - -0.014308273792266846, - 0.013191052712500095, - -0.0011449885787442327, - 0.00885283574461937, - 0.016111508011817932, - 0.025101546198129654, - -0.003364731092005968, - 0.002414112910628319, - 0.0331115648150444, - 0.012433171272277832, - -0.014987753704190254, - -0.0012511572567746043, - -0.0012062396854162216, - 0.004517886321991682, - -0.021847885102033615, - 0.01428213994950056, - -0.005043829791247845, - 0.00450481940060854, - 0.020214520394802094, - 0.02274950221180916, - 0.012818644754588604, - -0.0012813744833692908, - 0.03358197584748268, - 0.022056955844163895, - 0.0014038768131285906, - 0.0021446077153086662, - -0.0066183931194245815, - -0.013158384710550308, - 0.006827463861554861, - 0.03321610018610954, - -0.004070344381034374, - -0.03528067469596863, - 0.005396636668592691, - 0.01765340380370617, - -0.013053849339485168, - 0.0007880984339863062, - 0.027309855446219444, - 0.015314426273107529, - -0.006144717335700989, - 0.03449666127562523, - -0.012988515198230743, - -0.013093050569295883, - -0.02898242138326168, - 0.0218086838722229, - 0.013230253010988235, - 0.001143355155363679, - 0.007879350334405899, - -0.008480428718030453, - 0.017143795266747475, - -0.012152232229709625, - 0.002877988386899233, - -0.01443894300609827, - 0.013994667679071426, - -0.02004465088248253, - 0.02519301511347294, - 0.001572113367728889, - -0.0026084831915795803, - -0.01912996545433998, - -0.016751786693930626, - -0.006931999232620001, - 0.013628793880343437, - -0.005831111688166857, - -0.0034725330770015717, - 0.12732402980327606, - 0.020606527104973793, - -0.008682966232299805, - 0.016333645209670067, - -0.0030184576753526926, - 0.023533517494797707, - 0.00506996363401413, - -0.0009375512599945068, - -0.008206023834645748, - -0.056396812200546265, - 0.00616758456453681, - -0.0027179187163710594, - 0.0029857903718948364, - -0.019979314878582954, - -0.010538468137383461, - 0.01496161986142397, - 0.0020319055765867233, - 0.01443894300609827, - -0.03261502459645271, - -0.004985028877854347, - 0.04461045190691948, - -0.03778952360153198, - 0.013236786238849163, - 0.03303316608071327, - -0.0002307127433596179, - -0.007925084792077541, - 0.019012363627552986, - 0.01501388754695654, - -8.769125997787341e-05, - -0.030289113521575928, - 0.005945446901023388, - 0.00417161313816905, - -0.05791257321834564, - -0.008304025046527386, - 0.017888609319925308, - -0.01454347837716341, - -0.0019273702055215836, - -0.01443894300609827, - 0.02004465088248253, - 0.00034647746360860765, - 0.010819407179951668, - 0.030942458659410477, - -0.010002724826335907, - -0.020658794790506363, - 0.010061525739729404, - -0.010897808708250523, - 0.00013465048687066883, - -0.010930475778877735, - -0.006301520392298698 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 20, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 848 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000021.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000021.json deleted file mode 100644 index 14dcf9cb96b63fd81fb7cba8485ddf8ab0a296ac..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000021.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000021", - "content": "Vor Be-\n\nginn der Messung m\u00fcssen die Messger\u00e4te auf ihre Funktionsf\u00e4higkeit gepr\u00fcft werden, um eine fehlerfreie Messung zu gew\u00e4hrleisten. Hierbei werden die Einstellungen der Schallpegelmesser kontrolliert, die Uhrzeit mit der Uhr des Protokollierers abgeglichen und die Mikrofone kalibriert. W\u00e4hrend der Messung sollten alle relevanten Einflussfak- toren wie Witterung, Windrichtung und Verkehr ber\u00fccksichtigt werden. Das Ziel der Schallpegelmessung ist es, an jeder Mikrofonposition den A-bewerteten Schalldruckpe- gel der Verladevorg\u00e4nge \u00fcber eine gew\u00e4hlte Messdauer aufzunehmen. Um alle Vor- g\u00e4nge vollst\u00e4ndig ohne manuelle Unterbrechung aufzunehmen, wurde eine Dauermes- sung durchgef\u00fchrt. Hierbei wurden die Mikrofone parallel betrieben. Nach Start der Messung begab sich der jeweilige Messgehilfe auf die vorab abgesprochene Position und die Messung begann. Um sp\u00e4ter die Richtcharakteristik der Verladevorg\u00e4nge zu be- stimmen, wurden Schalldruckpegel von Messpositionen entlang einer vorher gew\u00e4hlten Kreisbahn um einen Anh\u00e4nger gemessen. An jeder Messposition der Kreisbahn wurden nach Ermessen des Messgehilfen mehrere Verladevorg\u00e4nge aufgenommen. \u00dcber die mitaufgezeichnete Tonaufzeichnung, Marker und Sprach- und Textnotizen lassen sich Messungen aussagekr\u00e4ftig dokumentieren. Ein Dauermarker wird vom Messgehilfen ge- setzt, wenn ein Fremdger\u00e4uschereignis, beispielsweise eine vorbeifahrende Zugma- schine, aufritt. Um einen Positionswechsel der variablen Messposition anzuk\u00fcndigen und die Abmessungen zu dokumentieren, wird zudem ein Marker und eine Sprachnotiz gesetzt. In der Umschlaghalle des Exportbereichs wurde jeder Zeitpunkt eines einzelnen Arbeitsschrittes einer Beladung protokolliert. Hierbei wurden K\u00fcrzel den Verladezonen\n\n## und Flurf\u00f6rderger\u00e4te zugeordnet, umso die Protokollierung zu vereinfachen. W\u00e4hrend der Messung wurden somit folgende Kenngr\u00f6\u00dfen aufgenommen: der A-be- wertete Schalldruckpegel LAeq, Der maximale Schalldruckpegel LAFmax, der Taktmaximal- pegel LAFTeq, und die Abst\u00e4nde der Messpositionen. Um die Genauigkeit der Schalldruck- pegelmessung bei der Beladung mit einem Flurf\u00f6rderzeug zu erh\u00f6hen, ist es wichtig, dass die Messungen mehrmals wiederholt wird. Durch die Wiederholungen k\u00f6nnen zu- f\u00e4llige Messfehler reduziert werden. Des Weiteren sollten die Messungen an verschie- denen Tagen durchgef\u00fchrt werden, um die Ergebnisse zu vergleichen und sicherzustel- len, dass die Messung repr\u00e4sentativ f\u00fcr die gesamte Beladungsaktivit\u00e4t ist. Die Ergeb- nisse der wiederholten Messungen sollten dann gemittelt werden, um einen Durch- schnittswert zu erhalten, der repr\u00e4sentativ f\u00fcr die Messungen ist und die Messgenauig- keit erh\u00f6ht. 43\n5 Beschreibung der Untersuchungsmethodik\n\n## 5.4 Messpositionen\n\nDie Beschreibung der Messpositionen ist von entscheidender Bedeutung, um genaue und repr\u00e4sentative Messergebnisse zu erzielen. Im Folgenden werden die verschiede- nen Messpositionen erl\u00e4utert, um einen umfassenden \u00dcberblick \u00fcber die Platzierung des Messequipments und die Erfassung der Schallwerte zu geben. Wie im vorherigen Kapitel erl\u00e4utert, liegt der Fokus der Messungen auf dem Exportbe- reich des Unternehmens. Um den Betriebsablauf m\u00f6glichst wenig zu st\u00f6ren, wurden ge- eignete Messzeiten anhand der t\u00e4glichen Betriebs- und Sto\u00dfzeiten festgelegt. Um pr\u00e4- zise Ergebnisse zu erzielen, wurde eine feste Messposition im Fernfeld auf einer Gr\u00fcn- fl\u00e4che des Betriebsgel\u00e4ndes gew\u00e4hlt (Abbildung 11). Diese Position erm\u00f6glicht eine zu- verl\u00e4ssige Erfassung der Schallwerte, ohne den normalen Betriebsablauf zu beeintr\u00e4ch- tigen.", - "embedding": [ - -0.004119900055229664, - 0.019691279157996178, - -0.0075750877149403095, - -0.039356231689453125, - -0.008213474415242672, - 0.016400624066591263, - -0.008786048740148544, - -0.013504847884178162, - -0.013254757970571518, - -0.015097524970769882, - 0.014702646061778069, - 0.008345101028680801, - -0.020770613104104996, - 0.016650713980197906, - -0.00510380556806922, - -0.003346596146002412, - 0.028483908623456955, - -0.0029286828357726336, - -0.004866878502070904, - 0.002140571130439639, - -0.011254039593040943, - 0.0024976071435958147, - -0.010701209306716919, - 0.008733398281037807, - -0.010332656092941761, - 0.008456982672214508, - 0.017322007566690445, - -0.010938136838376522, - -0.011833194643259048, - 0.01014837995171547, - -0.016400624066591263, - 0.004870169330388308, - -0.014610507525503635, - 0.003402537200599909, - -0.021415581926703453, - -0.023245185613632202, - 0.0008588609052821994, - -0.029879147186875343, - 0.0180064644664526, - -0.013965539634227753, - -0.005442743189632893, - 0.018572457134723663, - -0.001095788087695837, - -0.006739261094480753, - 0.002323202323168516, - 0.013662799261510372, - 0.02235012874007225, - 0.010602490045130253, - -0.020191458985209465, - 0.013057318516075611, - -0.000200421447516419, - 0.004731961991637945, - -0.03701328486204147, - 0.01533445157110691, - 0.0030504371970891953, - -0.018519805744290352, - 0.007324997801333666, - 0.007950222119688988, - -0.021718323230743408, - -0.029852820560336113, - -0.037329189479351044, - 0.005297954194247723, - -0.032801248133182526, - 0.01111583225429058, - -0.006759005133062601, - -0.02133660577237606, - -0.025114277377724648, - -0.0040705399587750435, - -0.02005983144044876, - -0.010023334994912148, - 0.026957044377923012, - 0.03230106830596924, - -0.0024860897101461887, - 0.018072277307510376, - 0.022179014980793, - -0.012056959792971611, - 0.016334811225533485, - -0.010503770783543587, - -0.0005635246634483337, - 0.024798374623060226, - 0.0220078993588686, - -0.034749314188957214, - -0.022455429658293724, - 0.04227833449840546, - 0.008299031294882298, - -0.01029316894710064, - 0.01114873867481947, - -0.0012405768502503633, - -0.006245662923902273, - -0.008812373504042625, - 0.02078377641737461, - 0.030774204060435295, - 0.0007749492069706321, - -0.015400265343487263, - 0.01447888184338808, - 0.00270656356588006, - 0.014676321297883987, - 0.02223166450858116, - 0.0033120440784841776, - -0.02719397284090519, - 0.0017243031179532409, - -0.0012529168743640184, - 0.006337801460176706, - 0.0015161692863330245, - -0.013320570811629295, - -0.009904871694743633, - -0.004376571159809828, - -0.014900085516273975, - 0.00916118361055851, - -0.02519325353205204, - -0.027904754504561424, - 0.03119540773332119, - -0.007851502858102322, - 0.004939272999763489, - 0.017203543335199356, - -0.010280005633831024, - 0.019691279157996178, - -0.016084721311926842, - -0.0028727417811751366, - 0.0023659809958189726, - 0.03061625361442566, - 0.007607994135469198, - 0.015215988270938396, - -0.010681466199457645, - 0.027694150805473328, - -0.016677038744091988, - -0.011550198309123516, - -0.013103388249874115, - -0.008101592771708965, - -0.01742730848491192, - -0.01546607818454504, - 0.021402418613433838, - 0.022534403949975967, - 0.013847075402736664, - 0.0015630610287189484, - -0.005478940438479185, - -0.01765107363462448, - 0.0013146166456863284, - -0.02521958015859127, - -0.020244108512997627, - 0.0004960662336088717, - 0.010043079033493996, - -0.04259423539042473, - -0.03435443714261055, - 0.011207970790565014, - 0.0392509326338768, - 0.005426289979368448, - 0.015939932316541672, - -0.005024829879403114, - 0.005752064753323793, - -0.0130902249366045, - -0.02116549201309681, - 0.016084721311926842, - -0.010253680869936943, - -0.024916838854551315, - -0.01651908829808235, - -0.0007469786796718836, - 0.020533686503767967, - -0.02829963155090809, - -0.018453992903232574, - 0.01239260658621788, - 0.026272589340806007, - 0.01462367083877325, - 0.019928205758333206, - 0.017558934167027473, - 0.006597762927412987, - 0.015953095629811287, - -0.02502213977277279, - -0.011517291888594627, - 0.006502334028482437, - -0.008108173497021198, - -0.00514658447355032, - -0.010247099213302135, - 0.02357425168156624, - 0.00018838999676518142, - 0.010220774449408054, - 0.006153524853289127, - -0.0035045475233346224, - -0.02693071961402893, - -0.033117152750492096, - -0.027720477432012558, - -0.0023972420021891594, - 0.0032544576097279787, - 0.008095011115074158, - -0.022863470017910004, - 0.012715090997517109, - 0.014965898357331753, - 0.030195049941539764, - -0.007621156983077526, - -0.009200670756399632, - 0.020402060821652412, - -0.000611650466453284, - 0.010484026744961739, - -0.019678115844726562, - -0.636860191822052, - -0.01829604059457779, - -0.0036559177096933126, - 0.011510711163282394, - 0.00027518102433532476, - 0.029984448105096817, - 0.018690919503569603, - -0.000742454023566097, - 0.016598062589764595, - 0.05807347968220711, - 0.002892485586926341, - 0.0009329006425105035, - -0.02177097275853157, - 0.002894131001085043, - -0.007364485878497362, - -0.017966976389288902, - -0.008838699199259281, - -0.005561206955462694, - 0.020968053489923477, - -0.0016461501363664865, - -0.04227833449840546, - 0.017256194725632668, - -0.0011969757033511996, - 0.0063575454987585545, - -0.010391888208687305, - 0.0047484152019023895, - 0.0033795025665313005, - -0.018045950680971146, - -0.0004586350405588746, - 0.011214551515877247, - -0.020336247980594635, - 0.011813451535999775, - -0.03148498758673668, - 0.014715808443725109, - 0.036776360124349594, - 0.010839417576789856, - -0.009569224901497364, - 0.010280005633831024, - 0.006864306051284075, - 0.0032709110528230667, - 0.007417136337608099, - -0.021981574594974518, - -0.01293227355927229, - -0.02690439485013485, - 0.01029316894710064, - -0.011635756120085716, - 0.040804121643304825, - -0.0014923119451850653, - 0.020954890176653862, - -0.01646643690764904, - 0.010878904722630978, - -0.009108533151447773, - 0.0203494094312191, - 0.007272347342222929, - 0.018098602071404457, - -0.004235072992742062, - 0.02504846453666687, - -0.02444298379123211, - -0.0190726350992918, - 0.005047864746302366, - -0.006554984487593174, - 0.02386382967233658, - 0.00028896064031869173, - -0.019836068153381348, - -0.019901880994439125, - 0.021902598440647125, - -0.019243750721216202, - -0.03556539863348007, - 0.018598781898617744, - -0.03127438575029373, - -0.021731484681367874, - 0.03719756379723549, - -0.013202107511460781, - -0.010530095547437668, - 0.037092261016368866, - 0.021955249831080437, - 0.009733757004141808, - -0.02386382967233658, - 0.008068685419857502, - 0.018217066302895546, - 0.00018664183153305203, - 0.0015959676820784807, - -0.02246859110891819, - -0.0018378307577222586, - 0.0008942354470491409, - -0.009180927649140358, - -0.0037612186279147863, - 0.004185712896287441, - 0.016834991052746773, - 0.0003710213350132108, - 0.014597345143556595, - 0.032537996768951416, - -0.007403973489999771, - -0.02600933611392975, - -0.011662080883979797, - 0.03006342239677906, - -0.013182363472878933, - 0.01757209748029709, - 0.011885845102369785, - -0.026075148954987526, - -0.03211679309606552, - 0.006331220269203186, - 0.012859879061579704, - -0.011056600138545036, - 0.016137370839715004, - 0.012879623100161552, - 0.001804924220778048, - 0.015900444239377975, - 0.013202107511460781, - -0.02070480026304722, - -0.000904930115211755, - -0.01387340109795332, - -0.017256194725632668, - -0.019375376403331757, - -0.016571737825870514, - -0.02782577835023403, - 0.020915402099490166, - 0.013024412095546722, - 0.005534881725907326, - -0.011188226751983166, - 0.0036493362858891487, - 0.0062522441148757935, - 0.0392509326338768, - -0.005511846859008074, - -0.031379684805870056, - 0.027615176513791084, - 0.030458301305770874, - 0.009069045074284077, - 0.0060284798964858055, - -0.012688765302300453, - 0.008121335878968239, - -0.011214551515877247, - 0.015189663507044315, - -0.009246740490198135, - 0.018480317667126656, - 0.016045233234763145, - 0.030010772868990898, - -0.011971402913331985, - 0.0008370603318326175, - -0.015545053407549858, - -0.030142398551106453, - -0.0005894385394640267, - 0.01576881855726242, - -0.026219937950372696, - -0.01562402956187725, - -0.04554266482591629, - -0.01815125159919262, - 0.0018987079383805394, - 0.009069045074284077, - 7.21887408872135e-05, - 0.0029286828357726336, - -0.011484385468065739, - -0.0038336128927767277, - 0.031906191259622574, - -0.01817757822573185, - 0.016677038744091988, - -0.021415581926703453, - -0.013952377252280712, - -0.00758825009688735, - -0.021297117695212364, - 0.005738902371376753, - 0.016677038744091988, - -0.05162379518151283, - -0.022244827821850777, - 0.005327570252120495, - -0.02389015443623066, - 0.022837145254015923, - -0.00950999278575182, - -0.010214192792773247, - -0.03896135464310646, - 0.0027526328340172768, - 0.023153048008680344, - -0.021994737908244133, - 0.008048942312598228, - -0.00141498155426234, - 0.004202166106551886, - -0.03643413260579109, - -0.0038369037210941315, - -0.011616012081503868, - -0.02136293239891529, - 0.01817757822573185, - 0.014228791929781437, - -0.02374536544084549, - 0.0025930360425263643, - 0.01950700208544731, - -0.011234295554459095, - -0.012195167131721973, - -7.604497659485787e-05, - -0.024245545268058777, - 0.04685892537236214, - -0.005093934014439583, - 0.0008107351022772491, - -0.015281801111996174, - 0.008812373504042625, - -0.011813451535999775, - 0.0022030933760106564, - 0.0010135216871276498, - -0.014294604770839214, - -0.01974392868578434, - 0.022508079186081886, - 0.005186072085052729, - -0.00026489770971238613, - 0.012149098329246044, - -0.020573174580931664, - 0.016624389216303825, - -0.01224781759083271, - 0.0036394642665982246, - -0.024693073704838753, - 0.03527582064270973, - 0.03482829034328461, - 0.003219905775040388, - -0.02504846453666687, - -0.02304774709045887, - -0.008206893689930439, - 0.008720235899090767, - 0.04354194551706314, - 0.0029879147186875343, - 0.010141798295080662, - 0.012543976306915283, - 0.00901639461517334, - -0.0008424076368100941, - -0.00833193864673376, - 0.03580232709646225, - 0.01111583225429058, - -0.023008259013295174, - -0.010062823072075844, - 0.011616012081503868, - 0.006025189068168402, - -0.0013680898118764162, - -0.013504847884178162, - -0.008575446903705597, - -0.006614216137677431, - 0.01223465520888567, - 0.02475888840854168, - 0.021033866330981255, - 0.01945435255765915, - 0.023784853518009186, - 0.0010875614825636148, - 0.03667105734348297, - 0.013261339627206326, - 0.027878427878022194, - 0.025732921436429024, - 0.014755296520888805, - -0.0066635762341320515, - 0.006137071177363396, - -0.02516692876815796, - 0.008996650576591492, - 0.02299509570002556, - -0.004669439513236284, - -0.011043437756597996, - -0.015663517639040947, - -0.010082567110657692, - -0.013702287338674068, - -0.007384229451417923, - 0.008614934980869293, - -0.013254757970571518, - 0.029642218723893166, - -0.023087235167622566, - -0.0034486062359064817, - 0.01704559288918972, - -0.004995214287191629, - 0.01921742409467697, - 0.004817518871277571, - -0.017519446089863777, - 0.0071867904625833035, - 0.009891708381474018, - -0.004350245930254459, - -0.010010172612965107, - -0.01974392868578434, - -0.017006104812026024, - 0.007515855599194765, - 0.010036497376859188, - 0.004511487670242786, - 0.015650354325771332, - 0.021099679172039032, - -0.020046669989824295, - -0.00309815164655447, - 0.008121335878968239, - 0.024482471868395805, - -0.007956803776323795, - -0.005821168422698975, - -0.021389257162809372, - 0.008470145985484123, - 0.030800530686974525, - -0.010089147835969925, - -0.0015268638962879777, - -0.012056959792971611, - 0.00937836617231369, - -0.028747161850333214, - -0.0060284798964858055, - -0.013570660725235939, - -0.011602848768234253, - -0.022968770936131477, - -0.020836427807807922, - 0.014492044225335121, - 0.005340733099728823, - 0.015202825888991356, - 0.008529377169907093, - 0.0028085738886147738, - 0.013439035043120384, - -0.007561924867331982, - -0.01765107363462448, - -0.012511069886386395, - -0.029431616887450218, - 0.014952735975384712, - 0.01175421942025423, - -0.026983371004462242, - -0.032537996768951416, - -0.003981692250818014, - 0.005163037683814764, - -0.023824341595172882, - 0.005959376227110624, - 0.004455546848475933, - 0.014084002934396267, - 0.002176768146455288, - 0.004241654183715582, - -0.004587172996252775, - 0.004504906479269266, - 0.046543024480342865, - -0.0005590000073425472, - -0.03372263163328171, - -0.02945794351398945, - 0.0029961413238197565, - 0.011109250597655773, - 0.0245219599455595, - 0.02070480026304722, - 0.013478522188961506, - 0.02394280582666397, - -0.024245545268058777, - -0.01658490113914013, - -0.00461020739749074, - -0.030563602223992348, - 0.033643655478954315, - 0.03293287381529808, - -0.01658490113914013, - 0.01684815250337124, - 0.024745725095272064, - -0.011128994636237621, - 0.0005318521289154887, - -0.01666387729346752, - 0.017374657094478607, - -0.014255116693675518, - 0.040514543652534485, - 0.020744288340210915, - -0.01255055796355009, - 0.011938495561480522, - -0.00027127336943522096, - 0.028562884777784348, - -0.0042975954711437225, - -0.01979658007621765, - 0.008141079917550087, - 0.014084002934396267, - -0.00416596932336688, - -0.016598062589764595, - -0.01605839654803276, - 0.032801248133182526, - 0.0026210066862404346, - 0.010530095547437668, - -0.010201030410826206, - -0.004791193641722202, - -0.0071538835763931274, - 0.010931555181741714, - 0.01878305897116661, - -0.015150175429880619, - 0.004498325288295746, - 0.025996174663305283, - 0.00723944092169404, - -0.011701568961143494, - 0.0003167255490552634, - 0.0029846238903701305, - 0.021705159917473793, - 0.014926410280168056, - -0.004784612450748682, - -0.003741474589332938, - 0.01561086717993021, - -0.029063064604997635, - 0.013649636879563332, - 0.005218978505581617, - 4.419246761244722e-05, - -0.028273306787014008, - 0.0018082148162648082, - -0.0075026932172477245, - -0.015821468085050583, - -0.013715449720621109, - -0.02829963155090809, - -0.01779586263000965, - 0.009727176278829575, - -0.0035045475233346224, - -0.017295682802796364, - -0.014702646061778069, - -0.02666746824979782, - -0.002247517229989171, - -0.010405050590634346, - 0.02377169020473957, - -0.006281860172748566, - 0.0023593995720148087, - -0.03266962245106697, - -0.00842407625168562, - 0.021152330562472343, - -0.002528868382796645, - 0.009595549665391445, - -0.0038895541802048683, - -0.022429103031754494, - 0.002968170680105686, - -0.011076344177126884, - -0.004570719785988331, - -0.011490967124700546, - -0.01928323693573475, - -0.016979780048131943, - 0.02266603149473667, - -0.007561924867331982, - -0.002211320213973522, - 0.018361855298280716, - 0.007805433589965105, - -0.006482589989900589, - 0.02058633789420128, - 0.01339296530932188, - -0.0015976129798218608, - -0.013847075402736664, - 0.008897931315004826, - -0.01678233966231346, - 0.017085080966353416, - 0.014676321297883987, - -0.00916118361055851, - 0.009648200124502182, - -0.028720835223793983, - 0.004063958767801523, - 0.003991564270108938, - 0.020770613104104996, - 0.0196254663169384, - -0.008726816624403, - 0.0026539131067693233, - 0.003853356931358576, - 0.02165250852704048, - 0.006377289071679115, - -0.009207252413034439, - 0.011576524004340172, - 0.008516214787960052, - 0.017466796562075615, - 0.017414145171642303, - 0.009312553331255913, - 0.03319612517952919, - 0.024693073704838753, - 0.024456147104501724, - -0.013182363472878933, - -0.037118587642908096, - 0.05272945389151573, - 0.0065516941249370575, - -0.00014777097385376692, - 0.032774921506643295, - -0.0100035909563303, - -0.0001546607818454504, - -0.02861553430557251, - 0.008674166165292263, - 0.013820750638842583, - 0.02806270495057106, - 0.007285510189831257, - -0.013228432275354862, - -0.02316621132194996, - -0.012780903838574886, - 0.017756374552845955, - 0.015215988270938396, - -0.023784853518009186, - 0.01245183777064085, - -0.02333732508122921, - 0.0035111287143081427, - -0.017756374552845955, - 0.00679191155359149, - 0.018664594739675522, - -0.02574608474969864, - -0.02408759482204914, - 0.00808842945843935, - -0.03177456557750702, - 0.037065938115119934, - -0.022047387436032295, - 0.009628456085920334, - -0.037408165633678436, - 0.004794484004378319, - -0.01129352767020464, - -0.01532128918915987, - 0.002127408515661955, - -0.01878305897116661, - 0.011813451535999775, - 0.027562525123357773, - 0.01178712584078312, - 0.013123131357133389, - -0.001218364923261106, - 0.0012529168743640184, - -0.010089147835969925, - -0.010905230417847633, - -0.0312480591237545, - -0.006660285405814648, - -0.020454710349440575, - 0.016966616734862328, - -0.00022499852639157325, - -0.003297236282378435, - -0.0019760383293032646, - -0.00818714965134859, - 0.006255534943193197, - 0.03627618029713631, - -0.017453633248806, - -0.00015784859715495259, - -0.012912529520690441, - -0.02307407185435295, - 0.00205830461345613, - -0.00193325977306813, - 0.018414504826068878, - 0.021968411281704903, - -0.016571737825870514, - -0.014228791929781437, - 0.007120977155864239, - -0.012122772634029388, - -0.014952735975384712, - -0.0011064826976507902, - 0.017901163548231125, - -0.042541585862636566, - 0.01387340109795332, - -0.0028628697618842125, - 0.020309921354055405, - 0.0058738188818097115, - -0.0037776718381792307, - -0.03638147935271263, - -0.010964462533593178, - 0.02186311036348343, - -0.01159626804292202, - 0.003675661515444517, - -0.02377169020473957, - -0.009753501042723656, - -0.012122772634029388, - -0.01337980292737484, - 0.006327929440885782, - -0.02316621132194996, - -0.0016963325906544924, - -0.016308486461639404, - -0.032537996768951416, - -0.011576524004340172, - -0.013149457052350044, - -0.004340373910963535, - 0.022823981940746307, - 0.005850784480571747, - 0.017703723162412643, - 0.017927488312125206, - -0.01591360755264759, - 0.005353895481675863, - 0.0006161751225590706, - -0.00997068453580141, - 0.021902598440647125, - 0.020309921354055405, - 0.024600936099886894, - 0.0031343488954007626, - -0.03664473444223404, - -0.017111405730247498, - -0.06349647790193558, - 0.014807946979999542, - -0.00808842945843935, - 0.02658849209547043, - 0.00902955699712038, - -0.028747161850333214, - 0.002319911727681756, - 0.015703005716204643, - 0.020770613104104996, - 0.0029961413238197565, - -0.009325715713202953, - 0.022165851667523384, - 0.023376813158392906, - -0.031406011432409286, - -0.018769895657896996, - 0.020388897508382797, - -0.010286587290465832, - -0.0019562942907214165, - 0.005337442271411419, - -0.009542899206280708, - -0.011793707497417927, - -0.008345101028680801, - -0.016426948830485344, - 0.04317339137196541, - -0.005775099154561758, - 0.006499043665826321, - 0.018546130508184433, - -0.021784136071801186, - -0.014452556148171425, - -0.021389257162809372, - -0.018019625917077065, - 0.02005983144044876, - -0.006452974397689104, - 0.010378725826740265, - -0.013570660725235939, - -0.009055882692337036, - 0.006183140445500612, - -0.0019743929151445627, - -0.005988991819322109, - -0.015229150652885437, - -0.00208298466168344, - 0.01678233966231346, - -0.016913965344429016, - -0.0008284223731607199, - 0.014294604770839214, - -0.01661122590303421, - 0.020533686503767967, - 0.013702287338674068, - -0.0033992466051131487, - -0.023613739758729935, - 0.014452556148171425, - -0.003402537200599909, - 0.007607994135469198, - 0.012708509340882301, - -0.01988871768116951, - -0.014123491011559963, - -0.008312194608151913, - -0.002043496584519744, - 0.009977265261113644, - -0.011826613917946815, - -0.006617506965994835, - -0.02357425168156624, - 0.002068176632747054, - -0.0017555643571540713, - 0.020796939730644226, - 0.019928205758333206, - -0.005459196399897337, - -0.021178655326366425, - -0.010720953345298767, - 0.010595908388495445, - -0.016861315816640854, - 0.005926469340920448, - 0.0190726350992918, - -0.014702646061778069, - -0.0015531891258433461, - -0.005765227600932121, - 0.009727176278829575, - 0.004452256020158529, - 0.02890511229634285, - 0.002254098653793335, - -0.015953095629811287, - -0.008707072585821152, - 0.0009477086132392287, - 0.012168841436505318, - -0.01815125159919262, - 0.004281142260879278, - 0.006765586324036121, - -0.0006412663497030735, - 0.007305253762751818, - -0.010385306552052498, - 0.002961589489132166, - -0.010484026744961739, - 0.014610507525503635, - -0.017966976389288902, - 0.030695229768753052, - -0.02342946268618107, - 0.011490967124700546, - 0.013952377252280712, - -0.020968053489923477, - 0.020454710349440575, - -0.023995455354452133, - -0.017124569043517113, - 0.02550915628671646, - 0.017980137839913368, - -0.04414742812514305, - -0.003272556234151125, - -0.019704442471265793, - -0.015729330480098724, - -0.00023260817397385836, - 0.01110266987234354, - -0.007127558346837759, - 0.014386743307113647, - -0.009134857915341854, - 0.011109250597655773, - -0.004843844100832939, - 0.02116549201309681, - 0.005959376227110624, - -0.0019102251389995217, - 0.0187304075807333, - -0.0023577541578561068, - -0.03316980227828026, - 0.0047056362964212894, - -0.04235731065273285, - 0.034486062824726105, - 0.02333732508122921, - -0.027088671922683716, - -0.016361135989427567, - -0.006660285405814648, - -0.0461481437087059, - -0.019059473648667336, - 0.006765586324036121, - 0.014070840552449226, - -0.0069301193580031395, - 0.006025189068168402, - -0.006851143669337034, - 0.030537277460098267, - 0.0007864665240049362, - 0.01258346438407898, - -0.011866101995110512, - -0.01002991572022438, - -0.0013738484121859074, - -0.0027361796237528324, - 0.011227714829146862, - -0.01140541024506092, - -0.04114634916186333, - -0.004416058771312237, - 0.02858920954167843, - -0.007285510189831257, - 0.009042719379067421, - 0.0225212424993515, - -0.0034848034847527742, - -0.02690439485013485, - -0.00128664611838758, - 0.010470864363014698, - 0.038250572979450226, - -0.012287305667996407, - 0.014136653393507004, - -0.016545413061976433, - 0.006699773482978344, - 0.009036138653755188, - 0.01149754785001278, - -0.041909780353307724, - -0.0015219278866425157, - 0.016742851585149765, - -0.006680029444396496, - 0.010122054256498814, - 0.01124745886772871, - -0.02493000216782093, - 0.022481754422187805, - -0.02774680219590664, - 0.0366973839700222, - 0.01193191483616829, - -0.048359464854002, - 0.006344382651150227, - 0.0209022406488657, - -0.012813810259103775, - -0.023837504908442497, - 0.00693670054897666, - -0.04014598950743675, - 0.014821109361946583, - -0.007055164314806461, - -0.01759842224419117, - 0.010734116658568382, - 0.0005503620486706495, - 0.010595908388495445, - 0.007621156983077526, - 0.007232859265059233, - -0.01416297908872366, - -0.02150772139430046, - -0.04006701335310936, - 0.025430181995034218, - 0.02808902971446514, - -0.015755655243992805, - -0.0016831699758768082, - -0.012004309333860874, - -0.0036921147257089615, - -0.0031787727493792772, - -0.014557857066392899, - 0.00426797941327095, - -0.018217066302895546, - -0.0005840912344865501, - 0.014571020379662514, - -0.01324817631393671, - 0.0033120440784841776, - 0.0008958808030001819, - 0.009134857915341854, - -0.00579155283048749, - -0.01131985243409872, - 0.18596148490905762, - -0.02586454711854458, - -0.021257631480693817, - 0.01433409284800291, - -0.029721194878220558, - -0.04011966288089752, - 0.012905948795378208, - 0.021033866330981255, - 0.01759842224419117, - 0.021955249831080437, - 0.018717244267463684, - -0.010444538667798042, - -0.010122054256498814, - 0.0035078381188213825, - 0.011431735008955002, - -0.021257631480693817, - -0.026812255382537842, - -0.007844921201467514, - 0.008463564328849316, - 0.03211679309606552, - 0.023705877363681793, - -0.02887878753244877, - 0.007443461567163467, - -0.007318416610360146, - 0.045411039143800735, - 0.01959914155304432, - 0.010747279040515423, - 0.02519325353205204, - 0.031379684805870056, - 0.0303530003875494, - -0.024219220504164696, - 0.00968110654503107, - 0.018124926835298538, - -0.01164233684539795, - -0.0020040087401866913, - 0.004935982171446085, - 0.009707432240247726, - -0.005541462916880846, - 0.018690919503569603, - 0.02658849209547043, - 0.010563001967966557, - -0.028168005868792534, - 0.0024268580600619316, - -0.03372263163328171, - 0.015281801111996174, - 0.017690561711788177, - -0.008634678088128567, - 0.01533445157110691, - 0.004794484004378319, - 0.014742134138941765, - -0.005538172088563442, - 0.01287304237484932, - 0.010997368954122066, - 0.029378967359662056, - -0.013912889175117016, - -0.02495632693171501, - 0.014979060739278793, - 0.0014240308664739132, - 0.005775099154561758, - -0.006772167980670929, - -0.03811894729733467, - 0.01716405525803566, - -0.003613139037042856, - 0.01418930385261774, - -0.022113200277090073, - 0.006206175312399864, - -0.00885844323784113, - -0.01487375982105732, - -0.010247099213302135, - -0.00833193864673376, - 0.010951299220323563, - -0.010727535001933575, - -0.0020517234224826097, - 0.013195525854825974, - -0.01615053415298462, - -0.03037932701408863, - 0.024969490244984627, - 0.014294604770839214, - 0.03409118577837944, - 0.019401701167225838, - 0.014834272675216198, - 0.009720594622194767, - -0.017756374552845955, - -0.022679192945361137, - 0.004040924366563559, - -0.004119900055229664, - 0.02435084618628025, - -0.005896853748708963, - 0.013004668056964874, - -0.0249036755412817, - -0.028720835223793983, - -0.002512414939701557, - -0.003405827796086669, - -0.01403135247528553, - 0.00505773676559329, - -0.004919528961181641, - 0.011365922167897224, - 0.017085080966353416, - -0.014505206607282162, - -0.018164414912462234, - -0.027641501277685165, - 0.04033026844263077, - 0.04235731065273285, - -0.01719038188457489, - 0.00041277153650298715, - 0.007706713862717152, - -0.0026769477408379316, - 0.029958121478557587, - -0.007265766151249409, - 0.011708150617778301, - -0.0009477086132392287, - -0.037960994988679886, - 0.017730047926306725, - -0.027272947132587433, - 0.010043079033493996, - 0.01858561858534813, - 0.014268280006945133, - 0.001862510689534247, - 0.004646404646337032, - -0.004376571159809828, - -0.014742134138941765, - -0.0041429344564676285, - 0.015110687352716923, - 0.004590463824570179, - 0.01742730848491192, - -0.03540744632482529, - -0.04264688864350319, - 0.03627618029713631, - -0.00950999278575182, - 0.0031754819210618734, - 0.02145507000386715, - -0.013017830438911915, - 0.024311358109116554, - -0.01029316894710064, - 0.013228432275354862, - -0.007937059737741947, - -0.008990068919956684, - -0.02550915628671646, - -0.022837145254015923, - -0.007311835419386625, - 0.025377530604600906, - -0.0062621161341667175, - -0.0023643355816602707, - 0.016190022230148315, - 0.022415941581130028, - 0.010938136838376522, - 0.019901880994439125, - 0.005854075308889151, - -0.014571020379662514, - -0.027351923286914825, - -0.013458778150379658, - -0.010056241415441036, - 0.003794125048443675, - -0.020402060821652412, - 0.017953813076019287, - 0.00425481703132391, - -0.015808306634426117, - -0.03888237848877907, - 0.019204262644052505, - 0.009299390949308872, - -0.03203781694173813, - -0.012201748788356781, - -0.0026769477408379316, - -0.031300708651542664, - 0.0035835232120007277, - 0.0026489770971238613, - -0.16563840210437775, - 0.01272825337946415, - 0.023534763604402542, - -0.015650354325771332, - 0.008674166165292263, - 0.009180927649140358, - 0.022415941581130028, - 0.022047387436032295, - -0.030274026095867157, - 0.014268280006945133, - 0.034907266497612, - -0.0028069287072867155, - -0.005337442271411419, - -0.02750987559556961, - -0.0075026932172477245, - 0.0023413009475916624, - -0.025956686586141586, - 0.014557857066392899, - 0.024140244349837303, - 0.012471581809222698, - -0.0026966917794197798, - -0.019664954394102097, - 0.009595549665391445, - 0.0001094142789952457, - -0.008259544149041176, - 0.005910016130656004, - -0.017256194725632668, - 0.020981214940547943, - -0.02029675990343094, - -0.015531891025602818, - -0.010095729492604733, - 0.010845998302102089, - 0.027062345296144485, - 0.011616012081503868, - -0.0010826254729181528, - -0.006209465675055981, - -0.003537453943863511, - -0.004376571159809828, - -0.002640750491991639, - 0.005992282647639513, - 0.013011249713599682, - 0.047385431826114655, - -0.009918034076690674, - 0.007278928533196449, - 0.01079992949962616, - 0.028168005868792534, - 0.022389616817235947, - -0.022692356258630753, - 0.0027542782481759787, - -0.01974392868578434, - 0.0037019867449998856, - -0.020099319517612457, - 0.0028052832931280136, - 0.021060191094875336, - 0.004475290887057781, - 0.00842407625168562, - -0.017901163548231125, - 0.020309921354055405, - 0.017519446089863777, - -0.008911093696951866, - -0.011629174463450909, - -0.022797657176852226, - 0.0002589334035292268, - -0.007877827621996403, - -0.021283956244587898, - -0.009707432240247726, - 0.003803997067734599, - 0.02750987559556961, - 0.00048043561400845647, - -0.002528868382796645, - 0.008878187276422977, - -0.0360129289329052, - 0.0064463927410542965, - -0.024706237018108368, - 0.012675602920353413, - 0.021981574594974518, - 0.0029731066897511482, - 0.012807228602468967, - 0.00020268377556931227, - 0.010556421242654324, - -0.01586095616221428, - 0.03388058394193649, - -0.0037842532619833946, - -0.02974751964211464, - -0.008305612951517105, - -0.02811535634100437, - -0.02386382967233658, - 0.021665671840310097, - -0.02044154889881611, - 0.0011081279953941703, - 0.013794424943625927, - 0.0001715253893053159, - -0.025732921436429024, - -0.022179014980793, - 0.014728971756994724, - -0.008911093696951866, - -0.009490248747169971, - -0.002448247279971838, - -0.021665671840310097, - -0.010793347842991352, - 0.005541462916880846, - -0.011194808408617973, - -0.030168723315000534, - 0.025877710431814194, - -0.011820032261312008, - -0.0026144252624362707, - 0.003461768850684166, - 0.0020040087401866913, - 0.04551633819937706, - -0.012715090997517109, - -0.020744288340210915, - -0.0016445048386231065, - 0.014136653393507004, - 0.00679191155359149, - -0.001293227425776422, - 0.01129352767020464, - 0.007515855599194765, - -0.019901880994439125, - 0.008838699199259281, - 0.004083702806383371, - 0.05733637139201164, - -0.02858920954167843, - -0.019085798412561417, - 0.02394280582666397, - -0.007851502858102322, - -0.01388656347990036, - -0.09877229481935501, - -0.00475499639287591, - 0.018822545185685158, - 0.009924614802002907, - 0.013557498343288898, - 0.0220078993588686, - 0.022745007649064064, - -0.008450401946902275, - 0.02208687551319599, - 0.02919469028711319, - -0.021060191094875336, - -0.02774680219590664, - -0.029142040759325027, - -0.021902598440647125, - -0.0010579455411061645, - -0.013912889175117016, - 0.006890631280839443, - -0.015202825888991356, - -0.019112123176455498, - 0.030589928850531578, - -0.030116073787212372, - -0.004965598229318857, - -0.01733517087996006, - -0.016137370839715004, - -0.016137370839715004, - -0.00135328178294003, - -0.029589569196105003, - -0.006235790904611349, - 0.02600933611392975, - -0.017966976389288902, - 0.001548253116197884, - -0.015518728643655777, - 0.003665789496153593, - -0.0038500663358718157, - 0.004231782164424658, - -0.00570270512253046, - -0.02058633789420128, - -0.00873997900635004, - 0.03643413260579109, - -0.01571616716682911, - -0.00450161611661315, - 0.03264329582452774, - 0.011372503824532032, - -0.019691279157996178, - 0.0019743929151445627, - -0.02435084618628025, - -0.02145507000386715, - 0.01174105703830719, - 0.004590463824570179, - 0.007515855599194765, - -0.031090106815099716, - -0.034749314188957214, - -0.037908345460891724, - 0.0058836909011006355, - 0.025785570964217186, - -0.005580950528383255, - -0.019783416762948036, - 0.006976188626140356, - -0.011984565295279026, - -0.008838699199259281, - -0.03227474167943001, - 0.020481036975979805, - -0.027957404032349586, - 0.023679552599787712, - -0.004577300976961851, - -0.005620438605546951, - -0.03274859860539436, - -0.012807228602468967, - 0.016045233234763145, - 0.022850308567285538, - -0.031011132523417473, - 0.01269534695893526, - 0.008891349658370018, - 0.013254757970571518, - -0.027562525123357773, - -0.009009812958538532, - -0.02629891410470009, - -0.01719038188457489, - 0.018717244267463684, - -0.010490607470273972, - 0.008865023963153362, - -0.027878427878022194, - 0.026456864550709724, - -0.024140244349837303, - 0.03453871235251427, - 0.03609190136194229, - 0.0026868197601288557, - 0.0008531023049727082, - 0.024535123258829117, - -0.014386743307113647, - -0.005051155108958483, - 0.0190726350992918, - 0.013952377252280712, - -0.0038994259666651487, - -0.04514778405427933, - 0.00708148954436183, - 0.00013913300062995404, - -0.00530453585088253, - 0.007035420276224613, - 0.00570270512253046, - -0.0029977867379784584, - -0.018375016748905182, - -0.03885605186223984, - 0.022705519571900368, - 0.013320570811629295, - 0.008575446903705597, - -0.01418930385261774, - -0.017953813076019287, - 0.006268697790801525, - 0.0071143959648907185, - 0.03498624265193939, - -0.000838294334243983, - -0.015229150652885437, - -0.0038171596825122833, - -0.007983128540217876, - -0.0007593186455778778, - -0.031300708651542664, - -0.022823981940746307, - 0.005686251912266016, - 0.021415581926703453, - -0.0039586578495800495, - 0.0005980765563435853, - -0.009746919386088848, - 0.0257987342774868, - -0.00044135909411124885, - 0.021757809445261955, - -0.0151765001937747, - 0.005064317956566811, - -0.010852579958736897, - 0.0005668153171427548, - -0.01002991572022438, - -0.008917674422264099, - 0.001669184654019773, - 0.021784136071801186, - 0.0022047387901693583, - 0.01971760392189026, - -0.01588728278875351, - 0.0006338623934425414, - 0.025206416845321655, - 0.05188704654574394, - 0.021126003935933113, - 0.0418044812977314, - -0.008042360655963421, - -0.011063181795179844, - 0.013346896506845951, - -0.020665312185883522, - 0.004373280331492424, - 0.012767741456627846, - 0.01145147904753685, - -0.008944000117480755, - 0.0070420014671981335, - -0.022192176431417465, - 0.025969848036766052, - 0.008048942312598228, - 0.01901998557150364, - -0.0005882045370526612, - -0.001734175137244165, - 0.0021570243407040834, - 0.002130699111148715, - 0.016834991052746773, - 0.017453633248806, - -0.038777075707912445, - 0.04714850336313248, - 0.02116549201309681, - -0.002838189946487546, - -0.02864186093211174, - 0.007048582658171654, - -0.020665312185883522, - -0.012517651543021202, - -0.02415340766310692, - -0.0001230910565936938, - -0.02666746824979782, - -0.026312077417969704, - -0.006416777148842812, - 0.021428745239973068, - 0.024258708581328392, - -0.010418213903903961, - -0.007976547814905643, - 0.0033729213755577803, - 0.00040495622670277953, - -0.005633600987493992, - 0.008865023963153362, - 0.018388180062174797, - 0.026746442541480064, - 0.0018279588548466563, - -0.003813869087025523, - 0.04954409971833229, - -0.004692473914474249, - -0.018941009417176247, - -0.005781680811196566, - -0.013978702016174793, - -0.005386801902204752, - -0.035091545432806015, - 0.021099679172039032, - 0.0077988519333302975, - 0.01374177448451519, - 0.01562402956187725, - 0.016940291970968246, - 0.01704559288918972, - 0.0015252185985445976, - 0.036460455507040024, - 0.029563244432210922, - 0.0012504488695412874, - -0.006554984487593174, - -0.0064496835693717, - -0.02235012874007225, - 0.0019069345435127616, - 0.01875673234462738, - -0.013063900172710419, - -0.04148857668042183, - 0.0014429521979764104, - 0.025851385667920113, - -0.01890152134001255, - 0.021665671840310097, - 0.02159985899925232, - 0.001729239127598703, - -0.011806869879364967, - 0.009786407463252544, - -0.017229869961738586, - -0.0015498984139412642, - -0.0232846736907959, - 0.013202107511460781, - 0.026219937950372696, - -0.005666507873684168, - -0.0006338623934425414, - 0.0017917616060003638, - 0.014834272675216198, - -0.015926769003272057, - 0.005317698232829571, - -0.015847794711589813, - 0.007107814773917198, - 0.0025354495737701654, - 0.021876273676753044, - 0.005972538609057665, - -0.006462846416980028, - -0.015874119475483894, - -0.019691279157996178, - 0.0046661486849188805, - 0.029142040759325027, - -0.000896703451871872, - -0.007331578992307186, - 0.12878307700157166, - 0.02017829567193985, - -0.01240576896816492, - 0.019401701167225838, - -0.002520641777664423, - 0.028431259095668793, - 0.01844082958996296, - 0.008259544149041176, - 0.0016025489894673228, - -0.04806988686323166, - 0.019414864480495453, - -0.0074302987195551395, - 0.01259662676602602, - -0.018954172730445862, - 0.0022820690646767616, - 0.01030633132904768, - 0.0030701810028403997, - 0.016953453421592712, - -0.032485343515872955, - 0.0024762179236859083, - 0.05178174749016762, - -0.04356827214360237, - 0.016861315816640854, - 0.03722388669848442, - -0.003488094313070178, - -0.017940649762749672, - 0.012201748788356781, - 0.01663755066692829, - 0.002254098653793335, - -0.006525368895381689, - 0.0028661603573709726, - 0.00011856640776386485, - -0.05078138783574104, - -0.014649995602667332, - 0.012813810259103775, - -0.02357425168156624, - -0.0023083945270627737, - -0.013570660725235939, - 0.016190022230148315, - 0.008970324881374836, - 0.010859161615371704, - 0.0267332810908556, - -0.005274919793009758, - -0.02342946268618107, - 0.0016428594244644046, - 0.004498325288295746, - 0.012399187311530113, - -0.014900085516273975, - -0.006485880818217993 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 21, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 455 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000022.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000022.json deleted file mode 100644 index 4742f3e11f6204a5feeaab2955284febeff203ad..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000022.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000022", - "content": "Um pr\u00e4- zise Ergebnisse zu erzielen, wurde eine feste Messposition im Fernfeld auf einer Gr\u00fcn- fl\u00e4che des Betriebsgel\u00e4ndes gew\u00e4hlt (Abbildung 11). Diese Position erm\u00f6glicht eine zu- verl\u00e4ssige Erfassung der Schallwerte, ohne den normalen Betriebsablauf zu beeintr\u00e4ch- tigen. Des Weiteren erm\u00f6glicht die Fernfeld-Platzierung die Erfassung des Schalls in gr\u00f6- \u00dferer Entfernung von der Schallquelle, was eine genauere und repr\u00e4sentativere Mes- sung der Schallausbreitung erm\u00f6glicht. Durch den gr\u00f6\u00dferen Abstand zur Schallquelle werden m\u00f6gliche St\u00f6rungen und Reflexionen reduziert, die in unmittelbarer N\u00e4he auf- treten k\u00f6nnten. [IMAGE: ]\n\nAbbildung 11: Ortsfeste Mikrofonposition\nDa zur genauen Beschreibung der Richtcharakteristik eines Beladevorgangs mehrere Messpositionen erforderlich sind, wurde auf ortsfeste Messpunkte im Nahfeld verzich- tet, da die Belegung der Verladestationen st\u00e4ndig wechselte, wodurch eine feste Positi- onierung der Mikrofone nicht durchf\u00fchrbar und praktisch war. Um dennoch Messungen\n44\n5 Beschreibung der Untersuchungsmethodik\ndurchf\u00fchren zu k\u00f6nnen, wurde ein variables Mikrofon verwendet. Das Mikrofon wurde auf einem langen Stab befestigt, um eine flexible Platzierung zu erm\u00f6glichen. In Abspra- che mit dem Messgehilfen wurden geeignete Messpositionen ausgew\u00e4hlt. Durch diese Vorgehensweise konnte eine m\u00f6glichst realit\u00e4tsnahe Abbildung der Schallausbreitung w\u00e4hrend der Beladevorg\u00e4nge erreicht werden. Die variablen Messpositionen bieten den Vorteil, dass der Messbereich an die tats\u00e4chlichen Gegebenheiten angepasst werden kann. Je nach Belegung der Verladestationen und der spezifischen Beladesituation konnte das Mikrofon an verschiedenen Stellen platziert werden, um die Schallpegel in unterschiedlichen Richtungen und Entfernungen zur Schallquelle zu erfassen (siehe Ab- bildung 12). [IMAGE: ]\n\n\n[IMAGE: T ll Ill IM \u0131)] zbr\u00e4der WENS$ ort und Logistik]\n\nBefestigung am langen Stab\nAlternativer Aufbau vom 24.05.2023\nAbbildung 12: Variabler Mikrofonaufbau\nIn der Regel wurden die Mikrofone auf einer einheitlichen H\u00f6he von 3,5 m H\u00f6he positi- oniert, da dies ungef\u00e4hr der mittleren H\u00f6he der G\u00fcter auf dem Anh\u00e4nger entspricht. Bei der Messung am 24.05.2023 waren nur kleine Mikrofonst\u00e4nder zur Verf\u00fcgung, die auf einer H\u00f6he von 2,5 m gestellt worden sind. Die genauen Mikrofonpositionen sind in den Abbildungen im Anhang 2: Lagepl\u00e4ne dargestellt. 45\n6 Messauswertung und Statistik\n\n## 6 Messauswertung und Statistik\n\nIn diesem Kapitel geht es um die Vorgehensweise bei der Messauswertung und die Sta- tistik der untersuchten Verladeger\u00e4usche. Die Messauswertung und Statistik sind ein wichtiger Schritt in der Analyse von L\u00e4rmemissionen. Die Auswertung der Messdaten erm\u00f6glicht es geeignete Emissionsans\u00e4tze f\u00fcr die weitere Schallimmissionsprognose zu erarbeiten, um potenzielle L\u00e4rmprobleme zu erkennen und gezielte Ma\u00dfnahmen zur L\u00e4rmminderung zu ergreifen. In diesem Kontext werden beifolgend statistische Metho- den aufgezeigt, um Aussagen \u00fcber die Verteilung und Charakteristik der L\u00e4rmemissio- nen treffen zu k\u00f6nnen. ## 6.1 Verladeger\u00e4usche\n\nDie Auswertung der Verladeger\u00e4usche ist ein wesentlicher Schritt zur Gewinnung von Kennwerten. In diesem Kontext wurden in Kapitel 2.2 die Rechengrundlagen zur Ermitt- lung der Verladeger\u00e4usche beschrieben. Jedoch handelt es sich bei dem Verladevorgang eines Flurf\u00f6rderger\u00e4tes um einen nicht station\u00e4ren Ablauf, bei dem sich Ort der Quelle stetig \u00e4ndert. Aus diesem Grund wird in der Auswertung der zeitbezogene Schallleis- tungspegel berechnet, um den Einfluss der sich \u00e4ndernden Positionen zu ber\u00fccksichti- gen. Zudem werden die Abst\u00e4nde der Mikrofone auf den Mittelpunkt der Verladezone bezogen, um einen einheitlichen Bezugspunkt f\u00fcr die Entfernungen zu haben. Zur \u00dcber- pr\u00fcfung der gemessenen Werten wurde im Anschluss eine Validierungsrechnung mit- hilfe des Programms SoundPlan 9.0 durchgef\u00fchrt, welche in Kapitel 6.3, beschrieben wird. Nach erfolgreicher Durchf\u00fchrung der Messungen erfolgt nun die Auswertung der Mess- daten. F\u00fcr die \u00dcbertragung der Messdaten wurde die Software NorXfer 6.1 verwendet, die speziell f\u00fcr die \u00dcbertragung von Messdateien entwickelt wurde.", - "embedding": [ - 0.005075111985206604, - 0.008113566786050797, - -0.009786535054445267, - -0.019969822838902473, - 0.0018614254659041762, - 0.01711321249604225, - -0.016557760536670685, - -0.010467625223100185, - -0.00672493688762188, - -0.011624816805124283, - 0.026582345366477966, - 0.011452890932559967, - -0.021239425987005234, - 0.016015533357858658, - -0.007267163600772619, - -0.0003754673816729337, - 0.03406772390007973, - -0.004549416247755289, - 0.002876447979360819, - -0.01487817894667387, - -0.017099985852837563, - 0.011909155175089836, - -0.008430968038737774, - 0.0020531886257231236, - -0.007577952463179827, - 0.012603470124304295, - 0.023567035794258118, - -0.008318554610013962, - -0.006192628759890795, - 0.006877024658024311, - -0.018726667389273643, - -0.002440021373331547, - -0.016438733786344528, - -0.003281465033069253, - -0.03298326954245567, - -0.010150223970413208, - -0.006989437621086836, - -0.026093019172549248, - 0.015803931280970573, - -0.018118316307663918, - 0.003755913581699133, - 0.007882128469645977, - -0.0015010428614914417, - -0.021913904696702957, - 0.004559335298836231, - 0.016108108684420586, - 0.005881839897483587, - -0.0006405882304534316, - -0.01715288683772087, - 0.012048018164932728, - 0.01344987377524376, - 0.018250565975904465, - -0.01711321249604225, - 0.023752186447381973, - 0.001506002270616591, - -0.011604979634284973, - 0.013139084912836552, - 0.00944929663091898, - -0.014296276494860649, - -0.033776771277189255, - -0.05086353421211243, - -0.0012034793617203832, - -0.02597399428486824, - -0.006410841830074787, - -0.015605556778609753, - -0.01883246749639511, - -0.01888536848127842, - 0.00037960021290928125, - -0.015565881505608559, - -0.012517508119344711, - 0.02470438927412033, - 0.02721714787185192, - 0.006129809655249119, - 0.020736875012516975, - 0.03406772390007973, - -0.011155327782034874, - 0.025762392207980156, - -0.0032979962415993214, - 0.0016713154036551714, - 0.016888385638594627, - 0.009369946084916592, - -0.02846030332148075, - -0.02089557610452175, - 0.054698798805475235, - 0.017721563577651978, - -0.009515421465039253, - 0.010348599404096603, - 0.008576443418860435, - -0.015169129706919193, - -0.008278880268335342, - 0.01879279315471649, - 0.036739181727170944, - -0.0034980252385139465, - -0.0026417032349854708, - 0.017946390435099602, - -0.0015506368363276124, - -0.00596449663862586, - 0.026317844167351723, - 0.006447210907936096, - -0.01464012823998928, - -0.007161363493651152, - -0.0027111347299069166, - -0.0004089432768523693, - 0.002292892662808299, - -0.01444175187498331, - 0.0014489692403003573, - -0.005885146092623472, - -0.011611592024564743, - 0.009277370758354664, - -0.021503927186131477, - -0.026608796790242195, - 0.021517151966691017, - -0.011783517897129059, - -0.0011803355300799012, - 0.024598589166998863, - -0.019189544022083282, - 0.024003461003303528, - -0.037532687187194824, - -0.009978298097848892, - -0.0035707629285752773, - 0.01966564543545246, - -0.0044072470627725124, - 0.02133200131356716, - -0.0017721564508974552, - 0.032136864960193634, - -0.008503705263137817, - -0.014997203834354877, - -0.00018184439977630973, - -0.015764256939291954, - -0.022138729691505432, - -0.014864953234791756, - 0.004572560079395771, - 0.02600044384598732, - 0.01797283999621868, - -0.0021920516155660152, - 0.004959392827004194, - -0.01549975574016571, - 0.005432188510894775, - -0.02265450730919838, - -0.034199971705675125, - 0.00966751016676426, - 0.008278880268335342, - -0.028592552989721298, - -0.03591923043131828, - 0.0024350618477910757, - 0.036289531737565994, - 0.0020912105683237314, - 0.005481782369315624, - -0.008688855916261673, - -0.006701793055981398, - -0.005005680490285158, - -0.03851133957505226, - 0.01711321249604225, - -0.001070402329787612, - -0.027375848963856697, - -0.016570985317230225, - -0.010910664685070515, - 0.019506946206092834, - -0.01970532163977623, - -0.005485088564455509, - 0.02340833470225334, - 0.019414370879530907, - 0.01672968454658985, - 0.03634243085980415, - 0.019520170986652374, - 0.0020019416697323322, - 0.010546975769102573, - -0.018131541088223457, - -0.01598908193409443, - 0.002755769295617938, - -0.02052527479827404, - 0.0005736364400945604, - -0.01798606477677822, - 0.030840812250971794, - 0.01066600065678358, - -0.007055562920868397, - -0.006027315277606249, - 0.016266807913780212, - -0.03822038695216179, - -0.03475542366504669, - -0.03136981278657913, - 0.004747792147099972, - -0.0013687924947589636, - 0.008523543365299702, - -0.017007410526275635, - 0.007822616025805473, - 0.02011529728770256, - 0.034967027604579926, - -0.010990014299750328, - -0.003739382140338421, - 0.006784449331462383, - 0.002947532571852207, - 0.009482359513640404, - -0.01798606477677822, - -0.6233758330345154, - 0.013529223389923573, - 0.005273487884551287, - 0.0006587727111764252, - 0.010791638866066933, - 0.028592552989721298, - 0.01674291118979454, - -0.0057892645709216595, - 0.00679767457768321, - 0.05208023637533188, - 0.0004546110285446048, - 0.0081730792298913, - -0.010540363378822803, - -0.0022135423496365547, - -0.011631429195404053, - -0.015737807378172874, - -0.020207872614264488, - -0.009634447284042835, - 0.04245240241289139, - -0.00898641999810934, - -0.04083894565701485, - 0.014507877640426159, - -0.0024896152317523956, - 0.014164025895297527, - -0.0071745882742106915, - 0.003418674925342202, - 0.0023672834504395723, - -0.011294190771877766, - 0.00324674928560853, - 0.002973982598632574, - -0.013139084912836552, - 0.017033861950039864, - -0.024016685783863068, - 0.028195802122354507, - 0.04472711309790611, - 0.0035310876555740833, - -0.0015431977808475494, - 0.020855899900197983, - 0.0027623819187283516, - -0.006701793055981398, - 0.0008844250696711242, - -0.0293596051633358, - -0.015632007271051407, - -0.015063329599797726, - -0.006658811587840319, - -0.011538853868842125, - 0.031211113557219505, - -0.012828296050429344, - 0.001630813698284328, - -0.03573407977819443, - 0.0025706186424940825, - -0.003331058891490102, - 0.0108974389731884, - 0.006850574631243944, - 0.02351413480937481, - -0.0017060311511158943, - 0.025894643738865852, - -0.0027160942554473877, - -0.007624240126460791, - 0.0037030132953077555, - -0.014402076601982117, - 0.0015233601443469524, - 0.0009993176208809018, - -0.033406469970941544, - -0.030787911266088486, - 0.021980028599500656, - -0.027111347764730453, - -0.029835708439350128, - 0.027560999616980553, - -0.014719477854669094, - -0.0100311990827322, - 0.028433851897716522, - -0.009746859781444073, - -0.004172502551227808, - 0.040018994361162186, - 0.02598721906542778, - 0.00028867798391729593, - -0.02184777893126011, - 0.006741467863321304, - 0.026516221463680267, - 0.008259042166173458, - -0.009898948483169079, - -0.029677007347345352, - 0.005908289924263954, - 0.007855677977204323, - -0.00026594745577313006, - -0.007624240126460791, - 0.005567745305597782, - 0.024201838299632072, - 0.0034120623022317886, - 0.022429680451750755, - 0.04314010590314865, - -0.003468268783763051, - -0.02645009569823742, - -0.012702658772468567, - 0.03983384370803833, - -0.008087116293609142, - 0.03012665919959545, - -0.0026797254104167223, - -0.019916921854019165, - -0.03483477607369423, - -0.0006645586690865457, - 0.02555079199373722, - -0.02432086318731308, - 0.017893489450216293, - 0.009951848536729813, - 0.009958460927009583, - 0.006645586341619492, - 0.008702081628143787, - -0.019149869680404663, - -0.013059734366834164, - -0.010765189304947853, - -0.007042338140308857, - -0.020379798486828804, - -0.003904695389792323, - -0.0281429011374712, - 0.014719477854669094, - 0.012841521762311459, - -0.0005943005671724677, - -0.006344716530293226, - 0.0100311990827322, - 0.00502882432192564, - 0.04491226375102997, - 0.0004269210621714592, - -0.020432699471712112, - 0.023395109921693802, - 0.03517862781882286, - 0.01323827262967825, - -0.0029045511037111282, - -0.019506946206092834, - 0.0060736034065485, - 0.007121688220649958, - 0.014798828400671482, - -0.006890249904245138, - 0.012894421815872192, - 0.019559845328330994, - 0.02941250614821911, - -0.006169484928250313, - 0.0014076409861445427, - -0.029650557786226273, - -0.028619002550840378, - -0.0005116440588608384, - 0.014957528561353683, - -0.03695078194141388, - -0.018303466960787773, - -0.040891848504543304, - -0.00793502852320671, - 0.006318266503512859, - -0.0010439521865919232, - 0.003471574978902936, - -0.0022366861812770367, - -0.018184440210461617, - -0.0024152244441211224, - 0.019969822838902473, - -0.015843607485294342, - 0.008311942219734192, - -0.013344072736799717, - -0.01716611161828041, - -0.006543092429637909, - -0.01510300487279892, - 0.01135370321571827, - 0.018554741516709328, - -0.03787653520703316, - -0.012041405774652958, - -0.004096458666026592, - -0.024479564279317856, - 0.011056140065193176, - 0.0013828440569341183, - -0.01678258553147316, - -0.03570763021707535, - 0.008430968038737774, - 0.002646662760525942, - -0.02262805588543415, - 0.002942573046311736, - -0.015420406125485897, - 0.000945590902119875, - -0.038326188921928406, - 0.0020879043731838465, - -0.022733857855200768, - -0.024572139605879784, - 0.014375627040863037, - 0.009528647176921368, - -0.030708560720086098, - -0.004628766793757677, - 0.024056361988186836, - -0.0006786102894693613, - -0.014957528561353683, - 0.0036170505918562412, - -0.016147783026099205, - 0.03314197063446045, - -0.008007766678929329, - 0.002899591811001301, - -0.019916921854019165, - 0.014111125841736794, - -0.017748015001416206, - 0.007835840806365013, - 0.008893844671547413, - -0.003640194423496723, - -0.016703234985470772, - 0.010394887067377567, - 0.001238195109181106, - 0.012041405774652958, - 0.025048241019248962, - -0.019176319241523743, - 0.019864020869135857, - -0.01339036040008068, - 0.009151733480393887, - -0.026198819279670715, - 0.03811458870768547, - 0.019202768802642822, - 0.010434562340378761, - -0.016531309112906456, - -0.016914835199713707, - -0.01321182306855917, - 0.010004748590290546, - 0.0587192103266716, - 0.0007215916411951184, - 0.007987928576767445, - 0.02426796220242977, - 0.021080726757645607, - 0.012034793384373188, - -0.0015630353009328246, - 0.04528256505727768, - 0.011274353601038456, - -0.018237341195344925, - -0.024519238620996475, - 0.0075713396072387695, - 0.007399414200335741, - 1.8455657482263632e-05, - -0.008120179176330566, - -0.0028665291611105204, - -0.00483375508338213, - 0.01004442386329174, - 0.017853815108537674, - 0.018554741516709328, - 0.0025441686157137156, - 0.020842675119638443, - 0.003471574978902936, - 0.04369555786252022, - 0.009059158153831959, - 0.02055172435939312, - 0.022773532196879387, - 0.013873075135052204, - -0.015261705033481121, - 0.015235254541039467, - -0.012477832846343517, - 0.0072539388202130795, - 0.03107886202633381, - -0.0020928638987243176, - -0.011234678328037262, - -0.013912750408053398, - -0.013899525627493858, - 0.00025768179330043495, - -0.012021568603813648, - 0.013139084912836552, - -0.015645232051610947, - 0.023633159697055817, - -0.023157058283686638, - 0.012504282407462597, - 0.015023654326796532, - -0.00946913380175829, - 0.0011026383144780993, - -0.0058686151169240475, - -0.021477477625012398, - 0.0011836417252197862, - 0.003172358265146613, - -0.01884569227695465, - -0.012616695836186409, - -0.01444175187498331, - -0.008596280589699745, - 0.013568898662924767, - 0.0033641215413808823, - -0.011677716858685017, - 0.015314605087041855, - 0.018197664991021156, - -0.012854746542870998, - 0.0029442261438816786, - 0.021702302619814873, - 0.02634429559111595, - -0.005676851607859135, - -0.0032665866892784834, - -0.020221097394824028, - 0.007822616025805473, - 0.027746150270104408, - -0.004351040814071894, - -0.006443904712796211, - -0.019017618149518967, - 0.015195580199360847, - -0.025048241019248962, - -0.016597434878349304, - -0.010593263432383537, - -0.01277539599686861, - -0.014719477854669094, - -0.03390902280807495, - 0.0087814312428236, - 0.0013101062504574656, - 0.0403892956674099, - -0.0057462831027805805, - 0.0054090446792542934, - 0.01633293367922306, - -0.0016622231341898441, - -0.016108108684420586, - -0.01300683431327343, - -0.02270740643143654, - 0.019625971093773842, - -0.012662983499467373, - -0.01881924271583557, - -0.025299515575170517, - 0.0012117449659854174, - 0.008060666732490063, - -0.015777481719851494, - 0.0015696478076279163, - -0.0012200106866657734, - 0.010375049896538258, - 0.0011241290485486388, - 0.0008298717439174652, - -0.009422846138477325, - 0.003223605453968048, - 0.055069100111722946, - -0.0007191119948402047, - -0.022958682850003242, - -0.0281429011374712, - 0.0038154262583702803, - 0.001015848945826292, - 0.027931300923228264, - 0.006447210907936096, - 0.0072341011837124825, - 0.024876315146684647, - -0.027071673423051834, - -0.009687347337603569, - 0.00010461219062563032, - -0.025762392207980156, - 0.016861936077475548, - 0.0326923169195652, - -0.01323166023939848, - 0.006238916423171759, - 0.03314197063446045, - -0.013793724589049816, - -0.0066687301732599735, - -0.01635938324034214, - 0.0062852040864527225, - -0.007882128469645977, - 0.03271876648068428, - 0.019824346527457237, - -0.0030334952753037214, - 0.006857187487185001, - 0.0003802201244980097, - 0.024162162095308304, - 0.0006451343651860952, - -0.01671645976603031, - 0.024241512641310692, - 0.022429680451750755, - -0.012067856267094612, - -0.02395056188106537, - -0.004327896982431412, - 0.03062921017408371, - 0.011889318004250526, - 0.013106022030115128, - -0.011003240011632442, - 0.003997270483523607, - -0.006586073897778988, - 0.0037922824267297983, - 0.012325744144618511, - -0.01404500100761652, - 0.003580681746825576, - 0.018964719027280807, - 0.014521102420985699, - -0.019123418256640434, - 0.008543380536139011, - 0.007048950530588627, - 0.009812985546886921, - 0.019454045221209526, - -0.014256601221859455, - 0.00732006411999464, - 0.015380730852484703, - -0.026754271239042282, - 0.0009943583281710744, - -0.0031426020432263613, - -0.003212033538147807, - -0.026542671024799347, - 0.006103359628468752, - -0.016147783026099205, - -0.009568322449922562, - -0.012431545183062553, - -0.028169352561235428, - -0.024968890473246574, - 0.00942945946007967, - -0.001790340873412788, - -0.02430763840675354, - -0.026066569611430168, - -0.03454382345080376, - -0.010328762233257294, - -0.00860950630158186, - 0.012669595889747143, - 0.0014142534928396344, - -0.0053230817429721355, - -0.027111347764730453, - -0.018277015537023544, - 0.03991319239139557, - -0.0071745882742106915, - 0.006883637513965368, - 0.0010406459914520383, - -0.011413216590881348, - 0.009323658421635628, - -0.022495806217193604, - -0.005197443533688784, - -0.016835486516356468, - -0.022006480023264885, - -0.01548653095960617, - 0.019070519134402275, - 0.0043807970359921455, - 0.004556029103696346, - 0.0071944259107112885, - 0.003448431147262454, - -0.006929925177246332, - 0.014111125841736794, - 0.00763746490702033, - -0.009846048429608345, - -0.02395056188106537, - 0.004334509372711182, - -0.014772377908229828, - 0.008364842273294926, - 0.026079794391989708, - -0.018263790756464005, - 0.02473083883523941, - -0.03054985962808132, - -0.006744774524122477, - -0.0028086695820093155, - 0.022019704803824425, - 0.0014729397371411324, - -0.0027772600296884775, - 0.008854169398546219, - 0.010097323916852474, - 0.015737807378172874, - 0.011062752455472946, - -0.01879279315471649, - 0.011829805560410023, - 0.022747082635760307, - 0.026516221463680267, - 0.026225268840789795, - 0.006896862294524908, - 0.0334593690931797, - 0.022548707202076912, - 0.015671681612730026, - 0.006427373271435499, - -0.03409417346119881, - 0.040442194789648056, - 0.01635938324034214, - -0.004060089588165283, - 0.037083033472299576, - -0.020406248047947884, - 0.02135845273733139, - -0.04208210110664368, - -0.0029574513901025057, - -0.00023577779938932508, - 0.037135932594537735, - -0.004549416247755289, - -0.016068432480096817, - -0.025418542325496674, - -0.01298038475215435, - 0.023977011442184448, - 0.01071890164166689, - -0.02301158383488655, - 0.012087693437933922, - -0.024982115253806114, - 0.003537700278684497, - -0.008788044564425945, - 0.004893267527222633, - 0.018224116414785385, - -0.027058446779847145, - -0.02475729025900364, - 0.014785603620111942, - -0.014798828400671482, - 0.02688652276992798, - -0.019837571308016777, - 0.007095238193869591, - -0.02650299482047558, - -0.011023077182471752, - -0.01133386604487896, - -0.010256024077534676, - 0.01671645976603031, - -0.016570985317230225, - 0.009760085493326187, - 0.015182354487478733, - 0.023765411227941513, - 0.015195580199360847, - 0.007161363493651152, - -0.0038517951034009457, - -0.015314605087041855, - -0.005961190443485975, - -0.02512759156525135, - -0.011228065937757492, - -0.011201615445315838, - 0.02477051503956318, - 0.007802778389304876, - 0.022125504910945892, - -0.0017390938010066748, - -0.009283983148634434, - 0.006414148025214672, - 0.05104868486523628, - -0.01006426103413105, - 0.006410841830074787, - -0.0071679758839309216, - -0.01933502033352852, - 0.0015572493430227041, - -0.0022862800396978855, - 0.02347446046769619, - 0.018660541623830795, - -0.023977011442184448, - -0.006149647291749716, - 0.005590889137238264, - -0.01924244500696659, - -0.002775606932118535, - 0.0003682349342852831, - 0.01932179555296898, - -0.03491412475705147, - 0.019930146634578705, - 0.004979230463504791, - 0.0013919363263994455, - -0.0021821327973157167, - 0.00014289250248111784, - -0.032110415399074554, - -0.00863595586270094, - 0.026278169825673103, - -0.010189899243414402, - 0.013271335512399673, - -0.005954577587544918, - 0.0010951992589980364, - 0.007921803742647171, - -0.015803931280970573, - 0.015222029760479927, - -0.0163461584597826, - -0.005495007149875164, - -0.007849065586924553, - -0.026926197111606598, - -0.012801846489310265, - -0.0026136001106351614, - -0.005733058322221041, - 0.024876315146684647, - 0.0053825946524739265, - 0.02265450730919838, - 0.02469116449356079, - -0.015460080467164516, - 0.01005764864385128, - 0.0029905138071626425, - -0.012424932792782784, - 0.002810322679579258, - 0.017774464562535286, - 0.029703456908464432, - 0.014798828400671482, - -0.04052154719829559, - -0.016451958566904068, - -0.059724316000938416, - 0.020882349461317062, - -0.0032202990259975195, - 0.026926197111606598, - 0.017364487051963806, - -0.02303803339600563, - -0.0005223893676884472, - 0.029597656801342964, - 0.0260268934071064, - -0.006619136314839125, - -0.021160077303647995, - 0.024162162095308304, - 0.03274521976709366, - -0.021133625879883766, - -0.02188745327293873, - 0.016676785424351692, - -0.02396378666162491, - -0.00011582249135244638, - 0.0023606710601598024, - -0.02048559859395027, - -0.0020531886257231236, - 0.017946390435099602, - -0.011267740279436111, - 0.04197630286216736, - 0.007531664799898863, - 0.013555673882365227, - 0.012616695836186409, - -0.019956596195697784, - -0.018277015537023544, - -0.033697422593832016, - -0.0007864770595915616, - 0.016465185210108757, - -0.004165890160948038, - 0.03158141300082207, - 0.008093729615211487, - -0.01761576347053051, - 0.006381085608154535, - 0.004096458666026592, - -0.016875160858035088, - -0.006923312321305275, - -0.0036071317736059427, - 0.01382017508149147, - -0.01489140372723341, - -0.005534682422876358, - 0.01715288683772087, - -0.017285136505961418, - 0.011598367244005203, - 0.011419828981161118, - -0.007134913466870785, - -0.017734788358211517, - 0.003048373619094491, - -0.005997559055685997, - 0.00897980760782957, - 0.029095105826854706, - -0.013701149262487888, - -0.026965871453285217, - -0.005657013971358538, - 0.0013382094912230968, - 0.015195580199360847, - -0.019533395767211914, - 0.00407331483438611, - -0.022773532196879387, - -0.017906714230775833, - 0.011538853868842125, - 0.020049171522259712, - 0.013582124374806881, - -0.016438733786344528, - -0.014216925948858261, - -0.02048559859395027, - 0.03062921017408371, - -0.01932179555296898, - 0.02093525044620037, - 0.031237563118338585, - -0.00732667651027441, - 0.0008083810680545866, - 0.011168552562594414, - 0.01597585715353489, - 0.0058091022074222565, - 0.03425287455320358, - -0.005164381116628647, - -0.013992100954055786, - -0.002993820235133171, - -0.0026334377471357584, - 0.006324878893792629, - -0.017496738582849503, - -0.00016180019883904606, - 0.014944303780794144, - 0.0031459082383662462, - 0.007538277190178633, - -0.01548653095960617, - 0.002005247864872217, - -0.0030384548008441925, - 0.007703590206801891, - -0.015182354487478733, - 0.0217287540435791, - -0.013859850354492664, - 0.022138729691505432, - 0.005190831143409014, - -0.01844894140958786, - 0.023355433717370033, - -0.01716611161828041, - -0.013106022030115128, - 0.017840590327978134, - 0.005075111985206604, - -0.04351040720939636, - -0.0071679758839309216, - -0.020803000777959824, - -0.021543603390455246, - -0.006119891069829464, - 0.011770292185246944, - -0.009356721304357052, - 0.009019482880830765, - 0.005197443533688784, - -0.0016845404170453548, - -0.005600807722657919, - 0.014745928347110748, - 0.005276794079691172, - -0.004526272416114807, - 0.02216517925262451, - 0.0048271422274410725, - -0.03324776887893677, - 0.0019440819742158055, - -0.0328245684504509, - 0.03364451974630356, - 0.01155207958072424, - -0.020326897501945496, - -0.00860950630158186, - -0.0021705608814954758, - -0.042135003954172134, - -0.007849065586924553, - 0.00029797686147503555, - -0.0017870345618575811, - -0.010209736414253712, - 0.008430968038737774, - -0.01384662464261055, - 0.0281429011374712, - -0.0019225913565605879, - 0.021980028599500656, - -0.010652775876224041, - 0.0006711711757816374, - 0.00288801989518106, - 0.0037856698036193848, - 0.015433630906045437, - -0.013092797249555588, - -0.03975449502468109, - 0.0014737662859261036, - 0.029068654403090477, - 0.009026095271110535, - 0.030020859092473984, - 0.022932233288884163, - -0.010328762233257294, - -0.020697198808193207, - -0.0018250566208735108, - 0.009839435108006, - 0.024929214268922806, - 0.0006104186177253723, - 0.016557760536670685, - -0.016584210097789764, - 0.0067712245509028435, - 0.007399414200335741, - 0.014481427147984505, - -0.03893454000353813, - -0.0011034648632630706, - 0.011214840225875378, - 0.007677140180021524, - 0.01806541532278061, - 0.014494651928544044, - -0.027349399402737617, - 0.013079572468996048, - -0.028433851897716522, - 0.019427595660090446, - 0.02469116449356079, - -0.035416677594184875, - 0.015632007271051407, - 0.021054275333881378, - -0.00733328890055418, - -0.022046154364943504, - 0.0035079438239336014, - -0.03864359110593796, - 0.012874583713710308, - -0.0019639194943010807, - -0.03134336322546005, - 0.01382017508149147, - -0.016041982918977737, - 0.019877247512340546, - 0.000860454689245671, - 0.004585785325616598, - -0.022032929584383965, - -0.011261127889156342, - -0.03274521976709366, - 0.019414370879530907, - 0.019877247512340546, - -0.015684906393289566, - 0.0013671392807736993, - 0.001471286523155868, - -0.00897980760782957, - -0.007115075830370188, - -0.024400213733315468, - -0.0011109040351584554, - -0.022509030997753143, - 0.0031558270566165447, - 0.009012870490550995, - -0.011148715391755104, - 0.002370589878410101, - -0.001171243260614574, - -0.0022482580970972776, - -0.007267163600772619, - -0.01596263237297535, - 0.19953952729701996, - -0.027534550055861473, - -0.028169352561235428, - 0.007908578962087631, - -0.024995340034365654, - -0.023593485355377197, - 0.02393733710050583, - 0.007862291298806667, - 0.008549992926418781, - 0.030735010281205177, - 0.0146798025816679, - 0.006192628759890795, - 0.016121333464980125, - 0.0023028114810585976, - 0.008503705263137817, - 0.0014745928347110748, - -0.019916921854019165, - -0.009330270811915398, - -0.008080503903329372, - 0.03639532998204231, - 0.027137797325849533, - -0.03515217825770378, - -0.0020812919829040766, - -0.011274353601038456, - 0.04774242267012596, - 0.003669950645416975, - 0.004975924268364906, - 0.010837926529347897, - 0.02597399428486824, - 0.017364487051963806, - -0.022046154364943504, - 0.006357941776514053, - 0.02142457664012909, - -0.009693959727883339, - -0.00566693302243948, - 0.015684906393289566, - 0.008470643311738968, - 0.01339036040008068, - 0.03597212955355644, - 0.022125504910945892, - 0.01631970889866352, - -0.04488581046462059, - -0.00029797686147503555, - -0.02090880088508129, - 0.005042049568146467, - 0.0108974389731884, - -0.0001942428934853524, - 0.002560699824243784, - -0.008523543365299702, - 0.0072142635472118855, - -0.008199529722332954, - 0.00838468037545681, - 0.008239204995334148, - 0.018369590863585472, - -0.020260773599147797, - -0.023725735023617744, - 0.012696045450866222, - -0.012259619310498238, - 0.015684906393289566, - 0.0036038255784660578, - -0.053825944662094116, - 0.012934097088873386, - -0.009039320051670074, - 0.006824124604463577, - -0.0343586727976799, - 0.009998136200010777, - -0.0002996299881488085, - -0.0006736508803442121, - -0.006463741883635521, - 0.0006757173105143011, - 0.010427949950098991, - -0.004889961332082748, - -0.007796165533363819, - -0.0017308280803263187, - -0.02055172435939312, - -0.03927839174866676, - 0.013674699701368809, - 0.015843607485294342, - 0.04147375002503395, - 0.027508098632097244, - -0.010414725169539452, - 0.012061243876814842, - -0.008807881735265255, - -0.015618781559169292, - -0.00862934347242117, - -0.014957528561353683, - 0.005614032968878746, - -0.0035972129553556442, - 0.0029888607095927, - -0.026767496019601822, - -0.02893640473484993, - 0.01277539599686861, - -0.0044072470627725124, - -0.02634429559111595, - -0.002468124497681856, - -0.005055274348706007, - 0.017787689343094826, - 0.007849065586924553, - -0.020300447940826416, - -0.0033558558207005262, - -0.016213908791542053, - 0.033406469970941544, - 0.04985842853784561, - -0.022998357191681862, - -0.005518150981515646, - 0.006870412267744541, - -0.013317623175680637, - 0.03591923043131828, - -0.009164958260953426, - 0.004066701978445053, - 0.0015481571899726987, - -0.02890995517373085, - 0.016967736184597015, - -0.025392090901732445, - 0.020683974027633667, - 0.021133625879883766, - 0.006665423978120089, - -0.011644654907286167, - 0.010778414085507393, - 0.0006252967868931592, - -0.011472729034721851, - -0.0022019704338163137, - 0.022363556548953056, - -0.005432188510894775, - 0.016570985317230225, - -0.04266400262713432, - -0.031660765409469604, - 0.03988674283027649, - -0.00899303238838911, - 0.0030219233594834805, - 0.02225775457918644, - -0.006586073897778988, - 0.021675853058695793, - 0.006063684355467558, - 0.014177251607179642, - 0.0011514057405292988, - -0.014693028293550014, - -0.037135932594537735, - -0.026608796790242195, - -0.0009017829434014857, - 0.02975635789334774, - -0.007617627270519733, - 0.012133981101214886, - -0.0002888846502173692, - 0.017721563577651978, - 0.0031525208614766598, - 0.01682225987315178, - 0.007465539500117302, - -0.02355380915105343, - -0.033803220838308334, - -0.012193494476377964, - -0.002545821713283658, - 0.011452890932559967, - -0.021160077303647995, - 0.013145697303116322, - 0.0045064352452754974, - -0.0201285220682621, - -0.041685350239276886, - 0.011175164952874184, - 0.007908578962087631, - -0.038299739360809326, - -0.012967159040272236, - 0.007802778389304876, - -0.02975635789334774, - -0.008206142112612724, - 0.007696977816522121, - -0.1664240062236786, - 0.02139812707901001, - 0.021689077839255333, - -0.021054275333881378, - 0.01511622965335846, - 0.009118670597672462, - 0.023725735023617744, - 0.012682820670306683, - -0.02972990646958351, - 0.006126503460109234, - 0.027508098632097244, - -0.002077985554933548, - -0.015195580199360847, - -0.017721563577651978, - -0.007624240126460791, - 0.005280100274831057, - -0.029650557786226273, - 0.02732294797897339, - 0.017814138904213905, - 0.011624816805124283, - 0.004817223642021418, - -0.019996272400021553, - 0.014785603620111942, - -0.009118670597672462, - -0.008847557008266449, - 0.005567745305597782, - -0.0217287540435791, - 0.03639532998204231, - -0.01593618281185627, - -0.03221621736884117, - -0.012094305828213692, - -0.01049407571554184, - 0.021517151966691017, - -3.9055219531292096e-05, - 0.006824124604463577, - -0.007346514146775007, - 0.005217281170189381, - 0.004919717554003, - -0.009746859781444073, - 0.010322149842977524, - 0.01510300487279892, - 0.04414520785212517, - -0.005465250927954912, - -0.0028549572452902794, - -0.01216043159365654, - 0.024003461003303528, - 0.024453112855553627, - -0.029518306255340576, - -0.0009621222270652652, - -0.020657524466514587, - -0.0002452832995913923, - -0.015526206232607365, - 0.003468268783763051, - 0.023712510243058205, - -0.011895930394530296, - 0.022509030997753143, - -0.01712643727660179, - 0.016901610419154167, - -0.003106233198195696, - 0.007974703796207905, - -0.004172502551227808, - -0.0334593690931797, - -0.0024466337636113167, - 0.005108174867928028, - -0.01975822076201439, - -0.02048559859395027, - -0.0037889762315899134, - 0.01932179555296898, - -0.005954577587544918, - -0.005068499594926834, - 0.0029607575852423906, - -0.023606710135936737, - 0.005418963264673948, - -0.014137576334178448, - 0.014137576334178448, - 0.01848861761391163, - -0.0006529867532663047, - 0.0016746217152103782, - 0.009568322449922562, - 0.003712932113558054, - -0.01881924271583557, - 0.043404605239629745, - -0.0007091931765899062, - -0.027772599831223488, - -0.002444980666041374, - -0.019070519134402275, - -0.0022251142654567957, - 0.01974499598145485, - -0.0008083810680545866, - 0.020829450339078903, - 0.022733857855200768, - -0.025907868519425392, - -0.01215381920337677, - -0.02938605658710003, - 0.015790706500411034, - -0.0030880486592650414, - -0.010857764631509781, - 0.010857764631509781, - -0.00679767457768321, - -0.020419472828507423, - 0.0059777214191854, - -0.024863090366125107, - -0.04105054959654808, - 0.01527492981404066, - 0.0008009419543668628, - 1.6143857362038716e-09, - 0.005779345985502005, - 0.009092220105230808, - 0.03740043565630913, - -0.019123418256640434, - -0.023302534595131874, - -0.00944929663091898, - 0.014031775295734406, - 0.022879332304000854, - -0.016875160858035088, - 0.014547552913427353, - 0.012286069802939892, - -0.022006480023264885, - 0.012067856267094612, - 0.0026879908982664347, - 0.051339633762836456, - -0.02975635789334774, - -0.014864953234791756, - 0.014203701168298721, - 0.003884857753291726, - -0.023725735023617744, - -0.0932101383805275, - -0.006166178733110428, - 0.013555673882365227, - 0.010983401909470558, - 0.010361825115978718, - 0.009098832495510578, - 0.004546110052615404, - -0.0033178338780999184, - 0.010573425330221653, - 0.043801359832286835, - -0.02933315560221672, - -0.031713664531707764, - -0.012041405774652958, - -0.010712288320064545, - 0.004837061278522015, - -0.012907646596431732, - 0.0001305973419221118, - -0.014693028293550014, - -0.013344072736799717, - 0.03636888042092323, - -0.0029690233059227467, - -0.018224116414785385, - -0.007756490726023912, - -0.011988505721092224, - -0.0239108856767416, - 0.008827718906104565, - -0.029438955709338188, - -0.006100053433328867, - 0.018766343593597412, - -0.0005232159746810794, - 0.035469576716423035, - -0.018660541623830795, - 0.02183455415070057, - -0.024426663294434547, - -0.004301446955651045, - 0.0027160942554473877, - -0.013952425681054592, - -0.004139440134167671, - 0.03933129087090492, - -0.022971907630562782, - -0.0028665291611105204, - 0.023659611120820045, - 0.0060736034065485, - -0.011763679794967175, - 0.000706300197634846, - -0.025048241019248962, - -0.018964719027280807, - -0.006658811587840319, - 0.003218645928427577, - -0.0086227310821414, - -0.02634429559111595, - -0.04097119718790054, - -0.02684684656560421, - 0.011591753922402859, - 0.029624106362462044, - -0.005094949621707201, - -0.0013084531528875232, - -0.018303466960787773, - -0.021160077303647995, - -0.02890995517373085, - -0.03703013435006142, - 0.013112634420394897, - -0.04247885197401047, - 0.03348582237958908, - -0.006824124604463577, - -0.01238525751978159, - -0.02516726590692997, - -0.016597434878349304, - 0.022694181650877, - 0.007452314253896475, - -0.04364265874028206, - 0.00883433222770691, - -0.0017308280803263187, - 0.014177251607179642, - -0.027005547657608986, - -0.0034980252385139465, - -0.044674210250377655, - -0.02007562294602394, - 0.0076506901532411575, - -0.013912750408053398, - -0.0053892070427536964, - -0.030047308653593063, - 0.027560999616980553, - -0.020855899900197983, - 0.039357740432024, - 0.030100207775831223, - -0.00011757893662434071, - -0.009151733480393887, - 0.022442905232310295, - -0.01087760180234909, - -0.010341987013816833, - 0.02732294797897339, - 0.010632938705384731, - -0.007577952463179827, - -0.04681666940450668, - 0.000867893744725734, - 0.015539431013166904, - 0.007525051943957806, - 0.0004612235352396965, - -0.004099764861166477, - 0.001930856960825622, - -0.008073891513049603, - -0.03943709284067154, - 0.0183960422873497, - 0.030020859092473984, - 0.000692661851644516, - -0.024836638942360878, - -0.013582124374806881, - 0.0019887166563421488, - 0.007776327896863222, - 0.024069586768746376, - -0.003005392150953412, - -0.016465185210108757, - -0.002112701302394271, - -0.0018696910701692104, - -0.01924244500696659, - -0.030047308653593063, - -0.04581156373023987, - 0.0012324091512709856, - 0.019811121746897697, - 0.012286069802939892, - 0.010341987013816833, - -0.0035906005650758743, - 0.02853965386748314, - 0.007134913466870785, - 0.007908578962087631, - -0.017483513802289963, - -0.0008786391117610037, - -0.01171739213168621, - -0.0033690808340907097, - -0.012841521762311459, - -0.014322726987302303, - -0.009839435108006, - 0.019215993583202362, - -0.009958460927009583, - 0.024069586768746376, - -0.011889318004250526, - -0.012226556427776814, - 0.0205781739205122, - 0.044700659811496735, - 0.012901034206151962, - 0.04578511416912079, - -0.022085830569267273, - -0.007525051943957806, - -0.005458638537675142, - -0.01805219054222107, - 0.006050459574908018, - 0.0066720363683998585, - 0.013529223389923573, - -0.006460435688495636, - 0.0043874094262719154, - -0.01217365637421608, - 0.03229556605219841, - 0.005485088564455509, - 0.010930501855909824, - -0.0016795810079202056, - -0.00609344057738781, - 0.005871921312063932, - 0.009032707661390305, - 0.01805219054222107, - 0.0035740691237151623, - -0.031158212572336197, - 0.03562827780842781, - 0.0071679758839309216, - -0.01383339986205101, - -0.0016456919256597757, - 0.008430968038737774, - -0.029888607561588287, - -0.012616695836186409, - 0.0049031865783035755, - -0.0011266088113188744, - -0.028380952775478363, - -0.026529446244239807, - -0.005941352806985378, - 0.026251720264554024, - 0.014521102420985699, - -0.000203851712285541, - -0.00586200226098299, - 0.0021821327973157167, - 0.0066720363683998585, - 0.008232592605054379, - 0.018726667389273643, - 0.010024585761129856, - 0.020842675119638443, - 0.00042258159373886883, - -8.973401418188587e-05, - 0.04284915328025818, - 0.011743842624127865, - -0.025008564814925194, - -0.005911596119403839, - -0.01196205522865057, - 0.0030731705483049154, - -0.01965242065489292, - 0.0140714505687356, - -0.008113566786050797, - 0.019215993583202362, - 0.005108174867928028, - 0.023699285462498665, - 0.011314027942717075, - 0.003020270261913538, - 0.030814360827207565, - 0.02302480861544609, - -0.002226767363026738, - -0.0012745639542117715, - -0.002977288793772459, - -0.024863090366125107, - -0.011393378488719463, - 0.02342155948281288, - -0.010242799296975136, - -0.035813428461551666, - -0.0004889135016128421, - 0.03131691366434097, - -0.005339613184332848, - 0.019943371415138245, - 0.0036335818003863096, - 0.005832246039062738, - -0.008840944617986679, - 0.018951494246721268, - -0.016703234985470772, - -0.006483579520136118, - -0.021689077839255333, - 0.008067279122769833, - 0.035390228033065796, - -0.0008926907321438193, - 0.011280965991318226, - -0.0026813785079866648, - 0.012034793384373188, - -0.016518084332346916, - 0.020829450339078903, - -0.019956596195697784, - -0.007743265479803085, - -0.007736653089523315, - 0.015446855686604977, - 0.011247903108596802, - -0.010586651042103767, - -0.009746859781444073, - -0.013859850354492664, - -0.0003136816085316241, - 0.024558912962675095, - -0.0050155995413661, - 0.0006748907035216689, - 0.11648622155189514, - 0.029174454510211945, - -0.007769715506583452, - 0.015592331066727638, - -0.005008986685425043, - 0.017457062378525734, - 0.02344800904393196, - 0.009885722771286964, - -0.0009075689013116062, - -0.06638973951339722, - 0.006969599984586239, - -0.008847557008266449, - 0.021570052951574326, - -0.017761239781975746, - -0.006936537567526102, - 0.004314671736210585, - -0.0017539719119668007, - 0.020313672721385956, - -0.03594567999243736, - -0.001448142691515386, - 0.0335916206240654, - -0.034199971705675125, - 0.025074690580368042, - 0.0434575080871582, - -0.01464012823998928, - -0.006850574631243944, - 0.006519948597997427, - 0.011479341425001621, - 0.005574357695877552, - -0.002554087433964014, - 0.004850286059081554, - 0.0076705277897417545, - -0.0629512295126915, - -0.01322504784911871, - 0.01765543781220913, - -0.029677007347345352, - -0.0067712245509028435, - -0.019877247512340546, - 0.011849642731249332, - 0.0163461584597826, - 0.01487817894667387, - 0.03806168586015701, - -0.017708338797092438, - -0.03351227194070816, - 0.00250779977068305, - 0.0020002885721623898, - 0.0021540296729654074, - -0.013059734366834164, - -0.023778636008501053 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 22, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 557 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000023.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000023.json deleted file mode 100644 index a5d48296a67a9e147299b02491e5b2e718714896..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000023.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000023", - "content": "Nach erfolgreicher Durchf\u00fchrung der Messungen erfolgt nun die Auswertung der Mess- daten. F\u00fcr die \u00dcbertragung der Messdaten wurde die Software NorXfer 6.1 verwendet, die speziell f\u00fcr die \u00dcbertragung von Messdateien entwickelt wurde. Zur Auswertung der Daten kam die Software NorReview 6.2 zum Einsatz. Es handelt es sich hierbei um eine Analyse- und Berichtssoftware speziell f\u00fcr Schallmessungen. Mit der Software k\u00f6nnen L\u00e4rm- und Vibrationsmessungen dargestellt und nachbearbeitet werden. Nach der Firma Norsonic \u201elassen sich die Messdaten, die nachbearbeiteten Daten sowie Wetter- daten, Audioaufzeichnungen, Sprachnotizen, Word- und Excel-Berichte sowie andere\n46\n6 Messauswertung und Statistik\nDateien erfassen.\u201c [83] Auf diese Weise wird eine umfassende und effektive Auswer- tung der Messdaten erm\u00f6glicht. Um den Schallleistungspegel zu bestimmen, werden die Messwerte der ortsfesten Mikrofonposition im Fernfeld verwenden. Das Fernfeld ist der Bereich, in dem der Schalldruck und die Schallschnelle phasengleich sind und sich ann\u00e4- hernd als Kugelwelle ausbreiten. [84] In diesem Bereich ist die Messung weniger von reflektierenden Fl\u00e4chen oder anderen Schallquellen beeinflusst. Die Mikrofonpositio- nen, die sich im Nahfeld befinden befinden sich in unmittelbarer N\u00e4he des Anh\u00e4ngers oder in der N\u00e4he anderer Anh\u00e4nger. Dies kann dazu f\u00fchren, dass es zu St\u00f6rungen oder Interferenzen auftreten, die die Messergebnisse verf\u00e4lschen k\u00f6nnen. Daher werden diese Messwerte im Nahfeld nicht f\u00fcr die Bestimmung des Schallleistungspegels ver- wendet. Jede Messung wurde nach einem einheitlichen Verfahren ausgewertet. Hierbei wurden\nzun\u00e4chst die Messdaten mittels der Software NorXfer 6.1 auf den Computer \u00fcbertragen und in die Auswertesoftware NorReview 6.2 eingef\u00fcgt. Anschlie\u00dfend wurden alle Mess- daten in ein L(t) + L(f)-Diagramm, welches den Schalldruckpegel \u00fcber der Zeit und Fre- quenz abbildet, dargestellt. Dabei wurden f\u00fcr jeden Pegelverlauf eigene Farben zuge- wiesen (Laeq = blau, LAFmax = rot und LAF(TM5) = gr\u00fcn). Zur besseren \u00dcbersicht wurden alle Pegelgr\u00f6\u00dfen bis auf den LAeq-Pegelverlauf ausgeblendet. Mittels der protokollierten Ver- ladet\u00e4tigkeiten, bei denen die durchschnittliche Einwirkzeit 5 Sekunden betrug, wurden die einzelnen Prozessschritte als Marker mit zugeordneter Farbe in das Diagramm ein- gef\u00fcgt. Mithilfe der Funktion \"Marker Berechnung\" konnten anschlie\u00dfend der A-bewer- tete Schalldruckpegel LAeq, der maximale Schalldruckpegel LAFmax und der Taktmaximal- pegel LAFTeq f\u00fcr die einzelnen Marker berechnet werden. Die Ergebnisse wurden in einem Excel-Sheet zur weiteren Verarbeitung transferiert. Um Einfl\u00fcsse aus dem Umfeld zu be- r\u00fccksichtigen, sind Korrekturen an den gemessenen Schalldruckpegeln erforderlich. Zum einen wird eine Fremdger\u00e4uschkorrektur K1 (siehe Formel 15) nach den Verfahren der Normreihe DIN EN ISO 3746 ff [30] und eine Umgebungskorrektur K2 im Freien (siehe Formel 16) nach den Verfahren der Normreihe DIN EN ISO 3744 ff [29] vorgenommen. Da die Messungen im Freien stattfanden, kann die Umgebungskorrektur K2 vernachl\u00e4s- sigt werden. Die aufgetretenen Fremdger\u00e4usche, beispielsweise von vorbeifahrenden Zugmaschinen, wurden im Programm NorReview 6.2 ausgeblendet. Da die protokollier- ten Verladet\u00e4tigkeiten in einzelne 5 Sekunden lange Arbeitsschritte unterteilt waren, konnten eventuelle Fremdger\u00e4usche gezielt in diesem Zeitraum anhand des Geh\u00f6rein- drucks analysiert werden.", - "embedding": [ - 0.001009186147712171, - 0.008080042898654938, - 0.010779943317174911, - -0.03952864184975624, - 0.0119529590010643, - 0.013342227786779404, - -0.013401206582784653, - -0.026592710986733437, - -0.005167164374142885, - -0.028257213532924652, - 0.0018397988751530647, - 0.02157299406826496, - -0.013322568498551846, - 0.0041252123191952705, - -0.0071822600439190865, - -0.00590111780911684, - 0.02504616603255272, - -0.0004271839279681444, - 0.025924289599061012, - -0.008224212564527988, - -0.009796969592571259, - 0.03163864091038704, - -0.013086655177175999, - 0.014036862179636955, - -0.010812709107995033, - 0.006297584157437086, - 0.010039436630904675, - -0.01602902263402939, - -0.01458732783794403, - -0.0009092505206353962, - -0.0014531626366078854, - 0.00494108023121953, - -0.0031258559320122004, - 0.011743257753551006, - -0.03499385714530945, - -0.03200561925768852, - -0.01764109916985035, - 0.002172371605411172, - 0.03737920895218849, - 0.005209759809076786, - 0.010262244381010532, - 0.000516470696311444, - -0.01469217799603939, - -0.008800890296697617, - -0.0002340705832466483, - 0.0032733019907027483, - 0.014049968682229519, - 0.00016567199782002717, - -0.003120941109955311, - 0.006061670370399952, - 0.006723538972437382, - -0.00577988475561142, - 0.0007695863605476916, - 0.01322427112609148, - 0.009770757518708706, - -0.024089405313134193, - 0.0233292393386364, - 0.008132467977702618, - -0.016841614618897438, - -0.01904347538948059, - -0.03195319324731827, - 0.01663191244006157, - -0.03546568751335144, - 0.0036697678733617067, - -0.004400445148348808, - -0.02167784422636032, - -0.014128606766462326, - 0.010104968212544918, - -0.023434089496731758, - -0.002370604546740651, - 0.033919140696525574, - 0.025780120864510536, - -0.006854602135717869, - 0.02643543668091297, - 0.020013341680169106, - -0.010412966832518578, - 0.006782517768442631, - -0.0029243463650345802, - 0.03051150031387806, - 0.009928032755851746, - 0.01996091566979885, - -0.02444327622652054, - -0.03868984058499336, - 0.033001698553562164, - 0.025072379037737846, - -0.0004423381178639829, - -0.006464689504355192, - 0.017090633511543274, - -0.034102629870176315, - -0.01905658096075058, - 0.01640910468995571, - 0.05009233206510544, - 0.006861155387014151, - -0.011074835434556007, - 0.033394888043403625, - 0.003886022139340639, - 0.007890000939369202, - 0.021939970552921295, - -0.009108887985348701, - -0.017916331067681313, - -0.002155988710001111, - -0.020249255001544952, - 0.006035457830876112, - -0.001076356042176485, - -0.022831199690699577, - 0.0029718568548560143, - 0.014364520087838173, - -0.004187467508018017, - 0.007326429709792137, - -0.01701199635863304, - -0.026815518736839294, - 0.02707764506340027, - 9.292172035202384e-05, - 0.004315253812819719, - 0.015832427889108658, - -0.012418232858181, - 0.056095026433467865, - -0.02846691384911537, - -0.008990931324660778, - -0.014181031845510006, - 0.018479902297258377, - 0.011186239309608936, - 0.004488912411034107, - -0.02412872388958931, - 0.027130071073770523, - 0.01702510192990303, - -0.010819262824952602, - -0.0065990290604531765, - -0.019279388710856438, - -0.0068152835592627525, - -0.028729040175676346, - -0.013866480439901352, - 0.030328011140227318, - 0.0023181792348623276, - -0.007811363320797682, - -0.00410882942378521, - -0.009600374847650528, - 0.0060747768729925156, - -0.018060501664876938, - -0.018086712807416916, - 0.014351414516568184, - 0.01089134719222784, - -0.02697279490530491, - -0.04123246297240257, - -0.01444315817207098, - 0.033892929553985596, - -0.0035223220475018024, - 0.017378972843289375, - 0.008813995867967606, - -0.008492891676723957, - -0.009456206113100052, - -0.04167807847261429, - 0.011782576330006123, - -0.006268094759434462, - -0.021625418215990067, - -0.0018479903228580952, - -0.005455503240227699, - 0.01702510192990303, - -0.021061846986413002, - -0.003964660223573446, - -0.01043917890638113, - 0.02917465567588806, - 0.008945059031248093, - 0.014364520087838173, - 0.007962086237967014, - 0.016985783353447914, - 0.007332982961088419, - -0.0290698055177927, - -0.017811480909585953, - -0.005432567093521357, - -0.02330302633345127, - 0.014836347661912441, - -0.010596455074846745, - 0.035229772329330444, - 0.011277982965111732, - -0.0052556321024894714, - 0.007293663918972015, - 0.0009903458412736654, - -0.009692119434475899, - -0.029725121334195137, - -0.01078649703413248, - 0.017759054899215698, - 0.00938412081450224, - 0.01104862242937088, - -0.025609737262129784, - 0.013433972373604774, - 0.013204611837863922, - 0.0025229654274880886, - -1.901951509353239e-05, - -0.0067563047632575035, - 0.013460184447467327, - -0.0034895562566816807, - 0.0031504302751272917, - -0.024810252711176872, - -0.6303613185882568, - -0.00850599817931652, - 0.009364461526274681, - 0.017824586480855942, - -0.015281962230801582, - 0.028414489701390266, - 0.008735358715057373, - 0.0025737525429576635, - -0.005383418407291174, - 0.047392431646585464, - -0.00789655465632677, - -0.0013466738164424896, - -0.008119361475110054, - 0.0017087357118725777, - -0.006402434315532446, - -0.021323973312973976, - -0.019109006971120834, - 0.004233339335769415, - 0.03357837721705437, - 0.0023886258713901043, - -0.05253010615706444, - 0.03182213008403778, - 0.007640981115400791, - 0.014377626590430737, - 0.002591773634776473, - 0.005684863775968552, - 0.0007331344531849027, - -0.019030367955565453, - 0.0052392492070794106, - -0.003296238137409091, - -0.03336867690086365, - -0.0008535486995242536, - -0.017994970083236694, - 0.014980517327785492, - 0.04125867784023285, - -0.017090633511543274, - 0.00330606778152287, - 0.01986917294561863, - 0.0221103522926569, - -0.0017251186072826385, - -0.006874261889606714, - -0.014652859419584274, - 0.0020806274842470884, - 0.008374935016036034, - 0.012804868631064892, - -0.011317302472889423, - 0.023145750164985657, - -0.013184952549636364, - 0.014023756608366966, - -0.025400036945939064, - -0.012038149870932102, - -0.00866327341645956, - 0.0192662812769413, - 0.0028211341705173254, - 0.010367094539105892, - 0.00522286631166935, - 0.03903060406446457, - -0.004505295306444168, - -0.016461530700325966, - 0.008394594304263592, - -0.0009051548549905419, - 0.01631736196577549, - 0.0011492599733173847, - -0.011422152630984783, - -0.011900532990694046, - 0.004043297842144966, - -0.029227079823613167, - -0.0417829304933548, - 0.029017379507422447, - -0.014613539911806583, - -0.00927271693944931, - 0.01414171326905489, - -0.006422094069421291, - -0.012077468447387218, - 0.01681540161371231, - 0.03378807753324509, - 0.01458732783794403, - -0.025714589282870293, - 0.023565152660012245, - 0.004443040583282709, - -0.009652800858020782, - -0.005032824818044901, - -0.01693335734307766, - 0.0023787959944456816, - 0.030065884813666344, - -0.015937278047204018, - -0.016867825761437416, - 0.006782517768442631, - 0.012372360564768314, - -0.011762917041778564, - 0.0029390910640358925, - 0.04222854599356651, - -0.017916331067681313, - -0.02167784422636032, - -0.014010650105774403, - 0.026487860828638077, - -0.022962262853980064, - 0.010196712799370289, - -0.0020839038770645857, - -0.026212628930807114, - -0.026514073833823204, - -0.006215669680386782, - 0.028912529349327087, - -0.03001345880329609, - 0.02250354178249836, - -0.011461472138762474, - -0.012693465687334538, - 0.010111520998179913, - 0.028833892196416855, - -0.018610965460538864, - 0.0010050904238596559, - -0.02664513699710369, - -0.010118074715137482, - -0.0208914652466774, - -0.00785723514854908, - -0.025806332007050514, - 0.02066865749657154, - 0.0019593939650803804, - 0.015281962230801582, - -0.016789188608527184, - 0.006808730307966471, - -0.01013773400336504, - 0.04222854599356651, - -0.010622668080031872, - -0.025596631690859795, - 0.033499740064144135, - 0.03221531957387924, - 0.008977824822068214, - -0.01216265931725502, - -0.012031596153974533, - 0.0022477328311651945, - 0.0029292611870914698, - 0.017182378098368645, - -0.010399860329926014, - 0.009606928564608097, - 0.020013341680169106, - 0.029961034655570984, - -0.0006319700623862445, - 0.008329062722623348, - -0.03135030344128609, - -0.027103858068585396, - 0.013735417276620865, - -0.0025098591577261686, - -0.01885998621582985, - -0.004370955750346184, - -0.044744957238435745, - -0.01792943850159645, - 0.010367094539105892, - 0.008125915192067623, - -0.00443321093916893, - -0.0075295777060091496, - -0.014783922582864761, - 0.0030783454421907663, - 0.022372478619217873, - -0.009954245761036873, - 0.006395881529897451, - -0.008440466597676277, - -0.008925399743020535, - -0.03378807753324509, - -0.01545234490185976, - 0.020694870501756668, - 0.019397344440221786, - -0.046973031014204025, - -0.013211164623498917, - -0.007018431089818478, - -0.02796887420117855, - 0.01333567500114441, - 0.006775964517146349, - -0.012346147559583187, - -0.030223160982131958, - 0.0059437137097120285, - 0.02015751041471958, - -0.016789188608527184, - 0.009174419566988945, - -0.0020396702457219362, - -0.004541337955743074, - -0.029777545481920242, - -0.016802294179797173, - -0.011867767199873924, - -0.02532139979302883, - 0.02402387373149395, - 0.0027375814970582724, - -0.021717162802815437, - -0.0012557486770674586, - 0.026789305731654167, - 0.0003792639763560146, - 0.0032814934384077787, - -0.011887427419424057, - -0.02718249522149563, - 0.03790346160531044, - -0.005557077005505562, - 0.008178340271115303, - -0.020721083506941795, - 0.016186298802495003, - -0.0336570143699646, - 0.0027506877668201923, - 0.0090236971154809, - -0.015150899067521095, - 0.00816523376852274, - 0.022162776440382004, - 0.02391902357339859, - 0.011618747375905514, - 0.024574339389801025, - -0.00871569849550724, - 0.022857412695884705, - -0.012051256373524666, - 0.010858581401407719, - -0.028833892196416855, - 0.03756269812583923, - 0.02322438918054104, - 0.013814055360853672, - -0.016186298802495003, - -0.024757826700806618, - -0.017365867272019386, - 0.0023149028420448303, - 0.03884711489081383, - 0.009443099610507488, - 0.013060442171990871, - 0.017759054899215698, - -0.005173717625439167, - -0.010026330128312111, - -0.01600280962884426, - 0.04443040490150452, - 0.009862501174211502, - -5.693055209121667e-05, - 0.0016341935843229294, - -0.0022936048917472363, - 0.01792943850159645, - 0.013040782883763313, - -0.024705402553081512, - -0.008892633952200413, - -0.006966006010770798, - 0.007850682362914085, - 0.018728923052549362, - 0.02098320983350277, - 0.023761747404932976, - 0.020721083506941795, - 0.003846703330054879, - 0.02563595026731491, - 0.01058990228921175, - 0.009390674531459808, - 0.029462995007634163, - 0.013263589702546597, - -0.01663191244006157, - 0.020223041996359825, - -0.03402399271726608, - 0.014993623830378056, - 0.023538939654827118, - -0.009659353643655777, - -0.01352571602910757, - -0.010045989416539669, - 0.0027277516201138496, - -0.014613539911806583, - -0.011219005100429058, - 0.02068176306784153, - -0.02209724485874176, - 0.029358142986893654, - -0.013682992197573185, - 0.013656779192388058, - 0.03478415682911873, - -0.0013827161164954305, - 0.017274122685194016, - 0.005426014307886362, - -0.012437892146408558, - -0.005065590608865023, - 0.006848049350082874, - -0.011415599845349789, - 0.0020265637431293726, - -0.0116646196693182, - -0.020340999588370323, - 0.006310690194368362, - -0.019226962700486183, - 0.006913580931723118, - 0.019541515037417412, - 0.02494131587445736, - -0.01643531769514084, - 0.005861799232661724, - 0.005573459900915623, - 0.038060735911130905, - -0.003997426014393568, - -0.011494237929582596, - -0.00927927065640688, - 0.008571529760956764, - 0.01541302539408207, - -0.012949038296937943, - -0.007988298311829567, - -0.003456790465861559, - -0.0011926746228709817, - -0.027234921231865883, - -0.000559885345865041, - 0.0012754081981256604, - 0.008348722010850906, - -0.0013859927421435714, - -0.02271324209868908, - 0.020236149430274963, - 0.019030367955565453, - 0.00850599817931652, - 0.010249137878417969, - -0.007509917952120304, - 0.017706630751490593, - -0.007929320447146893, - -0.016356680542230606, - -0.0035059391520917416, - -0.04458767920732498, - 0.022529754787683487, - -0.008401147089898586, - -0.015347493812441826, - -0.030118310824036598, - -0.005829033441841602, - -0.0085584232583642, - -0.0006061670137569308, - 0.007044644095003605, - 0.005799544043838978, - 0.008322509936988354, - -0.011835001409053802, - -0.0040891701355576515, - -0.014928092248737812, - -0.004619975574314594, - 0.033211398869752884, - -0.0024656252935528755, - -0.024561231955885887, - -0.036750104278326035, - -0.005334269721060991, - -0.004557720851153135, - 0.02340787649154663, - 0.0029112400952726603, - 0.01935802586376667, - 0.032975487411022186, - -0.026710668578743935, - -0.016042128205299377, - -0.022883623838424683, - -0.029567845165729523, - 0.023683110252022743, - 0.01733965426683426, - -0.008433912880718708, - -0.0027244749944657087, - 0.03439096733927727, - -0.001310631399974227, - -0.0003606284153647721, - -0.016251830384135246, - 0.012208531610667706, - -0.00488865515217185, - 0.0109961973503232, - 0.014115500263869762, - -0.006703879684209824, - 0.009436545893549919, - 0.016487743705511093, - 0.02807372435927391, - -0.006448306608945131, - -0.011179685592651367, - 0.021153591573238373, - 0.016998888924717903, - 0.004302147775888443, - -0.015137792564928532, - -0.010288456454873085, - 0.04833608865737915, - 0.008538763970136642, - 0.017575567588210106, - -0.028964955359697342, - 0.0070249843411147594, - 0.014233456924557686, - 0.006241882219910622, - 0.009292377158999443, - -0.014416946098208427, - -0.0013302909210324287, - 0.0290698055177927, - 0.0013319292338564992, - 0.0032470894511789083, - 0.003463343484327197, - 0.005799544043838978, - -0.004354572854936123, - 0.010544029995799065, - -0.01591106504201889, - -0.010039436630904675, - 0.017483823001384735, - -0.011487684212625027, - 0.0035157687962055206, - -0.00577988475561142, - -0.022280734032392502, - -0.03719571977853775, - 0.004013808909803629, - -0.021140484139323235, - -0.01313252653926611, - -0.001582587487064302, - -0.01924007013440132, - 0.004308701027184725, - 0.010858581401407719, - -0.01135662104934454, - -0.026120884343981743, - -0.00800140481442213, - -0.012319935485720634, - -0.013211164623498917, - -0.007523024454712868, - 0.023473408073186874, - 0.0022313499357551336, - -0.022333160042762756, - -0.019213857129216194, - 0.006615411955863237, - 0.013735417276620865, - -0.007444386370480061, - 0.013551929034292698, - -0.005160611122846603, - -0.014862560667097569, - 0.01130419597029686, - -0.018689604476094246, - -0.0032143236603587866, - 0.0003596044844016433, - -0.02190065197646618, - -0.01643531769514084, - 0.0005897841183468699, - -0.018899304792284966, - 0.011887427419424057, - 0.01752314157783985, - 0.003614066168665886, - 0.0034338543191552162, - 0.011880873702466488, - 0.010399860329926014, - 0.004757591988891363, - -0.010976538062095642, - 0.012634486891329288, - -0.001662863651290536, - 0.015491663478314877, - 0.0158979594707489, - -0.010255690664052963, - 0.029961034655570984, - -0.04823123663663864, - 0.0021903926972299814, - -0.006330349948257208, - 0.02707764506340027, - 0.01286384742707014, - -0.000771224673371762, - 0.018427478149533272, - 0.011795682832598686, - 0.0038270438089966774, - 0.012870400212705135, - -0.002578667365014553, - 0.010727518238127232, - 0.010583348572254181, - 0.01976432092487812, - 0.008741911500692368, - -0.007647534366697073, - 0.019698791205883026, - 0.02555731311440468, - 0.013289802707731724, - 0.0020576913375407457, - -0.03517734631896019, - 0.04133731499314308, - 0.0042104036547243595, - -0.0006790708866901696, - 0.02534761093556881, - -0.008656720630824566, - 0.008977824822068214, - -0.028807679191231728, - 0.0007237142999656498, - 0.007123281713575125, - 0.0069725592620670795, - -0.0018856709357351065, - -0.02119291014969349, - -0.02027546800673008, - -0.020734189078211784, - -0.0072871106676757336, - 0.022542860358953476, - -0.02038031816482544, - 0.000837984960526228, - -0.019122112542390823, - -0.001505587832070887, - 0.0009829736081883311, - 0.016946464776992798, - 0.02220209687948227, - -0.02249043434858322, - -0.03596372529864311, - 0.016500849276781082, - -0.04000047221779823, - 0.03205804526805878, - -0.03790346160531044, - 0.003912234678864479, - -0.023761747404932976, - -0.005645544733852148, - -0.007876894436776638, - -0.018178457394242287, - -0.00041162018897011876, - -0.011428706347942352, - 0.017392078414559364, - 0.016553275287151337, - 0.03598994016647339, - 0.01235925406217575, - -0.011625301092863083, - 0.013997543603181839, - -0.004911591298878193, - 0.0038532563485205173, - -0.03255608305335045, - -0.012418232858181, - -0.01975121535360813, - 0.01884688064455986, - 0.007319876458495855, - 0.010583348572254181, - 0.010760284028947353, - 0.002200222574174404, - -0.002685156185179949, - 0.04144216701388359, - -0.006241882219910622, - -0.014508689753711224, - -0.0035190454218536615, - -0.014914985746145248, - 0.015976596623659134, - 0.001592417131178081, - 0.005304780788719654, - 0.017667312175035477, - -0.005186823662370443, - -0.014600434340536594, - 0.017890118062496185, - -0.009298929944634438, - -0.0011975894449278712, - 0.002270668977871537, - 0.011219005100429058, - -0.026173310354351997, - 0.028126150369644165, - 0.008990931324660778, - 0.013348780572414398, - -0.002357498276978731, - -0.004292318131774664, - -0.03475794568657875, - -0.02251664735376835, - 0.01352571602910757, - -0.02260839194059372, - 0.016749870032072067, - -0.0013384823687374592, - 0.0029964311979711056, - 0.007634427864104509, - -0.011795682832598686, - 0.027444621548056602, - -0.021245336160063744, - -0.0032601957209408283, - -0.007870341651141644, - -0.026002926751971245, - -0.011572875082492828, - 0.0003741443215403706, - -0.014783922582864761, - 0.01541302539408207, - 0.0016145340632647276, - 0.013066994957625866, - 0.02452191337943077, - -0.019384238868951797, - 0.0026261776220053434, - 0.011179685592651367, - -0.004964016377925873, - 0.03407641872763634, - -0.0025000295136123896, - 0.04044608399271965, - 0.012457551434636116, - -0.03698601946234703, - -0.026736881583929062, - -0.0652170181274414, - 0.018702710047364235, - -0.026291266083717346, - 0.025491781532764435, - 0.023683110252022743, - -0.03397156670689583, - 0.004295594524592161, - 0.01895173080265522, - 0.030537711456418037, - -0.018283307552337646, - -0.016251830384135246, - 0.021166697144508362, - 0.028021300211548805, - -0.000764261931180954, - -0.024495700374245644, - 0.008093149401247501, - -0.020642444491386414, - -0.0030160904861986637, - -0.009659353643655777, - -0.013932012021541595, - -0.02097010239958763, - 0.007228132337331772, - -0.013289802707731724, - 0.04416827857494354, - -0.004937803838402033, - 0.013709204271435738, - 0.023656897246837616, - -0.03344731405377388, - -0.002477093366906047, - -0.03373565152287483, - -0.02200550213456154, - 0.020747294649481773, - -0.018794454634189606, - 0.040603362023830414, - -0.0008961442508734763, - -0.012713124975562096, - -0.00011959511903114617, - -0.006687496788799763, - -0.0023050729651004076, - 0.005924053955823183, - 0.0018856709357351065, - 0.021035633981227875, - -0.016382893547415733, - 0.009764203801751137, - 0.0044037215411663055, - -0.0016112575540319085, - 0.002473816741257906, - -0.0058126505464315414, - -0.017182378098368645, - -0.02279188111424446, - 0.006775964517146349, - -0.005953543353825808, - 0.011736704036593437, - 0.005088526289910078, - -0.017300335690379143, - -0.005756948608905077, - -0.01272623147815466, - -0.024679189547896385, - 0.010924112983047962, - -0.007483705412596464, - 0.0022198818624019623, - -0.026579605415463448, - 0.0014982155989855528, - -0.0004861623456235975, - 0.008427360095083714, - 0.024168044328689575, - -0.001857820083387196, - -0.020196830853819847, - -0.003587853629142046, - 0.024063192307949066, - -0.004315253812819719, - 0.008211106061935425, - 0.026278160512447357, - -0.009698672220110893, - -0.023132644593715668, - 0.013879586942493916, - 0.0020069044549018145, - -0.012732784263789654, - 0.03903060406446457, - -0.008014511317014694, - -0.0192662812769413, - -0.00567831052467227, - -0.0029046868439763784, - 0.022739455103874207, - -0.018506115302443504, - -0.003276578616350889, - 0.0075820027850568295, - 0.017182378098368645, - 0.004262828733772039, - -0.01286384742707014, - -0.002799836453050375, - -0.013198058120906353, - 0.02684173174202442, - -0.015006729401648045, - 0.024967528879642487, - -0.03499385714530945, - 0.022922944277524948, - 0.018899304792284966, - -0.01545234490185976, - 0.008152127265930176, - -0.02563595026731491, - -0.01297525130212307, - 0.019384238868951797, - -0.003623895812779665, - -0.025924289599061012, - -0.0038696392439305782, - -0.027523260563611984, - -0.02411561831831932, - -0.012876953929662704, - 0.026002926751971245, - -0.0061730737797915936, - 0.026697561144828796, - -0.007588556036353111, - 0.007516471203416586, - -0.016094554215669632, - 0.005268738139420748, - 0.00395483011379838, - -0.008958165533840656, - 0.007110175676643848, - 0.0038434267044067383, - -0.027523260563611984, - 0.00047919960343278944, - -0.011402493342757225, - 0.0360947884619236, - 0.03305412456393242, - -0.018610965460538864, - -0.017916331067681313, - -0.0019331813091412187, - -0.039581067860126495, - -0.03111439011991024, - -0.021428823471069336, - 0.015963491052389145, - 0.0022379031870514154, - 0.005288397893309593, - -0.010406413115561008, - 0.023879704996943474, - 0.0017447781283408403, - 0.019921597093343735, - -0.042307183146476746, - -0.03326382488012314, - 0.0041252123191952705, - 0.01985606551170349, - 0.02888631634414196, - -0.021507462486624718, - -0.04314598813652992, - 0.010353988036513329, - 0.01536060031503439, - -0.015098473988473415, - 0.02159920521080494, - 0.012450998649001122, - -0.018624072894454002, - -0.04013153538107872, - 0.009928032755851746, - 0.027628110721707344, - 0.02846691384911537, - -0.001243461505509913, - 0.011494237929582596, - -0.009161313995718956, - 0.010295010171830654, - 0.01078649703413248, - 0.00716915400698781, - -0.03719571977853775, - -0.008080042898654938, - 0.032398808747529984, - -0.007437833119183779, - -0.01937113329768181, - 0.0129686975851655, - -0.023774854838848114, - 0.014718391001224518, - -0.031088177114725113, - 0.026304373517632484, - -0.0005770873976871371, - -0.03635691478848457, - 0.013257036916911602, - 0.016055235639214516, - -0.024600552394986153, - -0.02047206275165081, - 0.0097773103043437, - -0.022018607705831528, - 0.005340822972357273, - -0.001377801294438541, - -0.025373823940753937, - -0.0018463520100340247, - -0.014259669929742813, - 0.015386813320219517, - -0.012568955309689045, - 0.007208473049104214, - -0.023801065981388092, - -0.02352583408355713, - -0.04390615224838257, - 0.026278160512447357, - 0.036959804594516754, - -0.011441811919212341, - -0.008342169225215912, - -0.007719619199633598, - -0.0009862501174211502, - -0.0025114973541349173, - -0.03174349293112755, - 0.007346088998019695, - -0.03412884101271629, - -0.0009182611247524619, - 0.02686794474720955, - -0.007922766730189323, - -0.006130478344857693, - 0.0006757943192496896, - -0.011284536682069302, - -0.014797029085457325, - 0.0055439709685742855, - 0.19061823189258575, - -0.01795564964413643, - -0.013932012021541595, - 0.01944977045059204, - -0.02423357591032982, - -0.00866982713341713, - 0.010308115743100643, - -0.003630449064075947, - 0.011972618289291859, - 0.031140603125095367, - -0.003466620109975338, - -0.002601603278890252, - 0.013879586942493916, - 0.00806038361042738, - 0.029227079823613167, - -0.005815926939249039, - -0.03302791342139244, - -0.007228132337331772, - 0.014128606766462326, - 0.02017061784863472, - 0.015334387309849262, - -0.021835120394825935, - -0.014154819771647453, - -0.014181031845510006, - 0.0385325625538826, - 0.015032942406833172, - 0.0048296768218278885, - 0.01063577365130186, - 0.024770934134721756, - 0.015164005570113659, - -0.018466796725988388, - -0.018191564828157425, - 0.013669885694980621, - -0.008263531140983105, - -0.01600280962884426, - 0.009692119434475899, - 0.03111439011991024, - 0.005871628876775503, - 0.021520568057894707, - 0.006697326432913542, - -0.006313967052847147, - -0.04222854599356651, - -0.01019015908241272, - -0.029882395640015602, - 0.020314786583185196, - 0.02340787649154663, - -0.009298929944634438, - 0.0002830144658219069, - -0.012739337049424648, - 0.001136153587140143, - -0.01946287602186203, - -0.004754315596073866, - -0.003571470733731985, - 0.038873329758644104, - -0.011133814230561256, - -0.027418408542871475, - 0.0022788604255765676, - -0.0038368734531104565, - -0.0025000295136123896, - 0.009842841885983944, - -0.04102276265621185, - 0.018414370715618134, - -0.023054007440805435, - 0.010707858949899673, - -0.03580645099282265, - -0.0019184367265552282, - -0.004469253122806549, - 0.0016169914742931724, - -0.0034207480493932962, - -0.01094377227127552, - -0.0102425841614604, - -0.00722157908603549, - -0.023774854838848114, - 0.006523667834699154, - -0.02259528636932373, - -0.03224153444170952, - 0.020432744175195694, - 0.03184834495186806, - 0.023801065981388092, - 0.028545552864670753, - 7.715318497503176e-05, - -0.002069159410893917, - -0.02846691384911537, - -0.0025704759173095226, - -0.02208413928747177, - -0.02828342653810978, - -0.00048001875984482467, - -0.007627875078469515, - 0.012025043368339539, - -0.025662163272500038, - -0.011821895837783813, - 0.013211164623498917, - 0.00387619249522686, - -0.0244301687926054, - -0.0002809666038956493, - -0.009312036447227001, - 0.0066842203959822655, - 0.0024525190237909555, - -0.017614886164665222, - 0.00999356433749199, - -0.03688116744160652, - 0.041311103850603104, - 0.04367024078965187, - -0.005743842106312513, - -0.019803641363978386, - -0.003908958286046982, - -0.00032827220275066793, - 0.03861120343208313, - 0.008597741834819317, - 0.007319876458495855, - -0.0019200750393792987, - -0.016055235639214516, - 0.00927271693944931, - -0.04280522093176842, - 0.009980457834899426, - 0.02857176586985588, - 0.0008895910577848554, - -0.0009076122660189867, - 0.00422678655013442, - 0.013309461995959282, - 0.008578082546591759, - 0.023040900006890297, - 0.0031700897961854935, - -0.012228190898895264, - 0.009659353643655777, - -0.03216289356350899, - -0.029672695323824883, - 0.018414370715618134, - -0.013709204271435738, - -0.013696098700165749, - 0.021114272996783257, - -0.01530817523598671, - 0.03072120063006878, - -0.00861740205436945, - 0.009200632572174072, - -0.007070856634527445, - -0.0025065825320780277, - -0.025819439440965652, - -0.015622726641595364, - 0.005098356399685144, - 0.026920368894934654, - -0.0005582470912486315, - 0.01545234490185976, - 0.015268855728209019, - 0.012175765819847584, - 0.008597741834819317, - 0.01419413834810257, - 0.01408928819000721, - -0.03153379261493683, - -0.011821895837783813, - -0.01714305952191353, - -0.002829325618222356, - 0.006199286784976721, - -0.021127378568053246, - 0.019109006971120834, - 0.0061632441356778145, - -0.025871863588690758, - -0.021337078884243965, - 0.014508689753711224, - -0.018060501664876938, - -0.027313558384776115, - -0.020144404843449593, - 0.018676497042179108, - -0.019082793965935707, - -0.008335615508258343, - 0.004017085302621126, - -0.1650347113609314, - 0.009849395602941513, - 0.012372360564768314, - -0.0014326840173453093, - 0.004400445148348808, - -0.009082675911486149, - 0.025583526119589806, - 0.03732678294181824, - -0.006392604671418667, - 0.007942426018416882, - 0.007385408040136099, - 0.007215025834739208, - -0.006110819056630135, - -0.021350186318159103, - -0.006091159302741289, - 0.005039377603679895, - -0.02391902357339859, - 0.030563924461603165, - 0.010806156322360039, - 0.017968757078051567, - 0.003945000469684601, - -0.02644854225218296, - 0.013414312154054642, - -0.0046461885794997215, - 0.010511264204978943, - 0.011087941937148571, - -0.01247065793722868, - 0.012385467067360878, - -0.013361887075006962, - -0.029751332476735115, - -0.003951553720980883, - -0.0027916450053453445, - -0.004541337955743074, - -0.0014744603540748358, - 0.014731497503817081, - -0.0041153826750814915, - 0.007306769955903292, - -0.010773390531539917, - 0.0028080279007554054, - 0.028624190017580986, - 0.006192733533680439, - 0.031481366604566574, - -0.010118074715137482, - 0.026894155889749527, - 0.004351296462118626, - 0.021612312644720078, - 0.011939852498471737, - -0.02057691290974617, - 0.0004669124318752438, - -0.0030259203631430864, - 0.012529636733233929, - -0.022739455103874207, - 0.0036435553338378668, - 0.004098999779671431, - -0.011684278957545757, - 0.021520568057894707, - -0.016972677782177925, - 0.030747413635253906, - 0.019122112542390823, - 0.01055058278143406, - -0.01976432092487812, - -0.019410451874136925, - 0.0008830379229038954, - -0.0031160262878984213, - -0.01357814110815525, - -0.023866597563028336, - -0.004800187423825264, - 0.019816746935248375, - -0.018270201981067657, - 0.0009223568486049771, - 0.006225499324500561, - -0.024403957650065422, - 0.0016268212348222733, - -0.01038675382733345, - 0.026212628930807114, - 0.008591189049184322, - -0.016382893547415733, - 0.0046461885794997215, - 0.011035516858100891, - 0.014010650105774403, - -0.02028857357800007, - 0.056095026433467865, - 0.0020298403687775135, - -0.02119291014969349, - -0.015347493812441826, - -0.009338248521089554, - -0.002296881517395377, - 0.014023756608366966, - -0.012018490582704544, - 0.0065990290604531765, - 0.00845357310026884, - -0.011848107911646366, - -0.002503305906429887, - -0.01640910468995571, - 0.01783769391477108, - -0.006268094759434462, - -0.005888011772185564, - 0.006291030906140804, - -0.009017144329845905, - -0.012385467067360878, - 0.020694870501756668, - -0.015111580491065979, - -0.0075820027850568295, - 0.008741911500692368, - 0.0075557902455329895, - -0.013591247610747814, - -0.016278041526675224, - 0.003912234678864479, - 0.04296249896287918, - -0.02351272851228714, - -0.03009209781885147, - -0.00048165704356506467, - 0.023473408073186874, - 0.01661880686879158, - -0.006366392131894827, - 0.006546603981405497, - 0.013840267434716225, - -0.010203265585005283, - 0.0033945352770388126, - 0.020039554685354233, - 0.054260142147541046, - -0.011926745995879173, - -0.00952829048037529, - 0.006087882909923792, - -0.011258323676884174, - -0.026094671338796616, - -0.09321210533380508, - 0.00036738638300448656, - 0.012188872322440147, - 0.010537476278841496, - 0.010524370707571507, - 0.026173310354351997, - 0.015006729401648045, - -0.0005578374839387834, - 0.01622561737895012, - 0.046291500329971313, - -0.006710432935506105, - -0.029672695323824883, - -0.02108805999159813, - -0.000740916351787746, - -0.0002754373708739877, - -0.0019495642045512795, - 0.002621262799948454, - -0.01089134719222784, - -0.017287228256464005, - 0.03824422508478165, - -0.011369727551937103, - -0.006327073089778423, - -0.005711076315492392, - -0.003984319511801004, - -0.019187644124031067, - -0.0036599382292479277, - -0.03627827763557434, - 0.013879586942493916, - 0.020091978833079338, - -0.014626646414399147, - 0.030039671808481216, - -0.027208708226680756, - 0.009764203801751137, - -0.014115500263869762, - -0.028309639543294907, - -0.007883448153734207, - -0.028650403022766113, - -0.016160085797309875, - 0.0352821983397007, - -0.030983326956629753, - 0.0006483529577963054, - 0.023145750164985657, - 0.015884852036833763, - -0.016841614618897438, - 0.0016546722035855055, - -0.02119291014969349, - -0.021717162802815437, - 0.01985606551170349, - 0.009030250832438469, - -0.0044397637248039246, - -0.03129787743091583, - -0.03153379261493683, - -0.02807372435927391, - 0.008872974663972855, - 0.040079109370708466, - -0.003604236524552107, - -0.011336961761116982, - -0.001156632206402719, - -0.035124920308589935, - -0.006019074935466051, - -0.014403839595615864, - 0.0184536911547184, - -0.03722193092107773, - 0.030170734971761703, - -0.01591106504201889, - -0.011703938245773315, - -0.018191564828157425, - -0.005924053955823183, - 0.012529636733233929, - -0.0023230942897498608, - -0.020550699904561043, - 0.005206483416259289, - -0.00021584461501333863, - 0.008578082546591759, - -0.01825709640979767, - 0.023054007440805435, - -0.049725357443094254, - -0.008093149401247501, - 0.01196606457233429, - 0.009148207493126392, - -2.1617739548673853e-05, - -0.021035633981227875, - 0.02563595026731491, - -0.021625418215990067, - 0.02056380733847618, - 0.02606845833361149, - -0.01550476998090744, - -0.007876894436776638, - 0.0074247270822525024, - -0.01252308301627636, - -0.009934586472809315, - 0.015832427889108658, - 0.01302767638117075, - 0.018991049379110336, - -0.023250602185726166, - -0.0033584930934011936, - -0.0051081860437989235, - 0.007083962671458721, - 0.003219238482415676, - -0.012247850187122822, - -0.006677667144685984, - -0.01043917890638113, - -0.054679542779922485, - 0.01580621488392353, - 0.028650403022766113, - -0.010203265585005283, - -0.013309461995959282, - 0.0034273010678589344, - 0.0016710550989955664, - 0.017588673159480095, - 0.024194255471229553, - -0.0038237671833485365, - -0.03863741457462311, - 0.0017742672935128212, - -0.024482594802975655, - -0.004157978110015392, - -0.04047229886054993, - -0.013204611837863922, - 0.00643192371353507, - 0.017051314935088158, - 0.02545246295630932, - 0.002169094979763031, - 0.01702510192990303, - 0.01449558325111866, - 0.0075557902455329895, - 0.026409223675727844, - -0.0071560475043952465, - -0.005851969122886658, - 0.002578667365014553, - -0.002246094634756446, - -0.007260898128151894, - -0.02765432372689247, - -0.0048034642823040485, - 0.014377626590430737, - -0.004895208403468132, - 0.015032942406833172, - -0.005435843952000141, - -0.028362063691020012, - 0.012431339360773563, - 0.024705402553081512, - 0.013853373937308788, - 0.04002668336033821, - -0.01985606551170349, - -0.023381665349006653, - -0.012883506715297699, - -0.01825709640979767, - 0.01211023423820734, - -0.005540694110095501, - 0.026120884343981743, - -0.00958071555942297, - 0.0030193671118468046, - -0.009593822062015533, - 0.03606857731938362, - -0.0016268212348222733, - 0.00041817332385107875, - 0.002578667365014553, - -0.004256275482475758, - 0.0028178575448691845, - 0.01692025177180767, - 0.001720203785225749, - 0.030878476798534393, - -0.028938742354512215, - 0.04246445745229721, - 0.011841555126011372, - -0.009161313995718956, - -0.016474636271595955, - 0.0018660115310922265, - -0.01693335734307766, - -0.022228308022022247, - -0.020917678251862526, - 0.0015481833834201097, - -0.015268855728209019, - -0.014574221335351467, - -0.007332982961088419, - 0.024089405313134193, - 0.032189108431339264, - 0.005711076315492392, - 0.0036566616035997868, - -0.014626646414399147, - 0.0001681294379523024, - -0.010557136498391628, - -0.003938447218388319, - 0.014561114832758904, - 0.010177052579820156, - 0.0012475572293624282, - 0.008794336579740047, - 0.042097482830286026, - 0.021651631221175194, - -0.017392078414559364, - -0.006893921177834272, - -0.009508631192147732, - -0.0002836288185790181, - -0.015347493812441826, - 0.01342086587101221, - -0.0010878241155296564, - 0.010603007860481739, - 0.015766896307468414, - 0.0184536911547184, - 0.010308115743100643, - -0.003899128409102559, - 0.03457445651292801, - 0.03638312965631485, - 0.01139594055712223, - 0.006723538972437382, - -0.0030423032585531473, - -0.029856184497475624, - -0.003466620109975338, - 0.028414489701390266, - -0.010144286789000034, - -0.02564905770123005, - 0.006710432935506105, - 0.0035583642311394215, - -0.01100275106728077, - 0.006428647320717573, - -0.014063075184822083, - 0.011264877393841743, - -0.017261015251278877, - 0.007962086237967014, - -0.03009209781885147, - -0.018099820241332054, - -0.02059002034366131, - 0.018178457394242287, - 0.035439472645521164, - 0.011166580021381378, - 0.006716986186802387, - 0.00430542416870594, - 0.00866327341645956, - -0.007588556036353111, - 0.019541515037417412, - -0.009488971903920174, - 0.005629161838442087, - -0.023499621078372, - 0.014613539911806583, - 0.015190218575298786, - -0.010006670840084553, - -0.012621380388736725, - -0.0069725592620670795, - 0.002708092099055648, - 0.017313441261649132, - -0.012608273886144161, - 0.002503305906429887, - 0.12424785643815994, - 0.02289673127233982, - -0.011271430179476738, - 0.01774594932794571, - -0.002752325963228941, - 0.01947598345577717, - 0.004819847177714109, - 0.0008830379229038954, - -0.0031537069007754326, - -0.05693382769823074, - 0.02938435599207878, - -0.0023787959944456816, - 0.01732654683291912, - -0.017378972843289375, - 0.000888771959580481, - 0.023460302501916885, - -0.0052392492070794106, - 0.018099820241332054, - -0.031061964109539986, - 0.019711896777153015, - 0.038558777421712875, - -0.021559886634349823, - 0.0032880466897040606, - 0.03344731405377388, - -0.009043356403708458, - -0.005029547959566116, - 0.022175883874297142, - 0.012274063192307949, - 0.012260956689715385, - -0.011330408975481987, - 0.007431280333548784, - 0.007680300157517195, - -0.03499385714530945, - -0.008859868161380291, - 0.008768124505877495, - -0.03357837721705437, - 0.005252355244010687, - -0.02410251274704933, - -0.002454157453030348, - 0.011625301092863083, - 0.005409631412476301, - 0.027418408542871475, - -0.005878182128071785, - -0.0013253759825602174, - 0.017287228256464005, - 0.0010591540485620499, - -0.01454800833016634, - -0.004266105126589537, - -0.020537594333291054 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 23, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 462 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000024.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000024.json deleted file mode 100644 index 3006a9f2a5251dc649e74330cb25feb6837505a9..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000024.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000024", - "content": "Die aufgetretenen Fremdger\u00e4usche, beispielsweise von vorbeifahrenden Zugmaschinen, wurden im Programm NorReview 6.2 ausgeblendet. Da die protokollier- ten Verladet\u00e4tigkeiten in einzelne 5 Sekunden lange Arbeitsschritte unterteilt waren, konnten eventuelle Fremdger\u00e4usche gezielt in diesem Zeitraum anhand des Geh\u00f6rein- drucks analysiert werden. Falls ein bestimmter Arbeitsschritt aufgrund vorherrschender\n47\n6 Messauswertung und Statistik\nDominanz von Fremdger\u00e4uschen nicht eindeutig identifizierbar war, wurde er bei der weiteren Betrachtung nicht ber\u00fccksichtigt. Nun k\u00f6nnen mithilfe der berechneten Daten die gew\u00fcnschten akustischen Gr\u00f6\u00dfen f\u00fcr jeden Datensatz berechnet werden (siehe Ab- bildung 13). [IMAGE: Formel 13 Formel 14 Formel 12 Formel 11 Formel 12 Formel 2 ]\n\n\n## Formel 13\n\n\n## Formel 14\n\n\n## Formel 12\n\n\n## Formel 11\n\n\n## Formel 12\n\n\n## Formel 2\n\nAbbildung 13: Arbeitsschritte f\u00fcr die Berechnung der gew\u00fcnschten akustischen Kenngr\u00f6\u00dfen\nDie Messergebnisse, einschlie\u00dflich aller relevanten Daten und Diagramme, sind im An- hang 4: Messergebnisse der Beladevorg\u00e4nge \u00fcbersichtlich aufgef\u00fchrt. Dort ist eine um- fassende Darstellung der erfassten Werte und deren grafische Visualisierung zu finden. Dar\u00fcber hinaus werden in Kapitel 7, die berechneten akustischen Gr\u00f6\u00dfen dargestellt und interpretiert. Hierbei werden relevante Aspekte beleuchtet und Handlungsempfeh- lungen abgeleitet, um konkrete Ma\u00dfnahmen zur Reduzierung der L\u00e4rmbelastung zu ent- wickeln. ## 6.2 Statistik\n\nDie Statistik f\u00fcr Messwerte dient dazu, die gesammelten Informationen systematisch zu analysieren und zu interpretieren. Durch statistische Methoden k\u00f6nnen Muster, Trends, Zusammenh\u00e4nge und Unsicherheiten in den Messwerten identifiziert werden. Dies er- m\u00f6glicht eine zuverl\u00e4ssige und fundierte Aussage \u00fcber die gemessenen Verladet\u00e4tigkei- ten. [59] In Kapitel 2.3 wurden verschiedene statistische Analysemethoden vorgestellt, die in der Auswertung von Verladeger\u00e4uschen eingesetzt werden k\u00f6nnen. 48\n6 Messauswertung und Statistik\nNach der Auswertung der Verladeger\u00e4usche, welche im vorherigen Kapitel 6.1: Verlade- ger\u00e4usche beschrieben werden die statistischen Kennwerte berechnet. F\u00fcr jeden akus- tischen Kennwert wurde mithilfe des Programms Excel die Standardabweichung gem\u00e4\u00df Formel 26 und der entsprechende energetische Mittelwert gem\u00e4\u00df Formel 24 berechnet. Sobald diese Werte bekannt sind, kann zur visuellen Darstellung eine Normalverteilung Formel 27 erstellt werden. Die Standardabweichung kann in einem Intervall angegeben werden, um den Bereich zu verdeutlichen. In Abbildung 14 ist eine visuelle Darstellung des Vorgehens zur Bestimmung der akustischen Kenngr\u00f6\u00dfen zu sehen. [IMAGE: T H LAeq ! lAFmax ! IWASs | LWAmax | LWA\u201aIh [6] [esta : [ABA] Vorgang KufaB(ay] : [dBfA)] IaBla) ; TaBla)] Rausfahrt]\n\nAbbildung 14: Vorgehensweise statistische Kennwerte\nDie Ergebnisse, einschlie\u00dflich aller relevanten Daten und Diagramme, sind Kapitel 7.2 \u00fcbersichtlich aufgef\u00fchrt. Dort ist eine umfassende Darstellung der erfassten Werte und deren grafische Visualisierung zu finden und interpretiert. 49\n6 Messauswertung und Statistik\n\n## 6.3 Modellierung der Messsituation\n\nUm die Messung virtuell darstellen zu k\u00f6nnen, wird das gesamte Gel\u00e4nde virtualisiert. Um in SoundPlan 9.0 modellieren zu k\u00f6nnen, wird zuerst ein Projekt erstellt. Im n\u00e4chsten Schritt erfolgt die Gel\u00e4ndemodellierung, bei der die gesamte Messumge- bung virtuell nachgebildet wird. Dazu wird ein Gel\u00e4ndemodell erstellt, welche die Ge- l\u00e4ndebedingungen repr\u00e4sentiert.", - "embedding": [ - 0.004663142375648022, - 0.00576055096462369, - -0.001983777154237032, - -0.04535505548119545, - -0.0013059162301942706, - 0.019652055576443672, - -0.009731481783092022, - -0.009501870721578598, - -0.021380897611379623, - -0.031713422387838364, - 0.013749686069786549, - 0.023609479889273643, - -0.023879611864686012, - -0.013722673058509827, - -0.013594360090792179, - 0.007739263121038675, - 0.04197841137647629, - -0.004403140861541033, - 0.030146658420562744, - 0.02019231952726841, - -0.012162663973867893, - 0.0388178750872612, - 0.004004697315394878, - 0.0010560447117313743, - -0.006567568518221378, - 0.03252381458878517, - 0.01156162191182375, - -0.021867133677005768, - -0.015329954214394093, - 0.0092722587287426, - -0.006584451999515295, - -0.01627541333436966, - -0.008205239661037922, - 0.012932538986206055, - -0.026391834020614624, - 0.013526828028261662, - 0.006131981965154409, - -0.011136164888739586, - 0.04389634355902672, - 0.004943403881043196, - 0.010751227848231792, - 0.008664463646709919, - -0.012257209978997707, - -0.016721131280064583, - 0.0013472801074385643, - 0.011865519918501377, - 0.0007584781851619482, - 0.0014933198690414429, - -0.006098215468227863, - 0.0070436750538647175, - 0.01858503744006157, - 0.0070706880651414394, - -0.022407395765185356, - 0.007158481050282717, - 0.0065878285095095634, - -0.014235922135412693, - -0.0020867646671831608, - 0.015870217233896255, - -0.013425528071820736, - -0.019868161529302597, - -0.021272843703627586, - 0.002854950726032257, - -0.024001169949769974, - 0.012351755984127522, - -0.03390148654580116, - -0.014506054110825062, - -0.02031387761235237, - -0.014789692126214504, - -0.017990747466683388, - -0.0030778092332184315, - 0.03368537873029709, - 0.01769360341131687, - -0.003916904795914888, - 0.012122144922614098, - 0.04300491139292717, - -0.022961165755987167, - 0.015194889158010483, - -0.002532481448724866, - 0.017274899408221245, - 0.012277469970285892, - 0.007637964095920324, - -0.032226670533418655, - -0.034765906631946564, - 0.031605370342731476, - 0.022920645773410797, - 0.008731995709240437, - 0.002672612201422453, - 0.0033648237586021423, - -0.02285311184823513, - -0.00503794988617301, - -0.0019516990287229419, - 0.02844483219087124, - -0.0008948101312853396, - 0.007550171576440334, - 0.021259337663650513, - 0.005206781905144453, - -0.004848857875913382, - 0.007523158099502325, - -0.000899875070899725, - -0.011824999935925007, - -0.020043745636940002, - -0.007475885096937418, - -0.008583423681557178, - -0.0012957863509654999, - -0.017585551366209984, - 0.009251998737454414, - 0.00427482882514596, - -0.0021576741710305214, - 0.009711221791803837, - -0.01682918332517147, - -0.004352491348981857, - 0.013182410039007664, - 0.00643587950617075, - -0.0016807235078886151, - 0.021340377628803253, - -0.027337292209267616, - 0.046543631702661514, - -0.02606767602264881, - -0.006503412500023842, - -0.020651541650295258, - 0.014668132178485394, - 0.012723186984658241, - 0.026310794055461884, - -0.008367318660020828, - 0.019868161529302597, - 0.011608894914388657, - 0.022866619750857353, - -0.01127123087644577, - -0.02054348960518837, - -0.020948685705661774, - -0.012662407010793686, - -0.013121630996465683, - 0.023528441786766052, - 0.0222318097949028, - -0.010636421851813793, - 0.005953019950538874, - -0.018139321357011795, - 0.01886867545545101, - -0.024703511968255043, - -0.016775157302618027, - -9.987473458750173e-05, - 0.006010422483086586, - -0.025878584012389183, - -0.03195653855800629, - -0.010096159763634205, - 0.032658882439136505, - 0.008245759643614292, - 0.016423987224698067, - -0.010231224820017815, - -0.02128635160624981, - -0.008320045657455921, - -0.024325327947735786, - 0.011804739944636822, - -0.007827055640518665, - -0.007361079566180706, - -0.004956910386681557, - 0.004119503311812878, - 0.008779268711805344, - -0.018085293471813202, - -0.0048150913789868355, - 0.0017913085175678134, - 0.01623489521443844, - 0.02340688183903694, - 0.014154883101582527, - 0.02215077169239521, - 0.011021358892321587, - -0.0010509798303246498, - -0.019044261425733566, - -0.013452541083097458, - -0.00898186769336462, - -0.027877556160092354, - -0.009461350739002228, - -0.012723186984658241, - 0.021542975679039955, - -0.00022328045452013612, - 0.005510679446160793, - 0.009576156735420227, - 0.007313806563615799, - -0.027458852156996727, - -0.03071393445134163, - -0.027958596125245094, - 0.003415473271161318, - 0.0024041689466685057, - 0.0069693890400230885, - -0.01800425536930561, - 0.02914717234671116, - 0.01953049749135971, - 0.020124785602092743, - -0.009826027788221836, - -0.000392745656426996, - 0.008387578651309013, - 0.0070031555369496346, - 0.0034053432755172253, - -0.01616736128926277, - -0.6254081130027771, - 0.007509651593863964, - 0.004896130878478289, - 0.00728679308667779, - 0.003141965251415968, - 0.04297789931297302, - 0.0064156195148825645, - -0.011021358892321587, - -0.0007331533706746995, - 0.0449228435754776, - -0.008387578651309013, - -0.0002697092713788152, - 0.012885265983641148, - -0.012824486009776592, - -0.009792261756956577, - -0.020516475662589073, - -0.0034745645243674517, - -0.005544445943087339, - 0.044274527579545975, - 0.006645231507718563, - -0.031362250447273254, - 0.016680611297488213, - -0.001433384488336742, - 0.013979298062622547, - -0.0002608455833978951, - 0.003223004750907421, - 6.405067688319832e-05, - -0.022596487775444984, - 0.00490963738411665, - -0.01225045695900917, - -0.046192463487386703, - -0.0070706880651414394, - -0.04049269109964371, - 0.02613520808517933, - 0.05040651187300682, - -0.0032888492569327354, - 0.008786022663116455, - 0.02645936608314514, - 0.0198411475867033, - 0.00813770666718483, - -0.008191733621060848, - -0.011325256898999214, - 0.0018537763971835375, - 0.009981353767216206, - 0.018085293471813202, - 0.005419510416686535, - 0.03028172440826893, - -0.0111159048974514, - 0.015005797147750854, - -0.041573215276002884, - 0.006874843034893274, - -0.0030524842441082, - 0.007009908556938171, - 0.013965791091322899, - 0.01909828744828701, - 0.012662407010793686, - 0.028741976246237755, - -0.02293415181338787, - -0.015748657286167145, - 0.008043160662055016, - 0.003467811271548271, - 0.0012746823485940695, - 0.0014409819850698113, - 0.0002783619274850935, - -0.0244198739528656, - 0.017072301357984543, - -0.027188720181584358, - -0.05248652398586273, - 0.023352855816483498, - -0.020016733556985855, - -0.01994919963181019, - 0.027688464149832726, - -0.004095866810530424, - -0.001693385886028409, - 0.025919103994965553, - 0.0163564532995224, - 0.012709680013358593, - -0.023663505911827087, - 0.010825513862073421, - 0.020921673625707626, - 0.007570431102067232, - -0.0025476764421910048, - -0.025284294039011, - 0.0007956212502904236, - 0.031443290412425995, - -0.011919545941054821, - -0.024433381855487823, - -0.0011421490926295519, - 0.007347573060542345, - 0.014154883101582527, - 0.002963003236800432, - 0.042788807302713394, - -0.008704982697963715, - -0.013688906095921993, - -0.00024290717556141317, - 0.031119132414460182, - -0.003054172731935978, - 0.04022255912423134, - 0.0027232617139816284, - -0.03687293082475662, - -0.018517503514885902, - -0.009454597719013691, - 0.027796516194939613, - -0.015167875215411186, - 0.00637847650796175, - -0.005625485442578793, - 0.0005204249173402786, - 0.020502969622612, - 0.0220292117446661, - -0.019611535593867302, - -0.00423430884256959, - -0.0039506712928414345, - 0.006489905994385481, - -0.018612049520015717, - -0.006334580481052399, - -0.026580926030874252, - 0.02081362158060074, - -0.0011109152110293508, - 0.0034880710300058126, - -0.00966394878923893, - 0.007205754052847624, - 0.0010349407093599439, - 0.03430668264627457, - -0.029417304322123528, - -0.013094617053866386, - 0.02677001804113388, - 0.026824044063687325, - 0.004629375878721476, - 0.0017440355150029063, - -0.008171473629772663, - 0.013452541083097458, - -0.004045216832309961, - 0.009481610730290413, - -0.014303455129265785, - 0.019692575559020042, - 0.011595387943089008, - 0.02664845809340477, - -0.007502898573875427, - 0.00387976155616343, - -0.02233986370265484, - -0.03290199860930443, - 0.011960065923631191, - 0.0112307108938694, - -0.01422241609543562, - -0.009690962731838226, - -0.02656741812825203, - -0.020057253539562225, - 0.01160214189440012, - 0.00839433167129755, - 0.01800425536930561, - 0.0016233206260949373, - -0.017518017441034317, - -0.008671216666698456, - 0.007192247547209263, - -0.006783673539757729, - 0.009582909755408764, - -0.006304190494120121, - -0.02406870387494564, - -0.016194375231862068, - -0.014884237200021744, - 0.014276442117989063, - 0.016802169382572174, - -0.03365836665034294, - -0.002458195434883237, - -0.00039232359267771244, - -0.014330468140542507, - 0.0001446679962100461, - 0.003741319291293621, - -0.04305893927812576, - -0.030740948393940926, - -0.002974821487441659, - 0.007293546572327614, - -0.00854965765029192, - 0.012567861005663872, - -0.003923657815903425, - 0.004295088350772858, - -0.023258309811353683, - -0.011082138866186142, - -0.03060588240623474, - -0.012682667002081871, - 0.01843646541237831, - -0.007773029617965221, - -0.012068117968738079, - -0.007941861636936665, - 0.041005939245224, - 0.005993539467453957, - 0.029444318264722824, - -0.011440062895417213, - -0.024662991985678673, - 0.0268105361610651, - 0.003933787811547518, - -0.00047737275599502027, - -0.019746601581573486, - 0.0170182753354311, - -0.02198869176208973, - 0.016815677285194397, - 0.021894145756959915, - -0.004335608333349228, - -0.003835865296423435, - 0.03436070680618286, - 0.03155134245753288, - 0.018693089485168457, - 0.025919103994965553, - -0.0123247429728508, - 0.02089465968310833, - -0.008948100730776787, - 0.012675913982093334, - -0.027607424184679985, - 0.030146658420562744, - 0.003987814299762249, - 0.014951770193874836, - -0.0009665637626312673, - -0.03698098286986351, - -0.0055782124400138855, - 0.0131891630589962, - 0.03698098286986351, - -0.010217718780040741, - 0.019868161529302597, - 0.016383467242121696, - 0.0009842910803854465, - 0.006246787495911121, - -0.012155910953879356, - 0.036413706839084625, - 0.013445788063108921, - -0.005855096969753504, - -0.004605739377439022, - 0.009218232706189156, - 0.025135722011327744, - 0.01547852624207735, - -0.025959623977541924, - -0.005882110446691513, - 0.0011987078469246626, - 0.0022775449324399233, - 0.009062906727194786, - 0.013283709064126015, - 0.016532039269804955, - 0.004754311870783567, - 0.0007732509984634817, - 0.03122718445956707, - 0.013108124025166035, - 0.003818982047960162, - 0.012892019003629684, - 0.013979298062622547, - -0.0021272844169288874, - 0.005240548402070999, - -0.029498344287276268, - 0.0172208733856678, - 0.03338823467493057, - -0.004116126336157322, - -0.005439769942313433, - -0.001988842152059078, - -0.005669381935149431, - -0.012851499021053314, - -0.009907067753374577, - 0.0038291120436042547, - -0.01156162191182375, - 0.02895808033645153, - -0.009123686701059341, - 0.021907653659582138, - 0.03322615846991539, - -0.005500549916177988, - 0.021110765635967255, - 0.012351755984127522, - -0.027053656056523323, - -0.005453276913613081, - 0.0034222265239804983, - -0.0313892625272274, - 0.0008488033781759441, - -0.0063683465123176575, - -0.007259780075401068, - 0.0024142989423125982, - -0.017423473298549652, - -0.01761256344616413, - 0.009191219694912434, - 0.02301519177854061, - -0.0060475654900074005, - 0.0010214342037215829, - 0.014465534128248692, - 0.03395551070570946, - -0.004987299907952547, - -0.019435951486229897, - -0.024284807965159416, - -0.009441090747714043, - 0.015100343152880669, - -0.01334448903799057, - -0.0039000215474516153, - 0.0014578651171177626, - 0.002383909188210964, - -0.040546715259552, - -0.0070166620425879955, - -0.02633780799806118, - 0.012770459987223148, - -0.0011624089675024152, - -0.03068692237138748, - 0.003094692248851061, - 0.017423473298549652, - 0.022137263789772987, - 0.011338763870298862, - -0.031173158437013626, - 0.009792261756956577, - -0.004615869373083115, - -0.018206853419542313, - -0.015356967225670815, - -0.03603552281856537, - 0.02120531164109707, - -0.0092722587287426, - -0.02074608765542507, - -0.025365334004163742, - -0.006216397974640131, - -0.019706081598997116, - -0.004940027371048927, - 0.01730191335082054, - 0.015167875215411186, - 0.0047880783677101135, - -0.009940833784639835, - -0.008049914613366127, - -0.0031470302492380142, - -0.010170445777475834, - 0.044787779450416565, - 0.011872272938489914, - -0.008569917641580105, - -0.04308595135807991, - -0.0026118324603885412, - 0.00992057379335165, - 0.016302427276968956, - 0.013796959072351456, - 0.020016733556985855, - 0.01718035340309143, - -0.018598543480038643, - -0.006685751024633646, - -0.02414974384009838, - -0.04097892716526985, - 0.020611021667718887, - 0.00865095667541027, - -0.019314391538500786, - 0.001860529650002718, - 0.0388178750872612, - -0.0056727584451437, - 0.005149378906935453, - -0.017126327380537987, - 0.008704982697963715, - -0.004791454877704382, - 0.0017457238864153624, - 0.01796373538672924, - -0.010521615855395794, - -0.007428612094372511, - 0.0010577330831438303, - 0.024662991985678673, - 0.00044487256673164666, - -0.016342947259545326, - 0.02629728801548481, - 0.03338823467493057, - -0.005568082444369793, - -0.03203757852315903, - -0.0014232546091079712, - 0.028390806168317795, - 0.01305409800261259, - 0.014181896112859249, - -0.025932610034942627, - -0.0004334764089435339, - 0.014343975111842155, - 0.012851499021053314, - -0.00728679308667779, - -0.009657195769250393, - 0.018328411504626274, - 0.04019554704427719, - 0.0032601477578282356, - -0.00548704294487834, - -0.0025915727019309998, - 0.013938778080046177, - 0.0065878285095095634, - 0.01491125114262104, - -6.626659887842834e-05, - -0.008286279626190662, - 0.006841076537966728, - -0.010832266882061958, - -0.0055039264261722565, - -0.008441604673862457, - 0.006243410985916853, - -0.03217264264822006, - -0.0020816996693611145, - -0.014181896112859249, - -0.01596476323902607, - -0.005331717431545258, - -0.032145630568265915, - -0.0017744253855198622, - 0.012547601014375687, - -0.013911765068769455, - -0.029282238334417343, - -0.028147686272859573, - -0.011061878874897957, - -0.013283709064126015, - -0.01705879531800747, - 0.007901342585682869, - 0.004382881335914135, - -0.013270203024148941, - -0.030335750430822372, - -0.015370474196970463, - 0.01465462613850832, - 0.00339014851488173, - 0.0178826954215765, - -0.012385522946715355, - -0.007246273569762707, - -0.0004334764089435339, - -0.035468246787786484, - -0.019381925463676453, - -0.01553255319595337, - -0.01395228412002325, - -0.009177712723612785, - 0.018733609467744827, - -0.017680097371339798, - 0.00966394878923893, - 0.003192614996805787, - 0.020921673625707626, - 0.0026894952170550823, - 0.0024835201911628246, - 0.013209423050284386, - 0.004990676883608103, - 0.0029393667355179787, - -0.0016511778812855482, - -0.0007500365609303117, - 0.014857224188745022, - 0.022880125790834427, - -0.019314391538500786, - 0.02699962817132473, - -0.027404826134443283, - 0.000419547752244398, - -0.008144460618495941, - 0.004396387841552496, - -0.006142111495137215, - -0.0196385495364666, - -0.009508623741567135, - 0.008704982697963715, - -0.002593260956928134, - 0.00835381168872118, - -0.006101591978222132, - -0.010960579849779606, - 0.014384495094418526, - 0.01058239582926035, - 0.011838506907224655, - 0.005203405395150185, - 0.017518017441034317, - 0.036575786769390106, - -0.002625339198857546, - 0.021313363686203957, - -0.029984580352902412, - 0.03644071891903877, - 0.0122099369764328, - 0.006108345463871956, - 0.039223071187734604, - -0.00525405490770936, - -0.0031993682496249676, - -0.030524842441082, - 0.008738749660551548, - 0.004663142375648022, - 0.021137777715921402, - 0.006631724536418915, - -0.006817440036684275, - -0.04389634355902672, - -0.006787050515413284, - 0.012439548969268799, - 0.027850542217493057, - -0.020948685705661774, - 0.010852526873350143, - -0.004646259360015392, - -0.003072744235396385, - -0.011453569866716862, - 0.018341919407248497, - 0.015167875215411186, - -0.02947133034467697, - -0.03471187874674797, - 0.008860308676958084, - -0.02198869176208973, - 0.029714448377490044, - -0.0030794974882155657, - 0.005287821404635906, - -0.03017367236316204, - -0.01461410615593195, - -0.01796373538672924, - -0.03495499864220619, - 0.006307567004114389, - -0.004967040382325649, - -0.0005107171018607914, - 0.018179839476943016, - 0.03125419840216637, - 0.007246273569762707, - 0.009306024760007858, - 0.007077441550791264, - -0.003538720775395632, - 0.005561329424381256, - -0.018301399424672127, - -0.014114363119006157, - -0.02947133034467697, - 0.022988177835941315, - 0.01512735616415739, - 0.008144460618495941, - 0.017774643376469612, - 0.008374071680009365, - 0.007246273569762707, - 0.04311296343803406, - -0.0064156195148825645, - 0.0002678099262993783, - 0.0032905375119298697, - -0.017828669399023056, - 0.010859280824661255, - 0.004460543859750032, - 0.00745562557131052, - 0.02578403800725937, - -0.013682153075933456, - 0.004062100313603878, - 0.016072815284132957, - -0.0036096302792429924, - -0.007854069583117962, - -0.004761065356433392, - 0.0250816959887743, - -0.03522512689232826, - 0.012952798046171665, - -0.010460836812853813, - 0.006976142060011625, - -0.01116993185132742, - -0.003437421517446637, - -0.02656741812825203, - -0.0081782266497612, - 0.02809366025030613, - -0.0111159048974514, - 0.029687436297535896, - 0.017207367345690727, - -0.006152241490781307, - -0.0034526162780821323, - -0.013628127053380013, - 0.03236173465847969, - -0.017207367345690727, - -0.0051358724012970924, - -0.005865226965397596, - -0.03279394656419754, - -0.014600600115954876, - -0.0060475654900074005, - -0.010947072878479958, - 0.023704025894403458, - 0.005689641460776329, - 0.014073843136429787, - 0.032307710498571396, - -0.00396080082282424, - 0.004109373316168785, - 0.01734243333339691, - -0.010555382817983627, - 0.044787779450416565, - 0.009400570765137672, - 0.02817470021545887, - 0.0021779341623187065, - -0.02974146232008934, - -0.0008230564999394119, - -0.07266533374786377, - 0.014816705137491226, - 0.005709901452064514, - 0.020651541650295258, - 0.015316448174417019, - -0.0200707595795393, - -0.0019652056507766247, - 0.023136749863624573, - 0.008873814716935158, - -0.03430668264627457, - -0.021002713590860367, - 0.03595448285341263, - 0.026148715987801552, - 0.008502384647727013, - -0.006483152508735657, - 0.011629154905676842, - -0.014127870090305805, - 0.0015819567488506436, - 0.0016064373776316643, - -0.020489463582634926, - 0.0029241719748824835, - -0.004268075339496136, - -0.009495116770267487, - 0.04297789931297302, - -0.009062906727194786, - 0.0287960022687912, - 0.0012459808494895697, - -0.017855683341622353, - -0.0076312106102705, - -0.0070706880651414394, - -0.000595133169554174, - 0.014479040168225765, - -0.023109737783670425, - 0.04684077575802803, - 0.007144974544644356, - -0.01858503744006157, - 0.011514348909258842, - -0.010042132809758186, - -0.0004790610691998154, - -0.004524700343608856, - 0.005662628449499607, - 0.02469000592827797, - -0.0021593624260276556, - -0.001008771825581789, - 0.007347573060542345, - -0.0030305362306535244, - 0.014127870090305805, - 0.008860308676958084, - -0.01921984553337097, - -0.01769360341131687, - -0.005693018436431885, - -0.006331203505396843, - -0.0028144309762865305, - -0.0024379354435950518, - -0.016842689365148544, - -0.010494602844119072, - 0.0055647059343755245, - -0.028039634227752686, - 0.007340819574892521, - -0.004278205335140228, - 0.014033324085175991, - -0.02720222808420658, - -0.005821330472826958, - -0.006689127534627914, - 0.00843485165387392, - 0.029282238334417343, - -0.014749172143638134, - -0.01308786403387785, - -0.002181310672312975, - 0.02578403800725937, - -0.023879611864686012, - 0.015019303187727928, - 0.0161268413066864, - -0.026675472036004066, - -0.010953826829791069, - 0.026351314038038254, - -0.0009657195769250393, - -0.02304220385849476, - 0.037386178970336914, - -0.022866619750857353, - -0.03017367236316204, - -0.0036839162930846214, - -0.003283784259110689, - 0.01776113733649254, - -0.030146658420562744, - 0.0020496216602623463, - 0.0026641704607754946, - 0.025068189948797226, - -0.014560080133378506, - 0.008718489669263363, - 0.008184979669749737, - 0.002721573458984494, - 0.031119132414460182, - -0.00396080082282424, - 0.031119132414460182, - -0.022366875782608986, - 0.028985094279050827, - 0.0061623714864254, - -0.014978783205151558, - 0.013493061065673828, - -0.03646773472428322, - -0.003172355005517602, - 0.015194889158010483, - 0.005537692923098803, - -0.03125419840216637, - -0.001708580763079226, - -0.029444318264722824, - -0.015640605241060257, - -0.019354911521077156, - 0.02363649383187294, - 0.007023415062576532, - -0.0018537763971835375, - -0.008428098633885384, - -0.012020844966173172, - -0.014316962100565434, - 0.012709680013358593, - -0.011966818943619728, - -0.010440576821565628, - 0.01815282739698887, - 0.007752770092338324, - -0.0427347794175148, - 0.022083237767219543, - -0.0159242432564497, - 0.04551713168621063, - 0.023812079802155495, - -0.010859280824661255, - -0.0007576340576633811, - -0.0006546464283019304, - -0.026715990155935287, - -0.0370890349149704, - -0.017072301357984543, - 0.006300813984125853, - -0.008306539617478848, - 0.010663434863090515, - -0.01967906951904297, - 0.03819657489657402, - -0.010224471800029278, - 0.011838506907224655, - -0.026661964133381844, - -0.005237171426415443, - -0.005000806879252195, - -0.003954047802835703, - 0.02120531164109707, - -0.011257723905146122, - -0.031443290412425995, - 0.005081845913082361, - 0.015910737216472626, - -0.006371723487973213, - 0.012831239029765129, - 0.005071716383099556, - -0.007604197598993778, - -0.025405853986740112, - 0.0028346909675747156, - 0.008090433664619923, - 0.025135722011327744, - 0.007651470601558685, - 0.021569987758994102, - -0.020367903634905815, - -0.010197458788752556, - -0.01457358617335558, - 0.019976213574409485, - -0.04192438721656799, - -0.015451513230800629, - 0.031119132414460182, - 0.007827055640518665, - -0.004602362867444754, - 0.010278497822582722, - -0.015383980236947536, - 0.006800557021051645, - -0.029876528307795525, - 0.03260485455393791, - 0.015140862204134464, - -0.02359597384929657, - 0.014884237200021744, - 0.011399542912840843, - -0.005267561413347721, - -0.0340365506708622, - -0.0008652645046822727, - -0.031362250447273254, - -0.0077190035954117775, - -0.0010425382060930133, - -0.0231232438236475, - -0.0011058502132073045, - -0.018490491434931755, - 0.021583495661616325, - -0.007908095605671406, - -0.0020445566624403, - -0.015681125223636627, - 0.003314174013212323, - -0.03854774311184883, - 0.018801141530275345, - 0.006287307478487492, - -0.021110765635967255, - 0.018260879442095757, - -0.0062535409815609455, - -0.010636421851813793, - 0.0025578062050044537, - -0.03417161479592323, - -0.005996915977448225, - -0.034576814621686935, - -0.007577184587717056, - 0.024865591898560524, - -0.012088377960026264, - 0.007516405079513788, - 0.004322101827710867, - -0.017909709364175797, - -0.029606396332383156, - -0.016545545309782028, - 0.20162604749202728, - -0.040168531239032745, - -0.018922701478004456, - 0.00992057379335165, - -0.006770167034119368, - -0.023582467809319496, - 0.027458852156996727, - -0.013540334068238735, - 0.0034441747702658176, - 0.03646773472428322, - 0.0025983259547501802, - 0.012480068951845169, - -0.0004870806005783379, - 0.0133039690554142, - 0.0215970017015934, - -0.021569987758994102, - -0.03581941872835159, - -0.002184687415137887, - -0.011392789892852306, - 0.013006825000047684, - 0.028390806168317795, - -0.016734637320041656, - -0.009873300790786743, - -0.019152313470840454, - 0.03365836665034294, - 0.003957424312829971, - -0.00412963330745697, - 0.01199383195489645, - 0.029363278299570084, - 0.018639063462615013, - -0.016288921236991882, - -0.000724711746443063, - 0.014276442117989063, - 0.002134037669748068, - -0.01878763549029827, - 0.006773543544113636, - 0.007529911585152149, - -0.006483152508735657, - 0.022920645773410797, - 0.005368860904127359, - -0.0033833952620625496, - -0.037710338830947876, - -0.008711736649274826, - -0.026891576126217842, - 0.011318503879010677, - 0.007151727564632893, - -0.005622108932584524, - -0.008441604673862457, - -0.014060337096452713, - -0.012189676985144615, - -0.014951770193874836, - -2.1631612980854698e-05, - 0.0010146809509024024, - 0.03279394656419754, - -0.006425749510526657, - -0.02402818389236927, - 0.004116126336157322, - -0.007583937607705593, - 0.002399104181677103, - 0.026972616091370583, - -0.04816441982984543, - 0.01279747299849987, - -0.020502969622612, - 0.01815282739698887, - -0.0440584234893322, - 0.014897744171321392, - -0.01340526808053255, - -0.005844966974109411, - 0.0039641777984797955, - -0.01784217543900013, - -0.011129411868751049, - -0.011811493895947933, - -0.027094174176454544, - -0.003158848499879241, - -0.018341919407248497, - -0.03330719470977783, - 0.012257209978997707, - 0.016842689365148544, - 0.012122144922614098, - 0.029417304322123528, - -0.017274899408221245, - -0.008198486641049385, - -0.024055197834968567, - -0.0044943103566765785, - -0.006577698513865471, - -0.015802685171365738, - 0.022434409707784653, - 0.0066351015120744705, - -0.004197165835648775, - -0.025878584012389183, - -0.018693089485168457, - 0.0017659837612882257, - -0.003710929537191987, - -0.022177783772349358, - 0.014789692126214504, - -0.011041618883609772, - 0.009042646735906601, - 0.017545031383633614, - -0.012952798046171665, - 0.001571826869621873, - -0.027499372139573097, - 0.054647572338581085, - 0.03287498652935028, - -0.019125299528241158, - -0.012790719978511333, - 0.0016807235078886151, - -0.018882181495428085, - 0.027769504114985466, - -0.005129118915647268, - 0.010913306847214699, - -0.012885265983641148, - -0.025257281959056854, - 0.0106836948543787, - -0.0272697601467371, - -0.005669381935149431, - 0.010055639781057835, - -0.009967846795916557, - 0.008975114673376083, - 0.008657709695398808, - 0.0006293216138146818, - -0.01530294120311737, - 0.020084265619516373, - 0.011440062895417213, - 0.000915069947950542, - 0.012142403982579708, - -0.0344417467713356, - -0.01819334737956524, - 0.017436979338526726, - -0.0004604895366355777, - -0.01776113733649254, - 0.01971958950161934, - -0.019733095541596413, - 0.03681890293955803, - 0.012000584974884987, - 0.015613592229783535, - -0.00430521834641695, - -0.005139248911291361, - -0.02469000592827797, - -0.02233986370265484, - 0.014762678183615208, - 0.02547338604927063, - 0.009366804733872414, - 0.015140862204134464, - 0.005267561413347721, - 0.013060851022601128, - -0.00800264161080122, - 0.017166847363114357, - 0.011237463913857937, - -0.0244198739528656, - -0.02238038182258606, - 0.0025409229565411806, - -0.009866547770798206, - -0.0012181235942989588, - -0.020570503547787666, - 0.031875498592853546, - -0.00046344409929588437, - -0.020597515627741814, - -0.024919617921113968, - 0.0010408498346805573, - -0.007009908556938171, - -0.03287498652935028, - -0.040600743144750595, - 0.00868472270667553, - -0.005358730908483267, - -0.014276442117989063, - 0.0058112009428441525, - -0.1718035489320755, - 0.018814649432897568, - 0.006503412500023842, - -0.027148202061653137, - 0.02582455798983574, - 0.01465462613850832, - 0.012750199995934963, - 0.012662407010793686, - -0.02722924016416073, - 0.0004710415378212929, - 0.029903540387749672, - -0.004804961383342743, - -0.01647801324725151, - -0.02328532189130783, - -0.006847830023616552, - -0.010413563810288906, - -0.030038606375455856, - 0.01948997750878334, - 0.03211861848831177, - 0.025527413934469223, - 0.015789177268743515, - -0.01761256344616413, - 0.014006311073899269, - 0.012675913982093334, - -0.002257285173982382, - 0.010676941834390163, - -0.02171856164932251, - 0.03714306280016899, - 0.0007567898719571531, - -0.029552370309829712, - -0.012061364948749542, - -0.019773615524172783, - -0.0007272442453540862, - -0.01083902083337307, - -0.016464505344629288, - -0.0014553326182067394, - -0.0032770310062915087, - -0.0019516990287229419, - 0.006165747996419668, - 0.003248329507187009, - 0.018760623410344124, - 0.030578868463635445, - 4.4081003579776734e-05, - 0.010359537787735462, - -0.007833809591829777, - -0.0011455257190391421, - 0.029795488342642784, - -0.017599057406187057, - -0.0001834993890952319, - -0.011082138866186142, - 0.0007090948056429625, - -0.02277207374572754, - 0.0015372162451967597, - 0.009184465743601322, - -0.015627099201083183, - 0.029984580352902412, - -0.0014443586114794016, - 0.016883209347724915, - -0.006624971516430378, - -0.003283784259110689, - -0.0018183216452598572, - -0.012946045026183128, - 0.02809366025030613, - 0.017585551366209984, - -0.029633410274982452, - -0.0143980011343956, - -0.0035927470307797194, - 0.013722673058509827, - -0.017247887328267097, - -0.010784993879497051, - -0.0008044849382713437, - -0.022745059803128242, - -0.0005347756668925285, - -0.005510679446160793, - 0.01185876689851284, - 0.016842689365148544, - -0.017855683341622353, - 0.0006326982984319329, - -0.0020715699065476656, - 0.005054832901805639, - -0.02035439759492874, - 0.050028327852487564, - -0.0031858617439866066, - -0.022569473832845688, - -0.0070909480564296246, - -0.005996915977448225, - -0.001663840259425342, - 0.02167804166674614, - -0.006044188980013132, - 0.008056667633354664, - 0.018639063462615013, - -0.011845259927213192, - -0.024798057973384857, - -0.02524377591907978, - 0.02687807008624077, - 0.004531453363597393, - -0.00937355775386095, - -0.0009640312637202442, - -0.0045685963705182076, - -0.0030879389960318804, - 0.0014840341173112392, - -0.0117777269333601, - -0.01980062760412693, - 0.00813770666718483, - 0.0014722158666700125, - -0.009873300790786743, - -0.00941407773643732, - 0.005851720459759235, - 0.03473889082670212, - -0.027769504114985466, - -0.02493312396109104, - -0.01033252477645874, - 0.006057695485651493, - 0.029606396332383156, - -0.008360565640032291, - 0.018017761409282684, - 0.002716508461162448, - -0.01242604199796915, - 0.021083751693367958, - 0.030551856383681297, - 0.04589531570672989, - -0.00843485165387392, - 0.001082213711924851, - 0.006874843034893274, - -0.020556995645165443, - -0.04000645503401756, - -0.09962444007396698, - -0.00882654171437025, - 0.004251192323863506, - 0.004771194886416197, - 0.011750713922083378, - 0.031605370342731476, - -0.00833355262875557, - -0.00745562557131052, - 0.0002711865527089685, - 0.052891720086336136, - -0.025027669966220856, - -0.0163564532995224, - -0.0008125044405460358, - -0.0003444174653850496, - 0.011980325914919376, - -0.019165819510817528, - 0.0002870145544875413, - -0.014803198166191578, - -0.02751287817955017, - 0.04119503125548363, - -0.004278205335140228, - -0.004166776314377785, - -0.0038831382989883423, - -0.016815677285194397, - -0.010379796847701073, - 0.0038392418064177036, - -0.015937749296426773, - 0.010048886761069298, - 0.008036407642066479, - -0.0013472801074385643, - 0.03768332302570343, - -0.0296604223549366, - 0.006746530532836914, - -0.01959802955389023, - -0.013040591031312943, - -0.007968874648213387, - -0.019787121564149857, - -0.009569402784109116, - 0.040600743144750595, - -0.011716947890818119, - -0.00022454668942373246, - 0.007469132076948881, - 0.002625339198857546, - -0.017815163359045982, - 0.0059867859818041325, - -0.008779268711805344, - -0.011568374931812286, - 0.028471844270825386, - 0.00022539084602613002, - -0.007766276597976685, - -0.032307710498571396, - -0.03228069841861725, - -0.008968360722064972, - 0.01504631619900465, - 0.034927982836961746, - 0.013938778080046177, - -0.001601372379809618, - 0.00017653506074566394, - -0.0092722587287426, - 0.006658738013356924, - -0.015451513230800629, - 0.010089405812323093, - -0.018841661512851715, - 0.0418703593313694, - -0.006911986041814089, - -0.0047272988595068455, - -0.020448943600058556, - -0.012790719978511333, - 0.01363488007336855, - -0.005723407957702875, - -0.02993055433034897, - 0.004798208363354206, - 0.0013422152260318398, - 0.005024443380534649, - -0.028147686272859573, - -0.0003826157480943948, - -0.03611656278371811, - -0.024676499888300896, - 0.010913306847214699, - 0.0002445954887662083, - -0.013756439089775085, - -0.03879086300730705, - 0.02712118811905384, - -0.017774643376469612, - 0.023150257766246796, - 0.023190775886178017, - -0.013702413067221642, - -0.02019231952726841, - 0.005031196400523186, - -0.02198869176208973, - -0.014411508105695248, - 0.019246859475970268, - 0.0207055676728487, - -0.015262421220541, - -0.01976010948419571, - 0.0071044545620679855, - 0.01242604199796915, - -0.01577567122876644, - -0.0009564338251948357, - -0.0047745718620717525, - -0.006226527504622936, - -0.01627541333436966, - -0.04362621530890465, - 0.018017761409282684, - 0.03698098286986351, - -0.008961607702076435, - -0.007334066089242697, - 0.012669160962104797, - 0.011142918840050697, - 0.028228726238012314, - 0.012419288977980614, - 0.0014874107437208295, - -0.037818390876054764, - -0.0076312106102705, - -0.012736693024635315, - -0.012486821971833706, - -0.044085435569286346, - -0.03290199860930443, - -0.0014848782448098063, - 0.01682918332517147, - 0.011635907925665379, - -0.014465534128248692, - -0.006496659014374018, - 0.021353883668780327, - 0.0018352048937231302, - 0.025054683908820152, - -0.0086104366928339, - -0.004136386327445507, - -0.005747044458985329, - 0.0031520952470600605, - -0.016721131280064583, - -0.010062392801046371, - 0.0112307108938694, - 0.008772515691816807, - 0.015356967225670815, - 0.011102398857474327, - -0.02254246175289154, - -0.010156938806176186, - 0.019476471468806267, - 0.018990233540534973, - 0.01882815547287464, - 0.06396710127592087, - -0.02000322751700878, - -0.02539234794676304, - 0.0007133156177587807, - -0.028579898178577423, - 0.006243410985916853, - -0.006466269493103027, - 0.013351242057979107, - -0.0008188356878235936, - -0.0004980546655133367, - -0.016896715387701988, - 0.0058112009428441525, - -0.002866768976673484, - -0.007867575623095036, - 0.0030119644943624735, - -0.001543125370517373, - 0.006054318975657225, - 0.011649414896965027, - 0.006547308526933193, - 0.021029725670814514, - -0.025648972019553185, - 0.044517647475004196, - 0.005510679446160793, - 0.0187471155077219, - -0.017666591331362724, - -0.0016207881271839142, - -0.011122658848762512, - -0.02454143390059471, - -0.007442118600010872, - 0.015100343152880669, - -0.004960286896675825, - -0.016802169382572174, - -0.0178826954215765, - 0.012317989952862263, - 0.023852597922086716, - -0.0112307108938694, - -0.007266533561050892, - 0.005753797944635153, - 0.015248915180563927, - -0.010264991782605648, - 0.008529397659003735, - 0.025027669966220856, - 0.020435437560081482, - 0.00016872657579369843, - 0.008407838642597198, - 0.03935813903808594, - 0.013925271108746529, - -0.02140790969133377, - 0.0001377036824123934, - -0.010373043827712536, - 0.003298979252576828, - -0.0018250750144943595, - 0.0248520839959383, - 0.0005288665415719151, - 0.012399028986692429, - 0.01508683618158102, - 0.026783524081110954, - -0.001814945018850267, - -0.0087252426892519, - 0.05043352395296097, - 0.036332666873931885, - 0.008961607702076435, - 0.015356967225670815, - -0.015208395197987556, - -0.016896715387701988, - -0.01843646541237831, - 0.02215077169239521, - -0.011136164888739586, - -0.014492547139525414, - 0.007063935045152903, - 0.013574101030826569, - -0.001664684503339231, - 0.019652055576443672, - 0.00436262134462595, - 0.00583146046847105, - -0.022434409707784653, - 0.020097773522138596, - -0.027647944167256355, - -0.012885265983641148, - -0.026972616091370583, - 0.024662991985678673, - 0.020327383652329445, - 0.016329441219568253, - 0.0017389706335961819, - -0.0034120967611670494, - 0.02458195388317108, - -0.028579898178577423, - 0.028823016211390495, - -0.020367903634905815, - 0.004561843350529671, - -0.014262935146689415, - -0.003206121502444148, - 0.0026776769664138556, - -0.01780165545642376, - -0.01469514612108469, - -0.006733024027198553, - 0.009265505708754063, - 0.006624971516430378, - -0.00016935970052145422, - 0.007124714553356171, - 0.11993832141160965, - 0.031713422387838364, - -0.005919253453612328, - 0.015113849192857742, - 0.0011531232157722116, - 0.018571531400084496, - 0.0185445174574852, - 0.007610951084643602, - -0.011467075906693935, - -0.06007721275091171, - 0.021259337663650513, - -0.01823386736214161, - 0.015289434231817722, - -0.016694117337465286, - 0.0033648237586021423, - 0.02382558584213257, - -0.0017474122578278184, - 0.012831239029765129, - -0.014479040168225765, - -0.00531145790591836, - 0.02367701381444931, - -0.004197165835648775, - 0.029093146324157715, - 0.03282095864415169, - -0.012128897942602634, - -0.017815163359045982, - 0.014735665172338486, - -0.0015355278737843037, - -0.003997943829745054, - 0.002652352210134268, - 0.0015465019969269633, - 0.0080634206533432, - -0.05013637989759445, - -0.021232323721051216, - 0.008752255700528622, - -0.029984580352902412, - 0.009170959703624249, - -0.0217995997518301, - 0.01000161375850439, - 0.0007610106840729713, - 0.002885340480133891, - 0.0141683891415596, - -0.006608088035136461, - -0.022326355800032616, - 0.011419802904129028, - -0.004352491348981857, - -0.012432795949280262, - -0.004355868324637413, - -0.020300371572375298 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 24, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 462 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000025.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000025.json deleted file mode 100644 index 282847225a7615c9c7c08aadab5a5890470ba494..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000025.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000025", - "content": "Im n\u00e4chsten Schritt erfolgt die Gel\u00e4ndemodellierung, bei der die gesamte Messumge- bung virtuell nachgebildet wird. Dazu wird ein Gel\u00e4ndemodell erstellt, welche die Ge- l\u00e4ndebedingungen repr\u00e4sentiert. Dies kann durch Import von H\u00f6hendaten oder manu- elles Erstellen eines Gel\u00e4ndemodells erfolgen. Da bereits ein Gel\u00e4ndemodell eines alten Projektes f\u00fcr die Firma bestand, wurde das vorhandene Gel\u00e4ndemodell in das Projekt importiert. Als n\u00e4chstes erfolgt die Objekterstellung, bei der alle relevanten Objekte hinzugef\u00fcgt\nwerden, wie zum Beispiel die Anh\u00e4nger, Schallquellen oder Messpunkte. Die Anh\u00e4nger und die Halle wurden als Objekttyp \"Geb\u00e4ude\" modelliert, um ihre Abschirmwirkung zu ber\u00fccksichtigen. Da die Verladevorg\u00e4nge nicht station\u00e4r sind, wurden sie als Fl\u00e4chen- schallquelle modelliert, entsprechend der H\u00f6he und L\u00e4nge des jeweiligen Anh\u00e4ngers. Wenn der genaue Anh\u00e4ngertyp nicht bekannt ist, empfiehlt es sich, eine durchschnittli- che L\u00e4nge und H\u00f6he zu w\u00e4hlen. Dadurch kann eine allgemeine Darstellung des Belade- vorgangs erzielt werden. Die berechneten Kennwerte aus dem Emissionsdatenblatt wurden entsprechend eingetragen. Zus\u00e4tzlich wurde bei der Modellierung der Fl\u00e4chen- schallquelle die Option f\u00fcr den maximalen Pegel \"Gesamte Schallleistung in einem Punkt\" ausgew\u00e4hlt um die maximale Schallleistung an einem bestimmten Punkt zu er- fassen. Um die Beladevorg\u00e4nge m\u00f6glichst realit\u00e4tsgetreu nachzustellen, werden die Ta- gesabl\u00e4ufe in Ereignisse pro Stunde umgewandelt. Dabei wird der Tagesablauf anhand der gesamten Beladevorg\u00e4nge an der jeweiligen Verladezone definiert. Der Ton- und Informationszuschlag nach der DIN 415681 [19] entf\u00e4llt, da keine Einzelt\u00f6ne, bezie- hungsweise informationshaltige Ger\u00e4usche hervorkommen. Wenn alles korrekt modelliert wurde wird im Rechenkern die Berechnungseinstellungen festgelegt und im Anschluss die Berechnung auf Grundlage der TA L\u00e4rm [6] durchge- f\u00fchrt. Die Bodend\u00e4mpfung wurde nach dem Verfahren, welche in der DIN ISO 9613-2 [85] aufgezeigt ist, berechnet. 50\n6 Messauswertung und Statistik\nDas Modell ber\u00fccksichtigt somit zusammengefasst:\n- die Anteile aus Reflexionen der Schallquellen an St\u00fctzmauern, Fassaden oder an- deren Fl\u00e4chen, wurde bis zur 3. Reflexion gerechnet\n- Pegel\u00e4nderungen aufgrund des Abstandes und der Luftabsorption\n- Pegel\u00e4nderungen aufgrund der Boden- und Meteorologied\u00e4mpfung: es wird f\u00fcr die Messumgebung ein Bodenfaktor von 0,2 (0,0 = schallhart; 1,0 = schallweich) ber\u00fccksichtigt\n- Pegel\u00e4nderungen durch topographische und bauliche Gegebenheiten (Mehr- fachreflexionen und Abschirmungen)\n- einen leichten Wind, etwa 3 m/s, zum Immissionsort hin und Temperaturinver- sion, die beide die Schallausbreitung f\u00f6rdern\n- Die Minderung durch die meteorologische Korrektur Cmet wurde mit 0 dB(A) an- gesetzt\nDie Lage der L\u00e4rmquellen und der Messpunkt sind aus dem Anhang 2: Lagepl\u00e4ne zu ent- nehmen. Die Berechnung erfolgt unter Ber\u00fccksichtigung einer beg\u00fcnstigten Wettersitu- ation, der Mitwindausbreitungssituation. Bei der Berechnung eines Beurteilungspegels ist normalerweise eine meteorologische Korrektur gem\u00e4\u00df der TA L\u00e4rm [6] erforderlich. In diesem Fall entf\u00e4llt die meteorologische Korrektur, da der Abstand zwischen der Schallquelle und den Mikrofonen weniger als 200 m betr\u00e4gt. Daher ist keine Anwendung der Formel 4 der DIN 9613-2 [85] f\u00fcr die meteorologische Korrektur erforderlich. Nachdem das Programm die Parameter generiert hat, wie beispielsweise den Schall- druckpegel an den angegebenen Messpunkten, k\u00f6nnen diese Ergebnisse weiter analy- siert werden. Die Ergebnisse und dessen Erl\u00e4uterung ist in Kapitel 7.4 aufzufinden. ## 6.4 Richtcharakteristik\n\nIn Bezug auf die ermittelten Kennwerte der Verladeemissionen, kann nun die Richtcha- rakteristik der Schallquelle mithilfe des im Kapitel 2.2, beschriebene Verfahren ermittelt werden.", - "embedding": [ - 0.018149426206946373, - 0.025830594822764397, - -0.014415525831282139, - -0.02845766209065914, - -0.0009726479183882475, - 0.02468375489115715, - -0.01990969479084015, - -0.022736791521310806, - -0.015669049695134163, - -0.029791196808218956, - 0.017322635278105736, - 0.02232339419424534, - -0.021923333406448364, - 0.012548575177788734, - 0.004507352132350206, - -0.010021524503827095, - 0.033391743898391724, - -0.01068162452429533, - 0.015682384371757507, - 0.0022920153569430113, - 0.0019586312118917704, - 0.019923029467463493, - 0.004337326157838106, - -0.005617520771920681, - -0.015869081020355225, - 0.03560541570186615, - 0.02591060660779476, - -0.025430534034967422, - -0.021563278511166573, - 0.011541754938662052, - -0.01074830163270235, - -0.005297472234815359, - -0.016735877841711044, - 0.0009509779629297554, - -0.019629651680588722, - -0.002075315685942769, - -0.0069210524670779705, - -0.01232187356799841, - 0.014148818328976631, - -0.010508264414966106, - 0.0017819376662373543, - -0.005024097394198179, - 0.002595394616946578, - -0.025057144463062286, - 0.014882263727486134, - 0.006117597222328186, - 0.015522360801696777, - -0.006707686930894852, - -0.02784423530101776, - 0.0017786038806661963, - 0.011235041543841362, - 0.016202464699745178, - -0.005884228274226189, - 0.008901353925466537, - -0.005004094447940588, - -0.0062942905351519585, - -0.005984243471175432, - -0.0006175939342938364, - -0.013355364091694355, - -0.020829834043979645, - -0.03205820918083191, - -0.008147905580699444, - -0.029951222240924835, - 0.000725527002941817, - -0.03016458824276924, - -0.012668593786656857, - -0.015175641514360905, - 0.001855282112956047, - -0.022443413734436035, - -0.0014318844769150019, - 0.028697697445750237, - 0.02880438044667244, - 0.011275048367679119, - 0.01524231769144535, - 0.01840279810130596, - -0.002173663815483451, - 0.025577222928404808, - -0.008868015371263027, - 0.002685408340767026, - 0.002993788570165634, - 0.017122603952884674, - -0.03392516076564789, - -0.034431904554367065, - 0.05691532418131828, - 0.023576918989419937, - -0.009368091821670532, - 0.005884228274226189, - 0.0118884751573205, - -0.011341724544763565, - 0.004117292817682028, - 0.014655562117695808, - 0.04352661967277527, - 0.012268532067537308, - 0.012755272909998894, - 0.013722087256610394, - -0.007921204902231693, - 0.005370816681534052, - 0.025603894144296646, - 0.01351538859307766, - -0.014308842830359936, - -0.0194562915712595, - -0.005064103286713362, - -0.01037491112947464, - 0.004667376633733511, - -0.023403558880090714, - -0.001028489787131548, - 0.020416438579559326, - 0.01274193823337555, - 0.010221554897725582, - -0.012041831389069557, - -0.024670418351888657, - 0.026857417076826096, - -0.0092147346585989, - -0.005634190049022436, - 0.026737399399280548, - -0.008521296083927155, - 0.03493864834308624, - -0.013428708538413048, - -0.012041831389069557, - -0.010154877789318562, - 0.009221401996910572, - 0.015575702302157879, - 0.012801947072148323, - -0.0067343576811254025, - 0.035071998834609985, - 0.0027387498412281275, - 0.0013093658490106463, - -0.021829986944794655, - -0.02259010262787342, - -0.02409699745476246, - -0.03125808760523796, - -0.004090622067451477, - 0.018856201320886612, - 0.012535239569842815, - -0.012188520282506943, - 0.02000304125249386, - -0.03827248886227608, - 0.00862131081521511, - -0.022483419626951218, - -0.042779840528964996, - 0.012788611464202404, - 0.018549486994743347, - -0.035045329481363297, - -0.022376736626029015, - -0.003470527706667781, - 0.023190192878246307, - 0.013055318966507912, - 0.010488261468708515, - -0.0003006707411259413, - -0.008241252973675728, - -0.007567817810922861, - -0.02113654837012291, - 0.00788119900971651, - -0.006120930891484022, - -0.019216256216168404, - 0.006914385128766298, - -0.0025053811259567738, - 0.01601576991379261, - -0.009321417659521103, - -0.008754665032029152, - 0.009081381373107433, - 0.027657540515065193, - 0.014748909510672092, - 0.007994549348950386, - 0.027604198083281517, - 0.005344145931303501, - 0.004587364383041859, - -0.01072829868644476, - -0.010481594130396843, - -0.0062009431421756744, - -0.012568578124046326, - 0.019149579107761383, - -0.012961971573531628, - 0.01624247059226036, - -0.014442196115851402, - 0.01464222650974989, - 0.0021769977174699306, - -0.007594488561153412, - -0.030537977814674377, - -0.04598032683134079, - -0.034778621047735214, - -0.009674804285168648, - 0.004807397723197937, - 0.005020763725042343, - -0.019669657573103905, - 0.004210640210658312, - 0.005977575667202473, - 0.006794366519898176, - -0.01704259216785431, - -0.001114336191676557, - 0.0008709657704457641, - 0.009088048711419106, - 0.021336577832698822, - -0.026243992149829865, - -0.6268686652183533, - -0.0031588138081133366, - -0.0036372197791934013, - 0.0022220045793801546, - -0.0095547866076231, - 0.017802707850933075, - 0.01881619542837143, - -0.011288383044302464, - -0.0014818920753896236, - 0.04750055819749832, - 0.001589408377185464, - 0.013368699699640274, - -0.0009668137063272297, - 0.004960754420608282, - -0.012908630073070526, - -0.028297636657953262, - -0.013288687914609909, - -0.012381883338093758, - 0.02026974968612194, - 0.0068743787705898285, - -0.025017138570547104, - 0.006881046574562788, - 0.009714811109006405, - 0.0054841674864292145, - -0.0005855057388544083, - 0.006067589391022921, - 0.008981365710496902, - -0.009114719927310944, - 0.016695871949195862, - -0.0014868928119540215, - -0.017682690173387527, - 0.0015285657718777657, - -0.02928445301949978, - 0.016549183055758476, - 0.036938950419425964, - -0.009941511787474155, - -0.003647221252322197, - 0.01913624443113804, - 0.010221554897725582, - 0.007041070610284805, - -0.0030754676554352045, - -0.006801034323871136, - -0.008194579742848873, - 0.008074561133980751, - 0.007101079914718866, - -0.005834220442920923, - 0.034911975264549255, - -0.008421280421316624, - 0.002882105065509677, - -0.026537369936704636, - 0.0073144459165632725, - 0.002768754493445158, - 0.0196829941123724, - 0.01322867814451456, - 0.03203153982758522, - -0.005934235639870167, - 0.03160480782389641, - -0.014668897725641727, - -0.02158994972705841, - 0.015669049695134163, - 0.0016877566231414676, - 0.006127598695456982, - -0.0005404988769441843, - -0.027657540515065193, - -0.019763005897402763, - 0.004514019936323166, - -0.014762245118618011, - -0.03064466081559658, - 0.020029712468385696, - -0.0300312340259552, - -0.02816428244113922, - 0.036458879709243774, - -0.009721478447318077, - -0.015055622905492783, - 0.022763462737202644, - 0.02928445301949978, - 0.01649584248661995, - -0.02074982225894928, - 0.004077286925166845, - 0.024056991562247276, - 0.0010985004482790828, - -0.01034157257527113, - -0.012808614410459995, - 0.00030546312336809933, - 0.010975002311170101, - -0.022603437304496765, - -0.02042977325618267, - 0.0023320212494581938, - 0.008081229403614998, - 0.012888627126812935, - 0.01269526407122612, - 0.028564345091581345, - -0.019389616325497627, - -0.018669506534934044, - -0.02072315104305744, - 0.03128475695848465, - -0.01897621899843216, - 0.02503047324717045, - -0.017642682418227196, - -0.03328506276011467, - -0.022670114412903786, - -0.004667376633733511, - 0.01833612285554409, - -0.01243522483855486, - 0.02477710135281086, - 0.0016494175652042031, - -0.031498122960329056, - 0.015829073265194893, - 0.025403862819075584, - -0.019989706575870514, - -0.00010751635272754356, - -0.017149275168776512, - -0.017682690173387527, - -0.006881046574562788, - -0.015295659191906452, - -0.02580392360687256, - 0.036005474627017975, - 0.00023961978149600327, - 0.02577725425362587, - -0.0055175055749714375, - 0.0179760679602623, - 0.003167148446664214, - 0.0329916849732399, - -0.015429013408720493, - -0.02568390592932701, - 0.030724672600626945, - 0.019056230783462524, - 0.014322178438305855, - 0.005934235639870167, - -0.01576239801943302, - 0.008674652315676212, - 0.01100167352706194, - 0.01594909280538559, - -0.0191095732152462, - 0.0106349503621459, - 0.018349457532167435, - 0.023150186985731125, - -0.014308842830359936, - 0.01129505131393671, - -0.02487044967710972, - -0.02049645036458969, - -0.0035472060553729534, - 0.009461439214646816, - -0.02625732682645321, - -0.009468106552958488, - -0.03080468438565731, - -0.013121996074914932, - 0.018576158210635185, - -0.004554025828838348, - -0.0023803620133548975, - -0.0007130251033231616, - -0.02623065561056137, - -0.003667224431410432, - 0.03096470981836319, - 0.0016060775378718972, - 0.014042135328054428, - -0.0007313612150028348, - -0.01232187356799841, - 0.0006117597222328186, - -0.011828465387225151, - 0.013682080432772636, - 0.00840794574469328, - -0.05616854131221771, - -0.016055775806307793, - -0.0018019407289102674, - -0.029791196808218956, - 0.001584407640621066, - -0.002612063894048333, - -0.03144478052854538, - -0.03219156339764595, - 0.010288231074810028, - 0.006514323875308037, - -0.008274591527879238, - 0.018002737313508987, - -0.011901809833943844, - 0.0003667224373202771, - -0.023350218310952187, - -0.020576462149620056, - -0.018389463424682617, - -0.015415677800774574, - 0.006160936783999205, - -0.013408705592155457, - -0.014268836937844753, - -0.007807854097336531, - 0.010161545127630234, - 0.007581152953207493, - 0.02042977325618267, - -0.00254205334931612, - -0.01749599352478981, - 0.04643372818827629, - -0.004217308014631271, - 0.03421853855252266, - -0.018602829426527023, - 0.014615556225180626, - -0.02181665040552616, - -0.004434007685631514, - 0.005917566828429699, - -0.004150631371885538, - 0.0009351422195322812, - 0.016695871949195862, - 0.02464374713599682, - 0.013375367969274521, - 0.031151404604315758, - -0.00889468565583229, - 0.019056230783462524, - -0.01470890361815691, - 0.014322178438305855, - -0.009941511787474155, - 0.040779534727334976, - 0.02677740529179573, - 0.009154725819826126, - -0.007294442504644394, - -0.037072304636240005, - -0.0023786951787769794, - 0.014695568010210991, - 0.03688560798764229, - -0.008594640530645847, - 0.004960754420608282, - 0.007614491507411003, - 0.012868624180555344, - 0.0014843924436718225, - 0.003133809892460704, - 0.04336659610271454, - 0.0150156170129776, - -0.0013693749206140637, - 0.0003102555056102574, - -0.014668897725641727, - 0.006254284642636776, - 0.0023570251651108265, - -0.005680863745510578, - -0.0047673918306827545, - -0.0039439331740140915, - 0.007487805560231209, - 0.004567361436784267, - 0.014268836937844753, - 0.006410975009202957, - 0.01322867814451456, - 0.007294442504644394, - 0.033205050975084305, - 0.006257618311792612, - 0.008007884956896305, - 0.017989402636885643, - -0.0007342783501371741, - -0.000502993178088218, - 0.01585574448108673, - -0.020629804581403732, - 0.01190847810357809, - 0.030537977814674377, - -0.005824218969792128, - -0.010301566682755947, - -0.01190847810357809, - -0.0065376609563827515, - -0.011188368313014507, - -0.017055926844477654, - 0.009434767998754978, - -0.013842104934155941, - 0.025897271931171417, - -0.007801186293363571, - 0.0092147346585989, - 0.020536456257104874, - 0.0027220805641263723, - 0.002882105065509677, - 0.006774363573640585, - -0.026857417076826096, - 0.016802554950118065, - 0.014255501329898834, - -0.036778926849365234, - -0.019416285678744316, - -0.01758934184908867, - -0.001048492849804461, - 0.0015077292919158936, - 0.011181700974702835, - -0.007647829595953226, - 0.015455683693289757, - 0.013422041200101376, - -0.01153508760035038, - -0.017349304631352425, - 0.03019125759601593, - 0.03192485496401787, - -0.009121387265622616, - -0.010948332026600838, - -0.010661621578037739, - -0.015669049695134163, - 0.022883480414748192, - -0.014055470936000347, - -0.006367634981870651, - -0.014802251011133194, - 0.004630704410374165, - -0.017002586275339127, - -0.007921204902231693, - -0.017776036635041237, - -0.00402727909386158, - 0.0014585551107302308, - -0.019869688898324966, - 0.00423064362257719, - 0.008854679763317108, - 0.014588885009288788, - 0.013041983358561993, - -0.015135635621845722, - 0.038032449781894684, - 0.006094260141253471, - -0.008948027156293392, - -0.0007984547410160303, - -0.03883257135748863, - 0.02010972425341606, - 0.004847404081374407, - -0.006570999510586262, - -0.017736030742526054, - -0.00692772027105093, - -0.0343518927693367, - -0.03192485496401787, - 0.008814673870801926, - -0.003883924102410674, - -0.004560693632811308, - -0.014148818328976631, - -0.011288383044302464, - 0.01592242158949375, - -0.012781944125890732, - 0.048087313771247864, - 0.0027120790909975767, - 0.006467650178819895, - -0.017189281061291695, - -0.006234281696379185, - 0.01592242158949375, - -0.002282013650983572, - 0.015469019301235676, - 0.010668288916349411, - 0.021856658160686493, - -0.021376583725214005, - -0.020483115687966347, - -0.004637371748685837, - -0.03168481960892677, - 0.004133962094783783, - 0.013435376808047295, - -0.006744359154254198, - 0.008841345086693764, - 0.021669961512088776, - -0.003950600977987051, - 0.0005442494293674827, - -0.013935452327132225, - 0.021403254941105843, - -0.012275200337171555, - 0.019229590892791748, - 0.0039005931466817856, - -0.015682384371757507, - -0.00958812516182661, - 0.008301262743771076, - 0.039712704718112946, - 0.00042131406371481717, - -0.013762093149125576, - 0.01030823402106762, - 0.01016821339726448, - 0.013148666359484196, - -0.026817411184310913, - 0.0017952730413526297, - 0.02529717981815338, - -0.008347935974597931, - 0.017616013064980507, - -0.007934540510177612, - -0.005144115537405014, - 0.007694503758102655, - -0.018002737313508987, - 0.01717594638466835, - -0.020216407254338264, - -0.003463860135525465, - 0.014908934012055397, - 0.014762245118618011, - 0.004040614701807499, - 0.008067893795669079, - 0.006070923060178757, - 0.013415373861789703, - 0.00696105882525444, - 0.0012126844376325607, - -0.00832793302834034, - -0.003503866260871291, - -0.026564039289951324, - -0.004910747054964304, - -0.005607519298791885, - -0.005750874523073435, - -0.023563584312796593, - 0.011255045421421528, - -0.03195152431726456, - -0.005790880881249905, - -0.0026737400330603123, - -0.049767568707466125, - -0.014855592511594296, - 0.01665586605668068, - 4.956483098794706e-05, - -0.034885305911302567, - 0.007007732521742582, - -0.01000152062624693, - -0.0011026676511391997, - -0.02200334705412388, - 0.006464316509664059, - 0.014828922227025032, - -0.018216103315353394, - -0.03619217127561569, - -0.00924807321280241, - 0.015148970298469067, - 0.0011818463681265712, - 0.008901353925466537, - 0.0073944577015936375, - -0.00488074216991663, - -0.0068277050741016865, - -0.027950918301939964, - -0.006154269445687532, - -0.011368395760655403, - -0.018709512427449226, - -0.024016985669732094, - 0.02845766209065914, - -0.01929626800119877, - 0.002820428926497698, - -0.005537508986890316, - 0.017255958169698715, - -0.02368360199034214, - 0.027950918301939964, - 0.0007588653825223446, - 0.0021319908555597067, - -0.00344719085842371, - 0.01524231769144535, - -0.005377484485507011, - 0.01408214122056961, - 0.010468258522450924, - -0.016989249736070633, - 0.009154725819826126, - -0.029924551025032997, - -0.006287622731178999, - -0.006681016180664301, - 0.021416589617729187, - -0.005554178263992071, - -0.0106349503621459, - 0.002748751314356923, - 0.002483711112290621, - 0.008507960475981236, - 0.004247312434017658, - -0.017309298738837242, - 0.01440219022333622, - -0.00045298555050976574, - -0.012201855890452862, - -0.00018554905545897782, - 0.003082135459408164, - 0.012581913731992245, - 0.01656251959502697, - 0.008928024210035801, - 0.008587973192334175, - -0.03851252421736717, - 0.044353410601615906, - 0.021389920264482498, - -0.019642988219857216, - 0.046220362186431885, - -0.01949629932641983, - 0.02300349809229374, - -0.02893773466348648, - -0.00501742959022522, - 0.0027137461584061384, - 0.013735421933233738, - 0.006454315036535263, - -0.01090832520276308, - -0.01378876343369484, - -0.009921508841216564, - 0.01868284121155739, - 0.013602068647742271, - -0.01006819773465395, - 0.0018952882383018732, - -0.011388398706912994, - 0.017829379066824913, - -0.01100167352706194, - 0.015695720911026, - 0.00010949582065222785, - -0.026377344503998756, - -0.02771088108420372, - 0.03331173211336136, - -0.005567513406276703, - 0.04024612158536911, - -0.03099137917160988, - -0.0020686478819698095, - -0.019803011789917946, - -0.01804274320602417, - -0.0052874707616865635, - -0.031204745173454285, - 0.007354451809078455, - -0.012668593786656857, - -0.002300349762663245, - 0.007567817810922861, - 0.03099137917160988, - -0.0017335970187559724, - 0.01594909280538559, - 0.0005855057388544083, - -0.015602372586727142, - 0.006777697242796421, - -0.027284149080514908, - -0.01464222650974989, - -0.03328506276011467, - 0.02955116145312786, - 0.01190847810357809, - 0.008047890849411488, - 0.0001587741426192224, - -0.003760571824386716, - 0.00488074216991663, - 0.05107443407177925, - -0.000804289011284709, - -0.010201551951467991, - -0.005020763725042343, - -0.01881619542837143, - -0.007414461113512516, - 0.006534327287226915, - 0.011648437939584255, - 0.013935452327132225, - -0.014068806543946266, - 0.0023603590670973063, - 0.001966965850442648, - -0.01204849872738123, - -0.0015827406896278262, - -0.014668897725641727, - 0.012521903961896896, - -0.03933931514620781, - 0.03331173211336136, - -0.00047507224371656775, - 0.015455683693289757, - -0.004944085143506527, - -0.0011335057206451893, - -0.015442348085343838, - -0.023350218310952187, - 0.013315358199179173, - -0.005434159655123949, - 0.006104261614382267, - -0.006357633508741856, - -0.011941815726459026, - -0.000838044099509716, - -0.008948027156293392, - 0.02100319415330887, - -0.029044417664408684, - -0.0017502661794424057, - -0.02459040656685829, - -0.03664557263255119, - -0.025723911821842194, - 0.004394001793116331, - -0.012401886284351349, - 0.025123821571469307, - 0.010921660810709, - 0.015829073265194893, - 0.029951222240924835, - -0.014935605227947235, - 0.007061074022203684, - 0.023776950314641, - -0.02026974968612194, - 0.03979272022843361, - 0.0015827406896278262, - 0.02912442944943905, - 0.014855592511594296, - -0.0133086908608675, - -0.023416895419359207, - -0.04726051911711693, - 0.014668897725641727, - -0.0031621474772691727, - 0.019096236675977707, - 0.00032650798675604165, - 0.0021586616057902575, - -0.0045240214094519615, - 0.0286710262298584, - 0.019082901999354362, - -0.01061494741588831, - -0.012268532067537308, - 0.042966533452272415, - 0.01153508760035038, - 0.003130475990474224, - -0.015295659191906452, - -0.00013022814528085291, - -0.018469475209712982, - -0.011555090546607971, - -0.004153965041041374, - -0.0029821202624589205, - -0.0019302935106679797, - -0.0052274614572525024, - -0.012055166997015476, - 0.05702200531959534, - 0.003957268316298723, - 0.008527963422238827, - 0.018056079745292664, - -0.026604045182466507, - 0.010814977809786797, - -0.027310820296406746, - -0.01562904380261898, - 0.017215952277183533, - -0.02177664451301098, - 0.02564390003681183, - -0.0013227011077106, - -0.017522664740681648, - 0.011475078761577606, - 0.0098414970561862, - -0.007274439558386803, - -0.004130628425627947, - 0.004390667658299208, - 0.024857113137841225, - -0.013708751648664474, - 0.008047890849411488, - 0.007374454755336046, - 0.006604337599128485, - 0.015055622905492783, - 0.023376887664198875, - -0.003560541430488229, - -0.00043631636071950197, - -0.00024253688752651215, - -0.00890802126377821, - -0.0014368852134793997, - 0.009581456892192364, - -0.015042287297546864, - -0.01585574448108673, - -0.006390972062945366, - -0.013195340521633625, - 0.003713898127898574, - -0.012521903961896896, - 0.00048173993127420545, - -0.031391441822052, - -0.009628131054341793, - -0.0003685977135319263, - -0.008994701318442822, - 0.021963341161608696, - -0.0077878511510789394, - -0.029444478452205658, - 0.0002504547592252493, - 0.03195152431726456, - -0.039552681148052216, - 0.011528420262038708, - 0.026043960824608803, - -0.008654649369418621, - -0.009321417659521103, - 0.005137448199093342, - 0.009534783661365509, - -0.018896207213401794, - 0.023670267313718796, - -0.006941055413335562, - -0.0255905594676733, - -0.01327535230666399, - 0.015055622905492783, - 0.005787546746432781, - -0.02236340194940567, - -0.014788915403187275, - 0.01293530035763979, - 0.011915145441889763, - 0.002635400742292404, - -0.012588581070303917, - 0.005697533022612333, - 0.0032971680629998446, - 0.036912281066179276, - -0.0027404166758060455, - 0.01301531307399273, - -0.007854527793824673, - 0.026857417076826096, - 0.010554938577115536, - -0.01581573858857155, - 0.001541067729704082, - -0.03331173211336136, - -0.019482962787151337, - 0.024670418351888657, - 0.009948180057108402, - -0.0195629745721817, - 0.008721326477825642, - -0.022883480414748192, - -0.023563584312796593, - -0.007487805560231209, - 0.004170634318143129, - -0.005660860799252987, - 0.021056536585092545, - 0.018762852996587753, - 0.015802403911948204, - -0.00860130786895752, - 0.031498122960329056, - -0.0032905004918575287, - -0.01392211765050888, - 0.01781604252755642, - 0.012635255232453346, - -0.04184636473655701, - 0.005204124841839075, - -0.026764070615172386, - 0.04488682746887207, - 0.028991075232625008, - -0.022083358839154243, - -0.013248682022094727, - 0.008447951637208462, - -0.032564952969551086, - -0.019629651680588722, - -0.012875291518867016, - 0.0035238692071288824, - -0.00926140882074833, - 0.0133086908608675, - -0.02771088108420372, - 0.04021944850683212, - -0.009608128108084202, - 0.022870145738124847, - -0.022496754303574562, - -0.01174178533256054, - -0.00532414298504591, - -0.0019036228768527508, - 0.0208164993673563, - 0.0038805902004241943, - -0.032298244535923004, - 0.0026454022154212, - 0.023216864094138145, - -0.007861195132136345, - 0.03152479603886604, - 0.02010972425341606, - -0.0021103208418935537, - -0.03301835432648659, - 0.007921204902231693, - 0.007667833007872105, - 0.021216560155153275, - 0.005310807842761278, - -0.0023153522051870823, - -0.017029255628585815, - 0.0037272335030138493, - 0.013668745756149292, - 0.014722239226102829, - -0.019442956894636154, - -0.012228526175022125, - 0.021709969267249107, - -0.00836127158254385, - -0.016362488269805908, - 0.03077801503241062, - -0.01884286478161812, - -0.0033205049112439156, - -0.028564345091581345, - 0.04611368104815483, - 0.01177512388676405, - -0.023496907204389572, - 0.007387790363281965, - 0.005417490378022194, - -0.014522208832204342, - -0.03077801503241062, - 0.00962146371603012, - -0.014668897725641727, - 0.0027770891319960356, - -1.3016302546020597e-05, - -0.018376128748059273, - 0.02912442944943905, - -0.011441740207374096, - -0.0003133809950668365, - -0.017322635278105736, - -0.0006788532482460141, - -0.017282627522945404, - -0.007687835954129696, - -0.029604502022266388, - 0.028137613087892532, - 0.03752570599317551, - -0.021376583725214005, - 0.009741481393575668, - -0.01074830163270235, - 0.002257009968161583, - -0.011728450655937195, - -0.022496754303574562, - -0.012581913731992245, - -0.039872732013463974, - -0.008954695425927639, - 0.013975459150969982, - -0.020536456257104874, - 0.007041070610284805, - 0.004253980237990618, - -0.014242165721952915, - -0.017509330064058304, - 0.001117669977247715, - 0.200670525431633, - -0.02973785623908043, - -0.013868776150047779, - -0.0005842554965056479, - -0.01884286478161812, - -0.029497819021344185, - 0.019803011789917946, - 0.014602220617234707, - 0.020509785041213036, - 0.03416519612073898, - 0.014895598404109478, - 0.005237463396042585, - 0.025883937254548073, - 0.006671014707535505, - 0.014788915403187275, - -0.01681589148938656, - -0.027630869299173355, - -0.0047207181341946125, - 0.0052874707616865635, - 0.028377648442983627, - 0.03808579221367836, - -0.02220337651669979, - -0.0014893931802362204, - -0.027284149080514908, - 0.05384818837046623, - 0.0007059407071210444, - 0.0015977430157363415, - 0.009601459838449955, - 0.03805912286043167, - 0.019602980464696884, - -0.021696632727980614, - 0.010848316363990307, - 0.02555055171251297, - -0.01601576991379261, - -0.015162305906414986, - 0.002096985699608922, - 0.0045240214094519615, - -0.01649584248661995, - 0.030617989599704742, - 0.03485863655805588, - 0.014855592511594296, - -0.019162913784384727, - -0.02161662094295025, - -0.02129657194018364, - 0.013215343467891216, - 0.014922269620001316, - -0.010014856234192848, - 0.007227765861898661, - 0.011668440885841846, - -0.004360663238912821, - -0.009321417659521103, - 0.0013110326835885644, - 0.015002281405031681, - 0.0325382836163044, - 0.004990758839994669, - -0.025563888251781464, - -0.0026003955863416195, - -0.015895750373601913, - 0.014842256903648376, - 0.008707990869879723, - -0.05670195817947388, - 0.02368360199034214, - -0.017736030742526054, - 0.02029642090201378, - -0.023336881771683693, - -0.016522513702511787, - -0.019349608570337296, - 0.006290956865996122, - 0.00045048518222756684, - -0.023510241881012917, - -0.004190637264400721, - -0.006227613892406225, - -0.022963492199778557, - 0.011788459494709969, - -0.03035128302872181, - -0.03293834254145622, - 0.0022936821915209293, - 0.01238855067640543, - 0.04091288894414902, - 0.029044417664408684, - -0.007261104416102171, - 0.011901809833943844, - -0.0005821718950755894, - -0.02519049681723118, - -0.0005309140542522073, - -0.021443260833621025, - 0.031018050387501717, - -0.009301414713263512, - -0.004153965041041374, - -0.014868928119540215, - -0.021016528829932213, - 0.0013985460391268134, - 0.007607823703438044, - -0.00165525171905756, - 0.00692772027105093, - 0.006357633508741856, - 0.0015235650353133678, - -0.002015306381508708, - -0.005977575667202473, - 0.0027620866894721985, - -0.02516382746398449, - 0.05622188374400139, - 0.05339478701353073, - -0.02006971836090088, - 0.0022886814549565315, - 0.012788611464202404, - 0.003770573530346155, - 0.017922725528478622, - 0.0019569643773138523, - -0.006057587917894125, - -0.008928024210035801, - -0.0316314771771431, - 0.02094985358417034, - -0.020403103902935982, - 0.007841192185878754, - 0.015148970298469067, - 0.012101840227842331, - -0.0040839542634785175, - 0.005034098867326975, - -0.0059575727209448814, - -0.010761636309325695, - 0.010628283023834229, - 0.011781792156398296, - 0.004147297237068415, - 0.0212699007242918, - -0.034618597477674484, - -0.01952296867966652, - 0.0177493654191494, - -0.002325353678315878, - 0.0026737400330603123, - 0.017349304631352425, - -0.014015465043485165, - 0.01594909280538559, - 0.007107747718691826, - 0.01749599352478981, - -0.003333840286359191, - -0.011641770601272583, - -0.040512826293706894, - -0.007034403271973133, - 0.02033642679452896, - 0.02129657194018364, - -0.001921958988532424, - 0.011848468333482742, - 0.0064009735360741615, - 0.010161545127630234, - 0.0066910176537930965, - 0.018322786316275597, - -0.002567057032138109, - -0.03608548641204834, - -0.03635219484567642, - -0.0229768268764019, - -0.007447799202054739, - 0.00862131081521511, - -0.03035128302872181, - 0.019162913784384727, - -0.0011793459998443723, - -0.017762701958417892, - -0.0318448431789875, - 0.005900897551327944, - 0.0002817095082718879, - -0.018922878429293633, - -0.02284347452223301, - -0.007714506704360247, - -0.005410823039710522, - 0.006784365046769381, - -0.003600547555834055, - -0.16887901723384857, - 0.01232187356799841, - 0.029204441234469414, - -0.0398193895816803, - 0.016255805268883705, - -0.003983939066529274, - 0.01576239801943302, - 0.027737552300095558, - -0.021016528829932213, - -0.012848620302975178, - 0.026630716398358345, - 0.004987425170838833, - -0.030004562810063362, - -0.019576311111450195, - -0.007821189239621162, - 0.007147753611207008, - -0.016869232058525085, - 0.018282780423760414, - 0.025057144463062286, - 0.01997637189924717, - -0.0010801642201840878, - -0.0359521359205246, - 0.004357329569756985, - 0.012821950018405914, - -0.007967878133058548, - 0.011681776493787766, - -0.0038339165039360523, - 0.03579210862517357, - -0.02864435687661171, - -0.020216407254338264, - -0.009994853287935257, - -0.00603425083681941, - 0.0025970616843551397, - 0.0020169734489172697, - -0.0003604714875109494, - -0.010094868950545788, - 0.001831945264711976, - -0.015589037910103798, - -0.0017135939560830593, - 0.013895446434617043, - 0.004727385472506285, - 0.015455683693289757, - -0.02190999872982502, - 0.030084574595093727, - -0.009661469608545303, - 0.022563431411981583, - 0.027217471972107887, - -0.011028343811631203, - -0.002440371084958315, - -0.012035164050757885, - 0.00515411701053381, - -0.01617579348385334, - -0.011528420262038708, - 0.00986150000244379, - -0.002327020512893796, - 0.027310820296406746, - -0.008814673870801926, - 0.015362336300313473, - 0.0027604198548942804, - 0.001143507193773985, - -0.016002433374524117, - -0.01890954189002514, - 0.015535696409642696, - -0.001612745225429535, - -0.01720261573791504, - -0.02029642090201378, - 0.00897469837218523, - 0.0235502477735281, - -0.021549943834543228, - -0.01116169709712267, - 0.004487349186092615, - -0.025790588930249214, - 0.003817247226834297, - 0.007954543456435204, - 0.010894990526139736, - 0.010248225182294846, - -0.0020019712392240763, - 0.0008542966097593307, - 0.0011493414640426636, - -0.015349000692367554, - -0.013095324859023094, - 0.05110110342502594, - -0.011461743153631687, - -0.022350065410137177, - -0.009768152609467506, - -0.005420824512839317, - -0.016135787591338158, - 0.023056840524077415, - -0.0068277050741016865, - 0.00447067990899086, - 0.0031371437944471836, - -0.030457966029644012, - -0.004960754420608282, - -0.027470843866467476, - 0.004107291344553232, - -0.004404003266245127, - 0.0030271271243691444, - 0.004177302122116089, - -0.02407032810151577, - 0.004747388884425163, - 0.015108964405953884, - -0.011575093492865562, - -0.02413700334727764, - 0.011735117994248867, - -0.0021119879093021154, - 0.003017125418409705, - -0.016669202595949173, - 0.010208219289779663, - 0.04067285358905792, - -0.010928329080343246, - -0.013722087256610394, - -0.013735421933233738, - 0.024950461462140083, - -0.0018852867651730776, - -0.0003042129392269999, - 0.011508417315781116, - -0.0017702692421153188, - -0.014682233333587646, - 0.004557359963655472, - 0.01576239801943302, - 0.04317989945411682, - -0.0208164993673563, - 0.005787546746432781, - 0.005177454091608524, - -0.008607976138591766, - -0.03805912286043167, - -0.09084048122167587, - -0.00019805095507763326, - 0.015429013408720493, - 0.008127902634441853, - 0.0051507833413779736, - 0.022283388301730156, - 0.014962275512516499, - -0.015402342192828655, - 0.004347327630966902, - 0.032591622322797775, - -0.02893773466348648, - -0.034885305911302567, - -0.018736183643341064, - -0.016935909166932106, - 0.01742931827902794, - -0.0235502477735281, - -0.0025337187107652426, - -0.011268380098044872, - -0.012501901015639305, - 0.03512534126639366, - -0.0012910296209156513, - -0.014962275512516499, - 0.006174272391945124, - -0.009721478447318077, - 0.001074330066330731, - 0.010501597076654434, - -0.04107291251420975, - 0.004243978764861822, - 0.01597576215863228, - 0.0015569034731015563, - 0.016989249736070633, - -0.029791196808218956, - 0.0010684957960620522, - -0.014802251011133194, - -0.01940295100212097, - -0.005610853433609009, - -0.0088746827095747, - -0.0039439331740140915, - 0.026990771293640137, - -0.014588885009288788, - 0.011575093492865562, - 0.011781792156398296, - -0.0007276106625795364, - -0.01829611510038376, - 0.0003575543814804405, - -0.0252571739256382, - -0.02464374713599682, - 0.03627218306064606, - -0.0055908504873514175, - -0.0020619803108274937, - -0.026724064722657204, - -0.030858026817440987, - -0.022803468629717827, - 0.02042977325618267, - 0.018389463424682617, - -0.005474166013300419, - -0.004730719607323408, - 0.0032971680629998446, - -0.01872284710407257, - 0.011008340865373611, - -0.03808579221367836, - 0.02227005362510681, - -0.029311124235391617, - 0.01890954189002514, - -0.008487957529723644, - -0.006907717324793339, - -0.015402342192828655, - 0.004263981711119413, - 0.019602980464696884, - 0.004854071419686079, - -0.025737248361110687, - 0.011355060152709484, - 0.0026520700193941593, - -0.011655106209218502, - -0.014975611120462418, - -0.005884228274226189, - -0.03533870726823807, - -0.0026504031848162413, - 0.009914841502904892, - -0.0068143694661557674, - 0.0068743787705898285, - -0.0354987308382988, - 0.03099137917160988, - -0.021549943834543228, - 0.03760571777820587, - 0.015509025193750858, - 0.009821494109928608, - -0.02397697977721691, - 0.01826944574713707, - -0.018669506534934044, - -0.015375671908259392, - 0.027950918301939964, - 0.018056079745292664, - -0.004677378106862307, - -0.014122148044407368, - 0.009274743497371674, - 0.007354451809078455, - 0.01640249416232109, - -0.00689438171684742, - 0.014268836937844753, - -0.013055318966507912, - -0.010554938577115536, - -0.04040614515542984, - 0.017709359526634216, - 0.035845451056957245, - -0.0008026220602914691, - -0.009001368656754494, - -0.011768456548452377, - -0.0011276714503765106, - 0.014522208832204342, - 0.016709208488464355, - 0.004937417339533567, - -0.014522208832204342, - 0.01130838692188263, - -0.009628131054341793, - -0.010201551951467991, - -0.03496531769633293, - -0.027737552300095558, - -0.005360815208405256, - 0.015188977122306824, - -0.0017902723047882318, - -0.01266192551702261, - -0.01532233040779829, - 0.004217308014631271, - -0.0011768456315621734, - 0.027817564085125923, - -0.028297636657953262, - -0.0060975938104093075, - -0.016282476484775543, - 0.008607976138591766, - -0.017962731420993805, - -0.014015465043485165, - 0.008074561133980751, - 0.004987425170838833, - -0.007227765861898661, - 0.023923639208078384, - -0.005954239051789045, - -0.016215799376368523, - 0.013141999021172523, - 0.03547206148505211, - 0.023083509877324104, - 0.047927290201187134, - -0.006570999510586262, - -0.025283845141530037, - -0.0033171712420880795, - -0.0212699007242918, - 0.0052274614572525024, - 0.007667833007872105, - 0.01259524840861559, - -0.0019186250865459442, - -0.0020736486185342073, - -0.020349761471152306, - 0.05294138565659523, - 0.01408214122056961, - 0.013748757541179657, - -0.010628283023834229, - -0.0023520244285464287, - 0.0026937429793179035, - 0.01597576215863228, - 0.0026420685462653637, - 0.0013460380723699927, - -0.027217471972107887, - 0.043606631457805634, - 0.010088200680911541, - -0.0002960866841021925, - -0.014322178438305855, - -0.009441436268389225, - -0.01032823696732521, - -0.03312503919005394, - 0.002081983257085085, - 0.000312130810925737, - -0.01924292743206024, - -0.028084270656108856, - -0.0029854539316147566, - 0.02158994972705841, - 0.03736568242311478, - -0.01470890361815691, - -0.016055775806307793, - -0.003600547555834055, - 0.012775275856256485, - 0.0030487969052046537, - 0.02500380203127861, - 0.03277831897139549, - 0.02529717981815338, - 0.0003390098863746971, - 0.012461895123124123, - 0.033338405191898346, - 0.0008101232233457267, - -0.002638734644278884, - -0.010234889574348927, - -0.010268228128552437, - -0.003550539957359433, - 0.00013908365508541465, - 0.027950918301939964, - 0.017989402636885643, - 0.00962146371603012, - 0.01446886733174324, - 0.0053941537626087666, - 0.013168669305741787, - -0.010028191842138767, - 0.04691380262374878, - 0.04269982874393463, - 0.004010609816759825, - 0.009061378426849842, - 0.005224127788096666, - -0.04766058176755905, - -0.011915145441889763, - 0.017936060205101967, - -0.030377954244613647, - -0.03395183011889458, - 0.006947723217308521, - 0.027470843866467476, - -0.01884286478161812, - 0.003058798611164093, - 0.014868928119540215, - 0.007447799202054739, - -0.0088746827095747, - 0.014935605227947235, - -0.025110485032200813, - -0.01981634646654129, - -0.022243382409214973, - 0.03221823275089264, - 0.02616397850215435, - -0.0028754372615367174, - 0.003953934647142887, - -0.00022003345657140017, - 0.02097652293741703, - -0.0018936212873086333, - 0.012015161104500294, - -0.009101384319365025, - 0.006811035796999931, - -0.0135954013094306, - 0.00926140882074833, - 0.008574637584388256, - -0.00406061764806509, - -0.01332202646881342, - -0.017909390851855278, - -0.005110777448862791, - 0.015469019301235676, - 0.0055775148794054985, - 0.0038705887272953987, - 0.12545907497406006, - 0.03235158696770668, - -0.00019825932395178825, - 0.01849614642560482, - -0.005414156708866358, - 0.038192473351955414, - 0.01965632289648056, - 0.0033171712420880795, - 0.003643887583166361, - -0.05283470079302788, - 0.02407032810151577, - -0.008381274528801441, - 0.005650859326124191, - -0.02848433144390583, - -0.011715115047991276, - 0.021896664053201675, - -0.0055775148794054985, - 0.01470890361815691, - -0.020403103902935982, - 0.0058075496926903725, - 0.023670267313718796, - -0.023150186985731125, - 0.018936213105916977, - 0.03632552549242973, - -0.021576615050435066, - -0.011241709813475609, - 0.02200334705412388, - 0.010194883681833744, - -0.0038772562984377146, - -0.012708599679172039, - -0.0004563193942885846, - 0.014828922227025032, - -0.05462164059281349, - -0.024056991562247276, - 0.0030337946955114603, - -0.03221823275089264, - -0.003917262423783541, - -0.03312503919005394, - 0.0174026470631361, - 0.012608584016561508, - 0.018549486994743347, - 0.00962146371603012, - -0.014802251011133194, - -0.032271575182676315, - -0.001386877615004778, - 0.01717594638466835, - 0.004424006212502718, - -0.008181244134902954, - -0.021083205938339233 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 25, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 510 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000026.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000026.json deleted file mode 100644 index 69b5e5f67873c659c22c41b3748d673897f0651c..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000026.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000026", - "content": "Die Ergebnisse und dessen Erl\u00e4uterung ist in Kapitel 7.4 aufzufinden. ## 6.4 Richtcharakteristik\n\nIn Bezug auf die ermittelten Kennwerte der Verladeemissionen, kann nun die Richtcha- rakteristik der Schallquelle mithilfe des im Kapitel 2.2, beschriebene Verfahren ermittelt werden. Das Verfahren erm\u00f6glicht die Beschreibung der Schallquelle bez\u00fcglich ihrer Schallabstrahlung in verschiedene Richtungen. Hierbei werden die Messdaten von mehreren Mikrofonpositionen, die um die Schall- quelle in einer kreisf\u00f6rmigen Anordnung platziert sind, verwendet, um Richtwerte f\u00fcr verschiedene Winkel zu berechnen. Dabei werden die Messdaten von den einzelnen\n51\n6 Messauswertung und Statistik\nMikrofonen mit einem Referenzpunkt miteinander verkn\u00fcpft (siehe Abbildung 15). Die gesammelten Messwerte werden im Anschluss analysiert, um die Richtcharakteristik zu bestimmen. Dazu werden statistische Verfahren oder mathematische Modelle verwen- det, um die Beziehung zwischen den Schallpegeln und den Winkeln zu bestimmen. [IMAGE: \u00ae Referenzpunkt Anh\u00e4nger | Messpunkte entlang des Anh\u00e4nger]\n\n\n[IMAGE: ]\n\nAbbildung 15: Vorgang f\u00fcr die Berechnung der Richtcharakteristik vom 03.05.2023\nDie Messpunkte MP, werden durch die Angabe von zwei Koordinaten im kartesischen Koordinatensystem [x; y] beschrieben(siehe Abbildung 16 und Abbildung 17). Von der Schallquelle Q, die sich am Mittelpunkt der kurzen Seite des Anh\u00e4ngers befindet, strahlt ein Schallvektor mit einem Abstand r zum Messpunkt und einem Winkel \ud835\udf11 aus, wobei der Winkel \ud835\udf11 im Bereich von 0\u00b0 bis 360\u00b0 liegt mit 0\u00b0 \u2264 \ud835\udf11 \u2264 360\u00b0. 52\n6 Messauswertung und Statistik\n\n[IMAGE: 18m MP4 ? 16m 14m 12m j 10m 1 2? 8m ! / 6m j / 4m 1 7 ! 2mt ty #. y 7 Q 4m 6m 2m 6m 4m 2m Om]\n\nAbbildung 16: Messpunkte im Polarkoordinatensystem vom 03.05.2023\n53\n6 Messauswertung und Statistik\n\n[IMAGE: * MP2 MPA \\ 18m ! ? \\ I 1 \\ n I \\ N ! \\ 15m 1 ! x f} ! y N u \\ N ! ! \\ 14m fl \\ I \\ ' { \\ ! 4 \\ . \u0131 I \\ 12m 1 N \\ I 4 \\ I I \\ l ! \\ 10m 1 I [ r rd 3 \\ r \u201c* \\ 1] 1 \\ 8m 1 !", - "embedding": [ - 0.00489234272390604, - 0.025338299572467804, - 0.0006822486175224185, - -0.03800083324313164, - -0.00911649502813816, - 0.017862508073449135, - -0.00909664761275053, - -0.013747516088187695, - -0.020072167739272118, - -0.018881333991885185, - 0.02629096619784832, - 0.03186142444610596, - -0.03254945948719978, - 0.014475247822701931, - -0.004042219836264849, - 0.016790758818387985, - 0.025907253846526146, - -0.011776024475693703, - 0.005375292152166367, - 0.0015199672197923064, - -0.002735610119998455, - 0.00599386403337121, - -0.014303239062428474, - 0.007489022333174944, - -0.013006553053855896, - 0.01900041662156582, - 0.028262458741664886, - -0.014223849400877953, - -0.01890779659152031, - -0.006496660877019167, - -0.011921570636332035, - -0.007396401837468147, - -0.013105789199471474, - -0.01992662064731121, - -0.014911887235939503, - 0.009725144132971764, - -0.004287002142518759, - -0.02122330665588379, - 0.014700183644890785, - -0.004210921004414558, - 0.005428217817097902, - 0.001041152747347951, - 0.005897935945540667, - -0.030194256454706192, - 0.013271182775497437, - 0.016076257452368736, - 0.008693087846040726, - -0.010664579458534718, - -0.009447282180190086, - 0.01935766637325287, - 0.004214229062199593, - 0.0073170131072402, - -0.009222347289323807, - 0.008646777831017971, - 0.012847774662077427, - -0.006635591387748718, - -0.013330724090337753, - 0.006519815884530544, - -0.022850779816508293, - -0.019741380587220192, - -0.010710889473557472, - -0.013866599649190903, - -0.025100132450461388, - -0.017108313739299774, - -0.03450772166252136, - -0.01921212114393711, - -0.026224808767437935, - 0.013291030190885067, - -0.018801944330334663, - 0.021646713837981224, - 0.019251815974712372, - 0.0334492027759552, - 0.004376314580440521, - 0.012133274227380753, - 0.04114992916584015, - -0.0029737770091742277, - 0.0028199609369039536, - -0.005623382516205311, - -0.009202499873936176, - -0.005027965642511845, - 0.03591025993227959, - -0.004875803366303444, - -0.015454377979040146, - 0.04678654298186302, - -0.0031226312275975943, - -0.02282431721687317, - 0.002560292836278677, - 0.018603472039103508, - -0.019939852878451347, - 0.004078606143593788, - 0.016526129096746445, - 0.03800083324313164, - 0.010181630030274391, - -0.0029737770091742277, - 0.013085941784083843, - -0.007978587411344051, - 0.0037908214144408703, - 0.03135862573981285, - 0.009639139287173748, - -0.021593788638710976, - -0.023896068334579468, - -0.009592829272150993, - 0.0029853545129299164, - 0.0012693959288299084, - -0.023499123752117157, - -0.0009493592660874128, - -0.0031970583368092775, - 0.011134297586977482, - 0.015282368287444115, - -0.02169964089989662, - -0.01508389599621296, - 0.012490524910390377, - -0.001981415320187807, - -0.004273770842701197, - 0.03220544382929802, - -0.0037048165686428547, - 0.03291994333267212, - -0.025960179045796394, - -0.011121065355837345, - -0.01872255653142929, - 0.016446739435195923, - 0.004015756770968437, - 0.018577009439468384, - -0.011372463777661324, - 0.04154687374830246, - 0.005497683305293322, - -0.008051360957324505, - -0.024306243285536766, - -0.017902202904224396, - -0.02255968749523163, - -0.023552048951387405, - -0.012133274227380753, - 0.03397846221923828, - 0.01877548173069954, - 0.008507846854627132, - 0.01554699894040823, - -0.03403138741850853, - -0.0016787450294941664, - -0.0234065018594265, - -0.041255779564380646, - 0.014779572375118732, - 0.009109879843890667, - -0.005074275657534599, - -0.0438491515815258, - 0.009123111143708229, - 0.005719310604035854, - 0.01092259306460619, - 0.03546038642525673, - 0.003106091869994998, - -0.002494135405868292, - -0.00520659051835537, - -0.03786851838231087, - 0.029559144750237465, - 0.009864074178040028, - -0.02499428018927574, - 0.0023188183549791574, - -0.014673720113933086, - 0.012179585173726082, - -0.003365759737789631, - -0.0195296760648489, - 0.002940698293969035, - 0.0026529133319854736, - 0.0016464933287352324, - 0.022639075294137, - 0.03657183423638344, - 0.015374989248812199, - 0.0014281737385317683, - 0.0013992298627272248, - -0.003046550089493394, - 0.0036022725980728865, - -0.02322126179933548, - 0.0065363552421331406, - -0.008554156869649887, - 0.01659228652715683, - -0.008904791437089443, - 0.0033194494899362326, - 0.00670505641028285, - -0.0037048165686428547, - -0.03958861157298088, - -0.030485348775982857, - -0.030935218557715416, - 0.0037610505241900682, - 0.012629454955458641, - -0.007442711852490902, - -0.00520659051835537, - 0.011782640591263771, - 0.008865096606314182, - 0.01120707020163536, - -0.01476634107530117, - -0.009189268574118614, - 0.011213686317205429, - 0.025153059512376785, - 0.01290070079267025, - -0.026899615302681923, - -0.6164814829826355, - -0.005494375247508287, - -0.006377577316015959, - 0.0072442395612597466, - 0.012669149786233902, - 0.007773499470204115, - 0.0237108264118433, - -0.004121608566492796, - 0.0019169118022546172, - 0.0424201525747776, - -2.4308337742695585e-06, - -0.0009973234264180064, - 0.012027422897517681, - -0.008931254036724567, - -0.01645997166633606, - -0.026304198428988457, - -0.022123048081994057, - -0.008203522302210331, - 0.03638659045100212, - 0.0030614356510341167, - -0.02794490195810795, - 0.0051999748684465885, - 0.00978468544781208, - 0.0153485257178545, - -0.011299691163003445, - 0.007489022333174944, - 0.02107776142656803, - -0.01212004292756319, - 0.014514942653477192, - -0.008110902272164822, - -0.027336254715919495, - 0.011193838901817799, - -0.0069531467743217945, - 0.012040654197335243, - 0.028632940724492073, - -0.00869970303028822, - -0.00030205005896277726, - 0.008951101452112198, - 0.012861005961894989, - -0.00476002786308527, - -0.005947554018348455, - -0.018113907426595688, - -0.009004027582705021, - 0.004320080857723951, - -0.011240148916840553, - 0.004005833063274622, - 0.03633366525173187, - 0.0014471940230578184, - -0.003926443867385387, - -0.0327347032725811, - -0.004753412213176489, - 0.0059012435376644135, - 0.01904011145234108, - 0.004578094929456711, - 0.030141329392790794, - -0.015150053426623344, - 0.021249769255518913, - -0.03442833200097084, - -0.01877548173069954, - 0.01368135865777731, - -0.0188151765614748, - -0.0003324411518406123, - 0.010955671779811382, - -0.03911227732896805, - -0.010909361764788628, - 0.028235996142029762, - -0.01939736120402813, - -0.024517947807908058, - 0.02873879298567772, - -0.013985683210194111, - -0.017981592565774918, - 0.027865514159202576, - -0.019873695448040962, - -0.010770431719720364, - 0.02723040245473385, - 0.02361820638179779, - 0.005285979714244604, - -0.01761111058294773, - 0.02095867693424225, - 0.011279843747615814, - -0.009579597041010857, - -0.01294039562344551, - -0.026965772733092308, - 0.014184155501425266, - 0.0106050381436944, - -0.03336981311440468, - -0.014065071940422058, - 0.021765798330307007, - 0.024848734959959984, - 0.02171287126839161, - 0.014739877544343472, - 0.027786124497652054, - -0.02109099179506302, - -0.02629096619784832, - -0.026079263538122177, - 0.04220844805240631, - -0.02553677186369896, - 0.022308288142085075, - -0.019807538017630577, - -0.0268202256411314, - -0.021051296964287758, - 0.008461536839604378, - 0.017015693709254265, - -0.01655259169638157, - 0.023247724398970604, - -0.0034666499122977257, - -0.015864554792642593, - -0.012239126488566399, - 0.024742882698774338, - -0.03421662747859955, - -0.0024064769968390465, - -0.01227882131934166, - -0.006807600613683462, - -0.004707101732492447, - 0.007654415909200907, - -0.02953268215060234, - 0.050597209483385086, - 0.020932214334607124, - 0.012735307216644287, - -0.0135887386277318, - 0.0146340262144804, - 0.008765860460698605, - 0.03908581659197807, - -0.022652307525277138, - -0.027733199298381805, - 0.03215251490473747, - 0.017161240801215172, - 0.00987730547785759, - -0.0015307178255170584, - -0.024716420099139214, - 0.022096585482358932, - -0.008349069394171238, - 0.00898418016731739, - -0.00875924527645111, - 0.010128703899681568, - 0.01145185250788927, - 0.018087444826960564, - -0.021871650591492653, - 0.001900372444652021, - -0.035777945071458817, - -0.01593071222305298, - -0.007879351265728474, - -9.820245031733066e-05, - -0.032893478870391846, - -0.01459433138370514, - -0.02736271731555462, - -0.013502733781933784, - -0.005782160442322493, - 0.001915257889777422, - -0.0002861309330910444, - 0.0006318035302683711, - -0.0031606717966496944, - 0.0001580542593728751, - 0.043875616043806076, - 0.013079325668513775, - 0.003155709942802787, - -0.02308894693851471, - -0.013211640529334545, - -0.014184155501425266, - -0.0206014271825552, - 0.0020856133196502924, - 0.018841639161109924, - -0.03675707429647446, - -0.006959762889891863, - -0.004769951570779085, - -0.022295057773590088, - -0.005626690108329058, - 0.003810668596997857, - -0.04043542593717575, - -0.03379322215914726, - -0.011213686317205429, - 0.014051840640604496, - -0.0053785997442901134, - -0.013668127357959747, - -0.013787210918962955, - 0.022586150094866753, - -0.008746013976633549, - -0.007899198681116104, - -0.02513982728123665, - -0.033211033791303635, - 0.01329764537513256, - -0.0029555836226791143, - -0.029426829889416695, - -0.01105490792542696, - 0.016115952283143997, - 0.019159194082021713, - 0.011359232477843761, - 0.002960545476526022, - -0.020495574921369553, - 0.03464003652334213, - -0.025814633816480637, - 0.02770673669874668, - -0.01792866550385952, - 0.013529196381568909, - -0.014197386801242828, - 0.020852824673056602, - 0.015322063118219376, - -0.004842724651098251, - -0.0029489679727703333, - 0.016830453649163246, - 0.025774938985705376, - 0.005931014660745859, - 0.03535453602671623, - -0.02642328105866909, - 0.0327347032725811, - -0.013330724090337753, - 0.016962768509984016, - -0.012450830079615116, - 0.028500625863671303, - 0.02468995749950409, - 0.014316470362246037, - -0.020918982103466988, - -0.021051296964287758, - -0.011524626053869724, - -0.0005408370634540915, - 0.03474588692188263, - -0.014819266274571419, - 0.007257471326738596, - 0.014382627792656422, - 0.0008658355218358338, - 0.003309526015073061, - 0.009923616424202919, - 0.0271774772554636, - 0.02201719582080841, - 0.0025801402516663074, - 0.0017763272626325488, - 0.01147831603884697, - -0.001058519002981484, - -0.003946291282773018, - -0.0077536520548164845, - -0.02095867693424225, - -0.02135562151670456, - 0.017822815105319023, - -0.00016146550478879362, - 0.020495574921369553, - 0.014250312931835651, - 0.010280866175889969, - 0.0028613093309104443, - 0.03728633373975754, - 0.00293077458627522, - 0.001857370138168335, - 0.017412638291716576, - -0.0038801338523626328, - -0.006814216263592243, - -0.0051470487378537655, - -0.017955129966139793, - 0.015361757948994637, - 0.02744210697710514, - 0.003694893093779683, - -0.01267576590180397, - -0.011921570636332035, - -0.005474528297781944, - 0.008574004285037518, - -0.0005548955523408949, - 0.01043302845209837, - -0.017372943460941315, - 0.026899615302681923, - 0.00487249530851841, - -0.003440186847001314, - 0.012682381086051464, - 0.014091534540057182, - -0.0035592704080045223, - -0.0008286219672299922, - -0.012708844617009163, - 0.008574004285037518, - 0.0036221197806298733, - -0.01907980628311634, - -0.011981112882494926, - -0.019251815974712372, - -0.0008327568066306412, - 0.02109099179506302, - 0.004382930230349302, - -0.009705296717584133, - 0.017624342814087868, - 0.010618269443511963, - -0.008640161715447903, - -0.007627952843904495, - 0.02255968749523163, - 0.0250869020819664, - 0.008527694270014763, - -0.013152099214494228, - -0.022639075294137, - 0.006351114250719547, - 0.040673594921827316, - -0.015891017392277718, - -0.02344619669020176, - 0.0005284325452521443, - 0.012596376240253448, - -0.028315383940935135, - -0.007575026713311672, - 0.002444517333060503, - -0.005914475303143263, - -0.0064238873310387135, - -0.025060437619686127, - -0.014303239062428474, - 0.0015778549714013934, - 0.020006010308861732, - -0.024398863315582275, - 0.0012057193089276552, - 0.028924033045768738, - 0.020495574921369553, - -0.016393814235925674, - -0.008798939175903797, - -0.017650805413722992, - 0.015573461540043354, - 0.006189028732478619, - -0.0016249921172857285, - -0.02486196532845497, - -0.00967221800237894, - -0.014845729805529118, - -0.02783905155956745, - -0.004518553148955107, - -0.013423345051705837, - 0.011822334490716457, - 0.00047716053086332977, - 0.0032251751981675625, - 0.012490524910390377, - 0.00431346520781517, - 0.03514283150434494, - -0.0053091347217559814, - -0.0016183763509616256, - -0.020654352381825447, - 0.0008286219672299922, - 0.00967221800237894, - -0.009850842878222466, - 0.0025851018726825714, - 0.004994886927306652, - 0.02450471557676792, - -0.016340887174010277, - -0.009718528017401695, - 0.013575506396591663, - -0.03522222116589546, - 0.009215731173753738, - 0.012947010807693005, - -0.0025751783978194, - 0.002851385623216629, - 0.03363444283604622, - 0.015494072809815407, - -0.004280386492609978, - -0.012966858223080635, - 0.0022956631146371365, - 0.0009228963172063231, - 0.030141329392790794, - 0.025417689234018326, - -0.006900221109390259, - -0.00042299414053559303, - 0.0032053280156105757, - 0.035433925688266754, - -0.013244719244539738, - -0.014845729805529118, - 0.02308894693851471, - 0.002366782398894429, - 0.01032056100666523, - -0.04845371097326279, - -0.014263544231653214, - 0.025602929294109344, - -0.0094075882807374, - 0.008977564983069897, - -0.020217712968587875, - -0.004419317003339529, - 0.013476270250976086, - -0.014263544231653214, - 0.022030428051948547, - -0.037921443581581116, - -0.013125636614859104, - 0.0031011300161480904, - 0.016155647113919258, - -0.011776024475693703, - 0.0026082571130245924, - -0.0065925889648497105, - 0.014184155501425266, - -0.002214620355516672, - -0.003086244687438011, - -0.002735610119998455, - -0.0030812828335911036, - -0.017002461478114128, - -0.007588258478790522, - 0.0018821791745722294, - -0.011008597910404205, - -0.003605580423027277, - 0.004832800943404436, - -0.025033975020051003, - 0.0030663972720503807, - -0.005914475303143263, - -0.024001918733119965, - -0.02548384666442871, - 0.01145185250788927, - 0.0030432422645390034, - -0.01434293296188116, - -0.0025751783978194, - -0.019503213465213776, - -0.014329701662063599, - -0.009890537708997726, - 0.012980089522898197, - 0.007065614685416222, - -0.007945508696138859, - -0.038186073303222656, - -0.009837611578404903, - 0.021183611825108528, - -0.0014728300739079714, - 0.009731759317219257, - -0.003086244687438011, - -0.011650324799120426, - -0.0077602677047252655, - -0.016076257452368736, - -0.008388763293623924, - 0.003317795693874359, - -0.032814089208841324, - -0.022519992664456367, - 0.023552048951387405, - 0.011934801936149597, - 0.007978587411344051, - -0.004660791717469692, - 0.0019433748675510287, - -0.025655854493379593, - 0.011326153762638569, - 0.01845792680978775, - -0.004409393295645714, - -0.004753412213176489, - 0.011637093499302864, - -0.003966138698160648, - 0.01948998123407364, - 0.011471699923276901, - -0.022480297833681107, - 0.01176279317587614, - -0.027256865054368973, - 0.007211160846054554, - 0.010929209180176258, - 0.014700183644890785, - -0.0018557162256911397, - 0.005067660007625818, - 0.0031160153448581696, - -0.0031739030964672565, - 0.016473202034831047, - 0.020402954891324043, - -0.03199373930692673, - 0.014104765839874744, - 0.0027306482661515474, - -7.370352250291035e-05, - 0.011200455017387867, - -0.0008517770329490304, - 0.0013694589724764228, - 0.039694465696811676, - 0.0036386591382324696, - 0.003936367575079203, - -0.028235996142029762, - 0.02352558635175228, - 0.01845792680978775, - -0.013641663827002048, - 0.04337281733751297, - -0.030723515897989273, - 0.01187526062130928, - -0.03770974278450012, - -0.024385632947087288, - 0.006162565667182207, - 0.022480297833681107, - -0.010426412336528301, - -0.011974496766924858, - -0.01574547030031681, - -0.0027256866451352835, - -0.001171813695691526, - 0.007065614685416222, - -0.0254970770329237, - 0.007422864902764559, - -0.026343893259763718, - 0.018246222287416458, - -0.01898718625307083, - 0.021064529195427895, - 0.0058383941650390625, - -0.0292680524289608, - -0.02860647812485695, - 0.025722011923789978, - 0.0015265829861164093, - 0.008282911963760853, - -0.026039568707346916, - 0.0020442649256438017, - -0.018484389409422874, - -0.019145963713526726, - -0.017425870522856712, - -0.020588194951415062, - 0.000264629750745371, - -0.025377994403243065, - -0.012311900034546852, - -0.00809767097234726, - 0.041705649346113205, - 0.006496660877019167, - 0.0013785556657239795, - 0.007852887734770775, - -0.005696155596524477, - 0.0027769585140049458, - -0.02744210697710514, - 0.001323975739069283, - -0.035433925688266754, - 0.032046664506196976, - 0.01288085337728262, - -0.008951101452112198, - 0.009943462908267975, - -0.010069162584841251, - 0.0065925889648497105, - 0.046468984335660934, - 0.0047931065782904625, - 0.008613699115812778, - -0.013787210918962955, - -0.03453418239951134, - -0.016340887174010277, - 0.005054428242146969, - 0.01725386083126068, - 0.01717447116971016, - 0.0008823748794384301, - -0.0029440061189234257, - 0.016658443957567215, - -0.03162325546145439, - -0.011008597910404205, - 0.0028331924695521593, - 0.005070967599749565, - -0.03016779199242592, - 0.025100132450461388, - -0.006698440760374069, - 0.011352616362273693, - -0.0069928416050970554, - 0.013800442218780518, - -0.011557704769074917, - -0.02450471557676792, - 0.022877242416143417, - -0.004865879658609629, - 0.023776983842253685, - 0.007383170537650585, - -0.011021829210221767, - 0.011736329644918442, - -0.01597040705382824, - 0.025642624124884605, - -0.036809999495744705, - 0.0033574900589883327, - -0.01163047831505537, - -0.02544415183365345, - -0.02068081498146057, - -0.015771932899951935, - -0.013039631769061089, - 0.013515965081751347, - 0.012305283918976784, - 0.003433571197092533, - 0.022811084985733032, - -0.01614241488277912, - -0.006860526744276285, - 0.019013648852705956, - -0.01907980628311634, - 0.024345938116312027, - -0.01092259306460619, - 0.035248685628175735, - 0.016936304047703743, - -0.026833457872271538, - -0.013105789199471474, - -0.04623081907629967, - -0.004095145501196384, - -0.0031093996949493885, - 0.04096468538045883, - 0.02318156696856022, - -0.007052382919937372, - -0.002737264148890972, - 0.01779635064303875, - 0.017584647983312607, - -0.026092493906617165, - -0.024888429790735245, - 0.026979004964232445, - 0.018219759687781334, - 0.0010833280393853784, - -0.013257951475679874, - 0.024584105238318443, - -0.034587111324071884, - 0.00023361845524050295, - 0.0066455150954425335, - -0.006728211883455515, - -0.015401451848447323, - 0.0053091347217559814, - -0.02148793637752533, - 0.06218799576163292, - 0.02273169718682766, - 0.017425870522856712, - 0.022519992664456367, - -0.02286401204764843, - -0.0023039327934384346, - -0.02024417743086815, - -0.010763815604150295, - -0.0005263651255518198, - -0.01823299005627632, - 0.035963185131549835, - -0.009228963404893875, - -0.0035824254155158997, - 0.012179585173726082, - 0.01067781075835228, - -0.012457446195185184, - 0.0020359952468425035, - 0.011180607602000237, - 0.022175973281264305, - -0.012841159477829933, - -0.0035460388753563166, - 0.00869970303028822, - -0.009923616424202919, - -0.0006934126722626388, - 0.014435553923249245, - -0.01934443600475788, - -0.0069531467743217945, - -0.01717447116971016, - 0.003512960160151124, - 0.02143501117825508, - 0.027733199298381805, - -0.003076320979744196, - -0.03450772166252136, - -0.0034004924818873405, - 0.004114992916584015, - -0.011577552184462547, - -0.015904247760772705, - 0.0039032890927046537, - -0.035830870270729065, - -0.013641663827002048, - -0.005292595364153385, - 0.007912429980933666, - 0.01898718625307083, - -0.010102241300046444, - -0.01815360225737095, - -0.017505258321762085, - 0.04064713045954704, - -0.037471573799848557, - 0.01578516513109207, - 0.023274186998605728, - -0.001754826051183045, - -0.015044202096760273, - -0.009361278265714645, - 0.015520535409450531, - -0.022850779816508293, - 0.028950495645403862, - -0.0050246575847268105, - -0.027336254715919495, - -0.017425870522856712, - 0.008613699115812778, - 0.01868286170065403, - -0.022639075294137, - -0.006000479683279991, - 0.0005726753151975572, - 0.01668490655720234, - 0.004819569643586874, - -0.003185480833053589, - 0.002350243041291833, - 0.009606060571968555, - 0.02322126179933548, - -0.012801464647054672, - 0.02001924067735672, - -0.012913932092487812, - 0.02815660648047924, - 0.006017019040882587, - -0.025589697062969208, - 0.006506584119051695, - -0.00638419296592474, - -0.029903162270784378, - 0.025205984711647034, - 0.002910927403718233, - -0.025417689234018326, - 0.0020773436408489943, - -0.011551088653504848, - -0.0216202512383461, - 0.0016928034601733088, - 0.006920068059116602, - 0.004869187716394663, - 0.013205025345087051, - 0.026899615302681923, - -0.00018927230848930776, - -0.002958891447633505, - 0.026859920471906662, - 0.0011288112727925181, - -0.01917242631316185, - 0.03643951937556267, - 0.032364219427108765, - -0.025920486077666283, - 0.025060437619686127, - -0.020204482600092888, - 0.03456064686179161, - 0.0240151509642601, - -0.029241587966680527, - -0.005686231888830662, - 0.007336860056966543, - -0.029162200167775154, - -0.014104765839874744, - -0.033607978373765945, - 0.00442593265324831, - -0.014488479122519493, - 0.020006010308861732, - -0.01368135865777731, - 0.040408965200185776, - -0.004938652738928795, - 0.030353033915162086, - -0.023022789508104324, - -0.01403860840946436, - 0.022123048081994057, - 0.005044505000114441, - 0.02504720725119114, - -0.0018193295691162348, - -0.030009014531970024, - -0.006116255186498165, - 0.03643951937556267, - 0.0072442395612597466, - 0.014660488814115524, - 0.04167918860912323, - 0.0007926488178782165, - -0.031967274844646454, - -0.0005222302861511707, - 0.020707279443740845, - 0.02570878155529499, - 0.014554636552929878, - 0.0009741683024913073, - -0.025192752480506897, - -0.0026247964706271887, - -0.0023684364277869463, - 0.02068081498146057, - -0.027547957375645638, - 0.009685449302196503, - 0.025722011923789978, - -0.0028960418421775103, - -0.0024428635369986296, - 0.009692065417766571, - -0.025814633816480637, - -0.005980632733553648, - -0.009830995462834835, - 0.03225836902856827, - 0.020389722660183907, - -0.016076257452368736, - 0.012695612385869026, - 0.015798397362232208, - -0.010710889473557472, - -0.017955129966139793, - 0.007555179763585329, - -0.015480841509997845, - -0.009950079023838043, - -0.005239669233560562, - -0.0008439208613708615, - 0.014581100083887577, - -0.012014191597700119, - 0.016182109713554382, - -0.011028445325791836, - 0.0028927340172231197, - -0.025999873876571655, - -0.01890779659152031, - -0.013271182775497437, - 0.029559144750237465, - 0.023763753473758698, - -0.009513439610600471, - 0.006351114250719547, - -0.019291508942842484, - -0.011200455017387867, - -0.014872192405164242, - -0.020495574921369553, - -0.00980453286319971, - -0.016803989186882973, - -7.199789979495108e-05, - -0.0005139606073498726, - -0.009824380278587341, - 0.007912429980933666, - 0.005656461231410503, - -0.02201719582080841, - -0.039032891392707825, - -0.004637636709958315, - 0.18756957352161407, - -0.00807120744138956, - -0.002418054500594735, - 0.008580620400607586, - -0.03270823881030083, - -0.025960179045796394, - 0.015904247760772705, - -0.00015402279677800834, - 0.019278278574347496, - 0.033475663512945175, - 0.014488479122519493, - 0.02352558635175228, - 0.02828892134130001, - 0.007164850831031799, - 0.01161063089966774, - -0.006612436380237341, - -0.02918866276741028, - -0.02322126179933548, - 0.0032400607597082853, - 0.024875197559595108, - 0.019913390278816223, - -0.02122330665588379, - -0.0014984660083428025, - -0.016208572313189507, - 0.025245679542422295, - 0.012430982664227486, - -0.013092557899653912, - 0.00199630088172853, - 0.029612069949507713, - 0.00976483803242445, - -0.020574964582920074, - 0.015044202096760273, - 0.008547541685402393, - -0.007879351265728474, - -0.0051503567956388, - 0.008726166561245918, - 0.007813193835318089, - 0.007191313896328211, - 0.031596794724464417, - 0.027203939855098724, - 0.004108377266675234, - -0.024848734959959984, - 0.012794848531484604, - -0.023816678673028946, - 0.02723040245473385, - 0.02642328105866909, - -0.014356164261698723, - -0.005864857230335474, - -0.0002648365043569356, - 0.014170924201607704, - -0.0012156430166214705, - 0.002879502484574914, - 0.014091534540057182, - 0.020720509812235832, - -0.015401451848447323, - -0.025774938985705376, - 0.012153121642768383, - -0.020032472908496857, - 0.005570456385612488, - 0.01082997303456068, - -0.048109691590070724, - 0.016737831756472588, - -0.01960906572639942, - 0.004875803366303444, - -0.02024417743086815, - 0.026701143011450768, - -0.01472664624452591, - -0.009288504719734192, - 0.00040914243436418474, - -0.010492569766938686, - 0.004194381646811962, - -0.006893605459481478, - -0.01436939649283886, - 0.014144460670650005, - -0.01655259169638157, - -0.04403439164161682, - 0.006311419885605574, - 0.01002946775406599, - 0.0426318533718586, - 0.04623081907629967, - -0.0007347610662691295, - 0.019913390278816223, - 0.0009634177549742162, - -0.020720509812235832, - -0.004306849557906389, - -0.026224808767437935, - 0.01655259169638157, - -0.0015671043656766415, - 0.01000962033867836, - 0.002409784821793437, - -0.020985139533877373, - 0.012457446195185184, - -0.0022609306033700705, - -0.015057433396577835, - 0.0234065018594265, - -0.011716483160853386, - 0.005001502577215433, - 0.003403800306841731, - -0.017955129966139793, - -0.0019218736561015248, - -0.02416069805622101, - 0.0572129562497139, - 0.05258193239569664, - -0.023644668981432915, - -0.005051120650023222, - -0.006060021463781595, - -0.010340407490730286, - 0.02169964089989662, - 0.00048377629718743265, - -0.001741594634950161, - -0.0018904488533735275, - -0.017597878351807594, - 0.018127137795090675, - -0.019648760557174683, - 0.003112707519903779, - 0.018762249499559402, - 0.0032450223807245493, - -0.011544473469257355, - 0.0017763272626325488, - 0.015136822126805782, - -0.010261018760502338, - -0.013800442218780518, - 0.0014463670086115599, - 0.018166832625865936, - 0.010730736888945103, - -0.02971792221069336, - -0.03395199775695801, - 0.020270640030503273, - 0.009665601886808872, - 0.022493530064821243, - 0.02540445700287819, - -0.01828591711819172, - 0.030538273975253105, - 0.020482342690229416, - 0.012272205203771591, - -0.0004486301331780851, - 0.0007885139784775674, - -0.03342273831367493, - 0.008130749687552452, - -0.001008900930173695, - 0.03633366525173187, - -0.0094075882807374, - 0.018272684887051582, - 0.0035361151676625013, - 0.007773499470204115, - 0.01071750558912754, - 0.008534309454262257, - 0.000486257195007056, - -0.0474216528236866, - -0.03945629671216011, - -0.017240628600120544, - -0.0050775837153196335, - 0.02082636207342148, - -0.02540445700287819, - 0.012854390777647495, - 0.012378057464957237, - -0.03003547713160515, - -0.021779028698801994, - -0.0006425541359931231, - 0.010512417182326317, - -0.010201477445662022, - -0.002431286033242941, - -0.0008331702556461096, - -0.014356164261698723, - 0.004485474433749914, - -0.0008091881754808128, - -0.16661089658737183, - 0.019556138664484024, - 0.023909298703074455, - -0.04355805739760399, - 0.010347023606300354, - 0.007250855676829815, - 0.027600884437561035, - 0.010505801998078823, - -0.010691042058169842, - -0.009202499873936176, - 0.028659403324127197, - 0.007885966449975967, - -0.01423708163201809, - -0.01836530491709709, - -0.002996932016685605, - 0.005256208591163158, - -0.020350027829408646, - 0.026304198428988457, - 0.023724058642983437, - 0.010267634876072407, - 0.009493593126535416, - -0.03143801540136337, - 0.0340578518807888, - 0.006625667680054903, - -0.016923073679208755, - 0.016711369156837463, - -0.013085941784083843, - 0.030802903696894646, - -0.017558185383677483, - -0.02224213071167469, - -0.005295902956277132, - -0.01538822054862976, - 0.014462016522884369, - -0.004650868009775877, - 0.013257951475679874, - 0.0026942617259919643, - -0.013800442218780518, - 0.002323780208826065, - -0.011961265467107296, - 0.021937808021903038, - 0.005256208591163158, - 0.01930474117398262, - -0.013079325668513775, - 0.012550066225230694, - -0.01766403578221798, - 0.0226920023560524, - 0.011432006023824215, - -0.015044202096760273, - -0.019582603126764297, - -0.01787574030458927, - 0.003787513356655836, - -0.015573461540043354, - 0.010294097475707531, - 0.010466107167303562, - 0.0007124329567886889, - 0.018444694578647614, - -0.020006010308861732, - 0.028924033045768738, - 0.0021583863999694586, - 0.0031358627602458, - -0.018616704270243645, - -0.03051181137561798, - 0.002120346063748002, - -0.006427195388823748, - 0.014739877544343472, - -0.02655559591948986, - 0.003549346700310707, - 0.034322481602430344, - -0.03154386579990387, - -0.011570936068892479, - -0.0010982134845107794, - -0.02144824154675007, - 0.00012962723849341273, - 0.0009923615725710988, - -0.0014248659135773778, - 0.004472243133932352, - 0.002360166748985648, - -0.01459433138370514, - 0.0003768906753975898, - -0.0046707154251635075, - -0.007535332348197699, - 0.04832139611244202, - -0.003853671019896865, - -0.03175557032227516, - 0.005173511803150177, - -0.014978044666349888, - -0.014938349835574627, - 0.016433509066700935, - 0.004376314580440521, - 0.0032235211692750454, - 0.004889034666121006, - -0.02775966189801693, - -0.016221804544329643, - -0.015295600518584251, - 0.013251335360109806, - -0.007422864902764559, - -0.018577009439468384, - 0.01841823197901249, - -0.025153059512376785, - -0.01960906572639942, - 0.013429960235953331, - -0.01770373061299324, - -0.035248685628175735, - 0.018616704270243645, - -0.0001550565066281706, - -0.004399469587951899, - -0.013932757079601288, - -0.0014422321692109108, - 0.03625427559018135, - -0.00032127706799656153, - -0.02749503217637539, - -0.01082997303456068, - 0.02064112201333046, - -0.005643229465931654, - -0.023962225764989853, - 0.01423708163201809, - -0.006159257609397173, - 0.0017167855985462666, - 0.004167918581515551, - -0.01734648086130619, - 0.04403439164161682, - -0.013291030190885067, - 0.005292595364153385, - 0.009123111143708229, - -0.008150597102940083, - -0.032178979367017746, - -0.06621036678552628, - -0.0034798814449459314, - 0.015361757948994637, - 0.027521494776010513, - 0.004713717848062515, - 0.02348589152097702, - 0.003532807342708111, - -0.005874780938029289, - 0.013998914510011673, - 0.04776567220687866, - -0.023552048951387405, - -0.03037949651479721, - -0.01292054820805788, - 0.002748841652646661, - 0.0012950318632647395, - -0.018259452655911446, - -0.004769951570779085, - -0.026926077902317047, - -0.01753172092139721, - 0.019503213465213776, - -0.008666624315083027, - -0.020918982103466988, - -0.016579054296016693, - -0.001640704576857388, - -0.015599924139678478, - 0.010538880713284016, - -0.03514283150434494, - 0.012437598779797554, - 0.01499127596616745, - 0.006688517052680254, - 0.020178020000457764, - -0.024716420099139214, - 0.009566365741193295, - -0.03397846221923828, - 0.0031292468775063753, - -0.012073732912540436, - -0.018259452655911446, - -0.01187526062130928, - 0.03278762847185135, - -0.022096585482358932, - 0.0031292468775063753, - 0.012536834925413132, - 0.003555962350219488, - 0.001154447323642671, - 0.0035824254155158997, - -0.00834245327860117, - -0.020522037521004677, - -0.006966378539800644, - 0.0069928416050970554, - -0.0029506217688322067, - -0.0327347032725811, - -0.01907980628311634, - -0.02945329248905182, - 0.016830453649163246, - 0.029056347906589508, - -0.003526191459968686, - -0.011253380216658115, - -0.002416400471702218, - -0.015454377979040146, - 0.004511937499046326, - -0.0377362035214901, - 0.013694589957594872, - -0.030220719054341316, - 0.0424201525747776, - -0.01554699894040823, - -0.013998914510011673, - -0.013615201227366924, - 0.0033624519128352404, - 0.004267154727131128, - -0.0095597505569458, - -0.015308831818401814, - 0.014686951413750648, - 0.0062386468052864075, - 0.004204305354505777, - -0.017161240801215172, - -0.0023403195664286613, - -0.06044143810868263, - 0.0026462976820766926, - 0.007409633137285709, - -0.022678770124912262, - 0.007389786187559366, - -0.029082810506224632, - 0.023075714707374573, - -0.012550066225230694, - 0.035777945071458817, - 0.021051296964287758, - 0.00384705513715744, - -0.01067781075835228, - 0.018921028822660446, - -0.009844226762652397, - -0.0134101128205657, - 0.02900342270731926, - 0.018008055165410042, - -0.0033905687741935253, - -0.016658443957567215, - 0.006781137548387051, - 0.0024428635369986296, - -0.004819569643586874, - -0.005133817438036203, - 0.0038073607720434666, - -0.021765798330307007, - -0.006284956820309162, - -0.037921443581581116, - 0.03167618066072464, - 0.032761164009571075, - -0.006291572470217943, - -0.021051296964287758, - -0.011087986640632153, - 0.0247296504676342, - 0.014025377109646797, - 0.01677752658724785, - -0.010816741734743118, - 0.0020740358158946037, - 0.010155167430639267, - -0.026343893259763718, - -0.006582665257155895, - -0.02807721681892872, - -0.023208029568195343, - -0.018047749996185303, - 0.018881333991885185, - -0.00873939786106348, - -0.007727188989520073, - -0.013787210918962955, - 0.0046839467249810696, - 0.018047749996185303, - 0.005398447159677744, - -0.02775966189801693, - 0.0018557162256911397, - -0.008276295848190784, - 0.013343955390155315, - -0.01689661107957363, - 0.01223251037299633, - 0.005520838312804699, - 0.005239669233560562, - -8.827883721096441e-05, - 0.026899615302681923, - 0.008130749687552452, - -0.024676725268363953, - -0.0002309308183612302, - 0.038053758442401886, - 0.011134297586977482, - 0.051444023847579956, - -0.02184518612921238, - -0.01200757548213005, - 0.00040790197090245783, - -0.018113907426595688, - 0.0135887386277318, - 0.01663198135793209, - -0.0006615744205191731, - 0.01472664624452591, - -0.0030415882356464863, - -0.022453835234045982, - 0.037392184138298035, - -0.0010791931999847293, - 0.007793346419930458, - -0.016115952283143997, - 0.006886989343911409, - -0.002320472151041031, - 0.003890057560056448, - -0.0058383941650390625, - 0.03149094060063362, - -0.0347723513841629, - 0.03688938915729523, - 0.010227940045297146, - 0.004700486082583666, - -0.00967221800237894, - 0.0014885424170643091, - -0.03305225819349289, - -0.02424008585512638, - -0.00898418016731739, - 0.007852887734770775, - -0.04832139611244202, - -0.029770847409963608, - 0.0040389117784798145, - 0.027203939855098724, - 0.04694531857967377, - -0.013562275096774101, - 0.005795391742140055, - -0.002075689611956477, - 0.036995239555835724, - 0.003114361548796296, - -0.0024213623255491257, - 0.019331203773617744, - 0.03225836902856827, - 0.002431286033242941, - -0.007839656434953213, - 0.03469296172261238, - 0.019317973405122757, - -0.015692545101046562, - -0.011570936068892479, - -0.003860286669805646, - -0.008276295848190784, - 0.004088529851287603, - 0.036492444574832916, - 0.007866119965910912, - 0.010684426873922348, - 0.0036320434883236885, - -0.0030961681623011827, - -0.004925421439111233, - -0.007952123880386353, - 0.03368736803531647, - 0.03858301788568497, - -0.005123893730342388, - 0.015957174822688103, - -0.00016622057592030615, - -0.0363072045147419, - -0.00822998583316803, - 0.023102177307009697, - -0.012351593933999538, - -0.018669629469513893, - -0.003542731050401926, - 0.009830995462834835, - 0.007773499470204115, - 0.001973145641386509, - -0.01301316823810339, - -0.0025950255803763866, - -0.007912429980933666, - 0.003969446290284395, - -0.02770673669874668, - -0.01676429621875286, - -0.016380582004785538, - 0.031173385679721832, - 0.02482227236032486, - 0.005461296532303095, - -0.002082305494695902, - -0.0005478662787936628, - 0.025020744651556015, - -0.015943942591547966, - 0.040144335478544235, - -0.021805493161082268, - 0.008937870152294636, - 0.004009141121059656, - 0.011604014784097672, - -0.004548323806375265, - -0.024981049820780754, - -0.010148551315069199, - -0.019635528326034546, - 0.019860463216900826, - 0.020892519503831863, - -0.008772476576268673, - -0.010644732043147087, - 0.12458769232034683, - 0.026767300441861153, - -0.01058519072830677, - 0.02246706746518612, - -0.016129184514284134, - 0.026886383071541786, - 0.020879287272691727, - -0.013932757079601288, - 0.00862693041563034, - -0.050729524344205856, - 0.006701748818159103, - -0.0153485257178545, - 0.038635946810245514, - -0.03514283150434494, - -6.0782149375882e-05, - 0.011888491921126842, - -0.0033690675627440214, - 0.023419734090566635, - -0.006079868879169226, - -0.0164202768355608, - 0.031041070818901062, - -0.011220301501452923, - 0.013370418921113014, - 0.06308773159980774, - -0.00593763031065464, - -0.014951581135392189, - 0.01189510803669691, - -0.0006516507710330188, - 0.009367893449962139, - -0.023141872137784958, - 0.0035824254155158997, - 0.012563297525048256, - -0.07727189362049103, - -0.0327347032725811, - 0.003966138698160648, - -0.03381968289613724, - -0.00782642513513565, - -0.02855355106294155, - 0.017822815105319023, - 0.003837131429463625, - 0.017690500244498253, - 0.024756114929914474, - -0.005811931099742651, - -0.019317973405122757, - 0.0032830629497766495, - -0.012695612385869026, - 0.0057920836843550205, - -0.005074275657534599, - -0.03741864860057831 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 26, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 344 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000027.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000027.json deleted file mode 100644 index 62a73d5b4db71a484c2f5a3780960f2f4f6cb9b4..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000027.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000027", - "content": "\u0131 I \\ 12m 1 N \\ I 4 \\ I I \\ l ! \\ 10m 1 I [ r rd 3 \\ r \u201c* \\ 1] 1 \\ 8m 1 ! \\ I Fi x I ! \\, f \\ 6 I \\ om r I \\ N \\ MP1 \\ \\ 15 f \\ 4m [ 1 Y \\ u \\ Ir /e \\ Ir, \\2m-11 7 ! y |177% \u2019 \\ ]l7, IQ Sm 6m 4m Zr \u00ae 2m 4m 6m 8m]\n\nAbbildung 17: Messpunkte im Polarkoordinatensystem vom 27.04.2023\nMithilfe des Programms SoundPlan 9.0 erstellten virtualisierten Messumgebung die in Kapitel 6.3 beschrieben ist, wurden die Koordinaten der Messpunkte ausgemessen und anschlie\u00dfend der Azimutwinkel \ud835\udf11 berechnet. Im Anschluss wurde das Richtma\u00df DI nach Formel 21 f\u00fcr jeden Messwert des jeweiligen Messpunktes mit dem dazugeh\u00f6rigen Wert des Referenzpunktes ausgerechnet. Um ein Polardiagramm zu erstellen wurde im Programm Excel ein Netzdiagramm erstellt. 54\n6 Messauswertung und Statistik\nDie Ergebnisse, einschlie\u00dflich aller relevanten Daten, sind im Anhang 4: Messergebnisse der Beladevorg\u00e4nge dargestellt. Dort ist eine umfassende Darstellung der erfassten Werte und deren grafische Visualisierung zu finden. Dar\u00fcber hinaus werden, die Ergeb- nisse der Richtcharakteristik dargestellt und interpretiert. ## 6.5 Validierung\n\nZur Validierung der berechneten akustischen Kenngr\u00f6\u00dfen wird eine Simulation der Mes- sung mithilfe der Software SoundPlan 9.0 auf Grundlage der TA L\u00e4rm [6] durchgef\u00fchrt. Diese Simulation erm\u00f6glicht es, die Messsituation nachzustellen und die erwarteten Er- gebnisse mit den messtechnisch ermittelten Ergebnissen zu vergleichen. Durch den Ver- gleich der simulierten Messergebnisse mit den tats\u00e4chlichen Messungen kann die Ge- nauigkeit der berechneten Kenngr\u00f6\u00dfen \u00fcberpr\u00fcft werden. Hierbei werden die generierten Beurteilungspegel mit dem gemessenen Beurteilungs-\npegel verglichen. Die Beurteilungspegel werden nach Formel 1 nach der DIN 45645-1 [16] berechnet. Im Rahmen der digitalisierten Messumgebung, die in 6.3 beschrieben ist und mit Hilfe des Programms SoundPlan 9.0 erstellt wurde, wurden die Messsituationen virtuell nachgestellt und Fl\u00e4chenschallquellen entsprechend den Verladezonen platziert. Um den jeweiligen Messtag pr\u00e4zise zu simulieren, wurden die Anzahl der Einzelereig- nisse pro Stunde an den Verladezonen berechnet, an denen Verladungen stattfanden. Dabei wurden die spezifischen Emissionsdaten f\u00fcr die einzelnen Anh\u00e4nger verwendet, um genauere Ergebnisse zu erzielen. Im Anschluss werden die Unterschiede analysiert und m\u00f6gliche Abweichungen interpretiert, die auf unterschiedliche Berechnungsmetho- den, Annahmen oder Randbedingungen zur\u00fcckzuf\u00fchren sein k\u00f6nnten. Es erfolgt eine \u00dcberpr\u00fcfung der Plausibilit\u00e4t der Ergebnisse, und gegebenenfalls werden R\u00fcckschl\u00fcsse auf die Genauigkeit der Messung und Berechnung gezogen. Dies erm\u00f6glicht eine umfas- sende Bewertung der \u00dcbereinstimmung zwischen den berechneten und gemessenen Werten und liefert wertvolle Erkenntnisse zur Validierung der Berechnungsergebnisse. Die Ergebnisse, einschlie\u00dflich aller relevanten Daten, sind im Anhang 5: Rechenmodell SoundPlan 9.0 \u2013 Gabelhubwagen 27.04.23 und Anhang 6: Rechenmodell SoundPlan 9.0 \u2013 Gabelstapler 03.05.2023 \u00fcbersichtlich aufgef\u00fchrt. Die simulierten Ergebnisse werden nun im Anschluss mit den berechneten Ergebnissen aus der Messung verglichen. Die Vergleichsergebnisse sind in 7.4 dargestellt und erl\u00e4utert. 55\n7 Ergebnisse und Interpretation\n\n## 7 Ergebnisse und Interpretation\n\nIn diesem Kapitel werden die Ergebnisse der Auswertung und Validierung der Verlade- ger\u00e4usche pr\u00e4sentiert und interpretiert.", - "embedding": [ - 0.0018247177358716726, - 0.007884377613663673, - -0.018257157877087593, - -0.03260206803679466, - -0.007019424811005592, - 0.027838172391057014, - -0.008855786174535751, - -0.020146746188402176, - -0.0186164453625679, - -0.025190087035298347, - 0.01270149927586317, - 0.01756519451737404, - -0.03411906212568283, - 0.003045631805434823, - -0.024498125538229942, - -0.0026630565989762545, - 0.020639104768633842, - 0.0005501598934642971, - 0.005292845889925957, - 0.005688727833330631, - -0.011809932067990303, - 0.014464671723544598, - -0.00018141137843485922, - -0.0036095145624130964, - -0.00982719473540783, - 0.022595228627324104, - 0.0340392179787159, - -0.013998928479850292, - -0.0009855472017079592, - -0.003689356381073594, - 0.00360618787817657, - -0.017325669527053833, - -0.004550982266664505, - -0.007112573366612196, - -0.007658158894628286, - 0.003952168859541416, - -0.005435895640403032, - -0.025323156267404556, - 0.017059531062841415, - -0.009155192412436008, - 0.01088509801775217, - 0.0017831334844231606, - 0.0017847968265414238, - -0.03486425057053566, - -0.0038324061315506697, - 0.012787993997335434, - 0.007425287272781134, - -0.0039089214988052845, - -0.009780620224773884, - 0.028157539665699005, - 0.009734045714139938, - 0.007019424811005592, - -0.02512355148792267, - -0.014012235216796398, - 0.012222448363900185, - -0.015768755227327347, - 0.013692867942154408, - -0.0008487349259667099, - -0.020306430757045746, - -0.0030007208697497845, - -0.017605116590857506, - -0.010818563401699066, - -0.017511967569589615, - 0.015063486061990261, - -0.019122110679745674, - -0.023939231410622597, - -0.0012999242171645164, - 0.004414585884660482, - -0.004807141609489918, - -0.0030256714671850204, - 0.03691352531313896, - 0.03406583145260811, - 0.00775796128436923, - -0.0028543442022055387, - 0.059189386665821075, - -0.0061943926848471165, - 0.010858484543859959, - -0.00586171867325902, - -0.0019062228966504335, - 0.016647014766931534, - 0.03284159302711487, - -0.019281793385744095, - -0.019281793385744095, - 0.042209696024656296, - 0.00348975183442235, - -0.019281793385744095, - -0.010472582653164864, - 0.02308758534491062, - -0.01046592928469181, - 0.0010753691894933581, - -0.007571663707494736, - 0.0317770354449749, - -0.0014870534650981426, - -0.005286192521452904, - 0.014517899602651596, - -0.008210398256778717, - -0.008928974159061909, - 0.008356775157153606, - -0.0010396067518740892, - -0.0137327890843153, - -0.01241539977490902, - -0.013293659314513206, - 0.005452529527246952, - 0.0030323248356580734, - -0.03023342788219452, - -0.01260835025459528, - -0.004501081071794033, - 0.004444526508450508, - -0.0004819616733584553, - -0.014171918854117393, - -0.025296542793512344, - 0.017964404076337814, - -0.0033300681971013546, - -0.002559927524998784, - 0.02447151020169258, - -0.014265067875385284, - 0.03499732166528702, - -0.005618866533041, - -0.02322065643966198, - -0.015582457184791565, - 0.032495610415935516, - 0.022302474826574326, - 0.01797771081328392, - -0.005000092554837465, - 0.017791414633393288, - 0.005582272075116634, - 0.009055390022695065, - -0.01534293219447136, - -0.01968100294470787, - -0.023074278607964516, - -0.01611473597586155, - -0.007491821888834238, - 0.021637126803398132, - 0.012575083412230015, - 0.001386419520713389, - 0.0322294719517231, - -0.013972314074635506, - 0.012388785369694233, - -0.027997856959700584, - -0.03252222388982773, - 0.01811078004539013, - 0.023273883387446404, - -0.017059531062841415, - -0.03576912358403206, - 0.010213096626102924, - 0.014917109161615372, - 0.018004324287176132, - 0.01784464158117771, - -0.004783854354172945, - -0.03888295590877533, - 0.005139815621078014, - -0.03052617982029915, - 0.02319404110312462, - 0.0061444914899766445, - -0.024591272696852684, - 0.007997486740350723, - 0.007179108448326588, - 0.026773616671562195, - -0.006107897497713566, - -0.014025541953742504, - -0.00021748572180513293, - 0.019627774134278297, - 0.006217679940164089, - 0.0021291144657880068, - 0.01988060772418976, - 0.008017446845769882, - 0.007964218966662884, - -0.037259504199028015, - -0.0132803525775671, - -0.017405511811375618, - -0.0048370822332799435, - 0.014677583239972591, - -0.008576340042054653, - 0.01775149255990982, - -0.01077198889106512, - -0.005119855049997568, - 0.017791414633393288, - 0.0014022215036675334, - -0.03411906212568283, - -0.025522761046886444, - -0.022848060354590416, - 0.011004861444234848, - 0.004208328202366829, - 0.005296172574162483, - -0.009933650493621826, - -0.008403348736464977, - 0.016354260966181755, - 0.017378898337483406, - -0.0015868557384237647, - -0.017232520505785942, - 0.018403533846139908, - 0.018509989604353905, - 0.00460753683000803, - -0.03212301805615425, - -0.6131849884986877, - -0.005728648975491524, - 0.004883656743913889, - 0.0020609162747859955, - 0.011650248430669308, - 0.040666088461875916, - 0.0219032671302557, - -0.00029420870123431087, - -0.004704012535512447, - 0.05296172574162483, - 0.0006973681738600135, - 0.003968802746385336, - -0.0016167963622137904, - -0.013260391540825367, - -0.015502615831792355, - -0.017219213768839836, - 0.0008167150663211942, - -0.021756889298558235, - 0.03087216056883335, - 0.020559262484312057, - -0.04939545691013336, - 0.01159702055156231, - 0.013839244842529297, - -0.00021332729374989867, - 0.004684051964432001, - -0.0018979060696437955, - 0.021038314327597618, - -0.015103406272828579, - -0.013200510293245316, - -0.006450552027672529, - -0.026840150356292725, - -0.006563661154359579, - -0.017259135842323303, - 0.02537638507783413, - 0.03576912358403206, - -0.008755983784794807, - -0.009062044322490692, - 0.021983107551932335, - -0.0036560888402163982, - -0.001984401373192668, - 0.004504408221691847, - -0.0012458646669983864, - 0.005432568956166506, - -0.008689449168741703, - 0.005099894944578409, - -0.003755891229957342, - 0.027039755135774612, - -0.002288798103109002, - 0.007026078179478645, - -0.044525109231472015, - 7.698287663515657e-05, - -0.002495056251063943, - 0.002907572081312537, - 0.007771268021315336, - 0.02521670050919056, - -0.005901639349758625, - 0.0313245989382267, - -0.005226310808211565, - -0.012455319985747337, - 0.013493264093995094, - -0.014477979391813278, - -0.0005979817942716181, - 0.009787273593246937, - -0.026893379166722298, - -0.003399929963052273, - 0.024750957265496254, - -0.006886355113238096, - -0.01858983188867569, - 0.009015469811856747, - -0.011117970570921898, - -0.02505701780319214, - 0.019694309681653976, - -0.025961890816688538, - -0.01922856643795967, - 0.022595228627324104, - 0.02505701780319214, - 0.019920527935028076, - -0.017645036801695824, - 0.018243851140141487, - 0.015875210985541344, - 0.007445247378200293, - -0.006154472008347511, - -0.00945459958165884, - 0.0026048386935144663, - 0.03529007360339165, - -0.008143863640725613, - -0.012295636348426342, - 0.019082188606262207, - 0.0016592122847214341, - 0.02721274644136429, - 0.026667160913348198, - 0.024950562044978142, - -0.0030156911816447973, - -0.02898257225751877, - -0.00767146609723568, - 0.02154397778213024, - -0.021144770085811615, - 0.020253201946616173, - -0.0062376405112445354, - -0.02546953409910202, - -0.023593250662088394, - 0.004704012535512447, - 0.021144770085811615, - -0.010605651885271072, - 0.010991553775966167, - -0.0013356867711991072, - -0.011437337845563889, - 0.01330031268298626, - 0.020852016285061836, - -0.02083870954811573, - -0.021916573867201805, - -0.026347793638706207, - -0.01095163356512785, - -0.01450459286570549, - -0.007165801245719194, - -0.02991406060755253, - 0.024870719760656357, - 0.008097289130091667, - -0.00030231763957999647, - 0.0019062228966504335, - 0.022408930584788322, - 0.005692054983228445, - 0.03811115026473999, - -0.011390763334929943, - -0.022794833406805992, - 0.014025541953742504, - 0.02505701780319214, - 0.01234886422753334, - 0.000831685378216207, - -0.019627774134278297, - 0.01206276472657919, - -0.004697359167039394, - 0.018989041447639465, - -0.02483079954981804, - 0.011004861444234848, - 0.018563218414783478, - 0.02260853536427021, - -0.012561775743961334, - 0.001803093939088285, - -0.015143327414989471, - -0.04029349237680435, - -0.006986157037317753, - 0.008855786174535751, - -0.02717282436788082, - -0.008270279504358768, - -0.040666088461875916, - -0.007997486740350723, - 0.009068697690963745, - 0.021011698991060257, - 0.024098915979266167, - 0.007385366130620241, - -0.014584435150027275, - -0.022595228627324104, - 0.016647014766931534, - -0.006287541706115007, - 0.005346073769032955, - -0.012541815638542175, - -0.004600883461534977, - 0.00045617943396791816, - -0.02544291876256466, - 0.005053320433944464, - 0.040320105850696564, - -0.03443842753767967, - -0.019441477954387665, - 0.00038673370727337897, - -0.012595043517649174, - 0.005984807852655649, - 0.002470105653628707, - -0.038643430918455124, - -0.03720627725124359, - 0.002263847505673766, - 0.006756612099707127, - -0.02019997499883175, - -0.0003409910132177174, - -0.021850038319826126, - 0.013420075178146362, - -0.023593250662088394, - -0.013120668940246105, - -0.019401555880904198, - -0.012328904122114182, - 0.013133975677192211, - 0.014863881282508373, - -0.030020516365766525, - -0.0018180642509832978, - 0.01865636743605137, - 0.009121925570070744, - 0.011277654208242893, - 0.007924298755824566, - -0.0274655781686306, - 0.028476906940340996, - -0.0219032671302557, - 0.018150702118873596, - -0.005755262915045023, - 0.008769290521740913, - -0.02682684361934662, - 0.017086144536733627, - -0.002900918712839484, - -0.011763358488678932, - -0.006859741173684597, - 0.02165043354034424, - 0.017937790602445602, - 0.012142607010900974, - 0.03906925395131111, - -0.0035762472543865442, - 0.012488587759435177, - -0.006723344791680574, - 0.013652946799993515, - -0.016647014766931534, - 0.04024026542901993, - 0.014797346666455269, - 0.023180734366178513, - -0.016780083999037743, - -0.026707081124186516, - 0.0007418633904308081, - 0.009521134197711945, - 0.028210768476128578, - -0.01125769317150116, - 0.004863696172833443, - 0.006081283558160067, - 0.017458738759160042, - 0.0022904614452272654, - 0.011437337845563889, - 0.03856358677148819, - 0.009348143823444843, - -0.008829171769320965, - 0.003386622993275523, - 0.013207163661718369, - 0.016287727281451225, - 0.000523130118381232, - -0.004141793120652437, - -0.012375478632748127, - -0.015901824459433556, - 0.01137080229818821, - 0.02331380546092987, - 0.013080747798085213, - 0.0008616260602138937, - 0.01419853325933218, - -0.000979725387878716, - 0.03135121241211891, - 0.014770732261240482, - 0.0077845752239227295, - 0.009481213055551052, - 0.0010928346309810877, - -0.003326741512864828, - 0.010306245647370815, - -0.01604820042848587, - 0.0180442463606596, - 0.03284159302711487, - 0.005113201681524515, - -0.0007896852912381291, - -0.015702219679951668, - -0.01643410325050354, - -0.008150517009198666, - -0.008602953515946865, - 0.005685401149094105, - -0.018935812637209892, - 0.03100523166358471, - -0.010905059054493904, - 0.0110647426918149, - 0.028822889551520348, - 0.0059482138603925705, - 0.037685327231884, - -0.009481213055551052, - 0.0011768348049372435, - -0.012222448363900185, - 0.00934149045497179, - -0.04609533026814461, - -0.011151237413287163, - -0.009780620224773884, - -0.019853994250297546, - 0.013094054535031319, - -0.009208420291543007, - -0.004630824085325003, - 0.01627441868185997, - 0.01252850890159607, - -0.014371523633599281, - -0.0064771659672260284, - 0.013839244842529297, - 0.023792855441570282, - 0.013692867942154408, - 0.008809211663901806, - -0.030446339398622513, - 0.005485796835273504, - 0.027651876211166382, - -0.009707432240247726, - -0.015223169699311256, - -0.0075517031364142895, - 0.0175918098539114, - -0.03135121241211891, - -0.012315597385168076, - -0.020466113463044167, - 0.003965476062148809, - -0.002766185672953725, - -0.019561240449547768, - -0.0018330345628783107, - 0.007451901212334633, - 0.014690890908241272, - -0.008769290521740913, - -0.0077845752239227295, - 0.01620788499712944, - 0.0003775851509999484, - -0.023819468915462494, - -0.023406952619552612, - -0.02775833196938038, - 0.023619864135980606, - -0.014331602491438389, - -0.010798603296279907, - -0.0270131416618824, - -0.0028676511719822884, - -0.006739978212863207, - -0.01252850890159607, - 0.024817490950226784, - -0.00258487812243402, - 0.013799323700368404, - -0.006264254450798035, - 0.0012125972425565124, - -0.004521041642874479, - -0.0186164453625679, - 0.04617517068982124, - -0.0090221231803298, - -0.0365409292280674, - -0.035582829266786575, - -0.002332045929506421, - 0.0035363263450562954, - -0.004723973106592894, - 0.025868741795420647, - 0.015409466810524464, - 0.00921507366001606, - -0.015489308163523674, - -0.005399301648139954, - -0.010865137912333012, - -0.0374458022415638, - 0.009181806817650795, - 0.026680467650294304, - -0.00956770870834589, - -0.00640730420127511, - 0.027359122410416603, - -0.004637477919459343, - 0.014784038998186588, - -0.02415214292705059, - 0.004531022161245346, - -0.009075351059436798, - 0.024458203464746475, - 0.020718947052955627, - -0.016420796513557434, - 0.005608886014670134, - -0.006803186610341072, - 0.032016560435295105, - 0.005768569651991129, - -0.02694660611450672, - 0.0274655781686306, - 0.025575987994670868, - 0.009321529418230057, - -0.05211007967591286, - -0.006111224181950092, - 0.03946845978498459, - 0.011184505186975002, - 0.017538581043481827, - -0.030818933621048927, - -0.006221006624400616, - 0.015063486061990261, - 0.008290239609777927, - 0.021211303770542145, - -0.011237733066082, - 0.0018330345628783107, - 0.025882048532366753, - 0.00709926662966609, - -0.0001267280604224652, - 0.004451180342584848, - 0.002453471766784787, - 0.007392019499093294, - 0.018004324287176132, - -0.003386622993275523, - -0.007871070876717567, - 0.0010703790467232466, - -0.03198994696140289, - 0.009321529418230057, - -0.020958472043275833, - -0.006886355113238096, - -0.013067441061139107, - -0.013233778066933155, - -0.01965438947081566, - -0.005835104733705521, - -0.01181658636778593, - -0.024418283253908157, - -0.01650063879787922, - 0.01575544849038124, - -0.007165801245719194, - -0.026507476344704628, - -0.027026448398828506, - -0.015595763921737671, - -0.02688007242977619, - -0.019574547186493874, - 0.01720590703189373, - 0.0005256251897662878, - -0.0029957308433949947, - -0.019414864480495453, - -0.012142607010900974, - 0.010625612922012806, - 0.0035596133675426245, - 0.025096938014030457, - -0.0029092354234308004, - -0.011563753709197044, - 0.015875210985541344, - -0.022728297859430313, - -0.016221191734075546, - -0.008110595867037773, - -0.03167057782411575, - -0.013060787692666054, - 0.028450293466448784, - -0.0032884839456528425, - 0.008736023679375648, - 0.012448666617274284, - -0.001911213039420545, - -0.004467813763767481, - 0.009700777940452099, - 0.012741420418024063, - -0.012355517596006393, - 0.012628311291337013, - 0.01890919916331768, - -0.01315393578261137, - 0.014624355360865593, - 0.016859926283359528, - -0.020279817283153534, - 0.012408745475113392, - -0.0390426404774189, - 0.0009847155306488276, - -0.011058089323341846, - 0.008582993410527706, - -0.0006474670954048634, - -0.005329439882189035, - 0.02412552945315838, - -0.006004768423736095, - -0.001090339501388371, - -0.0015036871191114187, - -0.019162030890583992, - -0.011776665225625038, - 0.00741198007017374, - -0.010492542758584023, - 0.021237917244434357, - -0.005735302343964577, - 0.020120132714509964, - 0.023979153484106064, - 0.009986878372728825, - -0.010099987499415874, - -0.03760548681020737, - 0.029275326058268547, - -0.00394884217530489, - 0.010026798583567142, - 0.05030033364892006, - -0.02299443818628788, - 0.003955495543777943, - -0.02964792028069496, - 0.01249524112790823, - 0.022821446880698204, - 0.011058089323341846, - -0.004101872444152832, - -0.01534293219447136, - -0.012082724831998348, - 0.011091356165707111, - 0.004717319272458553, - 0.013852551579475403, - -0.009734045714139938, - 0.0028110966086387634, - -0.0043081301264464855, - 0.006586948409676552, - -0.012288982979953289, - -0.0003127137024421245, - -0.005139815621078014, - -0.026281258091330528, - -0.032655294984579086, - 0.016447409987449646, - -0.016221191734075546, - 0.018323691561818123, - 0.0005642985343001783, - -0.001054577063769102, - -0.027438964694738388, - -0.0116901695728302, - -0.011284307576715946, - -0.024271905422210693, - 0.005099894944578409, - -0.006374036893248558, - -0.0004765557241626084, - 0.014943722635507584, - 0.03946845978498459, - -0.0011626961641013622, - 0.0036361285019665956, - 0.0012616667663678527, - -0.015462694689631462, - 0.0035795739386230707, - -0.028583362698554993, - 0.005984807852655649, - -0.03837728872895241, - 0.036940138787031174, - 0.008749330416321754, - 0.01258839014917612, - -0.008456576615571976, - 0.001991054741665721, - 0.00960097648203373, - 0.04247583448886871, - -0.024431589990854263, - -0.004248248878866434, - -0.0059482138603925705, - -0.024591272696852684, - -0.0007505960529670119, - -0.0006595265003852546, - 0.010352819226682186, - 0.01528970431536436, - -0.02324726991355419, - 0.006430591456592083, - 0.01788456179201603, - 0.007651505526155233, - -0.0005572292138822377, - 0.0046408046036958694, - 0.017671650275588036, - -0.0481179878115654, - 0.0265607051551342, - 0.008170477114617825, - 0.028184155002236366, - -0.011623634956777096, - -0.005206350702792406, - -0.010925019159913063, - -0.0023686399217694998, - 0.02884950302541256, - -0.01341342180967331, - 0.01813739538192749, - 0.004091891925781965, - -0.0076914262026548386, - 0.0038756539579480886, - -0.014784038998186588, - 0.018696287646889687, - -0.01688653975725174, - -0.0013448352692648768, - -0.02392592467367649, - -0.01519655529409647, - -0.015875210985541344, - -0.014105384238064289, - 0.001680004526861012, - 0.019947141408920288, - -0.0059548672288656235, - 0.008083981461822987, - 0.009740699082612991, - -0.010752028785645962, - 0.001778143341653049, - 0.016673628240823746, - -0.014917109161615372, - 0.022475466132164, - 0.01528970431536436, - 0.02839706651866436, - 0.030153585597872734, - -0.031085072085261345, - -0.005558985285460949, - -0.04694697633385658, - -0.0005788530106656253, - -0.0022023029159754515, - 0.025043711066246033, - 0.028663204982876778, - -0.020306430757045746, - 0.0027046408504247665, - 0.009800580330193043, - -0.006290868390351534, - -0.012980945408344269, - -0.02004029043018818, - 0.028450293466448784, - 0.019760845229029655, - 0.011663556098937988, - -0.014850574545562267, - 0.013173896819353104, - -0.040506403893232346, - 0.00213410472497344, - -0.00528951920568943, - -0.02174358256161213, - -0.0036926830653101206, - -0.004577596206218004, - -0.013573105446994305, - 0.040639474987983704, - 0.007704733405262232, - 0.0331343449652195, - 0.012768033891916275, - -0.03159073740243912, - 0.011324227787554264, - -0.016261111944913864, - -0.020532649010419846, - 0.024591272696852684, - -0.016873233020305634, - 0.04431219771504402, - -0.006806513294577599, - -0.009747352451086044, - 0.008383388631045818, - -0.00653704721480608, - 0.0016184597043320537, - -0.0018995694117620587, - 0.006171105429530144, - 0.02322065643966198, - -0.006853087339550257, - 0.009195113554596901, - 0.023074278607964516, - -0.007425287272781134, - 0.0061444914899766445, - 0.020146746188402176, - -0.012621656991541386, - -0.0141852255910635, - -0.03052617982029915, - -0.009587668813765049, - 0.0020642431918531656, - 1.6542742741876282e-05, - -0.012854529544711113, - -0.007924298755824566, - -0.005183063447475433, - 0.006467185448855162, - -0.007578317075967789, - -0.016513945534825325, - 0.012076071463525295, - -0.030659249052405357, - -0.010006838478147984, - 0.009434638544917107, - -0.008396695367991924, - 0.035077162086963654, - 0.003226939355954528, - -0.01419853325933218, - -0.011523832567036152, - 0.012774687260389328, - -0.034331973642110825, - 0.014757425524294376, - 0.027545420452952385, - -0.0066301957704126835, - -0.010426008142530918, - 0.004570942837744951, - -0.000698199903126806, - -0.004660764709115028, - 0.034944094717502594, - -0.002322065643966198, - -0.030126972123980522, - -0.002388600492849946, - 0.005003419239073992, - 0.022861367091536522, - -0.033719852566719055, - -0.00014606474724132568, - 0.00956770870834589, - 0.02042619325220585, - -0.010292937979102135, - -0.004424566403031349, - 0.003466464579105377, - 0.0014238454168662429, - 0.010745375417172909, - 0.004244922194629908, - 0.0027778290677815676, - -0.016354260966181755, - 0.026520783081650734, - 0.008316854014992714, - -0.008017446845769882, - 0.0037492376286536455, - -0.021690355613827705, - -0.025163473561406136, - 0.02855674922466278, - 0.013000905513763428, - -0.03406583145260811, - -0.007718040142208338, - -0.03241576999425888, - -0.017738185822963715, - -0.013593065552413464, - 0.01666032150387764, - 0.01088509801775217, - 0.015476001426577568, - 0.014983643777668476, - 0.011823239736258984, - 0.0066301957704126835, - 0.01534293219447136, - 0.003473118180409074, - -0.0279180146753788, - 0.031111687421798706, - 0.0021474116947501898, - -0.029435008764266968, - -0.0021307780407369137, - -0.006154472008347511, - 0.02778494544327259, - 0.036966752260923386, - -0.04106529802083969, - -0.011796625331044197, - 0.0015910140937194228, - -0.019388249143958092, - -0.04138466343283653, - -0.02322065643966198, - -0.01656717248260975, - 0.0141852255910635, - 0.016553865745663643, - -0.014517899602651596, - 0.045882418751716614, - -0.005565638653934002, - 0.021889958530664444, - -0.02051934227347374, - -0.01813739538192749, - 0.0020209953654557467, - -0.010166522115468979, - 0.004647457972168922, - -0.013626333326101303, - -0.034970708191394806, - -0.0025200066156685352, - 0.02512355148792267, - 0.010359473526477814, - 0.025935277342796326, - 0.01965438947081566, - -0.016420796513557434, - -0.03425212949514389, - -5.738629261031747e-05, - 0.013293659314513206, - 0.03206978738307953, - -0.0023403626400977373, - 0.011051435023546219, - -0.028636591508984566, - 0.0018080839654430747, - -0.007085959427058697, - 0.009507827460765839, - -0.023460181429982185, - -0.007365405559539795, - 0.02065241150557995, - -0.012648271396756172, - -0.01045262161642313, - -0.0017964404541999102, - -0.023074278607964516, - -0.008676141500473022, - -0.014890494756400585, - 0.034465041011571884, - 0.016314340755343437, - -0.011656902730464935, - 0.007026078179478645, - 0.02154397778213024, - -0.002782819326967001, - -0.027971243485808372, - 0.015529229305684566, - -0.024884026497602463, - -0.01258839014917612, - 0.0137327890843153, - -0.013786016963422298, - 0.0009980225004255772, - -0.0026796902529895306, - 0.013719482347369194, - -0.0005351895233616233, - -0.0025249968748539686, - -0.0073121776804327965, - -0.011091356165707111, - -0.04894302040338516, - 0.027705103158950806, - 0.02435174770653248, - -0.010891751386225224, - 0.008968895301222801, - -0.004580922890454531, - -0.007664812263101339, - -0.0033483654260635376, - -0.02871643379330635, - -0.011783318594098091, - -0.007238989695906639, - -0.019241873174905777, - 0.00936145056039095, - -0.02408560924232006, - 0.0037825051695108414, - 0.014291681349277496, - -0.01183654647320509, - -0.02962130680680275, - -0.01273476704955101, - 0.19513335824012756, - -0.02090524323284626, - -0.018084166571497917, - 0.012195834890007973, - -0.007425287272781134, - -0.013985621742904186, - 0.019641082733869553, - 0.004224961623549461, - 0.03579573705792427, - 0.031085072085261345, - 0.011018168181180954, - 0.012601696886122227, - 0.01534293219447136, - 0.0020542629063129425, - 0.003739257575944066, - -0.008709409274160862, - -0.031404439359903336, - -0.011523832567036152, - -0.008283586241304874, - 0.0031404439359903336, - 0.016513945534825325, - -0.011969615705311298, - -0.021557284519076347, - -0.012794648297131062, - 0.030126972123980522, - 0.010871791280806065, - -0.016008280217647552, - -0.0015660636126995087, - 0.030499566346406937, - 0.014105384238064289, - -0.028663204982876778, - -0.0031138299964368343, - 0.015023564919829369, - -0.013513224199414253, - 0.0024068974889814854, - 0.010086680762469769, - 0.011716783978044987, - -0.008449923247098923, - 0.04535014182329178, - 0.019175337627530098, - 0.004677398595958948, - -0.03962814435362816, - -0.00922838132828474, - -0.03590219467878342, - 0.0016899846959859133, - 0.021850038319826126, - 0.013799323700368404, - 0.002330382354557514, - -0.010652226395905018, - -0.0003214463940821588, - -0.011397416703402996, - 0.005129835568368435, - 0.008463230915367603, - 0.0333738699555397, - -0.009374757297337055, - -0.028130926191806793, - 0.02868981845676899, - -0.016061509028077126, - 0.014012235216796398, - -0.001398894819431007, - -0.04029349237680435, - 0.019987063482403755, - -0.008256972767412663, - 0.015329624526202679, - -0.032176245003938675, - 0.004647457972168922, - -0.013865858316421509, - 0.002225590171292424, - -0.01358641218394041, - -0.028210768476128578, - 0.012442013248801231, - -0.022714991122484207, - -0.018376920372247696, - -0.00418171426281333, - -0.0263344869017601, - -0.04295488819479942, - 0.003080562688410282, - 0.010352819226682186, - 0.03483763709664345, - 0.0313245989382267, - 0.003968802746385336, - 0.01852329634130001, - -0.014318295754492283, - -0.02451143227517605, - -0.024644501507282257, - -0.025429612025618553, - 0.019800765439867973, - 0.013593065552413464, - 0.01033951248973608, - -0.009474559687077999, - -0.032176245003938675, - -0.012408745475113392, - 0.005738629028201103, - -0.012807955034077168, - 0.005831778049468994, - 0.0011643595062196255, - 0.0057020350359380245, - -0.0041051991283893585, - -0.009474559687077999, - -0.008582993410527706, - -0.014704197645187378, - 0.047931693494319916, - 0.040479790419340134, - -0.021051621064543724, - -0.0039089214988052845, - -0.029062414541840553, - 0.005914946552366018, - 0.02319404110312462, - -0.009833848103880882, - -0.007046038750559092, - 0.0032219490967690945, - -0.03348032757639885, - 0.01659378595650196, - -0.000623348169028759, - 0.012129299342632294, - 0.014544514007866383, - 0.0018430148484185338, - 0.0059049660339951515, - 0.006786552723497152, - 0.0032918108627200127, - -0.000539763830602169, - -0.01695307530462742, - 0.01505017839372158, - -0.0028360472060739994, - 0.01307409442961216, - -0.032309312373399734, - -0.0458558052778244, - 0.018337000161409378, - 0.0022921250201761723, - -0.009900382719933987, - 0.027066368609666824, - 0.0010271314531564713, - 0.04183709993958473, - 0.001394736347720027, - 0.0023603232111781836, - -0.00968081783503294, - -0.014131997711956501, - -0.020239895209670067, - -0.018416840583086014, - 0.011297614313662052, - 0.035715896636247635, - 0.018536603078246117, - -0.004906943533569574, - 0.00709261279553175, - 0.015542536042630672, - 0.0036494354717433453, - 0.022369010373950005, - 0.0029691169038414955, - -0.0222492478787899, - -0.029568077996373177, - -0.002526660216972232, - -0.0034032566472887993, - 0.013386808335781097, - -0.010346165858209133, - 0.03143105283379555, - 0.018177315592765808, - -0.03198994696140289, - -0.039867669343948364, - -0.0036427818704396486, - 0.0034198903013020754, - -0.024431589990854263, - -0.014664276503026485, - 0.008157170377671719, - -0.03135121241211891, - 0.0031254736240953207, - 0.008410003036260605, - -0.16830651462078094, - 0.013453342951834202, - 0.010026798583567142, - -0.029594693332910538, - 0.016167962923645973, - 0.006314155645668507, - 0.030286654829978943, - 0.011251039803028107, - -0.009035429917275906, - -0.0034564845263957977, - 0.028290610760450363, - -0.0029607999604195356, - -0.011889774352312088, - -0.012049457989633083, - -0.011270999908447266, - 0.0022488771937787533, - -0.03055279515683651, - 0.024644501507282257, - 0.02006690576672554, - 0.039255548268556595, - 0.008496497757732868, - -0.022914595901966095, - 0.01659378595650196, - 0.006267581135034561, - -0.014464671723544598, - 0.019281793385744095, - -0.027864787727594376, - 0.03289481997489929, - -0.0048304288648068905, - -0.01292771752923727, - -0.01618127152323723, - 0.007465207949280739, - 0.0279180146753788, - 0.0037093167193233967, - -0.011670209467411041, - -0.005712015088647604, - -0.0012575082946568727, - -0.0014122017892077565, - -0.011410723440349102, - 0.01791117712855339, - 0.018443455919623375, - 0.020093519240617752, - 0.008716062642633915, - 0.006240967195481062, - -0.01352653093636036, - 0.03257545456290245, - 0.023500101640820503, - -0.02469772845506668, - -0.009813887067139149, - -0.01627441868185997, - -0.006859741173684597, - -0.014025541953742504, - 0.020173361524939537, - 0.0027046408504247665, - -0.014477979391813278, - 0.018030939623713493, - -0.014637663029134274, - 0.020798787474632263, - -0.004963498562574387, - -0.012402092106640339, - -0.0007464376394636929, - -0.008975548669695854, - 0.01958785392343998, - -0.01707283779978752, - -0.005439222324639559, - -0.02778494544327259, - -0.019188644364476204, - 0.03379969298839569, - -0.01572883315384388, - -0.01238213200122118, - 0.01427837461233139, - -0.025815514847636223, - -0.00913523230701685, - -0.0069795036688447, - 0.011903081089258194, - 0.0055057574063539505, - -0.0075383963994681835, - 0.0023569962941110134, - -0.0014845584519207478, - -0.014092077501118183, - -0.0227016843855381, - 0.058390967547893524, - 0.009002162143588066, - -0.022581921890378, - -0.0013764393515884876, - -0.022848060354590416, - -0.017738185822963715, - 0.02644094079732895, - -0.0020143419969826937, - 0.005608886014670134, - 0.010618958622217178, - -0.02131775952875614, - -0.009288262575864792, - -0.023779548704624176, - 0.011923041194677353, - -0.0071591478772461414, - -0.006523740012198687, - 0.006946236360818148, - -0.01260835025459528, - -0.004407932516187429, - 0.008596300147473812, - -0.002157391980290413, - -0.03457149863243103, - 0.008210398256778717, - -0.008197091519832611, - -6.767839659005404e-05, - -0.012076071463525295, - 0.02431182749569416, - 0.03409244865179062, - 0.009168500080704689, - -0.01988060772418976, - 0.002674700226634741, - 0.012249062769114971, - 0.03438520058989525, - -0.011796625331044197, - 0.01341342180967331, - -0.012488587759435177, - 0.0003212384763173759, - 0.0015386180020868778, - 0.013759402558207512, - 0.04827767238020897, - 0.0007202395354397595, - -0.004674071911722422, - 0.01347330305725336, - -0.010399393737316132, - -0.028290610760450363, - -0.08250319212675095, - 0.009960263967514038, - 0.018962426111102104, - 0.016766777262091637, - -0.0011211119126528502, - 0.02142421528697014, - 0.002503372961655259, - 0.0032918108627200127, - 0.020878629758954048, - 0.05998780205845833, - -0.023713013157248497, - -0.026068346574902534, - -0.014371523633599281, - -0.0022039662580937147, - -0.0022754911333322525, - -0.014344909228384495, - 0.00026613930822350085, - -0.0403999499976635, - -0.024484816938638687, - 0.028290610760450363, - -0.004860369488596916, - -0.012867836281657219, - -0.009527787566184998, - 0.009561055339872837, - -0.023726319894194603, - -0.008962241932749748, - -0.03824422135949135, - 0.01450459286570549, - 0.014105384238064289, - 0.013466649688780308, - 0.012754727154970169, - -0.02440497651696205, - 0.00979392696171999, - -0.012388785369694233, - -0.022182712331414223, - -0.021504057571291924, - -0.017059531062841415, - -0.003361672395840287, - 0.021756889298558235, - -0.013539837673306465, - -0.0011602011509239674, - 0.0014546177117154002, - -0.01022640336304903, - -0.013233778066933155, - 0.0038490400183945894, - -0.009487866424024105, - 0.0021607186645269394, - 0.011796625331044197, - -0.0019810746889561415, - -0.001398894819431007, - -0.017578503116965294, - -0.017126064747571945, - -0.010851831175386906, - 0.02868981845676899, - 0.01138410996645689, - 0.01125769317150116, - 0.010539117269217968, - 0.0011161217698827386, - -0.009434638544917107, - 0.0005634668632410467, - -0.027678489685058594, - 0.024138836190104485, - -0.02165043354034424, - 0.03188348934054375, - -0.01634095422923565, - 0.0025549374986439943, - -0.020319737493991852, - -0.01099820714443922, - 0.02367309294641018, - -0.011563753709197044, - -0.02653408981859684, - 0.008549725636839867, - 0.0020442826207727194, - -0.0006125362706370652, - -0.02601511962711811, - 0.002834383863955736, - -0.0558360293507576, - -0.013366847299039364, - 0.014025541953742504, - 0.006793206091970205, - -0.008230358362197876, - -0.036514315754175186, - 0.031723808497190475, - -0.010685494169592857, - 0.0351836197078228, - 0.031111687421798706, - -0.011251039803028107, - -0.02887611649930477, - 0.017245827242732048, - -0.011430683545768261, - -0.006344096269458532, - 0.020506035536527634, - 0.02778494544327259, - -0.004870349541306496, - -0.03175042197108269, - 0.00641728425398469, - 0.02004029043018818, - -0.008024100214242935, - -0.026228031143546104, - 0.0008574676467105746, - -0.026720387861132622, - 0.0008899033418856561, - -0.05336093530058861, - 0.02688007242977619, - 0.026800230145454407, - -0.008303547278046608, - -0.017605116590857506, - -0.0013847561785951257, - 0.011776665225625038, - 0.021796811372041702, - 0.024790877476334572, - -0.007678119465708733, - -0.023526716977357864, - 0.0002168619685107842, - -0.03198994696140289, - 0.00047073393943719566, - -0.02081209421157837, - -0.03350694105029106, - -0.00046241708332672715, - 0.02483079954981804, - 0.005885005928575993, - -0.01656717248260975, - -0.012209141626954079, - 0.019281793385744095, - 0.007857763208448887, - 0.01807085983455181, - -0.019853994250297546, - -0.000664932478684932, - -0.007252296432852745, - 0.002065906533971429, - 0.0028460274916142225, - -0.004906943533569574, - 0.004434546455740929, - 0.015941744670271873, - 0.006560334470123053, - 0.0419967845082283, - -0.0052163307555019855, - -0.012887796387076378, - 0.018736207857728004, - 0.03938861936330795, - 0.01598166674375534, - 0.049581754952669144, - -0.009254994802176952, - -0.019933834671974182, - 0.0016118062194436789, - -0.023726319894194603, - 0.007771268021315336, - -0.004041990730911493, - 0.03686029464006424, - -0.0017881236271932721, - -0.003399929963052273, - -0.027971243485808372, - 0.02948823757469654, - 0.008190437220036983, - 0.0012408746406435966, - -0.01258839014917612, - -0.005096568260341883, - -0.004504408221691847, - 0.01945478469133377, - 0.012694845907390118, - 0.038031309843063354, - -0.01890919916331768, - 0.04228954017162323, - -0.009607629850506783, - 0.01961446739733219, - -0.02000037021934986, - -0.0011535476660355926, - -0.022714991122484207, - -0.028583362698554993, - -0.005166429560631514, - -0.004817121662199497, - -0.0182704646140337, - -0.028902729973196983, - -0.0021124808117747307, - 0.018217235803604126, - 0.024298520758748055, - 0.0017565195448696613, - -0.02058587595820427, - -0.002184005919843912, - 0.036487702280282974, - -0.014611048623919487, - 0.01330031268298626, - 0.03041972406208515, - 0.021011698991060257, - 0.0009198440238833427, - 0.006354076322168112, - 0.020253201946616173, - 0.001744875917211175, - -0.024724343791604042, - 0.00574195571243763, - 0.0032801672350615263, - -0.004950191359966993, - -0.0019611141178756952, - 0.022262554615736008, - -0.010499196127057076, - -0.004441199824213982, - 0.0037525645457208157, - 0.008802558295428753, - 0.010984900407493114, - -0.01022640336304903, - 0.02660062536597252, - 0.04779862239956856, - 0.01352653093636036, - -0.0031088399700820446, - -0.015369545668363571, - -0.0365409292280674, - 0.000239733315538615, - 0.02090524323284626, - -0.012282329611480236, - -0.035077162086963654, - 0.011843199841678143, - 0.016061509028077126, - -0.002373630180954933, - 0.012262369506061077, - 0.011982923373579979, - 0.017006302252411842, - 0.0005896649090573192, - -0.0011285970686003566, - -0.009933650493621826, - -0.0022172732278704643, - -0.024418283253908157, - 0.03475779667496681, - 0.016647014766931534, - 0.016806697472929955, - 0.012481934390962124, - 0.006048016250133514, - 0.012016190215945244, - -0.02022658847272396, - 0.021530671045184135, - -0.008775943890213966, - -0.0003969218523707241, - -0.015702219679951668, - 0.008895707316696644, - -0.0006221006624400616, - -0.008024100214242935, - -0.01977415196597576, - -0.023846082389354706, - 0.01614134944975376, - 0.02106492780148983, - -0.005196370184421539, - 0.0005597242852672935, - 0.14201194047927856, - 0.024431589990854263, - -0.004028683993965387, - 0.016647014766931534, - -0.014637663029134274, - 0.021051621064543724, - 0.0071591478772461414, - -0.012135952711105347, - 0.0034132366999983788, - -0.060253944247961044, - 0.00864952802658081, - -0.022568615153431892, - 0.02290128916501999, - -0.021331066265702248, - -0.00027882252470590174, - 0.01823054440319538, - 0.0028011163230985403, - 0.0223557036370039, - -0.047772008925676346, - -0.014331602491438389, - 0.030792320147156715, - -0.01888258568942547, - 0.012501894496381283, - 0.05737963691353798, - -0.0030007208697497845, - -0.017711572349071503, - 0.016008280217647552, - 0.009926997125148773, - -0.0019478071480989456, - -0.02145082876086235, - -0.001911213039420545, - 0.004580922890454531, - -0.06387344002723694, - -0.022462159395217896, - 0.012555122375488281, - -0.042502451688051224, - 0.002132441382855177, - -0.02415214292705059, - 0.03443842753767967, - 0.006972850300371647, - 0.004850388970226049, - 0.02980760484933853, - -0.020253201946616173, - -0.008143863640725613, - 0.012262369506061077, - -0.0036461087875068188, - 0.001321548130363226, - -0.014025541953742504, - -0.050087422132492065 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 27, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 493 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000028.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000028.json deleted file mode 100644 index 614a3fbabec15f2bd27cd50483f455c699522467..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000028.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000028", - "content": "Die Vergleichsergebnisse sind in 7.4 dargestellt und erl\u00e4utert. 55\n7 Ergebnisse und Interpretation\n\n## 7 Ergebnisse und Interpretation\n\nIn diesem Kapitel werden die Ergebnisse der Auswertung und Validierung der Verlade- ger\u00e4usche pr\u00e4sentiert und interpretiert. Die vorgestellten Ergebnisse dienen als Grund- lage f\u00fcr eine Schallimmissionsprognose und dient zur Entwicklung geeigneter L\u00f6sungs- ans\u00e4tze und Ma\u00dfnahmen, um den L\u00e4rmpegel effektiv in Speditionen zu verringern. Die Auswertung ist ein wesentlicher Schritt zur Gewinnung von Kennwerten. In diesem Kon- text wurden in Kapitel 7, die Vorgehensweise zur Auswertung beschrieben. ## 7.1 Verladeger\u00e4usche\n\nNachdem die Auswertung der Verladeger\u00e4usche abgeschlossen ist, k\u00f6nnen nun die Er- gebnisse dargestellt und interpretiert werden. Dabei werden die gemessenen Schallpe- gel und andere relevante Kenngr\u00f6\u00dfen der Verladeger\u00e4usche zusammenfassend darge- stellt. Die detaillierten Ergebnisse, einschlie\u00dflich aller relevanten Daten, sind im Anhang 4: Messergebnisse der Beladevorg\u00e4nge \u00fcbersichtlich aufgef\u00fchrt. Da die Verladevorg\u00e4nge nicht station\u00e4r sind, wurden sie als Fl\u00e4chenschallquelle model- liert, entsprechend der H\u00f6he und L\u00e4nge des jeweiligen Anh\u00e4ngers. Wenn der genaue Anh\u00e4ngertyp nicht bekannt ist, empfiehlt es sich, eine durchschnittliche L\u00e4nge und H\u00f6he zu w\u00e4hlen. Die Ergebnisse des allgemeinen Beladevorgangs f\u00fcr die verschiedenen Flur- f\u00f6rderger\u00e4te sind in Tabelle 11 dargestellt. Analog k\u00f6nnen die Kennwerte eines Belade- vorgangs f\u00fcr einen Entladevorgang verwendet werden. | Anzahl Max-Pegel Schallleistungspegel Flurf\u00f6rderger\u00e4t | Einzelereignisse LAFmax LWA,5s LWAmax LWA,1h Kl LWAT,1h E [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] Gabelstapler 297 69,3 100,7 108,8 72,1 5,7 77,8 STABW [dB] 6,5 4,9 6,5 4,9 2,9 - Gabelhubwagen 99 68,6 100,7 108,1 72,1 6,2 79,5 STABW [dB] 6,4 5,1 6,4 5,1 2,7 - |\n\nTabelle 11: Emissionsans\u00e4tze f\u00fcr die verschiedenen Flurf\u00f6rderger\u00e4te Mit: LAFmax: Maximal-Pegel [dB(A)], LWA,5s: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWAmax: maximale Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWA,1h: st\u00fcndliche Schall- leistungspegel [dB(A)], KI: Impulszuschlag [dB(A)], LWAT,1h: impulsbehaftete st\u00fcndliche Schallleis- tungspegel [dB(A)], STABW: Standardabweichung [dB]\nTabelle 11: Emissionsans\u00e4tze f\u00fcr die verschiedenen Flurf\u00f6rderger\u00e4te\n56\n7 Ergebnisse und Interpretation\nDas Ziel war es, einen Kennwert des Schallleistungspegels zu ermitteln, der die L\u00e4rmbe- lastung der Flurf\u00f6rderger\u00e4te repr\u00e4sentiert, welche f\u00fcr eine Schallimmissionsprognose verwendet werden kann. Durch das Zusammenf\u00fchren der Messergebnisse konnte ein durchschnittlicher Kennwert f\u00fcr die Emissionen der Flurf\u00f6rderger\u00e4te ermittelt werden, wenn der genaue Anh\u00e4ngertyp nicht bekannt ist. Es ist anzumerken, dass m\u00f6glicher- weise nicht alle spezifischen Unterschiede zwischen den Flurf\u00f6rderger\u00e4ten erfasst wer- den k\u00f6nnen. Die Verwendung dieser Kennwerte erm\u00f6glicht eine vereinfachte Bewer- tung und Vergleichbarkeit der L\u00e4rmbelastung verschiedener Flurf\u00f6rderger\u00e4te. Auf diese Weise k\u00f6nnen zudem Ma\u00dfnahmen zur L\u00e4rmminderung gezielt entwickelt und umge- setzt werden, um die Gesamtemissionen zu reduzieren. Es sollte bei Bedarf noch zus\u00e4tz- liche spezifische Untersuchungen und Messungen f\u00fcr bestimmte Situationen der Flur- f\u00f6rderger\u00e4te durchgef\u00fchrt werden, um eine detailliertere und pr\u00e4zisere Bewertung vor- zunehmen. Nachdem nun die Ergebnisse der Verladeger\u00e4usche vorliegen, gilt es, diese zu interpretieren und daraus Schlussfolgerungen zu ziehen. Im Allgemeinen l\u00e4sst sich aus den Ergebnissen schlie\u00dfen, dass die Verladung mit einem Gabelhubwagen lauter vonstatten ist, als mit einem Gabelstapler. Dies deutet darauf hin, dass der Gabelhubwagen eine etwas h\u00f6here Ger\u00e4uschentwicklung aufweist und so- mit eine h\u00f6here L\u00e4rmbelastung verursacht. Die Kennwerte des Schallleistungspegels der Flurf\u00f6rderger\u00e4te sind identisch, dennoch zeigt sich ein Unterschied in der Impulshaf- tigkeit der Ger\u00e4uschentwicklung. Es Unterscheidet sich im impulsbehafteten Schallleis- tungspegel, der beim Gabelhubwagen um 1,7 dB(A) h\u00f6her ist als bei einem Gabelstapler. Dies bedeutet, dass es zu kurzzeitigen hohen Schallsignalen kommt und somit den im- pulsbehafteten Schallleistungspegel erh\u00f6hen. Dies hat M\u00f6glicherweise die Begr\u00fcndung, dass der Gabelhubwagen durch bestimmte Vorg\u00e4nge, wie beispielsweise das \u00dcberfah- ren der \u00dcberladebr\u00fccke in den Anh\u00e4nger, impulsbehaftete Schallereignisse hervorruft.", - "embedding": [ - -0.0007852065027691424, - 0.02467363514006138, - 0.005425668321549892, - -0.03029581345617771, - -0.0025712805800139904, - 0.0051592146046459675, - -0.012903032824397087, - -0.017612606287002563, - -0.032081056386232376, - -0.031734663993120193, - -0.002562953857704997, - 0.03074878640472889, - -0.023274753242731094, - 0.004982688929885626, - 0.010451655834913254, - 0.003966832999140024, - 0.03144156560301781, - 0.00019109743880108, - 0.01117108203470707, - -0.009832150302827358, - -0.01770586520433426, - -0.00506262481212616, - -0.013269406743347645, - -0.006714639253914356, - -0.02211567759513855, - 0.016799921169877052, - 0.04044770821928978, - -0.015480974689126015, - -0.01412205956876278, - 0.012243558652698994, - -0.007394096814095974, - -0.0057154372334480286, - -0.014455126598477364, - -0.0014555046800523996, - -0.011397567577660084, - -0.028510572388768196, - -0.00809353869408369, - -0.01749270223081112, - 0.020889990031719208, - -0.0057154372334480286, - 0.01326274499297142, - -0.005189190618693829, - 0.0013455924345180392, - -0.03703709691762924, - -0.006361587904393673, - 0.025819387286901474, - 0.006424870807677507, - -0.0049460516311228275, - -0.024527085945010185, - 0.020383726805448532, - 0.012323495000600815, - 0.002203240990638733, - -0.01107116136699915, - 0.010671480558812618, - 0.005025987513363361, - 0.004279916640371084, - 0.004319884814321995, - 0.004010132048279047, - -0.0063482653349637985, - -0.014241963624954224, - -0.0305356215685606, - -6.264529929467244e-06, - -0.027271561324596405, - 0.010904627852141857, - -0.01422864105552435, - -0.01853187195956707, - 0.006887834519147873, - 0.0059286002069711685, - -0.0038336061406880617, - 0.0006969436071813107, - 0.024580376222729683, - 0.036317672580480576, - -0.007474033161997795, - 0.00798695720732212, - 0.03237415477633476, - -0.012350140139460564, - 0.010897966101765633, - 0.0009250948205590248, - -0.004523055627942085, - 0.01999736949801445, - 0.028537217527627945, - -0.017772478982806206, - -0.02696513943374157, - 0.0421796590089798, - 0.01598723605275154, - -0.00914603192359209, - -0.013642442412674427, - 0.005329078994691372, - -0.03810291364789009, - -0.0019700939301401377, - 0.002597925951704383, - 0.038635823875665665, - 0.006947786547243595, - -0.008613123558461666, - 0.030029360204935074, - -0.017599282786250114, - -0.0037603313103318214, - 0.023754369467496872, - 0.0016819905722513795, - -0.03280048072338104, - -0.017732510343194008, - -0.016107141971588135, - -0.007980295456945896, - 0.009032788686454296, - -0.030615558847784996, - 0.0015787396114319563, - -0.00011626134801190346, - 0.004153350833803415, - 0.001833536196500063, - -0.03224092721939087, - -0.02968296967446804, - 0.016999762505292892, - -0.009692261926829815, - 0.005185859743505716, - 0.004766195081174374, - -0.007340806070715189, - 0.029816197231411934, - -0.006804567761719227, - -0.00021732649474870414, - -0.029629679396748543, - 0.021103153005242348, - 0.003810291411355138, - 0.04098061844706535, - -0.014774871058762074, - 0.023101557046175003, - 0.01982417330145836, - 0.005019326228648424, - 0.005302433390170336, - -0.007767132483422756, - -0.019424492493271828, - -0.03661077097058296, - -0.007074352353811264, - 0.01644020900130272, - -0.011124452576041222, - -0.009452453814446926, - 0.0358380563557148, - -0.004952712915837765, - 0.00415002042427659, - -0.005202513188123703, - -0.028377344831824303, - -0.010877982713282108, - 0.0062983050011098385, - -0.02779114618897438, - -0.05222497507929802, - -0.009185999631881714, - 0.04654950648546219, - 0.024500440806150436, - 0.027311529964208603, - -0.02571280673146248, - -0.004619645420461893, - -0.01767922006547451, - -0.03637096285820007, - 0.023954210802912712, - 0.005615517031401396, - -0.009325888007879257, - -0.0028427306097000837, - 0.0026578782126307487, - 0.01199708878993988, - -0.024913443252444267, - 0.0011932140914723277, - 0.011877184733748436, - 0.01325608417391777, - 0.01601388305425644, - 0.012043718248605728, - 0.024913443252444267, - 0.009638971649110317, - 0.01771918684244156, - -0.024300599470734596, - -0.0022115677129477262, - -0.028377344831824303, - -0.019224653020501137, - 0.006934463977813721, - -0.018998166546225548, - 0.025126608088612556, - -0.01829206384718418, - -0.009312565438449383, - 0.014654967002570629, - -0.002771120984107256, - -0.042046431452035904, - -0.039515119045972824, - -0.0241940189152956, - -0.003523853374645114, - 0.022581972181797028, - -0.016267012804746628, - -0.010258477181196213, - -0.009099402464926243, - 0.011510810814797878, - 0.010804707184433937, - -0.01851854845881462, - -0.005508935544639826, - 0.005299102980643511, - 0.026165777817368507, - 0.0055222581140697, - -0.026019228622317314, - -0.6241417527198792, - -0.0055822101421654224, - 0.002597925951704383, - 0.008213442750275135, - -0.0019934086594730616, - 0.029736259952187538, - 0.0069278026930987835, - 0.00611511804163456, - 0.0034339253325015306, - 0.04098061844706535, - 0.011057838797569275, - 0.010917950421571732, - 0.0024830177426338196, - 0.002336468081921339, - -0.0024047468323260546, - -0.01105117704719305, - -0.01642688550055027, - -0.005322417709976435, - 0.032320864498615265, - 0.01855851709842682, - -0.033786360174417496, - 0.02423398569226265, - 0.0012947996146976948, - 0.005845333449542522, - 0.004669605288654566, - 0.008772996254265308, - 0.019517751410603523, - -0.02148951031267643, - 0.0018002295400947332, - -0.020063981413841248, - -0.017132988199591637, - 0.007007739041000605, - -0.017346151173114777, - 0.028057601302862167, - 0.0378364622592926, - 0.009365856647491455, - -0.0002308573602931574, - 0.01159740798175335, - 0.015028002671897411, - 0.01620040088891983, - -0.005692122504115105, - -0.008906222879886627, - -0.014215318486094475, - -0.004959374200552702, - -0.010105266235768795, - 0.009838812053203583, - 0.04782848432660103, - 0.00820012018084526, - 0.0042133028618991375, - -0.030162587761878967, - -0.001661173882894218, - 0.005125907715409994, - 0.009299242869019508, - 0.0168132446706295, - 0.029629679396748543, - -0.011497488245368004, - 0.03751671686768532, - -0.02378101460635662, - -0.024567054584622383, - 0.025819387286901474, - 0.019011490046977997, - 0.007047706749290228, - -0.001331437029875815, - -0.020676827058196068, - -0.034878820180892944, - 0.02379433810710907, - -0.008759673684835434, - -0.03554495796561241, - 0.01665337197482586, - -0.008000279776751995, - -0.012789789587259293, - 0.010031990706920624, - -0.015627523884177208, - -0.007374112959951162, - 0.04332541301846504, - 0.02148951031267643, - -0.0019850819371640682, - -0.009932070970535278, - 0.0040001398883759975, - 0.0231948159635067, - 0.00769385788589716, - 0.00041487711132504046, - -0.018824972212314606, - 0.0034805547911673784, - 0.024380536749958992, - -0.024993380531668663, - -0.008679737336933613, - 0.015081293880939484, - 0.007700519170612097, - 0.003110849764198065, - 0.022182291373610497, - 0.03847594931721687, - -0.010498285293579102, - -0.025153253227472305, - -0.013462585397064686, - 0.027631273493170738, - -0.012183606624603271, - 0.02591264620423317, - -0.017372798174619675, - -0.014988034963607788, - -0.030269168317317963, - -0.011823893524706364, - 0.008373315446078777, - -0.020317113026976585, - 0.030642203986644745, - 0.0010674811201170087, - -0.013189470395445824, - -0.0029742922633886337, - 0.009605664759874344, - -0.009545712731778622, - 0.004006801173090935, - -0.0008917880477383733, - 0.0004742047458421439, - -0.021183088421821594, - -0.008886239491403103, - -0.02632565051317215, - 0.03551831096410751, - -0.007494017481803894, - 0.012663223780691624, - -0.007820423692464828, - 0.013815636746585369, - 0.0034439172595739365, - 0.031095175072550774, - -0.01914471574127674, - -0.02294168435037136, - 0.029309934005141258, - 0.02403414621949196, - -0.0024347228463739157, - -0.005199182778596878, - -0.013948864303529263, - 0.013762346468865871, - 0.013022936880588531, - 0.01642688550055027, - -0.007287515327334404, - 0.013622458092868328, - 0.013329358771443367, - 0.03415939584374428, - -0.005272457376122475, - 0.008186797611415386, - -0.037143681198358536, - -0.011157759465277195, - 0.0055289193987846375, - 0.0036937177646905184, - -0.02588600106537342, - -0.0179323498159647, - -0.03669070824980736, - -0.012923016212880611, - 0.01685321144759655, - 0.003793637966737151, - 0.011750618927180767, - -0.009225968271493912, - -0.029576387256383896, - -0.010771401226520538, - 0.01702640764415264, - 0.006754607427865267, - 0.01725289225578308, - -0.016746630892157555, - -0.007220902014523745, - 0.0016520144417881966, - -0.02376769296824932, - 0.012283527292311192, - 0.016879858449101448, - -0.04068751633167267, - 0.0027261569630354643, - -0.019291264936327934, - -0.0178790595382452, - 0.003590466920286417, - 0.012749820947647095, - -0.03186789155006409, - -0.02755133807659149, - 0.0020217192359268665, - -0.011104468256235123, - -0.011404229328036308, - 0.01979752816259861, - -0.019890787079930305, - 0.012356801889836788, - -0.013908895663917065, - -0.009106063283979893, - -0.006531452294439077, - -0.018585162237286568, - 0.016973117366433144, - 0.01914471574127674, - -0.010451655834913254, - 0.005535580683499575, - 0.023208139464259148, - 0.01729286089539528, - 0.010318429209291935, - 0.008839610032737255, - -0.02170267328619957, - 0.03530514985322952, - -0.01401547808200121, - 0.01602720469236374, - -0.012696530669927597, - 0.002354786731302738, - -0.05243813619017601, - 0.010591544210910797, - 0.007407419849187136, - -0.002126635517925024, - -0.00253131240606308, - 0.017319506034255028, - 0.027005108073353767, - -0.0005054298089817166, - 0.005022657103836536, - -0.007500678766518831, - 0.013762346468865871, - -0.006334942765533924, - 0.013609135523438454, - -0.015840686857700348, - 0.0400480292737484, - 0.024487117305397987, - 0.03458572179079056, - -0.016080494970083237, - -0.024487117305397987, - 0.009559035301208496, - -0.013629119843244553, - 0.03471894934773445, - -0.01127766352146864, - 0.012463383376598358, - 0.014974711462855339, - -0.022208936512470245, - -0.006441524252295494, - 0.000980050885118544, - 0.04239282384514809, - 0.016120463609695435, - -0.024087436497211456, - -0.005765397101640701, - -0.012929677963256836, - 0.012589949183166027, - -0.0037303552962839603, - -0.006381572224199772, - -0.0064748311415314674, - 0.019051456823945045, - 0.021782610565423965, - 0.01462832186371088, - 0.004589669406414032, - 0.006135102361440659, - 0.023274753242731094, - -0.0025696151424199343, - 0.029523096978664398, - 0.0011507479939609766, - 0.010844675824046135, - 0.013216115534305573, - 0.020943280309438705, - -0.013842282816767693, - 0.009732230566442013, - -0.01336932647973299, - 0.006777922157198191, - 0.027311529964208603, - -0.016386916860938072, - -0.005605524871498346, - 0.0008110192138701677, - 0.007913682609796524, - 0.01075807772576809, - -0.01702640764415264, - 0.010591544210910797, - -0.0274181105196476, - 0.030402395874261856, - -0.002198245143517852, - 0.014321899972856045, - 0.011970443651080132, - 0.014654967002570629, - 0.03144156560301781, - 0.010218508541584015, - -0.008026924915611744, - -0.00874635111540556, - 0.00979884434491396, - -0.031894538551568985, - -0.017319506034255028, - -0.009652294218540192, - -0.014175349846482277, - 0.0042133028618991375, - -0.004453111439943314, - 0.005428999196738005, - 0.0008031088509596884, - 0.013169486075639725, - -0.0041600121185183525, - -0.007360790390521288, - 0.02715165726840496, - 0.03972828388214111, - 0.014868129976093769, - 0.0018268749117851257, - -0.019744237884879112, - 0.009725568816065788, - 0.02695181593298912, - -0.012423415668308735, - -0.017199601978063583, - -0.006311628036201, - 0.010638173669576645, - -0.03455907851457596, - -0.0017252892721444368, - -0.01662672683596611, - 0.015614201314747334, - -0.00048586211050860584, - -0.009792182594537735, - 0.01210367027670145, - 0.02442050352692604, - 0.02190251462161541, - 0.0242073405534029, - -0.005658815614879131, - 0.012390108779072762, - -0.005955245811492205, - -0.024180695414543152, - -0.020117273554205894, - -0.03133498504757881, - 0.020503630861639977, - -0.0023664440959692, - -0.024487117305397987, - -0.026592103764414787, - 0.013988832011818886, - -0.005775389261543751, - -0.027444757521152496, - 0.021422896534204483, - -0.005538911558687687, - 0.002484682947397232, - -0.008819625712931156, - 0.0010533257154747844, - 0.0028777027036994696, - 0.009858796373009682, - 0.03114846721291542, - 0.005305764265358448, - -0.015520942397415638, - -0.028537217527627945, - 0.002299830550327897, - 0.011111130006611347, - 0.0007498180493712425, - 0.027871083468198776, - -0.0014538393588736653, - 0.023967532441020012, - -0.011797248385846615, - -0.023234784603118896, - -0.012923016212880611, - -0.03096194937825203, - 0.019451137632131577, - 0.028324054554104805, - 0.004483087453991175, - -0.01769254170358181, - 0.03261396288871765, - -0.02045034058392048, - 0.008233427070081234, - -0.015427683480083942, - 0.01422864105552435, - -0.010671480558812618, - 0.03351990506052971, - -0.003963502589613199, - -0.0189315527677536, - 0.000776879780460149, - -0.011930475942790508, - 0.02402082271873951, - -0.020463664084672928, - -0.014068768359720707, - 0.03725026175379753, - 0.024953411892056465, - -0.0032057741191238165, - -0.02672533132135868, - -0.00990542583167553, - 0.03772987797856331, - 0.01871838979423046, - 0.02587267756462097, - -0.0210765078663826, - -0.0026545473374426365, - 0.009086079895496368, - -0.010691464878618717, - 0.01618707738816738, - -0.0043698446825146675, - -0.004566354677081108, - 0.022875070571899414, - 0.01873171329498291, - -0.001911807106807828, - 0.016706662252545357, - 0.010478301905095577, - 0.012423415668308735, - 0.027098366990685463, - -0.0039501795545220375, - -0.021729320287704468, - 0.015121261589229107, - -0.0305622685700655, - 0.005019326228648424, - -0.0027111689560115337, - 0.0034539091866463423, - -0.02611248753964901, - 0.0037170324940234423, - -0.026285681873559952, - -0.002844395814463496, - -0.010444995015859604, - -0.01180391013622284, - -0.016946470364928246, - 0.01202373392879963, - -0.010351736098527908, - -0.033573199063539505, - -0.030162587761878967, - -0.039035502821207047, - -0.012250220403075218, - -0.017732510343194008, - 0.01915803924202919, - -0.0028210810851305723, - -0.022262226790189743, - -0.02276849001646042, - -0.014868129976093769, - 0.017625927925109863, - -0.00010824691707966849, - 0.0242073405534029, - -0.014508417807519436, - -0.01170398946851492, - 0.012643239460885525, - -0.030882012099027634, - -0.0043698446825146675, - -0.003843598300591111, - -0.013582490384578705, - -0.0078004393726587296, - 0.0041267056949436665, - -0.01978420652449131, - 0.0034672319889068604, - 0.006751277018338442, - -0.0051625450141727924, - -0.002346460008993745, - -0.0003332755877636373, - -0.001260660239495337, - 0.012816434726119041, - 0.02146286517381668, - 0.024806862697005272, - -0.0005512266070581973, - -0.004063422791659832, - 0.020290467888116837, - -0.029576387256383896, - 0.01789238303899765, - -0.041620105504989624, - 0.01296298485249281, - 0.006408217363059521, - 0.02167602814733982, - 0.006225030403584242, - -0.018705066293478012, - -0.0027894398663192987, - 0.007007739041000605, - 0.025233188644051552, - 0.008906222879886627, - -0.015867331996560097, - -0.0036770645529031754, - 0.010931272991001606, - -0.004619645420461893, - 0.01729286089539528, - -0.004906083457171917, - 0.01726621575653553, - 0.03413274884223938, - -0.0010833018459379673, - -0.018811648711562157, - -0.02696513943374157, - 0.03618444502353668, - -0.0029643001034855843, - -0.005305764265358448, - 0.037783168256282806, - -0.023048266768455505, - 0.00030683836666867137, - -0.02278181165456772, - -0.0004821151087526232, - 0.007467371877282858, - 0.01939784735441208, - -0.013749023899435997, - 0.004289908334612846, - -0.01750602386891842, - -0.010498285293579102, - -0.004516394343227148, - 0.00664136465638876, - -0.027684565633535385, - -0.025592900812625885, - -0.03032245859503746, - 0.004729557782411575, - -0.017093021422624588, - 0.008786318823695183, - 0.0089595140889287, - -0.0231814943253994, - -0.027071721851825714, - 0.023274753242731094, - -0.02065018005669117, - 0.01410873606801033, - -0.00864643044769764, - -0.0014113732613623142, - -0.029629679396748543, - -0.011717312037944794, - -0.01138424500823021, - -0.014694935642182827, - 0.014495094306766987, - -0.013289391063153744, - 0.014894776046276093, - 0.0033856304362416267, - 0.031308338046073914, - -0.013429278507828712, - 0.0002512577339075506, - 0.006448185537010431, - -0.005865317303687334, - 0.0019517751643434167, - -0.017212925478816032, - -0.012809773907065392, - -0.02992277778685093, - 0.03471894934773445, - 0.021649383008480072, - 0.004919406026601791, - 0.006624711211770773, - 0.013449262827634811, - 0.024700280278921127, - 0.050013404339551926, - -0.010444995015859604, - -0.0053690471686422825, - -0.00809353869408369, - -0.010145233944058418, - 0.01178392581641674, - -0.007620582822710276, - 0.015640847384929657, - 0.016986439004540443, - -0.023940887302160263, - 0.002759463619440794, - 0.026165777817368507, - -0.022262226790189743, - -0.014814839698374271, - -0.00927259773015976, - -0.0016861539334058762, - -0.03815620392560959, - 0.03522521257400513, - 0.020130595192313194, - -0.0073474678210914135, - -0.00798695720732212, - -0.011723973788321018, - -0.034212686121463776, - -0.02376769296824932, - 0.0077471486292779446, - -0.011797248385846615, - 0.014668289572000504, - -0.0055588954128324986, - -0.005485620815306902, - 0.008426605723798275, - -0.020157240331172943, - 0.015854010358452797, - -0.01430857740342617, - -0.007374112959951162, - -0.013349343091249466, - -0.031708020716905594, - -0.02339465729892254, - -0.010178540833294392, - -0.0252598337829113, - 0.014428481459617615, - 0.004249940626323223, - 0.009119386784732342, - 0.02949645183980465, - -0.013502554036676884, - 0.004303231369704008, - -0.0010683138389140368, - -0.002276515820994973, - 0.006941125262528658, - 0.004023454617708921, - 0.047109056264162064, - 0.00812018383294344, - -0.01999736949801445, - -0.01765257492661476, - -0.048787716776132584, - 0.025166574865579605, - -0.016320304945111275, - 0.017439410090446472, - 0.013122856616973877, - -0.02928328886628151, - 0.0016112136654555798, - 0.0005453979247249663, - 0.013249422423541546, - -0.020716793835163116, - -0.01578739657998085, - 0.033999525010585785, - 0.022475389763712883, - -0.003650419181212783, - -0.017732510343194008, - 0.0079070208594203, - -0.007447388023138046, - -0.0038702436722815037, - 0.0056854612194001675, - 0.002975957468152046, - -0.0023414641618728638, - -0.00567879993468523, - 0.0030026028398424387, - 0.039968091994524, - 0.010371719487011433, - 0.03288041800260544, - 0.011510810814797878, - -0.04063422605395317, - 0.0003220345824956894, - -0.022608617320656776, - -0.0231814943253994, - 0.010498285293579102, - -0.018705066293478012, - 0.03666406497359276, - 0.00205502612516284, - -0.011444197036325932, - 0.008053570985794067, - 0.0023697747383266687, - -0.0021249703131616116, - -0.008772996254265308, - 0.00752732390537858, - 0.021143121644854546, - -0.00579537358134985, - 0.008366653695702553, - 0.01400215458124876, - 0.00425660191103816, - 0.00023002469970379025, - -0.004749541636556387, - -0.0035638215485960245, - 3.7990503187756985e-05, - -0.007067691069096327, - 0.0035704828333109617, - 0.0007964475080370903, - 0.029309934005141258, - -0.025006702169775963, - -0.01685321144759655, - -0.009845473803579807, - -0.012396769598126411, - 0.00978552084416151, - -0.040714163333177567, - 0.028777025640010834, - -0.016866534948349, - -0.011430874466896057, - 0.00874635111540556, - 0.016493499279022217, - 0.03754336014389992, - -0.009652294218540192, - -0.022275550290942192, - -0.009432469494640827, - 0.02611248753964901, - -0.026498844847083092, - 0.023048266768455505, - 0.02041037194430828, - -0.005845333449542522, - -0.01180391013622284, - 0.0034339253325015306, - 0.0015021341387182474, - -0.005089270416647196, - 0.02275516651570797, - -0.01117774285376072, - -0.027244916185736656, - -0.005562226288020611, - -0.01105117704719305, - 0.01473490335047245, - -0.028270764276385307, - -0.017172956839203835, - 0.016280336305499077, - 0.007900359109044075, - 0.006571420468389988, - -0.00720757944509387, - 0.01020518597215414, - 0.003405614523217082, - 0.01433522254228592, - -0.01033175177872181, - 0.033999525010585785, - -0.024953411892056465, - 0.03258731961250305, - 0.009026127867400646, - -0.004872776567935944, - 0.00457634637132287, - -0.03647754713892937, - -0.03218763694167137, - 0.027045074850320816, - 0.006135102361440659, - -0.030056005343794823, - -0.007980295456945896, - -0.021156443282961845, - -0.046176470816135406, - -0.003010929562151432, - -0.0038935584016144276, - 0.012083686888217926, - 0.01433522254228592, - 0.022648585960268974, - -0.014095413498580456, - 0.00082392554031685, - 0.016147108748555183, - 0.007667212281376123, - -0.009365856647491455, - 0.034878820180892944, - 0.0062416838482022285, - -0.02591264620423317, - 0.005945253651589155, - -0.021982450038194656, - 0.027951018884778023, - 0.018425291404128075, - -0.019970722496509552, - -0.013276067562401295, - -0.003906880971044302, - -0.028803672641515732, - -0.01441515889018774, - -0.01829206384718418, - 0.008912884630262852, - 0.0060485047288239, - 0.017799124121665955, - -0.01557423360645771, - 0.04375173896551132, - 0.003334005130454898, - 0.022288871929049492, - -0.02061021327972412, - -0.021023215726017952, - 0.00595857622101903, - 7.077682676026598e-05, - 0.029603034257888794, - -0.008886239491403103, - -0.03719697147607803, - -0.007360790390521288, - 0.02800430916249752, - 0.008952852338552475, - 0.01874503493309021, - 0.027471402660012245, - -0.01135759986937046, - -0.003853590227663517, - -0.002694515511393547, - 0.017226247116923332, - 0.030162587761878967, - -0.004286577925086021, - 0.009612326510250568, - -0.008872915990650654, - -0.012789789587259293, - 0.0014530066400766373, - 0.009405824355781078, - -0.026045873761177063, - -0.009445792064070702, - 0.021356284618377686, - -0.013422617688775063, - -0.017772478982806206, - 0.02190251462161541, - -0.01917136088013649, - -0.008206781931221485, - -0.007287515327334404, - 0.018398644402623177, - 0.015893977135419846, - -0.035065338015556335, - 0.011424212716519833, - 0.01915803924202919, - -0.005379038862884045, - -0.023234784603118896, - 0.01729286089539528, - -0.013855605386197567, - 0.002597925951704383, - 0.006118448916822672, - -0.020743438974022865, - -0.0062450142577290535, - -0.0004284079768694937, - 0.027045074850320816, - -0.004393159411847591, - -0.01221025176346302, - -0.019237974658608437, - -0.015707459300756454, - -0.020570244640111923, - 0.029949422925710678, - 0.019531074911355972, - -0.014481771737337112, - 0.01644020900130272, - 0.007767132483422756, - -0.011710651218891144, - -0.008759673684835434, - -0.0200240146368742, - 0.004090067930519581, - -0.03679728880524635, - -0.015187875367701054, - 0.0015387715538963675, - -0.019531074911355972, - 0.006811229046434164, - -0.0054756286554038525, - -0.02063685841858387, - -0.04447116330265999, - -0.02023717761039734, - 0.18150842189788818, - -0.03749006986618042, - -0.01296964567154646, - -0.0002535475941840559, - -0.020343758165836334, - -0.03405281528830528, - 0.004376505967229605, - -0.01031176745891571, - -0.0003093363775406033, - 0.027737855911254883, - 0.01296298485249281, - 0.017319506034255028, - 0.01790570467710495, - 0.00851986464112997, - 0.011104468256235123, - -0.005465636495500803, - -0.046629440039396286, - -0.007753809913992882, - -0.00416667340323329, - 0.028297409415245056, - 0.024980057030916214, - -0.028777025640010834, - -0.015640847384929657, - -0.01855851709842682, - 0.04460439085960388, - 0.014255286194384098, - -0.008479896932840347, - 0.009952055290341377, - 0.02928328886628151, - 0.013016275130212307, - -0.02717830240726471, - -0.005399023182690144, - 0.01125767920166254, - -0.009645632468163967, - 0.00479950150474906, - 0.009006143547594547, - 0.014215318486094475, - -0.0231948159635067, - 0.01094459556043148, - 0.032773833721876144, - 0.01286306418478489, - -0.02507331594824791, - -0.02168935164809227, - -0.02821747213602066, - 0.00916601624339819, - 0.005668807774782181, - 0.0022248905152082443, - -0.004130036104470491, - 0.022035742178559303, - -0.01244339905679226, - -0.014188672415912151, - 0.018678421154618263, - 0.0034022838808596134, - 0.03682393580675125, - -0.012170284055173397, - -0.016533467918634415, - 0.006684663239866495, - -0.012683208100497723, - 0.021369606256484985, - 0.00799361802637577, - -0.031494855880737305, - 0.016799921169877052, - -0.012290188111364841, - 0.011510810814797878, - -0.020690148696303368, - 0.01252333540469408, - -0.015867331996560097, - 0.004709573462605476, - 0.00447975704446435, - -0.022621940821409225, - -0.005195851903408766, - -0.009185999631881714, - -0.027098366990685463, - 0.004786178935319185, - -0.02082337625324726, - -0.034186042845249176, - 0.0018551856046542525, - -0.002086667576804757, - 0.0378897525370121, - 0.02611248753964901, - 0.013975509442389011, - 0.006421539932489395, - -0.02021053247153759, - -0.023021621629595757, - 2.6749477910925634e-05, - -0.03410610556602478, - 0.01660008169710636, - 0.01191715244203806, - 0.018371999263763428, - -0.014401836320757866, - -0.02696513943374157, - 0.0015004688175395131, - 0.0009076087735593319, - -0.0168265663087368, - 0.023008298128843307, - -0.00914603192359209, - 0.018611807376146317, - 0.002962634898722172, - -0.011630714870989323, - -0.013722378760576248, - -0.024980057030916214, - 0.06341604143381119, - 0.030429041013121605, - -0.00567879993468523, - -0.023860951885581017, - 0.0029293280094861984, - 0.013442602008581161, - 0.042046431452035904, - -0.01473490335047245, - -0.004466434475034475, - 0.0021782610565423965, - -0.024740248918533325, - 0.01001866813749075, - -0.022661907598376274, - 0.00822676531970501, - 0.006721301004290581, - 0.015680814161896706, - 0.007054368034005165, - 0.004306561779230833, - -0.0032524035777896643, - -0.016560113057494164, - 0.006068488582968712, - 0.028563862666487694, - -0.010798046365380287, - 0.007227563299238682, - -0.034639012068510056, - -0.03077543154358864, - 0.023261429741978645, - -0.004816154949367046, - 0.008193458430469036, - 0.017332829535007477, - -0.014468449167907238, - 0.03288041800260544, - -0.010658157989382744, - 0.014881452545523643, - -0.0011499152751639485, - -0.025646192952990532, - -0.0378897525370121, - -0.019757559522986412, - 0.004659613594412804, - 0.025446351617574692, - 0.013762346468865871, - 0.005925269797444344, - 0.010957918129861355, - 0.0007735491381026804, - 0.02061021327972412, - 0.028963543474674225, - 0.0065747513435781, - -0.02715165726840496, - -0.03176131099462509, - -0.011957121081650257, - 0.004536378663033247, - 0.00731416093185544, - -0.023661110550165176, - 0.043272122740745544, - -0.00017787882825359702, - -0.025153253227472305, - -0.013988832011818886, - 0.014495094306766987, - 0.005812026560306549, - -0.03272054344415665, - -0.002334802644327283, - 0.0002133713278453797, - -0.020130595192313194, - 0.0025895992293953896, - -0.015547587536275387, - -0.16797256469726562, - 0.012070363387465477, - 0.004056761506944895, - -0.011777264066040516, - 0.026498844847083092, - 0.0015645843232050538, - 0.017132988199591637, - 0.01075141690671444, - -0.012676546350121498, - -0.00036762317176908255, - 0.013749023899435997, - 0.005409015342593193, - -0.014681612141430378, - -0.016253691166639328, - -0.022888394072651863, - 0.0030159256421029568, - -0.01810554601252079, - 0.034639012068510056, - 0.02150283381342888, - 0.02803095616400242, - 0.006727962289005518, - -0.02444715052843094, - 0.017812445759773254, - 0.0050026727840304375, - -0.008186797611415386, - 0.016533467918634415, - -0.021169766783714294, - 0.02507331594824791, - -0.009032788686454296, - -0.017172956839203835, - -0.031494855880737305, - 0.01462832186371088, - 0.0058952937833964825, - -0.01454838551580906, - -0.014148704707622528, - -0.009092740714550018, - -0.00021399582328740507, - -0.0018185481894761324, - -0.0051092542707920074, - 0.032320864498615265, - 0.0094857607036829, - 0.032134346663951874, - -0.014095413498580456, - 0.013589151203632355, - 0.008506542071700096, - 0.019078101962804794, - 0.01315616350620985, - -0.022248905152082443, - 0.00308253918774426, - -0.010591544210910797, - -0.00024813524214550853, - -0.0073474678210914135, - 0.008133506402373314, - 0.011211049742996693, - -0.00510259298607707, - 0.027684565633535385, - 0.007041045464575291, - 0.004279916640371084, - -0.0007414913852699101, - -0.007893698289990425, - 0.0012864730088040233, - -0.027524692937731743, - 0.011217711493372917, - 0.00295097753405571, - 0.001690317178145051, - -0.03237415477633476, - -0.026205746456980705, - 0.02592596970498562, - -0.010085281915962696, - -0.00861978530883789, - 0.0006078480510041118, - -0.02608584240078926, - 0.0031458218581974506, - -0.004836139269173145, - 0.008713044226169586, - 0.018864938989281654, - -0.007307499647140503, - -0.011350938118994236, - -0.0018735043704509735, - -0.009325888007879257, - -0.012776467017829418, - 0.04460439085960388, - -0.004183326847851276, - -0.013329358771443367, - -0.017146311700344086, - -0.009432469494640827, - -0.003035909729078412, - 0.032134346663951874, - -0.015121261589229107, - 0.007827084511518478, - 0.028057601302862167, - -0.02588600106537342, - -0.01621372252702713, - -0.0315215028822422, - 0.01580071821808815, - -0.005845333449542522, - -0.01304958201944828, - -0.0005220831953920424, - -0.015134584158658981, - -0.006075149867683649, - 0.003823614213615656, - -0.004303231369704008, - -0.035091985017061234, - 0.018864938989281654, - 0.005229158792644739, - 0.006065158173441887, - -0.036530837416648865, - 0.014508417807519436, - 0.0483880378305912, - -0.016080494970083237, - -0.01895819790661335, - -0.012929677963256836, - 0.016759952530264854, - 0.00822676531970501, - -0.012643239460885525, - 0.005565556697547436, - -0.012057040818035603, - -0.009026127867400646, - 0.020130595192313194, - 0.002216563792899251, - 0.04066087305545807, - -0.024287277832627296, - -0.002294834703207016, - 0.007660550996661186, - -0.012350140139460564, - -0.01961101032793522, - -0.09629645943641663, - -0.005595532711595297, - 0.018571840599179268, - 0.014988034963607788, - 0.009545712731778622, - 0.012170284055173397, - 0.0037536700256168842, - 0.012476705946028233, - 0.028803672641515732, - 0.04721564054489136, - -0.027631273493170738, - -0.018425291404128075, - -0.022222260013222694, - -0.0015346081927418709, - 0.01294300053268671, - -0.0168265663087368, - 0.009339210577309132, - -0.011337615549564362, - -0.022195613011717796, - 0.03394623473286629, - -0.004882768727838993, - 0.005379038862884045, - 0.003840267425402999, - 0.01210367027670145, - -0.018691744655370712, - -0.0013997158966958523, - -0.030242523178458214, - 0.022368809208273888, - 0.019078101962804794, - -0.003956841304898262, - 0.04279250279068947, - -0.024993380531668663, - 0.009285920299589634, - -0.0009375848458148539, - -0.018571840599179268, - -0.009345872327685356, - -0.0231814943253994, - -0.011111130006611347, - 0.040127962827682495, - -0.017359474673867226, - -0.0021183087956160307, - 1.4262701597544947e-06, - -0.006687994115054607, - -0.018651776015758514, - -0.00616507837548852, - -0.031281694769859314, - -0.004076745361089706, - 0.000397391093429178, - -0.002151615684852004, - -0.003740347223356366, - -0.028084246441721916, - -0.02151615545153618, - -0.017998963594436646, - 0.026632072404026985, - 0.03096194937825203, - 0.0003640843497123569, - -0.0055788797326385975, - -0.009925409220159054, - -0.02423398569226265, - 0.003930195700377226, - -0.021329637616872787, - 0.00925261341035366, - -0.03141491860151291, - 0.023421302437782288, - -0.004602991975843906, - -0.013082888908684254, - -0.01766589656472206, - -0.014801517128944397, - 0.009245951659977436, - 0.011863862164318562, - -0.027071721851825714, - 0.005518927238881588, - 0.001833536196500063, - 0.01306956633925438, - -0.028910253196954727, - 0.0021582769695669413, - -0.03605121746659279, - -0.014614999294281006, - 0.011790587566792965, - 0.0002641641185618937, - -0.004439788870513439, - -0.03405281528830528, - 0.018371999263763428, - -0.004326546099036932, - 0.03320016339421272, - 0.01937120221555233, - -0.0010783057659864426, - -0.025406382977962494, - 0.027071721851825714, - 0.0018968189833685756, - -0.01348923146724701, - 0.018785003572702408, - 0.02278181165456772, - -0.0071409656666219234, - -0.03895556554198265, - 0.019730914384126663, - 0.0027144995983690023, - -0.011224372312426567, - 0.005742082372307777, - 0.005565556697547436, - -0.0105382539331913, - -0.0014663293259218335, - -0.04441787302494049, - 0.012510012835264206, - 0.017119666561484337, - 0.006448185537010431, - -0.013415955938398838, - 0.003423933172598481, - -0.0027228263206779957, - 0.02252868190407753, - 0.011164420284330845, - -0.004343199543654919, - -0.002729487605392933, - 0.018052255734801292, - -0.018012287095189095, - 0.0007281686994247139, - -0.013948864303529263, - -0.028084246441721916, - -0.0051092542707920074, - 0.023727724328637123, - 0.007533985190093517, - -0.009652294218540192, - -0.0011615726398304105, - 0.01683988980948925, - 0.001715297345072031, - 0.031308338046073914, - -0.03767658770084381, - -0.017532669007778168, - -0.018691744655370712, - -0.0012956323334947228, - -0.004056761506944895, - -0.007953650318086147, - -0.002169934334233403, - -0.01085799839347601, - -0.009765537455677986, - 0.007114320527762175, - -0.00978552084416151, - -0.015041325241327286, - 0.020063981413841248, - 0.03898221254348755, - 0.036104511469602585, - 0.0525980107486248, - -0.02379433810710907, - -0.026698686182498932, - 0.0016886518569663167, - -0.037356842309236526, - -0.005865317303687334, - 0.0047395494766533375, - 0.019211329519748688, - -0.0015162895433604717, - 0.012030395679175854, - -0.00143385527189821, - 0.03229421749711037, - 0.008026924915611744, - 0.022435422986745834, - -0.021116474643349648, - 0.007933665998280048, - -0.0027111689560115337, - 0.015960590913891792, - -0.004120043944567442, - 0.02612580917775631, - -0.019251298159360886, - 0.040074672549963, - -0.0023947549052536488, - 0.0003236999036744237, - -0.0006698818760924041, - 0.008533187210559845, - -0.019451137632131577, - -0.02693849429488182, - -0.015041325241327286, - -0.00020993656653445214, - -0.010025329887866974, - -0.0051392302848398685, - -0.006578081753104925, - 0.012583287432789803, - 0.027258239686489105, - -0.003620442934334278, - -0.003560490906238556, - 0.011184404604136944, - 0.012350140139460564, - -0.015227843075990677, - -0.0027911050710827112, - 0.020143918693065643, - 0.0010400030296295881, - 0.011877184733748436, - -0.0033606505021452904, - 0.02127634733915329, - 0.010238492861390114, - -0.02359449677169323, - 0.0023514560889452696, - 0.003373973071575165, - -0.0030275830067694187, - -0.007081013638526201, - 0.018385322764515877, - -0.014348545111715794, - 0.022262226790189743, - 0.01199708878993988, - 0.02482018433511257, - -0.004219964612275362, - -0.012290188111364841, - 0.0378364622592926, - 0.033360034227371216, - 0.01188384648412466, - 0.02504667080938816, - -0.007367451675236225, - -0.023234784603118896, - -0.021236378699541092, - 0.015334424562752247, - -0.001619540387764573, - -0.03615780174732208, - 0.022195613011717796, - 0.026658717542886734, - -0.014201994985342026, - 0.008952852338552475, - -0.01850522682070732, - 0.005961907096207142, - -0.011743958108127117, - -0.007893698289990425, - -0.01136426068842411, - -0.010151895694434643, - -0.029576387256383896, - 0.027951018884778023, - 0.028750380501151085, - 0.003362315706908703, - -0.005861986894160509, - 0.011664021760225296, - 0.024353891611099243, - -0.010584883391857147, - 0.02464699000120163, - -0.016133787110447884, - 0.004226625896990299, - -0.016373595222830772, - 0.003643757663667202, - -0.0011207718634977937, - -0.029150061309337616, - -0.013395972549915314, - -0.007573953364044428, - 0.0020700141321867704, - 0.030802076682448387, - 0.006994416005909443, - 0.006901157088577747, - 0.1136159598827362, - 0.015933945775032043, - -0.015441006049513817, - 0.020716793835163116, - 0.00579537358134985, - 0.024273954331874847, - 0.02589932456612587, - 0.016719985753297806, - 0.008186797611415386, - -0.052118390798568726, - -0.002539639128372073, - -0.017985641956329346, - 0.01597391441464424, - -0.03943518549203873, - -0.01189050730317831, - 0.0221023540943861, - 0.0009159354376606643, - 0.01296298485249281, - -0.022168967872858047, - -0.014348545111715794, - 0.037143681198358536, - -0.03008265048265457, - 0.020357081666588783, - 0.03439920395612717, - -0.014654967002570629, - -0.009445792064070702, - 0.013842282816767693, - 0.008466574363410473, - 0.006238352973014116, - -0.012696530669927597, - -0.0014563373988494277, - 0.019744237884879112, - -0.04593665897846222, - -0.023647787049412727, - 0.004656282719224691, - -0.017306184396147728, - 0.0004046769463457167, - -0.03216098994016647, - 0.007893698289990425, - -0.006274990271776915, - 0.00548228994011879, - 0.025992583483457565, - -0.008373315446078777, - -0.0077471486292779446, - 0.009106063283979893, - -0.006161747500300407, - -0.0013356003910303116, - -0.003207439323887229, - -0.020117273554205894 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 28, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 566 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000029.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000029.json deleted file mode 100644 index 29df9b47fb5d4a719c1b2b36eaa684728856b59d..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000029.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000029", - "content": "Dies bedeutet, dass es zu kurzzeitigen hohen Schallsignalen kommt und somit den im- pulsbehafteten Schallleistungspegel erh\u00f6hen. Dies hat M\u00f6glicherweise die Begr\u00fcndung, dass der Gabelhubwagen durch bestimmte Vorg\u00e4nge, wie beispielsweise das \u00dcberfah- ren der \u00dcberladebr\u00fccke in den Anh\u00e4nger, impulsbehaftete Schallereignisse hervorruft. Durch subjektives Empfinden konnte festgestellt werden, dass die l\u00e4ngeren Gabeln des Gabelhubwagens m\u00f6glicherweise kurzzeitige hohe Schallsignale verursachen im Ver- gleich zu den Gabeln des Gabelstaplers. Dar\u00fcber hinaus weisen die R\u00e4der des Gabelhub- wagens eine deutlich h\u00e4rtere und kleinere Beschaffenheit auf im Vergleich zu den Reifen des Gabelstaplers. Aufgrund der h\u00e4rteren Reifen werden die Schallsignale nicht so gut ged\u00e4mpft wie bei den weicheren Reifen, was zu einer verst\u00e4rkten Schallabstrahlung f\u00fch- ren kann. Zusammenfassend l\u00e4sst sich sagen, dass der Pegelunterschied jedoch nicht signifikant ist, was darauf schlie\u00dfen l\u00e4sst, dass die beiden Beladevorg\u00e4nge der Flurf\u00f6r-\n\n## derger\u00e4te \u00e4hnlich sind. 57\n7 Ergebnisse und Interpretation\nVergleicht man nun die Ergebnisse mit den in Kapitel 3 beschriebenen st\u00fcndlichen Schallleistungspegel LWA,1h , l\u00e4sst sich erkennen, dass die in der Studie gemessenen Be- ladevorg\u00e4nge mit einem Handhubwagen mit (75 \u2013 80 dB(A) laut Martin Heroldt [65] und mit 94 \u2013 99 dB(A) laut Bianca Berghofer [67]), nicht g\u00e4nzlich in derselben Gr\u00f6\u00dfenord- nung liegen, aber m\u00f6glicherweise nach Umrechnung auf eine Einwirkzeit von einer Stunde \u00e4hnliche Schallleistungen aufweisen. Dennoch ist zu beachten, dass die vorlie- genden Messungen andere Grundlagenvoraussetzungen haben als die in dieser Thesis. In der Untersuchung der Hlug [8] wurde auch ein Kleinstapler, oder auch Gabelstapler genannt, untersucht, der einen st\u00fcndlichen Schallleistungspegel LWA,1h von 70 dB(A) auf- weist, was im Vergleich zu den hier ermittelten Werten von 72,1 dB(A) leiser ist. Die Ergebnisse des impulsbehafteten st\u00fcndlichen Schalleistungspegels f\u00fcr den Gabelstapler von 77,8 dB(A)) und des Gabelhubwagens von 79,5 dB(A) k\u00f6nnen zudem mit den aktu- ellen Untersuchungsergebnissen des T\u00dcV Nord verglichen werden. Gem\u00e4\u00df den vorlie- genden Daten zeigt sich, dass die impulsbehafteten Schallleistungspegel f\u00fcr verschie- dene Be- und Entladungsvorg\u00e4nge variieren, aber dennoch in der gleichen Gr\u00f6\u00dfenord-\n\n## nung liegen. Aus dem Vergleich mit den anderen Studien l\u00e4sst sich schlie\u00dfen, dass die ermittelten Gr\u00f6\u00dfen realistisch sind. Die \u00e4hnlichen Gr\u00f6\u00dfenordnungen der Schallleistungspegel bei den verschiedenen Flurf\u00f6rderger\u00e4ten weisen darauf hin, dass die Messungen und Aus- wertungen in dieser Untersuchung zuverl\u00e4ssige Ergebnisse liefern. Es ist jedoch wichtig zu beachten, dass die vorliegenden Messungen unter m\u00f6glicherweise unterschiedlichen Bedingungen und Voraussetzungen durchgef\u00fchrt wurden, was zu gewissen Abweichun- gen f\u00fchren kann. 58\n7 Ergebnisse und Interpretation\nIm n\u00e4chsten Schritt erfolgte eine genauere Untersuchung der verschiedenen Anh\u00e4nger- typen. Die Ergebnisse des Beladevorgangs f\u00fcr die verschiedenen Flurf\u00f6rderger\u00e4te in Ab- h\u00e4ngigkeit des Anh\u00e4ngertyp wurden ausgewertet und sind in Tabelle 12 dargestellt. | Anzahl Max-Pegel Schallleistungspegel Flurf\u00f6rderger\u00e4t | Anh\u00e4nger-Typ Enmelersienise LAFmax LWA,5s LWAmax LWA,1h Kl LWAT,1h [dB(A)] [dB(A)] [dB(A)] [dB(A] [dB(A)] [dB(A)] an 73,1 De 1 112,5 er 100, 1 107,9 STABW [dB] , 4,8 6,1 Wechselbr\u00fccke R 102,0 111,0 STABW [dB] , 4 4,9 Koffer 101,5 108,9 STABW [dB] 6 4,9 Gabelhub abenuDwagen Tyechselbr\u00fccke 64,4 2 103,8 STABW [dB] 5,6 3,6 Gabelstapler |\n\nTabelle 12: Vergleich verschiedene Flurf\u00f6rderger\u00e4te mit unterschiedlichen Anh\u00e4ngertypen\nMit: LAFmax: Maximal-Pegel [dB(A)], LWA,5s: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWAmax: maximale Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWA,1h: st\u00fcndliche Schall- leistungspegel [dB(A)], KI: Impulszuschlag [dB(A)], LWAT,1h: maximale st\u00fcndliche Schallleistungspegel\n\n## [dB(A)], STABW: Standardabweichung [dB]\n\nAngesichts der unterschiedlichen Anzahl von Messwerten, beziehungsweise der Einze- lereignisse, f\u00fcr die verschiedenen Anh\u00e4ngertypen ist es erforderlich, die Ergebnisse f\u00fcr den Fall \u201eWechselbr\u00fccke\u201c, ist mit Bedacht zu interpretieren, da der Fall eine geringe An- zahl an Einzelereignissen aufweist. Eine direkte Vergleichbarkeit ist aufgrund der unglei- chen Gewichtung der Messdaten deswegen nicht g\u00e4nzlich gegeben. Dennoch liefern die Ergebnisse einen Einblick in die Verladeger\u00e4usche in unterschiedliche Anh\u00e4ngertypen und k\u00f6nnen als Ausgangspunkt f\u00fcr weitere Untersuchungen dienen. Nachdem nun die Ergebnisse der Verladeger\u00e4usche f\u00fcr die verschiedenen Anh\u00e4ngertypen vorliegen, gilt es, diese zu interpretieren und daraus Schlussfolgerungen zu ziehen. Im Allgemeinen l\u00e4sst sich aus den Ergebnissen schlie\u00dfen, dass die Verladung in einen Tautliner im Vergleich zu einem Kofferaufbau oder einer Wechselbr\u00fccke am lautesten ist. Dies deutet darauf hin, dass die Beladung in einem Tautliner eine h\u00f6here Ger\u00e4usch- entwicklung aufweist und somit eine h\u00f6here L\u00e4rmbelastung verursacht. Im Gegensatz dazu sind die Kofferaufbauten und Wechselbr\u00fccken deutlich leiser. Dies kann darauf zu- r\u00fcckgef\u00fchrt werden, dass die Ladeboardw\u00e4nde die entstehenden Schallwellen besser d\u00e4mpfen und aufgrund ihres steiferen Materials, den Schall als K\u00f6rperschall besser ab- leiten k\u00f6nnen, wodurch die Schallausbreitung reduziert wird und somit die gesamte L\u00e4rmemission verringert. 59\n7 Ergebnisse und Interpretation\nZusammenfassend l\u00e4sst sich sagen, dass die Schallleistungspegel je nach Flurf\u00f6rderger\u00e4t und Anh\u00e4nger-Typ variieren.", - "embedding": [ - 0.008792814798653126, - 0.00285351718775928, - 0.016776027157902718, - -0.03219829127192497, - -0.004718257579952478, - 0.005415046587586403, - -0.012469206936657429, - -0.009363518096506596, - -0.02282813750207424, - -0.03596758842468262, - 0.014294130727648735, - 0.03381749987602234, - -0.024739330634474754, - 0.0009721866808831692, - 0.01864740438759327, - 0.003097393549978733, - 0.03368477523326874, - 0.013066454790532589, - 0.008879084140062332, - -0.006934710778295994, - -0.011891867034137249, - -0.008958716876804829, - -0.01579388603568077, - -0.0034540831111371517, - -0.024964958429336548, - 0.025986915454268456, - 0.03397676348686218, - -0.013842877000570297, - -0.018435049802064896, - 0.008573824539780617, - 0.015395721420645714, - 0.006101881619542837, - -0.018342142924666405, - 0.01629822887480259, - -0.008918900974094868, - -0.038117680698633194, - -0.0057534873485565186, - -0.024380981922149658, - 0.015289544127881527, - 0.0011231576791033149, - 0.02274850569665432, - 0.0017253825208172202, - 0.009622326120734215, - -0.016696393489837646, - -0.01309299934655428, - 0.021753093227744102, - 0.008872447535395622, - 0.01402868703007698, - -0.016656577587127686, - 0.024062450975179672, - 0.014161408878862858, - -0.002549916272982955, - -0.01621859520673752, - 0.017081286758184433, - -0.0053320955485105515, - -1.1490021279314533e-05, - -0.004933930467814207, - -0.0013247288297861814, - -0.006579679902642965, - -0.017864344641566277, - -0.020837312564253807, - 0.010577922686934471, - -0.014214497990906239, - 0.012575384229421616, - -0.012668289244174957, - -0.02159382589161396, - 0.006320872809737921, - -0.003437492996454239, - -0.006138380151242018, - -0.0026113002095371485, - 0.015422265976667404, - 0.037560250610113144, - 0.002997852163389325, - -0.006032202858477831, - 0.023624468594789505, - -0.016072602942585945, - -0.006178196985274553, - 0.010047035291790962, - -0.009237432852387428, - 0.007233334705233574, - 0.03262300416827202, - -0.028190096840262413, - -0.02106293849647045, - 0.046452607959508896, - 0.019019024446606636, - -0.0032848629634827375, - -0.011135353706777096, - 0.003842294216156006, - -0.02617272548377514, - 0.0003125182120129466, - 0.005743532907217741, - 0.0326760895550251, - 0.006526591256260872, - 0.004011514596641064, - 0.06131744012236595, - -0.00523919053375721, - 0.0008415387710556388, - 0.0077642216347157955, - -0.008242019452154636, - -0.02516404166817665, - -0.01624513976275921, - -0.005010245367884636, - 0.00990767776966095, - 0.004890795797109604, - -0.020027710124850273, - -0.0011380888754501939, - 0.0004865080991294235, - 0.017346730455756187, - -0.005610811524093151, - -0.03833003714680672, - -0.01931101270020008, - 0.020094070583581924, - -0.006874985992908478, - 0.0010916362516582012, - 0.009224160574376583, - -0.0038290219381451607, - 0.022867955267429352, - -0.010597830638289452, - 0.016059329733252525, - -0.025933826342225075, - 0.023677557706832886, - 0.024327894672751427, - 0.029623491689562798, - -0.008454374969005585, - 0.014718840830028057, - 0.02747339941561222, - -0.013949054293334484, - 0.007080704439431429, - -0.009781591594219208, - -0.018554499372839928, - -0.017651990056037903, - -0.01428085844963789, - 0.006901530083268881, - -0.009542692452669144, - -0.0056307194754481316, - 0.023067036643624306, - 0.004854297265410423, - -0.018992479890584946, - -0.012071041390299797, - -0.03461382910609245, - -0.005497998092323542, - -0.009721866808831692, - -0.03716208413243294, - -0.03187976032495499, - -0.012721378356218338, - 0.03453419730067253, - 0.008626912720501423, - 0.025827649980783463, - -0.009748411364853382, - 0.007618227507919073, - -0.024898597970604897, - -0.02570820041000843, - 0.010312478989362717, - -0.0054216827265918255, - -0.008281836286187172, - 0.01283419132232666, - 0.01579388603568077, - 0.010113395750522614, - -0.02565511129796505, - -0.0076713161543011665, - 0.00958250928670168, - 0.013497800566256046, - 0.018421776592731476, - -0.012349757365882397, - 0.023690829053521156, - 0.005388502497226, - -0.0067721265368163586, - -0.004051330965012312, - -0.006841805297881365, - -0.020571868866682053, - -0.013046546839177608, - -0.00023703272745478898, - -0.015966424718499184, - 0.012767830863595009, - -0.0071802460588514805, - -0.010856637731194496, - 0.013106271624565125, - 0.002244656439870596, - -0.03283535689115524, - -0.042842574417591095, - -0.012601928785443306, - -0.010903090238571167, - 0.008680001832544804, - -0.002709182444959879, - -0.02967658080160618, - -0.024221716448664665, - 0.013590705581009388, - 0.017373275011777878, - -0.007870398461818695, - -0.003692982252687216, - 0.0026660477742552757, - 0.03164086118340492, - -0.001266663079150021, - -0.02327939309179783, - -0.6374890208244324, - 0.002040596678853035, - -0.007034251932054758, - 0.00407123938202858, - 0.0006544840289279819, - 0.029888935387134552, - 0.0027473398949950933, - 0.011838778853416443, - -0.0060388389974832535, - 0.034640371799468994, - -0.004499266855418682, - 0.01928446814417839, - 0.0035138078965246677, - 0.002266223542392254, - -0.008719817735254765, - -0.02053205296397209, - -0.007830582559108734, - -0.0030044883023947477, - 0.02734067663550377, - 0.008474282920360565, - -0.012396209873259068, - 0.009808136150240898, - -0.007379328366369009, - 0.0025731425266712904, - 0.011560062877833843, - -0.002953058574348688, - 0.02864135056734085, - -0.010060307569801807, - 0.007877035066485405, - -0.009151163510978222, - -0.02853517234325409, - 0.0029729667585343122, - -0.022655600681900978, - 0.013378350995481014, - 0.03848930448293686, - 0.012575384229421616, - 0.009887768886983395, - 0.03150814026594162, - 0.011082264594733715, - 0.014453397132456303, - -0.0025217130314558744, - -0.01161978766322136, - -0.007658043876290321, - -0.013039910234510899, - 0.0090383505448699, - -0.003168731462210417, - 0.04026777297258377, - -0.0007598319207318127, - 0.014612662605941296, - -0.042391322553157806, - 0.005381866358220577, - 0.022403428331017494, - 0.012104222550988197, - 0.026517802849411964, - 0.019417189061641693, - -0.0085140997543931, - 0.03485272824764252, - -0.027022145688533783, - -0.025217128917574883, - 0.029437681660056114, - 0.012475843541324139, - 0.01819615066051483, - -0.016749482601881027, - -0.021819453686475754, - -0.019457006826996803, - 0.014506485313177109, - -0.010358931496739388, - -0.03915291279554367, - 0.013803060166537762, - 0.0019476914312690496, - -0.011732601560652256, - 0.015143550001084805, - -0.006848441436886787, - -0.0028667894657701254, - 0.026597436517477036, - 0.02858826145529747, - 0.011725964955985546, - -0.015422265976667404, - -0.0027772022876888514, - 0.02739376574754715, - -0.006251193583011627, - 0.009210888296365738, - -0.01259529311209917, - 0.002684297040104866, - 0.023120125755667686, - -0.011560062877833843, - -0.0022612465545535088, - 0.009230796247720718, - -0.0007813991978764534, - -0.011500338092446327, - 0.021474376320838928, - 0.02747339941561222, - -0.012469206936657429, - -0.031269241124391556, - -0.002140138065442443, - 0.03798495978116989, - -0.0145330298691988, - 0.027659209445118904, - -0.006211377214640379, - -0.028800616040825844, - -0.028216641396284103, - 0.004250413738191128, - 0.0010460132034495473, - -0.01806342788040638, - 0.027115050703287125, - 0.0035303982440382242, - -0.013829604722559452, - -0.002131842775270343, - 0.014705568552017212, - -0.032463736832141876, - 0.016138963401317596, - 0.006251193583011627, - 0.0051993741653859615, - -0.01229666918516159, - -0.006208059377968311, - -0.02626563049852848, - 0.04247095435857773, - 0.016099145635962486, - 0.02104966714978218, - -0.019642816856503487, - 0.020877128466963768, - 0.002609641058370471, - 0.02744685485959053, - -0.009124618954956532, - -0.019111929461359978, - 0.04180734604597092, - 0.027659209445118904, - -0.00356357847340405, - -0.0032715906854718924, - -0.013603977859020233, - 0.0012243579840287566, - -0.0017419727519154549, - 0.027008872479200363, - -0.004396407399326563, - 0.02635853737592697, - 0.02866789512336254, - 0.03445456176996231, - 0.0127943754196167, - 0.029278414323925972, - -0.0255887508392334, - -0.021447831764817238, - 0.006609542295336723, - 0.003623303258791566, - -0.025774560868740082, - -0.015223182737827301, - -0.036923184990882874, - -0.03140196204185486, - 0.007677952293306589, - 0.0032997941598296165, - -0.008653457276523113, - 0.004456132184714079, - -0.028296273201704025, - -0.0170281995087862, - 0.003306430298835039, - -0.011254803277552128, - 0.017864344641566277, - -0.01050492562353611, - -0.00935688242316246, - 0.006204741075634956, - -0.019695905968546867, - 0.008354833349585533, - 0.013949054293334484, - -0.039444901049137115, - 0.0009307111613452435, - -0.018926119431853294, - -0.00992758572101593, - 0.020213520154356956, - -0.001705474336631596, - -0.013909237459301949, - -0.020518779754638672, - -0.0009373472421430051, - -0.014984283596277237, - 0.020213520154356956, - 0.026013460010290146, - -0.014864834025502205, - 0.0018647403921931982, - -0.012535568326711655, - 0.0028103827498853207, - -0.014546302147209644, - -0.013816332444548607, - 0.015594803728163242, - 0.0019742357544600964, - -0.018381960690021515, - -0.002934809308499098, - 0.017214009538292885, - -0.0005524542066268623, - 0.014692296274006367, - 0.011765781790018082, - -0.035941045731306076, - 0.033498965203762054, - -0.014891378581523895, - 0.018262511119246483, - -0.023159943521022797, - 0.013749971985816956, - -0.05133676528930664, - -0.006012294441461563, - 0.004588854033499956, - -0.003082462353631854, - 0.001946032396517694, - 0.026690341532230377, - 0.017346730455756187, - -0.021739820018410683, - 0.025469301268458366, - -0.009721866808831692, - 0.017904162406921387, - -0.010193029418587685, - 0.019443733617663383, - -0.021315110847353935, - 0.044647593051195145, - 0.02220434695482254, - 0.020611684769392014, - -0.006324190646409988, - -0.011334436014294624, - -0.009144527837634087, - -0.00153625407256186, - 0.044647593051195145, - -0.019629545509815216, - 0.012900552712380886, - 0.02386336773633957, - -0.009516148827970028, - -0.0019543275702744722, - 0.019072113558650017, - 0.0316939502954483, - 0.014745384454727173, - -0.027141595259308815, - -0.015117005445063114, - 0.015329360030591488, - 0.017399819567799568, - -0.02400936186313629, - -0.007100612856447697, - -0.0017320186598226428, - 0.01568770967423916, - 0.01054474152624607, - 0.01341153122484684, - -0.003117301734164357, - 0.01928446814417839, - 0.003948471508920193, - -0.007870398461818695, - 0.040559761226177216, - 0.0002532081853132695, - 0.01874030940234661, - 0.021262021735310555, - 0.007020979654043913, - -0.011221623048186302, - 0.01458611898124218, - -0.005746851209551096, - 0.008825995028018951, - 0.024102266877889633, - -0.01396232657134533, - 0.0011687807273119688, - 0.0022015217691659927, - 0.01136761624366045, - 0.003566896542906761, - -0.019098658114671707, - 0.024314621463418007, - -0.009801500476896763, - 0.04008196294307709, - -0.01759890280663967, - 0.0066228145733475685, - 0.017904162406921387, - 0.0012633450096473098, - 0.03320697695016861, - 0.030180921778082848, - -0.01808997243642807, - -0.00217663636431098, - 0.01137425284832716, - -0.014745384454727173, - -0.022921044379472733, - -0.009774955920875072, - -0.00935024581849575, - -0.00745232542976737, - -0.016523856669664383, - 0.0187004916369915, - -0.009104711003601551, - 0.022602511569857597, - -0.009847952984273434, - 0.0029298323206603527, - 0.037002820521593094, - 0.02512422390282154, - 0.021885814145207405, - 0.0022015217691659927, - -0.026026731356978416, - 0.00041164475260302424, - 0.0025233719497919083, - -0.025349851697683334, - -0.02626563049852848, - -0.016616761684417725, - 0.022084897384047508, - -0.01570098102092743, - -0.008553915657103062, - -0.017147649079561234, - 0.022509606555104256, - -0.008348196744918823, - 0.011314528062939644, - 0.02167345955967903, - 0.008567187935113907, - 0.014917923137545586, - 0.020757678896188736, - 0.0038688385393470526, - -0.0025316670071333647, - -0.015900064259767532, - -0.023093581199645996, - -0.018209422007203102, - -0.02156728133559227, - 0.01976226642727852, - -0.0038588843308389187, - -0.02264232747256756, - -0.023677557706832886, - 0.019032297655940056, - -0.004134282004088163, - -0.015408993698656559, - 0.0057236249558627605, - -0.010431928560137749, - 0.0048974319361150265, - -0.018381960690021515, - 0.003756025107577443, - 0.007969940081238747, - 0.0066825393587350845, - 0.036471933126449585, - 0.0050766062922775745, - -0.00841455813497305, - -0.020810768008232117, - 0.002191567560657859, - 0.0014234406407922506, - 0.003500535851344466, - 0.0297562126070261, - 0.00277388421818614, - 0.021222205832600594, - -0.0015992969274520874, - -0.017306914553046227, - -0.001497267046943307, - -0.036976274102926254, - 0.017784712836146355, - 0.015329360030591488, - 0.00011550938506843522, - -0.020651502534747124, - 0.027115050703287125, - -0.018182877451181412, - 0.0057236249558627605, - -0.00685507757589221, - 0.006513318978250027, - -0.021182388067245483, - 0.03384404256939888, - -0.007638135924935341, - -0.03219829127192497, - 0.0032997941598296165, - -0.009469695389270782, - 0.048231080174446106, - -0.017147649079561234, - -0.013252264820039272, - 0.021142572164535522, - 0.025894010439515114, - 0.02049223519861698, - -0.018912848085165024, - -0.004572263918817043, - 0.015939880162477493, - 0.015488626435399055, - 0.01750599592924118, - 0.0026312083937227726, - -0.03973688930273056, - 0.0036199854221194983, - -0.008640184998512268, - 0.010166484862565994, - 0.0033744501415640116, - 0.005617447663098574, - 0.010876546613872051, - 0.015462081879377365, - -0.004821117036044598, - 0.018912848085165024, - 0.0044926307164132595, - 0.009967402555048466, - 0.026451442390680313, - -0.016019513830542564, - -0.01194495614618063, - 0.0316939502954483, - -0.02986239083111286, - 0.0009356882073916495, - 0.004280276130884886, - 0.004250413738191128, - -0.0312957838177681, - 0.005464817397296429, - -0.01641767844557762, - -0.010332386940717697, - -0.018474865704774857, - -0.006576362065970898, - -0.016656577587127686, - 0.01308636274188757, - -0.005587585270404816, - -0.024739330634474754, - -0.015316087752580643, - -0.03795841708779335, - -0.010710643604397774, - -0.0005271541303955019, - 0.01584697514772415, - -0.0035436702892184258, - -0.023478474467992783, - -0.029331503435969353, - 0.000541255809366703, - 0.010876546613872051, - 0.009071530774235725, - 0.019443733617663383, - -0.0005491361953318119, - -0.027738843113183975, - 0.017970522865653038, - -0.02272196114063263, - -0.01571425423026085, - -0.011978136375546455, - -0.01636458933353424, - -0.007485505659133196, - 0.010279298759996891, - -0.009642234072089195, - 0.005262416787445545, - 0.011586607433855534, - 0.006227967329323292, - -0.008547279983758926, - 0.019151747226715088, - 0.005043426062911749, - 0.0016988381976261735, - 0.0221114419400692, - 0.006901530083268881, - 0.012621836736798286, - 0.01810324378311634, - 0.012694833800196648, - -0.014347219839692116, - 0.012409482151269913, - -0.03166740760207176, - -0.006861713714897633, - 0.0090051693841815, - 0.03448110818862915, - -0.006725674029439688, - -0.0016258412506431341, - -0.011951591819524765, - 0.0013562502572312951, - 0.01819615066051483, - -0.006453594192862511, - -0.015342632308602333, - -0.010047035291790962, - 0.006440322380512953, - -0.014957739971578121, - 0.010670827701687813, - 0.005116422660648823, - 0.008620277047157288, - 0.02622581459581852, - -0.003795841708779335, - -0.014187953434884548, - -0.03150814026594162, - 0.032384105026721954, - 0.0034739915281534195, - -0.010564650408923626, - 0.0290660597383976, - -0.007326239719986916, - -0.004104419611394405, - -0.024659698829054832, - 0.0013380009913817048, - 0.014347219839692116, - 0.005922707263380289, - -0.0036133492831140757, - 0.009210888296365738, - -0.025376396253705025, - -0.018182877451181412, - 0.0005528689944185317, - 0.011307891458272934, - -0.018846485763788223, - -0.017864344641566277, - -0.02339884266257286, - 0.00992758572101593, - -0.010657555423676968, - 0.006649359129369259, - 0.01428085844963789, - -0.01931101270020008, - -0.02396954596042633, - 0.022310523316264153, - -0.008003120310604572, - 0.023053765296936035, - -0.008640184998512268, - 0.016125690191984177, - -0.030764898285269737, - -0.018859758973121643, - -0.005444908980280161, - -0.024646425619721413, - 0.016444223001599312, - -0.008958716876804829, - 0.01343807578086853, - 0.01311290729790926, - 0.03694973140954971, - -0.006629450712352991, - -0.004870887845754623, - 0.01990826055407524, - -0.004286912269890308, - -0.01518336683511734, - -0.020863857120275497, - -0.013842877000570297, - -0.0192579235881567, - 0.028800616040825844, - 0.021952174603939056, - 0.0027008873876184225, - 0.014214497990906239, - 0.027314133942127228, - 0.014599391259253025, - 0.048151444643735886, - -0.019748995080590248, - 0.0001279520511161536, - -0.007598319556564093, - -0.02264232747256756, - 0.01256874855607748, - -0.007989848032593727, - 0.0029414454475045204, - 0.010843365453183651, - -0.021461104974150658, - 0.003253341419622302, - 0.01640440709888935, - -0.028137007728219032, - -0.026504529640078545, - -0.002778861438855529, - 0.002055527875199914, - -0.03668428584933281, - 0.03610031306743622, - 0.024911869317293167, - -0.004831071011722088, - 0.004157508257776499, - -0.01929773949086666, - -0.010856637731194496, - -0.026504529640078545, - 0.0008577142143622041, - -0.002639503451064229, - 0.0013363419566303492, - -0.017718352377414703, - -0.020731134340167046, - 0.0051695117726922035, - -0.019417189061641693, - 0.008666729554533958, - -0.020067526027560234, - -0.0037692973855882883, - -0.015355904586613178, - -0.029888935387134552, - -0.03952453285455704, - -0.023106854408979416, - -0.01753254048526287, - 0.006483456585556269, - 0.0011895186034962535, - 0.005501315928995609, - 0.020598413422703743, - -0.01640440709888935, - -0.0012475843541324139, - 0.0021633643191307783, - 0.0045822178944945335, - 0.012953640893101692, - -0.003087439341470599, - 0.031136518344283104, - 0.013882693834602833, - -0.01982862688601017, - -0.018793398514389992, - -0.049903374165296555, - 0.024248261004686356, - -0.01866067573428154, - 0.008825995028018951, - 0.0003438322455622256, - -0.02221761830151081, - 0.012137402780354023, - 0.009761683642864227, - 0.011473793536424637, - 0.0052292365580797195, - -0.016192052513360977, - 0.041196826845407486, - 0.0025913917925208807, - -0.002206498757004738, - -0.008540643379092216, - 0.00049148517427966, - 0.0029066060669720173, - -0.00903171394020319, - 0.0021119345910847187, - 0.013225721195340157, - -0.007638135924935341, - -0.009741775691509247, - 0.00038178235990926623, - 0.04326728731393814, - -0.0004016906314063817, - 0.025482572615146637, - 0.010186392813920975, - -0.031747039407491684, - -0.01368361059576273, - -0.023823551833629608, - -0.035303980112075806, - 0.001626670709811151, - -0.03546324744820595, - 0.044488325715065, - -0.01749272458255291, - -0.005799939855933189, - 0.008945444598793983, - 0.001312286127358675, - -0.0077044968493282795, - -0.008096026256680489, - 0.01698838174343109, - 0.01547535415738821, - -0.015395721420645714, - 0.004393089562654495, - 0.021461104974150658, - 0.005295597016811371, - -0.003948471508920193, - -0.011779054068028927, - 0.003975016064941883, - -0.011135353706777096, - 0.008540643379092216, - -0.0037162085063755512, - -0.006300964392721653, - 0.014679023995995522, - -0.01859431527554989, - -0.008553915657103062, - -0.018873030319809914, - -0.017240554094314575, - -0.004330046474933624, - -0.02508440800011158, - 0.03103034198284149, - -0.027022145688533783, - -0.017970522865653038, - 0.0029115830548107624, - 0.005833120085299015, - 0.033578600734472275, - -0.01924465224146843, - -0.021341655403375626, - -0.005770077463239431, - 0.03193284943699837, - -0.036525022238492966, - 0.006350735202431679, - 0.014572846703231335, - -0.0028369270730763674, - -0.005116422660648823, - 0.015488626435399055, - 0.013238993473351002, - -0.011301255784928799, - 0.02106293849647045, - -0.00025175654445774853, - -0.01258865650743246, - 0.0022977450862526894, - 0.0008967012399807572, - 0.021275294944643974, - -0.013869421556591988, - -0.009283885359764099, - 0.013935782015323639, - 0.013975598849356174, - 0.0071205212734639645, - -0.009761683642864227, - -0.0009962425101548433, - 0.0011613151291385293, - 0.0070873405784368515, - -0.004386453423649073, - 0.036365754902362823, - -0.019642816856503487, - 0.012071041390299797, - 0.005799939855933189, - 0.0018182877684012055, - -0.002883379580453038, - -0.044488325715065, - -0.032304469496011734, - 0.025894010439515114, - 0.0013686928432434797, - -0.0383831262588501, - -0.007273151073604822, - -0.0326760895550251, - -0.03318043425679207, - -0.015276271849870682, - 0.0043134563602507114, - 0.0034905816428363323, - 0.01858104206621647, - 0.024951687082648277, - -0.008573824539780617, - -0.00699443556368351, - 0.017267098650336266, - -0.0012741286773234606, - -0.01493119541555643, - 0.03320697695016861, - 0.01689547672867775, - -0.02282813750207424, - 0.015608076006174088, - -0.008374741300940514, - 0.02692924067378044, - 0.011035812087357044, - -0.032994624227285385, - -0.0024321258533746004, - 0.01624513976275921, - -0.030579088255763054, - -0.003477309364825487, - -0.006377279292792082, - 0.021991992369294167, - 0.0018099927110597491, - -0.010060307569801807, - -0.011765781790018082, - 0.031056886538863182, - 0.011002631857991219, - 0.03087107464671135, - -0.018408505246043205, - -0.01017975714057684, - -0.016537128016352654, - -0.006762172561138868, - -0.007790765725076199, - -0.008169022388756275, - -0.036923184990882874, - -0.007412509061396122, - 0.033525511622428894, - -0.0033893813379108906, - 0.017227280884981155, - 0.030525999143719673, - -0.00810929760336876, - -0.008202203549444675, - 0.0003664364048745483, - 0.01142070535570383, - 0.021792909130454063, - -0.006632768549025059, - 0.007034251932054758, - -0.015355904586613178, - -0.0025665066204965115, - 0.005418364889919758, - 0.011427341029047966, - -0.03331315517425537, - -0.006516637280583382, - 0.0062777381390333176, - -0.001990826101973653, - -0.0068816221319139, - 0.029888935387134552, - -0.018368687480688095, - 0.002793792635202408, - 0.003875474678352475, - 0.0396307110786438, - 0.01633804477751255, - -0.023651013150811195, - 0.0038987009320408106, - 0.01978881098330021, - -0.015024100430309772, - -0.01917828992009163, - 0.02090367302298546, - -0.02922532521188259, - 0.00791021529585123, - 0.0102527542039752, - -0.02688942290842533, - 0.0005180294974707067, - -0.00788367073982954, - 0.02675670199096203, - -0.004111055750399828, - 0.0015735820634290576, - -0.03148159384727478, - -0.020585140213370323, - -0.027898108586668968, - 0.04140917956829071, - 0.003397676395252347, - -0.01990826055407524, - -0.006665949244052172, - -0.008016392588615417, - -0.016497312113642693, - -0.007757585495710373, - -0.01564789190888405, - 0.007989848032593727, - -0.029915479943156242, - -0.00820883922278881, - -0.0010335705010220408, - -0.023491747677326202, - -0.005766759160906076, - -0.00990104116499424, - 0.00715370150282979, - -0.028827160596847534, - -0.01936410181224346, - 0.1810324490070343, - -0.03272917866706848, - -0.01052483357489109, - 0.0007523663225583732, - -0.017957251518964767, - -0.03153468295931816, - 0.014771929010748863, - -0.006344099063426256, - -0.003978333901613951, - 0.014095048420131207, - 0.010617738589644432, - 0.00992758572101593, - -0.004077875521034002, - 0.0056041753850877285, - 0.022629056125879288, - -0.013020002283155918, - -0.038807835429906845, - -0.008062845095992088, - -0.017214009538292885, - 0.021328382194042206, - 0.026623979210853577, - -0.029278414323925972, - -0.007399236783385277, - -0.015355904586613178, - 0.027765387669205666, - 0.011360980570316315, - -0.012197127565741539, - 0.005033471621572971, - 0.043108019977808, - 0.021208932623267174, - -0.03206557035446167, - -0.0023027220740914345, - -0.0011256461730226874, - -1.861214877862949e-05, - 0.004253731574863195, - 0.007326239719986916, - -0.0018332189647480845, - -0.020704589784145355, - 0.008965353481471539, - 0.037666428834199905, - 0.010491653345525265, - -0.015316087752580643, - -0.021845998242497444, - -0.01874030940234661, - 0.004728212021291256, - 0.0033545419573783875, - -0.0003689249570015818, - 0.0010111737065017223, - 0.007804038003087044, - -0.007259878795593977, - -0.00810929760336876, - 0.013829604722559452, - 0.015554986894130707, - 0.0432407408952713, - -0.003653165651485324, - -0.018368687480688095, - -0.002443738980218768, - -0.0032450463622808456, - 0.011447249911725521, - 0.0013653748901560903, - -0.028110463172197342, - 0.015422265976667404, - -0.01132116373628378, - 0.018926119431853294, - -0.0175192691385746, - 0.025854194536805153, - -0.012210399843752384, - 0.011427341029047966, - -0.010889817960560322, - -0.01933755725622177, - -0.005206009838730097, - -0.0021268657874315977, - -0.03599413484334946, - 0.008746362291276455, - -0.03259645774960518, - -0.03448110818862915, - 0.0026511165779083967, - -0.012966913171112537, - 0.031242696568369865, - 0.02100985124707222, - 0.0222441628575325, - -0.012555476278066635, - -0.015992969274520874, - -0.005478089675307274, - 0.004280276130884886, - -0.020664773881435394, - 0.02159382589161396, - 0.01487810630351305, - 0.024155355989933014, - -0.027632664889097214, - -0.008288471959531307, - -0.005617447663098574, - -0.00495052058249712, - -0.00933697447180748, - -0.006231285631656647, - -0.021474376320838928, - 0.0008096025558188558, - 0.006778762675821781, - -0.01136761624366045, - -0.004734847694635391, - -0.013643794693052769, - 0.05120404437184334, - 0.02742031030356884, - -0.014944467693567276, - -0.03026055544614792, - 0.0053918203338980675, - 0.01571425423026085, - 0.03426875174045563, - 0.0023674238473176956, - -0.007790765725076199, - -0.01455957442522049, - -0.03217174857854843, - 0.0004043865483254194, - -0.022018535062670708, - 0.024858780205249786, - 0.007498777937144041, - 0.012455934658646584, - 0.004728212021291256, - -0.0002167097118217498, - 0.002637844532728195, - -0.003911972977221012, - -0.002964671701192856, - 0.02396954596042633, - -0.0005138819687999785, - 0.005730261094868183, - -0.039975784718990326, - -0.01867394894361496, - 0.042391322553157806, - -0.016590217128396034, - 0.01694856584072113, - 0.027008872479200363, - -0.021394744515419006, - 0.025376396253705025, - -0.008626912720501423, - 0.01428085844963789, - -0.005743532907217741, - -0.017054742202162743, - -0.04762055724859238, - -0.00598575035110116, - 0.00844110269099474, - 0.0175192691385746, - -0.009516148827970028, - 0.009715231135487556, - 0.003362837014719844, - 0.00583643838763237, - 0.002083731349557638, - 0.022549422457814217, - -0.003298135008662939, - -0.02635853737592697, - -0.02803082950413227, - -0.014758656732738018, - -0.011181806214153767, - 0.0021268657874315977, - -0.014347219839692116, - 0.024274805560708046, - 0.027685754001140594, - -0.02679651789367199, - -0.028800616040825844, - 0.024234989657998085, - 0.0104982890188694, - -0.02566838264465332, - -0.031189607456326485, - -0.0039086551405489445, - -0.008660092949867249, - -0.0007656384841538966, - -0.013358443044126034, - -0.1679726243019104, - 0.011254803277552128, - 0.008620277047157288, - -0.0142543138936162, - 0.023000676184892654, - -0.007273151073604822, - 0.01749272458255291, - 0.005726942792534828, - -0.022443246096372604, - -0.00042885710718110204, - 0.01928446814417839, - -0.0008967012399807572, - -0.015661165118217468, - -0.0014582800213247538, - -0.007531958632171154, - -0.0041475542820990086, - -0.019536638632416725, - 0.01976226642727852, - 0.024327894672751427, - 0.016510583460330963, - -0.0018000385025516152, - -0.030658720061182976, - 0.02736722119152546, - 0.012309940531849861, - -0.0029713078401982784, - 0.006987799424678087, - -0.025230402126908302, - 0.04143572598695755, - -0.0003309748135507107, - -0.006612860597670078, - -0.021885814145207405, - 0.016006240621209145, - 0.00656640762463212, - -0.012528931722044945, - -0.006018930580466986, - -0.008686637505888939, - -0.00908480305224657, - -0.007810674142092466, - -0.000305467372527346, - 0.036525022238492966, - 0.011380888521671295, - 0.019948076456785202, - -0.010292570106685162, - 0.015063917264342308, - 0.009137891232967377, - 0.027659209445118904, - 0.011002631857991219, - -0.006901530083268881, - -0.0021816135849803686, - -0.013212448917329311, - -0.005859664641320705, - -0.006659313105046749, - 0.0066526769660413265, - 0.03371132165193558, - 0.0030111244414001703, - 0.003616667352616787, - 0.0062180133536458015, - 0.006921438500285149, - 0.0004325899062678218, - 0.006828533485531807, - 0.010717280209064484, - -0.02395627275109291, - 0.005202692002058029, - -0.0053320955485105515, - -0.006347416900098324, - -0.02046569064259529, - -0.006231285631656647, - 0.024858780205249786, - -0.008660092949867249, - -0.00994749367237091, - -0.008839267306029797, - -0.015900064259767532, - 0.009197616018354893, - -0.022323796525597572, - 0.011566699482500553, - 0.01973572187125683, - -0.004937248770147562, - -0.016683122143149376, - -0.004615398123860359, - 0.00772440480068326, - -0.010319114662706852, - 0.04953175038099289, - -0.006589634343981743, - -0.02513749711215496, - -0.03318043425679207, - -0.01169278472661972, - -0.0030310326255857944, - 0.030791442841291428, - -0.010239481925964355, - -0.003503853688016534, - 0.021965447813272476, - -0.017678534612059593, - -0.022934315726161003, - -0.037002820521593094, - 0.008965353481471539, - -0.006519955117255449, - -0.006821897346526384, - 0.006689175497740507, - -0.011281347833573818, - -0.017306914553046227, - 0.003802477614954114, - -0.010259389877319336, - -0.03434838354587555, - 0.01639113388955593, - -0.0006395528325811028, - 0.012502387166023254, - -0.022323796525597572, - 0.009642234072089195, - 0.0501953586935997, - -0.014413580298423767, - -0.006078655365854502, - 0.0017270415555685759, - 0.012721378356218338, - 0.004406361375004053, - -0.013152724131941795, - 0.01430740300565958, - -0.009502876549959183, - -0.012150675058364868, - 0.02459333837032318, - 0.0034507650416344404, - 0.05972478166222572, - -0.018368687480688095, - 0.003303112229332328, - -0.0025167358107864857, - -0.009098075330257416, - -0.02856171689927578, - -0.09115328639745712, - -0.0038821108173578978, - 0.01583370380103588, - 0.007332875858992338, - 0.0001229749759659171, - 0.0033445877488702536, - 0.0119914086535573, - -0.001975894905626774, - 0.003546988358721137, - 0.03363168612122536, - -0.016550401225686073, - -0.031720492988824844, - -0.03211865946650505, - -0.01283419132232666, - 0.02162037044763565, - -0.012203763239085674, - 0.015342632308602333, - -0.016006240621209145, - -0.03633921220898628, - 0.033021166920661926, - -0.01874030940234661, - 0.01572752557694912, - -0.008952081203460693, - 0.006821897346526384, - -0.01799706742167473, - -0.016669850796461105, - -0.02911914885044098, - 0.0104982890188694, - 0.02909260429441929, - -0.010558013804256916, - 0.024872053414583206, - -0.017930706962943077, - 0.0037759332917630672, - -0.001675611943937838, - -0.010883182287216187, - -0.007186881732195616, - -0.013424803502857685, - -0.0020024392288178205, - 0.0349058173596859, - -0.01812978833913803, - 0.0032666136976331472, - 0.018926119431853294, - 0.0018879666458815336, - -0.003586804959923029, - -0.016722938045859337, - -0.02460660971701145, - 0.004180734511464834, - 0.009449787437915802, - 0.003213525051251054, - -0.006586316041648388, - -0.03249027952551842, - -0.03384404256939888, - -0.0316939502954483, - 0.01810324378311634, - 0.03721517324447632, - 0.001995803089812398, - -0.00583643838763237, - 0.01341816782951355, - -0.007598319556564093, - 0.0029663308523595333, - -0.018992479890584946, - 0.0009257341152988374, - -0.03487927094101906, - 0.016762755811214447, - 0.012077677994966507, - -0.013285445980727673, - -0.008918900974094868, - -0.009496239945292473, - 0.011798962019383907, - 0.009814772754907608, - -0.020173704251646996, - 0.010232845321297646, - -0.004890795797109604, - 0.020200248807668686, - -0.02805737406015396, - -0.00021204371296335012, - -0.030764898285269737, - -0.02156728133559227, - 0.0017685170751065016, - -0.006208059377968311, - -0.011891867034137249, - -0.017054742202162743, - 0.021394744515419006, - -0.022469790652394295, - 0.02447388879954815, - 0.012256852351129055, - -0.003303112229332328, - -0.015860246494412422, - 0.030632175505161285, - -0.012880644761025906, - -0.008872447535395622, - 0.021195661276578903, - 0.023067036643624306, - -0.009091438725590706, - -0.023770462721586227, - 0.028906794264912605, - -0.005468135699629784, - 0.010040399618446827, - 0.003616667352616787, - 0.014546302147209644, - -0.0037593431770801544, - -0.013550888746976852, - -0.03395022079348564, - 0.022005263715982437, - 0.014864834025502205, - 0.007857127115130424, - -0.004157508257776499, - -0.0010161508107557893, - 0.004466086160391569, - 0.019695905968546867, - 0.01430740300565958, - 0.001796720433048904, - 0.005806575994938612, - 0.00964886974543333, - -0.011493702419102192, - -0.008248656056821346, - -0.024221716448664665, - -0.026637252420186996, - 0.00012453031376935542, - 0.012150675058364868, - 0.002065482083708048, - 0.005879573058336973, - -0.013723427429795265, - 0.010345659218728542, - -0.00990104116499424, - 0.030074745416641235, - -0.03498544916510582, - -0.0069081662222743034, - -0.011659604497253895, - -0.0016092510195448995, - -0.009164435788989067, - -0.00699443556368351, - 0.00937679037451744, - -0.0043731811456382275, - -0.014612662605941296, - -0.003503853688016534, - -0.016484038904309273, - -0.010412019677460194, - 0.012933732941746712, - 0.03793187066912651, - 0.030764898285269737, - 0.04361236095428467, - -0.02736722119152546, - -0.0361534021794796, - -0.003742752829566598, - -0.028800616040825844, - -0.002130183856934309, - -0.00024408356694038957, - 0.027553033083677292, - 0.0036730740685015917, - 0.010431928560137749, - 0.010405384004116058, - 0.033047713339328766, - 0.028190096840262413, - 0.018514681607484818, - -0.02688942290842533, - 0.0025217130314558744, - -0.004479358438402414, - 0.007445689290761948, - -0.007571775000542402, - 0.019961349666118622, - -0.027818474918603897, - 0.030738353729248047, - 0.001073386985808611, - 0.0035204440355300903, - -0.013066454790532589, - 0.013842877000570297, - -0.011613151989877224, - -0.01746618002653122, - -0.01917828992009163, - -0.0017038153018802404, - -0.01741309091448784, - -0.010717280209064484, - -0.0038787927478551865, - 0.010611102916300297, - 0.03429529815912247, - -0.0030409868340939283, - 0.0036996183916926384, - 0.01932428404688835, - 0.0014010438462719321, - -0.025416212156414986, - 0.007737677078694105, - 0.007677952293306589, - 0.0018249239074066281, - 0.0033313154708594084, - -0.010976087301969528, - 0.03318043425679207, - 0.0011497020022943616, - -0.016112418845295906, - -0.002607982140034437, - -0.0025233719497919083, - -0.0016855660360306501, - -0.01169942133128643, - 0.024633154273033142, - -0.004781300667673349, - 0.012402846477925777, - 0.013657066971063614, - 0.01973572187125683, - -0.01859431527554989, - -0.009111346676945686, - 0.03564905747771263, - 0.03214520588517189, - 0.022031808272004128, - 0.0071205212734639645, - -0.01875358074903488, - -0.012801011092960835, - 0.003666437929496169, - 0.018408505246043205, - -0.0019294421654194593, - -0.03150814026594162, - 0.01977553777396679, - 0.012495751492679119, - -0.010942907072603703, - -0.013398258946835995, - -0.008149114437401295, - 0.005448227282613516, - -0.021394744515419006, - 0.016152234748005867, - -0.0238500963896513, - -0.014493213035166264, - -0.03363168612122536, - 0.01977553777396679, - 0.030658720061182976, - -0.006914802361279726, - -0.016802571713924408, - 0.006334144622087479, - 0.0285086277872324, - -0.016776027157902718, - 0.015634620562195778, - -0.008792814798653126, - 0.002933150390163064, - -0.011360980570316315, - 0.022429972887039185, - 0.004207279067486525, - -0.03426875174045563, - -0.019377373158931732, - -0.006632768549025059, - -0.0019443733617663383, - 0.037586797028779984, - 0.032384105026721954, - 0.005803257692605257, - 0.12889935076236725, - 0.013895966112613678, - -0.011141989380121231, - 0.023106854408979416, - 0.009974038228392601, - 0.018912848085165024, - 0.021845998242497444, - 0.007346148137003183, - 0.012966913171112537, - -0.04499266669154167, - 0.005013563670217991, - -0.0232926644384861, - 0.01750599592924118, - -0.023027220740914345, - -0.009675414301455021, - 0.021208932623267174, - 0.00479125464335084, - 0.006181514821946621, - -0.009151163510978222, - -0.013504436239600182, - 0.035887956619262695, - -0.018819941207766533, - 0.017333459109067917, - 0.01875358074903488, - -0.021806180477142334, - -0.0205055084079504, - 0.011201714165508747, - 0.00040728983003646135, - -0.004482676740735769, - -0.018381960690021515, - -0.01396232657134533, - 0.019045569002628326, - -0.048682332038879395, - -0.02212471328675747, - 0.0180767010897398, - -0.031720492988824844, - -0.0162716843187809, - -0.016138963401317596, - 0.011513610370457172, - -0.008653457276523113, - 0.0034806274343281984, - 0.027314133942127228, - -0.007001071702688932, - -0.022589240223169327, - 0.024779148399829865, - -0.014957739971578121, - -0.004804526921361685, - -0.00024387618759647012, - -0.005657264031469822 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 29, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 735 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000030.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000030.json deleted file mode 100644 index a2830bd711c5ac7ae1d07bea5e44201ed8d85c84..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000030.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000030", - "content": "Dies kann darauf zu- r\u00fcckgef\u00fchrt werden, dass die Ladeboardw\u00e4nde die entstehenden Schallwellen besser d\u00e4mpfen und aufgrund ihres steiferen Materials, den Schall als K\u00f6rperschall besser ab- leiten k\u00f6nnen, wodurch die Schallausbreitung reduziert wird und somit die gesamte L\u00e4rmemission verringert. 59\n7 Ergebnisse und Interpretation\nZusammenfassend l\u00e4sst sich sagen, dass die Schallleistungspegel je nach Flurf\u00f6rderger\u00e4t und Anh\u00e4nger-Typ variieren. Allerdings zeigt sich kein signifikanter Unterschied zwi- schen den Beladevorg\u00e4ngen der Flurf\u00f6rderger\u00e4te, was auf eine gewisse \u00c4hnlichkeit hin- weist. Die maximalen Pegel liegen in einem \u00e4hnlichen Bereich, wobei der h\u00f6chste Wert bei 112,5 dB(A) f\u00fcr den Gabelstapler mit Tautliner-Anh\u00e4nger und der niedrigste Wert bei 103,8 dB(A) f\u00fcr den Gabelhubwagen mit Wechselbr\u00fccken-Anh\u00e4nger liegt. Es ist an- zumerken, dass ein Vorgang betrachtet, der aus drei einzelnen Prozessschritten besteht. Da diese einzelnen Schritte unterschiedlich laut sein k\u00f6nnen, erkl\u00e4rt dies die Variation und Standardabweichung der Ergebnisse. ## 7.2 Statistik\n\nNachdem die Auswertung der Verladeger\u00e4usche abgeschlossen ist, k\u00f6nnen nun die ge- sammelten Informationen systematisch zu analysieren und interpretiert werden. Dabei werden die statistischen Kenngr\u00f6\u00dfen zusammenfassend dargestellt. In der oben aufge- zeigten Tabelle 11, wurden bereits die Standardabweichung mitaufgef\u00fchrt. Die Stan- dardabweichung gibt wie in Kapitel 2.3 beschrieben an, wie stark die durchschnittliche Abweichung vom Mittelwert der akustischen Kenngr\u00f6\u00dfe ist. Eine gro\u00dfe Standardabweichung deutet auf eine gr\u00f6\u00dfere Streuung um den Mittelwert hin. Folglich deutet eine kleine Standardabweichung eine geringe Streuung um den Mit- telwert hin. Die durchschnittliche Standardabweichung der akustischen Kenngr\u00f6\u00dfen liegt bei 5,1 dB, sprich die Messwerte variieren im Durchschnitt um etwa 5,1 dB um den Mittelwert herum. Die Standardabweichung ist bezogen auf eine Freifeldmessung ak- zeptabel, da die Messung in einer offenen Umgebung stattfand, in der starke Reflektio- nen, Schallabsorption, Wind, Umgebungsger\u00e4usche oder andere St\u00f6reinfl\u00fcsse auftreten k\u00f6nnen. Zudem wird ein Vorgang betrachtet, der aus drei einzelnen Prozessschritten besteht. Da diese einzelnen Schritte unterschiedlich laut sein k\u00f6nnen, erkl\u00e4rt dies die Variation und Standardabweichung der Ergebnisse. Zudem k\u00f6nnte die Beladung der La- deeinheiten und der F\u00fcllungsgrad des Anh\u00e4ngers zu gr\u00f6\u00dferen Abweichungen f\u00fchren. Basierend auf der Standardabweichung k\u00f6nnen die Ergebnisse in einem Diagramm visu- alisiert werden. Des Weiteren wurden bei der Messung die Anh\u00e4nger immer von unter-\n60\n7 Ergebnisse und Interpretation\nschiedlichen Personen beladen, welches ebenfalls zu Messungenauigkeiten und Unsi- cherheiten f\u00fchrt, da jedes Lagerpersonal seine eigene Vorgehensweise und Technik hat, was zu Variationen in der L\u00e4rmemission f\u00fchren kann. Die nachfolgenden Diagramme zeigen die Normalverteilung der Beladevorg\u00e4nge in den verschiedenen Anh\u00e4ngertypen. Um die \u00dcbereinstimmung der Verteilung mit der Gau\u00df- schen Glockenkurve zu \u00fcberpr\u00fcfen, wurde ein Fitting durchgef\u00fchrt. Durch das Fitting der Gau\u00dfschen Glockenkurve wird untersucht, wie gut die gemessenen Daten mit einer Normalverteilung \u00fcbereinstimmen. Dabei wird die Glockenkurve an die Daten ange- passt, um zu sehen, ob sie eine gute N\u00e4herung f\u00fcr die Verteilung der Daten darstellt. Eine gute \u00dcbereinstimmung zwischen den Daten und der Gau\u00dfschen Glockenkurve deu- tet darauf hin, dass die Daten eine Normalverteilung aufweisen. Dies ist ein wichtiges Ergebnis, da die Normalverteilung in vielen statistischen Analysen und Modellierungen verwendet wird.", - "embedding": [ - 0.012087151408195496, - 0.014813526533544064, - 0.019421299919486046, - -0.0387105718255043, - -0.001302124815993011, - -0.003092752769589424, - -0.01656949706375599, - -0.014219401404261589, - -0.025270134210586548, - -0.03158106654882431, - 0.004162178374826908, - 0.026577210053801537, - -0.006357141770422459, - 0.010185949504375458, - 0.009406985715031624, - 0.01490594632923603, - 0.029917513951659203, - 0.007373756263405085, - 0.00991529319435358, - -0.005502261221408844, - -0.015500071458518505, - -0.000721614807844162, - -0.009888887405395508, - -0.0005978386616334319, - -0.026920482516288757, - 0.021877016872167587, - 0.03393116220831871, - -0.012054144404828548, - -0.011631655506789684, - 0.005376834888011217, - 0.008991098031401634, - 0.005862037185579538, - -0.023184092715382576, - 0.006607994902879, - -0.01618661731481552, - -0.025151308625936508, - -0.011413808912038803, - -0.013110367581248283, - 0.027673041447997093, - -0.01091870479285717, - 0.017110811546444893, - -0.010555627755820751, - 0.007670818828046322, - -0.031897932291030884, - 0.005756414961069822, - 0.021230081096291542, - 0.011466620489954948, - 0.01180989295244217, - -0.01338102389127016, - 0.014932352118194103, - 0.020688766613602638, - 0.004739800468087196, - -0.009611628949642181, - 0.023184092715382576, - 0.003650570521131158, - 0.007129504811018705, - -0.007479378487914801, - -0.0031208086293190718, - -0.0062944283708930016, - -0.016727929934859276, - -0.029283780604600906, - 0.007155910134315491, - -0.01262186374515295, - 0.012159766629338264, - -0.0217449888586998, - -0.01654309220612049, - -0.001828585984185338, - -0.0010306425392627716, - 0.0018648935947567225, - 0.015222813002765179, - 0.028623640537261963, - 0.0311321709305048, - -0.006736721843481064, - 0.007532189600169659, - 0.017995398491621017, - -0.008192328736186028, - 0.01097151543945074, - 0.00463417824357748, - -0.006766428239643574, - 0.001279019983485341, - 0.02558699995279312, - -0.0328485332429409, - -0.014179793186485767, - 0.0399252250790596, - 0.00909672025591135, - 0.0030432422645390034, - -0.009235349483788013, - 0.006446260493248701, - -0.029415808618068695, - 0.004142374265938997, - -0.00012367297313176095, - 0.02960064820945263, - 0.0022972847800701857, - -0.006301030050963163, - 0.03884259983897209, - -0.006839043460786343, - 0.001419299514964223, - 0.023157687857747078, - -0.0014415793120861053, - -0.035647522658109665, - -0.007624609395861626, - -0.01555288303643465, - 0.0085223987698555, - 0.004297506995499134, - -0.018127426505088806, - -0.005934652406722307, - 0.00048066396266222, - 0.009763460606336594, - 0.004314010497182608, - -0.03366710618138313, - -0.02241833135485649, - 0.016041385009884834, - -0.007037085480988026, - 0.007010679692029953, - 0.013783709146082401, - -0.005921449977904558, - 0.017414474859833717, - -0.020635955035686493, - -0.00025374104734510183, - -0.02067556418478489, - 0.022405128926038742, - 0.014509862288832664, - 0.029732676222920418, - -0.015909356996417046, - 0.021639367565512657, - 0.03562111780047417, - -0.01713721640408039, - 0.009004300460219383, - -0.015302029438316822, - -0.010483012534677982, - -0.029785485938191414, - 0.001731215394102037, - 0.010694256983697414, - 0.004399828612804413, - -0.008317755535244942, - 0.014206198044121265, - 0.00023269910889212042, - 0.0029227668419480324, - -0.01203433983027935, - -0.027092117816209793, - -0.001490264548920095, - -0.0005966009339317679, - -0.029864704236388206, - -0.03950273618102074, - -0.0034558293409645557, - 0.04259219020605087, - 0.02148093469440937, - 0.022801212966442108, - -0.017440881580114365, - 0.006317533552646637, - -0.02466280572116375, - -0.03089452162384987, - 0.02405547723174095, - -0.00098443275783211, - -0.011294984258711338, - 0.006198708433657885, - 0.0018615928711369634, - 0.022959645837545395, - -0.031897932291030884, - -0.007419966161251068, - 0.0066277990117669106, - 0.011704270727932453, - 0.009010901674628258, - -0.0009547265362925828, - 0.018114224076271057, - 0.010496214963495731, - -0.00017988796753343195, - -0.003353507723659277, - 0.00029891933081671596, - -0.024477966129779816, - -0.011499627493321896, - 0.022286303341388702, - -0.019104432314634323, - 0.0258246511220932, - -0.0075916023924946785, - -0.005462653003633022, - 0.010846089571714401, - 0.0014589079655706882, - -0.026260342448949814, - -0.034591302275657654, - -0.019315676763653755, - -0.011948522180318832, - 0.013849723152816296, - 0.0023864037357270718, - -0.02299925498664379, - -0.00979646760970354, - 0.020134249702095985, - 0.025692623108625412, - -0.007347350940108299, - -0.008793056011199951, - -0.014681498520076275, - 0.012166367843747139, - -0.0020249774679541588, - -0.03453848883509636, - -0.6299313306808472, - 0.0017790754791349173, - -0.005281114485114813, - 0.001198978046886623, - 0.004472443833947182, - 0.026735642924904823, - 0.009968103840947151, - 0.016582699492573738, - 0.004795912187546492, - 0.029627053067088127, - -0.002739578252658248, - 0.0047199963591992855, - 0.004033451434224844, - -0.001590110594406724, - -0.0025266832672059536, - -0.02383103035390377, - -0.017784154042601585, - 0.0012798451352864504, - 0.037390291690826416, - 0.008654426783323288, - -0.023804623633623123, - 0.007037085480988026, - -0.0031851723324507475, - 0.005898344796150923, - 0.001828585984185338, - 0.007380357943475246, - 0.02124328352510929, - -0.010311376303434372, - 0.015275624580681324, - -0.021863814443349838, - -0.020688766613602638, - 0.005531967617571354, - -0.02453077770769596, - 0.029072536155581474, - 0.040083661675453186, - 0.003709983080625534, - 0.003838710254058242, - 0.014060967601835728, - 0.010370789095759392, - 0.013757303357124329, - -0.003469032235443592, - -0.014668296091258526, - -0.008403574116528034, - -0.005574876442551613, - -0.012120158411562443, - 0.0028468507807701826, - 0.04885030910372734, - -0.003898122813552618, - 0.005353730171918869, - -0.033772729337215424, - 0.0031208086293190718, - 0.005730009637773037, - 0.020239872857928276, - 0.011671263724565506, - 0.02278801053762436, - -0.006165701430290937, - 0.04660583660006523, - -0.01914404146373272, - -0.02053033374249935, - 0.0140873733907938, - 0.01808781735599041, - -0.00015461700968444347, - -0.007954678498208523, - -0.026379168033599854, - -0.018167033791542053, - 0.009763460606336594, - -0.010714061558246613, - -0.04454620182514191, - 0.01985699124634266, - -0.009539013728499413, - -0.012186172418296337, - 0.01297173835337162, - -0.005498960614204407, - -0.006459463387727737, - 0.03335024043917656, - 0.0375487245619297, - 0.0011420410592108965, - -0.01818023808300495, - -0.000452608015621081, - 0.022127870470285416, - -0.008007490076124668, - 0.008859070017933846, - -0.009010901674628258, - 0.0010025865631178021, - 0.014945554547011852, - -0.00926835648715496, - -0.0028617039788514376, - 0.01795578934252262, - 0.011407207697629929, - 0.0001167621448985301, - 0.015288827009499073, - 0.027805069461464882, - -0.007320945151150227, - -0.020041830837726593, - -0.006726820021867752, - 0.03614922985434532, - -0.01520961057394743, - 0.007598203606903553, - -0.024742022156715393, - -0.019923005253076553, - -0.03158106654882431, - -0.0005400764639489353, - 0.012595458887517452, - -0.01935528591275215, - 0.02796350233256817, - 0.0013334813993424177, - -0.01045660674571991, - -0.002209816360846162, - 0.011776885949075222, - -0.026484789326786995, - 0.008588412776589394, - 0.003676976077258587, - -0.0026273545809090137, - -0.0235009603202343, - 0.005007156636565924, - -0.01818023808300495, - 0.021692179143428802, - -0.0024342637043446302, - 0.0019292571814730763, - -0.008826063014566898, - 0.007677420508116484, - -0.0019127536797896028, - 0.03968757763504982, - -0.016014980152249336, - -0.020728375762701035, - 0.03749591484665871, - 0.026828061789274216, - 0.008859070017933846, - 0.0017741244519129395, - -0.013315009884536266, - 0.012701081112027168, - 0.001269943080842495, - 0.02546817623078823, - -0.014509862288832664, - 0.013486646115779877, - 0.02488725259900093, - 0.03261088207364082, - -0.006624498404562473, - 0.015526477247476578, - -0.034036785364151, - -0.019051620736718178, - 0.006660806015133858, - 0.00903730746358633, - -0.023870637640357018, - -0.013473443686962128, - -0.032346826046705246, - -0.026946887373924255, - 0.01832546852529049, - -0.0045747654512524605, - -0.02042471058666706, - 0.006155799143016338, - -0.026960089802742004, - -0.012945332564413548, - 0.017797356471419334, - 0.003013536101207137, - 0.02311807870864868, - -0.0027478300034999847, - -0.01585654728114605, - 0.004073059652000666, - -0.015011568553745747, - 0.006007268093526363, - 0.007314343936741352, - -0.04277702793478966, - 0.0016222924459725618, - -0.012476633302867413, - -0.01461548451334238, - 0.015618897043168545, - 0.0020414809696376324, - -0.020635955035686493, - -0.027805069461464882, - 0.009888887405395508, - -0.00040742973214946687, - 0.002531634410843253, - 0.00962483137845993, - -0.013024548999965191, - 0.005650792736560106, - -0.01274068932980299, - -0.004835520405322313, - -0.014404240064322948, - -0.026946887373924255, - 0.013493248261511326, - 0.010740467347204685, - -0.023672595620155334, - -0.001025691512040794, - 0.024874050170183182, - 0.01832546852529049, - 0.017414474859833717, - 0.01079987920820713, - -0.021639367565512657, - 0.029415808618068695, - -0.01503797434270382, - 0.015988575294613838, - -0.019685354083776474, - 0.009829474613070488, - -0.03591157868504524, - -0.001087579526938498, - 0.01256905309855938, - -0.0015001666033640504, - 0.009195741266012192, - 0.023870637640357018, - 0.02126968838274479, - -0.004858625587075949, - 0.013301807455718517, - -0.016595901921391487, - 0.018972404301166534, - -0.012186172418296337, - 0.009829474613070488, - -0.016965581104159355, - 0.04858625307679176, - 0.024570386856794357, - 0.02241833135485649, - -0.010298173874616623, - -0.02711852453649044, - -0.004964247811585665, - 0.0020711871329694986, - 0.045840077102184296, - -0.013849723152816296, - -0.0023319420870393515, - 0.03195074200630188, - -0.00495764659717679, - -0.011301585473120213, - -0.0042810034938156605, - 0.028676452115178108, - 0.01960613764822483, - -0.0062185125425457954, - -0.006109589710831642, - -0.01010013185441494, - 0.0217449888586998, - 0.0022659283131361008, - 0.0006535379216074944, - 0.002142152050510049, - 0.010661249980330467, - 0.009472999721765518, - 0.00687205046415329, - 0.012166367843747139, - 0.024491168558597565, - 0.011050732806324959, - 0.0033931161742657423, - 0.03208277001976967, - 0.013050954788923264, - 0.017916182056069374, - 0.017124013975262642, - -0.0023682499304413795, - -0.00543624721467495, - 0.01608099415898323, - -0.01631864346563816, - 0.0018170335097238421, - 0.028702858835458755, - -0.012139962054789066, - -0.002384753432124853, - -0.00577951967716217, - 0.011710871942341328, - -0.013189584016799927, - -0.011360998265445232, - 0.013770506717264652, - -0.017057999968528748, - 0.03794480860233307, - -0.009103321470320225, - 0.008779853582382202, - 0.01597537100315094, - 0.02008143812417984, - 0.02664322406053543, - 0.02688087336719036, - -0.02373860962688923, - -0.015315232798457146, - 0.009189139120280743, - -0.021546948701143265, - -0.027197740972042084, - -0.003620864124968648, - -0.0023500961251556873, - 0.0006201184005476534, - -0.005786121357232332, - 0.014192995615303516, - 0.0012806702870875597, - 0.02150733955204487, - -0.010997921228408813, - -0.007585000712424517, - 0.03276931494474411, - 0.018127426505088806, - 0.028438802808523178, - -0.011757081374526024, - -0.018457496538758278, - 0.006360442377626896, - 0.019764572381973267, - -0.01678074151277542, - -0.011935318820178509, - -0.011479822918772697, - 0.012483234517276287, - -0.03242604434490204, - -0.002264278009533882, - -0.02265598252415657, - 0.010555627755820751, - -0.0018566418439149857, - -0.010067124851047993, - 0.01737486757338047, - 0.009631432592868805, - 0.0082187345251441, - 0.011895710602402687, - 0.008192328736186028, - 0.007063490804284811, - -0.0012534395791590214, - -0.02606230042874813, - -0.014826728962361813, - -0.021533744409680367, - 0.018510306254029274, - 0.005862037185579538, - -0.019685354083776474, - -0.02335572987794876, - 0.009690845385193825, - -0.008707237429916859, - -0.022589968517422676, - 0.006743323057889938, - -0.008502594195306301, - 0.008066902868449688, - -0.015882952138781548, - 0.007327546365559101, - 0.0024326134007424116, - 0.00384531170129776, - 0.04745081439614296, - 0.011882508173584938, - -0.022735198959708214, - -0.018972404301166534, - 0.007928273640573025, - -0.0006910833762958646, - 0.007611406501382589, - 0.012232381850481033, - 0.01214656326919794, - 0.018299061805009842, - -0.0010364187182858586, - -0.01585654728114605, - 0.002622403437271714, - -0.017163623124361038, - 0.01843108981847763, - 0.027805069461464882, - 0.005284415557980537, - -0.009875684045255184, - 0.03158106654882431, - -0.023699002340435982, - -1.0733710951171815e-05, - -0.004782709293067455, - 0.0018896488472819328, - -0.01474751252681017, - 0.019923005253076553, - -0.0011659710435196757, - -0.02220708690583706, - -0.010364187881350517, - -0.006409952882677317, - 0.043622005730867386, - -0.004287605173885822, - -0.014853134751319885, - 0.027224145829677582, - 0.024649603292346, - 0.007809448521584272, - -0.020596347749233246, - -0.0027148230001330376, - 0.028385991230607033, - 0.019421299919486046, - 0.03675655648112297, - -0.017440881580114365, - -0.0037925003562122583, - -0.0017180126160383224, - -0.008641223423182964, - 0.014958756975829601, - -0.013163178227841854, - -0.0002362061059102416, - 0.009882286190986633, - 0.01274068932980299, - -0.008476189337670803, - 0.030920926481485367, - 0.007030483800917864, - -0.005274513270705938, - 0.014641890302300453, - -0.010278369300067425, - -0.014457051642239094, - 0.025903867557644844, - -0.02266918495297432, - -0.00833095796406269, - 0.009083516895771027, - 0.009367377497255802, - -0.0328485332429409, - 0.00275773205794394, - -0.014021359384059906, - -0.0024359142407774925, - -0.012892520986497402, - -0.02359337918460369, - -0.013994953595101833, - 0.01736166514456272, - -0.012945332564413548, - -0.03451208397746086, - -0.02735617384314537, - -0.02735617384314537, - -0.012186172418296337, - -0.006046876311302185, - 0.025441769510507584, - 0.00293431943282485, - -0.03144903853535652, - -0.033772729337215424, - -0.012701081112027168, - 0.01680714823305607, - 0.005944554693996906, - 0.021573353558778763, - -0.002848501317203045, - -0.02299925498664379, - 0.0032643890008330345, - -0.0108724944293499, - -0.013968548737466335, - -0.015354841016232967, - -0.01357246469706297, - -0.010080327279865742, - 0.00809330865740776, - -0.02100563421845436, - 0.004918037913739681, - 0.00293431943282485, - 0.006766428239643574, - -0.005677198059856892, - 0.015830140560865402, - 0.007796245627105236, - -0.0020876906346529722, - 0.00499065313488245, - 0.009373978711664677, - 0.015170001424849033, - 0.016833553090691566, - 0.023210499435663223, - -0.02596988156437874, - 0.01738807000219822, - -0.02033229172229767, - -0.006792833562940359, - -0.009367377497255802, - 0.01169106736779213, - 0.00043115351581946015, - -0.01209375262260437, - 0.012674675323069096, - 0.009935096837580204, - 0.01961934007704258, - -0.0025382356252521276, - -0.017810558900237083, - -0.008403574116528034, - 0.009552216157317162, - -0.0017279146704822779, - 0.0029821794014424086, - 0.013849723152816296, - 0.018985606729984283, - 0.021903423592448235, - 0.010436803102493286, - -0.007743434514850378, - -0.028016313910484314, - 0.04143034294247627, - -0.00651887571439147, - -0.006268023047596216, - 0.03707342594861984, - -0.012833108194172382, - -0.0016602504765614867, - -0.029679864645004272, - -0.004452639725059271, - 0.013374422676861286, - 0.008271546103060246, - -0.0010917054023593664, - -0.00827814731746912, - -0.01543405745178461, - -0.01808781735599041, - 0.010879096575081348, - 0.00522170215845108, - -0.022378724068403244, - -0.00833095796406269, - -0.025692623108625412, - 0.02009464055299759, - -0.005393338389694691, - -0.009195741266012192, - 0.006502372212707996, - -0.02301245741546154, - -0.029046131297945976, - 0.01285291276872158, - -0.017757747322320938, - 0.025217322632670403, - -0.008601615205407143, - -0.00287985778413713, - -0.027567418292164803, - -0.016595901921391487, - -0.00537353428080678, - -0.016727929934859276, - 0.01948731392621994, - -0.006924861576408148, - 0.025560595095157623, - 0.019447704777121544, - 0.03496097773313522, - -0.00030552074895240366, - -0.007116301916539669, - 0.0012806702870875597, - -0.007565196603536606, - -0.015460463240742683, - -0.028702858835458755, - -0.01133459247648716, - -0.024808036163449287, - 0.02912534773349762, - 0.019936207681894302, - 0.0016833553090691566, - 0.005558373406529427, - 0.01737486757338047, - 0.017005188390612602, - 0.04871828109025955, - -0.02076798304915428, - -0.006221813149750233, - -0.01585654728114605, - -0.02290683425962925, - 0.003077899571508169, - -0.0037165845278650522, - 0.006149197928607464, - 0.012918926775455475, - -0.020041830837726593, - -0.006360442377626896, - 0.019408095628023148, - -0.035753145813941956, - -0.020239872857928276, - -0.014602282084524632, - 0.003574654459953308, - -0.03723185881972313, - 0.029283780604600906, - 0.025890665128827095, - -0.005198597442358732, - 0.0025811446830630302, - -0.019817382097244263, - -0.02033229172229767, - -0.0282011516392231, - -0.002691718051210046, - 0.0008837615605443716, - 0.020160654559731483, - -0.008377168327569962, - -0.0015306980349123478, - 0.008344161324203014, - -0.01410057581961155, - 0.006251519545912743, - -0.015605693683028221, - -0.006571686826646328, - -0.015156798996031284, - -0.027197740972042084, - -0.0317394994199276, - -0.007254931144416332, - -0.017044797539711, - 0.006845644675195217, - 0.003871717257425189, - 0.01728244684636593, - 0.024913659319281578, - -0.015077582560479641, - -0.0044394368305802345, - 0.008007490076124668, - -0.0027940396685153246, - 0.01773134246468544, - -0.0015554532874375582, - 0.033297426998615265, - 0.01973816566169262, - -0.02067556418478489, - -0.011545836925506592, - -0.05566294863820076, - 0.025864258408546448, - -0.01279349997639656, - 0.022814415395259857, - 0.006472666282206774, - -0.021190471947193146, - -0.0013244044966995716, - 0.0024144595954567194, - 0.010060523636639118, - 0.003142263274639845, - -0.008799657225608826, - 0.03908024728298187, - 0.016635511070489883, - -0.008793056011199951, - -0.014153387397527695, - 1.4466334505414125e-05, - -0.004347017500549555, - -0.006353841163218021, - 0.010080327279865742, - 0.002652109833434224, - -0.0025332847144454718, - 0.0005520415143109858, - -0.004703492857515812, - 0.04018928110599518, - 0.007565196603536606, - 0.03229401633143425, - 0.014126981608569622, - -0.019817382097244263, - -0.009156132116913795, - -0.021111255511641502, - -0.021546948701143265, - 0.00590164540335536, - -0.015051176771521568, - 0.0517021119594574, - -0.002034879522398114, - -0.012067346833646297, - 0.014707904309034348, - 0.0019705158192664385, - -0.012087151408195496, - -0.005713506136089563, - -0.0005681324400939047, - 0.016503483057022095, - -0.017322055995464325, - 0.009334370493888855, - 0.03179230913519859, - -0.000993509660474956, - 0.0019111033761873841, - 0.001008362858556211, - -0.00025848581572063267, - -0.00833095796406269, - 7.509085116907954e-05, - -0.01774454489350319, - -0.007149308919906616, - 0.0199626125395298, - -0.0187875647097826, - -0.0021091452799737453, - -0.014628687873482704, - -0.019236460328102112, - -0.0016000127652660012, - -0.02581144869327545, - 0.024504372850060463, - -0.03356148302555084, - -0.004753003362566233, - -0.0011998031986877322, - 0.02256356179714203, - 0.03250525891780853, - -0.015222813002765179, - -0.026445182040333748, - -0.014536268077790737, - 0.030709682032465935, - -0.031422633677721024, - 0.011136550456285477, - 0.034221623092889786, - -0.0032874939497560263, - -0.017770951613783836, - 0.010403796099126339, - 0.006244917865842581, - -0.01245022751390934, - 0.017110811546444893, - -0.01622622460126877, - -0.01668832264840603, - -0.013202786445617676, - -0.009539013728499413, - 0.02711852453649044, - -0.028359586372971535, - -0.016358252614736557, - 0.014219401404261589, - 0.016754336655139923, - 0.010766872204840183, - -0.009763460606336594, - -0.005158988758921623, - 9.819572733249515e-05, - 0.013519653119146824, - -0.008383769541978836, - 0.03155466169118881, - -0.011704270727932453, - 0.014417443424463272, - 0.0070172809064388275, - -0.007188917137682438, - -0.006997476797550917, - -0.03501379117369652, - -0.022114668041467667, - 0.016371455043554306, - 0.008515797555446625, - -0.029415808618068695, - -0.005918148905038834, - -0.025877462700009346, - -0.028253963217139244, - -0.016160210594534874, - 0.001666851807385683, - -0.0007967056590132415, - 0.024623196572065353, - 0.024689210578799248, - -0.0001047971163643524, - 0.0026702636387199163, - 0.0287820752710104, - -0.008944887667894363, - -0.021784598007798195, - 0.026379168033599854, - 0.0017015091143548489, - -0.023461351171135902, - 0.010172747075557709, - -0.010218956507742405, - 0.018589522689580917, - 0.013090563006699085, - -0.024728819727897644, - 0.001828585984185338, - 0.01843108981847763, - -0.03041922114789486, - -0.018945999443531036, - -0.0134998494759202, - 0.01689956709742546, - 0.0023913546465337276, - 0.01256905309855938, - -0.014523065648972988, - 0.03662452846765518, - 0.004861926194280386, - 0.030736086890101433, - -0.02769944630563259, - -0.021164067089557648, - -0.004545059520751238, - -0.007994287647306919, - 0.010047320276498795, - -0.019289271906018257, - -0.03699420765042305, - -0.0011164606548845768, - 0.03379913419485092, - 0.006400051061064005, - 0.018035005778074265, - 0.028042718768119812, - 0.0021239982452243567, - -0.015579287894070148, - 0.001281495438888669, - 0.013876128941774368, - 0.030366409569978714, - -0.006086484529078007, - 0.00022609771986026317, - -0.017665328457951546, - 0.00059082469670102, - 0.002142152050510049, - 0.0077500357292592525, - -0.03041922114789486, - -0.005538568831980228, - 0.015064379200339317, - -0.00596105819568038, - -0.006971071474254131, - 0.017203230410814285, - -0.018114224076271057, - -0.005446149501949549, - 0.002945871790871024, - 0.027329768985509872, - 0.012595458887517452, - -0.030551249161362648, - 0.007479378487914801, - 0.019672151654958725, - -0.013770506717264652, - -0.014853134751319885, - 0.009941698051989079, - -0.03335024043917656, - -0.004838821478188038, - 0.006195407826453447, - -0.02851801924407482, - -0.0043338146060705185, - -0.00945319514721632, - 0.01903841830790043, - -0.007868860848248005, - -0.008020692504942417, - -0.04642099887132645, - -0.026854468509554863, - -0.03136982023715973, - 0.04050615057349205, - 0.00745957437902689, - -0.007142707705497742, - 0.0017774251755326986, - 0.002310487674549222, - -0.025745434686541557, - 0.001567005761899054, - -0.02455718256533146, - -0.0010570480953902006, - -0.026260342448949814, - -0.011261977255344391, - 0.009116523899137974, - -0.0140873733907938, - 0.00023538092500530183, - 0.0013219290412962437, - -0.010905501432716846, - -0.025111699476838112, - -0.01795578934252262, - 0.18980325758457184, - -0.03150184825062752, - -0.015222813002765179, - 0.013783709146082401, - -0.02912534773349762, - -0.0223259124904871, - 0.019672151654958725, - -0.011314787901937962, - 0.0029706270433962345, - 0.024821238592267036, - 0.0030580954626202583, - 0.011869304813444614, - 0.010661249980330467, - 0.0027956899721175432, - 0.016727929934859276, - -0.016978783532977104, - -0.05191335827112198, - -0.0074991825968027115, - -0.0035581509582698345, - 0.038129646331071854, - 0.027065712958574295, - -0.030841710045933723, - -0.010225558653473854, - -0.017414474859833717, - 0.028227558359503746, - 0.016041385009884834, - -0.005059968214482069, - 0.0067235189490020275, - 0.03620203956961632, - 0.028121935203671455, - -0.022339114919304848, - -0.012159766629338264, - 0.01161845214664936, - -0.01427221205085516, - 0.0009159432956948876, - 0.002724725054576993, - 0.005693701561540365, - -0.017797356471419334, - 0.01724283955991268, - 0.02865004725754261, - 0.012707682326436043, - -0.030551249161362648, - -0.022259898483753204, - -0.030841710045933723, - 0.005581478122621775, - 0.017454084008932114, - 0.006446260493248701, - -0.0017378168413415551, - 0.01338762603700161, - -0.01239741686731577, - -0.014707904309034348, - 0.012549248524010181, - 0.018589522689580917, - 0.042222511023283005, - -0.010251963511109352, - -0.03155466169118881, - 0.001237761229276657, - -0.01175048016011715, - 0.022233493626117706, - 0.009274957701563835, - -0.02560020424425602, - 0.017546502873301506, - -0.019434502348303795, - 0.03839370235800743, - -0.025217322632670403, - 0.013942142948508263, - -0.006568386219441891, - 0.007961280643939972, - -0.0063340370543301105, - -0.031660281121730804, - 0.0034063190687447786, - -0.010416998527944088, - -0.032003555446863174, - 0.007598203606903553, - -0.02875566855072975, - -0.035753145813941956, - 0.0065353792160749435, - 0.0034822348970919847, - 0.03440646082162857, - 0.016741134226322174, - 0.013546058908104897, - -0.009908691048622131, - -0.010753669776022434, - 0.00018050684593617916, - -0.009466397576034069, - -0.015196407213807106, - 0.003924528136849403, - 0.020464319735765457, - 0.02746179699897766, - -0.028676452115178108, - -0.017704937607049942, - 0.006152498535811901, - -0.006297729443758726, - -0.004538457840681076, - 0.012331402860581875, - -0.013849723152816296, - 0.017770951613783836, - -0.004195185378193855, - -0.011354396119713783, - 0.0024854245129972696, - -0.017454084008932114, - 0.0517021119594574, - 0.03770715743303299, - -0.006096386816352606, - -0.01198152918368578, - 0.0041753812693059444, - -0.004254598170518875, - 0.025653013959527016, - -0.0008639573352411389, - -0.004769506864249706, - -0.007604805286973715, - -0.02912534773349762, - 0.017704937607049942, - -0.019328879192471504, - 0.018840376287698746, - 0.013717695139348507, - 0.008911880664527416, - 0.013519653119146824, - -0.008099909871816635, - 0.0070436866953969, - -0.0117372777312994, - -0.007901867851614952, - 0.016054589301347733, - -3.143397771054879e-05, - 0.012232381850481033, - -0.03683577477931976, - -0.029415808618068695, - 0.029917513951659203, - 0.000452608015621081, - 0.005083072930574417, - 0.023052064701914787, - -0.028359586372971535, - 0.027989907190203667, - -0.002289033029228449, - 0.013288605026900768, - 0.006452862173318863, - -0.017559707164764404, - -0.03842011094093323, - -0.008661027997732162, - -0.0035812559071928263, - 0.02725055254995823, - 0.0011742227943614125, - 0.009710649959743023, - 0.006631099618971348, - 0.0079348748549819, - -0.0040499549359083176, - 0.023685799911618233, - -0.004640779457986355, - -0.025798244401812553, - -0.024385547265410423, - -0.02830677479505539, - -0.008647825568914413, - -0.0054956600069999695, - -0.0164374690502882, - 0.02313128300011158, - 0.021230081096291542, - -0.03041922114789486, - -0.023672595620155334, - 0.013625276274979115, - 0.016595901921391487, - -0.03100014291703701, - -0.0158433448523283, - 0.00687205046415329, - -0.022497547790408134, - 0.004376723896712065, - -0.006924861576408148, - -0.16646073758602142, - 0.01667512021958828, - 0.014219401404261589, - -0.0181934405118227, - 0.024874050170183182, - -0.004809115082025528, - 0.013664884492754936, - 0.010080327279865742, - -0.02688087336719036, - -0.0033766126725822687, - 0.028148341923952103, - 0.0059478553012013435, - -0.008812859654426575, - -0.017322055995464325, - -0.012503039091825485, - -0.030155165120959282, - -0.011948522180318832, - 0.03984601050615311, - 0.02925737574696541, - 0.03089452162384987, - 0.00769062340259552, - -0.02490045502781868, - 0.016490280628204346, - -0.0006407477194443345, - -0.0014531316701322794, - 0.013638478703796864, - -0.0193948931992054, - 0.04034771770238876, - -0.009136328473687172, - -0.025190917775034904, - -0.021520541980862617, - 0.006508973892778158, - 0.00628452654927969, - -0.007182315923273563, - -0.003412920283153653, - -0.004142374265938997, - -0.0015323484549298882, - -0.013400828465819359, - -0.0035119412932544947, - 0.038472920656204224, - 0.013783709146082401, - 0.03440646082162857, - -0.01144681591540575, - 0.02255035936832428, - 0.007235127035528421, - 0.02830677479505539, - 0.015011568553745747, - -0.017295651137828827, - -0.004436136223375797, - -0.016516685485839844, - 0.0006667406996712089, - -0.016397861763834953, - -0.0018417887622490525, - 0.024808036163449287, - -0.011360998265445232, - 0.015896154567599297, - 0.002960724988952279, - 0.016252629458904266, - -0.004545059520751238, - -0.004564863629639149, - 0.0031934240832924843, - -0.023672595620155334, - -0.006687211338430643, - 0.012522842735052109, - -0.008053699508309364, - -0.020741578191518784, - -0.016965581104159355, - 0.024359140545129776, - -0.022523954510688782, - -0.013031150214374065, - -0.013678086921572685, - -0.028808480128645897, - 0.016582699492573738, - -0.016635511070489883, - 0.010991320013999939, - 0.02619432844221592, - -0.0050038560293614864, - -0.007182315923273563, - 0.002269228920340538, - -0.004498849622905254, - -0.015605693683028221, - 0.04966888204216957, - 0.007855658419430256, - -0.025402162224054337, - -0.03736388683319092, - -0.016978783532977104, - -0.010053922422230244, - 0.030683275312185287, - -0.011948522180318832, - 0.004224891774356365, - 0.023632988333702087, - -0.026471586897969246, - -0.025309741497039795, - -0.03678296506404877, - 0.01057543233036995, - -0.0012394116492941976, - 0.01262186374515295, - -0.002742878859862685, - -0.020055033266544342, - -0.00011181109584867954, - -0.0008953139767982066, - -0.009499404579401016, - -0.03147544339299202, - 0.03028719313442707, - 0.009591824375092983, - 0.00033914658706635237, - -0.03131701052188873, - 0.011611850932240486, - 0.04887671768665314, - -0.016279036179184914, - -0.024808036163449287, - -0.008403574116528034, - 0.012159766629338264, - 0.007835853844881058, - -0.012654870748519897, - 0.014338226057589054, - -0.006390148773789406, - -0.020028626546263695, - 0.015711316838860512, - 0.004102766048163176, - 0.0539729930460453, - -0.016859957948327065, - 0.009420188143849373, - 0.009175936691462994, - -0.005225002765655518, - -0.030604058876633644, - -0.10240081697702408, - -0.007763238623738289, - 0.024689210578799248, - 0.009585223160684109, - 0.018813971430063248, - 0.011829696595668793, - 0.010733865201473236, - 0.013810114935040474, - 0.021045241504907608, - 0.04605131968855858, - -0.020517131313681602, - -0.02266918495297432, - -0.023448148742318153, - -0.0036142629105597734, - 0.024121491238474846, - -0.00986908283084631, - 0.007023882586508989, - -0.011453417129814625, - -0.026154721155762672, - 0.037759970873594284, - -0.010350984521210194, - -0.003759493585675955, - 0.009057112038135529, - -0.0026025993283838034, - -0.032822128385305405, - -0.009433391503989697, - -0.03725826367735863, - 0.010205754078924656, - 0.022972848266363144, - -0.004653982352465391, - 0.04047974571585655, - -0.011116746813058853, - 0.0027527809143066406, - -0.016978783532977104, - -0.014285415410995483, - -0.013427234254777431, - -0.022695589810609818, - -0.004007045645266771, - 0.02875566855072975, - -0.017770951613783836, - 0.0025151309091597795, - 0.014945554547011852, - 0.013783709146082401, - -0.0205435361713171, - -0.013546058908104897, - -0.026471586897969246, - -0.022946443408727646, - 0.008832664228975773, - -0.0019111033761873841, - -0.0005660695023834705, - -0.03802402690052986, - -0.028702858835458755, - -0.033059779554605484, - 0.019183648750185966, - 0.034696921706199646, - 0.00042909057810902596, - -0.00019587572023738176, - -0.007076693698763847, - -0.0140873733907938, - 0.006489169783890247, - -0.02303886227309704, - 0.02055673860013485, - -0.02418750524520874, - 0.03361429646611214, - 8.370360592380166e-05, - -0.014866338111460209, - -0.019315676763653755, - -0.0023269911762326956, - 0.007413364481180906, - 0.011842899955809116, - -0.024570386856794357, - -0.001982068410143256, - -0.006129393819719553, - 0.012476633302867413, - -0.02570582553744316, - 0.010562228970229626, - -0.04742440953850746, - -0.009413586929440498, - 0.009413586929440498, - -0.00903730746358633, - -0.007089896593242884, - -0.01759931445121765, - 0.02772585116326809, - -0.013288605026900768, - 0.035040196031332016, - 0.026352761313319206, - 0.002874906873330474, - -0.010225558653473854, - 0.016582699492573738, - -0.010879096575081348, - -0.013182982802391052, - 0.028227558359503746, - 0.013315009884536266, - -0.005092974752187729, - -0.029415808618068695, - 0.02421391010284424, - -0.0054032402113080025, - 0.008212133310735226, - -0.004142374265938997, - -0.0003492549585644156, - -0.02124328352510929, - 0.0014118730323389173, - -0.0387897863984108, - 0.015909356996417046, - 0.021995842456817627, - 0.012324801646173, - -0.01798219606280327, - 2.5706108317535836e-06, - 0.019672151654958725, - 0.014681498520076275, - 0.010951711796224117, - -0.0019672152120620012, - 0.009803068824112415, - 0.009479600936174393, - -0.017704937607049942, - -0.010067124851047993, - -0.030234381556510925, - -0.03614922985434532, - -0.006819239351898432, - 0.020992429926991463, - 0.0042512970976531506, - 0.010819683782756329, - 0.0029821794014424086, - 0.011757081374526024, - -0.00745957437902689, - 0.02561340667307377, - -0.03984601050615311, - -0.0082187345251441, - -0.008727042004466057, - -0.004485646728426218, - -0.002495326567441225, - -0.004789310973137617, - -0.005508862901479006, - -0.010641446337103844, - -0.005822428967803717, - 0.00654858211055398, - -0.007842455059289932, - -0.023672595620155334, - 0.009274957701563835, - 0.037179045379161835, - 0.02561340667307377, - 0.039634764194488525, - -0.0246760081499815, - -0.027752257883548737, - 0.006003967020660639, - -0.03313899412751198, - -0.0022411730606108904, - 0.004221591167151928, - 0.008099909871816635, - 0.0027610326651483774, - 0.010430201888084412, - 0.006327435374259949, - 0.025626609101891518, - 0.015302029438316822, - 0.021441325545310974, - -0.02301245741546154, - 0.010694256983697414, - 0.007155910134315491, - 0.002893060678616166, - -0.009486202150583267, - 0.0164374690502882, - -0.02092641592025757, - 0.03746950998902321, - 2.3633503587916493e-05, - -0.0001746274792822078, - -0.013598870486021042, - 0.0024821239057928324, - -0.00484872329980135, - -0.01975136809051037, - -0.011123348027467728, - -0.0009159432956948876, - -0.01292552798986435, - -0.007386959157884121, - -0.003327102167531848, - 0.018510306254029274, - 0.025098497048020363, - -0.012786898761987686, - 0.0013095514150336385, - 0.00251017976552248, - 0.007664217613637447, - -0.007479378487914801, - 0.009954901412129402, - 0.005663995631039143, - 0.011176158674061298, - -0.011671263724565506, - -0.0011899011442437768, - 0.028491614386439323, - 0.004601171240210533, - -0.014047765173017979, - -0.009822873398661613, - 0.0007624609279446304, - -0.0005124331801198423, - -0.014998365193605423, - 0.02899331972002983, - -0.004601171240210533, - 0.01796899177134037, - 0.012707682326436043, - 0.03321821242570877, - 0.0025547391269356012, - -0.015394449234008789, - 0.03456489369273186, - 0.034327246248722076, - 0.006380246486514807, - 0.012060745619237423, - -0.01890639029443264, - -0.02746179699897766, - -0.004317311104387045, - 0.013050954788923264, - -0.0033931161742657423, - -0.043622005730867386, - 0.007406763266772032, - 0.020728375762701035, - 0.0001283145829802379, - -0.00926835648715496, - -0.008357363753020763, - 0.0016305441968142986, - -0.01109034102410078, - 0.018338670954108238, - -0.025573797523975372, - -0.017190027981996536, - -0.031977150589227676, - 0.017295651137828827, - 0.024279924109578133, - -0.006743323057889938, - -0.017348460853099823, - 0.01150622870773077, - 0.018008600920438766, - -0.01285291276872158, - 0.019315676763653755, - -0.010133138857781887, - 0.003436025232076645, - -0.0052976179867982864, - 0.005611184518784285, - 0.0008284748764708638, - -0.027778662741184235, - -0.008344161324203014, - 0.005215100944042206, - -0.01820664294064045, - 0.023870637640357018, - 0.022721996530890465, - -0.0024177602026611567, - 0.13107725977897644, - 0.012555849738419056, - -0.012879318557679653, - 0.03218839317560196, - 0.004205087665468454, - 0.021282892674207687, - 0.018391482532024384, - 0.00787546206265688, - 0.009756859391927719, - -0.055346082895994186, - 0.002960724988952279, - -0.030498437583446503, - 0.007287938147783279, - -0.027329768985509872, - -0.0054956600069999695, - 0.02865004725754261, - 0.0015265721594914794, - 0.014430645853281021, - -0.015777330845594406, - -0.014285415410995483, - 0.034459274262189865, - -0.03382553905248642, - 0.006301030050963163, - 0.031158575788140297, - -0.01726924441754818, - -0.019685354083776474, - 0.012588856741786003, - -0.0002807654964271933, - 0.00850919634103775, - -0.021071648225188255, - -0.005281114485114813, - 0.011532634496688843, - -0.05006496608257294, - -0.03031359799206257, - 0.015407651662826538, - -0.03261088207364082, - -0.0034591301809996367, - -0.03221479803323746, - 0.002566291717812419, - 0.012786898761987686, - 0.002175159053876996, - 0.035779550671577454, - -0.014377834275364876, - -0.017520098015666008, - 0.004993954207748175, - -0.010344383306801319, - -0.008410175330936909, - -0.00040949266985990107, - -0.012542647309601307 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 30, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 483 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000031.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000031.json deleted file mode 100644 index 8103d1684ff28aad5514f2751f0bacc1a24d1bee..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000031.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000031", - "content": "Eine gute \u00dcbereinstimmung zwischen den Daten und der Gau\u00dfschen Glockenkurve deu- tet darauf hin, dass die Daten eine Normalverteilung aufweisen. Dies ist ein wichtiges Ergebnis, da die Normalverteilung in vielen statistischen Analysen und Modellierungen verwendet wird. In Diagramm 1 ist die Normalverteilung des st\u00fcndlichen Schallleistungspegel der Gabel- stapler Beladung in einen Koffer-Anh\u00e4nger dargestellt. [IMAGE: Normalverteilung Gabelstapler - Koffer 0,09 0,08 0,05 H\u00e4ufigkeit [%] 0,904 0 Y 60,0 65,0 70,0 75,0 80,0 85,0 90,0 95,0 st\u00fcndlicher Schallleistungspegel LWA,1h [dB[A)| \u00a9 Messdaten Mittelwert Kto fe Gau\u00dfsche Glockenkurve]\n\nDiagramm 1: Normalverteilung Gabelstapler \u2013 Koffer Anh\u00e4nger Beladung\nMit: \u03bc: Erfahrungswert, \u03c3: Standardabweichung\n61\n7 Ergebnisse und Interpretation\nDer h\u00f6chste Punkt der Normalverteilung repr\u00e4sentiert den energetischen Mittelwert des st\u00fcndlichen Schallleistungspegels von 74,6 dB(A). Die Standardabweichung s von 4,8 dB gibt an, wie weit die einzelnen Messwerte um den Mittelwert herumliegen. Ungef\u00e4hr 68,3% aller Messwerte liegen innerhalb einer Spanne von einer Standardabweichung um den Mittelwert herum. In diesem Fall befinden sich die Messwerte im Bereich von 69,7 bis 79,4 dB(A), welches einen gro\u00dfen Bereich abdeckt. Die Messpunkte, die niedri- ger als der Mittelwert liegen, sind dichter auf der Gau\u00dfschen Glockenkurve verteilt als diejenigen, die gr\u00f6\u00dfer als der Mittelwert sind. Dies bedeutet, dass die Wahrscheinlich- keit, einen Messpunkt zu finden, der niedriger als der Mittelwert ist, h\u00f6her ist als die Wahrscheinlichkeit, einen Messpunkt zu finden, der gr\u00f6\u00dfer als der Mittelwert ist. Die Messdaten haben eine sehr gute \u00dcbereinstimmung mit der normalen Verteilung. Dies bedeutet, dass die Beladevorg\u00e4nge einem bestimmten Muster folgen und keine signifi- kanten Ausrei\u00dfer oder Abweichungen auftreten. Folglich sind die Messungen konsistent und zuverl\u00e4ssig. In Diagramm 2 ist die Normalverteilung des st\u00fcndlichen Schallleistungspegel eines Ga- belstapler Beladevorgang in einer Wechselbr\u00fccke dargestellt. [IMAGE: Normalverteilung Gabelstapler - Wechselbr\u00fccke 022 01 A 0,08 R 0,06 E3 0,4 0,02 0 60,0 65,0 70,0 750 80,0 850 st\u00fcndlicher Schallleistungspegel LWA,1h [dB{A)I \u00a9 Messdaten Mittelwert uto wo Gau\u00dfsche]\n\nDiagramm 2: Normalverteilung Gabelstapler \u2013 Wechselbr\u00fccke Beladung\n62\n7 Ergebnisse und Interpretation\n\n## Mit: \u03bc: Erfahrungswert, \u03c3: Standardabweichung\n\nDie Ergebnisse f\u00fcr den Fall \u201eWechselbr\u00fccke\u201c, sind mit Bedacht zu interpretieren, da diese eine geringe Anzahl an Einzelereignissen aufweist. Der h\u00f6chste Punkt der Normal- verteilung repr\u00e4sentiert den energetischen Mittelwert des st\u00fcndlichen Schallleistungs- pegels von 73,2 dB(A). Die Standardabweichung s von 4,0 dB gibt an, wie weit die ein- zelnen Messwerte um den Mittelwert herumliegen. Ungef\u00e4hr 68,3% aller Messwerte liegen innerhalb einer Spanne von 69,2 bis 77,2 dB(A), welches einen gro\u00dfen Bereich abdeckt. Die Messdaten haben eine sehr gute \u00dcbereinstimmung mit der normalen Ver- teilung. Dies bedeutet, dass die Beladevorg\u00e4nge einem bestimmten Muster folgen und keine signifikanten Ausrei\u00dfer oder Abweichungen auftreten. Folglich sind die Messun- gen konsistent und zuverl\u00e4ssig. In Diagramm 3 ist die Normalverteilung des st\u00fcndlichen Schallleistungspegel eines Ga- belstapler Beladevorgang in einem Tautliner dargestellt. [IMAGE: Normalverteilung Gabelstapler - Tautliner H\u00e4ufigkeit [%] 0 v 60,0 65,0 70,0 75,0 80,0 85,0 90,0 st\u00fcndlicher Schallleistungspegel LWA,1h [dB(A] @ Messdaten > Mittelwert Wo \u20ac&>uo Gau\u00dfsche Glockenkurve]\n\nDiagramm 3: Normalverteilung Gabelstapler \u2013 Tautliner Beladung\nMit: \u03bc: Erfahrungswert, \u03c3: Standardabweichung\nDer h\u00f6chste Punkt der Normalverteilung repr\u00e4sentiert den energetischen Mittelwert des st\u00fcndlichen Schallleistungspegels von 71,6 dB(A). Die Standardabweichung s von 4,8\n63\n7 Ergebnisse und Interpretation\ndB gibt an, wie weit die einzelnen Messwerte um den Mittelwert herumliegen. Ungef\u00e4hr 68,3% aller Messwerte liegen innerhalb einer Spanne von 66,8 bis 76,4 dB(A), welches einen gro\u00dfen Bereich abdeckt. Die Messpunkte niedriger und h\u00f6her als der Mittelwert sind hier gleichm\u00e4\u00dfig auf der Gau\u00dfschen Glockenkurve verteilt.", - "embedding": [ - 0.01140451431274414, - 0.01379028707742691, - 0.02257307432591915, - -0.029022524133324623, - -0.0032214478123933077, - 0.008972862735390663, - -0.00846817996352911, - -0.002733150962740183, - -0.017080554738640785, - -0.04488397389650345, - 0.02001689001917839, - 0.03670418635010719, - -0.012000957503914833, - 0.0013682140270248055, - 0.005345046985894442, - 0.01417043711990118, - 0.0356292761862278, - 0.01154871005564928, - 0.002507027005776763, - -0.004735495429486036, - -0.009949455969035625, - 0.018129246309399605, - -0.002885538851842284, - -0.005522013641893864, - -0.01274159550666809, - 0.014930738136172295, - 0.03481654077768326, - -0.00299696228466928, - -0.01167324185371399, - 0.01478654332458973, - 0.013685417361557484, - 0.009359567426145077, - -0.02781652845442295, - 0.022559965029358864, - -0.0005485145375132561, - -0.02613862417638302, - -0.009320241399109364, - -0.007576792500913143, - 0.020515017211437225, - -0.007498140912503004, - 0.008147018030285835, - -0.00017112916975747794, - 0.012682606466114521, - -0.032509420067071915, - 0.0082912128418684, - 0.026728512719273567, - 0.015625495463609695, - 0.011378297582268715, - -0.008802450262010098, - -0.0003375474188942462, - 0.014865195378661156, - 0.012269685044884682, - -0.023988807573914528, - 0.010375486686825752, - 0.007445706054568291, - 0.004093172028660774, - 0.0006283952970989048, - -0.017880180850625038, - -0.02182588167488575, - -0.01605808176100254, - -0.027318401262164116, - -0.020056216046214104, - -0.016569318249821663, - -0.007799639366567135, - -0.019348349422216415, - -0.02240266092121601, - -0.010755636729300022, - 0.0010847398079931736, - -0.008959753438830376, - 0.021196667104959488, - 0.037805311381816864, - 0.03730718418955803, - -0.002130153588950634, - 0.012715378776192665, - 0.026217274367809296, - 0.0035852123983204365, - 0.007511249277740717, - 0.007340837270021439, - -0.005738306324928999, - -0.009910129941999912, - 0.03350567817687988, - -0.016149841248989105, - -0.012197587639093399, - 0.01996445469558239, - 0.0010724504245445132, - 0.001871258020401001, - -0.014249089173972607, - 0.0047027235850691795, - -0.03649444878101349, - -0.0018515951232984662, - 0.019754717126488686, - 0.014930738136172295, - 0.002472616732120514, - 0.00028429357917048037, - 0.0067247310653328896, - -0.002169479615986347, - 0.0014935653889551759, - 0.01553373597562313, - -0.0009651234722696245, - -0.024250980466604233, - -0.004027628805488348, - -0.010434475727379322, - 0.028131136670708656, - -0.001523059792816639, - -0.01886332966387272, - 0.004709278233349323, - 0.007373608648777008, - 0.006593644618988037, - -0.010637659579515457, - -0.025181692093610764, - -0.02548319101333618, - -0.0028068870306015015, - -0.022153597325086594, - -0.0032722437754273415, - 0.01676594838500023, - 0.014681674540042877, - 0.012774367816746235, - -0.0159401036798954, - -0.0036081525031477213, - -0.02096071094274521, - 0.02431652322411537, - -0.007603009697049856, - 0.04155438020825386, - -0.002929780399426818, - 0.029756607487797737, - 0.03659931570291519, - -0.010073987767100334, - -0.007157315965741873, - -0.017762204632163048, - -0.012689161114394665, - -0.02409367635846138, - 0.01676594838500023, - 0.013554330915212631, - 0.0048567503690719604, - -0.017722878605127335, - 0.008507505990564823, - 0.0011666687205433846, - 0.003255857853218913, - -0.02734461799263954, - -0.030359605327248573, - 0.004109557718038559, - 0.014838977716863155, - -0.02065921202301979, - -0.04173790290951729, - 0.009169491939246655, - 0.03125099092721939, - 0.019859585911035538, - 0.02240266092121601, - -0.021196667104959488, - -0.014367067255079746, - -0.00803559459745884, - -0.03101503662765026, - 0.009189154952764511, - 0.006193831097334623, - -0.017093664035201073, - -0.005918549839407206, - -0.005105814430862665, - 0.022743485867977142, - -0.010454138740897179, - -0.004633903503417969, - -0.010912940837442875, - 0.010060879401862621, - -0.0001093751925509423, - -0.01204683817923069, - 0.0030084322206676006, - 0.005872669629752636, - -0.007176978979259729, - 0.0009741356479935348, - -0.0027806698344647884, - -0.01236799918115139, - -0.005757968872785568, - 0.01944010891020298, - -0.019820259883999825, - 0.02339891903102398, - 0.004411056637763977, - 0.010578670538961887, - -0.012381108477711678, - -0.0001673399528954178, - -0.03620605543255806, - -0.03264050930738449, - -0.011850208044052124, - 0.01076874602586031, - 0.008592711761593819, - 0.010060879401862621, - -0.021668577566742897, - 0.012813692912459373, - 0.036992575973272324, - 0.003191953292116523, - 0.0011437286157160997, - -0.018928872421383858, - -0.0020236459095031023, - 0.010401704348623753, - 0.014681674540042877, - -0.028419526293873787, - -0.6292145848274231, - 0.0061807227320969105, - -0.00288717751391232, - 0.02280902862548828, - 0.00840919092297554, - 0.03125099092721939, - 0.007314619608223438, - 0.0038146134465932846, - -0.012505640275776386, - 0.03673040121793747, - -0.004873136058449745, - 0.006764057092368603, - 0.002572570228949189, - -0.0015632050344720483, - -0.011568373069167137, - -0.02245509624481201, - -0.02444760873913765, - -2.566681541793514e-05, - 0.019073067232966423, - 0.0178146380931139, - -0.022127380594611168, - 0.025273453444242477, - 0.0043913936242461205, - 0.019295914098620415, - -0.005092705599963665, - 0.015192911028862, - 0.013685417361557484, - -0.017382053658366203, - 0.014707891270518303, - -0.0037392389494925737, - -0.024460718035697937, - 0.014157328754663467, - -0.019230371341109276, - 0.02414610981941223, - 0.03397759050130844, - -0.004044014494866133, - -0.005161526147276163, - 0.008953199721872807, - 0.017591791227459908, - 0.026676077395677567, - -0.00755057530477643, - -0.011948523111641407, - -0.0013927927939221263, - -0.006088962312787771, - -0.010729419998824596, - -0.002153093693777919, - 0.028734134510159492, - -0.012558074668049812, - 0.01740827038884163, - -0.04976039007306099, - 0.008867993019521236, - 0.002708572195842862, - 0.014445718377828598, - 0.016372688114643097, - 0.027030011638998985, - -0.00896630808711052, - 0.043442025780677795, - -0.01670040376484394, - -0.012204141356050968, - 0.017500031739473343, - -0.0036114295944571495, - 0.0031821217853575945, - -0.0036442012060433626, - -0.007111435756087303, - -0.011725676245987415, - 0.007740650326013565, - 0.006003756076097488, - -0.03908995911478996, - 0.028026267886161804, - -0.002534882863983512, - -0.01832587458193302, - 0.013023431412875652, - -0.008127355016767979, - -0.004161992575973272, - 0.030857732519507408, - 0.032509420067071915, - 0.0018171848496422172, - -0.012656389735639095, - 0.013829613104462624, - 0.022651726379990578, - -0.010749083012342453, - -0.01419665478169918, - 0.0012625256786122918, - -0.005207406356930733, - 0.01729029230773449, - -0.009261252358555794, - -0.0003760540275834501, - 0.014013133943080902, - 0.010545899160206318, - 0.016831491142511368, - 0.0018335706554353237, - 0.033269722014665604, - 0.011607698164880276, - -0.01879778690636158, - -0.005620328243821859, - 0.05715366080403328, - -0.026571208611130714, - 0.004063677508383989, - -0.005623605567961931, - -0.012702269479632378, - -0.025063715875148773, - -0.009667620062828064, - 0.007989714853465557, - -0.012132043950259686, - 0.03324350342154503, - 0.0052663953974843025, - -0.011273428797721863, - -0.013842721469700336, - 0.012990660034120083, - -0.030595559626817703, - 0.008730352856218815, - -0.005830066744238138, - -0.007026229985058308, - -0.012853018939495087, - -0.006809937302023172, - -0.03311241790652275, - 0.026872707530856133, - 0.006816491484642029, - 7.255835953401402e-05, - 0.003680249908939004, - -0.0005395023617893457, - -0.012177924625575542, - 0.0583072192966938, - -0.017906399443745613, - -0.019807150587439537, - 0.03014986589550972, - 0.0165824256837368, - 0.003863770980387926, - 0.005220514722168446, - -0.03565549477934837, - 0.01557306107133627, - 0.004319296218454838, - 0.032797809690237045, - -0.015468192286789417, - 0.03426598012447357, - 0.006144674029201269, - 0.024539370089769363, - -0.026558099314570427, - 0.002906840294599533, - -0.047925177961587906, - -0.016831491142511368, - 0.00037892156979069114, - 0.012898899614810944, - -0.04679783806204796, - -0.01844385266304016, - -0.026636751368641853, - -0.03347945958375931, - 0.0020383931696414948, - 0.017237858846783638, - -0.0013362617464736104, - 0.010926049202680588, - -0.01583523489534855, - -0.011220993474125862, - 0.012984105385839939, - 0.013698526658117771, - 0.009412001818418503, - -0.015428866259753704, - -0.02705622836947441, - 1.6718633560230955e-05, - -0.011974740773439407, - 0.015284671448171139, - 0.016779055818915367, - -0.04994390904903412, - -0.007347391452640295, - -0.02292700670659542, - -0.0098970215767622, - 0.007681661751121283, - -0.006338026374578476, - -0.0257846899330616, - -0.02507682330906391, - 0.0008586157928220928, - 0.00288717751391232, - -0.0009405447635799646, - 0.004152161069214344, - -0.010486910119652748, - -0.0025742086581885815, - -0.016503775492310524, - 0.006557595916092396, - -0.020528126507997513, - -0.028498178347945213, - 0.01675283908843994, - -0.009949455969035625, - -0.031408295035362244, - -0.004066954832524061, - 0.02294011600315571, - 0.01068353932350874, - 0.008671363815665245, - 0.004034183453768492, - -0.013986916281282902, - 0.013659200631082058, - -0.011194776743650436, - 0.01740827038884163, - -0.03421354293823242, - 0.015035606920719147, - -0.021721012890338898, - -0.011738784611225128, - 0.012177924625575542, - -0.004332404583692551, - 0.0019384397892281413, - 0.020003780722618103, - 0.015979429706931114, - -0.004673229530453682, - 0.007589901331812143, - -0.018312767148017883, - 0.03216859698295593, - -0.03072664700448513, - 0.014616130851209164, - -0.010703202337026596, - 0.032037511467933655, - 0.006544487550854683, - 0.022481312975287437, - -0.0020793576259166002, - -0.024224761873483658, - -0.009097394533455372, - 0.001671351259574294, - 0.03882778435945511, - -0.008251887746155262, - -0.00030600474565289915, - 0.03368919715285301, - 0.006554318591952324, - -0.009975673630833626, - 0.009988781996071339, - 0.021852098405361176, - 0.02124910242855549, - 0.004689615219831467, - -0.006367520894855261, - 0.0017074000788852572, - 0.0277116596698761, - 0.00026626919861882925, - 0.004742049612104893, - -0.007150761783123016, - 0.003169013187289238, - 0.008573048748075962, - 0.0049091847613453865, - 0.0178670734167099, - 0.015494409948587418, - 0.013488788157701492, - -0.0026544991414994, - 0.03135586157441139, - 0.016844598576426506, - 0.010749083012342453, - 0.005158248823136091, - -0.001439492218196392, - -0.019689174368977547, - 0.011214439757168293, - -0.017971942201256752, - 0.003054312663152814, - 0.029363349080085754, - -0.010873614810407162, - -0.0006845166790299118, - -0.011588036082684994, - -0.007249076385051012, - -0.007334282621741295, - -0.00014665287744719535, - 0.028996305540204048, - -0.023792177438735962, - 0.02991391159594059, - -0.01805059425532818, - 0.007878291420638561, - 0.019531870260834694, - 0.006495330017060041, - 0.01158148143440485, - 0.020292170345783234, - -0.030621778219938278, - 0.002017091726884246, - 0.003046119585633278, - -0.022088054567575455, - -0.027134880423545837, - -0.00916293729096651, - 0.008055257610976696, - 0.00928091537207365, - 0.003372197039425373, - 0.019361456856131554, - 0.013724743388593197, - 0.01460302248597145, - -0.01944010891020298, - 0.009588968008756638, - 0.01647755689918995, - 0.021196667104959488, - 0.019925128668546677, - -0.0165824256837368, - -0.018535614013671875, - -0.008297767490148544, - 0.01329871267080307, - -0.01739516295492649, - -0.008396082557737827, - -0.002564377151429653, - 0.003929314203560352, - -0.024486934766173363, - -0.008533722721040249, - -0.018692918121814728, - 0.016320254653692245, - -0.007766867987811565, - -0.022481312975287437, - 0.021904533728957176, - 0.006623139139264822, - 0.02373974211513996, - 0.009615185670554638, - -0.009602077305316925, - 0.01595321111381054, - -0.0002492689236532897, - -0.03164425119757652, - -0.037149880081415176, - -0.02199629321694374, - -0.0017401716904714704, - 0.014367067255079746, - -0.01978093385696411, - -0.020344605669379234, - 0.008396082557737827, - 0.0010019914479926229, - -0.007412934675812721, - 0.0002160877047572285, - -0.013501896522939205, - 0.01605808176100254, - -0.0224682055413723, - -0.01245320588350296, - -0.012197587639093399, - 0.003886711085215211, - 0.04955064877867699, - 0.005594111047685146, - -0.03025473654270172, - -0.008802450262010098, - -0.014013133943080902, - 0.0014632516540586948, - 0.008579603396356106, - 0.028760351240634918, - 0.00850095134228468, - 0.011476612649857998, - -0.010473801754415035, - 0.0041030035354197025, - 0.007399825844913721, - -0.021340861916542053, - 0.011319308541715145, - 0.036992575973272324, - 0.017185423523187637, - -0.014550588093698025, - 0.019662955775856972, - -0.013567440211772919, - 0.012538411654531956, - -0.020279062911868095, - 9.744428825797513e-05, - -0.010309943929314613, - 0.014720999635756016, - 0.007675107102841139, - -0.019715391099452972, - 0.00443727383390069, - 0.013724743388593197, - 0.030071213841438293, - -0.008304322138428688, - -0.023831503465771675, - 0.027423270046710968, - 0.011909197084605694, - 0.004876413382589817, - -0.02566671185195446, - -0.008651700802147388, - 0.05015364661812782, - 0.018417635932564735, - 0.03172290325164795, - -0.006868926342576742, - -0.0007049989071674645, - 0.0004399586468935013, - -0.012518748641014099, - 0.01622849330306053, - 0.00014624324103351682, - 0.005066488403826952, - 0.002711849519982934, - 0.012505640275776386, - 0.003257496515288949, - 0.013816503807902336, - -0.004139052238315344, - -0.0038703251630067825, - 0.006370797753334045, - -0.012905453331768513, - -0.002103936392813921, - 0.012132043950259686, - -0.034082457423210144, - 0.007032784167677164, - -0.0076947701163589954, - 0.009562751278281212, - -0.029546869918704033, - 0.0009946179343387485, - -0.018168572336435318, - -0.022913899272680283, - -0.013567440211772919, - -0.02695135958492756, - -0.018299657851457596, - 0.018522504717111588, - -0.010047771036624908, - -0.018732242286205292, - -0.01774909533560276, - -0.02148505672812462, - -0.015061824582517147, - -0.007334282621741295, - 0.010060879401862621, - -0.012754704803228378, - -0.0318802073597908, - -0.02008243277668953, - -0.017368944361805916, - 0.028786567971110344, - 0.0013165988493710756, - 0.019636739045381546, - 0.0018024377059191465, - -0.019872695207595825, - 0.00018731014279183, - -0.019662955775856972, - -0.022153597325086594, - 0.003421354340389371, - -0.013128300197422504, - -0.024696674197912216, - 0.010100205428898335, - 0.003772010561078787, - 0.008972862735390663, - 0.007045892532914877, - 0.008330538868904114, - -0.009241589345037937, - 0.013567440211772919, - 0.0019204154377803206, - -0.013233169913291931, - -0.005849729757755995, - 0.008415745571255684, - 0.017316510900855064, - 0.017447596415877342, - 0.01908617652952671, - -0.015009390190243721, - 0.018666699528694153, - -0.01920415461063385, - -0.012761258520185947, - -0.0020859120413661003, - 0.008953199721872807, - 0.004165269434452057, - -0.0006980349426157773, - 0.005082874093204737, - 0.007275294046849012, - 0.005698980297893286, - 0.0020924662239849567, - -0.01984647661447525, - 0.004614240489900112, - 0.010840843431651592, - 0.0016148203285411, - 0.008264996111392975, - 0.017657333984971046, - 0.01117511373013258, - 0.016831491142511368, - -0.007858628407120705, - -0.008579603396356106, - -0.014681674540042877, - 0.03717609494924545, - 0.003998134285211563, - 0.0029871307779103518, - 0.047164879739284515, - -0.020764082670211792, - 0.011384852230548859, - -0.04016486555337906, - 0.0014591552317142487, - 0.018522504717111588, - 0.011758447624742985, - -0.004509371239691973, - -0.015861451625823975, - -0.0058923326432704926, - -0.022376444190740585, - 0.014825869351625443, - 0.0165824256837368, - -0.012525303289294243, - -0.011181667447090149, - -0.015166693367064, - 0.011135787703096867, - -0.004260307177901268, - -0.00024906411999836564, - -0.009044960141181946, - -0.02071164734661579, - -0.03526223450899124, - 0.012236913666129112, - -0.000416813709307462, - 0.023241614922881126, - -0.0038211678620427847, - -0.00806181225925684, - -0.02200940251350403, - -0.009890466928482056, - -0.0016647969605401158, - -0.010926049202680588, - 0.013049649074673653, - 0.009726609103381634, - 0.021393297240138054, - 0.01301032304763794, - 0.03772665932774544, - -0.0030903613660484552, - -0.0063314721919596195, - 0.015245345421135426, - -0.009189154952764511, - -0.006882034707814455, - -0.03143451362848282, - -0.012282793410122395, - -0.0185618307441473, - 0.017827747389674187, - 0.014498152770102024, - 0.002215359825640917, - 0.008278104476630688, - 0.027030011638998985, - 0.01292511634528637, - 0.04915739223361015, - 0.0024988341610878706, - -0.010585225187242031, - -0.01659553498029709, - -0.038093701004981995, - -0.0002847032155841589, - 0.005050102714449167, - 0.008769678883254528, - 0.010447584092617035, - -0.02800004929304123, - -0.018902655690908432, - 0.022782811895012856, - -0.004722386598587036, - -0.0055908337235450745, - -0.025928884744644165, - 0.013102083466947079, - -0.0462210550904274, - 0.03091016784310341, - -0.002969106426462531, - 0.004066954832524061, - -0.0026299203746020794, - -0.012164815329015255, - -0.021144231781363487, - -0.003172290278598666, - 0.020226627588272095, - 0.006410123780369759, - 0.03777909278869629, - -0.01339047309011221, - -0.006570704746991396, - 0.004201318137347698, - -0.01734272763133049, - -0.010847398079931736, - -0.009169491939246655, - -0.005600665230304003, - -0.013908264227211475, - -0.021380187943577766, - -0.017264075577259064, - -0.02718731388449669, - -0.01715920679271221, - 0.0129185626283288, - -0.009228480979800224, - 0.00809458363801241, - 0.015061824582517147, - -0.01681838184595108, - -0.008127355016767979, - 0.004627348855137825, - -0.0051680803298950195, - 0.053745415061712265, - 0.01867980882525444, - 0.05046825483441353, - 0.03874913230538368, - -0.020921384915709496, - 0.001293658628128469, - -0.05547575280070305, - 0.014353957958519459, - 0.003421354340389371, - 0.021445730701088905, - 0.004817424342036247, - -0.016425123438239098, - -0.012348337098956108, - 0.007622672710567713, - -0.0035917668137699366, - 0.004938679281622171, - -0.012197587639093399, - 0.025824015960097313, - 0.015035606920719147, - -0.012617063708603382, - -0.02135397121310234, - 0.02059366926550865, - -0.010985038243234158, - -0.01067698560655117, - 0.008140464313328266, - -0.004253752995282412, - 0.002484086900949478, - -0.0022284684237092733, - -0.001092113321647048, - 0.05149072781205177, - 0.01196163147687912, - 0.04283902794122696, - -0.000862712215166539, - -0.01675283908843994, - 0.002793778432533145, - -0.028498178347945213, - -0.019164828583598137, - 0.011384852230548859, - -0.003863770980387926, - 0.054794106632471085, - -0.011293090879917145, - -0.006626416463404894, - 0.004037460312247276, - -0.008022486232221127, - -0.00939889345318079, - -0.0029494434129446745, - -0.0024005193263292313, - 0.016425123438239098, - -0.013403582386672497, - -0.010139531455934048, - 0.019584303721785545, - -0.007753759156912565, - 0.001874535228125751, - 0.01617605797946453, - -0.012754704803228378, - -0.018902655690908432, - -0.003804782172665, - -0.007006566971540451, - -0.006475667003542185, - 0.01885022036731243, - 0.0018548722146078944, - -0.010165748186409473, - -0.008133909665048122, - -0.01169945951551199, - -0.008743461221456528, - -0.020882058888673782, - 0.01921726204454899, - -0.039194826036691666, - 0.005846452433615923, - -0.01123410277068615, - 0.006144674029201269, - 0.03893265500664711, - -0.015297779813408852, - -0.015730364248156548, - -0.020515017211437225, - 0.02200940251350403, - -0.02164236083626747, - 0.01466856524348259, - 0.04302254691720009, - -0.007360499817878008, - -0.020986929535865784, - 0.0048010386526584625, - 0.002620088867843151, - 0.010539344511926174, - 0.03725474700331688, - -0.008382974192500114, - -0.00622660294175148, - -0.007249076385051012, - -0.004447105340659618, - 0.01989891193807125, - -0.023831503465771675, - -0.01248597726225853, - -0.003945699892938137, - 0.019099285826086998, - 0.0009733163169585168, - -0.0038473850581794977, - -0.010775299742817879, - -0.004548697266727686, - 0.011594589799642563, - -0.005679317284375429, - 0.009988781996071339, - -0.013711635023355484, - 0.01123410277068615, - 0.009359567426145077, - -0.012322119437158108, - 0.010047771036624908, - -0.03269294276833534, - -0.013986916281282902, - 0.007045892532914877, - 0.014275306835770607, - -0.04042704030871391, - 0.014970064163208008, - -0.012761258520185947, - -0.017906399443745613, - -0.021498166024684906, - 0.020292170345783234, - 0.007989714853465557, - 0.013895155861973763, - 0.025168584659695625, - 0.005505627952516079, - 0.006370797753334045, - 0.02676783874630928, - -0.0032312790863215923, - -0.0062331571243703365, - 0.0317753367125988, - 0.011050581932067871, - -0.020803408697247505, - 0.010945712216198444, - -0.004876413382589817, - 0.00840919092297554, - 0.035996317863464355, - -0.014707891270518303, - -0.005911995656788349, - 0.005600665230304003, - -0.01646444946527481, - -0.02211427129805088, - -0.013895155861973763, - 0.010047771036624908, - -0.005430253222584724, - 0.02944199927151203, - -0.00541386753320694, - 0.02020041085779667, - 0.011070244014263153, - 0.030176084488630295, - -0.03439706563949585, - -0.0012854657834395766, - -0.0018909210339188576, - -0.008605821058154106, - 0.011823991313576698, - -0.018076810985803604, - -0.015153585001826286, - 0.0020629719365388155, - 0.009785598143935204, - -0.008605821058154106, - 0.020803408697247505, - 0.03135586157441139, - -0.0014362151268869638, - -0.007157315965741873, - 0.007766867987811565, - 0.015232237055897713, - 0.022651726379990578, - -0.006980349309742451, - 0.0034672345500439405, - -0.02082962542772293, - 6.989566463744268e-05, - -0.011948523111641407, - 0.011181667447090149, - -0.039194826036691666, - -0.01675283908843994, - 0.02514236606657505, - -0.008127355016767979, - -0.010283726267516613, - 0.017788421362638474, - -0.0074784778989851475, - -0.0035917668137699366, - 0.007878291420638561, - 0.01978093385696411, - 0.018260331824421883, - -0.021970076486468315, - 0.019059959799051285, - 0.01803748495876789, - -0.007878291420638561, - -0.014000024646520615, - 0.0070131211541593075, - -0.025797799229621887, - -0.0017188701312988997, - 0.018286550417542458, - -0.02170790359377861, - 0.007989714853465557, - -0.017093664035201073, - 0.03329594060778618, - 0.0027544524054974318, - -0.00599392456933856, - -0.04955064877867699, - -0.0370187908411026, - -0.04207872599363327, - 0.028131136670708656, - 0.03321728855371475, - -0.006875480525195599, - 0.02094760350883007, - 0.006229880265891552, - -0.012387662194669247, - 0.004332404583692551, - -0.007465369068086147, - 0.0030330109875649214, - -0.016962576657533646, - -0.009018742479383945, - 0.003637647023424506, - -0.011896088719367981, - 0.0001352852414129302, - -0.0062331571243703365, - -0.01676594838500023, - -0.036861490458250046, - 0.003539332188665867, - 0.19474191963672638, - -0.023949481546878815, - -0.0102444002404809, - 0.022494422271847725, - -0.021983185783028603, - -0.02456558682024479, - 0.012846465222537518, - -0.0024627852253615856, - 0.009910129941999912, - 0.01989891193807125, - 0.0034442944452166557, - 0.007845520041882992, - 0.018535614013671875, - 0.012558074668049812, - 0.021616144105792046, - -0.009910129941999912, - -0.02561427839100361, - -0.029546869918704033, - -0.008114246651530266, - 0.02375285141170025, - 0.037149880081415176, - -0.031172340735793114, - -0.010257508605718613, - -0.009536533616483212, - 0.021917643025517464, - 0.0038277222774922848, - -0.021983185783028603, - 2.8342308723949827e-05, - 0.04475288838148117, - 0.025181692093610764, - -0.015232237055897713, - -0.007052447181195021, - 0.016044972464442253, - -0.010840843431651592, - -0.013908264227211475, - 0.006914806552231312, - 0.007360499817878008, - -0.020226627588272095, - 0.02404124103486538, - 0.016084298491477966, - 0.006102070678025484, - -0.03340080752968788, - 0.002213721163570881, - -0.016949469223618507, - 0.014471936039626598, - 0.010454138740897179, - -0.005964430049061775, - 0.010565562173724174, - 0.010290280915796757, - -0.0004235728411003947, - -0.002797055523842573, - 0.009392338804900646, - 0.009077731519937515, - 0.038801565766334534, - -0.008959753438830376, - -0.015979429706931114, - 0.01015263982117176, - -0.012479422613978386, - 0.015638604760169983, - 0.008553385734558105, - -0.02781652845442295, - 0.011758447624742985, - -0.01070975698530674, - 0.01426219753921032, - -0.026086188852787018, - 0.013737852685153484, - -0.03597010299563408, - 0.005780909210443497, - -0.011411068961024284, - -0.0291536096483469, - 0.009156383574008942, - -0.009248143993318081, - -0.025889558717608452, - 0.007937280461192131, - -0.02747570537030697, - -0.02431652322411537, - 0.02421165443956852, - 0.02415921911597252, - 0.018522504717111588, - 0.009962564334273338, - -0.013632982969284058, - -0.01652999222278595, - -0.013200398534536362, - -0.028078701347112656, - -0.008750015869736671, - -0.017893290147185326, - 0.004791207145899534, - 0.015743473544716835, - 0.004601131659001112, - -0.034082457423210144, - -0.017762204632163048, - 0.00858615804463625, - 0.0018057147972285748, - -0.006764057092368603, - -0.0018352093175053596, - -0.020973820239305496, - 0.0031509888358414173, - 0.012551520951092243, - -0.025352105498313904, - 0.006882034707814455, - -0.017473813146352768, - 0.04207872599363327, - 0.039614301174879074, - -0.0036179840099066496, - -0.007983160205185413, - -0.012970997020602226, - -0.007891399785876274, - 0.022245358675718307, - -0.004896075930446386, - -0.027606790885329247, - -0.012997213751077652, - -0.03403002396225929, - 0.01803748495876789, - -0.010480355471372604, - 0.017486922442913055, - 0.018666699528694153, - 0.018365200608968735, - 0.00299040786921978, - -0.006416677962988615, - 0.007439151871949434, - -0.004981282167136669, - -0.018941981717944145, - 0.01582212559878826, - 0.014104894362390041, - 0.01774909533560276, - -0.02996634505689144, - -0.024185435846447945, - 0.02683338150382042, - -0.007897954434156418, - 0.015192911028862, - 0.041475728154182434, - -0.04089894890785217, - 0.021275319159030914, - -0.0024250978603959084, - 0.004709278233349323, - 0.008323985151946545, - -0.01810302771627903, - -0.04401880502700806, - -0.0004522480012383312, - -0.004243921488523483, - 0.020672321319580078, - 0.0004147654981352389, - 0.012472868897020817, - 0.011837099678814411, - 1.0036300409410615e-05, - -0.007622672710567713, - 0.012374553829431534, - -0.0032607736065983772, - -0.0318802073597908, - -0.020515017211437225, - -0.009385784156620502, - -0.010657322593033314, - -0.021721012890338898, - -0.018286550417542458, - 0.014642348513007164, - 0.009693837724626064, - -0.033846501260995865, - -0.04165925085544586, - 0.009562751278281212, - 0.01921726204454899, - -0.014563696458935738, - -0.02135397121310234, - 0.01618916727602482, - -0.0178670734167099, - 0.005410590209066868, - -0.0010757276322692633, - -0.1649591028690338, - 0.024290304630994797, - 0.0009708584984764457, - -0.024958845227956772, - 0.00038506623241119087, - -0.005561339668929577, - 0.0205412358045578, - 0.01989891193807125, - -0.013141409493982792, - -0.013174180872738361, - 0.013462570495903492, - -0.004299633204936981, - -0.013272495940327644, - -0.013449462130665779, - -0.002179310889914632, - -0.008691026829183102, - -0.026204166933894157, - 0.04407123848795891, - 0.013108637183904648, - 0.023765960708260536, - 0.02297944203019142, - -0.028498178347945213, - 0.021550599485635757, - -0.007707878947257996, - -0.011791219934821129, - 0.009739717468619347, - -0.021629251539707184, - 0.04939334839582443, - -0.012997213751077652, - -0.01944010891020298, - -0.01426219753921032, - -0.00507631991058588, - 0.0158876683562994, - 0.0038834339939057827, - -0.011378297582268715, - -0.01550751831382513, - -0.005695702973753214, - -0.015848342329263687, - 0.005282781086862087, - 0.026335252448916435, - 0.015153585001826286, - 0.01192886009812355, - -0.00667885085567832, - 0.02269105240702629, - -0.004627348855137825, - 0.04005999490618706, - 0.021432623267173767, - -0.012348337098956108, - -0.022559965029358864, - -0.009077731519937515, - 0.0017467259895056486, - -0.011607698164880276, - 0.019571196287870407, - 0.020528126507997513, - -0.008959753438830376, - 0.01457680482417345, - -0.0129185626283288, - 0.036048755049705505, - -0.004755158443003893, - -0.009235035628080368, - 0.012944779358804226, - -0.03985025733709335, - 0.0071376534178853035, - -0.0004866581584792584, - 0.009824924170970917, - -0.03589145094156265, - -0.015743473544716835, - 0.014589914120733738, - -0.020868951454758644, - -0.009582414291799068, - -0.009346459060907364, - -0.024185435846447945, - 0.009156383574008942, - -0.01213859859853983, - 0.008101138286292553, - 0.021734120324254036, - -0.012472868897020817, - 0.003988302778452635, - 0.012118935585021973, - -0.0008995802490971982, - -0.004247198812663555, - 0.048921436071395874, - 0.00949065387248993, - -0.034187328070402145, - -0.021970076486468315, - -0.02368730865418911, - 0.007373608648777008, - 0.030123649165034294, - -0.014118002727627754, - 0.010690093971788883, - 0.012826802209019661, - -0.016503775492310524, - -0.020344605669379234, - -0.03371541574597359, - 0.023254722356796265, - -0.009693837724626064, - -0.0040767863392829895, - 0.0005976719548925757, - -0.004925570450723171, - -0.011725676245987415, - -0.001700845779851079, - -0.003598320996388793, - -0.031696684658527374, - 0.026531882584095, - 0.0129185626283288, - -0.0017172315856441855, - -0.02431652322411537, - 0.00893353670835495, - 0.01629403606057167, - -0.016202276572585106, - -0.01768355257809162, - -0.013449462130665779, - 0.01600564643740654, - -0.008343648165464401, - -0.01879778690636158, - 0.016254710033535957, - -0.015428866259753704, - -0.012721932493150234, - 0.01622849330306053, - -0.0178670734167099, - 0.06292145699262619, - -0.01803748495876789, - -0.0009102310286834836, - 0.005259840749204159, - -0.004112835042178631, - -0.02309742011129856, - -0.07996269315481186, - -0.0007729999488219619, - 0.03534088656306267, - 0.012905453331768513, - 0.012826802209019661, - 0.02030527964234352, - 0.00018864148296415806, - 0.015114258974790573, - 0.009870803914964199, - 0.062187377363443375, - -0.026295926421880722, - -0.022245358675718307, - -0.025155475363135338, - 0.0026331976987421513, - 0.00512220012024045, - 0.0006714080227538943, - 0.009110502898693085, - -0.013436353765428066, - -0.021288426592946053, - 0.03324350342154503, - -0.002385772066190839, - -0.01481276098638773, - -0.004299633204936981, - -0.011817436665296555, - -0.023189179599285126, - -0.027213532477617264, - -0.04084651544690132, - 0.017880180850625038, - 0.017958832904696465, - -0.011856762692332268, - 0.035471972078084946, - -0.03211616352200508, - -0.007793085183948278, - -0.012630172073841095, - -0.01664797030389309, - -0.007753759156912565, - -0.02834087423980236, - -0.02786896377801895, - 0.02747570537030697, - -0.018286550417542458, - 0.0007598913507536054, - 0.021222883835434914, - 0.016962576657533646, - -0.014065568335354328, - -0.008140464313328266, - -0.004240644164383411, - -0.02933713048696518, - 0.004122666548937559, - 0.0060824076645076275, - 0.0005276226438581944, - -0.014707891270518303, - -0.015546844340860844, - -0.014432610012590885, - 0.018024377524852753, - 0.02334648370742798, - 0.01140451431274414, - -0.0013018515892326832, - -0.012328674085438251, - -0.006433064118027687, - 0.0022382999304682016, - -0.007222859188914299, - 0.004968173801898956, - -0.031460728496313095, - 0.04331094026565552, - 0.0038113363552838564, - -0.0013862383784726262, - -0.02141951397061348, - -0.019807150587439537, - 0.013619874604046345, - -0.0035065605770796537, - -0.017552465200424194, - 0.014353957958519459, - 0.0013338038697838783, - 0.00713109876960516, - -0.013016876764595509, - 0.01027717161923647, - -0.03725474700331688, - -0.0027741154190152884, - 0.002559461398050189, - -0.018732242286205292, - 0.006066021975129843, - -0.021458839997649193, - 0.007570238318294287, - -0.005381095688790083, - 0.03405623883008957, - 0.013895155861973763, - -0.0044700452126562595, - -0.0064461724832654, - 0.014852086082100868, - -0.012898899614810944, - -0.023726634681224823, - 0.007471923250705004, - 0.03214237838983536, - -0.005420421715825796, - -0.030883951112627983, - 0.019754717126488686, - 0.014209763146936893, - -0.009103949181735516, - 0.012702269479632378, - 0.0014140942366793752, - -0.016739729791879654, - -0.0051680803298950195, - -0.0345543697476387, - 0.010486910119652748, - 0.021026255562901497, - 0.014563696458935738, - -0.015559952706098557, - -0.01158148143440485, - -0.004617517814040184, - 0.01557306107133627, - 0.006092239171266556, - -0.008258441463112831, - 0.009392338804900646, - -0.005466301925480366, - -0.0192565880715847, - -0.019361456856131554, - -0.04422854259610176, - -0.03379406780004501, - -0.017906399443745613, - 0.02619105763733387, - 0.005256563890725374, - 0.0224157702177763, - -0.008396082557737827, - 0.013449462130665779, - -0.017382053658366203, - 0.01886332966387272, - -0.024775324389338493, - -0.002852767240256071, - -0.005803849082440138, - 0.007445706054568291, - -0.011260319501161575, - 0.0006582994246855378, - 0.0004837906453758478, - -0.013842721469700336, - -0.0021104905754327774, - 0.017329618334770203, - -0.0001981657260330394, - -0.028131136670708656, - 0.010480355471372604, - 0.024578696116805077, - 0.028314657509326935, - 0.03922104462981224, - -0.04619484022259712, - -0.03801504895091057, - -0.008664809167385101, - -0.010309943929314613, - 0.0012125489301979542, - 0.010821180418133736, - 0.017945725470781326, - -0.010965375229716301, - 0.02031838893890381, - -0.015009390190243721, - 0.03764800727367401, - 0.00809458363801241, - 0.022795921191573143, - -0.015428866259753704, - -8.310671546496451e-05, - 0.014865195378661156, - 8.500132025801577e-06, - 0.004499539732933044, - 0.01820789836347103, - -0.0435468927025795, - 0.032273467630147934, - -0.007904508151113987, - 0.0004139461962040514, - -0.004558528773486614, - 0.001382961287163198, - -0.014078676700592041, - -0.02666296809911728, - -0.010014998726546764, - -0.0028412973042577505, - -0.016307145357131958, - -0.001756557496264577, - 0.009071176871657372, - 0.021340861916542053, - 0.022206032648682594, - -0.004427442327141762, - -0.011470058001577854, - 0.005961153190582991, - -0.0006177445757202804, - 0.0020072602201253176, - -0.00253815995529294, - 0.015861451625823975, - 0.011948523111641407, - 0.005213960539549589, - -0.00356554938480258, - 0.034423284232616425, - 0.012774367816746235, - -0.007000012323260307, - 0.0032951838802546263, - 0.003421354340389371, - 0.0023497233632951975, - -0.005302444100379944, - 0.03515736758708954, - -0.005272949580103159, - 0.012381108477711678, - 0.02031838893890381, - 0.03835587203502655, - -0.01329871267080307, - -0.022337118163704872, - 0.026282818987965584, - 0.02484086900949478, - 0.007937280461192131, - 0.0027446208987385035, - -0.01739516295492649, - -0.021576818078756332, - 0.01233522780239582, - 0.020528126507997513, - 0.0034639574587345123, - -0.046640533953905106, - 0.0004469226114451885, - 0.014996281825006008, - -0.00189911387860775, - -0.0027757540810853243, - -0.010198520496487617, - 0.004807592835277319, - -0.010434475727379322, - 0.014419501647353172, - -0.025535626336932182, - -0.004981282167136669, - -0.022481312975287437, - 0.020632995292544365, - 0.019741607829928398, - -0.0012076332932338119, - -0.0026086189318448305, - -0.007281848229467869, - 0.015795908868312836, - -0.012066501192748547, - 0.021196667104959488, - -0.007720987778156996, - 0.011181667447090149, - -0.010978483594954014, - 0.004286524374037981, - 0.008173235692083836, - -0.01757868379354477, - -0.01740827038884163, - -0.00600703340023756, - -0.0030985542107373476, - 0.012787476181983948, - 0.027423270046710968, - 0.007360499817878008, - 0.14094407856464386, - -1.9573346435208805e-05, - -0.008297767490148544, - 0.027554355561733246, - -0.011647024191915989, - 0.014052459970116615, - 0.016726622357964516, - -0.0007521080551669002, - 0.008284659124910831, - -0.05673418194055557, - -0.00983803253620863, - -0.02001689001917839, - 0.010119868442416191, - -0.026977576315402985, - -0.0015173248248174787, - 0.023241614922881126, - -0.003318123985081911, - 0.01832587458193302, - -0.028157353401184082, - -0.0031280487310141325, - 0.025129258632659912, - -0.032509420067071915, - -0.0026381132192909718, - 0.007812747731804848, - -0.0008700858452357352, - -0.02852439507842064, - 0.02304498478770256, - 0.010342715308070183, - 0.008219115436077118, - -0.016726622357964516, - -0.012223804369568825, - -0.0052926125936210155, - -0.05453193187713623, - -0.041580598801374435, - 0.008894210681319237, - -0.035236019641160965, - -0.008750015869736671, - -0.03429219499230385, - 0.005597388371825218, - 0.005679317284375429, - -0.008579603396356106, - 0.04042704030871391, - -0.01808992028236389, - -0.006823045667260885, - 0.01417043711990118, - -0.016674187034368515, - 0.007707878947257996, - -0.00582023523747921, - -0.011948523111641407 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 31, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 561 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000032.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000032.json deleted file mode 100644 index 78e6be1228154aebf36d55c28890639049becb8f..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000032.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000032", - "content": "Ungef\u00e4hr 68,3% aller Messwerte liegen innerhalb einer Spanne von 66,8 bis 76,4 dB(A), welches einen gro\u00dfen Bereich abdeckt. Die Messpunkte niedriger und h\u00f6her als der Mittelwert sind hier gleichm\u00e4\u00dfig auf der Gau\u00dfschen Glockenkurve verteilt. Die Messdaten haben eine sehr gute \u00dcbereinstimmung mit der normalen Verteilung. Dies bedeutet, dass die Beladevorg\u00e4nge einem bestimmten Muster folgen und keine signifikanten Ausrei\u00dfer o- der Abweichungen auftreten. Folglich sind die Messungen konsistent und zuverl\u00e4ssig. In Diagramm 4 ist die Normalverteilung des st\u00fcndlichen Schallleistungspegel eines Ga- belhubwagen Beladevorgang in einem Koffer-Anh\u00e4nger dargestellt. [IMAGE: Normalverteilung Gabelhubwagen - Koffer 0,06 0,05 H\u00e4ufigkeit [%] 0,04 0,02 60,0 65,0 70,0 75,0 30,0 85,0 90,0 st\u00fcndlicher Schallleistungspegel LWA, Ih [dB(A)] \u00a9 Messdaten Mittelwert wo vo Gau\u00dfsch]\n\nDiagramm 4: Normalverteilung Gabelhubwagen \u2013 Koffer Beladung\nMit: \u03bc: Erfahrungswert, \u03c3: Standardabweichung\nDer h\u00f6chste Punkt der Normalverteilung repr\u00e4sentiert den energetischen Mittelwert des st\u00fcndlichen Schallleistungspegels von 72,9 dB(A). Die Standardabweichung s von 4,9 dB gibt an, wie weit die einzelnen Messwerte um den Mittelwert herumliegen. Ungef\u00e4hr 68,3% aller Messwerte liegen innerhalb einer Spanne von 68,0 bis 77,8 dB(A), welches einen gro\u00dfen Bereich abdeckt. Die Messpunkte, die niedriger als der Mittelwert liegen,\n64\n7 Ergebnisse und Interpretation\nsind auch hier dichter auf der Gau\u00dfschen Glockenkurve verteilt als diejenigen, die gr\u00f6\u00dfer als der Mittelwert sind. Die Messdaten haben eine sehr gute \u00dcbereinstimmung mit der normalen Verteilung. Dies bedeutet, dass die Beladevorg\u00e4nge einem bestimmten Mus- ter folgen und keine signifikanten Ausrei\u00dfer oder Abweichungen auftreten. Folglich sind die Messungen konsistent und zuverl\u00e4ssig. In Diagramm 5 ist die Normalverteilung des st\u00fcndlichen Schallleistungspegel eines Ga- belhubwagen Beladevorgang in einer Wechselbr\u00fccke dargestellt. [IMAGE: Normalverteilung Gabelhubwagen - Wechselbr\u00fccke 0,08 0,07 H\u00e4ufigkeit [%] 0,01 0,00 60,0 62,0 64,0 66,0 68,0 70,0 72,0 74,0 76,0 78,0 80,0 st\u00fcndlicher Schallleistungspegel LWA,1h [dB(A) \u00a9 Messdaten Mittelwert Kto 0 Gau\u00dfsche Glockenkurve]\n\nDiagramm 5: Normalverteilung Gabelhubwagen \u2013 Wechselbr\u00fccke Beladung\nMit: \u03bc: Erfahrungswert, \u03c3: Standardabweichung\nDer h\u00f6chste Punkt der Normalverteilung repr\u00e4sentiert den energetischen Mittelwert des st\u00fcndlichen Schallleistungspegels von 68,9 dB(A). Die Standardabweichung s von 4,3 dB gibt an, wie weit die einzelnen Messwerte um den Mittelwert herumliegen. Ungef\u00e4hr 68,3% aller Messwerte liegen innerhalb einer Spanne von 64,6 bis 73,2 dB(A), welches einen gro\u00dfen Bereich abdeckt. Die Messpunkte, die niedriger als der Mittelwert liegen, sind auch hier dichter auf der Gau\u00dfschen Glockenkurve verteilt als diejenigen, die gr\u00f6\u00dfer als der Mittelwert sind. Die Messdaten haben eine sehr gute \u00dcbereinstimmung mit der\n65\n7 Ergebnisse und Interpretation\nnormalen Verteilung. Dies bedeutet, dass die Beladevorg\u00e4nge einem bestimmten Mus- ter folgen und keine signifikanten Ausrei\u00dfer oder Abweichungen auftreten. Folglich sind die Messungen konsistent und zuverl\u00e4ssig. Das Ergebnis der Auswertung der Normalverteilungen der einzelnen Beladevorg\u00e4nge f\u00fcr die unterschiedlichen Anh\u00e4nger zeigt, dass alle Messdaten eine sehr gute \u00dcbereinstim- mung mit der normalen Verteilung aufweisen. Die Mehrzahl der Messpunkte, die nied- riger als der Mittelwert liegen, sind meistens dichter auf der Gau\u00dfschen Glockenkurve verteilt als diejenigen, die gr\u00f6\u00dfer als der Mittelwert sind. Die st\u00fcndlichen Schallleis- tungspegel der Beladevorg\u00e4nge folgen somit einem Muster, dass gut durch die Gau\u00df- sche Glockenkurve beschrieben werden kann. Dies bedeutet, dass eine symmetrische Verteilung der st\u00fcndlichen Schallleistungspegel um den energetischen Mittelwert vor- liegt.", - "embedding": [ - 0.015742160379886627, - 0.012132950127124786, - 0.020872067660093307, - -0.037227727472782135, - -0.00655923318117857, - 0.007329372223466635, - -0.003157242899760604, - -0.012021997943520546, - -0.014567372389137745, - -0.03678391873836517, - 0.017582660540938377, - 0.03482593968510628, - -0.021237557753920555, - 0.0013640595134347677, - 0.006892090197652578, - 0.017112746834754944, - 0.034173280000686646, - 0.020611004903912544, - 0.0039388034492731094, - -0.001887819147668779, - -0.010188023559749126, - 0.015546361915767193, - -0.014593478292226791, - -0.0028863889165222645, - -0.022412344813346863, - 0.009006708860397339, - 0.04033438861370087, - -0.009254719130694866, - -0.005071168299764395, - 0.0055410838685929775, - 0.017295490950345993, - 0.0006081975880078971, - -0.023025846108794212, - 0.032476361840963364, - 0.0014431944582611322, - -0.022816995158791542, - 0.001228632521815598, - -0.008177829906344414, - 0.022516772150993347, - -0.0019530851859599352, - 0.010925528593361378, - 0.0011323651997372508, - 0.008837017230689526, - -0.03164095804095268, - 0.004245553631335497, - 0.015246138907968998, - 0.013483956456184387, - 0.011180066503584385, - -0.016708096489310265, - 0.002442580182105303, - 0.015846585854887962, - 0.007962452247738838, - -0.013497009873390198, - 0.008791330270469189, - 0.013771126978099346, - 0.005762988235801458, - 0.003189875977113843, - -0.008347521536052227, - -0.02829933911561966, - -0.019423162564635277, - -0.031301576644182205, - -0.022203493863344193, - -0.025375422090291977, - -0.0008990392088890076, - -0.026302199810743332, - -0.026602422818541527, - -0.012028524652123451, - 0.008380155079066753, - -0.0029908146243542433, - 0.01065141148865223, - 0.032711319625377655, - 0.02913474477827549, - 0.005195173900574446, - 0.006024051923304796, - 0.033129025250673294, - -0.0004138272488489747, - 0.0039388034492731094, - 0.0115977693349123, - -0.006892090197652578, - -0.01088636927306652, - 0.03409495949745178, - -0.020767642185091972, - -0.011486816219985485, - 0.0288997869938612, - -0.00200203456915915, - -0.009731161408126354, - -0.014332414604723454, - 0.005456238053739071, - -0.035817984491586685, - -0.00661470927298069, - 0.006471124477684498, - 0.00965936854481697, - 0.004444614984095097, - -0.011036481708288193, - 0.03038785047829151, - -0.00851721316576004, - 0.0003581471974030137, - 0.020676270127296448, - -0.0038376410957425833, - -0.02072848193347454, - -0.006467861123383045, - -0.010742784477770329, - 0.01760876737535, - -0.0010442560305818915, - -0.024318113923072815, - 0.004467457998543978, - -0.002840702887624502, - 0.0077013885602355, - -0.003162137931212783, - -0.018170055001974106, - -0.020362993702292442, - 0.0011111537460237741, - -0.006363435182720423, - -0.011884938925504684, - 0.017504341900348663, - 0.016277341172099113, - 0.012896561995148659, - -0.017178012058138847, - -0.008236569352447987, - -0.019736438989639282, - 0.02029772661626339, - -0.00029002581140957773, - 0.038037028163671494, - -0.01117353979498148, - 0.01617291569709778, - 0.03464319556951523, - -0.008980602025985718, - -0.0039290133863687515, - -0.0189010351896286, - -0.0080995112657547, - -0.01948842965066433, - 0.01486759539693594, - 0.015951011329889297, - 0.003251878544688225, - -0.01290961541235447, - 0.011010374873876572, - -0.0022272022906690836, - 0.0030968717765063047, - -0.021629152819514275, - -0.03156264126300812, - 0.011264911852777004, - 0.022216547280550003, - -0.025101305916905403, - -0.04200519993901253, - 0.0044119819067418575, - 0.0332595556974411, - 0.019344843924045563, - 0.015050340443849564, - -0.01076236367225647, - -0.008373628370463848, - -0.011310598812997341, - -0.02421368658542633, - 0.013718914240598679, - 0.00036814104532822967, - -0.019579801708459854, - -0.0029777614399790764, - 0.0014905123971402645, - 0.01807868294417858, - -0.01989307813346386, - 0.001652045757509768, - -0.008465000428259373, - 0.01766098104417324, - 0.0026971176266670227, - -0.010599198751151562, - 0.009672421962022781, - 0.004659992642700672, - -0.00030654625152237713, - 0.0003714043414220214, - -0.004659992642700672, - -0.008869649842381477, - -0.002375682583078742, - 0.027646679431200027, - -0.01304667443037033, - 0.015402777120471, - -0.006585340015590191, - 0.009926958940923214, - 0.005593296606093645, - 0.0015296719502657652, - -0.03756711259484291, - -0.02957855351269245, - -0.01333384495228529, - 0.006024051923304796, - 0.01014233659952879, - 0.006582076661288738, - -0.013901658356189728, - 0.012237375602126122, - 0.035583026707172394, - 0.016068490222096443, - -0.001078520668670535, - -0.016290394589304924, - 0.010370767675340176, - 0.004777471534907818, - 0.011095220223069191, - -0.022229600697755814, - -0.6324014663696289, - 0.005348549224436283, - -0.004992849193513393, - 0.01763487420976162, - 0.009163347072899342, - 0.03443434461951256, - 0.007779707666486502, - 0.0010108072310686111, - -0.01413661614060402, - 0.036836132407188416, - -0.0026954859495162964, - 0.009104607626795769, - -0.014201882295310497, - -0.007296739146113396, - -0.004539250396192074, - -0.017791513353586197, - -0.024670548737049103, - -0.007779707666486502, - 0.019827811047434807, - 0.0007122152601368725, - -0.017517395317554474, - 0.025336261838674545, - -0.009156820364296436, - 0.008726065047085285, - 0.0007411770639009774, - 0.006741978228092194, - 0.015298351645469666, - -0.017987310886383057, - 0.013549222610890865, - -0.008432367816567421, - -0.03156264126300812, - 0.010396874509751797, - -0.021459462121129036, - 0.03714941069483757, - 0.03506089746952057, - -0.005873940419405699, - -0.009802953340113163, - 0.015102553181350231, - 0.009293879382312298, - 0.024370325729250908, - -0.003716898849233985, - -0.009202506393194199, - -0.0012808453757315874, - -0.017334651201963425, - -0.0050972746685147285, - 5.7713250498636626e-06, - 0.031066616997122765, - -0.013888605870306492, - 0.020793749019503593, - -0.04247511550784111, - 0.007655702065676451, - -0.002612271811813116, - 0.02112007886171341, - 0.022242654114961624, - 0.025740912184119225, - -0.010416454635560513, - 0.04182245582342148, - -0.02134198322892189, - -0.019240418449044228, - 0.008314888924360275, - -0.007074834778904915, - 0.005655299406498671, - -0.0013730335049331188, - -0.021041760221123695, - -0.010305502451956272, - -0.0015582258347421885, - 0.000432387285400182, - -0.045268502086400986, - 0.02767278626561165, - 0.006529863458126783, - -0.013183732517063618, - 0.02357408031821251, - -0.009724634699523449, - -0.011741354130208492, - 0.03835030272603035, - 0.02957855351269245, - 0.007087888196110725, - -0.02093733474612236, - 0.006976936012506485, - 0.025714805349707603, - -0.009881272912025452, - -0.0003420346474740654, - -0.0017621821025386453, - -0.006898616440594196, - 0.009300405159592628, - -0.011447656899690628, - 0.000315112411044538, - 0.018130896613001823, - 0.013588381931185722, - 0.015128660015761852, - 0.009052394889295101, - 0.038898538798093796, - 0.009718107990920544, - -0.02131587639451027, - -0.0026155351661145687, - 0.0497065894305706, - -0.016721149906516075, - 0.018757449463009834, - -0.011349758133292198, - -0.015520256012678146, - -0.02709844522178173, - -0.01909683272242546, - 0.013549222610890865, - -0.012354854494333267, - 0.03143210709095001, - 0.003129504853859544, - -0.016368713229894638, - -0.010214129462838173, - 0.008895756676793098, - -0.026941806077957153, - 0.010997321456670761, - -0.0007085440447553992, - -0.011238805949687958, - -0.015285298228263855, - -0.013692807406187057, - -0.02811659500002861, - 0.015846585854887962, - 0.013379530981183052, - -0.011134380474686623, - -0.00011105418525403365, - 0.006696292199194431, - -0.0069638825953006744, - 0.0553455725312233, - -0.011401970870792866, - -0.01990613155066967, - 0.0283515527844429, - 0.021694419905543327, - 0.0012645288370549679, - 0.009920432232320309, - -0.029656872153282166, - 0.01720411889255047, - 0.0017866569105535746, - 0.03098829835653305, - -0.017895938828587532, - 0.03310291841626167, - 0.018300587311387062, - 0.03801092132925987, - -0.028560403734445572, - 0.005355075467377901, - -0.04002111405134201, - -0.02585839107632637, - 0.0049014766700565815, - 0.013111940585076809, - -0.03696666285395622, - -0.01293572224676609, - -0.032110873609781265, - -0.038872431963682175, - 0.011506396345794201, - 0.0186530239880085, - -0.01045561395585537, - 0.007740547880530357, - -0.016956107690930367, - -0.01036424096673727, - 0.015063393861055374, - 0.00943746417760849, - 0.00313113653101027, - -0.008536793291568756, - -0.02484024129807949, - 0.0008109300979413092, - -0.013875552453100681, - 0.00983558688312769, - 0.007277159485965967, - -0.041744135320186615, - -0.010546986013650894, - -0.016277341172099113, - -0.009071974083781242, - 0.018300587311387062, - -0.003654896281659603, - -0.02627609297633171, - -0.032476361840963364, - -0.001661019749008119, - 0.0064809140749275684, - -0.006334065459668636, - 0.007166207302361727, - -0.011858833022415638, - -0.0033187763765454292, - -0.01576826721429825, - 0.003527627559378743, - -0.016538405790925026, - -0.026615476235747337, - 0.01993223838508129, - -0.0009798058308660984, - -0.02728118933737278, - -0.0027020126581192017, - 0.018522491678595543, - 0.008843543939292431, - 0.009809480048716068, - 0.0034166753757745028, - -0.018418066203594208, - 0.022608144208788872, - -0.016943054273724556, - 0.01947537623345852, - -0.037253834307193756, - 0.0168125219643116, - -0.028638722375035286, - -0.007394638378173113, - 0.009652841836214066, - -0.0211070254445076, - -0.0005388524732552469, - 0.02033688686788082, - 0.027333403006196022, - -0.004265133291482925, - 0.011330178007483482, - -0.016773363575339317, - 0.02668074145913124, - -0.0229475274682045, - 0.013979977928102016, - -0.015102553181350231, - 0.03769764304161072, - 0.02337828278541565, - 0.020023610442876816, - 0.0024670548737049103, - -0.022190440446138382, - -0.009600629098713398, - 0.0022190441377460957, - 0.041509177535772324, - -0.01117353979498148, - 0.005325705744326115, - 0.03678391873836517, - 0.0006693844334222376, - -0.0002832952595781535, - -0.0021439881529659033, - 0.02093733474612236, - 0.02378293126821518, - 0.0007729942444711924, - -0.012681184336543083, - -0.0022777835838496685, - 0.026132507249712944, - -0.0034688881132751703, - 0.007929819636046886, - -0.004708942025899887, - 0.002843966009095311, - 0.009561469778418541, - 0.01618596911430359, - 0.0034656247589737177, - 0.02054573781788349, - 0.00862163957208395, - -0.007649175822734833, - 0.029813511297106743, - 0.013875552453100681, - 0.01929263025522232, - 0.008386681787669659, - 0.002840702887624502, - -0.021877164021134377, - 0.012263482436537743, - -0.020467419177293777, - 0.007257579825818539, - 0.025727858766913414, - -0.008947969414293766, - -0.00048623172915540636, - -0.01117353979498148, - -0.008040771819651127, - -0.010077071376144886, - 0.0010524142999202013, - 0.012394013814628124, - -0.022307919338345528, - 0.030518382787704468, - -0.013248998671770096, - 0.004715468734502792, - 0.022673409432172775, - 0.006650605704635382, - 0.01467179786413908, - 0.0288997869938612, - -0.03344229981303215, - 0.002233728999271989, - -0.0002563730231486261, - -0.020650163292884827, - -0.016120702028274536, - -0.015885746106505394, - 0.0027036441024392843, - 0.007577382959425449, - 0.0006008551572449505, - 0.023012792691588402, - 0.009776847437024117, - 0.025284050032496452, - -0.0195145346224308, - 0.006663659121841192, - 0.016943054273724556, - 0.018731342628598213, - 0.027359507977962494, - -0.016251234337687492, - -0.01170872151851654, - -0.004611043259501457, - 0.016081543639302254, - -0.02481413446366787, - -0.0067093451507389545, - -0.010351188480854034, - 0.004177024122327566, - -0.023247750476002693, - -0.00965936854481697, - -0.01518087275326252, - 0.016890842467546463, - -0.0010687308385968208, - -0.015337510965764523, - 0.022869206964969635, - 0.02238623984158039, - 0.0203107800334692, - 0.011787040159106255, - -0.006918196566402912, - 0.009085027500987053, - -0.0002608600480016321, - -0.029813511297106743, - -0.019605906680226326, - -0.02318248525261879, - -0.0024278953205794096, - 0.004800314549356699, - -0.022921420633792877, - -0.019357897341251373, - 0.004787261597812176, - -0.008125617168843746, - -0.015624681487679482, - 0.004930846393108368, - -0.01314457319676876, - 0.026537157595157623, - -0.02725508250296116, - -0.010625305585563183, - -0.010781943798065186, - -0.0020036662463098764, - 0.047487545758485794, - 0.008066877722740173, - -0.029709085822105408, - -0.009085027500987053, - -0.0006877405103296041, - 0.0009610418928787112, - 0.014893702231347561, - 0.025962816551327705, - 0.009156820364296436, - 0.020832909271121025, - -0.007851500064134598, - 0.008236569352447987, - -0.0007073203451000154, - -0.02605418860912323, - 0.0080081382766366, - 0.03490426018834114, - 0.011989365331828594, - -0.007583909668028355, - 0.02032383345067501, - -0.006696292199194431, - 0.005563926883041859, - -0.016734203323721886, - 0.011036481708288193, - -0.010416454635560513, - 0.015637734904885292, - 0.012929195538163185, - -0.025179624557495117, - -0.0037103723734617233, - 0.0029043371323496103, - 0.03513921797275543, - -0.010194549337029457, - -0.023143325001001358, - 0.011950205080211163, - 0.010064017958939075, - -0.0036320530343800783, - -0.026106402277946472, - -0.0024817397352308035, - 0.05524114519357681, - 0.017386863008141518, - 0.03592240810394287, - 0.0044021918438375, - -0.004983059596270323, - -0.0006061579915694892, - -0.007388111669570208, - 0.021224504336714745, - -0.0025372158270329237, - 0.016264287754893303, - 0.011460710316896439, - 0.0019318737322464585, - 0.009306931868195534, - 0.01446294691413641, - -0.004999375902116299, - -0.00034794938983395696, - 0.015911851078271866, - -0.0022728885523974895, - -0.0011902886908501387, - 0.013418690301477909, - -0.03242415189743042, - 0.01467179786413908, - 0.001528856111690402, - 0.00048174470430240035, - -0.03281574696302414, - 0.006314485799521208, - -0.018091736361384392, - -0.0211070254445076, - -0.01908377930521965, - -0.017778459936380386, - -0.010801523923873901, - 0.02320859022438526, - -0.004832947626709938, - -0.03962951898574829, - -0.014293255284428596, - -0.02233402617275715, - -0.007048728410154581, - -0.002338154474273324, - 0.007844973355531693, - -0.015128660015761852, - -0.02011498250067234, - -0.019618960097432137, - -0.010488246567547321, - 0.023104164749383926, - -0.0008476422517560422, - 0.025714805349707603, - -0.000796245236415416, - -0.03286796063184738, - 0.002762383548542857, - -0.015115606598556042, - -0.01582047902047634, - 0.006582076661288738, - -0.013927765190601349, - -0.0221512820571661, - 0.01723022572696209, - -0.009293879382312298, - 0.006014262326061726, - 0.006245956756174564, - 0.0014978548279032111, - -0.011317125521600246, - 0.01076236367225647, - 0.008758697658777237, - -0.006467861123383045, - 0.00276564690284431, - 0.00038690504152327776, - 0.008047298528254032, - 0.021276718005537987, - 0.014423786662518978, - -0.012805189937353134, - 0.02071543037891388, - -0.012948774732649326, - -0.021041760221123695, - -0.003818061202764511, - 0.007962452247738838, - 0.006493967492133379, - -0.0017997100949287415, - -0.004310819786041975, - 0.002011824632063508, - 0.0111996466293931, - -0.010892895981669426, - -0.011623875238001347, - 0.004983059596270323, - 0.014489052817225456, - -0.00012543310003820807, - -0.003235562238842249, - 0.01946232281625271, - 0.009476623497903347, - 0.01948842965066433, - 0.0003654896281659603, - -0.01516781933605671, - -0.02910863794386387, - 0.04038660228252411, - 0.0036646861117333174, - -0.0011397076305001974, - 0.04286671057343483, - -0.026759061962366104, - 0.008615112863481045, - -0.039081282913684845, - -0.0015174346044659615, - 0.02157694101333618, - 0.015259191393852234, - 9.060757292900234e-05, - -0.010827629826962948, - 0.0040105958469212055, - -0.03164095804095268, - 0.016890842467546463, - 0.019736438989639282, - -0.01643398031592369, - -0.0025078461039811373, - -0.02525794319808483, - 0.012354854494333267, - -0.008190883323550224, - -0.003012025961652398, - -0.007668755482882261, - -0.021067865192890167, - -0.030701128765940666, - 0.01786983199417591, - -0.020454365760087967, - 0.03508700430393219, - -0.005018955562263727, - -0.004268396645784378, - -0.01760876737535, - -0.008132143877446651, - -0.011056060902774334, - -0.015298351645469666, - 0.013810286298394203, - 0.0080995112657547, - 0.02585839107632637, - 0.02050657756626606, - 0.02544068917632103, - -0.009085027500987053, - -0.011480290442705154, - 0.006428701337426901, - -0.009319985285401344, - -0.008066877722740173, - -0.02358713373541832, - -0.01168261468410492, - -0.013085833750665188, - 0.014632637612521648, - 0.017373809590935707, - 0.007133574225008488, - 0.010135810822248459, - 0.0213550366461277, - 0.013601435348391533, - 0.05618097633123398, - -0.0028651775792241096, - -0.010847209952771664, - -0.016499245539307594, - -0.03409495949745178, - 0.01007054466754198, - -0.0013885342050343752, - 0.006059948354959488, - 0.006617972627282143, - -0.025401528924703598, - -0.01803952269256115, - 0.02112007886171341, - -0.009692001156508923, - -0.007903712801635265, - -0.027333403006196022, - 0.022647302597761154, - -0.039707835763692856, - 0.03036174550652504, - -0.002238624030724168, - -0.004222710616886616, - -0.0006604103837162256, - -0.013379530981183052, - -0.018600810319185257, - -0.00600773561745882, - 0.01908377930521965, - 0.0011633664835244417, - 0.03218919411301613, - -0.01762182079255581, - -0.014345468021929264, - 0.0035602604039013386, - -0.019618960097432137, - 0.0026775377336889505, - -0.014515159651637077, - -0.010808050632476807, - -0.017987310886383057, - -0.02464444376528263, - -0.012309168465435505, - -0.03036174550652504, - -0.014032190665602684, - 0.008132143877446651, - -0.004611043259501457, - 0.011506396345794201, - 0.014606531709432602, - -0.01886187493801117, - 0.0013624278362840414, - 0.003961646463721991, - 0.0027542253956198692, - 0.04130032658576965, - 0.016773363575339317, - 0.0447985865175724, - 0.03367725759744644, - -0.021381143480539322, - -0.005479081068187952, - -0.05800842493772507, - 0.00671587185934186, - -0.000619211234152317, - 0.02725508250296116, - 0.009796427562832832, - -0.014384627342224121, - -0.005795621313154697, - 0.017739299684762955, - -0.00431408267468214, - 0.012550652958452702, - -0.014436840079724789, - 0.0357135571539402, - 0.023143325001001358, - -0.0011087062302976847, - -0.01311846636235714, - 0.019253471866250038, - -0.01413661614060402, - 0.001018965500406921, - 0.021289769560098648, - -0.014567372389137745, - 0.0016324658645316958, - -0.0046567292883992195, - 0.004030175507068634, - 0.053439803421497345, - 0.011832726188004017, - 0.030413957312703133, - -0.0024588967207819223, - -0.014436840079724789, - 0.0007207814487628639, - -0.021381143480539322, - -0.021903270855545998, - 0.005736881867051125, - -0.01843111962080002, - 0.050959695130586624, - -0.010201076045632362, - -0.0053452858701348305, - 0.006161110941320658, - 0.002902705455198884, - -0.00789066031575203, - -0.012035051360726357, - -0.00829530879855156, - 0.018705235794186592, - -0.01580742560327053, - -0.0019204521086066961, - 0.020428258925676346, - -0.013914711773395538, - -0.013183732517063618, - 0.011819673702120781, - -0.009470096789300442, - -0.022216547280550003, - 0.0049014766700565815, - -0.005658562760800123, - -0.004336926154792309, - 0.015911851078271866, - -0.0018209215486422181, - -0.0024278953205794096, - -0.00492432015016675, - -0.01086679007858038, - -0.005342022515833378, - -0.025505954399704933, - 0.020676270127296448, - -0.03383389487862587, - 0.0038931171875447035, - -0.005935943219810724, - -0.004101968370378017, - 0.04239679500460625, - -0.009972644969820976, - -0.028873680159449577, - -0.022725623100996017, - 0.020206354558467865, - -0.027803316712379456, - 0.014737064018845558, - 0.045033544301986694, - -0.007655702065676451, - -0.024148421362042427, - 0.005452974699437618, - -0.0035569972824305296, - -0.0013306105975061655, - 0.02874314785003662, - -0.001956348540261388, - -0.005606349557638168, - 0.0059522595256567, - -0.0027917532715946436, - 0.016668938100337982, - -0.022294867783784866, - -0.014071349985897541, - -0.00013430519902613014, - 0.011519449763000011, - 0.008132143877446651, - -0.002375682583078742, - -0.009763794019818306, - 0.001724654110148549, - 0.00798855908215046, - -0.004836210981011391, - 0.024265900254249573, - -0.0032926700077950954, - 0.017360756173729897, - 0.0040856520645320415, - -0.008021191693842411, - 0.0061513208784163, - -0.02541458234190941, - -0.007453377824276686, - 0.020023610442876816, - 0.021877164021134377, - -0.036418430507183075, - 0.008438894525170326, - -0.019540641456842422, - -0.01904461905360222, - -0.018561651930212975, - 0.021028706803917885, - 0.009195979684591293, - 0.017895938828587532, - 0.033938322216272354, - 0.01118659321218729, - 0.004020385909825563, - 0.02028467319905758, - -0.0002482147829141468, - -0.0094505175948143, - 0.02936970256268978, - 0.008647745475172997, - -0.029265275225043297, - 0.010233709588646889, - -0.004274923354387283, - 0.014345468021929264, - 0.029604658484458923, - -0.012720344588160515, - -0.004408718552440405, - 0.011121327057480812, - -0.02172052673995495, - -0.028560403734445572, - -0.017504341900348663, - 0.02198158949613571, - -0.010912476107478142, - 0.01927957683801651, - -0.018992407247424126, - 0.024866348132491112, - 0.01324247196316719, - 0.03871579468250275, - -0.02832544595003128, - -0.0026008503045886755, - -0.005629193037748337, - -0.01488064881414175, - 0.0012367907911539078, - -0.02114618569612503, - -0.02464444376528263, - 0.0037234255578368902, - 0.017360756173729897, - -0.007296739146113396, - 0.010436033830046654, - 0.0385330468416214, - -0.006885563489049673, - -0.011408497579395771, - 0.0026726429350674152, - 0.016721149906516075, - 0.02028467319905758, - -0.0026889594737440348, - -9.7134170573554e-06, - -0.014241041615605354, - -0.00300386780872941, - -0.015585522167384624, - 0.007257579825818539, - -0.04325830563902855, - -0.025910602882504463, - 0.029448021203279495, - -0.01373196765780449, - -0.008367101661860943, - 0.00733589893206954, - -0.013901658356189728, - -0.0030103945173323154, - -0.013027094304561615, - 0.0161990225315094, - 0.015220032073557377, - -0.031875915825366974, - 0.016368713229894638, - 0.0050581153482198715, - -0.004748101811856031, - -0.019853917881846428, - -0.0007774812984280288, - -0.031510427594184875, - 0.0006591866258531809, - 0.010488246567547321, - -0.02259509079158306, - 0.003281248267740011, - -0.01108869444578886, - 0.02421368658542633, - 0.0016234918730333447, - 0.003782165003940463, - -0.05226501449942589, - -0.03391221538186073, - -0.04312777519226074, - 0.03461708873510361, - 0.026328306645154953, - -0.01004443783313036, - 0.018992407247424126, - -0.0019302420550957322, - -0.0045425137504935265, - 0.0006322644185274839, - -0.004611043259501457, - 0.008066877722740173, - -0.019553694874048233, - -0.005521503742784262, - 0.0019759282004088163, - -0.012263482436537743, - -0.005929416511207819, - -0.006445018108934164, - -0.013901658356189728, - -0.034982576966285706, - 0.0028863889165222645, - 0.1799253225326538, - -0.03339008614420891, - -0.004646939691156149, - 0.015298351645469666, - -0.026511050760746002, - -0.03156264126300812, - 0.022908367216587067, - -0.0020314042922109365, - 0.0075121172703802586, - 0.01884882152080536, - 0.00870648492127657, - 0.004715468734502792, - 0.009032814763486385, - 0.009561469778418541, - 0.025505954399704933, - -0.014227989129722118, - -0.025127410888671875, - -0.020362993702292442, - -0.008863123133778572, - 0.027150657027959824, - 0.023756826296448708, - -0.02033688686788082, - -0.014932861551642418, - -0.0042977663688361645, - 0.02506214566528797, - 0.0016128860879689455, - -0.021015653386712074, - 0.0025355841498821974, - 0.035791877657175064, - 0.03265910968184471, - -0.015533308498561382, - -0.008667325600981712, - 0.009430937469005585, - -0.015402777120471, - -0.0068398769944906235, - 0.005214753560721874, - 0.004999375902116299, - -0.016564512625336647, - 0.020571844652295113, - 0.020885121077299118, - 0.010527406819164753, - -0.025336261838674545, - 0.0035961568355560303, - -0.016499245539307594, - 0.010905949398875237, - 0.01364059466868639, - 0.001059756730683148, - 0.013379530981183052, - 0.0035700504668056965, - 0.009809480048716068, - 0.00036487774923443794, - 0.022059909999370575, - 0.011819673702120781, - 0.04080430418252945, - -0.008569425903260708, - -0.027986062690615654, - 0.017386863008141518, - -0.012890036217868328, - 0.010625305585563183, - 0.001793183502741158, - -0.03451266139745712, - 0.006298169493675232, - -0.01322941854596138, - 0.020232461392879486, - -0.02811659500002861, - 0.019788652658462524, - -0.016460085287690163, - 0.004033438861370087, - -0.0031866126228123903, - -0.024318113923072815, - 0.01004443783313036, - -0.012550652958452702, - -0.03673170879483223, - -0.0013183732517063618, - -0.019697280600667, - -0.020806802436709404, - 0.022882260382175446, - 0.01802647113800049, - 0.016668938100337982, - 0.007453377824276686, - -0.003459098283201456, - -0.018796609714627266, - -0.011330178007483482, - -0.01990613155066967, - -0.00759043637663126, - -0.02115923911333084, - -0.0003534562129061669, - 0.020976493135094643, - 0.01971033401787281, - -0.030883872881531715, - -0.017582660540938377, - 0.010005278512835503, - -0.0020134563092142344, - -0.0022239391691982746, - -0.0019269788172096014, - -0.02071543037891388, - 0.006807244382798672, - 0.004659992642700672, - -0.035609133541584015, - -0.003563523758202791, - -0.010723204351961613, - 0.03748879209160805, - 0.04247511550784111, - 0.0009381988202221692, - -0.0077013885602355, - -0.002640009857714176, - -0.0020575106609612703, - 0.016460085287690163, - -0.0068333507515490055, - -0.024109261110424995, - -0.008262676186859608, - -0.0369405597448349, - 0.01843111962080002, - -0.013575328513979912, - 0.01950148120522499, - 0.00993348564952612, - 0.01004443783313036, - 0.004721995443105698, - -0.0003120530745945871, - -0.0003340803668834269, - -0.009052394889295101, - -0.011401970870792866, - 0.01642092689871788, - 0.014345468021929264, - 0.019697280600667, - -0.02751614712178707, - -0.030466170981526375, - 0.027176763862371445, - -0.004761154763400555, - 0.004206393845379353, - 0.02827323228120804, - -0.04182245582342148, - 0.02668074145913124, - -0.0049014766700565815, - 0.0029059688095003366, - -0.0034982578363269567, - -0.02177273854613304, - -0.04101315513253212, - -0.011578189209103584, - 0.008804383687675, - 0.02647189050912857, - -0.0020966704469174147, - 0.01078847050666809, - 0.006373225245624781, - 0.006865983828902245, - -0.006066475063562393, - 0.02378293126821518, - 0.00671587185934186, - -0.036444537341594696, - -0.027333403006196022, - -0.012726870365440845, - -0.01576826721429825, - -0.022843101993203163, - -0.008556373417377472, - 0.016525352373719215, - 0.0037332153879106045, - -0.039107389748096466, - -0.036235686391592026, - 0.005903310142457485, - 0.013927765190601349, - -0.02275172807276249, - -0.024344218894839287, - 0.023456601426005363, - -0.019566748291254044, - 0.007472957484424114, - 0.005306126084178686, - -0.16373935341835022, - 0.015311404131352901, - 0.005563926883041859, - -0.026732955127954483, - -0.00026575502124615014, - -0.010951635427772999, - 0.016159862279891968, - 0.016473138704895973, - -0.02194243110716343, - -0.013470903038978577, - 0.019005460664629936, - -0.013177205808460712, - -0.015246138907968998, - -0.015468043275177479, - -0.003452571574598551, - -0.01993223838508129, - -0.013392584398388863, - 0.04631275683641434, - 0.014254095032811165, - 0.020780695602297783, - 0.010723204351961613, - -0.013418690301477909, - 0.017948150634765625, - 0.0016438874881714582, - -0.012491913512349129, - 0.0028765990864485502, - -0.0288997869938612, - 0.04370211437344551, - -0.007055255118757486, - -0.007368532009422779, - -0.011029954999685287, - 0.0017132326029241085, - 0.01004443783313036, - -0.0008925126167014241, - -0.008752170950174332, - -0.015415830537676811, - -0.011095220223069191, - -0.008902283385396004, - 0.0035831036511808634, - 0.013196785934269428, - 0.008158250711858273, - 0.018822714686393738, - 4.652752249967307e-05, - 0.02588449791073799, - 0.0068007176741957664, - 0.04304945468902588, - 0.024761922657489777, - -0.017556555569171906, - -0.012152530252933502, - -0.008354048244655132, - -0.0009585944353602827, - -0.011036481708288193, - 0.016695043072104454, - 0.014397680759429932, - -0.008465000428259373, - 0.01767403446137905, - -0.012504965998232365, - 0.03156264126300812, - -0.000992043293081224, - -0.004353242460638285, - 0.006634289398789406, - -0.037645429372787476, - 0.01209379080682993, - -0.006689765490591526, - 0.003380778944119811, - -0.0238090381026268, - -0.005361602175980806, - 0.012890036217868328, - -0.014763169921934605, - -0.011421550996601582, - 0.0003585551166906953, - -0.026994019746780396, - 0.009626735933125019, - -0.011832726188004017, - 0.01147376373410225, - 0.012433174066245556, - -0.0008023639093153179, - -0.003534154035151005, - 0.012504965998232365, - -0.009000182151794434, - -0.009391778148710728, - 0.0479835644364357, - -0.0003905762278009206, - -0.02874314785003662, - -0.026432732120156288, - -0.02420063503086567, - -0.010586146265268326, - 0.029500233009457588, - -0.009411357343196869, - 0.013745020143687725, - 0.010214129462838173, - -0.010488246567547321, - -0.026393571868538857, - -0.024657495319843292, - 0.021851057186722755, - -0.009724634699523449, - -0.0003813982184510678, - 0.0005229438538663089, - -0.0186530239880085, - -0.008301835507154465, - -0.0021178817842155695, - -0.005103801377117634, - -0.03404274582862854, - 0.03177149221301079, - 0.012126423418521881, - 0.0037462685722857714, - -0.013797232881188393, - 0.010285922326147556, - 0.013392584398388863, - -0.01231569517403841, - -0.015898797661066055, - -0.006024051923304796, - 0.015154765918850899, - -0.004646939691156149, - -0.011454183608293533, - 0.014724010601639748, - -0.014932861551642418, - -0.017269384115934372, - 0.014423786662518978, - -0.0057042487896978855, - 0.04978490620851517, - -0.02544068917632103, - -0.015324457548558712, - 0.0006791743799112737, - -0.006520073860883713, - -0.025192677974700928, - -0.09393083304166794, - 0.0052767563611269, - 0.02561037987470627, - 0.009861692786216736, - 0.014384627342224121, - 0.023247750476002693, - -0.006451544351875782, - 0.005162540823221207, - 0.014032190665602684, - 0.05696416646242142, - -0.02772499807178974, - -0.025793123990297318, - -0.03568745031952858, - 0.0020901437383145094, - 0.005162540823221207, - -0.006210060324519873, - 0.02012803591787815, - -0.016864735633134842, - -0.025323210284113884, - 0.031484320759773254, - -0.00789066031575203, - -0.01767403446137905, - -0.005404025316238403, - -0.010116230696439743, - -0.025949763134121895, - -0.03218919411301613, - -0.03795870766043663, - 0.021080918610095978, - 0.0213550366461277, - -0.013575328513979912, - 0.03349451348185539, - -0.03098829835653305, - -0.01179356686770916, - -0.00954841636121273, - -0.017295490950345993, - -0.011232279241085052, - -0.01828753389418125, - -0.023469654843211174, - 0.028795361518859863, - -0.01640787348151207, - 0.002357734367251396, - 0.02790774405002594, - 0.013614488765597343, - -0.02790774405002594, - -0.004601253196597099, - -0.01086679007858038, - -0.029813511297106743, - 0.002798279980197549, - 0.013993031345307827, - -0.005074431654065847, - -0.01333384495228529, - -0.009816006757318974, - -0.022738676518201828, - 0.011852306313812733, - 0.02113313227891922, - 0.01413661614060402, - 0.0016226760344579816, - -0.014893702231347561, - 0.00222883396781981, - -0.0028504927176982164, - -0.01664283126592636, - 0.009731161408126354, - -0.03542638570070267, - 0.0414830707013607, - 0.0016642831033095717, - -0.0034786779433488846, - -0.014214935712516308, - -0.011963258497416973, - 0.009209033101797104, - -0.012211269699037075, - -0.016303448006510735, - -0.0007150706369429827, - -0.00039669492980465293, - 0.01324247196316719, - -0.014188828878104687, - 0.004940636456012726, - -0.03936845436692238, - -0.009985698387026787, - -0.0020770905539393425, - -0.012276534922420979, - 0.006983462255448103, - -0.022699516266584396, - 0.01047519315034151, - -0.015428883023560047, - 0.04268396645784378, - 0.022216547280550003, - -0.0028097014874219894, - -0.014201882295310497, - 0.016890842467546463, - -0.011506396345794201, - -0.014619585126638412, - 0.0235610269010067, - 0.022843101993203163, - -0.005032008979469538, - -0.03286796063184738, - 0.02704623155295849, - 0.01373196765780449, - -0.015494149178266525, - 0.003785428125411272, - -0.001555778319016099, - -0.01078847050666809, - 0.0020624056924134493, - -0.03576577082276344, - 0.02032383345067501, - 0.026158614084124565, - 0.009352617897093296, - -0.01219168957322836, - -0.016277341172099113, - -0.0036385797429829836, - 0.011003848165273666, - 0.013353424146771431, - 0.008027718402445316, - 0.005038535688072443, - 0.0011356284376233816, - -0.019579801708459854, - -0.017164958640933037, - -0.04425035044550896, - -0.029682978987693787, - -0.019658120349049568, - 0.024879401549696922, - 0.0023512078914791346, - 0.017399916425347328, - -0.004363032523542643, - 0.016943054273724556, - -0.01746518351137638, - 0.020624056458473206, - -0.02606724202632904, - -0.004190077539533377, - -0.009124187752604485, - 0.012165582738816738, - -0.008458473719656467, - 0.0036744759418070316, - 0.003067502286285162, - -0.01579437218606472, - 0.00013767047494184226, - 0.020219407975673676, - -0.006477650720626116, - -0.04166581854224205, - 0.018104789778590202, - 0.0229475274682045, - 0.02113313227891922, - 0.029656872153282166, - -0.03923792019486427, - -0.03221530094742775, - -0.01486759539693594, - -0.010814576409757137, - 0.0027003809809684753, - 0.01035771518945694, - 0.012146003544330597, - -0.004986322484910488, - 0.018091736361384392, - -0.008876176550984383, - 0.0447985865175724, - 0.009457044303417206, - 0.029500233009457588, - -0.022660356014966965, - -0.014645691029727459, - 0.017334651201963425, - 0.0034819412976503372, - 0.009561469778418541, - 0.031249362975358963, - -0.036183472722768784, - 0.04239679500460625, - -0.0037103723734617233, - 0.002489898120984435, - -0.010697098448872566, - -0.0018143949564546347, - -0.011734827421605587, - -0.014619585126638412, - -0.008908809162676334, - -0.00497979624196887, - -0.020976493135094643, - -0.0016373608959838748, - 0.0003438702551648021, - 0.0283515527844429, - 0.027411721646785736, - -0.009156820364296436, - -0.016773363575339317, - 0.009333038702607155, - 0.00430429307743907, - -0.007140100933611393, - -0.005606349557638168, - -0.0010165179846808314, - 0.01220474299043417, - 0.014841489493846893, - -0.007094414439052343, - 0.03605294227600098, - 0.005926153156906366, - -0.012544126249849796, - -0.0019318737322464585, - 0.006412385031580925, - -0.010997321456670761, - -0.01260286569595337, - 0.031693171709775925, - -0.005733618512749672, - 0.01967117376625538, - 0.007812340743839741, - 0.022477611899375916, - -0.005067905411124229, - -0.020963439717888832, - 0.03331176936626434, - 0.037462685257196426, - 0.008562900125980377, - 0.0035928934812545776, - -0.024109261110424995, - -0.01373196765780449, - 0.018561651930212975, - 0.013758073560893536, - 0.00385069428011775, - -0.035817984491586685, - -0.0019188205478712916, - 0.013405636884272099, - -0.0026824327651411295, - 0.004983059596270323, - -0.005348549224436283, - 0.007903712801635265, - -0.014345468021929264, - 0.0035928934812545776, - -0.02751614712178707, - -0.0019694017246365547, - -0.02481413446366787, - 0.026719901710748672, - 0.02669379487633705, - 0.01014233659952879, - -0.000527838827110827, - 0.002767278579995036, - 0.020415205508470535, - -0.023900410160422325, - 0.01602932997047901, - 0.0041737607680261135, - 0.007649175822734833, - -0.014188828878104687, - 0.015507202595472336, - 0.0015671999426558614, - -0.029604658484458923, - -0.015076447278261185, - -0.009705054573714733, - 0.0015133554115891457, - 0.01805257610976696, - 0.02461833693087101, - 0.012766030617058277, - 0.1302187293767929, - 0.0015296719502657652, - -0.0010018331231549382, - 0.0297612976282835, - -0.0010426243534311652, - 0.018352800980210304, - 0.016368713229894638, - -0.004650202579796314, - 0.017908992245793343, - -0.05398803949356079, - -0.0004140312084928155, - -0.023665452376008034, - 0.007127047516405582, - -0.02256898395717144, - 0.001410561497323215, - 0.024866348132491112, - -0.0025127411354333162, - 0.012635498307645321, - -0.016734203323721886, - -0.0037005823105573654, - 0.027124552056193352, - -0.03555691987276077, - -0.0026889594737440348, - 0.021498622372746468, - -0.005818464327603579, - -0.022895313799381256, - 0.02254287712275982, - 0.01303362101316452, - 0.005169067531824112, - -0.0221512820571661, - -0.015415830537676811, - 0.0011829463765025139, - -0.0570685938000679, - -0.0357135571539402, - 0.008641218766570091, - -0.03493036702275276, - -0.003563523758202791, - -0.028247127309441566, - 0.0033742524683475494, - 0.001219658413901925, - -0.009189452975988388, - 0.04119590297341347, - -0.014306307770311832, - 0.0007770733791403472, - 0.03936845436692238, - -0.008484580554068089, - 0.005094011779874563, - -0.003769111819565296, - -0.006937776226550341 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 32, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 508 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000033.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000033.json deleted file mode 100644 index f7abd7d294f15935c223567f59c287819fc8b155..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000033.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000033", - "content": "Die st\u00fcndlichen Schallleis- tungspegel der Beladevorg\u00e4nge folgen somit einem Muster, dass gut durch die Gau\u00df- sche Glockenkurve beschrieben werden kann. Dies bedeutet, dass eine symmetrische Verteilung der st\u00fcndlichen Schallleistungspegel um den energetischen Mittelwert vor- liegt. Es zeigt sich, dass die meisten Messwerte nahe dem Mittelwert liegen und die An- zahl der Messwerte abnimmt, je weiter sie sich vom Mittelwert entfernen. Dies ent- spricht der charakteristischen Glockenform der Normalverteilung. Die Messdaten wei- sen eine Durchschnittlichkeit auf, wobei keine Ausrei\u00dfer auftreten. ## 7.3 Richtcharakteristik\n\nNachdem die Auswertung der Richtcharakteristik abgeschlossen ist, k\u00f6nnen nun die Er- gebnisse dargestellt und interpretiert werden (siehe Tabelle 13). Das Polardiagramm zeigt die Intensit\u00e4t des Schalls in Abh\u00e4ngigkeit vom Azimutwinkel. Es wurde bewusst nur eine Messreihe des Gabelstaplers und des Gabelhubwagens als isolierte Schallquelle be- trachtet, um potenzielle St\u00f6rquellen wie Reflexionen von ung\u00fcnstig platzierten Anh\u00e4- ngern, wie an den anderen Untersuchungstagen, auszuschlie\u00dfen. Dadurch konnte eine pr\u00e4zisere Untersuchung der Richtcharakteristik des Gabelstaplers und des Gabelhubwa- gens erfolgen. Die Wahl eines bestimmten Untersuchungstags garantierte zudem weit- gehend konstante meteorologische und Umgebungsbedingungen, was zu einheitliche- ren Bedingungen f\u00fcr die Analyse der Richtcharakteristik f\u00fchrte und somit eine bessere Vergleichbarkeit der Ergebnisse erm\u00f6glichte. Dar\u00fcber hinaus wurde durch die Begren- zung auf zwei Schallquellen mit jeweils einer Messreihe die Komplexit\u00e4t der Auswertung deutlich reduziert, was den Prozess insgesamt vereinfachte. 66\n7 Ergebnisse und Interpretation\n\n| Pr | 5) | \u00ae | DI | Messpunkt | PM | [dB(A)] | Messpunkt | Fl | [dB(A)] |\n|---|---|---|---|---|---|---|---|---|---|\n\nGabelstapler Beladevorgangs\nGabelhubwagen Beladevorgang\nTabelle 13: Ergebnisse des Richtma\u00dfes mit dazugeh\u00f6rigen Azimuthwinkel f\u00fcr\n\n## jeden Messpunkt\n\nIn Diagramm 6 und Diagramm 7 ist die Richtcharakteristik des Gabelstaplers und des Gabelhubwagens grafisch dargestellt. Dabei wird die Richtcharakteristik in einem Polar- koordinationssystem veranschaulicht. [IMAGE: RICHTWIRKUNG GABELSTAPLER 5 0r 25 0 40\u00b0 a5 50\u00b0 10 4.dB 305\u00b0 so 300 = . 65 295 ) 200\u00b0 248 5 5: . 285 . . 90 280\u00b0 ya 8 275\u00b0 IK . Er 20\u00b0 Er 65\u00b0 100\u00b0 105\u00b0 110\u00b0 Ei us\u00ae 245 120 220\u00b0 125\u00b0 235 130 230\u00b0 135\u00b0 225 120 0: 1a 215\u00b0 210 205 oo. 165 195 yon: 10.175170]\n\nDiagramm 6: Richtwirkung eines Gabelstaplers (38 gesamt Einzelereignisse)\n67\n7 Ergebnisse und Interpretation\n\n[IMAGE: ]\n\nDiagramm 7: Richtwirkung eines Gabelhubwagens (83 gesamt Einzelereignisse)\nDie ermittelten Richtcharakteristiken basieren auf einer begrenzten Anzahl von vier Messpunkten, was m\u00f6glicherweise nicht alle Aspekte der Schallabstrahlung vollst\u00e4ndig abdeckt. Dennoch liefern sie eine grobe Darstellung der Schallemissionen w\u00e4hrend des Beladevorgangs. Es wird deutlich, dass die Schallabstrahlung weitestgehend in alle Rich- tungen erfolgt, ohne eine ausgepr\u00e4gte Richtcharakteristik aufzuweisen. Diese Erkennt- nis ist von Bedeutung, um die Schallemissionen angemessen bewerten zu k\u00f6nnen und gegebenenfalls Ma\u00dfnahmen zur L\u00e4rmminderung zu entwickeln. ## 7.4 Validierung\n\nNachdem die Auswertung der Validierung abgeschlossen ist, k\u00f6nnen nun die gesammel- ten Informationen systematisch analysiert und interpretiert werden. Durch den Ver- gleich der simulierten Messergebnisse mit den tats\u00e4chlichen Messungen kann die Ge- nauigkeit der berechneten Kenngr\u00f6\u00dfen \u00fcberpr\u00fcft werden.", - "embedding": [ - 0.009334021247923374, - 0.015457192435860634, - 0.00013921009667683393, - -0.03858327493071556, - -0.003192606847733259, - 0.019583532586693764, - -0.0030532930977642536, - -0.013785427436232567, - -0.018522094935178757, - -0.024320200085639954, - 0.016770722344517708, - 0.03205543011426926, - -0.018694577738642693, - 0.009805033914744854, - 0.0009942689212039113, - 0.0003149071126244962, - 0.03675229474902153, - 0.004139608703553677, - 0.012306047603487968, - 0.0098183024674654, - -0.00863081868737936, - 0.008584380149841309, - -0.005827958695590496, - -0.006209412589669228, - -0.010521505028009415, - 0.023975232616066933, - 0.03608889505267143, - -0.016770722344517708, - -0.020127519965171814, - 0.01584196276962757, - 0.0009677329799160361, - -0.012100393883883953, - -0.013287877663969994, - 0.00018284929683431983, - -0.009659086354076862, - -0.010826668702065945, - -0.001155972364358604, - -0.007589282467961311, - 0.015934839844703674, - 0.00016481314378324896, - 0.007934249937534332, - -0.006421700585633516, - 0.006348726339638233, - -0.03762798011302948, - 0.0018359562382102013, - 0.024147717282176018, - 0.009466701187193394, - -0.01011683139950037, - -0.024598827585577965, - 0.014395753853023052, - 0.01079349871724844, - 0.0038642981089651585, - -0.02097667008638382, - 0.014435557648539543, - 0.007920981384813786, - 0.006872811820358038, - 0.0026867652777582407, - -0.009805033914744854, - -0.012677551247179508, - -0.025262227281928062, - -0.02057863026857376, - -0.006839641835540533, - -0.01407732255756855, - 0.0037382522132247686, - -0.023656802251935005, - -0.03216157481074333, - -0.018455754965543747, - 0.004086536820977926, - -0.021202225238084793, - 0.012000883929431438, - 0.02300667017698288, - 0.038662880659103394, - -0.008604282513260841, - 0.014263073913753033, - 0.041051119565963745, - -0.013825231231749058, - 0.013135296292603016, - -0.006693693809211254, - -0.0006422529695555568, - 0.0065444293431937695, - 0.030197912827134132, - -0.01780562475323677, - -0.012498433701694012, - 0.04439464956521988, - 0.003665278432890773, - -0.008186341263353825, - -0.006080050021409988, - 0.00815317127853632, - -0.026575755327939987, - 0.011523237451910973, - 0.01096598245203495, - 0.020127519965171814, - 0.006813105661422014, - -7.831215771147981e-05, - 0.020830722525715828, - -0.009075296111404896, - -0.004212582483887672, - 0.016133859753608704, - -0.0036453765351325274, - -0.01444882620126009, - -0.017473924905061722, - -0.0067036449909210205, - 0.01807098276913166, - -0.0009494895348325372, - -0.027836214751005173, - -0.007297386880964041, - -0.0013873327989131212, - 0.011881472542881966, - 0.014979545027017593, - -0.021812552586197853, - -0.025328567251563072, - 0.01427634246647358, - -0.0185486301779747, - 0.004169461317360401, - 0.022860722616314888, - 0.01475398987531662, - 0.024200787767767906, - -0.015351048670709133, - -0.009566211141645908, - -0.020339807495474815, - 0.013679283671081066, - 0.004069951828569174, - 0.02333837002515793, - -0.013334316201508045, - 0.031153207644820213, - 0.0040168799459934235, - -0.001248848275281489, - 0.0014685990754514933, - -0.015072421170771122, - -0.02260863222181797, - -0.03553164005279541, - 0.000349320936948061, - 0.01438248623162508, - 0.006799837574362755, - -0.0038908340502530336, - 0.016120590269565582, - -0.022860722616314888, - 0.012438727542757988, - -0.021480852738022804, - -0.041316479444503784, - 0.0048826150596141815, - 0.01275715883821249, - -0.02374967746436596, - -0.0353458896279335, - 0.003784690285101533, - 0.015802159905433655, - 0.025753142312169075, - 0.039618175476789474, - -0.013360852375626564, - -0.00658423313871026, - -0.00869715865701437, - -0.02320569008588791, - 0.014289610087871552, - -0.0004108926223125309, - -0.026204252615571022, - -0.0032158256508409977, - -0.0020598534028977156, - 0.017487192526459694, - -0.010382191278040409, - -0.01262447889894247, - 0.01001732237637043, - 0.01726163737475872, - -0.00013081394718028605, - -0.006925883702933788, - 0.026708435267210007, - 0.0034563078079372644, - -0.00719124311581254, - -0.007197876926511526, - -0.004030147567391396, - -0.009824936278164387, - -0.004209265578538179, - 0.014953008852899075, - -0.014302878640592098, - 0.011337485164403915, - -0.013486897572875023, - 0.007217778824269772, - 0.002716618124395609, - -0.004003611858934164, - -0.02802196517586708, - -0.02802196517586708, - -0.021401245146989822, - -0.0006721059326082468, - 0.015430656261742115, - -0.008577746339142323, - -0.010282681323587894, - 0.020671507343649864, - 0.017341244965791702, - 0.01597464270889759, - -0.01874765008687973, - -0.016094055026769638, - 0.004096487537026405, - 0.010375557467341423, - 0.009241145104169846, - -0.02503667026758194, - -0.6258239150047302, - 0.005167876835912466, - -0.008007223717868328, - -0.002728227525949478, - 0.02483765035867691, - 0.017566800117492676, - 0.013208270072937012, - -0.006925883702933788, - -0.005622304975986481, - 0.04309438541531563, - -0.010919543914496899, - 0.011092027649283409, - 0.0017580068670213223, - -0.002764714416116476, - -0.012962812557816505, - -0.027570854872465134, - -0.014422290027141571, - -0.015510263852775097, - 0.034151770174503326, - 0.025063207373023033, - -0.020618434995412827, - 0.025023402646183968, - 0.0028509562835097313, - 0.00676998496055603, - -0.006494674365967512, - 0.009619282558560371, - 0.019848892465233803, - -0.01754026487469673, - 0.013719087466597557, - -0.010707256384193897, - -0.025646997615695, - 0.01418346632272005, - -0.02179928496479988, - 0.017699480056762695, - 0.03391294553875923, - -0.0007998101646080613, - -0.005423285067081451, - 0.017818892374634743, - 0.0034927946981042624, - 0.01255813892930746, - 0.004398334305733442, - -0.0015614749863743782, - -0.005821324419230223, - 0.005638889968395233, - -0.002746470971032977, - -0.00281612784601748, - 0.041794124990701675, - 0.0006426675827242434, - -0.00707183126360178, - -0.04346588999032974, - 0.004335311241447926, - 0.0027232521679252386, - 0.015735819935798645, - 0.021626800298690796, - 0.03622157499194145, - -0.011715622618794441, - 0.03003869764506817, - -0.025832749903202057, - -0.02272804267704487, - 0.02876497246325016, - 0.0024529171641916037, - 0.007503040600568056, - 0.009639184921979904, - -0.024545755237340927, - -0.006945785600692034, - 0.017155492678284645, - -0.009798400104045868, - -0.04434157535433769, - 0.008736962452530861, - -0.015404120087623596, - -0.020870527252554893, - 0.026920722797513008, - -0.02185235731303692, - 0.000544816255569458, - 0.03348837047815323, - 0.024744775146245956, - 0.012505067512392998, - -0.01901300996541977, - 0.014714185148477554, - 0.013347583822906017, - -0.007158073130995035, - 0.0096060149371624, - -0.009665720164775848, - 0.0017397634219378233, - 0.0013483581133186817, - -0.024598827585577965, - -0.004948955029249191, - 0.013692551292479038, - 0.013188368640840054, - 0.02294033020734787, - 0.009015589952468872, - 0.02246268279850483, - -0.012704087421298027, - -0.021069545298814774, - -0.01373235508799553, - 0.04455386474728584, - -0.0331699401140213, - 0.014780525118112564, - -0.015390852466225624, - -0.029561050236225128, - -0.023842552676796913, - 0.00023675044940318912, - 0.012126930058002472, - -0.003192606847733259, - 0.021441049873828888, - -0.0016924962401390076, - -0.013566505163908005, - -0.01383849885314703, - 0.004156193695962429, - -0.033461835235357285, - 0.01062101498246193, - -0.008889543823897839, - -0.005154608748853207, - -0.008047027513384819, - -0.0060037593357264996, - -0.030967455357313156, - 0.042324844747781754, - 0.013984446413815022, - 0.015152028761804104, - -0.004842811264097691, - 0.005947370082139969, - -0.0034861606545746326, - 0.04577451944351196, - -0.020008107647299767, - -0.024545755237340927, - 0.029481442645192146, - 0.022927062585949898, - 0.011450263671576977, - 0.006687059998512268, - -0.02211771532893181, - 0.015510263852775097, - -0.015377583913505077, - 0.013115393929183483, - -0.015297976322472095, - 0.029189547523856163, - 0.013758891262114048, - 0.017036082223057747, - -0.019610067829489708, - 0.004537648055702448, - -0.03364758566021919, - -0.022104447707533836, - -0.00018689187709242105, - -0.0011659234296530485, - -0.045376479625701904, - -0.0005535233649425209, - -0.021573729813098907, - -0.0292426198720932, - 0.0007940054638311267, - 0.010574577376246452, - -0.005469723138958216, - 0.002486086916178465, - -0.007622452452778816, - -0.007960786111652851, - 0.0283669326454401, - 0.005466406233608723, - 0.013559871353209019, - -0.019172225147485733, - -0.020074447616934776, - 0.0077153281308710575, - -0.019105885177850723, - 0.009745328687131405, - 0.00869052391499281, - -0.05036523565649986, - -0.006600818131119013, - -0.00563557306304574, - -0.017168760299682617, - 0.0034198209177702665, - -0.0009685622644610703, - -0.03521320968866348, - -0.031843144446611404, - 0.0033966018818318844, - 0.0050385138019919395, - -0.007735230028629303, - 0.016293074935674667, - -0.009745328687131405, - 0.02213098481297493, - -0.02409464493393898, - 0.008962517604231834, - -0.02355065755546093, - -0.0231393501162529, - 0.011888106353580952, - -0.00346957566216588, - -0.02701359987258911, - -0.011921276338398457, - 0.009347288869321346, - 0.013506799936294556, - 0.017818892374634743, - 0.003376699984073639, - -0.02008771523833275, - 0.0432005301117897, - -0.019716212525963783, - 0.03343529999256134, - -0.012982714921236038, - 0.0077219619415700436, - -0.036035824567079544, - 0.002358382800593972, - 0.011251243762671947, - 0.002539159031584859, - -0.012053956277668476, - 0.01738104782998562, - 0.02700033225119114, - -0.003622157499194145, - 0.0279423575848341, - -0.006677108816802502, - 0.02802196517586708, - -0.015589872375130653, - 0.02510301023721695, - -0.014740721322596073, - 0.03850366547703743, - 0.02964065782725811, - 0.015550067648291588, - -0.007907713763415813, - -0.02031327225267887, - -0.007483138702809811, - 0.003260605037212372, - 0.04123686999082565, - -0.01792503520846367, - 0.013267976231873035, - 0.020525559782981873, - 0.00568532757461071, - -0.0027696900069713593, - 0.011549773626029491, - 0.033329155296087265, - 0.024054840207099915, - -0.001330943894572556, - -0.0004681107820942998, - -0.0021179006434977055, - 0.01479379367083311, - -0.0024512584786862135, - -0.003847713116556406, - -0.0053834812715649605, - 0.015404120087623596, - 0.013407289981842041, - 0.009785132482647896, - 0.0146213099360466, - 0.022701507434248924, - -0.00359562155790627, - -0.004743301309645176, - 0.04150222986936569, - 0.018283270299434662, - 0.006365311332046986, - 0.015019348822534084, - 0.002827737480401993, - -0.007337190676480532, - 0.0020664872135967016, - -0.01418346632272005, - 0.01630634255707264, - 0.026907455176115036, - -0.0048030074685812, - -0.007748498115688562, - -0.013758891262114048, - 0.008922713808715343, - -0.003937271889299154, - -0.009121733717620373, - 0.015019348822534084, - -0.016412487253546715, - 0.04426196962594986, - -0.015457192435860634, - 0.008484871126711369, - 0.0290303323417902, - 0.010700622573494911, - 0.019397780299186707, - 0.0128234988078475, - -0.023736409842967987, - -0.0004225021111778915, - 0.016677845269441605, - -0.02571333758533001, - -0.016956472769379616, - -0.02023366279900074, - -0.0017613237723708153, - 0.021679872646927834, - 0.007775033824145794, - 0.009705524891614914, - 0.00923451129347086, - 0.012578041292726994, - -0.01975601725280285, - -0.004298824351280928, - 0.025965429842472076, - 0.015205100178718567, - 0.012372387573122978, - -0.010733792558312416, - -0.022316735237836838, - -0.015271440148353577, - 0.02125529758632183, - -0.01658497005701065, - -0.02259536273777485, - -0.01455496996641159, - 0.010322485119104385, - -0.018787454813718796, - -0.023245494812726974, - -0.009280948899686337, - -0.0040201968513429165, - -0.011954446323215961, - -0.010262779891490936, - 0.007781668100506067, - 0.00947333499789238, - 0.016611505299806595, - 0.0033534809481352568, - -0.00920797511935234, - 0.021892160177230835, - 0.010906276293098927, - -0.022303467616438866, - -0.01643902249634266, - -0.030702097341418266, - 0.009798400104045868, - 0.02145431749522686, - -0.03200235962867737, - -0.018906865268945694, - 0.005930785089731216, - -0.015682747587561607, - -0.016186930239200592, - -0.000607839145231992, - -0.00892934761941433, - 0.008889543823897839, - -0.012199903838336468, - 0.0005340360221453011, - 0.004471308086067438, - 0.009824936278164387, - 0.05307190492749214, - -0.005867762491106987, - -0.020140787586569786, - -0.012923008762300014, - -0.0007181292166933417, - 0.00892934761941433, - 0.007330556865781546, - 0.01658497005701065, - 0.013891571201384068, - 0.024850919842720032, - -0.018920134752988815, - -0.015802159905433655, - 0.0023699922021478415, - -0.027995429933071136, - 0.014541701413691044, - 0.02185235731303692, - 0.014608041383326054, - -0.003383333794772625, - 0.023404709994792938, - 0.004003611858934164, - -0.004288873169571161, - -0.01066081877797842, - 0.012597943656146526, - -0.009486602619290352, - 0.020406147465109825, - 0.016903402283787727, - -0.011861570179462433, - 0.0033601149916648865, - 0.003210850292816758, - 0.039220135658979416, - -0.013267976231873035, - -0.013692551292479038, - 0.02457229234278202, - -0.0026303762570023537, - 0.008431798778474331, - -0.04861386492848396, - -0.012385656125843525, - 0.03720340505242348, - 0.00048511038767173886, - 0.013155198656022549, - -0.012750525027513504, - -0.006600818131119013, - 0.011277779936790466, - -0.005492941942065954, - 0.007735230028629303, - -0.01373235508799553, - 0.005589134991168976, - 0.0010431946720927954, - 0.014873401261866093, - -0.007582648191601038, - 0.015032617375254631, - -0.0014893303159624338, - 0.007934249937534332, - 0.007144805043935776, - -0.0020847306586802006, - -0.008232778869569302, - 0.004295507445931435, - -0.032851509749889374, - 0.010004053823649883, - -0.0019669774919748306, - -0.0035160137340426445, - -0.02972026728093624, - -0.002124534687027335, - -0.019994840025901794, - -0.007834739983081818, - -0.008889543823897839, - -0.03261268511414528, - -0.008975786156952381, - 0.016863597556948662, - 0.0019620019011199474, - -0.033727195113897324, - -0.00737699493765831, - -0.014103858731687069, - -0.01251833513379097, - -0.011317583732306957, - 0.011589577421545982, - -0.009327387437224388, - -0.01787196472287178, - -0.03409869968891144, - -0.013957911171019077, - 0.012425459921360016, - 0.00558250118046999, - 0.02002137526869774, - -0.0025590609293431044, - -0.019371245056390762, - -0.006425017490983009, - -0.017951572313904762, - -0.014820328913629055, - 0.0004531843005679548, - -0.02558065764605999, - -0.020260199904441833, - 0.021215494722127914, - -0.018508827313780785, - 0.003887516912072897, - 0.009194707497954369, - 0.01643902249634266, - -0.012325949966907501, - 0.0169166699051857, - 0.022436147555708885, - -0.013254707679152489, - -0.002121217781677842, - 0.018309807404875755, - 0.001364113762974739, - 0.012073858641088009, - 0.005592451896518469, - -0.0160409826785326, - 0.011019053868949413, - -0.028393469750881195, - 0.002899052808061242, - -0.00013226513692643493, - 0.010740426369011402, - -0.01180849876254797, - -0.008053661324083805, - -0.0028078353498131037, - 0.0022820918820798397, - 0.011768694967031479, - 0.008783400058746338, - -0.022290199995040894, - 0.007343824952840805, - 0.011994250118732452, - -0.02219732478260994, - 0.008451701141893864, - 0.0017729332903400064, - 0.014714185148477554, - 0.025899089872837067, - -0.00038725906051695347, - -0.01350016612559557, - -0.016863597556948662, - 0.0316573902964592, - 0.007814837619662285, - -0.021905427798628807, - 0.044898830354213715, - -0.02727895975112915, - 0.00659750122576952, - -0.028313860297203064, - -0.008146537467837334, - 0.013626211322844028, - 0.010309217497706413, - 0.005194412544369698, - -0.01799137517809868, - -0.008677256293594837, - -0.005791471805423498, - -0.0018807356245815754, - 0.010647551156580448, - -0.017964839935302734, - -0.004385066218674183, - -0.019517192617058754, - 0.02516935020685196, - -0.004325360059738159, - 0.005977223161607981, - 0.006232631858438253, - -0.02719935029745102, - -0.02376294508576393, - 0.021985037252306938, - -0.011536505073308945, - 0.018323075026273727, - -0.017168760299682617, - -0.007091733161360025, - -0.024081377312541008, - -0.01127114612609148, - -0.003688497468829155, - -0.028658827766776085, - 0.005141340661793947, - -0.013460361398756504, - 0.0009610989945940673, - 0.012770427390933037, - 0.03858327493071556, - 0.00047764714690856636, - -0.006574281957000494, - 0.015523532405495644, - -0.016213467344641685, - -0.004620572552084923, - -0.027915822342038155, - -0.007297386880964041, - -0.022104447707533836, - 0.027438174933195114, - 0.0009660745272412896, - -0.009055393747985363, - 0.004086536820977926, - 0.006617403123527765, - 0.009632551111280918, - 0.04702170565724373, - -0.004753252491354942, - -0.01738104782998562, - -0.020193859934806824, - -0.03399255499243736, - -0.00593741936609149, - 0.014329413883388042, - 0.012936276383697987, - 0.007668890058994293, - -0.015656212344765663, - -0.009353923611342907, - 0.017314709722995758, - -0.02219732478260994, - -0.005174510646611452, - -0.014953008852899075, - 0.009121733717620373, - -0.037389155477285385, - 0.03595621511340141, - -0.008246047422289848, - 0.0169166699051857, - -0.013208270072937012, - -0.006670475006103516, - -0.018986474722623825, - -0.013155198656022549, - 0.011775328777730465, - 0.006932517513632774, - 0.022184055298566818, - -0.003947223071008921, - -0.02260863222181797, - 0.011954446323215961, - -0.02463863231241703, - 0.004295507445931435, - -0.019583532586693764, - -0.002635351847857237, - -0.015098956413567066, - -0.03261268511414528, - -0.024200787767767906, - -0.008796668611466885, - -0.01299598254263401, - 0.01738104782998562, - -0.005416651256382465, - 0.00984483864158392, - 0.01610732264816761, - -0.019437585026025772, - -0.003788007190451026, - 0.019981572404503822, - -0.009426897391676903, - 0.027597390115261078, - 0.006342092528939247, - 0.0314185656607151, - 0.022794382646679878, - -0.028605757281184196, - -0.009572844952344894, - -0.051134780049324036, - 0.001301090931519866, - -0.004547598771750927, - 0.02010098472237587, - -0.006106586195528507, - -0.010203073732554913, - -0.006471455562859774, - 0.018442487344145775, - 0.01022297516465187, - -0.011244609951972961, - -0.01323480624705553, - 0.027053402736783028, - 0.016001179814338684, - 0.005801422521471977, - -0.012617845088243484, - 0.01901300996541977, - -0.019530460238456726, - -0.0033418715465813875, - 0.0031080234330147505, - -0.00903549138456583, - -0.004255703184753656, - -0.0005269874236546457, - -0.016080787405371666, - 0.049171119928359985, - 0.008544576354324818, - 0.02977333776652813, - 0.008637452498078346, - -0.020419415086507797, - 0.0007152268663048744, - -0.026005232706665993, - -0.017314709722995758, - 0.011655917391180992, - -0.0210562776774168, - 0.04224523529410362, - -0.004398334305733442, - -0.005589134991168976, - 0.0053801643662154675, - 0.003572402521967888, - -0.0051844618283212185, - -0.009181439876556396, - 0.0023633581586182117, - 0.019716212525963783, - -0.005662108771502972, - -0.0021079496946185827, - 0.01957026496529579, - -0.012916374951601028, - 0.0010664135916158557, - 0.007469870615750551, - -0.013314413838088512, - -0.012856668792665005, - -0.012631113640964031, - 0.0025822799652814865, - -0.0020482437685132027, - 0.016611505299806595, - 0.006846275646239519, - -0.01126451138406992, - -0.008836472406983376, - 0.004819592460989952, - -0.008843106217682362, - -0.015788892284035683, - 0.015205100178718567, - -0.03038366511464119, - -0.011025688610970974, - -0.01133085135370493, - 0.013679283671081066, - 0.03627464547753334, - -0.019464120268821716, - -0.027862749993801117, - -0.01390483882278204, - 0.02531529776751995, - -0.030171377584338188, - 0.010481701232492924, - 0.02660229243338108, - -0.009831570088863373, - -0.0077219619415700436, - -0.004229167476296425, - 0.018774185329675674, - -0.012292779982089996, - 0.03545203059911728, - -0.012498433701694012, - -0.027597390115261078, - -0.019464120268821716, - 0.004268971271812916, - 0.022104447707533836, - -0.03839752450585365, - -0.012750525027513504, - -0.003688497468829155, - 0.01780562475323677, - 0.007231046911329031, - -0.007841373793780804, - 0.012392289936542511, - -0.004627206828445196, - 0.021082814782857895, - -0.006866177543997765, - 0.02247595228254795, - -0.009685622528195381, - 0.026549220085144043, - 0.0060037593357264996, - -0.00893598236143589, - 0.007032027468085289, - -0.023099547252058983, - -0.029136475175619125, - 0.01414366252720356, - 0.016253270208835602, - -0.04203294962644577, - 0.007854641415178776, - -0.015019348822534084, - -0.030197912827134132, - -0.007456602528691292, - 0.013566505163908005, - -0.0024396490771323442, - 0.017765820026397705, - 0.01995503529906273, - -0.0015987911028787494, - 0.008902812376618385, - 0.04001621529459953, - -0.013553237542510033, - -0.017818892374634743, - 0.02023366279900074, - 0.024320200085639954, - -0.03669922053813934, - 0.004633840639144182, - -0.02191869728267193, - 0.02678804285824299, - 0.028605757281184196, - -0.02727895975112915, - -0.003788007190451026, - 0.012299413792788982, - -0.02807503752410412, - -0.0316573902964592, - -0.016279807314276695, - 0.010939446277916431, - -0.011344119906425476, - 0.012093760073184967, - -0.0158286951482296, - 0.0349213145673275, - 0.0047200825065374374, - 0.017951572313904762, - -0.016080787405371666, - -0.0056919618509709835, - 0.0008649061783216894, - -0.005410017445683479, - 0.008770132437348366, - -0.016425754874944687, - -0.028950724750757217, - 0.0009544650092720985, - 0.03635425493121147, - -0.012478531338274479, - 0.013811962679028511, - 0.02604503743350506, - -0.007834739983081818, - -0.012611211277544498, - 0.009075296111404896, - 0.023444514721632004, - 0.025739872828125954, - 0.011509968899190426, - -0.001694154692813754, - -0.017951572313904762, - -0.004205948207527399, - -0.0014652821701020002, - 0.009639184921979904, - -0.033806804567575455, - 0.006511259358376265, - 0.01807098276913166, - -0.00492241932079196, - -0.014064054936170578, - 0.010136733762919903, - -0.020751114934682846, - -0.014024251140654087, - 0.005662108771502972, - 0.02619098499417305, - 0.022316735237836838, - -0.021003205329179764, - 0.0072111450135707855, - 0.011602845042943954, - -0.018309807404875755, - -0.022237127646803856, - 0.01434268243610859, - -0.010627648793160915, - 0.009042126126587391, - 0.013029152527451515, - -0.015351048670709133, - 0.01718202978372574, - -0.0045243799686431885, - 0.015125492587685585, - 0.012505067512392998, - -0.003328603459522128, - -0.03937935456633568, - -0.011005786247551441, - -0.02211771532893181, - 0.03431098535656929, - 0.030569417402148247, - -0.004113072529435158, - 0.012604577466845512, - -0.002212435007095337, - -0.005824641324579716, - -0.008889543823897839, - -0.005910883191972971, - -0.0007566892891190946, - -0.02828732505440712, - 0.0031013893894851208, - 0.0017480558017268777, - -0.026204252615571022, - 0.004487893078476191, - 0.006879445631057024, - -0.01448862999677658, - -0.03526628017425537, - -0.0009619282791391015, - 0.18999741971492767, - -0.03431098535656929, - -0.015589872375130653, - 0.012684185057878494, - -0.03277190029621124, - -0.029454907402396202, - 0.024320200085639954, - -0.004089853726327419, - 0.007655622437596321, - 0.02010098472237587, - 0.025222422555088997, - 0.011775328777730465, - 0.018031179904937744, - 0.011728891171514988, - 0.012684185057878494, - -0.011357387527823448, - -0.028605757281184196, - -0.021746212616562843, - 0.0006899347645230591, - 0.018309807404875755, - 0.034629419445991516, - -0.029959090054035187, - -0.005353628192096949, - -0.00977849867194891, - 0.03985700011253357, - 0.012783695012331009, - -0.018044447526335716, - 0.004663693718612194, - 0.0412634052336216, - 0.021971767768263817, - -0.03051634505391121, - -0.006998857483267784, - 0.016094055026769638, - -0.015138761140406132, - -0.0018873695516958833, - 0.0042192162945866585, - 0.008982419967651367, - -0.002175948116928339, - 0.024479415267705917, - 0.027968892827630043, - 0.0040666344575583935, - -0.03375373035669327, - 0.0001083205861505121, - -0.03831791505217552, - 0.027570854872465134, - 0.012617845088243484, - -0.019384512677788734, - 0.0016742526786401868, - 0.008365458808839321, - 0.011377289891242981, - -0.006438285578042269, - 0.008206243626773357, - 0.023179154843091965, - 0.039830464869737625, - -0.0017032764153555036, - -0.022157520055770874, - 0.00910183135420084, - -0.021096082404255867, - 0.01692993752658367, - 0.01218000240623951, - -0.04006928950548172, - 0.0025209153536707163, - -0.010999152436852455, - 0.008338922634720802, - -0.018216930329799652, - 0.012850034981966019, - -0.02260863222181797, - 0.0043319943360984325, - 0.0018293221946805716, - -0.020923597738146782, - 0.012551505118608475, - -0.00896915141493082, - -0.03370065987110138, - 0.012239707633852959, - -0.02746471017599106, - -0.035903144627809525, - 0.0192120298743248, - 0.01126451138406992, - 0.03261268511414528, - 0.02348431758582592, - 0.0024479415733367205, - 0.019543729722499847, - -0.01841595023870468, - -0.029534514993429184, - 0.001101242029108107, - -0.01397117879241705, - 0.02282091975212097, - 0.017646407708525658, - 0.001397283747792244, - -0.0028492978308349848, - -0.016147127375006676, - 0.013413923792541027, - 0.0009179781191051006, - -0.01316846627742052, - 0.01665131002664566, - -0.02234327234327793, - 0.018707847222685814, - -0.0011957763927057385, - -0.01018980611115694, - -0.010063759982585907, - -0.011118563823401928, - 0.043970074504613876, - 0.0467032752931118, - -0.007476504426449537, - -0.013553237542510033, - -0.002116242190822959, - 0.0011916301446035504, - 0.016797257587313652, - -0.0010398776503279805, - -0.015749087557196617, - -0.005725131835788488, - -0.04359856992959976, - 0.016730917617678642, - -0.01180849876254797, - 0.013480263762176037, - 0.016080787405371666, - 0.0036387424916028976, - 0.005973906256258488, - 0.0016327903140336275, - 0.010912910103797913, - -0.002199167152866721, - -0.012491799890995026, - 0.010402093641459942, - 0.016001179814338684, - 0.01860170252621174, - -0.045986805111169815, - -0.021878892555832863, - 0.02490399032831192, - 0.002194191562011838, - 0.02577967755496502, - 0.024744775146245956, - -0.032241180539131165, - 0.022635167464613914, - 0.000615302415098995, - 0.0011244609486311674, - -0.0004048805858474225, - -0.002797884400933981, - -0.03789333999156952, - -0.010143367573618889, - -0.0004191851185169071, - 0.02503667026758194, - -0.0033932849764823914, - 0.009771864861249924, - 0.0024446246679872274, - 0.009798400104045868, - 0.005645523779094219, - 0.016598237678408623, - -0.0003571987908799201, - -0.03330262005329132, - -0.03595621511340141, - -0.005980540066957474, - -0.008332288824021816, - 0.0038974680937826633, - -0.01970294490456581, - 0.0208439901471138, - 0.017699480056762695, - -0.034815169870853424, - -0.031047064810991287, - 0.02098993770778179, - 0.004245752468705177, - -0.008544576354324818, - -0.01671764999628067, - 0.014939741231501102, - -0.017089152708649635, - 0.016067519783973694, - -0.005559281911700964, - -0.16738878190517426, - 0.017314709722995758, - 0.012365753762423992, - -0.03399255499243736, - 0.014820328913629055, - -0.01180849876254797, - 0.03863634541630745, - 0.002965392544865608, - -0.023112814873456955, - -0.0008723694481886923, - 0.03850366547703743, - -0.0024512584786862135, - -0.02612464502453804, - -0.019132422283291817, - -0.01167581882327795, - -0.0036254744045436382, - -0.03720340505242348, - 0.04123686999082565, - 0.011927910149097443, - 0.030171377584338188, - 0.008411896415054798, - -0.03545203059911728, - 0.02409464493393898, - 0.011417093686759472, - -0.010043857619166374, - 0.005529428832232952, - -0.024253860116004944, - 0.04948955029249191, - -0.013984446413815022, - -0.02211771532893181, - -0.02396196499466896, - -0.0038443959783762693, - 0.0063520437106490135, - 0.0037415693514049053, - -0.007529576309025288, - -0.010747061111032963, - -0.015231636352837086, - -0.005950687453150749, - -0.012631113640964031, - 0.021268565207719803, - 0.00808683130890131, - 0.02504993975162506, - 5.020840490033152e-06, - 0.02003464475274086, - 0.005877713207155466, - 0.03396601974964142, - 0.0194243174046278, - -0.007463236339390278, - -0.010481701232492924, - -0.017752552404999733, - -0.0046802787110209465, - -0.013148563914000988, - -0.0017165443859994411, - 0.009685622528195381, - 0.002880809362977743, - 0.025328567251563072, - -0.001085486263036728, - 0.029083402827382088, - 0.002190874656662345, - -0.00443150382488966, - 0.010521505028009415, - -0.02037961222231388, - 0.0025375003460794687, - -0.013957911171019077, - 0.01113846618682146, - -0.024107912555336952, - -0.009347288869321346, - 0.021069545298814774, - -0.02388235740363598, - -0.015881767496466637, - -0.00030495613464154303, - -0.024121180176734924, - 0.0011070467298850417, - -0.016611505299806595, - 0.010561308823525906, - 0.014103858731687069, - -0.007270850706845522, - -0.006235948763787746, - 0.008451701141893864, - -0.010534772649407387, - -0.007609184365719557, - 0.05285961553454399, - -0.0009901226731017232, - -0.0473666749894619, - -0.0035757196601480246, - -0.01807098276913166, - -0.011058857664465904, - 0.030887847766280174, - -0.008783400058746338, - 0.0040666344575583935, - 0.011297681368887424, - -0.02701359987258911, - -0.01671764999628067, - -0.030144842341542244, - 0.010335753671824932, - -0.01326134242117405, - -0.010070393793284893, - 0.005592451896518469, - -0.017367780208587646, - -0.022927062585949898, - -0.0005141340661793947, - -0.0060369293205440044, - -0.023404709994792938, - 0.018588434904813766, - 0.004448088817298412, - 0.018163859844207764, - -0.018588434904813766, - 0.011350753717124462, - 0.031843144446611404, - -0.010853204876184464, - -0.01922529749572277, - -0.005257435608655214, - 0.014156930148601532, - -0.0038278112187981606, - -0.015311244875192642, - 0.011251243762671947, - -0.008982419967651367, - -0.0031809972133487463, - 0.008571112528443336, - -0.021560460329055786, - 0.04914458468556404, - -0.0121136624366045, - 0.005280654411762953, - 0.01316846627742052, - -0.00455091567710042, - -0.03189621493220329, - -0.09048759937286377, - -0.000317809492116794, - 0.018588434904813766, - 0.014395753853023052, - 0.020061179995536804, - 0.02450595237314701, - 0.013354217633605003, - -0.008378727361559868, - 0.012206537649035454, - 0.056468505412340164, - -0.03423137962818146, - -0.028207717463374138, - -0.026549220085144043, - -0.013009250164031982, - 0.015390852466225624, - -0.023179154843091965, - 0.010541407391428947, - -0.02110935002565384, - -0.020897062495350838, - 0.022847454994916916, - -0.01444882620126009, - -0.015682747587561607, - -0.01143699511885643, - -0.008120001293718815, - -0.010720524936914444, - -0.014528433792293072, - -0.030357129871845245, - 0.010050492361187935, - 0.019251832738518715, - -0.007635720074176788, - 0.023457782343029976, - -0.016213467344641685, - -0.0020067812874913216, - -0.016890132799744606, - -0.011908008717000484, - -0.017208565026521683, - -0.015045884996652603, - -0.018787454813718796, - 0.03335569053888321, - -0.010640916414558887, - 0.0034463568590581417, - 0.020472487434744835, - 0.004988758824765682, - 0.003811226226389408, - 0.00713817123323679, - -0.017022812739014626, - -0.016067519783973694, - 0.009672354906797409, - 0.009592746384441853, - 0.012836766429245472, - -0.023404709994792938, - -0.01602771505713463, - -0.025262227281928062, - 0.014289610087871552, - 0.02321895770728588, - 0.001000902964733541, - -0.0037581543438136578, - 0.0007102513336576521, - -0.004474624991416931, - 0.0015647918917238712, - -0.02288725972175598, - 0.01163601502776146, - -0.01996830478310585, - 0.051187850534915924, - -0.008882910013198853, - 0.0015913278330117464, - -0.016293074935674667, - -0.01590830273926258, - 0.01868131011724472, - -0.012843401171267033, - -0.020804187282919884, - 0.018097519874572754, - 0.011576308868825436, - 0.0012878229608759284, - -0.020897062495350838, - -0.010375557467341423, - -0.05352301523089409, - 0.0036155234556645155, - 0.00551616121083498, - -0.0035425496753305197, - 0.005781520623713732, - -0.02916301228106022, - 0.030914384871721268, - -0.013029152527451515, - 0.04298824444413185, - 0.012120296247303486, - 0.0034861606545746326, - -0.02145431749522686, - 0.012259609997272491, - -0.015351048670709133, - -0.01383849885314703, - 0.029561050236225128, - 0.021746212616562843, - -0.007151439320296049, - -0.03338222950696945, - 0.02199830487370491, - 0.011377289891242981, - -0.004335311241447926, - -0.009254413656890392, - 0.012591308914124966, - -0.024267127737402916, - -0.004152876324951649, - -0.03688497468829155, - 0.03675229474902153, - 0.025753142312169075, - -0.002494379412382841, - -0.011781962588429451, - -0.0037448862567543983, - 0.015390852466225624, - 0.017314709722995758, - 0.017832159996032715, - -0.010912910103797913, - 0.00869715865701437, - 0.00859101489186287, - -0.009659086354076862, - -0.004000294953584671, - -0.03125935047864914, - -0.03789333999156952, - -0.012325949966907501, - 0.025633729994297028, - 0.004278922453522682, - 0.00700549129396677, - -0.016704382374882698, - 0.008332288824021816, - -0.00028111523715779185, - 0.020897062495350838, - -0.029083402827382088, - -0.0014254781417548656, - -0.013387387618422508, - 0.023789480328559875, - -0.015576603822410107, - -0.005967272445559502, - -0.0015166954835876822, - 0.002787933452054858, - -0.007576014380902052, - 0.03133895993232727, - 0.00048386648995801806, - -0.020658239722251892, - 0.01001732237637043, - 0.03791987523436546, - 0.01596137508749962, - 0.05583164468407631, - -0.02274131029844284, - -0.022794382646679878, - 0.00019746480393223464, - -0.007821472361683846, - 0.007469870615750551, - 0.008033759891986847, - 0.009387092664837837, - 0.0034463568590581417, - -0.0010647551389411092, - -0.013931374996900558, - 0.0370972603559494, - 0.011277779936790466, - 0.014435557648539543, - -0.025899089872837067, - 0.0026867652777582407, - 0.007781668100506067, - 0.0060501969419419765, - 0.0009387093014083803, - 0.019464120268821716, - -0.039750855416059494, - 0.03693804517388344, - 0.002061511855572462, - 0.009254413656890392, - -0.015669479966163635, - -0.009765230119228363, - -0.020114252343773842, - -0.024001767858862877, - -0.015032617375254631, - -0.000364247418474406, - -0.038822099566459656, - -0.019530460238456726, - -0.002575645921751857, - 0.02713301032781601, - 0.04261673986911774, - -0.006375262513756752, - -0.007794936187565327, - 0.00038953949115239084, - 0.01650536246597767, - 0.0033634318970143795, - -0.00017196541011799127, - 0.013400656171143055, - 0.017367780208587646, - -0.0029255887493491173, - -0.0023782846983522177, - 0.041051119565963745, - 0.00808683130890131, - -0.0192120298743248, - -0.009367191232740879, - -0.00676666758954525, - -0.010766962543129921, - -0.001305237179622054, - 0.02977333776652813, - 0.0029637340921908617, - 0.007702060043811798, - 0.0060402462258934975, - 0.010806766338646412, - -0.014170198701322079, - -0.0171289574354887, - 0.03173699975013733, - 0.03598275035619736, - -0.008007223717868328, - 0.014435557648539543, - -0.004182729404419661, - -0.020737847313284874, - 0.007589282467961311, - 0.013214903883635998, - -0.0055360631085932255, - -0.026496147736907005, - -0.008557844907045364, - 0.008518041111528873, - -0.004298824351280928, - 0.0019702943973243237, - 0.008272582665085793, - 0.003658644389361143, - -0.00353591563180089, - 0.004982125014066696, - -0.02897725999355316, - -0.01569601520895958, - -0.016492094844579697, - 0.02124202996492386, - 0.016677845269441605, - 0.002212435007095337, - -0.008425164967775345, - 0.005867762491106987, - 0.012053956277668476, - -0.01665131002664566, - 0.03213503956794739, - -0.009970883838832378, - 0.00281778653152287, - -0.008710426278412342, - 0.015324512496590614, - 0.0029786606319248676, - -0.016478827223181725, - -0.021573729813098907, - -0.01448862999677658, - 0.007542844396084547, - 0.012067223899066448, - 0.01353996992111206, - -0.007489772513508797, - 0.13257361948490143, - 0.009745328687131405, - -0.00026370101841166615, - 0.01617366261780262, - -0.001704934984445572, - 0.022237127646803856, - 0.016611505299806595, - 0.003403235925361514, - 0.004985441919416189, - -0.06007739529013634, - 0.009831570088863373, - -0.01569601520895958, - 0.011456897482275963, - -0.02024693228304386, - -0.00246120966039598, - 0.034947849810123444, - -0.0009055393747985363, - 0.021029742434620857, - -0.014289610087871552, - -0.018588434904813766, - 0.029216082766652107, - -0.027106475085020065, - 0.02077765017747879, - 0.025885822251439095, - -0.010057126171886921, - -0.03348837047815323, - 0.010229609906673431, - 0.010521505028009415, - 0.010946080088615417, - -0.015470460057258606, - -0.0069059813395142555, - 0.004205948207527399, - -0.07297386974096298, - -0.031843144446611404, - 0.010448531247675419, - -0.01996830478310585, - -0.01137065514922142, - -0.036566540598869324, - 0.019742747768759727, - 0.012405557557940483, - 0.00414292560890317, - 0.030542880296707153, - -0.008013857528567314, - -0.013865035027265549, - 0.005283971317112446, - -0.008511406369507313, - 0.022701507434248924, - -0.0052308994345366955, - -0.021772749722003937 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 33, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 479 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000034.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000034.json deleted file mode 100644 index 1244b15583dcfa2032156d535fc79d20fb84fa29..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000034.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000034", - "content": "## 7.4 Validierung\n\nNachdem die Auswertung der Validierung abgeschlossen ist, k\u00f6nnen nun die gesammel- ten Informationen systematisch analysiert und interpretiert werden. Durch den Ver- gleich der simulierten Messergebnisse mit den tats\u00e4chlichen Messungen kann die Ge- nauigkeit der berechneten Kenngr\u00f6\u00dfen \u00fcberpr\u00fcft werden. Die Ergebnisse werden in einer Darstellung gegen\u00fcbergestellt und die Abweichungen im Anschluss interpretiert. Dies erm\u00f6glicht eventuelle Abweichungen zu interpretieren und R\u00fcckschl\u00fcsse auf die Genauigkeit der berechneten Kenngr\u00f6\u00dfen zu ziehen. 68\n7 Ergebnisse und Interpretation\nZur Durchf\u00fchrung des Vergleichs werden repr\u00e4sentativ zwei Messtage f\u00fcr die beiden Flurf\u00f6rderger\u00e4te ausgew\u00e4hlt, bei denen die Fl\u00e4chenschallquelle in der Simulation an der entsprechenden Verladestelle platziert wird. Die Lage des Immissionsortes, der Fl\u00e4chen- schallquellen und sonstigen akustischen Randbedingungen k\u00f6nnen der Anhang 2: Lage- pl\u00e4ne entnommen werden. Anschlie\u00dfend wird der Teilbeurteilungspegel Lr aus der Si- mulation mit den auf den st\u00fcndlich bezogenen Taktmaximalpegel LAFTeq, da dieser den Impulshaltigkeit bereits enth\u00e4lt, aus den Messdaten verglichen. In Tabelle 14 sind die Ergebnisse des Vergleichs aufgezeigt. | Beurteilungpegel | Differenz | Flurf\u00f6rderger\u00e4t | Messtag | [dB(A)] | An | [dB(A)] | Simuliert | Messung | Gabelstapler | 03.05.2023 | 53,3 | 60,1 | 6,8 | Gabelhubwagen | 27.04.2023 | 63,5 | 65,8 | 2,3 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 14: Ergebnisse der Validierung\nDie Ergebnisse zeigen, dass es Abweichungen zwischen den simulierten und den gemes- senen Beurteilungspegeln gibt. Die gemessenen Werte sind h\u00f6her als die simulierten Werten, wobei die Differenzen unterschiedliche Abweichungen haben. Es herrscht eine durchschnittliche Differenz von 4,6 dB(A). Die Ergebnisse der Validierung deuten darauf hin, dass die Simulation m\u00f6glicherweise nicht genau genug die realen Bedingungen wi- derspiegelt und eine gewisse Ungenauigkeit aufweist. Es kann verschiedene Gr\u00fcnde f\u00fcr Unterschiede geben, wie ungenaue Annahmen bei der Modellierung oder unvorherge- sehene Schwankungen in den tats\u00e4chlichen Messungen. Es ist zu beachten, dass das Re- chenmodell stets von einem Worst-Case-Szenario ausgeht, beispielsweise indem ange- nommen wird, dass die Fassaden vollst\u00e4ndig reflektieren. Dadurch stellt das Modell eine Vereinfachung der realen Situation dar. Aus diesem Grund kann es zu Abweichungen bis zu 3 dB kommen. Nach einer Untersuchung die in der VDI 2714 [86] erw\u00e4hnt wird, wurde festgestellt, dass bei freier Schallausbreitung einer einzelnen breitbandigen Schallquelle der berechnete A-bewertete Schalldruckpegel Abweichungen aufweist. In einer Entfernung von 100 Me- tern und einer H\u00f6he von 10 Metern \u00fcber dem Boden betr\u00e4gt die Abweichung etwa 1 dB. Bei gr\u00f6\u00dferen Entfernungen von etwa 1000 Metern oder niedrigeren H\u00f6hen kann eine Abweichung von etwa 3 dB auftreten. Diese Erkenntnisse verdeutlichen, dass die Messungen und Berechnungen von Schalldruckpegeln mit der Entfernung und der H\u00f6he variieren k\u00f6nnen und somit Einfluss auf die Genauigkeit der Ergebnisse haben. Die\n69\n7 Ergebnisse und Interpretation\ndurchschnittliche Standardabweichung, \u201ebei freier Schallausbreitung bei Mitwindwet- terlagen ohne Ber\u00fccksichtigung von Bewuchs- und Bebauungsd\u00e4mpfung\u201c [86] liegt bei der Untersuchung bei insgesamt 1,4 dB. Gem\u00e4\u00df der DIN ISO 9613-2 [85] variiert die Schalld\u00e4mpfung im Freien zwischen der Schallquelle und dem Empfangspunkt aufgrund der Witterungsbedingungen entlang der Ausbreitungsbahn. Bei Annahme einer leichten Windbedingung beschr\u00e4nken sich die Auswirkungen der schwankenden Witterungsbe- dingungen auf die D\u00e4mpfung auf ein akzeptables Ma\u00df. Die \u00dcbereinstimmung zwischen berechneten und gemessenen Werten zeigt, dass in einem Abstand von weniger als 100 Metern und einer H\u00f6he von weniger als 5 Metern eine Abweichung von 3 dB auftritt. Es ist jedoch wichtig zu beachten, dass die Sch\u00e4tzung nach DIN ISO 9613-2 auf Situationen beruht, in denen weder Reflexionen noch Abschirmungen auftreten.", - "embedding": [ - 0.006551392842084169, - 0.01997239701449871, - -0.0013557150959968567, - -0.031861353665590286, - -0.0023029933217912912, - 0.006836806423962116, - -0.011436231434345245, - -0.02009049989283085, - -0.024014119058847427, - -0.02989298477768898, - 0.007486368529498577, - 0.03826512023806572, - -0.00587886618450284, - 0.0043468177318573, - 0.002147163962945342, - 0.013325867243111134, - 0.026507386937737465, - 0.002780323149636388, - 0.027557184919714928, - -0.012039865367114544, - -0.008995452895760536, - 0.006013371516019106, - -0.028003348037600517, - -0.005770605523139238, - -0.021363379433751106, - 0.01465779822319746, - 0.02957804501056671, - -0.028843186795711517, - -0.021363379433751106, - -0.003470893017947674, - 0.002403052058070898, - -0.00732889911159873, - -0.018410824239253998, - 0.0035036990884691477, - -0.004596144892275333, - -0.011574017815291882, - -0.022688748314976692, - -0.017374148592352867, - 0.02595624327659607, - 0.002345641376450658, - 0.007243603002279997, - -0.0006967210792936385, - 0.013988551683723927, - -0.033016130328178406, - 0.0028771013021469116, - 0.012505712918937206, - 0.01278784591704607, - -0.00112771219573915, - -0.015392656438052654, - 0.027845878154039383, - 0.00965813733637333, - 0.002703228499740362, - -0.003154313424602151, - 0.006285662762820721, - -0.008634584955871105, - 0.014369103126227856, - 0.0014229677617549896, - 0.010740741156041622, - -0.0052719516679644585, - -0.0077947466634213924, - -0.043776556849479675, - -0.010058372281491756, - -0.019919907674193382, - 0.013516142964363098, - -0.03364600986242294, - -0.014067286625504494, - 0.0022505035158246756, - -0.0008205643971450627, - -0.014631552621722221, - 0.005367089994251728, - 0.029683025553822517, - 0.027347225695848465, - 0.002065148437395692, - 0.0028393741231411695, - 0.032307516783475876, - -0.003566030878573656, - 0.014001674018800259, - 0.0004912724252790213, - -0.011088485829532146, - 0.006502183154225349, - 0.02532636560499668, - -0.024512771517038345, - -0.021533971652388573, - 0.048211950808763504, - 0.00596088171005249, - 0.005445824470371008, - -0.023738546296954155, - 0.014487206004559994, - -0.012472907081246376, - -0.001415586331859231, - 0.0005548343760892749, - 0.03621801361441612, - 0.007223919034004211, - -0.004343537148088217, - 0.019290030002593994, - -0.009362882003188133, - 0.008962646126747131, - 0.02093033865094185, - 0.006889296229928732, - -0.024105975404381752, - -0.022190095856785774, - -0.019539356231689453, - 0.006981153506785631, - 0.011068802326917648, - -0.030759066343307495, - -0.008017828688025475, - 0.006147876847535372, - -0.0033888774923980236, - 0.005370370578020811, - -0.02847575768828392, - -0.03285866230726242, - 0.021310890093445778, - -0.01352926529943943, - 0.015550125390291214, - 0.01514332927763462, - 0.001917520770803094, - 0.008214665576815605, - -0.007171429228037596, - -0.018332088366150856, - -0.007473246194422245, - 0.027662163600325584, - 0.007387950085103512, - 0.03705785050988197, - -0.01824023202061653, - 0.029525555670261383, - 0.0017370868008583784, - -0.0017977782990783453, - -0.008706757798790932, - -0.025798773393034935, - 0.0011843028478324413, - -0.027609674260020256, - 0.012105477973818779, - 0.0229380764067173, - 0.009848413057625294, - -0.02215072698891163, - 0.018213987350463867, - -0.009638453833758831, - -0.007755379192531109, - -0.010392995551228523, - -0.013699857518076897, - 0.0053277225233614445, - 0.021074684336781502, - -0.03789769113063812, - -0.04159822687506676, - -0.00791941024363041, - 0.03254372254014015, - 0.01764972135424614, - 0.019119437783956528, - -0.0005413018516264856, - -0.018122129142284393, - -0.024722730740904808, - -0.028764452785253525, - -0.002601529471576214, - 0.004563338588923216, - -0.013476775959134102, - -0.004074526485055685, - -0.0015377893578261137, - 0.022190095856785774, - -0.00505543127655983, - -0.016389964148402214, - 0.001789576723240316, - 0.02344985119998455, - -0.0014647955540567636, - 0.005800131242722273, - 0.014998981729149818, - 0.005439263302832842, - 0.004878277890384197, - -0.017242923378944397, - -0.02028733678162098, - -0.02667797915637493, - -0.012610692530870438, - 0.02183578908443451, - 0.006128192879259586, - 0.015760084614157677, - -0.006777754984796047, - 0.0006495622219517827, - 0.01394918467849493, - -0.007702889386564493, - -0.030312903225421906, - -0.03955112025141716, - -0.026008732616901398, - 0.011134414933621883, - 0.00128436170052737, - 0.006390642374753952, - -0.028843186795711517, - 0.006607163231819868, - 0.012059548869729042, - 0.01984117366373539, - -0.009710626676678658, - -0.019670581445097923, - 0.012289192527532578, - 0.01661304570734501, - 0.022203218191862106, - -0.023502342402935028, - -0.6260992288589478, - -0.013647367246448994, - 0.008575533516705036, - 0.007866919972002506, - -0.0006327490555122495, - 0.0385013222694397, - 0.020313581451773643, - -0.007243603002279997, - 0.008109685964882374, - 0.052017465233802795, - 0.009028258733451366, - 0.0053277225233614445, - -0.011764293536543846, - 0.009015136398375034, - -0.0018207426182925701, - -0.02215072698891163, - -0.015930676832795143, - -0.011075363494455814, - 0.031782619655132294, - 0.0033790357410907745, - -0.022570647299289703, - 0.02009049989283085, - -0.006915540900081396, - 0.015287675894796848, - -0.007099255919456482, - 0.003671010723337531, - 0.01195456925779581, - -0.030365392565727234, - 0.00517025263980031, - -0.013384918682277203, - -0.025720039382576942, - 0.010891648940742016, - -0.01156089548021555, - 0.015865065157413483, - 0.042674269527196884, - -0.003707097377628088, - 0.004878277890384197, - 0.005347406025975943, - 0.005645942408591509, - 0.006078983657062054, - 0.006134754046797752, - 0.001575516420416534, - 0.007046765647828579, - -0.002288230461999774, - 0.007040204480290413, - 0.008851105347275734, - 0.043645333498716354, - -0.010576710104942322, - -0.01101631298661232, - -0.03768773004412651, - -0.0134046021848917, - -0.012794407084584236, - 0.014382226392626762, - 0.011705242097377777, - 0.023016810417175293, - -0.001076862565241754, - 0.04388153553009033, - -0.01578632928431034, - -0.015510758385062218, - 0.01667865738272667, - 0.004894680809229612, - 0.01253195758908987, - 0.0014196870615705848, - -0.014172266237437725, - -0.01598316803574562, - 0.013489898294210434, - 0.004950451198965311, - -0.03296364098787308, - 0.010097740218043327, - -0.016206249594688416, - -0.0083458898589015, - 0.0314151905477047, - -0.006220050156116486, - -0.03312111273407936, - 0.030890291556715965, - 0.020576031878590584, - 0.01514332927763462, - -0.014605307951569557, - 0.012617253698408604, - 0.030050454661250114, - 0.00139672274235636, - -0.0015320482198148966, - -0.005898549687117338, - 0.006298785097897053, - 0.02061539888381958, - -0.029420575127005577, - -0.012636937201023102, - 0.01062919944524765, - 0.017597230151295662, - 0.013056856580078602, - 0.031913843005895615, - 0.02414534240961075, - -0.018017150461673737, - -0.02171768620610237, - 0.0016911581624299288, - 0.028502002358436584, - -0.02603497914969921, - 0.019618090242147446, - 0.0003297020448371768, - -0.021875156089663506, - -0.036821648478507996, - 0.009152921847999096, - 0.018568294122815132, - -0.01461843028664589, - 0.020339826121926308, - -0.009494106285274029, - -0.017675966024398804, - -0.0007652039639651775, - 0.01674427092075348, - -0.013010927475988865, - 0.013220887631177902, - 0.000706152874045074, - -0.005360528361052275, - -0.015248308889567852, - -0.010734179988503456, - -0.022071992978453636, - 0.028711961582303047, - -0.00471752742305398, - 0.01629810594022274, - -0.013831081800162792, - 0.018843865022063255, - -0.0024555420968681574, - 0.03548315539956093, - -0.007748818024992943, - -0.028003348037600517, - 0.01970994845032692, - 0.02415846474468708, - 0.009704065509140491, - 0.011324690654873848, - -0.003272415604442358, - 0.007059888448566198, - 0.001712482189759612, - 0.028711961582303047, - -0.014303491450846195, - 0.01881762035191059, - 0.019985519349575043, - 0.015418901108205318, - -0.01888323202729225, - -0.003019808093085885, - -0.030102944001555443, - -0.03306862339377403, - -0.00814905297011137, - 0.0008131829672493041, - -0.043067943304777145, - -0.0078078689984977245, - -0.03897373378276825, - -0.01875200867652893, - 0.017754700034856796, - 0.018213987350463867, - -0.004002353176474571, - 0.003926898818463087, - -0.022373810410499573, - 0.0025424782652407885, - 0.025654425844550133, - -0.006082264240831137, - 0.009874657727777958, - 0.004911084193736315, - -0.018765131011605263, - 0.010734179988503456, - -0.028239553794264793, - 0.010911333374679089, - 0.02519514039158821, - -0.03991854935884476, - -0.011068802326917648, - 0.004858593922108412, - -0.01304373424500227, - 0.01900133490562439, - -0.0038809701800346375, - -0.017413515597581863, - -0.03768773004412651, - 0.009749994613230228, - 0.012217018753290176, - 0.003566030878573656, - 0.0065054637379944324, - -0.014251001179218292, - 0.00766352191567421, - -0.027006041258573532, - -0.015996290370821953, - -0.021415868774056435, - -0.012964999303221703, - 0.02434217929840088, - 0.006685897707939148, - -0.019565600901842117, - 0.004179506562650204, - 0.023148035630583763, - 0.028265798464417458, - 0.013194642961025238, - 0.0014467522269114852, - -0.009356319904327393, - 0.04291047155857086, - -0.010012444108724594, - 0.02923686057329178, - -0.005895269103348255, - 0.007689766585826874, - -0.023620443418622017, - 0.007643837947398424, - 0.009231656789779663, - -0.027845878154039383, - -0.001003048731945455, - 0.030942780897021294, - 0.03351478651165962, - 0.01039955671876669, - 0.02461775206029415, - -0.016888616606593132, - 0.013194642961025238, - -0.014001674018800259, - 0.014277245849370956, - 0.007132061757147312, - 0.03873752802610397, - 0.03582433983683586, - 0.023410484194755554, - -0.01320776529610157, - -0.01327337697148323, - -0.0010374952107667923, - -0.004865155555307865, - 0.0371103435754776, - -0.011895517818629742, - -0.00018279188952874392, - 0.01390981674194336, - 0.007978460751473904, - -3.921362804248929e-05, - -0.0051866560243070126, - 0.03994479402899742, - 0.005816534161567688, - -0.008129369467496872, - 0.005872305016964674, - -0.0068696122616529465, - 0.00683024525642395, - 0.010812913998961449, - -0.012262946926057339, - -0.010156790725886822, - -0.004802823532372713, - 0.02377791330218315, - 0.00814905297011137, - 0.0032855381723493338, - 0.011449353769421577, - 0.016914863139390945, - -0.012164528481662273, - 0.0385013222694397, - 0.013581755571067333, - 0.015497636049985886, - 0.012118600308895111, - 0.0008304062648676336, - 0.0004441135679371655, - 0.011895517818629742, - -0.013260254636406898, - 0.014395348727703094, - 0.03490576893091202, - -0.008247471414506435, - -0.021743930876255035, - 0.00355946971103549, - 0.0009407170000486076, - -0.005718115717172623, - -0.013804837130010128, - 0.018122129142284393, - -0.017019841820001602, - 0.027425959706306458, - -0.02221634052693844, - 0.004008914344012737, - 0.008359013125300407, - 0.005032466724514961, - 0.031283967196941376, - 0.014146021567285061, - -0.015287675894796848, - 0.003447928698733449, - 0.00931039173156023, - -0.030444128438830376, - -0.016311228275299072, - -0.002572003984823823, - -0.011639629490673542, - 0.013004366308450699, - -0.0011391943553462625, - -0.0004961933591403067, - 0.009421932511031628, - 0.017833435907959938, - -0.007584786973893642, - -0.007525736000388861, - 0.019145682454109192, - 0.031913843005895615, - 0.0035955565981566906, - -0.016140636056661606, - -0.0273209810256958, - 0.020917216315865517, - 0.0264811422675848, - -0.010478291660547256, - -0.011777415871620178, - -0.005416299216449261, - 0.012052987702190876, - -0.020444806665182114, - -0.013988551683723927, - -0.013516142964363098, - -0.0031034639105200768, - -0.016468698158860207, - -0.01887010969221592, - 0.017689088359475136, - 0.007781623862683773, - 0.01245978381484747, - 0.002514593070372939, - -0.014185388572514057, - 0.029866740107536316, - 0.0038514446932822466, - -0.02776714414358139, - -0.011206588707864285, - -0.04012851044535637, - 0.019618090242147446, - -0.00047076857299543917, - -0.02152084931731224, - -0.0258250180631876, - 0.002426016377285123, - -0.0046158283948898315, - -0.027478449046611786, - 0.011711803264915943, - -0.00799158401787281, - 0.008706757798790932, - 0.0019978960044682026, - 0.009441616013646126, - -0.002555600833147764, - -0.004225435201078653, - 0.036375485360622406, - -0.0026474581100046635, - -0.010898210108280182, - -0.007945654913783073, - 0.005504875909537077, - 0.00508823711425066, - -0.010038688778877258, - 0.00840494129806757, - 0.013516142964363098, - 0.01642933115363121, - -0.009002014063298702, - -0.01195456925779581, - -0.011843028478324413, - -0.012157967314124107, - 0.017531618475914, - 0.026376161724328995, - 0.009605647064745426, - -0.009441616013646126, - 0.035719361156225204, - -0.00686305109411478, - -0.0015837179962545633, - -0.0044747618958354, - 0.028948167338967323, - -0.006003529764711857, - 0.01629810594022274, - 0.010301138274371624, - -0.01050453633069992, - -0.004202470649033785, - -0.003972827456891537, - 0.036165524274110794, - -0.01713794469833374, - -0.01591755449771881, - 0.01047173049300909, - 0.026979796588420868, - 0.013430846855044365, - -0.019788682460784912, - -0.012341681867837906, - 0.04104708135128021, - 0.0010817835573107004, - 0.021927645429968834, - -0.014027919620275497, - 0.0003908035287167877, - 0.007696328219026327, - -0.005449105054140091, - 0.02112717553973198, - -0.010452046059072018, - 0.00405812356621027, - 0.03296364098787308, - 0.026441775262355804, - 0.007046765647828579, - 0.019814928993582726, - -0.004494445398449898, - -0.00811624713242054, - 0.02661236748099327, - 0.003090341342613101, - -0.015261431224644184, - -0.012492590583860874, - -0.018069639801979065, - -0.002693386748433113, - -0.013634244911372662, - -0.009323514066636562, - -0.018581416457891464, - -0.0025769248604774475, - -0.028895676136016846, - -0.005370370578020811, - -0.011639629490673542, - -0.03658544272184372, - -0.022596891969442368, - 0.017177311703562737, - -0.009507228620350361, - -0.0482906848192215, - -0.01188239548355341, - -0.014592185616493225, - 0.0036283626686781645, - -0.023594198748469353, - 0.01590443216264248, - 0.0019831331446766853, - -0.011068802326917648, - -0.03532568737864494, - -0.0060002487152814865, - 0.011462477035820484, - -0.009677820838987827, - 0.012066110037267208, - -0.005672187078744173, - -0.018647028133273125, - -0.0025506799574941397, - -0.0266648568212986, - -0.007250164169818163, - -0.011980813927948475, - -0.02093033865094185, - -0.018856987357139587, - 0.019683703780174255, - -0.02030045911669731, - 0.005258829332888126, - 0.001597660593688488, - 0.0009079108131118119, - 0.0017944975988939404, - 0.010766985826194286, - -0.0022537840995937586, - 0.00824091024696827, - 0.01946062222123146, - 0.022977443411946297, - 0.009015136398375034, - 0.009323514066636562, - 0.018437068909406662, - -0.016796760261058807, - 0.020116744562983513, - -0.026139957830309868, - -0.010445484891533852, - -0.0038547252770513296, - 0.013988551683723927, - 0.0020946741569787264, - -0.019171927124261856, - 0.011265639215707779, - 0.004960293415933847, - 0.01262381486594677, - 0.006804000120609999, - -0.0173872709274292, - 0.012794407084584236, - 0.005580329801887274, - 0.0002847985888365656, - -0.000856241094879806, - 0.015930676832795143, - 0.011908640153706074, - 0.015051472000777721, - -0.0008037512307055295, - -0.007138622924685478, - -0.022793728858232498, - 0.050337791442871094, - -0.0038612864445894957, - -0.00965813733637333, - 0.035063236951828, - -0.020116744562983513, - -0.00037111982237547636, - -0.031126495450735092, - 0.00468472158536315, - 0.023357994854450226, - 0.01188239548355341, - 0.014998981729149818, - -0.01269598864018917, - -0.021048439666628838, - -0.00471752742305398, - 0.0034085612278431654, - 0.021743930876255035, - -0.02923686057329178, - -0.0018109007505699992, - -0.011409986764192581, - 0.015760084614157677, - -0.009973076172173023, - 0.01092445570975542, - 0.012991243973374367, - -0.02718975581228733, - -0.025273874402046204, - 0.02705853059887886, - -0.005229304078966379, - 0.02442091517150402, - -0.019093193113803864, - 0.0011777415638789535, - -0.032438743859529495, - -0.011613384820520878, - -0.00982216838747263, - -0.0224262997508049, - -0.011508405208587646, - -0.016153758391737938, - 0.006269259378314018, - 0.029551800340414047, - 0.02763591893017292, - 0.0053244419395923615, - 0.0069352248683571815, - 0.011357496492564678, - -0.008463992737233639, - 0.008431185968220234, - -0.010727617889642715, - -0.006403764709830284, - -0.01682300493121147, - 0.022439422085881233, - 0.008752686902880669, - -0.0016960791544988751, - -0.0031772777438163757, - 0.007210796698927879, - 0.01713794469833374, - 0.04637480527162552, - -0.014985859394073486, - -0.019040701910853386, - -0.014670920558273792, - -0.0010547183919698, - 0.008713318966329098, - -0.010058372281491756, - 0.027845878154039383, - 0.025077037513256073, - -0.010189597494900227, - 0.00032457607449032366, - 0.011364057660102844, - -0.013148713856935501, - -0.018056517466902733, - 0.010137107223272324, - 0.006069141905754805, - -0.04154573753476143, - 0.017151067033410072, - 0.013286500237882137, - 0.008096563629806042, - -0.017702210694551468, - -0.010786669328808784, - -0.030181678012013435, - -0.04078463464975357, - 0.01919817179441452, - -0.0062102084048092365, - 0.00546222785487771, - -0.003917057067155838, - 0.0026064503472298384, - -0.01088508777320385, - -0.010406117886304855, - 0.023686056956648827, - -0.008247471414506435, - -0.00798502191901207, - -0.02628430537879467, - -0.012807529419660568, - -0.019933030009269714, - 0.010465169325470924, - -0.013503020629286766, - 0.010662006214261055, - 0.015169573947787285, - 0.0022160569205880165, - 0.020589154213666916, - -0.012157967314124107, - 0.007965338416397572, - 0.01179053820669651, - 0.008785492740571499, - 0.021560216322541237, - 0.005813253577798605, - 0.04516753926873207, - 0.021862033754587173, - -0.02949931100010872, - -0.02595624327659607, - -0.049576688557863235, - 0.006177402101457119, - -0.022793728858232498, - 0.027006041258573532, - 0.02137650176882744, - -0.02603497914969921, - 0.0014672561082988977, - 0.01101631298661232, - 0.006636688485741615, - -0.0062069278210401535, - -0.015090839006006718, - 0.0341184176504612, - 0.014132899232208729, - -0.015563247725367546, - -0.01964433677494526, - 0.002363684820011258, - -0.023594198748469353, - 0.015090839006006718, - 0.0007471605786122382, - -0.013417724519968033, - -0.012433539144694805, - -0.0053244419395923615, - 0.0039006539154797792, - 0.03671666979789734, - 0.024972058832645416, - 0.014841512776911259, - 0.02287246286869049, - -0.020956583321094513, - 0.008778931573033333, - -0.01944749802350998, - -0.030522862449288368, - 0.019053824245929718, - -0.015090839006006718, - 0.04781827703118324, - 0.003336387686431408, - -0.020589154213666916, - -0.00281148892827332, - 0.0015681349905207753, - -0.008162175305187702, - -0.002908267080783844, - -0.004878277890384197, - 0.02267562597990036, - -0.007171429228037596, - -0.0015468110796064138, - 0.0004461639327928424, - -0.0009308751323260367, - 0.002990282606333494, - 0.012197335250675678, - -0.0039039344992488623, - -0.022268829867243767, - 0.0011514966608956456, - -0.006170840933918953, - 0.003239609533920884, - 0.016416208818554878, - -0.013712979853153229, - -0.014106654562056065, - -0.019736193120479584, - -0.01570759527385235, - -0.00014198922144714743, - -0.01932939700782299, - 0.012604131363332272, - -0.024210955947637558, - -0.010445484891533852, - 0.005422860383987427, - 0.0005827196291647851, - 0.03600805625319481, - 1.3340322766453028e-05, - -0.026782959699630737, - -0.002373526571318507, - 0.020064255222678185, - -0.04167696088552475, - 0.011324690654873848, - 0.04348786175251007, - -0.007348582614213228, - -0.014408471062779427, - -0.013345550745725632, - 0.007020520977675915, - -0.01443471573293209, - 0.021494604647159576, - -0.013010927475988865, - -0.014605307951569557, - -0.009120116010308266, - -0.0003852674853987992, - 0.028449513018131256, - -0.032832417637109756, - -0.011462477035820484, - 0.0084377471357584, - 0.009179167449474335, - -0.006610443815588951, - -0.012709110975265503, - 0.003677571890875697, - -0.003690694458782673, - 0.029289349913597107, - -0.01088508777320385, - 0.028003348037600517, - -0.006033055018633604, - 0.017728455364704132, - 0.024210955947637558, - -0.022255707532167435, - 0.007584786973893642, - -0.020274214446544647, - -0.02396162785589695, - 0.020969705656170845, - 0.017032964155077934, - -0.031730130314826965, - -0.02274123951792717, - -0.037530262023210526, - -0.01726916991174221, - 0.0021520848385989666, - 0.008811738342046738, - 0.003259293269366026, - 0.010320821776986122, - 0.015576370991766453, - 0.0020749904215335846, - -0.012262946926057339, - 0.030522862449288368, - 0.0019831331446766853, - -0.010635760612785816, - 0.03215004876255989, - -0.00023948505986481905, - -0.03149392455816269, - 0.007670083083212376, - -0.017164189368486404, - 0.04062716290354729, - 0.02440779283642769, - -0.003844883292913437, - -0.005882146768271923, - -0.0013737584231421351, - -0.03201882541179657, - -0.026586122810840607, - -0.01423787884414196, - 0.002393210306763649, - -0.010392995551228523, - 0.0067252651788294315, - -0.010025566443800926, - 0.04800198972225189, - 0.0020044571720063686, - 0.021074684336781502, - -0.01221045758575201, - -0.027268489822745323, - -0.012315437197685242, - 0.015353288501501083, - 0.028974412009119987, - -0.018594538792967796, - -0.03960360959172249, - -0.005445824470371008, - 0.039839815348386765, - -0.0035036990884691477, - 0.019762437790632248, - 0.011777415871620178, - -0.0067187040112912655, - -0.0268092043697834, - 0.023528587073087692, - 0.009671259671449661, - 0.03380348160862923, - -0.009710626676678658, - -0.011993936263024807, - -0.01085228193551302, - 0.0006024033646099269, - 0.002160286530852318, - -0.005577049218118191, - -0.016573678702116013, - -0.011974252760410309, - 0.024827711284160614, - -0.00641032587736845, - -0.013778592459857464, - 0.010117423720657825, - -0.01394918467849493, - -0.0053375642746686935, - -0.017938414588570595, - 0.025523202493786812, - 0.013962307013571262, - -0.036375485360622406, - 0.015891309827566147, - 0.013063417747616768, - -0.0065579540096223354, - -0.03800266981124878, - 0.0035463471431285143, - -0.016967352479696274, - 0.004628950729966164, - -0.0010366750648245215, - -0.015589493326842785, - 0.004635512363165617, - -0.016022535040974617, - 0.016455575823783875, - -0.0018240232020616531, - -0.0058493404649198055, - -0.026271183043718338, - -0.030680332332849503, - -0.043382883071899414, - 0.03511572629213333, - 0.02949931100010872, - -0.019145682454109192, - 0.017229801043868065, - -0.00513744680210948, - -0.005895269103348255, - -0.008450870402157307, - -0.023686056956648827, - 0.0086017781868577, - -0.033383559435606, - -0.005193217191845179, - -0.0020487455185502768, - -0.022137604653835297, - 0.010465169325470924, - -0.007256725337356329, - -0.009480983950197697, - -0.029919229447841644, - -0.012846897356212139, - 0.17783570289611816, - -0.03264870122075081, - -0.013391479849815369, - 0.018909478560090065, - -0.026179324835538864, - -0.03364600986242294, - 0.014264123514294624, - -0.002895144745707512, - 0.0074404398910701275, - 0.02918437123298645, - 0.010806352831423283, - 0.004789701197296381, - 0.021087806671857834, - 0.007191113196313381, - 0.019408131018280983, - -0.007387950085103512, - -0.03117898665368557, - -0.007709450554102659, - 0.012472907081246376, - 0.01881762035191059, - 0.00943505484610796, - -0.027032285928726196, - -0.022623136639595032, - -0.017046086490154266, - 0.04768705368041992, - 0.01452657300978899, - 0.008555850014090538, - 0.01432973612099886, - 0.03480078652501106, - 0.01108192466199398, - -0.02539197728037834, - -0.009651576168835163, - 0.00965813733637333, - -0.0022931513376533985, - -0.012217018753290176, - -0.005386773496866226, - 0.01675739325582981, - -0.01713794469833374, - 0.01964433677494526, - 0.02821330912411213, - 0.014552817679941654, - -0.018581416457891464, - -0.006777754984796047, - -0.039971038699150085, - 0.0009070906671695411, - 0.0320713147521019, - 0.004336975980550051, - 0.0053408448584377766, - 0.008910156786441803, - 0.004701124504208565, - -0.002035622950643301, - 0.014395348727703094, - 0.007059888448566198, - 0.026258060708642006, - -0.007781623862683773, - -0.017111700028181076, - 0.013699857518076897, - -0.023791035637259483, - 0.01642933115363121, - 0.002473585307598114, - -0.033383559435606, - 0.003926898818463087, - -0.011659313924610615, - 0.02300368808209896, - -0.04078463464975357, - -0.007217357866466045, - -0.02860698290169239, - 0.008470553904771805, - -0.010747302323579788, - -0.03285866230726242, - -0.003552908543497324, - -0.022465666756033897, - -0.038238875567913055, - 0.012426977977156639, - -0.030942780897021294, - -0.03427588939666748, - 0.006994275841861963, - 0.015746962279081345, - 0.024591507390141487, - 0.023148035630583763, - 0.0022012940607964993, - 0.008726442232728004, - -0.022308196872472763, - -0.014487206004559994, - -0.0027786828577518463, - -0.02460462972521782, - 0.020064255222678185, - 0.0014746374217793345, - 0.02493269182741642, - -0.021809542551636696, - -0.022911829873919487, - 0.005642661824822426, - 0.0016173443291336298, - -0.011633068323135376, - 0.02384352684020996, - -0.0009899262804538012, - 0.024079730734229088, - -0.01159370131790638, - -0.01085228193551302, - -0.00814905297011137, - -0.009684382006525993, - 0.06288287043571472, - 0.04490508884191513, - -0.0059936875477433205, - -0.01636371947824955, - -0.002478506416082382, - 0.0038776895962655544, - 0.016271861270070076, - -0.014342858456075191, - 0.01255820319056511, - -0.019539356231689453, - -0.047240886837244034, - 0.01494649238884449, - -0.018830742686986923, - 0.015615737996995449, - 0.02763591893017292, - 0.008864227682352066, - 0.009697504341602325, - -0.004701124504208565, - -0.001070301397703588, - -0.018069639801979065, - 0.0013220887631177902, - 0.02577252872288227, - -0.0036185209173709154, - 0.007000837009400129, - -0.03220253810286522, - -0.040994592010974884, - 0.02673046849668026, - -0.013608000241219997, - -0.0011465756688266993, - 0.019106315448880196, - -0.002750797662883997, - 0.026769837364554405, - 0.0030444127041846514, - 0.012039865367114544, - -0.007204235531389713, - -0.007040204480290413, - -0.04369782283902168, - -0.023266136646270752, - -0.010904771275818348, - 0.03396094962954521, - 0.012781284749507904, - 0.007853797636926174, - 0.02035294845700264, - 0.02377791330218315, - 0.010937578044831753, - 0.023594198748469353, - -0.0012048067292198539, - -0.02178329788148403, - -0.007873481139540672, - -0.014342858456075191, - -0.006987714674323797, - 0.000766844255849719, - -0.014998981729149818, - 0.027609674260020256, - 0.014605307951569557, - -0.027425959706306458, - -0.023948505520820618, - 0.017859680578112602, - 0.014513450674712658, - -0.028318287804722786, - -0.017479129135608673, - -0.002655659569427371, - -0.028816942125558853, - 0.003910495899617672, - -0.008457431569695473, - -0.16460825502872467, - 0.005285074468702078, - 0.012315437197685242, - -0.02203262597322464, - 0.016849249601364136, - 0.001638668356463313, - 0.014119776897132397, - 0.009513789787888527, - -0.033199846744537354, - -0.0029099073726683855, - 0.025142651051282883, - -0.0028295323718339205, - 0.006325030233711004, - -0.013962307013571262, - -0.0026474581100046635, - 0.00579685065895319, - -0.016731148585677147, - 0.02356795407831669, - 0.0266648568212986, - 0.017741577699780464, - 0.005819814745336771, - -0.030129188671708107, - 0.021796420216560364, - 0.0015353289199993014, - 0.0006573536666110158, - 0.011364057660102844, - -0.025929998606443405, - 0.024722730740904808, - -0.018843865022063255, - -0.013083101250231266, - -0.02455213852226734, - 0.00808344129472971, - 0.007637276779860258, - -0.013712979853153229, - -0.006469377316534519, - -0.0187388863414526, - -0.0068761738948524, - -0.008883911184966564, - -0.0055475239641964436, - 0.03729405626654625, - 0.007584786973893642, - 0.0300242081284523, - -0.0066202855668962, - 0.01207923237234354, - 0.00484547158703208, - 0.028239553794264793, - 0.01797778159379959, - -0.01809588447213173, - -0.0020569469779729843, - -0.015300799161195755, - 0.00940224900841713, - -0.0031001833267509937, - -0.009244779124855995, - 0.00021303507674019784, - -0.013253693468868732, - 0.04128328710794449, - -0.01629810594022274, - 0.020497296005487442, - 0.010839159600436687, - -0.012650060467422009, - 0.00484547158703208, - -0.01881762035191059, - 0.009900902397930622, - -0.01532704383134842, - -0.013673612847924232, - -0.032307516783475876, - -0.011324690654873848, - 0.023974750190973282, - -0.024066608399152756, - -0.005754202604293823, - -0.008135930635035038, - -0.047188397496938705, - 0.008076879195868969, - -0.013371795415878296, - 0.011514966376125813, - 0.016468698158860207, - -0.009349758736789227, - -0.005239145830273628, - -0.010701373219490051, - -0.00988778006285429, - -0.009015136398375034, - 0.04414398595690727, - -0.010452046059072018, - -0.005613136105239391, - -0.022124482318758965, - -0.008759248070418835, - -0.005157130304723978, - 0.037136588245630264, - -0.010648883879184723, - 0.010452046059072018, - 0.010970383882522583, - -0.013896694406867027, - -0.01656055636703968, - -0.029420575127005577, - 0.007847236469388008, - -0.016468698158860207, - 6.474093243014067e-05, - 2.2169795556692407e-05, - -0.01900133490562439, - -0.007834114134311676, - -0.0020175795070827007, - -0.023226769641041756, - -0.026244938373565674, - 0.018069639801979065, - -0.003920337650924921, - -0.008109685964882374, - -0.038422588258981705, - 0.009467861615121365, - 0.030444128438830376, - -0.010156790725886822, - -0.014054164290428162, - 0.004081087652593851, - 0.01764972135424614, - -0.010635760612785816, - -0.021245276555418968, - -0.0018584696808829904, - -0.014106654562056065, - -0.016783637925982475, - 0.018791375681757927, - -0.008483676239848137, - 0.04642729461193085, - -0.004008914344012737, - -0.023161157965660095, - 0.01648182049393654, - -0.007394511252641678, - -0.02086472511291504, - -0.09721124917268753, - -0.007604470942169428, - 0.027425959706306458, - 0.03091653622686863, - 0.01791216991841793, - 0.012676305137574673, - 0.008017828688025475, - -0.007020520977675915, - 0.0133324284106493, - 0.03485327586531639, - -0.026756715029478073, - -0.020064255222678185, - -0.022531278431415558, - -0.012249824590981007, - 0.010281454771757126, - -0.008870788849890232, - -0.0037235005293041468, - -0.022386932745575905, - -0.01255820319056511, - 0.027793388813734055, - -0.0010309339268133044, - -0.0034840155858546495, - -0.0182271096855402, - 0.006341433152556419, - -0.018253354355692863, - -0.0007717651897110045, - -0.035456910729408264, - 0.003690694458782673, - 0.01939500868320465, - 0.002434218069538474, - 0.02852824702858925, - -0.0180433951318264, - 0.007912849076092243, - -0.005212900694459677, - -0.022767484188079834, - -0.009572841227054596, - -0.027137266471982002, - -0.017833435907959938, - 0.021875156089663506, - -0.015287675894796848, - -0.007873481139540672, - 0.012407294474542141, - -0.0024899884592741728, - -0.00963189173489809, - -0.01810900680720806, - -0.018279599025845528, - -0.006108509376645088, - 0.022505033761262894, - -0.007394511252641678, - -0.0034118418116122484, - -0.03367225453257561, - -0.027425959706306458, - -0.012066110037267208, - 0.03340980410575867, - 0.025995610281825066, - -0.0008824860560707748, - -0.0025326365139335394, - -0.016193127259612083, - -0.0043993075378239155, - 0.008299961686134338, - -0.021809542551636696, - 0.028108328580856323, - -0.02724224515259266, - 0.03201882541179657, - -0.012000497430562973, - 0.003006685758009553, - -0.011495282873511314, - -0.014093531295657158, - 0.023554831743240356, - -0.00014383456436917186, - -0.013831081800162792, - 0.00711893942207098, - 0.005317880306392908, - 0.018397701904177666, - -0.03306862339377403, - -0.0008660829626023769, - -0.05204370990395546, - -0.01680988259613514, - -0.009271024726331234, - -0.011062241159379482, - -0.006758071482181549, - -0.026638612151145935, - 0.007538858335465193, - -0.0026638612616807222, - 0.037320300936698914, - 0.02320052497088909, - 0.003815357806161046, - -0.029551800340414047, - 0.022308196872472763, - 0.0012343322159722447, - -0.017164189368486404, - 0.007696328219026327, - 0.021665196865797043, - -0.002099595032632351, - -0.04007602110505104, - 0.01213828381150961, - 0.008523043245077133, - -0.009572841227054596, - -0.00562297785654664, - 0.004028597846627235, - -0.02415846474468708, - -0.0054786307737231255, - -0.039393652230501175, - 0.02944681979715824, - 0.02873820625245571, - 0.006758071482181549, - -0.0025539605412632227, - 0.010123984888195992, - -0.0021488042548298836, - 0.016731148585677147, - 0.004589583724737167, - 0.0031526731327176094, - -0.017216678708791733, - 0.0035463471431285143, - -0.020956583321094513, - -0.0017452883766964078, - -0.026402408257126808, - -0.03396094962954521, - -0.0009882859885692596, - 0.024840833619236946, - 0.004566619172692299, - -0.0011506765149533749, - -0.006131473463028669, - 0.003131349105387926, - -0.0015828978503122926, - 0.02646801993250847, - -0.029026901349425316, - -0.020628521218895912, - -0.011646191589534283, - -0.0023653251118957996, - 0.005304757971316576, - -0.0045108487829566, - 0.0021898120176047087, - -0.0064201680943369865, - -0.016586801037192345, - 0.017361026257276535, - -0.006436571013182402, - -0.02221634052693844, - 0.020694132894277573, - 0.030627842992544174, - 0.023594198748469353, - 0.03676915913820267, - -0.011364057660102844, - -0.02583814039826393, - 0.006902418565005064, - -0.020510418340563774, - 0.004546935670077801, - 0.01249915175139904, - 0.000816463609226048, - 0.007958777248859406, - 0.009704065509140491, - -0.005012783221900463, - 0.043382883071899414, - 0.0015107241924852133, - 0.007197674363851547, - -0.02119278721511364, - -0.0008041613036766648, - -0.0019142401870340109, - 0.013220887631177902, - 0.003073938423767686, - 0.03183510899543762, - -0.03125772252678871, - 0.052279915660619736, - -0.003077219007536769, - 0.012768162414431572, - -0.019342519342899323, - 0.007177990395575762, - -0.007781623862683773, - -0.03304237499833107, - 0.008162175305187702, - -0.00043960270704701543, - -0.006981153506785631, - -0.018187742680311203, - -0.005590171553194523, - 0.021953890100121498, - 0.01829272136092186, - -0.007466685026884079, - -0.010878526605665684, - 0.013476775959134102, - 0.017439762130379677, - 0.003131349105387926, - 0.009349758736789227, - 0.030522862449288368, - 0.0010186316212639213, - 0.0036086789332330227, - -0.009559718891978264, - 0.0214421134442091, - 0.009572841227054596, - -0.023659812286496162, - 0.0021389625035226345, - -0.007775062695145607, - -0.011272200383245945, - -0.011022874154150486, - 0.027399715036153793, - -0.005229304078966379, - 0.017046086490154266, - 0.018148373812437057, - 0.023856649175286293, - 0.006246295291930437, - -0.011521527543663979, - 0.020392317324876785, - 0.05023281276226044, - -0.001272059278562665, - 0.006223330739885569, - -0.013896694406867027, - -0.019224416464567184, - -0.010248648002743721, - 0.011095047928392887, - -0.0035233828239142895, - -0.0411258190870285, - 0.027793388813734055, - 0.023108668625354767, - -0.008673951961100101, - 0.019355641677975655, - 0.005039027892053127, - 0.0017600511200726032, - -0.004199190065264702, - 0.01381795946508646, - -0.017019841820001602, - -0.011816782876849174, - -0.02834453247487545, - 0.02369917929172516, - 0.010753863491117954, - 0.006370958872139454, - 0.0007639737450517714, - 0.012394172139465809, - 0.015051472000777721, - -0.011567456647753716, - 0.035010747611522675, - -0.01675739325582981, - 0.009841851890087128, - -0.008673951961100101, - 0.0020372632425278425, - -0.013568633235991001, - -0.029131881892681122, - -0.016245616599917412, - -0.013647367246448994, - -0.00737482775002718, - 0.0268092043697834, - 0.0007693047518841922, - 0.007401072420179844, - 0.13038484752178192, - 0.01514332927763462, - -0.005022624973207712, - 0.02480146661400795, - -0.005603294353932142, - 0.01153464987874031, - 0.002478506416082382, - -0.0018896355759352446, - -0.003569311462342739, - -0.07474558055400848, - 0.012472907081246376, - -0.01583882048726082, - 0.009612208232283592, - -0.02287246286869049, - -0.008122808299958706, - 0.02138962410390377, - 0.001629646634683013, - 0.014789022505283356, - -0.025615058839321136, - 0.004786420613527298, - 0.04401276260614395, - -0.017032964155077934, - 0.003684133058413863, - 0.04012851044535637, - -0.013516142964363098, - -0.01796465925872326, - 0.016599923372268677, - 0.0069221025332808495, - 0.015956921502947807, - -0.013430846855044365, - 0.002066788962110877, - 0.014342858456075191, - -0.05212244763970375, - -0.02114029787480831, - -0.0008234349079430103, - -0.01776782236993313, - 0.0003340078401379287, - -0.01494649238884449, - 0.011357496492564678, - -0.0040318784303963184, - 0.03317360207438469, - 0.03167764097452164, - -0.013069978915154934, - -0.016061902046203613, - 0.003336387686431408, - -0.005212900694459677, - -0.002406332641839981, - -0.0074470010586082935, - -0.01695423014461994 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 34, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 549 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000035.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000035.json deleted file mode 100644 index dd7df0a7a9bf91355fe9ee07f2ac91b86cfa79eb..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000035.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000035", - "content": "Die \u00dcbereinstimmung zwischen berechneten und gemessenen Werten zeigt, dass in einem Abstand von weniger als 100 Metern und einer H\u00f6he von weniger als 5 Metern eine Abweichung von 3 dB auftritt. Es ist jedoch wichtig zu beachten, dass die Sch\u00e4tzung nach DIN ISO 9613-2 auf Situationen beruht, in denen weder Reflexionen noch Abschirmungen auftreten. Unter Ber\u00fccksichtigung der Erkenntnisse der VDI 2714 [86] und DIN ISO 9613-2 [85] las- sen sich Abweichungen bei der Berechnung von Schalldruckpegeln feststellen, insbeson- dere bei freier Schallausbreitung und -abh\u00e4ngig von der Entfernung und H\u00f6he. Die Vali- dierungsergebnisse zeigen, dass eine durchschnittliche Differenz von etwa 4,6 dB(A) zwi- schen den simulierten Beurteilungspegeln und den gemessenen Werten besteht. Da der durchschnittliche Abstand des Messpunktes zur Quelle ungef\u00e4hr 40 Meter bei einer H\u00f6he von unter 5 Metern betr\u00e4gt, l\u00e4sst sich daraus schlie\u00dfen, dass die simulierten Be- urteilungspegel im Vergleich zu den gemessenen Werten im akzeptablen Bereich liegen. Es ist zu beachten, dass die Abweichungen nicht allein durch den Abstand erkl\u00e4rt werden k\u00f6nnen, sondern auch von anderen Faktoren wie der Umgebung, der Ausbreitungsrich- tung und m\u00f6glichen Absorptionseffekten. Bei der Bewertung der Schallpegelberechnun- gen sollten daher weitere Einflussfaktoren ber\u00fccksichtigt werden, um eine m\u00f6glichst genaue Einsch\u00e4tzung der tats\u00e4chlichen L\u00e4rmemissionen zu erhalten. ## 7.5 M\u00f6gliche Minderungsma\u00dfnahmen\n\nIm Folgenden werden verschiedene L\u00e4rm-Minderungsma\u00dfnahmen beschrieben, die dazu dienen, die L\u00e4rmbelastung in Speditionen und w\u00e4hrend des Verladeprozesses zu reduzieren. L\u00e4rm stellt ein erhebliches gesundheitliches Problem dar und kann zu Beein- tr\u00e4chtigungen der Mitarbeiter sowie der Umgebung f\u00fchren. Daher ist es von gro\u00dfer Be- deutung, geeignete Ma\u00dfnahmen zu ergreifen, um den L\u00e4rmpegel zu minimieren und ein angenehmes Klima zu schaffen. In diesem Kapitel werden verschiedene Ans\u00e4tze und\n70\n7 Ergebnisse und Interpretation\nStrategien vorgestellt, die dazu beitragen k\u00f6nnen, den L\u00e4rm auf ein akzeptables Ma\u00df zu reduzieren. Durch subjektives Erleben und H\u00f6ren w\u00e4hrend des Beladevorgangs konnten potenzielle\nHauptursachen identifiziert werden, die zu einer erh\u00f6hten L\u00e4rmbelastung beitragen k\u00f6nnen. Ein Ansatzpunkt f\u00fcr L\u00e4rmminderungsma\u00dfnahmen k\u00f6nnen bei der \u00dcberladebr\u00fc- cke und dem Anh\u00e4nger selbst stattfinden. In der durchgef\u00fchrten Messung wurde eine hydraulische \u00dcberladebr\u00fccke mit einer geriffelten Stahloberfl\u00e4che verwendet. Die harte und geriffelte Oberfl\u00e4che kann verschiedene Effekte hervorrufen, die zu einer Erh\u00f6hung des Schalls beitragen. Zum einen wird ein Teil des Schalls von der harten Oberfl\u00e4che reflektiert und in verschiedene Richtungen zur\u00fcckgeworfen, da harte Oberfl\u00e4chen Schall gut reflektieren. Dar\u00fcber hinaus kann es aufgrund der geriffelten Oberfl\u00e4che zu Streu- ungseffekten kommen, bei denen der Schall in verschiedene Richtungen gestreut wird und sich im Raum gut verteilt. Wenn die Frequenz des erzeugten Schalls mit der Reso- nanzfrequenz der \u00dcberladebr\u00fccke \u00fcbereinstimmt, kann es zu einer Resonanz kommen, bei der der Schall verst\u00e4rkt wird und das Bauteil angeregt. Um die nachfolgend beschrie- benen Effekte zu minimieren, k\u00f6nnte auf der \u00dcberladebr\u00fccke ein weicher Belag aufge- legt werden, die Schall und Vibrationen d\u00e4mpfen. Des Weiteren k\u00f6nnten K\u00f6rperschall- wellen, die durch den Beladevorgang entstehen, durch die Anbringung einer sogenann- ten Dr\u00f6hnfolie auf der Unterseite der \u00dcberladebr\u00fccke reduziert werden. Beim Einfahren des Flurf\u00f6rderger\u00e4ts in die jeweiligen Anh\u00e4nger, insbesondere in Tautliner und Koffer, konnte beobachtet werden, dass das Gewicht des Flurf\u00f6rderger\u00e4ts den Anh\u00e4nger nach unten dr\u00fcckt und Schwingungen verursacht. Diese Anregung des Anh\u00e4ngers f\u00fchrte zu lauten Ger\u00e4uschen. Um die Anregung und die damit verbundenen lauten Ger\u00e4usche des Anh\u00e4ngers zu reduzieren, k\u00f6nnten Sto\u00dfd\u00e4mpfer in den Anh\u00e4nger eingebaut werden. Diese Sto\u00dfd\u00e4mpfer dienen dazu, die Schwingungen zu d\u00e4mpfen und somit die Ger\u00e4u- schentwicklung zu verringern. Es ist jedoch wichtig, dass die Sto\u00dfd\u00e4mpfer speziell auf die Anforderungen des Anh\u00e4ngers abgestimmt werden, um eine optimale D\u00e4mpfung zu gew\u00e4hrleisten und sonstige wichtige Eigenschaften des Anh\u00e4ngers nicht beeinflussen.", - "embedding": [ - 0.015253481455147266, - 0.014116331934928894, - 0.007770518306642771, - -0.022063303738832474, - 0.011430308222770691, - 0.0198674313724041, - -0.016717396676540375, - -0.029931852594017982, - -0.015841661021113396, - -0.02399776503443718, - 0.005917749367654324, - 0.023514149710536003, - -0.011260389350354671, - 0.007522175088524818, - 0.00651573296636343, - 0.025592386722564697, - 0.028755491599440575, - 0.013658858835697174, - 0.019396886229515076, - -0.0006858021370135248, - -0.0009753993363119662, - -0.0007879168260842562, - -0.02014191448688507, - 0.00501587288454175, - -0.022651484236121178, - -0.004943984095007181, - 0.039682578295469284, - -0.008698536083102226, - -0.00895994994789362, - -0.009744190610945225, - 0.02927831932902336, - -0.012299507856369019, - -0.02018112689256668, - 0.014482310973107815, - -0.004911307245492935, - -0.02224629372358322, - -0.004823080264031887, - -0.008489405736327171, - 0.031238920986652374, - -0.00819531548768282, - 0.009149475023150444, - 0.007005883380770683, - 0.003793764393776655, - -0.03084680065512657, - -0.0030291297007352114, - 0.019671371206641197, - 0.025997579097747803, - -0.007502569351345301, - -0.021200640127062798, - 0.020416399464011192, - 0.028990764170885086, - 0.006649707444012165, - -0.01620764099061489, - 0.007241155486553907, - -0.00415647542104125, - 0.003862385405227542, - 0.0018037535483017564, - 0.012109982781112194, - -0.0009549764217808843, - -0.011855104938149452, - -0.04953787103295326, - -0.007398003712296486, - -0.022651484236121178, - 0.0029147611930966377, - -0.023030534386634827, - -0.014743724837899208, - 0.007920830510556698, - -0.010914016515016556, - -0.010182058438658714, - -0.004450565669685602, - 0.021448982879519463, - 0.0393688827753067, - 0.012391002848744392, - 0.009502382948994637, - 0.0284679364413023, - -0.012410609051585197, - 0.015567177906632423, - 0.0009696809574961662, - -0.0009492579847574234, - 0.0008254949934780598, - 0.02266455627977848, - -0.01780226267874241, - -0.017985252663493156, - 0.03997013345360756, - 0.01324059721082449, - -0.015763238072395325, - -0.0069993482902646065, - 0.006633369252085686, - -0.026272062212228775, - 0.005460275802761316, - 0.0043982830829918385, - 0.04135562479496002, - -0.008842313662171364, - -0.018560362979769707, - 0.03740828111767769, - 0.0003429010685067624, - 0.010979369282722473, - 0.019096260890364647, - -0.00028489992837421596, - -0.03411446884274483, - -0.001607693382538855, - -0.0029392687138170004, - 0.002460555173456669, - 0.009548130445182323, - -0.020703954622149467, - -0.01139109581708908, - 0.005901411175727844, - 0.0069339945912361145, - -0.005721689201891422, - -0.028755491599440575, - -0.025004206225275993, - 0.016730468720197678, - 0.0077901240438222885, - 0.0017874152399599552, - 0.01960601657629013, - 3.821641439571977e-05, - 0.014952856115996838, - -0.009757260791957378, - -0.015998510643839836, - -0.009613484144210815, - 0.0397348627448082, - 0.016495196148753166, - 0.025174126029014587, - -0.021239852532744408, - 0.021566618233919144, - 0.011090470477938652, - -0.004996266681700945, - -0.003816637909039855, - -0.028494078665971756, - 0.0018070212099701166, - -0.025958366692066193, - 0.013096819631755352, - 0.01116235926747322, - 0.006581086199730635, - -0.0035879011265933514, - 0.00616282457485795, - -0.005728224758058786, - -0.017031094059348106, - -0.014913643710315228, - -0.02212865836918354, - -0.0024719920475035906, - 0.013828777708113194, - -0.036022789776325226, - -0.035290829837322235, - -0.0007262395229190588, - 0.05194287374615669, - 0.017266366630792618, - 0.0014304223004728556, - -0.007620205171406269, - -0.006319672800600529, - -0.027030162513256073, - -0.023213524371385574, - 0.0015407061437144876, - -0.007116984110325575, - -0.016939599066972733, - -0.0027954913675785065, - 0.001903417520225048, - 0.014626088552176952, - -0.02602371945977211, - 0.0023478204384446144, - -0.0017384001985192299, - 0.012462891638278961, - 0.009639625437557697, - 0.008365234360098839, - 0.01517505757510662, - 0.0014549298211932182, - -0.01005135104060173, - -0.011266924440860748, - -0.01493978500366211, - -0.008822707459330559, - -0.006231445819139481, - 0.027500705793499947, - -0.0021419574040919542, - 0.00978340208530426, - -0.013815706595778465, - 0.002521007088944316, - 0.015959298238158226, - 0.0023118762765079737, - -0.01551489531993866, - -0.03434974327683449, - -0.03283354267477989, - -0.004591075703501701, - 0.012292972765862942, - 0.016612831503152847, - -0.0259845070540905, - 0.010979369282722473, - 0.01635141856968403, - 0.03887219727039337, - -0.00945663545280695, - -0.012162266299128532, - 0.00446363678202033, - 0.01119503565132618, - 0.006581086199730635, - -0.03997013345360756, - -0.6386855840682983, - -0.0027807867154479027, - 0.0034147147089242935, - -0.0029523393604904413, - -0.0023086084984242916, - 0.048518355935811996, - 0.018011394888162613, - 0.004440763033926487, - -0.00024160330940503627, - 0.04485856741666794, - 0.009044908918440342, - 0.012449820525944233, - -0.010998975485563278, - 0.011541408486664295, - -0.0008806369150988758, - -0.02797125093638897, - -0.013541222549974918, - 0.0007119434885680676, - 0.022416213527321815, - 0.0043525355868041515, - -0.013051072135567665, - 0.0047119795344769955, - -0.012600133195519447, - 0.005976567510515451, - 0.0026419106870889664, - -0.020730094984173775, - 0.008770424872636795, - -0.020703954622149467, - 0.007045095320791006, - -0.002089674584567547, - -0.021540477871894836, - 0.0047936709597706795, - -0.020351044833660126, - 0.028441796079277992, - 0.04156475514173508, - 0.010783309116959572, - 0.015214269049465656, - 0.012456356547772884, - -0.00092066585784778, - 0.008286809548735619, - -0.001216389937326312, - -0.005450472701340914, - -0.0023037069477140903, - -0.013763424009084702, - 0.006894782651215792, - -0.006381758488714695, - 0.047054439783096313, - -0.02235085889697075, - 0.01754084974527359, - -0.025553176179528236, - 0.003365699667483568, - -0.004064980894327164, - 0.009521989151835442, - 0.016952669247984886, - 0.024507520720362663, - -0.002919662743806839, - 0.0489104762673378, - -0.020886942744255066, - -0.015109703876078129, - 0.02079544961452484, - 0.009038373827934265, - 0.005653068423271179, - 0.0009966392535716295, - -0.01799832284450531, - -0.02127906307578087, - 0.01209691260010004, - -0.008763889782130718, - -0.03986556828022003, - 0.02078237757086754, - -0.012985718436539173, - -0.0064013646915555, - 0.028598643839359283, - -0.018638787791132927, - -0.03301653265953064, - 0.03184017166495323, - 0.012417144142091274, - 0.02197181060910225, - -0.012456356547772884, - -0.006551677361130714, - 0.02250770851969719, - -0.007424145005643368, - -0.0011616564588621259, - -0.020377187058329582, - -0.0017220618901774287, - 0.02594529651105404, - 0.001960601657629013, - -0.005960229318588972, - 0.012868082150816917, - 0.012201477773487568, - 0.007901225239038467, - 0.020494822412729263, - 0.038270946592092514, - -0.014965926297008991, - -0.012077306397259235, - 0.0011820794316008687, - 0.03615349531173706, - -0.012240690179169178, - 0.016220711171627045, - 0.014822148717939854, - -0.019749794155359268, - -0.022272435948252678, - -0.0012008685152977705, - 0.001451662159524858, - -0.03155261650681496, - 0.016599761322140694, - -0.001084049348719418, - -0.01116235926747322, - 0.008803101256489754, - 0.025213338434696198, - -0.01627299375832081, - 0.003862385405227542, - -0.008587435819208622, - -0.008005790412425995, - -0.01440388709306717, - 0.00785547774285078, - -0.022272435948252678, - 0.027004020288586617, - 0.006907853297889233, - 0.008966485038399696, - -0.01712258905172348, - 0.00571188610047102, - -0.0006612946162931621, - 0.04407432675361633, - -0.00016266867169179022, - -0.030088700354099274, - 0.0217888206243515, - 0.021762678399682045, - 0.011090470477938652, - 0.019775936380028725, - -0.022298576310276985, - -0.004185884725302458, - 0.01167211588472128, - 0.016116145998239517, - -0.002195873996242881, - 0.018756423145532608, - 0.013763424009084702, - 0.032075442373752594, - -0.016652043908834457, - -0.002257959684357047, - -0.02697787992656231, - -0.019161613658070564, - 0.007437215652316809, - 0.007064701523631811, - -0.03333022817969322, - -0.014717583544552326, - -0.044388022273778915, - -0.00848286971449852, - 0.015292692929506302, - 0.015619460493326187, - -0.010280088521540165, - 0.00825413316488266, - -0.030506962910294533, - 0.006188965868204832, - 0.013972555287182331, - -0.0035062094684690237, - 0.010639531537890434, - -0.020011208951473236, - -0.020207269117236137, - -0.01092708669602871, - -0.016286063939332962, - 0.013188314624130726, - 0.01139109581708908, - -0.050844937562942505, - -0.014992067590355873, - -0.007842406630516052, - -0.028154240921139717, - 0.027317717671394348, - 0.0027399410028010607, - -0.010548037476837635, - -0.03931659832596779, - 0.001016245223581791, - 0.0100317457690835, - 0.002717067254707217, - 0.008326021954417229, - -0.01497899740934372, - -0.005907946266233921, - -0.017749980092048645, - -0.01012977585196495, - -0.01944916881620884, - -0.014874431304633617, - 0.021069932729005814, - -0.002509570214897394, - -0.014456169679760933, - 0.002919662743806839, - 0.03549996018409729, - -0.00010196150105912238, - 0.020115774124860764, - -0.01440388709306717, - -0.014351604506373405, - 0.03129120171070099, - -0.011142753064632416, - 0.024285320192575455, - -0.019919713959097862, - 0.011665579862892628, - -0.03212772682309151, - 0.0025700221303850412, - -0.0005036295624449849, - -0.022769121453166008, - -0.0040715159848332405, - 0.02572309412062168, - 0.030480820685625076, - -0.009319393895566463, - 0.014377745799720287, - -0.018050607293844223, - 0.018285878002643585, - -0.01692652888596058, - 0.008188779465854168, - -0.013685000129044056, - 0.03879377245903015, - 0.03929045796394348, - 0.02018112689256668, - -0.00989450328052044, - -0.023710209876298904, - -0.003891794476658106, - -0.0032072176691144705, - 0.03448044881224632, - -0.012384467758238316, - 0.013488939963281155, - 0.025396326556801796, - 0.0009386380552314222, - 0.0014500283868983388, - -0.010998975485563278, - 0.03617963567376137, - 0.00745028629899025, - -0.011279995553195477, - -0.010632996447384357, - 0.008038466796278954, - 0.006541874259710312, - 0.004087854642421007, - -0.01543647050857544, - -0.009535059332847595, - -0.007208479102700949, - 0.007130054756999016, - 0.01299225352704525, - -0.007188872899860144, - 0.015645600855350494, - 0.006901318207383156, - -0.016024651005864143, - 0.03840165212750435, - 0.006156289484351873, - 0.024311460554599762, - 0.02197181060910225, - 0.011744004674255848, - 0.0018249934073537588, - 0.012730840593576431, - -0.006296799052506685, - 0.014678371138870716, - 0.025252550840377808, - 0.0045453282073140144, - 0.008711607195436954, - -0.0027530116494745016, - -0.004401550628244877, - -0.01360657624900341, - -0.0006416885880753398, - 0.013972555287182331, - -0.017070306465029716, - 0.020690882578492165, - 0.002328214468434453, - 0.007175802253186703, - 0.011913922615349293, - 0.0150966327637434, - 0.02067781239748001, - 0.02334423176944256, - -0.021579690277576447, - 0.0148090785369277, - -0.00042602242319844663, - -0.025004206225275993, - -0.018429655581712723, - -0.01052843127399683, - -0.013685000129044056, - 0.0036499868147075176, - -0.009868361987173557, - 0.011240783147513866, - -0.0019507986726239324, - 0.008633183315396309, - -0.009319393895566463, - -0.007835871540009975, - 0.018860988318920135, - 0.031578756868839264, - 0.016599761322140694, - -0.018743352964520454, - -0.022729909047484398, - 0.010325836017727852, - 0.020233409479260445, - -0.018547292798757553, - -0.00713659031316638, - -0.014351604506373405, - 0.003806835040450096, - -0.01369807031005621, - 0.000542024674359709, - -0.008816172368824482, - 0.005532164592295885, - -0.005600785370916128, - -0.003610774874687195, - 0.020952297374606133, - -0.004113995935767889, - 0.005486417096108198, - 0.019174683839082718, - -0.005028943531215191, - 0.020534034818410873, - 0.0027938573621213436, - -0.020468682050704956, - -0.01199888251721859, - -0.032885827124118805, - 0.013933342881500721, - -0.0028706477023661137, - -0.01290075946599245, - -0.04365606606006622, - 0.005048549268394709, - -0.009423959068953991, - -0.02789282612502575, - 0.012031558901071548, - 0.004989731125533581, - 0.024925783276557922, - 0.003097750712186098, - -0.0006617030594497919, - -0.00021219429618213326, - -0.010280088521540165, - 0.05264868959784508, - -0.0007707615732215345, - -0.010404259897768497, - -0.016455983743071556, - 0.0011992347426712513, - -0.009574271738529205, - -0.0015260016079992056, - 0.010168987326323986, - 0.01263281051069498, - 0.016063863411545753, - -0.006339279003441334, - -0.018887130543589592, - -0.012103447690606117, - -0.03414061293005943, - 0.01688731648027897, - 0.017514709383249283, - 0.00128256028983742, - -0.010933621786534786, - 0.03625806048512459, - -0.02052096463739872, - -0.002596163423731923, - -0.0033558965660631657, - 0.017566991969943047, - -0.023814775049686432, - 0.02584073133766651, - 0.008933808654546738, - -0.007659417111426592, - 0.011149288155138493, - 0.0010775140253826976, - 0.04300253093242645, - -0.004476707428693771, - -0.015423400327563286, - 0.011018581688404083, - 0.025893013924360275, - 0.02433760277926922, - -0.02205023355782032, - 0.0017220618901774287, - 0.03832322731614113, - 0.015292692929506302, - 0.00835216324776411, - -0.011783216148614883, - -0.015018208883702755, - -0.0009018767741508782, - -0.016495196148753166, - 0.01286154706031084, - -0.0052544125355780125, - 0.012691628187894821, - 0.03795724734663963, - 0.015501824207603931, - 0.006074597593396902, - 0.02614135667681694, - -0.0009312857873737812, - -0.0001893206062959507, - 0.025239478796720505, - -0.017070306465029716, - -0.013854919001460075, - 0.01369807031005621, - -0.016952669247984886, - 0.007613670080900192, - 0.00575109850615263, - -0.008744283579289913, - -0.028101958334445953, - 0.010240876115858555, - -0.02568388171494007, - -0.017135659232735634, - -0.021448982879519463, - -0.024010835215449333, - -0.022141728550195694, - 0.022729909047484398, - -0.011404166929423809, - -0.043316226452589035, - -0.015449541620910168, - -0.010365047492086887, - 0.010136310942471027, - -0.011306136846542358, - 0.0017629077192395926, - -0.007646346464753151, - -0.006688919384032488, - -0.018717210739850998, - -0.00892073754221201, - 0.00013989710714668036, - -0.004313323646783829, - 0.015567177906632423, - 0.003434320678934455, - -0.03241528198122978, - 0.00993371568620205, - -0.015292692929506302, - -0.0023510882165282965, - -0.012064236216247082, - -0.016364488750696182, - -0.014913643710315228, - 0.026167497038841248, - -0.01819438301026821, - 0.00210601300932467, - -0.013116425834596157, - 6.719145312672481e-05, - -0.005025675520300865, - 0.013645787723362446, - 0.005182523746043444, - -0.009776866994798183, - 0.021540477871894836, - 0.004078051541000605, - -0.0018936145352199674, - 0.017174871638417244, - 0.023435724899172783, - -0.006522268522530794, - 0.01133227813988924, - -0.011639438569545746, - -0.011044722981750965, - -0.014743724837899208, - 0.021265992894768715, - 0.00038170465268194675, - -0.017645414918661118, - 0.0044178892858326435, - 0.025958366692066193, - 0.008796566165983677, - 0.0021582958288490772, - -0.01869107037782669, - 0.015462611801922321, - 0.004087854642421007, - -0.00018166200607083738, - -0.0012596865417435765, - 0.019762864336371422, - 0.01303146593272686, - 0.003509477013722062, - 0.005022407975047827, - -0.01754084974527359, - -0.0238801296800375, - 0.043577641248703, - 0.010613390244543552, - -0.0044178892858326435, - 0.02663804218173027, - -0.010280088521540165, - -0.00010088929411722347, - -0.021736538037657738, - -0.0036042395513504744, - 0.021605830639600754, - 0.010338906198740005, - 0.02189338579773903, - -0.00023404683452099562, - -0.02369713969528675, - -0.013854919001460075, - 0.02181496098637581, - 0.025775376707315445, - -0.0149005725979805, - -0.009914109483361244, - -0.004346000496298075, - 0.014861361123621464, - -0.013671929016709328, - 0.009881432168185711, - 0.016377558931708336, - -0.023226594552397728, - -0.031055931001901627, - 0.013933342881500721, - -0.023827845230698586, - 0.03129120171070099, - -0.009345535188913345, - 0.005179256200790405, - -0.027370000258088112, - -0.009280181489884853, - -0.009959856979548931, - -0.020037349313497543, - 0.0019377280259504914, - -0.017436284571886063, - 0.006770611274987459, - 0.017174871638417244, - 0.025997579097747803, - -0.007182337809354067, - -0.0015799182001501322, - -0.004100925289094448, - -0.002107646781951189, - -0.009718049317598343, - -0.006835964508354664, - -0.01459994725883007, - -0.028258806094527245, - 0.019017836079001427, - 0.01646905392408371, - -0.00999253336340189, - -0.007038560230284929, - 0.01799832284450531, - 0.009312857873737812, - 0.049851566553115845, - -0.02093922533094883, - -0.004901504144072533, - -0.003421250032261014, - -0.024402955546975136, - 0.01112314686179161, - -0.011227712035179138, - 0.022194011136889458, - 0.026455052196979523, - -0.012299507856369019, - -0.007894689217209816, - 0.004649893846362829, - -0.0229259692132473, - -0.012430215254426003, - -0.010842127725481987, - 0.01731864921748638, - -0.03939502313733101, - 0.03283354267477989, - 0.008672394789755344, - 0.0077901240438222885, - -0.010005604475736618, - -0.018939413130283356, - -0.027160869911313057, - -0.019671371206641197, - 0.006835964508354664, - -0.0008593970560468733, - 0.008450193330645561, - -0.008502475917339325, - -0.009110262617468834, - -0.002493231790140271, - -0.010182058438658714, - 0.017645414918661118, - -0.011508732102811337, - -0.0018168241949751973, - -0.020390257239341736, - -0.020416399464011192, - -0.021488195285201073, - -0.005604053381830454, - -0.016377558931708336, - -0.002638643141835928, - 0.02239007130265236, - 0.006855570711195469, - 0.03144805133342743, - -0.014861361123621464, - -0.0030618063174188137, - -0.0014467607252299786, - 0.006502662319689989, - 0.016913456842303276, - 0.0013397445436567068, - 0.040911223739385605, - 0.01427318062633276, - -0.03863692283630371, - -0.01440388709306717, - -0.05416489019989967, - 0.02258613146841526, - -0.015763238072395325, - 0.026533477008342743, - 0.025161055848002434, - -0.03970871865749359, - 0.011051258072257042, - 8.15640942164464e-06, - 0.019553733989596367, - -0.004604146350175142, - -0.0033820378594100475, - 0.038767632097005844, - 0.028494078665971756, - -0.006117077544331551, - -0.016495196148753166, - 0.002958874683827162, - -0.00745028629899025, - -0.007737841457128525, - 0.013103354722261429, - -0.006979742087423801, - -0.004113995935767889, - -0.015318834222853184, - -0.010175522416830063, - 0.03468957915902138, - 0.0149005725979805, - 0.01517505757510662, - 0.016991881653666496, - -0.02224629372358322, - -0.010704885236918926, - -0.03753898665308952, - -0.022272435948252678, - 0.016194570809602737, - -0.007437215652316809, - 0.05089722201228142, - -0.012717769481241703, - -0.011103540658950806, - -0.00892727356404066, - 0.0003522956103552133, - 0.00419568782672286, - -0.012332185171544552, - -0.012489032931625843, - 0.017972182482481003, - -0.010195128619670868, - -0.009221363812685013, - 0.012292972765862942, - -0.01654747873544693, - 0.01167211588472128, - 0.008038466796278954, - 0.0005089394981041551, - -0.019383816048502922, - 0.00559751782566309, - -0.0053687808103859425, - 0.0009272012393921614, - 0.014312392100691795, - -0.021841103211045265, - -2.0907978978357278e-05, - -0.019710581749677658, - -0.020128844305872917, - -0.004806742072105408, - -0.014992067590355873, - 0.01551489531993866, - -0.012946506962180138, - -0.01427318062633276, - -0.0033117830753326416, - -0.005885072983801365, - 0.021226780489087105, - -0.012613204307854176, - -0.03202316164970398, - -0.004303520545363426, - 0.008149567991495132, - -0.04370834678411484, - 0.018860988318920135, - 0.03633648529648781, - -0.0015243678353726864, - -0.02032490447163582, - 0.007123519666492939, - -0.0025455146096646786, - -0.02296518161892891, - 0.024442167952656746, - -0.014364675618708134, - -0.008894596248865128, - -0.01410326175391674, - 0.005803381092846394, - 0.016573619097471237, - -0.018298950046300888, - -0.014338533394038677, - 0.00869200099259615, - 0.0026026987470686436, - 0.006094203796237707, - -0.019919713959097862, - -0.005133508704602718, - -0.002769349841400981, - 0.02487350068986416, - -0.009267110377550125, - 0.018717210739850998, - -0.011763609945774078, - 0.013541222549974918, - 0.008711607195436954, - -0.011286530643701553, - -0.0005840959493070841, - -0.016377558931708336, - -0.010822521522641182, - 0.01785454712808132, - 0.011070864275097847, - -0.027082445099949837, - -0.016560548916459084, - -0.026847172528505325, - -0.01320138480514288, - -0.006790217477828264, - 0.029905712231993675, - 0.019841289147734642, - 0.031003648415207863, - 0.014129403047263622, - 0.010724491439759731, - -0.016416771337389946, - 0.018429655581712723, - 0.017410142347216606, - -0.005270750727504492, - 0.023030534386634827, - -0.0024850626941770315, - -0.03241528198122978, - 0.009704978205263615, - -0.015527965500950813, - 0.02987957000732422, - 0.020298762246966362, - -0.003228457411751151, - -0.0001550100714666769, - 0.009639625437557697, - -0.041094209998846054, - -0.011554479598999023, - -0.000832438818179071, - 0.0013136031338945031, - -0.0012997156009078026, - 0.0123256491497159, - -0.009338999167084694, - 0.038689207285642624, - 0.005087761208415031, - 0.03688545525074005, - -0.01956680417060852, - -0.03102979063987732, - -0.006394829135388136, - -0.007914295420050621, - 0.016103075817227364, - -0.003643451491370797, - -0.030663810670375824, - 0.00424143485724926, - 0.047760259360075, - 0.0025732896756380796, - 0.021958738565444946, - 0.03202316164970398, - -0.0075483163818717, - -0.027030162513256073, - 0.022651484236121178, - 0.0053883870132267475, - 0.03317338228225708, - -0.0240761898458004, - -0.010110169649124146, - -0.013273273594677448, - 0.005071423016488552, - 0.005306695122271776, - 0.01266548689454794, - -0.03474186360836029, - -0.024311460554599762, - 0.027108585461974144, - -0.005904678720980883, - -0.004035572055727243, - 0.00042602242319844663, - -0.009887968190014362, - 0.0150966327637434, - -0.023474937304854393, - 0.017906829714775085, - -0.00043337466195225716, - -0.04370834678411484, - 0.01146298460662365, - 0.016286063939332962, - -0.009469706565141678, - -0.022442353889346123, - -0.0032660355791449547, - -0.033460937440395355, - 0.009391281753778458, - -0.0004987280699424446, - -0.013038001023232937, - 0.018011394888162613, - -0.010293158702552319, - 0.008992626331746578, - -0.003218654543161392, - -0.0021926062181591988, - -0.033460937440395355, - -0.025631599128246307, - -0.03492485359311104, - 0.042166005820035934, - 0.03568295016884804, - -0.012273366563022137, - 0.015946228057146072, - -0.011260389350354671, - -0.015645600855350494, - -0.010208199732005596, - -0.02637662924826145, - 0.007933901622891426, - -0.04208758473396301, - -0.012966112233698368, - -0.00842405203729868, - -0.018220525234937668, - -0.005378583911806345, - -0.002738306997343898, - -0.015410329215228558, - -0.023148171603679657, - -0.014874431304633617, - 0.1910410374403, - -0.023788634687662125, - -0.006764075718820095, - 0.008404445834457874, - -0.03335636854171753, - -0.016181498765945435, - 0.01620764099061489, - 0.004117263481020927, - 0.0007201126427389681, - 0.028075816109776497, - 0.006816358771175146, - -0.00392773887142539, - 0.0025030348915606737, - 0.00892073754221201, - 0.025592386722564697, - -0.02048175223171711, - -0.0347680039703846, - -0.004450565669685602, - 0.002318411599844694, - 0.029984135180711746, - 0.004924377892166376, - -0.010763703845441341, - -0.0032366267405450344, - -0.01620764099061489, - 0.05021754652261734, - 0.027735978364944458, - -0.0007960859802551568, - 0.016076933592557907, - 0.03675474599003792, - 0.03204930201172829, - -0.03152647614479065, - -0.010822521522641182, - 0.013645787723362446, - -0.01517505757510662, - -0.007162731606513262, - 0.001497409539297223, - 0.003993092104792595, - -0.02644198201596737, - 0.017187941819429398, - 0.03317338228225708, - 0.005205397494137287, - -0.019658299162983894, - -0.02113528549671173, - -0.016678184270858765, - -0.0021926062181591988, - 0.009600413031876087, - 0.01043040119111538, - -0.0008863553521223366, - 0.008051537908613682, - 0.0050942967645823956, - -0.010789845138788223, - 0.010822521522641182, - 0.020128844305872917, - 0.035369254648685455, - -0.0072280848398804665, - -0.027108585461974144, - -0.002434413880109787, - -0.001517832512035966, - 0.00815610308200121, - 0.002362525090575218, - -0.03053310327231884, - 0.009959856979548931, - -0.01700495183467865, - 0.018089817836880684, - -0.040597524493932724, - 0.0296181570738554, - -0.021030720323324203, - 0.005339371971786022, - -0.01597236841917038, - -0.019671371206641197, - 0.00785547774285078, - -0.015920085832476616, - -0.026651112362742424, - 0.008469799533486366, - -0.027945110574364662, - -0.03118663839995861, - 0.019841289147734642, - 0.0020569979678839445, - 0.020547104999423027, - 0.02582765929400921, - -0.006450379732996225, - -0.003037298796698451, - -0.019240038469433784, - -0.00804500188678503, - 0.007143125403672457, - -0.026951737701892853, - 0.012181871570646763, - -0.002210578415542841, - 0.0010080760112032294, - -0.01692652888596058, - -0.011593691073358059, - -0.006816358771175146, - -0.0006425055325962603, - -0.010149381123483181, - 0.014116331934928894, - -0.004339464940130711, - -0.004218561574816704, - 0.003404911607503891, - -0.012691628187894821, - 0.001944263349287212, - -0.014534593559801579, - 0.053746629506349564, - 0.029173754155635834, - -0.006927459500730038, - -0.018089817836880684, - -0.001460648258216679, - -0.006460182834416628, - 0.014024837873876095, - -0.0006457731942646205, - 0.007770518306642771, - -0.019462238997220993, - -0.025893013924360275, - 0.013005324639379978, - -0.023945482447743416, - 0.025579316541552544, - 0.014207826927304268, - 0.025500893592834473, - 0.002725236350670457, - -0.019958924502134323, - -0.0024556536227464676, - -0.0035911689046770334, - 0.012475961819291115, - 0.03403604403138161, - 0.00884884875267744, - 0.015828590840101242, - -0.03403604403138161, - -0.04044067859649658, - 0.026494264602661133, - -0.0015799182001501322, - -0.010907480493187904, - 0.02763141319155693, - -0.02086080238223076, - 0.009626554325222969, - 0.0036009717732667923, - 0.012083841487765312, - -0.010044815950095654, - -0.0072803678922355175, - -0.024010835215449333, - -0.00436560669913888, - 0.006273925304412842, - 0.02594529651105404, - 0.0013773227110505104, - 0.01286154706031084, - 0.013854919001460075, - 0.008456728421151638, - 0.00812342669814825, - 0.03468957915902138, - -0.009443565271794796, - -0.03510783985257149, - -0.009012232534587383, - -0.023553362116217613, - -0.007175802253186703, - -0.017566991969943047, - -0.017893757671117783, - 0.00713659031316638, - 0.013881060294806957, - -0.005620391573756933, - -0.033225663006305695, - 0.0031451319810003042, - 0.00589487561956048, - -0.03204930201172829, - -0.0128942234441638, - -0.015985438600182533, - -0.021566618233919144, - 0.0016436377773061395, - -0.008201850578188896, - -0.164272278547287, - 0.009959856979548931, - 0.017566991969943047, - -0.016403701156377792, - 0.020377187058329582, - -0.004444030579179525, - 0.019057048484683037, - 0.014508452266454697, - -0.02121371030807495, - -0.02185417339205742, - 0.014887502416968346, - 0.005378583911806345, - 0.00658435421064496, - -0.016455983743071556, - -0.01581552065908909, - -0.00022832841204944998, - -0.018207455053925514, - 0.029931852594017982, - 0.03649333491921425, - 0.02880777418613434, - -0.0059438906610012054, - -0.037669695913791656, - 0.01734478957951069, - -0.0026843904051929712, - -0.01476986613124609, - 0.018978623673319817, - -0.023148171603679657, - 0.028860056772828102, - -0.015946228057146072, - -0.001076697139069438, - -0.022194011136889458, - -0.005698815453797579, - 0.012116518802940845, - 0.005626927129924297, - -0.0009696809574961662, - -0.014312392100691795, - 0.004943984095007181, - -0.0026272062677890062, - -0.003685931209474802, - 0.041329484432935715, - 0.009874897077679634, - 0.03144805133342743, - -0.009260575287044048, - 0.010214734822511673, - -0.0032088514417409897, - 0.031003648415207863, - 0.01373728271573782, - -0.023644857108592987, - -0.0038525823038071394, - 0.0018184580840170383, - -0.018625715747475624, - -0.01712258905172348, - 8.230442472267896e-05, - 0.009985998272895813, - -0.013854919001460075, - 0.020416399464011192, - -0.008201850578188896, - 0.026951737701892853, - 0.008711607195436954, - -0.0010636263759806752, - 0.0019083189545199275, - -0.019253108650445938, - 0.021605830639600754, - 0.0019655032083392143, - -0.009208292700350285, - -0.02461208589375019, - -0.00892727356404066, - 0.017684627324342728, - -0.01043040119111538, - -0.0023380175698548555, - -0.007326114922761917, - -0.03333022817969322, - 0.00731957983225584, - -0.015645600855350494, - 0.010953227989375591, - 0.020625529810786247, - -0.003702269634231925, - -0.003702269634231925, - -0.015619460493326187, - -0.0072803678922355175, - -0.010940157808363438, - 0.02977500483393669, - -0.0016420038882642984, - -0.008286809548735619, - -0.03163104131817818, - -0.006035385653376579, - -0.002976846881210804, - 0.022690696641802788, - -0.014351604506373405, - 0.013658858835697174, - 0.027187010273337364, - -0.018704140558838844, - -0.007907760329544544, - -0.03448044881224632, - 0.009561200626194477, - -0.005091029219329357, - -0.00775744765996933, - -0.0027023626025766134, - -0.019658299162983894, - 0.0016272994689643383, - 0.0033689672127366066, - -0.01335823256522417, - -0.015998510643839836, - 0.01937074400484562, - -0.0026582491118460894, - 0.007313044276088476, - -0.014050979167222977, - 0.0008634816622361541, - 0.026128284633159637, - -0.018325090408325195, - -0.01209691260010004, - -0.012462891638278961, - 0.014077120460569859, - -0.006107274442911148, - -0.010306229814887047, - 0.003911400213837624, - -0.002447484526783228, - -0.008613577112555504, - 0.006901318207383156, - 0.0012801095144823194, - 0.05217814818024635, - -0.018847918137907982, - -0.0150966327637434, - 0.005375316366553307, - -0.016821961849927902, - -0.027683695778250694, - -0.09938943386077881, - 0.005032211076468229, - 0.04015312343835831, - 0.005966764409095049, - 0.021305205300450325, - 0.010835591703653336, - 0.006264122668653727, - -0.006757540628314018, - 0.005692280363291502, - 0.0424274206161499, - -0.016338348388671875, - -0.024023905396461487, - -0.029827287420630455, - -0.009855290874838829, - 0.013234061188995838, - -0.011606762185692787, - 0.0005608137580566108, - -0.018547292798757553, - -0.02167118340730667, - 0.022416213527321815, - -0.006420970428735018, - -0.00858089979737997, - -0.01571095548570156, - 0.0026321078184992075, - -0.009044908918440342, - -0.012685093097388744, - -0.02040332928299904, - 0.00483288336545229, - 0.014704512432217598, - -0.00758752878755331, - 0.020991509780287743, - -0.008966485038399696, - -0.001464732806198299, - -0.010678743943572044, - -0.021540477871894836, - -0.011966206133365631, - -0.012645880691707134, - -0.0059831030666828156, - 0.028180381283164024, - -0.0061301481910049915, - -0.007933901622891426, - 0.02113528549671173, - 0.009535059332847595, - -0.02151433564722538, - -0.013998696580529213, - -0.03576137498021126, - -0.014652229845523834, - 0.020913084968924522, - -0.0017645414918661118, - 0.0036303808446973562, - -0.0271347276866436, - -0.02266455627977848, - -0.027814403176307678, - 0.020991509780287743, - 0.04211372509598732, - 0.007698629517108202, - -0.002638643141835928, - -0.0038427794352173805, - -0.006960135884582996, - 0.00037802851875312626, - -0.022599201649427414, - 0.029173754155635834, - -0.03356550261378288, - 0.02109607495367527, - 0.0016068764962255955, - -0.00745028629899025, - -0.02270376868546009, - 0.0012212914880365133, - 0.024716652929782867, - 0.011266924440860748, - -0.02499113604426384, - 0.0021877046674489975, - -0.011835498735308647, - 0.013214455917477608, - -0.01887405849993229, - 0.010959764011204243, - -0.04326394572854042, - -0.02174960821866989, - -0.0017122587887570262, - -0.010783309116959572, - 0.003712072502821684, - -0.02770983800292015, - 0.011848569847643375, - -0.017018022015690804, - 0.03053310327231884, - 0.03283354267477989, - 0.00597983505576849, - -0.02282140403985977, - 0.01410326175391674, - -0.014050979167222977, - -0.01700495183467865, - 0.019553733989596367, - 0.01627299375832081, - -0.00771823525428772, - -0.021579690277576447, - 0.02018112689256668, - 0.003672860562801361, - -0.006744469981640577, - -0.00022220153186935931, - 0.00798618420958519, - -0.015044350177049637, - -0.0016640607500448823, - -0.03343479335308075, - 0.0313434861600399, - 0.025461681187152863, - 0.009149475023150444, - -0.017566991969943047, - -0.015907015651464462, - 0.008705071173608303, - 0.01700495183467865, - 0.024023905396461487, - -0.00015327412984333932, - -0.011626368388533592, - 0.0018674731254577637, - -0.028284946456551552, - -0.01373728271573782, - -0.03427131846547127, - -0.030428538098931313, - 0.008646253496408463, - 0.014874431304633617, - 0.008711607195436954, - -0.004653161391615868, - -0.0024834289215505123, - 0.00882924348115921, - -0.01263281051069498, - 0.029330601915717125, - -0.028258806094527245, - -0.002548782154917717, - -0.005626927129924297, - -0.008397910743951797, - -0.012469426728785038, - -0.009842220693826675, - 0.003862385405227542, - -0.007613670080900192, - -0.016455983743071556, - 0.00613341573625803, - -0.010025209747254848, - -0.016338348388671875, - 0.024141542613506317, - 0.036597900092601776, - 0.026494264602661133, - 0.03419289365410805, - -0.020573247224092484, - -0.020351044833660126, - -0.005058352369815111, - -0.031238920986652374, - 0.0017890490125864744, - 0.009744190610945225, - 0.009469706565141678, - -0.005319765768945217, - 0.007940436713397503, - -0.003522547660395503, - 0.03369620814919472, - 0.013364768587052822, - 0.010914016515016556, - 0.002504668664187193, - -0.011338813230395317, - -0.002244889037683606, - 0.005643265321850777, - 0.004702176433056593, - 0.02530483342707157, - -0.029801145195961, - 0.04498927295207977, - 0.006803288124501705, - 0.0020275888964533806, - -0.02564467117190361, - 0.008437123149633408, - 0.001975306309759617, - -0.021579690277576447, - -0.01195967011153698, - -0.0036957343108952045, - -0.01012977585196495, - -0.02640276961028576, - -0.0007094927714206278, - 0.01811596006155014, - 0.01119503565132618, - -0.022573061287403107, - -0.011188500560820103, - -0.000670689158141613, - -0.00027958996361121535, - -0.004613949451595545, - 0.010057887062430382, - 0.020011208951473236, - 0.0053687808103859425, - 0.0009541594772599638, - -0.010325836017727852, - 0.032310716807842255, - 0.005571376532316208, - -0.00266478443518281, - -0.006894782651215792, - 0.0027219688054174185, - -0.004966857843101025, - -0.0077901240438222885, - 0.02522640861570835, - -0.005653068423271179, - 0.016991881653666496, - 0.01373728271573782, - 0.030297832563519478, - 0.015449541620910168, - -0.012743910774588585, - 0.02395855262875557, - 0.026585759595036507, - 0.012051165103912354, - -0.006313137710094452, - -0.009757260791957378, - -0.028258806094527245, - 0.0012106715003028512, - 0.01769769750535488, - -0.012417144142091274, - -0.03262441232800484, - 0.007143125403672457, - 0.015554106794297695, - -0.0162468533962965, - 0.010293158702552319, - -0.0011837133206427097, - 0.011312671937048435, - -0.007188872899860144, - 0.016037721186876297, - -0.02770983800292015, - -0.015501824207603931, - -0.027840543538331985, - 0.02675567753612995, - 0.01873028092086315, - -0.0019949122797697783, - -0.00848286971449852, - 0.013619646430015564, - 0.039107467979192734, - -0.025357116013765335, - 0.0115610146895051, - -0.00986182689666748, - 0.013279808685183525, - -0.013149102218449116, - 0.003084680065512657, - -0.008247598074376583, - -0.03037625551223755, - -0.007933901622891426, - -0.013763424009084702, - -0.003699001856148243, - 0.022494636476039886, - 0.009149475023150444, - 0.015423400327563286, - 0.12014567106962204, - 0.0095546655356884, - -0.007515639998018742, - 0.019697511568665504, - 0.0020586317405104637, - 0.01823359541594982, - 0.00819531548768282, - 0.007665952667593956, - 0.010253947228193283, - -0.0711044892668724, - 0.019135473296046257, - 0.0033526290208101273, - 0.017096446827054024, - -0.025017278268933296, - 0.0031778085976839066, - 0.0149005725979805, - -0.009280181489884853, - 0.01543647050857544, - -0.026821032166481018, - -0.0025291761849075556, - 0.0351601243019104, - -0.019932784140110016, - 0.0027922235894948244, - 0.03254598751664162, - -0.015384187921881676, - -0.024782005697488785, - 0.01680889166891575, - 0.01944916881620884, - 0.012391002848744392, - -0.00938474666327238, - -0.013854919001460075, - 0.020494822412729263, - -0.055890221148729324, - -0.02479507587850094, - 0.0030748769640922546, - -0.037512846291065216, - 0.008607041090726852, - -0.005800113547593355, - 0.00986182689666748, - -0.009175616316497326, - 0.024585945531725883, - 0.04227057099342346, - -0.008933808654546738, - -0.019240038469433784, - 0.02167118340730667, - 0.007482963148504496, - -0.010325836017727852, - -0.0014908742159605026, - -0.01410326175391674 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 35, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 579 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000036.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000036.json deleted file mode 100644 index c51aeb9d29000f99d93049a00f8b75824e9f2a46..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000036.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000036", - "content": "Diese Sto\u00dfd\u00e4mpfer dienen dazu, die Schwingungen zu d\u00e4mpfen und somit die Ger\u00e4u- schentwicklung zu verringern. Es ist jedoch wichtig, dass die Sto\u00dfd\u00e4mpfer speziell auf die Anforderungen des Anh\u00e4ngers abgestimmt werden, um eine optimale D\u00e4mpfung zu gew\u00e4hrleisten und sonstige wichtige Eigenschaften des Anh\u00e4ngers nicht beeinflussen. Um die L\u00e4rmbelastung weiter zu reduzieren, k\u00f6nnten Ma\u00dfnahmen sowohl auf dem Ge- l\u00e4nde als auch durch das richtige Verhalten des Personals erfolgen. Auf dem Gel\u00e4nde\nk\u00f6nnten L\u00e4rmschutzw\u00e4nde dimensioniert werden, um den Schall zu absorbieren und\nseine Ausbreitung zu verhindern. Diese Ma\u00dfnahme ist in der Praxis weit verbreitet und\ntr\u00e4gt zur Reduzierung der L\u00e4rmemissionen bei. Dar\u00fcber hinaus k\u00f6nnte das Personal\n71\n7 Ergebnisse und Interpretation\ndurch Schulungen und Unterweisungen zu einem richtigen Verhalten w\u00e4hrend des Be- ladevorgangs aufgekl\u00e4rt werden, um die L\u00e4rmbelastung zu verringern. Durch Sensibili- sierung f\u00fcr die Auswirkungen von schnellem und unvorsichtigem Beladen k\u00f6nnte das Personal lernen, Ma\u00dfnahmen zu ergreifen, um L\u00e4rm zu reduzieren. Eine m\u00f6gliche Ma\u00df- nahme k\u00f6nnte die Verwendung einer L\u00e4rmampel sein, die in der Verladezone ange- bracht ist und dem Personal signalisiert, wenn eine hohe L\u00e4rmbelastung besteht. Dadurch werden sie dazu ermutigt, ihre Vorgehensweise anzupassen und den L\u00e4rmpe- gel zu senken. Insgesamt stehen verschiedene M\u00f6glichkeiten zur Verf\u00fcgung, um die L\u00e4rmbelastung zu senken. Die genaue H\u00f6he der erzielbaren Minderung ist jedoch nicht absch\u00e4tzbar und m\u00fcsste spezifisch im Einzelfall analysiert werden. Es ist anzunehmen, dass durch geeig- nete Ma\u00dfnahmen eine Schallminderung im Bereich von 3 bis 5 dB erzielt werden k\u00f6nnte. Durch gezielte Ma\u00dfnahmen, angepasst an die individuellen Gegebenheiten, kann der L\u00e4rmpegel effektiv minimiert werden. Zusammenarbeit, Planung und die Umsetzung ge- eigneter Schutzma\u00dfnahmen erm\u00f6glichen eine Reduzierung der L\u00e4rmbelastung und f\u00f6r- dern somit das Wohlbefinden und die Gesundheit aller Beteiligten. ## 7.6 Fehlerdiskussion\n\nIm folgendem wird eine detaillierte Diskussion \u00fcber die Fehlerquellen und Unsicherhei- ten im Rahmen der durchgef\u00fchrten Messungen und Analysen aufgezeigt. Fehler k\u00f6nnen in unterschiedlichen Bereichen auftreten und die Genauigkeit der Ergebnisse beeinflus- sen. Das Ziel dieses ist es, die Schranken und Unsicherheiten der vorliegenden Thesis transparent aufzuzeigen und die Relevanz der Ergebnisse in Hinblick auf m\u00f6gliche Feh- lerquellen zu bewerten. Wie aus der Validierungsrechnung 7.4 hervorgeht k\u00f6nnen Abweichungen bei Verglei- chen zwischen simulierten und gemessenen Pegelwerten auftreten. In den meisten F\u00e4l- len sind die simulierten Werte h\u00f6her als die gemessenen Werte, wobei die Differenzen unterschiedlich ausfallen. Eine durchschnittliche Abweichung von 4,6 dB(A) ist festzu- stellen. Diese Ergebnisse deuten darauf hin, dass die Simulation m\u00f6glicherweise nicht genau genug die realen Bedingungen widerspiegelt und daher eine gewisse Ungenauig- keit aufweist. Es ist wichtig anzumerken, dass auch bei der Messung selbst Fehler und Messungenauigkeiten auftreten k\u00f6nnen, die die gemessenen Kenngr\u00f6\u00dfen ver\u00e4ndern\n72\n7 Ergebnisse und Interpretation\n\n## k\u00f6nnen. Dabei k\u00f6nnen systematische Fehler und zuf\u00e4llige Fehler auftreten. Systemati-\n\nsche Fehler entstehen beispielsweise aufgrund von Messunsicherheiten der verwende- ten Ger\u00e4te oder einer fehlerhaften Kalibrierung. Diese Art von Fehlern beeinflusst die Genauigkeit der gemessenen Werte. [87, 88] Bei der Durchf\u00fchrung der Messungen ka- men Schallpegelmesser der Firma Norsonic-Tippkemper GmbH, Typ 140 (geeicht), zum Einsatz.", - "embedding": [ - 0.003337098052725196, - 0.02973753772675991, - 0.0025688568130135536, - -0.03308752179145813, - -0.0024287374690175056, - 0.025524290278553963, - -0.012498011812567711, - -0.01866971142590046, - -0.004161708988249302, - -0.009444373659789562, - 0.010893885977566242, - 0.019288169220089912, - -0.01508780661970377, - 0.008297649212181568, - -0.006661311723291874, - 0.01410858053714037, - 0.03414405509829521, - 0.007344192359596491, - 0.013058490119874477, - -0.008516686037182808, - 0.00036298189661465585, - -0.0041939206421375275, - 0.0030488062184304, - 0.0022741227876394987, - -0.024145644158124924, - 0.010217446833848953, - 0.03651481121778488, - -0.01316800806671381, - -0.026464862748980522, - 0.011428594589233398, - 0.010539560578763485, - -0.012298301793634892, - -0.01485588401556015, - -0.0065904464572668076, - -0.018515096977353096, - -0.027521396055817604, - -0.005459827370941639, - -0.02061527781188488, - 0.026954475790262222, - -0.011164461262524128, - 0.014160118997097015, - 0.00728621194139123, - 0.009096491150557995, - -0.03483982011675835, - 0.0072411163710057735, - 0.030459072440862656, - 0.030046766623854637, - 0.010159466415643692, - -0.009057837538421154, - 0.014404925517737865, - 0.02198104001581669, - 0.001550172222778201, - -0.002609121147543192, - 0.016556644812226295, - 0.0014503169804811478, - -0.006075064651668072, - -0.008072169497609138, - 0.009972640313208103, - -0.0028152738232165575, - -0.024635257199406624, - -0.047698598355054855, - 0.014160118997097015, - -0.02008701115846634, - 0.008832357823848724, - -0.02450641058385372, - -0.003604452358558774, - 0.004577235784381628, - -0.0026445535477250814, - 0.00790467020124197, - 0.005031416192650795, - 0.028371775522828102, - 0.02968600019812584, - 0.0007609936292283237, - 0.0031857045833021402, - 0.02352718450129032, - -0.02101469784975052, - 0.00682236859574914, - -0.007234673947095871, - -0.004126276820898056, - -0.001982609974220395, - 0.028011009097099304, - -0.012903875671327114, - -0.03290713578462601, - 0.053445108234882355, - 0.008581109344959259, - 0.004905791953206062, - -0.006000978406518698, - -0.0018263846868649125, - -0.02299891971051693, - 0.0037300768308341503, - 0.004261564463376999, - 0.053393568843603134, - -0.0013246926246210933, - -0.008581109344959259, - 0.027547163888812065, - 0.0003354008949827403, - -0.004593341611325741, - 0.015564534813165665, - -0.016530875116586685, - -0.02629736252129078, - -0.008568224497139454, - -0.003132555866613984, - 0.0014728648820891976, - 0.005327760707587004, - -0.026542169973254204, - -0.008986972272396088, - -0.0012908707140013576, - 0.0036173369735479355, - -0.003591567976400256, - -0.022225845605134964, - -0.022122768685221672, - 0.01296829804778099, - -0.010861674323678017, - -0.002844264032319188, - 0.029995229095220566, - 0.0014785019448027015, - 0.031489837914705276, - 0.00188275461550802, - -0.0004827679367735982, - -0.00933485571295023, - 0.019043361768126488, - 0.02062816172838211, - 0.022638151422142982, - -0.013258200138807297, - 0.03110329993069172, - -0.007588998880237341, - -0.01580934040248394, - 0.009437931701540947, - -0.01779356226325035, - -0.004029642324894667, - -0.049579743295907974, - 0.009985525161027908, - 0.023643147200345993, - 0.007170251104980707, - -0.006886790972203016, - 0.008548897691071033, - -0.007653421722352505, - 0.005971988197416067, - -0.025653135031461716, - -0.030948685482144356, - 0.017033372074365616, - 0.015190882608294487, - -0.04651321843266487, - -0.04105016961693764, - -0.003081017639487982, - 0.04352400451898575, - 0.012620415538549423, - 0.015667611733078957, - -0.009708506986498833, - -0.003037532325834036, - -0.020434893667697906, - -0.04014825448393822, - 0.0065678986720740795, - -0.008742165751755238, - -0.01622164621949196, - 0.011544555425643921, - 0.0035303663462400436, - 0.008014189079403877, - -0.01726529560983181, - -0.002593015320599079, - 0.016453567892313004, - -0.004203584045171738, - 0.014082811772823334, - 0.011132249608635902, - 0.03192790970206261, - 0.0018891969230026007, - -0.0029280136805027723, - -0.01816721260547638, - -0.006609773263335228, - -0.004838148131966591, - -0.0047930520959198475, - 0.01861817203462124, - 0.006058958824723959, - 0.021877963095903397, - -0.019030477851629257, - 0.005740066524595022, - 0.018824325874447823, - 0.007382846437394619, - -0.026671014726161957, - -0.029608692973852158, - -0.012601088732481003, - -0.005482375156134367, - 0.016414914280176163, - 0.014778576791286469, - -0.018308943137526512, - 0.006220015697181225, - 0.0023176081012934446, - 0.02210988476872444, - -0.0022580171935260296, - -0.005601557437330484, - 0.0025946260429918766, - 0.00934773962944746, - 0.0008068948518484831, - -0.033345211297273636, - -0.6411351561546326, - -0.0015244031092152, - 0.009231778793036938, - 0.006174919661134481, - -0.012787913903594017, - 0.04398784786462784, - 0.008400725200772285, - 0.007640537340193987, - -0.0009341297554783523, - 0.03612827509641647, - -0.004834926687180996, - 0.015667611733078957, - 0.0001948787976289168, - -0.004538582172244787, - -0.000978420372121036, - -0.016891643404960632, - -0.012143686413764954, - -0.00790467020124197, - 0.01816721260547638, - -0.000935740303248167, - -0.016440683975815773, - 0.013606083579361439, - -0.01682722009718418, - 0.0010396220022812486, - 0.01075215544551611, - -0.01578357256948948, - 0.005453384947031736, - 0.00058302580146119, - 0.012124359607696533, - 0.0029119078535586596, - -0.008916107937693596, - 0.009676296263933182, - -0.024802755564451218, - 0.027521396055817604, - 0.03690134733915329, - 0.021439889445900917, - -0.004403294529765844, - 0.027495626360177994, - -0.0032018101774156094, - 0.014765692874789238, - -0.004583678208291531, - -0.02019008807837963, - 0.007975535467267036, - -0.007898228242993355, - 0.010481580160558224, - -0.0070671746507287025, - 0.048729363828897476, - -0.020422009751200676, - 0.01316800806671381, - -0.01921086199581623, - 0.015422804281115532, - -0.003346761455759406, - 0.026155633851885796, - 0.010881001129746437, - 0.024789871647953987, - -0.008561782538890839, - 0.03677250072360039, - -0.022676805034279823, - -0.013786466792225838, - 0.027985239401459694, - 0.01779356226325035, - 0.019455667585134506, - 0.006629100069403648, - -0.029969459399580956, - -0.022625267505645752, - 0.011151576414704323, - -0.021852193400263786, - -0.036643654108047485, - 0.015216651372611523, - -0.02966023050248623, - -0.0068739065900444984, - 0.014366271905601025, - -0.025511406362056732, - -0.027057550847530365, - 0.026980243623256683, - 0.029866382479667664, - 0.0036237791646271944, - -0.025099100545048714, - -0.0032356323208659887, - 0.017123565077781677, - -0.013670505955815315, - 0.005885017570108175, - -0.018553750589489937, - -0.0026284479536116123, - 0.0344790518283844, - 0.0017200872534886003, - -0.003343540243804455, - 0.002411021152511239, - 0.016956064850091934, - 0.004731850232928991, - 0.030742531642317772, - 0.033731747418642044, - 0.004271227866411209, - -0.014701269567012787, - -0.01099696196615696, - 0.03733942285180092, - -0.00430021807551384, - 0.014533770270645618, - 0.009708506986498833, - -0.005359972361475229, - -0.03308752179145813, - 0.016118569299578667, - 0.010030620731413364, - -0.02919638715684414, - 0.0102689852938056, - -0.00022628488659393042, - -0.014121465384960175, - 0.015139344148337841, - 0.016530875116586685, - -0.02484140917658806, - 0.0034144052769988775, - -0.002581741428002715, - -0.008800146169960499, - -0.013296853750944138, - -0.0011636357521638274, - -0.019468553364276886, - 0.025008907541632652, - 0.01827028952538967, - 0.016659721732139587, - -0.02009989507496357, - 0.0004602199769578874, - -0.004161708988249302, - 0.03301021456718445, - -0.009006299078464508, - -0.024751218035817146, - 0.029016003012657166, - 0.026490632444620132, - 0.012865221127867699, - -7.106633711373433e-05, - -0.0316702201962471, - 0.006455158814787865, - 0.0020872969180345535, - 0.012813683599233627, - -0.009714949876070023, - 0.01312935445457697, - 0.019855089485645294, - 0.0264133233577013, - -0.004000652115792036, - 0.01488165371119976, - -0.013786466792225838, - -0.01778067648410797, - -0.012626857496798038, - -0.0015558091690763831, - -0.02591082639992237, - -0.011273980140686035, - -0.02017720229923725, - -0.010017736814916134, - -0.004090844187885523, - 0.008928991854190826, - -0.011905322782695293, - 0.010397830978035927, - -0.01875990256667137, - -0.018901633098721504, - 0.01734260283410549, - -0.006558235269039869, - 0.005446942988783121, - -0.010159466415643692, - -0.009779372252523899, - -0.008928991854190826, - -0.02726370468735695, - 0.017368370667099953, - 0.010636194609105587, - -0.05787739157676697, - -0.00515381945297122, - -0.023050457239151, - -0.01873413287103176, - 0.010049947537481785, - -0.010153024457395077, - -0.02832023799419403, - -0.046307068318128586, - -0.00048317055916413665, - 0.01361896749585867, - -0.010881001129746437, - 0.020885853096842766, - -0.007627652492374182, - 0.008632647804915905, - -0.02244488336145878, - -0.017110681161284447, - -0.003459501313045621, - -0.011673401109874249, - 0.0065678986720740795, - -0.020808545872569084, - -0.02196815423667431, - -0.008400725200772285, - 0.024300258606672287, - -0.009160913527011871, - 0.018386250361800194, - -0.0051473770290613174, - -0.005591894034296274, - 0.03790634125471115, - -0.003343540243804455, - 0.018862979486584663, - -0.014263194985687733, - 0.005353529937565327, - -0.024094104766845703, - -0.009038510732352734, - 0.007080059498548508, - -0.017922407016158104, - -0.0012216162867844105, - 0.016402030363678932, - 0.02582063525915146, - -0.0008040763204917312, - 0.030020996928215027, - -0.028861388564109802, - 0.006403620354831219, - -0.029299462214112282, - 0.0023562617134302855, - -0.010352734476327896, - 0.02006124146282673, - 0.030304457992315292, - 0.010384946130216122, - -0.016968950629234314, - -0.0248800627887249, - -0.009418604895472527, - 0.004322765860706568, - 0.04594630002975464, - -0.01150590181350708, - 0.013335507363080978, - 0.011544555425643921, - -0.01812855899333954, - -0.005533913616091013, - 0.001128203235566616, - 0.04488976672291756, - -0.005849584937095642, - -0.007460153661668301, - 0.003614115761592984, - -0.006071843206882477, - 0.00515381945297122, - 0.012742818333208561, - -0.004615889396518469, - -0.010655521415174007, - 0.0004388799425214529, - 0.003251737914979458, - 0.01586087979376316, - 0.002609121147543192, - 0.016131455078721046, - 0.009624757803976536, - -0.00575295090675354, - 0.05854738876223564, - -0.001208731671795249, - 0.020422009751200676, - 0.015641842037439346, - -0.005675643682479858, - 0.0021082342136651278, - 0.013941081240773201, - -0.004448390565812588, - 0.00636174576357007, - 0.029840614646673203, - 0.0002802389208227396, - 0.012362724170088768, - -0.009444373659789562, - -0.006513139232993126, - -0.01622164621949196, - -0.005971988197416067, - 0.015293958596885204, - -0.0172395259141922, - 0.041514016687870026, - -3.0122664611553773e-05, - 0.017922407016158104, - 0.012839452363550663, - 0.01918509230017662, - 0.014546655118465424, - 0.020847199484705925, - -0.02628447860479355, - 0.006410062778741121, - 0.02346276305615902, - -0.03594788908958435, - -0.016917411237955093, - -0.014018388465046883, - -0.015744918957352638, - -0.006129824090749025, - 0.00753101846203208, - -0.0010090211872011423, - -0.011853784322738647, - 0.026439093053340912, - -0.005962324794381857, - -0.014018388465046883, - 0.03409251570701599, - 0.022393345832824707, - 0.025704674422740936, - -0.012072822079062462, - -0.031850602477788925, - 0.0032114735804498196, - 0.026645246893167496, - -0.005604778416454792, - -0.011911764740943909, - -0.021852193400263786, - 0.019958166405558586, - -0.033267904072999954, - 0.0010541171068325639, - -0.016672605648636818, - 0.007846689783036709, - -0.014559539966285229, - -0.009450816549360752, - 0.015242421068251133, - 0.006004199385643005, - 0.02301180362701416, - 0.013064932078123093, - 0.02497025392949581, - 0.024673910811543465, - -0.00015169542166404426, - -0.01771625317633152, - -0.026013903319835663, - -0.023720454424619675, - 0.011563882231712341, - 0.004493486136198044, - 0.003092291532084346, - -0.02868100441992283, - -0.004480601754039526, - -0.007653421722352505, - -0.02917061746120453, - 0.011306190863251686, - 0.0022113106679171324, - 0.006252226885408163, - -0.008722838945686817, - -0.0012103422777727246, - 0.0070220790803432465, - -0.008832357823848724, - 0.04553399235010147, - -0.0017732359701767564, - -0.01459819357842207, - -0.029376769438385963, - -0.003668875200673938, - -0.005115165840834379, - 0.02205834724009037, - 0.018360480666160583, - 0.008426494896411896, - 0.012588203884661198, - 0.010494465008378029, - -0.026542169973254204, - -0.013219546526670456, - -0.03934941068291664, - 0.00788534339517355, - 0.010732828639447689, - -0.010185235179960728, - -0.02015143446624279, - 0.02819139137864113, - -0.016427800059318542, - 0.0013303295709192753, - -0.0003092291590292007, - 0.01914643868803978, - -0.008497359231114388, - 0.012465800158679485, - -0.0054405005648732185, - -0.006545350421220064, - 0.005050742998719215, - 0.0012385272420942783, - 0.023720454424619675, - 0.004219689406454563, - -0.014830115251243114, - 0.02107912115752697, - 0.029840614646673203, - 8.390055882045999e-05, - -0.02770177833735943, - -0.0012804019497707486, - 0.02540832944214344, - 0.012085705995559692, - 0.012504453770816326, - -0.021452773362398148, - -0.006906117778271437, - -0.007357077207416296, - -0.00044411426642909646, - 0.014533770270645618, - -0.007653421722352505, - 0.008278322406113148, - 0.022431999444961548, - 0.013503006659448147, - -0.0025060446932911873, - 0.021800655871629715, - -0.003155103884637356, - 0.007395730819553137, - 0.01868259534239769, - -0.015036268159747124, - -0.015139344148337841, - 0.020228741690516472, - -0.0240296833217144, - -0.009399278089404106, - -0.00695121381431818, - 0.010107927955687046, - -0.04360131174325943, - 0.006584004033356905, - -0.015693379566073418, - -0.002452895976603031, - -0.011364171281456947, - -0.02539544552564621, - -0.003565798746421933, - 0.008091496303677559, - 0.0013850890100002289, - -0.03017561323940754, - -0.01056532934308052, - -0.011344844475388527, - 0.00790467020124197, - -0.0011491406476125121, - 0.01198907196521759, - 0.006899675820022821, - -0.01555164996534586, - -0.027985239401459694, - -0.00030520273139700294, - 0.013477237895131111, - 0.009927544742822647, - 0.02631024830043316, - -0.0011370613938197494, - -0.012304743751883507, - 0.009586104191839695, - 0.000446530117187649, - -0.008651974610984325, - -0.014559539966285229, - -0.02296026609838009, - -0.011422151699662209, - 0.022200077772140503, - -0.014752808026969433, - 0.014533770270645618, - -0.012375609017908573, - 0.018025483936071396, - 0.004206805024296045, - 0.0239008367061615, - -0.002224195282906294, - -0.009811583906412125, - -0.004722186829894781, - 0.003304886631667614, - 0.026065440848469734, - 0.008516686037182808, - 0.029866382479667664, - -0.01909490115940571, - 0.008362071588635445, - -0.0055178077891469, - -0.009644084610044956, - -0.014662615954875946, - 0.011776477098464966, - -0.00457401480525732, - -0.014971844851970673, - -0.003085849341005087, - 0.02339833974838257, - 0.018824325874447823, - 0.0073248655535280704, - -0.002800778718665242, - -0.01220166776329279, - -0.013026278465986252, - -0.0025640251114964485, - 0.004235795233398676, - 0.005717518273741007, - 0.020396240055561066, - 0.016118569299578667, - 0.0011789362179115415, - -0.00931552890688181, - -0.02976330742239952, - 0.035200584679841995, - 0.010623309761285782, - -0.004113391973078251, - 0.025691788643598557, - -0.009392836131155491, - -0.001123371534049511, - -0.015242421068251133, - 0.0004549856239464134, - -0.012794356793165207, - 0.026490632444620132, - 0.013110027648508549, - -0.006094391457736492, - -0.022818535566329956, - -0.00537929916754365, - 0.020357586443424225, - 0.026026787236332893, - 0.008787262253463268, - -0.013979734852910042, - -0.009708506986498833, - 0.012394935823976994, - -0.003100344445556402, - -0.00045055654481984675, - 0.018373366445302963, - -0.030072536319494247, - -0.021813539788126945, - 0.02674832195043564, - -0.018115675076842308, - 0.03514904901385307, - -0.018914517015218735, - 0.006629100069403648, - -0.031051762402057648, - -0.0034401745069772005, - -0.01008215919137001, - -0.02976330742239952, - 0.002870033262297511, - -0.005256895907223225, - 0.008155918680131435, - 0.021813539788126945, - 0.025730442255735397, - -0.016002608463168144, - 0.002278954489156604, - 0.0065195816569030285, - -0.005707854870706797, - -0.015242421068251133, - -0.019983934238553047, - -0.010378504171967506, - -0.020370470359921455, - 0.030433302745223045, - 0.014804346486926079, - -0.014443579129874706, - 0.006957656238228083, - 0.0019536197651177645, - 0.00930908601731062, - 0.030974455177783966, - -0.01868259534239769, - -0.022161424160003662, - 0.0035464719403535128, - -0.013219546526670456, - 0.006377851590514183, - -0.004686754662543535, - 0.014288963750004768, - 0.021736232563853264, - -0.02927369438111782, - -0.01534549705684185, - -0.004506370984017849, - -0.014649731107056141, - -0.0172395259141922, - -0.014946076087653637, - 0.008851684629917145, - -0.028629466891288757, - 0.014662615954875946, - 0.012671953067183495, - 0.0006470459047704935, - -0.0009961366886273026, - -0.025137754157185555, - -0.0215816181153059, - -0.027469856664538383, - 0.013915312476456165, - 0.002839432330802083, - 0.011351287364959717, - 0.006232900079339743, - -0.00914802961051464, - -0.0022805649787187576, - -0.007685632910579443, - 0.02540832944214344, - -0.010938981547951698, - -0.007750055752694607, - -0.020254509523510933, - -0.02927369438111782, - -0.020460663363337517, - -0.0013440194306895137, - -0.015358381904661655, - -0.0008221952593885362, - 0.01825740560889244, - 0.006068622227758169, - 0.016054147854447365, - -0.0032597908284515142, - 0.010314080864191055, - -0.011267537251114845, - 0.0025575829204171896, - 0.00931552890688181, - -0.000224472998525016, - 0.02347564697265625, - 0.009901775047183037, - -0.031953681260347366, - -0.026207171380519867, - -0.05068781226873398, - 0.03259790688753128, - -0.013812235556542873, - 0.03110329993069172, - 0.009399278089404106, - -0.021723348647356033, - -0.004999205004423857, - 0.009212451986968517, - 0.00814947672188282, - -0.0027444087900221348, - 0.002320829313248396, - 0.01578357256948948, - 0.018489327281713486, - 0.0009309086017310619, - 0.005830258131027222, - 0.0034240686800330877, - 0.003092291532084346, - -0.00910293310880661, - 0.003219526493921876, - 0.010236773639917374, - -0.017999714240431786, - -0.013722044415771961, - -0.009702065028250217, - 0.01776779256761074, - 0.013838005252182484, - 0.015409919433295727, - 0.016414914280176163, - -0.03203098848462105, - -0.014314733445644379, - -0.035690199583768845, - -0.008780819363892078, - 0.007060732692480087, - -0.017394140362739563, - 0.054424334317445755, - 0.0036720961797982454, - -0.0037365190219134092, - 0.01820586621761322, - 0.009876006282866001, - 0.0009276875061914325, - -0.010352734476327896, - -0.007659864146262407, - 0.017819330096244812, - -0.01861817203462124, - 0.009463700465857983, - 0.01875990256667137, - -0.005572567228227854, - 0.008748608641326427, - 0.00316637777723372, - -0.0025656356010586023, - -0.004354977514594793, - -0.006265111733227968, - -0.002636500634253025, - -0.008703512139618397, - 0.019520090892910957, - -0.025653135031461716, - 0.010603982955217361, - -0.025730442255735397, - -0.021182198077440262, - 0.006326313130557537, - -0.04411669448018074, - 0.024081220850348473, - -0.018064137548208237, - -0.01866971142590046, - 0.007608325686305761, - 0.004351756069809198, - 0.012369166128337383, - -0.014301848597824574, - -0.04025132954120636, - -0.0066419849172234535, - 0.02593659609556198, - -0.00453536119312048, - 0.01622164621949196, - 0.007228231523185968, - -0.001546145766042173, - -0.010642636567354202, - 0.012755703181028366, - -0.0012377218808978796, - -0.02966023050248623, - 0.02106623724102974, - -0.009057837538421154, - -0.02250930666923523, - -0.025627367198467255, - 0.012671953067183495, - 0.023720454424619675, - -0.017136448994278908, - -0.015074921771883965, - 0.018914517015218735, - 0.015448573976755142, - 0.011422151699662209, - -0.02062816172838211, - -0.025124870240688324, - 0.0008858126820996404, - 0.0018054473912343383, - -0.01030119601637125, - 0.017832215875387192, - -0.024106990545988083, - 0.001459980383515358, - 0.021195081993937492, - -0.010661963373422623, - -0.0029843836091458797, - -0.0245192963629961, - -0.03527789190411568, - -0.006306986324489117, - 0.0016266742022708058, - -0.03308752179145813, - -0.009470143355429173, - -0.028114084154367447, - -0.016170108690857887, - -0.0033177712466567755, - 0.005057185422629118, - 0.00552747119218111, - 0.030871378257870674, - 0.02162027172744274, - -0.008258995600044727, - -0.015371265821158886, - 0.022187191992998123, - -0.0018908075289800763, - -0.0029392875730991364, - 0.02870677411556244, - -0.012446473352611065, - -0.02734101191163063, - -0.0018634278094395995, - -0.024583717808127403, - 0.022779881954193115, - 0.012781471945345402, - -0.01575780287384987, - 0.01364473719149828, - 0.012639742344617844, - -0.03249483183026314, - -0.023205071687698364, - -4.1698625864228234e-05, - -0.020383356139063835, - -0.0004288138879928738, - 0.03169598802924156, - -0.017020488157868385, - 0.0316702201962471, - -0.004783388692885637, - 0.03612827509641647, - -0.02106623724102974, - -0.029479846358299255, - -0.012890990823507309, - 0.0008584330207668245, - 0.009392836131155491, - -0.0032823386136442423, - -0.037210576236248016, - 0.011190230026841164, - 0.04360131174325943, - -0.005198915489017963, - 0.03298444300889969, - 0.00047994943452067673, - -0.0013657620875164866, - -0.030794071033596992, - 0.023140648379921913, - 0.019971050322055817, - 0.03112906962633133, - -0.012336955405771732, - 0.007878901436924934, - -0.021465657278895378, - -0.01028186921030283, - 0.005556461401283741, - -0.0024851071648299694, - -0.031902141869068146, - -0.01368339080363512, - 0.01869547925889492, - -0.009644084610044956, - 0.003817047458142042, - 0.008439378812909126, - -0.021311042830348015, - 0.007820921018719673, - -0.009605430997908115, - 0.02636178582906723, - 0.008986972272396088, - -0.041977860033512115, - 0.0037461824249476194, - 0.022251615300774574, - -0.024364681914448738, - -0.02873254381120205, - 0.007189577911049128, - 6.067942649679026e-06, - 0.012897432781755924, - -6.9204113970045e-05, - -0.013567429035902023, - 0.0023965260479599237, - -0.004770503845065832, - 0.008497359231114388, - -0.011132249608635902, - -0.001737803453579545, - -0.0182187519967556, - -0.015512996353209019, - -0.029402539134025574, - 0.04687398672103882, - 0.0117056118324399, - -0.0029602251015603542, - 0.013387045823037624, - -0.008452263660728931, - -0.014417809434235096, - -0.007872459478676319, - -0.018540864810347557, - 0.010384946130216122, - -0.035123277455568314, - 0.0005753756267949939, - -0.0005459827370941639, - -0.023140648379921913, - -0.013122912496328354, - -0.02388795278966427, - -0.006120160687714815, - -0.01619587652385235, - -0.005952661391347647, - 0.1883205622434616, - -0.03803518787026405, - -0.004174593836069107, - 0.008851684629917145, - -0.031025992706418037, - -0.011209556832909584, - 0.02485429309308529, - -0.022277384996414185, - 0.001288454863242805, - 0.01717510260641575, - 0.013606083579361439, - 0.004966993350535631, - -0.004048969130963087, - 0.004635216202586889, - 0.008239668793976307, - -0.030794071033596992, - -0.0364375039935112, - -0.004992762580513954, - -0.01506203692406416, - 0.025150638073682785, - 0.016466453671455383, - -0.015667611733078957, - -0.012562435120344162, - -0.006000978406518698, - 0.052079346030950546, - 0.014044158160686493, - 0.005769056733697653, - 0.003904018085449934, - 0.046255528926849365, - 0.027521396055817604, - -0.037545572966337204, - -0.004287333693355322, - 0.02442910335958004, - -0.009457258507609367, - 0.008278322406113148, - 0.004251901060342789, - 0.003742961212992668, - -0.009586104191839695, - 0.014121465384960175, - 0.028577927500009537, - -0.006919002626091242, - -0.0234112236648798, - -0.012536665424704552, - -0.018373366445302963, - -0.0003233216411899775, - 0.024570833891630173, - -0.018824325874447823, - 4.6228349674493074e-05, - 0.004847811535000801, - -0.0038750278763473034, - -0.015989724546670914, - 0.004776946268975735, - 0.011892437934875488, - 0.028835618868470192, - -0.00405541155487299, - -0.034247130155563354, - 0.011885995976626873, - -0.013992619700729847, - -0.004425842314958572, - -0.0008391062146984041, - -0.033809054642915726, - 0.017007604241371155, - -0.015487227588891983, - 0.03723634406924248, - -0.026129864156246185, - 0.008091496303677559, - -0.018605288118124008, - 0.009605430997908115, - -0.015912417322397232, - -0.01963605172932148, - -0.013580313883721828, - -0.009141586720943451, - -0.01964893564581871, - 0.010481580160558224, - -0.015074921771883965, - -0.03968440741300583, - 0.010333407670259476, - 0.0026010682340711355, - 0.028887158259749413, - 0.023153534159064293, - -0.004016757942736149, - -0.012697722762823105, - -0.006809483747929335, - -0.00794976670295, - 0.004000652115792036, - -0.02011278085410595, - 0.019301053136587143, - 0.003346761455759406, - 0.017394140362739563, - -0.024184297770261765, - -0.02066681534051895, - -0.016981834545731544, - 0.007415057625621557, - -0.01816721260547638, - 0.020872969180345535, - -0.015036268159747124, - 0.008735723793506622, - 0.007408615201711655, - 0.008246110752224922, - 0.0022612381726503372, - -0.030201381072402, - 0.06818503141403198, - 0.01774202287197113, - -0.014430694282054901, - -0.002541477093473077, - 0.005047522019594908, - -0.015435689128935337, - 0.02723793499171734, - -0.004648101050406694, - 0.000547995965462178, - -0.01682722009718418, - -0.032855600118637085, - 0.011531670577824116, - -0.02544698305428028, - 0.008555340580642223, - 0.016131455078721046, - 0.032288677990436554, - -0.0023353244177997112, - -0.0023095551878213882, - 0.004603005014359951, - -0.001561446231789887, - 0.018785672262310982, - 0.020963160321116447, - 0.005034637171775103, - 0.00016337205306626856, - -0.031360991299152374, - -0.03633442521095276, - 0.01823163591325283, - 0.02110489085316658, - -0.014095695689320564, - 0.02880985103547573, - -0.022921612486243248, - 0.020782776176929474, - 0.012916759587824345, - -0.002705755177885294, - -0.01962316781282425, - -0.008664858527481556, - -0.02155585028231144, - 0.0053921835497021675, - 0.008014189079403877, - 0.027598703280091286, - 0.002800778718665242, - 0.010823020711541176, - 0.018283173441886902, - 0.008349187672138214, - -0.0011620252626016736, - 0.030072536319494247, - -0.002908686874434352, - -0.02687716856598854, - -0.020976044237613678, - -0.013258200138807297, - 0.0034788281191140413, - 0.022857189178466797, - -0.015474342741072178, - 0.024545064195990562, - 0.015925301238894463, - -0.01819298230111599, - -0.029866382479667664, - 0.016981834545731544, - 0.014727039262652397, - -0.03483982011675835, - -0.015938187018036842, - -0.01914643868803978, - -0.010391388088464737, - -0.002549530006945133, - -0.009180240333080292, - -0.16121147572994232, - 0.007543903309851885, - 0.0037365190219134092, - -0.02204546146094799, - 0.01779356226325035, - 0.0056724222376942635, - 0.02196815423667431, - 0.02245776727795601, - -0.016659721732139587, - 0.007260443177074194, - 0.011151576414704323, - -0.010842347517609596, - -0.01721375621855259, - -0.024596603587269783, - -0.006983425468206406, - -0.00480915792286396, - -0.013928196392953396, - 0.01671125926077366, - 0.0253696758300066, - 0.03112906962633133, - -0.0011950418120250106, - -0.03063945658504963, - 0.009779372252523899, - 0.006828810553997755, - -0.007840247824788094, - 0.036205582320690155, - -0.0018199424957856536, - 0.022857189178466797, - -0.007337750401347876, - -0.010681290179491043, - -0.019520090892910957, - -0.012858779169619083, - 0.004483822733163834, - 0.015693379566073418, - 0.0025994577445089817, - -0.004934782162308693, - 0.021749118342995644, - -0.015435689128935337, - 0.0010146581334993243, - 0.03192790970206261, - 0.0062973229214549065, - 0.04184901341795921, - -0.014585308730602264, - 0.015719149261713028, - 0.008986972272396088, - 0.014340502209961414, - 0.011460806243121624, - -0.029479846358299255, - 0.0036173369735479355, - -0.00777582498267293, - 0.003330655861645937, - -0.025524290278553963, - -0.005723960697650909, - 0.022754112258553505, - 0.0007070396095514297, - 0.010004851967096329, - -0.017407024279236794, - 0.028938695788383484, - -0.0019069131230935454, - 0.004277670290321112, - -0.003952335100620985, - -0.029376769438385963, - 0.010913212783634663, - -0.004796273075044155, - -0.003079407149925828, - -0.013838005252182484, - -0.0033242134377360344, - 0.029995229095220566, - -0.025730442255735397, - -0.008020631037652493, - 0.0014366271207109094, - -0.017458563670516014, - 0.013180892914533615, - 0.00979869905859232, - 0.010977635160088539, - 0.01721375621855259, - -0.012884548865258694, - -0.009508796967566013, - -0.011544555425643921, - -0.020782776176929474, - -0.003122892463579774, - 0.03416982293128967, - -0.00023212318774312735, - -0.013180892914533615, - -0.02209700085222721, - -0.00957321934401989, - 0.0050378586165606976, - 0.015925301238894463, - 0.0006675806362181902, - 0.008722838945686817, - 0.024570833891630173, - -0.018888747319579124, - -0.0037010866217315197, - -0.026516400277614594, - -0.0015654726885259151, - -0.0059204502031207085, - -0.010236773639917374, - 0.004123055376112461, - -0.02011278085410595, - 0.019520090892910957, - -0.0034466166980564594, - -0.011544555425643921, - -0.029840614646673203, - 0.02728947438299656, - -0.010223888792097569, - 0.008033515885472298, - -0.015989724546670914, - 0.009541007690131664, - 0.03947825729846954, - -0.02062816172838211, - -0.012317628599703312, - 0.0024834966752678156, - 0.006229679100215435, - 0.013567429035902023, - 0.008278322406113148, - 0.0024834966752678156, - 0.019507206976413727, - -0.006912560202181339, - 0.0018360480898991227, - -0.008787262253463268, - 0.06035122647881508, - -0.013760698027908802, - -0.01872124895453453, - 0.015693379566073418, - -0.013161566108465195, - -0.0423128567636013, - -0.10034486651420593, - 0.007047847844660282, - 0.027418319135904312, - 0.00957321934401989, - 0.005923671182245016, - 0.01633760705590248, - 0.026619477197527885, - 0.0010186845902353525, - 0.008980530314147472, - 0.030046766623854637, - -0.0243904497474432, - -0.024699678644537926, - -0.01971335895359516, - -0.015074921771883965, - 0.003395078470930457, - -0.0009880837751552463, - 0.0012739597586914897, - -0.012169456109404564, - -0.029428308829665184, - 0.02870677411556244, - 0.003588346764445305, - -0.009508796967566013, - -0.009528123773634434, - -0.004680312238633633, - -0.022431999444961548, - -0.0032436850015074015, - -0.02489294670522213, - 0.002726692473515868, - 0.02164604142308235, - -0.005836700554937124, - 0.02545986697077751, - -0.011093595996499062, - 0.014868768863379955, - -0.01079725194722414, - -0.009212451986968517, - -0.004219689406454563, - -0.009425046853721142, - -0.00684169540181756, - 0.033345211297273636, - -0.008297649212181568, - -0.004599783569574356, - 0.008271880447864532, - 0.009321970865130424, - -0.013116470538079739, - 0.00841361004859209, - -0.03406674414873123, - -0.010584656149148941, - 0.023565838113427162, - 0.013528775423765182, - 0.002828158438205719, - -0.03824133798480034, - -0.010153024457395077, - -0.03692711517214775, - 0.0019552302546799183, - 0.047621291130781174, - 0.004371082875877619, - 0.016505107283592224, - -0.004851032514125109, - -0.026104094460606575, - 0.01481723040342331, - -0.010075717233121395, - 0.023862183094024658, - -0.023707568645477295, - 0.007183135952800512, - -0.010475138202309608, - -0.010030620731413364, - -0.033783286809921265, - 0.001587215345352888, - 0.02489294670522213, - -0.005946218967437744, - -0.021362580358982086, - -0.008039957843720913, - -0.006867464166134596, - 0.013000509701669216, - -0.018386250361800194, - 0.02391372248530388, - -0.058650463819503784, - -0.02149142697453499, - 0.006861022207885981, - -0.015564534813165665, - 0.005575788207352161, - -0.02159450389444828, - 0.014508001506328583, - -0.024300258606672287, - 0.03259790688753128, - 0.013631852343678474, - 0.021671811118721962, - -0.02203257754445076, - 0.018399134278297424, - -0.011364171281456947, - -0.03063945658504963, - 0.024313142523169518, - 0.015538765117526054, - 0.004400073084980249, - -0.02254796028137207, - 0.021182198077440262, - 0.00611693924292922, - -0.004648101050406694, - -0.0025736885145306587, - -0.00016327138291671872, - -0.011673401109874249, - -0.008020631037652493, - -0.02589794248342514, - 0.02307622693479061, - 0.0074988072738051414, - -0.001122566289268434, - -0.023643147200345993, - -0.008310534060001373, - 0.029402539134025574, - 0.013747813180088997, - 0.03365444019436836, - -0.0008004525443539023, - -0.009882448241114616, - -0.0014551486819982529, - 0.0011040447279810905, - -0.005636990070343018, - -0.03834441676735878, - -0.02631024830043316, - 0.009276875294744968, - 0.0215816181153059, - -0.0023820309434086084, - 0.0020953495986759663, - -0.010900327935814857, - -0.016840104013681412, - 0.004087623208761215, - 0.02495737001299858, - -0.02017720229923725, - -0.023604493588209152, - -0.006010641809552908, - -0.011512343771755695, - -0.0020083789713680744, - 0.00635208236053586, - -0.002989215310662985, - 0.006290880963206291, - -0.013941081240773201, - -0.005901123397052288, - -0.020860083401203156, - -0.019017593935132027, - 0.005108723416924477, - 0.030871378257870674, - 0.01774202287197113, - 0.04161709174513817, - -0.023346802219748497, - -0.00981802586466074, - 0.000195784741663374, - -0.041900552809238434, - -0.006790156941860914, - 0.0037075288128107786, - 0.0054662697948515415, - -0.014971844851970673, - 0.005472711753100157, - -0.011080712080001831, - 0.028912926092743874, - 0.025163523852825165, - 0.010868116281926632, - -0.0003571435809135437, - 0.000999357784166932, - -0.00792399700731039, - 0.004970214329659939, - 0.009534565731883049, - 0.004335650708526373, - -0.03396366909146309, - 0.02880985103547573, - 0.0031470509711652994, - -0.009631199762225151, - -0.02115642838180065, - 0.0019536197651177645, - -0.010945423506200314, - -0.019391246140003204, - -0.03744249790906906, - 0.009921101853251457, - -0.004896128550171852, - -0.019790666177868843, - -0.00037123606307432055, - 0.03391212970018387, - 0.02731524221599102, - -0.017484331503510475, - 0.008890338242053986, - 0.008478032425045967, - -0.00575295090675354, - -0.00788534339517355, - 0.014327618293464184, - 0.028165623545646667, - 0.0014696437865495682, - -0.007917555049061775, - -0.011151576414704323, - 0.030278688296675682, - 0.006422947160899639, - -0.015281074680387974, - -0.002412631642073393, - 0.00979869905859232, - 0.005443721543997526, - -0.038138262927532196, - 0.03422136232256889, - -0.014997614547610283, - -0.006854579783976078, - 0.01006283238530159, - 0.01685298979282379, - 0.008536013774573803, - -0.0012288638390600681, - 0.03646327182650566, - 0.04019979014992714, - 0.018540864810347557, - 0.006693522911518812, - 0.007292654365301132, - -0.02723793499171734, - -0.024532180279493332, - 0.029479846358299255, - 0.004235795233398676, - -0.03411828354001045, - 0.008935434743762016, - 0.008400725200772285, - -0.004770503845065832, - 0.008123707957565784, - -0.021465657278895378, - 0.0017200872534886003, - -0.013850889168679714, - 0.014778576791286469, - -0.012163014151155949, - -0.011583209037780762, - -0.022393345832824707, - 0.017458563670516014, - 0.030433302745223045, - 0.004280891269445419, - -0.002789504826068878, - 0.004358198493719101, - 0.016427800059318542, - -0.02976330742239952, - 0.011621862649917603, - -0.013953966088593006, - -0.003939450718462467, - -0.0022547959815710783, - 0.009418604895472527, - -0.005198915489017963, - -0.01921086199581623, - 0.01148657500743866, - -0.007859574630856514, - -0.009734276682138443, - 0.017832215875387192, - 0.004677091259509325, - -0.0030488062184304, - 0.11307479441165924, - 0.015525881201028824, - 0.0025978470221161842, - 0.0052214632742106915, - -0.0018215529853478074, - 0.013554545119404793, - -0.005118386819958687, - 0.011319075711071491, - 0.0028635908383876085, - -0.033319443464279175, - 0.01726529560983181, - 0.0003551303525455296, - 0.0009011130896396935, - -0.025086216628551483, - -0.010223888792097569, - 0.036179810762405396, - -0.018850093707442284, - 0.010430041700601578, - -0.009302644059062004, - -0.0030037104152143, - 0.049992047250270844, - -0.0003796915407292545, - 0.007769382558763027, - 0.042854007333517075, - -0.004058632533997297, - -0.03197944909334183, - 0.013013393618166447, - 0.006790156941860914, - 0.00033217977033928037, - -0.011654074303805828, - 0.0005423589609563351, - 0.021852193400263786, - -0.06091814488172531, - -0.02491871640086174, - 0.01081013586372137, - -0.018540864810347557, - -0.00226768059656024, - -0.019275285303592682, - 0.00933485571295023, - 0.009270432405173779, - 0.0220712311565876, - 0.03357713297009468, - 0.0001744447072269395, - -0.024210065603256226, - 0.008961203508079052, - 0.006648426875472069, - 0.0012361113913357258, - -0.016543760895729065, - -0.0031905362848192453 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 36, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 486 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000037.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000037.json deleted file mode 100644 index 46d786999fee875fe129b08c24bdea8ee7c3adcb..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000037.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000037", - "content": "Diese Art von Fehlern beeinflusst die Genauigkeit der gemessenen Werte. [87, 88] Bei der Durchf\u00fchrung der Messungen ka- men Schallpegelmesser der Firma Norsonic-Tippkemper GmbH, Typ 140 (geeicht), zum Einsatz. Diese Schallpegelmesser weisen eine Messunsicherheit von \u00b1 0,5 dB auf und bieten somit eine hohe Genauigkeit bei der Erfassung der Schalldruckpegel. Durch die Verwendung geeichter Messger\u00e4te wird sichergestellt, dass die ermittelten Werte zu- verl\u00e4ssig und pr\u00e4zise sind. Die Eichdaten sind in Tabelle 9 zu finden. Dar\u00fcber hinaus wur- den die Entfernungen mithilfe eines Laser-Entfernungsmesser der Firma Bosch GLM 40 erfasst. Bei der Messung von Entfernungen k\u00f6nnen ebenfalls Abweichungen auftreten. Dies kann durch verschiedene Faktoren wie beispielsweise die Helligkeit, die den Laser beeinflusst, bedingt sein. Es ist daher m\u00f6glich, dass es zu leicht abweichenden Abst\u00e4n- den kommt. Bei der Ermittlung der Messabst\u00e4nde wurden die Positionen mithilfe des Programms SoundPlan 9.0 nachgebildet und ausgemessen. Es ist jedoch wichtig zu be- achten, dass bei diesem Prozess Fehler auftreten k\u00f6nnen. Insbesondere kann es zu Ab- weichungen kommen, da nicht immer die genauen Positionen exakt digitalisiert werden k\u00f6nnen. Dadurch k\u00f6nnen Varianzen von bis zu 2 Metern auftreten, was wiederum zu einer Unsicherheit von \u00b1 2 dB in den Berechnungen f\u00fchren kann. Diese Abweichungen k\u00f6nnen verschiedene Ursachen haben, wie z.B. ungenaue Angaben \u00fcber die genaue Po- sitionierung der Messpunkte oder Schwierigkeiten bei der \u00dcbertragung der realen Posi- tionen in das Programm. Des Weiteren wurden bei der Messung die Anh\u00e4nger immer von unterschiedlichen Personen beladen, welches ebenfalls zu Messungenauigkeiten und Unsicherheiten f\u00fchrt, da jedes Lagerpersonal seine eigene Vorgehensweise und Technik hat, was zu Variationen in der L\u00e4rmemission f\u00fchren kann. Dennoch k\u00f6nnen die Messungenauigkeiten aufgrund der unterschiedlichen Personen, die den Beladevorgang durchf\u00fchren, nicht vollst\u00e4ndig vermieden werden k\u00f6nnen. Hierbei kommt sch\u00e4tzungs- weise eine Unsicherheit von \u00b1 3 dB hinzu. Dar\u00fcber hinaus ist es wichtig zu beachten, dass bei der Annahme einer kugelf\u00f6rmigen Messfl\u00e4che Winkelfehler auftreten k\u00f6nnen. Diese Annahme basiert darauf, dass die Schallintensit\u00e4t an allen Stellen der Messfl\u00e4che\nsenkrecht hindurchstrahlt. F\u00fcr reale Schallquellen ist dies oft nicht der Fall, denn es ist\n\n## eine umfangreichere Voruntersuchung der Schallfeldstruktur erforderlich, um eine ge-\n\nnaue Messfl\u00e4chen zu bestimmen. Durch den Winkelfehler kann es zu Abweichungen in\nden Messergebnissen kommen, da die Schallintensit\u00e4t die Messfl\u00e4che nicht senkrecht\n73\n7 Ergebnisse und Interpretation\ndurchtritt. Um den Winkelfehler zu minimieren, sollte die Messfl\u00e4che einen Radius gr\u00f6- \u00dfer als die zweifache maximale Schallquellenabmessung aufweisen. Dadurch wird eine bessere Ann\u00e4herung an die tats\u00e4chliche Schallfeldstruktur erzielt und genauere Mess- ergebnisse k\u00f6nnen erzielt werden. [89] Um eine genaue Schallleistungspegelberechnun- gen durchzuf\u00fchren, ist es wichtig die Richtcharakteristik der Quelle zu untersuchen.", - "embedding": [ - 0.004760488402098417, - 0.02130398526787758, - 0.010786180384457111, - -0.03391768038272858, - -0.002771626692265272, - 0.01904195360839367, - -0.017457254230976105, - -0.01180217694491148, - -0.015118543989956379, - -0.022160233929753304, - 0.013303807936608791, - 0.02750220336019993, - -0.02193019725382328, - 0.015476379543542862, - 0.0035975235514342785, - 0.013342147693037987, - 0.031131677329540253, - 0.009220650419592857, - 0.008575269021093845, - -0.006575224921107292, - -0.016703244298696518, - 0.021355103701353073, - -0.019604265689849854, - 0.002068735659122467, - -0.018709678202867508, - 0.01536136120557785, - 0.025010136887431145, - -0.018952494487166405, - -0.04023091867566109, - 0.0022188988514244556, - 0.01998766139149666, - -0.01054336316883564, - -0.017725631594657898, - 0.010977878235280514, - -0.026505377143621445, - -0.007201436907052994, - -0.008875595405697823, - -0.003754076547920704, - 0.025010136887431145, - -0.0088500352576375, - 0.013099330477416515, - 0.008549709804356098, - 0.004597545601427555, - -0.015003525651991367, - 0.0021358297672122717, - 0.014888507314026356, - 0.027272166684269905, - 0.009610435925424099, - -0.014862948097288609, - 0.022351931780576706, - 0.018147366121411324, - -0.007099198177456856, - -0.019399788230657578, - 0.010779790580272675, - 0.013227129355072975, - -0.01209611352533102, - 0.02403886988759041, - 0.0024808854795992374, - -0.013444386422634125, - -0.008108804933726788, - -0.02670985460281372, - -0.0073228455148637295, - -0.01065199263393879, - 0.002445740858092904, - -0.012421999126672745, - -0.0130226518958807, - -0.010792570188641548, - 0.0019057928584516048, - -0.014965186826884747, - -0.013712762854993343, - 0.027246607467532158, - 0.02798783779144287, - 0.006460206583142281, - 0.01207694411277771, - 0.02655649557709694, - -0.012019434943795204, - 0.011118455789983273, - -0.010153578594326973, - 0.014517892152071, - 0.00551769370213151, - 0.012856513261795044, - -0.01149546168744564, - -0.03133615478873253, - 0.04575181007385254, - 0.001277983421459794, - -0.006326018366962671, - -0.012128063477575779, - 0.008843645453453064, - -0.017086638137698174, - -0.002565551782026887, - 0.009661555290222168, - 0.03908073529601097, - -0.0014584986492991447, - -0.013316587544977665, - 0.027885599061846733, - 0.00455920584499836, - 0.018339062109589577, - 0.014645691029727459, - -0.011016217060387135, - -0.017099419608712196, - -0.015987573191523552, - -0.0015519511653110385, - 0.010230258107185364, - -0.002295577898621559, - -0.01623038947582245, - -0.011687158606946468, - 0.013751101680099964, - 0.0013091342989355326, - -0.0035144544672220945, - -0.023553235456347466, - -0.01579587534070015, - 0.00808324571698904, - 0.01313767023384571, - 0.01262647658586502, - 0.041432224214076996, - -0.0014361338689923286, - 0.04273576661944389, - -0.0018514785915613174, - -0.007054468616843224, - -0.028447911143302917, - 0.026058083400130272, - 0.011623259633779526, - 0.016971619799733162, - -0.013080161064863205, - 0.0238982904702425, - -0.0029153998475521803, - -0.011406002566218376, - 0.0004956179764121771, - -0.016728803515434265, - -0.014364534057676792, - -0.008166314102709293, - 0.005268486682325602, - 0.0337132029235363, - 0.011278203688561916, - 9.095647692447528e-05, - 0.0037604663521051407, - -0.006207804661244154, - -0.008786136284470558, - -0.023668253794312477, - -0.03330424800515175, - 0.006520910654217005, - 0.010147188790142536, - -0.036831483244895935, - -0.02901022508740425, - -0.002739676972851157, - 0.028115635737776756, - 0.006236559245735407, - 0.011993874795734882, - 0.014108937233686447, - -0.0017875793855637312, - -0.011642429046332836, - -0.0140833780169487, - 0.02426890656352043, - 0.0016869382234290242, - -0.008722237311303616, - 0.013239908963441849, - -0.0020958927925676107, - 0.023399876430630684, - -0.028652388602495193, - -0.019220871850848198, - -0.008364401757717133, - 0.026505377143621445, - 0.011431561782956123, - 0.005913868546485901, - 0.01485016755759716, - 0.007367574609816074, - -0.010402785614132881, - -0.02210911363363266, - -0.011655209586024284, - 0.00551769370213151, - -0.007386744488030672, - 0.01231337059289217, - -0.00010034166916739196, - 0.02437114529311657, - 0.002995273796841502, - -0.0016358188586309552, - 0.007009739521890879, - 0.009425127878785133, - -0.02849903143942356, - -0.03782831132411957, - -0.01773841120302677, - 0.023706592619419098, - 0.0031182796228677034, - 0.008473030291497707, - -0.03182178735733032, - 0.016179271042346954, - 0.0013275053352117538, - 0.034096598625183105, - -0.00972545426338911, - -0.014824608340859413, - 0.003062367904931307, - 0.007981006987392902, - -0.005990547593683004, - -0.029981492087244987, - -0.6359245777130127, - -0.026939891278743744, - 0.004063987638801336, - 0.01824960485100746, - -0.004415432922542095, - 0.04557289183139801, - 0.013239908963441849, - -0.0018546734936535358, - 0.009661555290222168, - 0.036064691841602325, - -0.0029984686989337206, - -0.00030591728864237666, - -0.007373964414000511, - -0.000340862141456455, - -0.022645866498351097, - -0.017355015501379967, - -0.00227960292249918, - -0.00493621127679944, - 0.01856910064816475, - -0.00667746365070343, - -0.03253746032714844, - 0.013380486518144608, - 0.004086351953446865, - 0.005306826438754797, - 0.0069138905964791775, - -0.003418605774641037, - 0.02141900360584259, - -0.015246342867612839, - 0.004616715479642153, - 0.0009664749959483743, - -0.01648598723113537, - 0.01253062766045332, - -0.02670985460281372, - 0.0281667560338974, - 0.03125947713851929, - -0.01176383811980486, - -0.001150983851402998, - 0.009987440891563892, - 0.005776485428214073, - 0.00281795347109437, - -0.007297285832464695, - -0.021214526146650314, - -0.0015303852269425988, - -0.00955931656062603, - 0.0016110579017549753, - -0.007642341312021017, - 0.03335537016391754, - -0.024243347346782684, - 0.01955314725637436, - -0.01915697194635868, - -0.0011485876748338342, - -0.008990613743662834, - 0.01886303536593914, - 0.020332716405391693, - 0.02193019725382328, - -0.0048211924731731415, - 0.0371382012963295, - -0.008658338338136673, - -0.027016570791602135, - 0.021546801552176476, - -0.017789529636502266, - 0.014134497381746769, - -0.0015894919633865356, - -0.0209078099578619, - -0.010498634539544582, - 0.014543452300131321, - -0.024818439036607742, - -0.03667812421917915, - 0.01693328097462654, - -0.021061167120933533, - -0.00045647972729057074, - 0.022748105227947235, - -0.021904636174440384, - -0.02334875799715519, - 0.02086946927011013, - 0.03108055889606476, - 0.01671602390706539, - -0.029138023033738136, - -0.0003556388255674392, - 0.008504980243742466, - -0.009859642013907433, - -0.004482526797801256, - -0.0194125697016716, - 0.017265556380152702, - 0.01054336316883564, - -0.023872731253504753, - 0.001602271804586053, - -0.003549599088728428, - 0.009258990176022053, - -0.01176383811980486, - 0.00830050278455019, - 0.03361096605658531, - -0.013776661828160286, - -0.02809007652103901, - -0.009597656317055225, - 0.021572360768914223, - -0.021355103701353073, - 0.02273532561957836, - 0.009955490939319134, - -0.024716200307011604, - -0.030620483681559563, - 0.005492134019732475, - 0.013469945639371872, - -0.025086816400289536, - 0.009457077831029892, - 0.005629517138004303, - 0.002059150952845812, - 0.007469813339412212, - 0.0181345846503973, - -0.029035784304142, - 0.019208092242479324, - -0.028294553980231285, - 0.004044817760586739, - -0.004520866554230452, - -0.005802045110613108, - -0.02334875799715519, - 0.022927023470401764, - 0.032563019543886185, - 0.002140622353181243, - -0.0003784029104281217, - 0.020664991810917854, - -0.002424973528832197, - 0.04345143958926201, - -0.008658338338136673, - -0.029598096385598183, - 0.01648598723113537, - 0.015553059056401253, - 0.008856425061821938, - 0.012875683605670929, - -0.017393354326486588, - 0.001654988620430231, - -0.0015815045917406678, - 0.01065199263393879, - -0.01536136120557785, - 0.012600917369127274, - 0.02521461434662342, - 0.018658557906746864, - -0.013482725247740746, - 0.0021214524749666452, - -0.006300458684563637, - -0.021866297349333763, - 0.005214172415435314, - 0.000730048050172627, - -0.0232720784842968, - -0.008313282392919064, - -0.038186147809028625, - -0.013163229450583458, - 0.004303609486669302, - 0.02049885503947735, - -0.005124713759869337, - 0.0014305427903309464, - -0.021252864971756935, - -0.00044210240594111383, - 0.02578970603644848, - -0.0008402741514146328, - 0.014351754449307919, - -0.013636083342134953, - -0.00810241512954235, - -0.011028997600078583, - -0.026607615873217583, - 0.015923673287034035, - 0.038288384675979614, - -0.058940596878528595, - -0.013815001584589481, - 0.012338930740952492, - -0.037419356405735016, - 0.027860039845108986, - -0.010338886640965939, - -0.02163626067340374, - -0.040000881999731064, - 0.013316587544977665, - 0.0272977277636528, - -0.005945818033069372, - 0.0112015251070261, - -0.0031310594640672207, - 0.011374052613973618, - -0.027604442089796066, - -0.00786598864942789, - -0.01463291049003601, - -0.015323021449148655, - 0.021214526146650314, - -0.001222870429046452, - -0.022198572754859924, - -0.0031470342073589563, - 0.01597479358315468, - 0.0018882205476984382, - 0.016473207622766495, - -0.00029912800528109074, - 0.00174444739241153, - 0.03782831132411957, - -0.01463291049003601, - 0.030620483681559563, - -0.013521065004169941, - 0.004421822726726532, - -0.024537282064557076, - 0.0007444253424182534, - 0.00574773084372282, - -0.02918914332985878, - -0.012588136829435825, - 0.02258196845650673, - 0.021112287417054176, - 0.004418627824634314, - 0.02867794968187809, - -0.013993918895721436, - 0.024217786267399788, - -0.02159791998565197, - 0.007201436907052994, - -0.01689494214951992, - 0.03097832016646862, - 0.04728538915514946, - -0.000195291853742674, - -0.019271990284323692, - -0.010128019377589226, - -0.015131324529647827, - 0.017022740095853806, - 0.0350167453289032, - -0.004977745469659567, - 0.005974572617560625, - 0.036243610084056854, - -0.0001366843207506463, - -0.005032059736549854, - -0.004335558973252773, - 0.039055176079273224, - 0.010683941654860973, - -0.006306848488748074, - 0.007022519130259752, - -0.0030080536380410194, - 0.00060304842190817, - -4.2532887164270505e-05, - -0.01740613393485546, - -0.00979574304074049, - -0.0015799070242792368, - 0.013112110085785389, - 0.02670985460281372, - -0.006121540907770395, - 0.0260453037917614, - 0.025674687698483467, - 0.0018099440494552255, - 0.021866297349333763, - 0.016498766839504242, - 0.023029262199997902, - 0.014607351273298264, - -0.008792526088654995, - 0.0097062848508358, - 0.0160131324082613, - -0.02075445093214512, - 0.026173101738095284, - 0.03148951381444931, - 0.008575269021093845, - -0.0020303961355239153, - -0.014134497381746769, - -0.010025780647993088, - -0.021329544484615326, - -0.007457033731043339, - 0.02276088483631611, - -0.018505200743675232, - 0.04296580329537392, - -0.005000110249966383, - 0.0005103946314193308, - 0.018479641526937485, - 0.0030144434422254562, - 0.008441081270575523, - 0.016498766839504242, - -0.022198572754859924, - 0.008805305697023869, - 0.002527212258428335, - -0.014799048192799091, - -0.01988542266190052, - -0.019105853512883186, - -0.0012348515447229147, - -0.004019258078187704, - -0.002311552641913295, - -0.005920258350670338, - 0.01400669850409031, - 0.0277322418987751, - -0.031872909516096115, - 0.003578353673219681, - 0.021534021943807602, - 0.02911246381700039, - 0.008530539460480213, - -0.022454168647527695, - -0.02273532561957836, - 0.006888330914080143, - 0.023003702983260155, - -0.011144015938043594, - -0.020128238946199417, - -0.014862948097288609, - -0.0007627963786944747, - -0.018185704946517944, - -0.0029872863087803125, - 0.004437797702848911, - 0.01667768508195877, - -0.005284461658447981, - -0.01424951571971178, - 0.010786180384457111, - 0.00748898321762681, - 0.01502908580005169, - 0.007872378453612328, - 0.011048167012631893, - 0.024281686171889305, - 0.004246099852025509, - -0.016434866935014725, - -0.010358056053519249, - -0.015744756907224655, - 0.010913979262113571, - -0.002330722287297249, - -0.013099330477416515, - -0.025713026523590088, - -0.003316367045044899, - -0.01468402985483408, - -0.0181345846503973, - 0.003843535203486681, - 0.010243037715554237, - 0.01925921067595482, - -0.014543452300131321, - 0.0011805372778326273, - 0.001317920396104455, - -0.015604178421199322, - 0.03292085602879524, - -0.006044861860573292, - -0.010025780647993088, - -0.026582056656479836, - 0.004658249672502279, - -0.00036562306922860444, - 0.011955535039305687, - 0.025521330535411835, - 0.00777013972401619, - 0.01718887686729431, - 0.0020974904764443636, - -0.02875462733209133, - -0.016498766839504242, - -0.02273532561957836, - 0.0032189209014177322, - 0.022965362295508385, - -0.0026214634999632835, - 0.013751101680099964, - 0.044422704726457596, - -0.020933369174599648, - -0.007450643461197615, - -0.0077893091365695, - 0.02415388822555542, - -0.03621805086731911, - 0.020511634647846222, - 0.01839018240571022, - -0.012773444876074791, - 0.017687290906906128, - 0.015080205164849758, - 0.039464130997657776, - -0.00015505534247495234, - -0.008485809899866581, - 0.02342543751001358, - 0.016907721757888794, - 0.004057597368955612, - -0.02572580799460411, - -0.019029174000024796, - 0.04196897894144058, - -0.0013394864508882165, - 0.01911863312125206, - -0.01937422901391983, - -0.006901110522449017, - -0.00422373553737998, - -0.008971444331109524, - 0.01693328097462654, - -0.023540455847978592, - 0.0027508593630045652, - 0.013930019922554493, - 0.013815001584589481, - 0.001033569104038179, - -0.002466508187353611, - -0.010677551850676537, - 0.01214723289012909, - 0.014402873814105988, - -0.02451172284781933, - -0.0038978494703769684, - -0.0024984576739370823, - -0.02944473922252655, - 0.015297462232410908, - -0.002193339169025421, - -0.01335492730140686, - -0.030160410329699516, - 0.0033930460922420025, - -0.009929931722581387, - -0.015706416219472885, - -0.0004009673139080405, - -0.010044950060546398, - -0.009827692992985249, - 0.014032258652150631, - -0.0026038913056254387, - -0.02590472437441349, - -0.005210977513343096, - -0.011233475059270859, - 0.010255817323923111, - -0.018517980352044106, - 0.003003261052072048, - 0.014735149219632149, - -0.006722193211317062, - -0.021649040281772614, - -0.024026088416576385, - 0.00888198520988226, - -0.001344278920441866, - 0.023284858092665672, - 0.00022145058028399944, - -0.022083554416894913, - 0.017942888662219048, - -0.004460162483155727, - -0.003987308591604233, - -0.011028997600078583, - -0.0202815979719162, - -0.013559404760599136, - 0.030697163194417953, - -0.00934205949306488, - 0.009297329932451248, - -0.0038978494703769684, - -0.009469857439398766, - 0.0046518598683178425, - 0.016703244298696518, - 0.02031993679702282, - -0.0031678015366196632, - 0.003833950497210026, - 0.004543231334537268, - 0.006485766265541315, - 0.01667768508195877, - 0.022173013538122177, - -0.001497636898420751, - 0.010728671215474606, - -0.017495593056082726, - -0.016652124002575874, - 0.005696611478924751, - 0.02849903143942356, - 0.010466684587299824, - -0.007719020359218121, - 0.002514432417228818, - 0.021035607904195786, - 0.02549576945602894, - -0.002891437616199255, - -0.012262251228094101, - 0.0121664023026824, - 0.0027684317901730537, - -0.003923409152776003, - 0.003396240994334221, - 0.010402785614132881, - 0.021188965067267418, - 0.022390270605683327, - 0.010070509277284145, - -0.022057995200157166, - -0.03269081562757492, - 0.04547065123915672, - -0.008933104574680328, - -0.008044905960559845, - 0.0286012701690197, - -0.01900361478328705, - 0.003731711767613888, - -0.02324651926755905, - 0.007265335880219936, - 0.011655209586024284, - 0.01239005010575056, - 0.011329323053359985, - -7.7976961620152e-05, - -0.01929754950106144, - -0.02352767623960972, - 0.007667900994420052, - 0.022006874904036522, - -0.01105455681681633, - -0.002295577898621559, - -0.02228803187608719, - 0.01125264447182417, - -0.0068627712316811085, - 0.015859775245189667, - 0.004009672906249762, - -0.024013308808207512, - -0.03729155659675598, - 0.020511634647846222, - -0.007252556271851063, - 0.019425349310040474, - -0.032230742275714874, - 0.00527168158441782, - -0.030876081436872482, - -0.03138727322220802, - -0.004830777645111084, - -0.028115635737776756, - 0.002921789651736617, - -0.0024617156013846397, - 0.004556010942906141, - 0.018709678202867508, - 0.021610699594020844, - 0.012255861423909664, - -0.01646042801439762, - 0.021981315687298775, - -0.018032345920801163, - -0.00030412012711167336, - -0.03629473224282265, - -0.004054402466863394, - -0.022428609430789948, - 0.018300723284482956, - -0.003011248540133238, - -0.015118543989956379, - 0.011195135302841663, - 0.025112375617027283, - 0.01594923436641693, - 0.03499118611216545, - -0.011572140268981457, - -0.004472942091524601, - -0.01211528293788433, - -0.028984665870666504, - 0.005233342293649912, - -0.016077032312750816, - 0.014134497381746769, - 0.030594924464821815, - -0.013495505787432194, - -0.007552882190793753, - -0.00592984352260828, - -0.01391724031418562, - -0.01809624582529068, - -0.02053719386458397, - 0.01911863312125206, - -0.019527588039636612, - 0.04751542583107948, - -0.0002118656993843615, - 0.023770492523908615, - -0.015284682624042034, - -0.012051383964717388, - -0.018479641526937485, - -0.022556407377123833, - 0.013029041700065136, - 0.0034026310313493013, - 0.011105676181614399, - -0.01845408044755459, - -0.0038978494703769684, - -0.011699938215315342, - -0.007501762825995684, - 0.009540146216750145, - -0.020882250741124153, - -0.01074145082384348, - -0.023476555943489075, - -0.022901464253664017, - -0.029138023033738136, - -0.01306099072098732, - -0.005575202871114016, - 0.010460294783115387, - 0.00697778956964612, - -0.009131192229688168, - 0.023706592619419098, - -0.004744513425976038, - -0.014709590002894402, - -0.009661555290222168, - 0.004635884892195463, - 0.023923849686980247, - 0.0060129123739898205, - 0.015092984773218632, - 0.019910981878638268, - -0.04046095535159111, - -0.01937422901391983, - -0.05170721188187599, - 0.01693328097462654, - -0.03046712651848793, - 0.019144192337989807, - 0.0077126300893723965, - -0.03780275210738182, - 0.003948968835175037, - 0.021278424188494682, - -0.003185373730957508, - -0.0046518598683178425, - -0.0101407989859581, - 0.03286973387002945, - 0.012581747025251389, - -0.013150449842214584, - -0.013303807936608791, - 0.019617047160863876, - -0.00808324571698904, - 0.004271659534424543, - 0.0007016927702352405, - 0.006405892316251993, - -0.011795787140727043, - -0.009425127878785133, - -0.004779658280313015, - 0.05352194607257843, - -0.0007016927702352405, - 0.014045038260519505, - 0.0029058149084448814, - -0.028575710952281952, - -0.006175855174660683, - -0.03849286213517189, - -0.025802485644817352, - 0.015297462232410908, - -0.004635884892195463, - 0.028064517304301262, - -0.02126564458012581, - 0.0023690618108958006, - 0.003680592402815819, - -0.016179271042346954, - 0.011508241295814514, - -0.020204918459057808, - -0.0038307553622871637, - 0.01974484510719776, - -0.015348581597208977, - 0.006875550840049982, - 0.01430063508450985, - -0.013993918895721436, - 0.006613564677536488, - 0.016025912016630173, - -0.0016597809735685587, - -0.026863211765885353, - 0.016115371137857437, - 0.0030080536380410194, - -0.0034633351024240255, - 0.02145734243094921, - -0.012517848052084446, - -0.0024808854795992374, - -0.021367883309721947, - -0.02952141873538494, - 0.007719020359218121, - -0.01933589018881321, - 0.011725498363375664, - -0.02185351774096489, - -0.009329278953373432, - 0.009137582033872604, - -0.0004057597543578595, - 0.019680945202708244, - 0.005917063448578119, - -0.02936805970966816, - -0.014287855476140976, - 0.012984312139451504, - -0.03483783081173897, - 0.013252688571810722, - 0.036064691841602325, - -0.0005978566478006542, - -0.019732065498828888, - -0.014441213570535183, - 0.0010687137255445123, - -0.013725542463362217, - 0.015565838664770126, - -0.01074145082384348, - -0.01634540781378746, - -0.02175127901136875, - 0.0026917527429759502, - 0.02228803187608719, - 0.0043770931661129, - -0.01395557913929224, - 0.01180217694491148, - 0.014108937233686447, - 0.009917152114212513, - -0.022198572754859924, - -0.011527410708367825, - -0.008294112980365753, - 0.004284439608454704, - -0.0006433848175220191, - 0.018083466216921806, - -0.015527498908340931, - 0.004194980952888727, - -0.0017156928079202771, - -0.036396969109773636, - 0.008326062001287937, - -0.015642518177628517, - -0.023438217118382454, - 0.01141878217458725, - 0.0058595542795956135, - -0.019093073904514313, - 0.006332408171147108, - -0.02739996649324894, - -0.0029888837598264217, - -0.004597545601427555, - 0.009955490939319134, - -0.004054402466863394, - 0.04132998362183571, - 0.003234895644709468, - 0.008958663791418076, - -0.027169927954673767, - 0.027962278574705124, - 0.0031518267933279276, - -0.02145734243094921, - 0.01446677278727293, - 0.0031070972327142954, - -0.046901993453502655, - 0.012006654404103756, - -0.017176097258925438, - 0.03422439843416214, - 0.01685660146176815, - -0.020077120512723923, - -0.014837387949228287, - -0.0013610523892566562, - -0.013853340409696102, - -0.025419091805815697, - -0.012402829714119434, - -0.0014417250640690327, - 0.0018610634142532945, - 0.025636348873376846, - -0.015553059056401253, - 0.04265908896923065, - -0.006003327202051878, - 0.030952759087085724, - -0.043834831565618515, - -0.04010312259197235, - -0.004402652848511934, - 0.005057619418948889, - 0.0017476424109190702, - -0.028907986357808113, - -0.035451263189315796, - 0.000313305645249784, - 0.023949410766363144, - -0.0016821457538753748, - 0.02024325728416443, - 0.019527588039636612, - 0.0034665302373468876, - -0.027118809521198273, - 0.03131059557199478, - 0.021508462727069855, - 0.029725896194577217, - 0.0020431759767234325, - -0.001126222894527018, - -0.0256107896566391, - 0.009885202161967754, - -0.008038516156375408, - 0.013303807936608791, - -0.048614490777254105, - -0.014658470638096333, - 0.02222413197159767, - -0.012683985754847527, - -0.0097062848508358, - 0.02138066291809082, - -0.01795566827058792, - 0.004571985919028521, - -0.01148907095193863, - 0.026530936360359192, - 0.009335669688880444, - -0.02126564458012581, - 0.0014249515952542424, - 0.00309751252643764, - -0.01299070194363594, - -0.038876257836818695, - 0.013533844612538815, - -0.012639256194233894, - 0.0164476465433836, - 0.002444143407046795, - -0.01693328097462654, - 0.0028323307633399963, - -0.01988542266190052, - 0.019067512825131416, - 0.00046326901065185666, - 0.01052419375628233, - -0.0281667560338974, - -0.027808919548988342, - -0.04531729221343994, - 0.04217345267534256, - 0.017380574718117714, - -0.000542344234418124, - -0.0034729200415313244, - -0.014185616746544838, - -0.003003261052072048, - -0.011233475059270859, - -0.01541248057037592, - 0.006703023333102465, - -0.03417327627539635, - -0.010786180384457111, - 0.006933060474693775, - -0.013035431504249573, - -0.010498634539544582, - -0.00631323829293251, - -0.003731711767613888, - -0.003345121629536152, - -0.01282456424087286, - 0.18147365748882294, - -0.016319848597049713, - -0.004284439608454704, - 0.00919509120285511, - -0.02488233894109726, - -0.018760796636343002, - 0.04086991026997566, - 0.007846818305552006, - 0.00904812291264534, - 0.016153711825609207, - 0.02039661630988121, - -0.004511281847953796, - -0.0012723923427984118, - 0.009233430959284306, - 0.006482571363449097, - -0.013661643490195274, - -0.02670985460281372, - -0.01565529778599739, - 0.0019441323820501566, - 0.017648952081799507, - 0.01911863312125206, - -0.017687290906906128, - 0.0014832596061751246, - -0.002210911363363266, - 0.06170104071497917, - 0.010645601898431778, - -0.0070672486908733845, - 0.01490128692239523, - 0.040000881999731064, - 0.0367036834359169, - -0.03355984762310982, - -0.00695862015709281, - 0.006843601353466511, - -0.005894698668271303, - -0.006766922306269407, - 0.0008482615230605006, - 0.011105676181614399, - 0.0017300701001659036, - 0.020000440999865532, - 0.02977701462805271, - -0.0025911114644259214, - -0.027885599061846733, - -0.005239732097834349, - -0.029853694140911102, - 0.010862859897315502, - 0.026173101738095284, - -0.0017284726491197944, - 0.014338974840939045, - 0.002193339169025421, - 0.012562577612698078, - 0.006568835116922855, - 0.004546426236629486, - 0.002669387962669134, - 0.028550149872899055, - -0.013968359678983688, - -0.02893354557454586, - 0.016754362732172012, - -0.014543452300131321, - 0.010703111998736858, - -0.004466552287340164, - -0.03637140989303589, - 0.012543408200144768, - -0.011290984228253365, - 0.02415388822555542, - -0.047080911695957184, - 0.012268641032278538, - -0.022160233929753304, - 0.004118301905691624, - -0.00623016944155097, - -0.01959148608148098, - 0.01729111559689045, - -0.008147144690155983, - -0.026058083400130272, - 0.021981315687298775, - -0.02098448947072029, - -0.03575797751545906, - 0.020294377580285072, - 0.0003520445025060326, - 0.03243521973490715, - 0.013559404760599136, - 0.004792437888681889, - 0.011022607795894146, - -0.013201569207012653, - -0.009904371574521065, - -0.0021837542299181223, - -0.02867794968187809, - -0.002587916562333703, - -0.013763882219791412, - 0.01340604666620493, - -0.023770492523908615, - -0.020703332498669624, - 0.012875683605670929, - 0.0019728869665414095, - -0.007048078812658787, - 0.003511259565129876, - 0.0006841205176897347, - 0.007578441873192787, - -0.007188656833022833, - -0.01318878959864378, - -0.012562577612698078, - -0.022594748064875603, - 0.042633529752492905, - 0.02305482141673565, - -0.029751455411314964, - -0.014556231908500195, - -0.0021645845845341682, - -0.00404162285849452, - 0.023297639563679695, - 0.0014672847464680672, - 0.008556099608540535, - -0.019310330972075462, - -0.029316941276192665, - 0.02531685307621956, - -0.01890137605369091, - 0.027169927954673767, - 0.026019742712378502, - 0.012875683605670929, - 0.010952318087220192, - -0.014108937233686447, - 0.004418627824634314, - 0.011233475059270859, - 0.006294068414717913, - 0.02550855092704296, - 0.012421999126672745, - 0.008364401757717133, - -0.03200070559978485, - -0.040742114186286926, - 0.02145734243094921, - -0.005690221209079027, - -0.010728671215474606, - 0.01373832207173109, - -0.008453860878944397, - 0.030339326709508896, - -0.0010064119705930352, - 0.032230742275714874, - -0.009239820763468742, - -0.0023690618108958006, - -0.024613961577415466, - -0.004952185787260532, - -0.0011941158445551991, - 0.025751367211341858, - -0.019898202270269394, - 0.007278115954250097, - 0.009099242277443409, - 0.005048034712672234, - 0.006396307144314051, - 0.037419356405735016, - 0.006287678610533476, - -0.020588314160704613, - -0.00994271133095026, - -0.01908029243350029, - -0.0015255927573889494, - -0.007514542900025845, - -0.009335669688880444, - 0.010575313121080399, - 0.012179182842373848, - -0.01801956631243229, - -0.034352194517850876, - -0.00362947303801775, - 0.01229420118033886, - -0.03164286911487579, - -0.015923673287034035, - 0.0067094131372869015, - -0.016767142340540886, - 0.002110270317643881, - 0.0043802885338664055, - -0.15887890756130219, - 0.004290829412639141, - 0.0050096954219043255, - -0.03473559021949768, - 0.02258196845650673, - 0.0036071082577109337, - 0.023195400834083557, - 0.019284769892692566, - -0.0059106736443936825, - -0.004313194192945957, - 0.012013044208288193, - -0.0004137471551075578, - -0.013687202706933022, - -0.004594350699335337, - -0.009252600371837616, - -0.008268552832305431, - -0.014390094205737114, - 0.0187863577157259, - 0.013981139287352562, - 0.020307157188653946, - 0.0005323599907569587, - -0.02130398526787758, - 0.015565838664770126, - 0.012447559274733067, - -0.004562401212751865, - 0.007891547866165638, - -0.014824608340859413, - 0.013495505787432194, - -0.003492089919745922, - -0.014441213570535183, - -0.011048167012631893, - -0.013993918895721436, - 0.005313216242939234, - -0.00033227569656446576, - 0.007591221947222948, - -0.033943239599466324, - 0.008862815797328949, - -0.016869381070137024, - -0.010102459229528904, - 0.018160145729780197, - 0.011450732126832008, - 0.031182795763015747, - -0.0006234163301996887, - 0.02075445093214512, - 0.01481182873249054, - 0.04166226089000702, - 0.03123391605913639, - -0.023693813011050224, - -0.008607218973338604, - -0.01085646916180849, - 0.0005335580790415406, - -0.0277322418987751, - 0.005913868546485901, - 0.008364401757717133, - 0.0017508373130112886, - 0.006278093904256821, - -0.02072889171540737, - 0.02901022508740425, - 0.010722281411290169, - -0.012217521667480469, - -0.004501696676015854, - -0.03616693243384361, - 0.010882029309868813, - -0.023553235456347466, - -0.010409175418317318, - 0.001672560814768076, - 0.0032428831327706575, - 0.029393618926405907, - -0.014275074936449528, - 0.0021949366200715303, - 0.014965186826884747, - -0.032230742275714874, - 0.02010267972946167, - -0.019425349310040474, - 0.011169575154781342, - 0.007399524096399546, - 0.0008953871438279748, - -0.001755629782564938, - -0.0021134652197360992, - -0.011463511735200882, - -0.007584831677377224, - 0.039464130997657776, - -0.011623259633779526, - -0.022045215591788292, - -0.02313150092959404, - -0.003543209284543991, - -0.009827692992985249, - 0.036243610084056854, - 0.0027636392042040825, - 0.005913868546485901, - 0.01275427546352148, - -0.028396792709827423, - -0.025815265253186226, - -0.026837652549147606, - 0.004897871520370245, - -0.01158491987735033, - -0.009380398318171501, - 0.0043962630443274975, - -0.022530848160386086, - -0.001551152439787984, - 0.006242949049919844, - -0.008159924298524857, - -0.020524414256215096, - 0.03509342670440674, - 0.008824476040899754, - -0.006322822999209166, - -0.004265269730240107, - 0.003715737024322152, - 0.04156002402305603, - -0.0019393399124965072, - -0.022160233929753304, - 0.0038690948858857155, - 0.006830821745097637, - 0.002311552641913295, - -0.01536136120557785, - 0.0006553658749908209, - -0.0007823655032552779, - 0.002931374590843916, - -0.001111046876758337, - -0.0021661820355802774, - 0.049125686287879944, - -0.009770183824002743, - -0.012568967416882515, - 0.0204732958227396, - -0.001877038273960352, - -0.026096422225236893, - -0.09119690209627151, - 0.0036550327204167843, - 0.006996959447860718, - 0.025636348873376846, - 0.005469769239425659, - 0.027042130008339882, - 0.01430063508450985, - -0.004428212530910969, - 0.013623303733766079, - 0.0546465739607811, - -0.025457430630922318, - -0.030620483681559563, - -0.029981492087244987, - -0.01711219921708107, - -0.015118543989956379, - -0.020626652985811234, - 0.0012164805084466934, - -0.032230742275714874, - -0.023105941712856293, - 0.04020535945892334, - -0.02655649557709694, - -0.0015966806095093489, - -0.011597700417041779, - -0.008249383419752121, - -0.015616958029568195, - -0.026352019980549812, - -0.03724043816328049, - 0.0029265822377055883, - 0.017930107191205025, - -0.0028642804827541113, - 0.018032345920801163, - -0.026249781250953674, - -0.013674423098564148, - -0.006393112242221832, - -0.018070686608552933, - -0.010300546884536743, - -0.011936365626752377, - 0.004674224648624659, - 0.03031376749277115, - -0.018543539568781853, - 0.00029952736804261804, - 0.02783448062837124, - 0.012300590984523296, - 0.0012731910683214664, - -0.0117318881675601, - -0.016805483028292656, - -0.019093073904514313, - 0.012070554308593273, - 0.00385312014259398, - -0.0031007074285298586, - -0.03609025478363037, - -0.012524237856268883, - -0.028473472222685814, - 0.010147188790142536, - 0.029598096385598183, - -0.00023283260816242546, - -0.004239710047841072, - -0.002851500641554594, - -0.013124890625476837, - 0.005862749181687832, - -0.024345584213733673, - 0.026058083400130272, - -0.024601181969046593, - 0.03353428468108177, - -0.003345121629536152, - 0.0024010115303099155, - -0.023042041808366776, - -0.006990569643676281, - 0.017597831785678864, - -0.00939317885786295, - -0.0062844837084412575, - 0.012869293801486492, - 0.001253222580999136, - 0.012453949078917503, - -0.027272166684269905, - 0.0041406662203371525, - -0.03575797751545906, - -0.015808654949069023, - 0.018377402797341347, - -0.004843557253479958, - 0.01304182130843401, - -0.016370968893170357, - 0.006568835116922855, - -0.01299070194363594, - 0.02722104825079441, - 0.02714436873793602, - -0.002220496302470565, - -0.007035299204289913, - 0.013201569207012653, - -0.018952494487166405, - -0.013815001584589481, - 0.01267759595066309, - 0.024498943239450455, - -0.0016693659126758575, - -0.0260453037917614, - 0.011776617728173733, - 0.0005399479996412992, - -0.01118235569447279, - 0.015220782719552517, - -0.0038499252405017614, - -0.014160056598484516, - -0.005466574337333441, - -0.033278688788414, - 0.03808390721678734, - 0.010000220499932766, - 0.016077032312750816, - -0.0238982904702425, - -0.005904283840209246, - 0.01591089367866516, - 0.009623215533792973, - 0.023514896631240845, - -0.006508131045848131, - -0.014888507314026356, - -0.0019137802300974727, - -0.020677773281931877, - -0.011853296309709549, - -0.04940684139728546, - -0.02385995164513588, - 0.0022859929595142603, - 0.01715053804218769, - -0.007393134292215109, - -0.008306892588734627, - -0.003955358639359474, - 0.02006434090435505, - -0.009009783156216145, - 0.0026933501940220594, - -0.027962278574705124, - -0.02918914332985878, - -0.014160056598484516, - -0.007782919332385063, - -0.008421910926699638, - -0.00941234827041626, - 0.002220496302470565, - 0.01648598723113537, - -0.003568768734112382, - 0.007725410163402557, - 0.0002945352462120354, - -0.020204918459057808, - 0.006722193211317062, - 0.04582848772406578, - 0.019144192337989807, - 0.03483783081173897, - -0.01740613393485546, - -0.0130226518958807, - -0.0032620527781546116, - -0.004667834844440222, - 0.003011248540133238, - 0.0020847106352448463, - 0.005341970827430487, - -0.006690243259072304, - 0.006032081786543131, - -0.008159924298524857, - 0.0337132029235363, - 0.012537017464637756, - -0.0012460339348763227, - 0.001755629782564938, - -0.011092896573245525, - -0.0031390469521284103, - 0.012735105119645596, - 0.011214304715394974, - 0.02437114529311657, - -0.038799576461315155, - 0.05045478790998459, - 0.008658338338136673, - -0.003073550295084715, - -0.016549885272979736, - 0.009738233871757984, - -0.0041917855851352215, - -0.03578353673219681, - -0.018045127391815186, - 0.006639123894274235, - -0.021227305755019188, - -0.012517848052084446, - 0.0024185837246477604, - 0.027195489034056664, - 0.022121893242001534, - -0.015642518177628517, - -0.015323021449148655, - 0.0030687577091157436, - 0.0032221158035099506, - -0.008798915892839432, - 0.00689472071826458, - 0.03353428468108177, - 0.018632998690009117, - -0.0008961859275586903, - -0.019271990284323692, - 0.04043539613485336, - 0.010223867371678352, - -0.012837343849241734, - -0.013469945639371872, - 0.014262295328080654, - 0.013112110085785389, - -0.0077637494541704655, - 0.036141373217105865, - -0.006332408171147108, - 0.010715891607105732, - 0.014517892152071, - 0.012402829714119434, - 0.0006621551583521068, - 0.006057641468942165, - 0.023808831349015236, - 0.028652388602495193, - 0.01616649143397808, - -0.010779790580272675, - -0.0019297550898045301, - -0.02531685307621956, - 0.005038450006395578, - 0.018479641526937485, - -0.019220871850848198, - -0.04329808056354523, - 0.02385995164513588, - -0.0014704797649756074, - -0.0066071744076907635, - 0.011667989194393158, - 0.004153446294367313, - 0.0016901331255212426, - 0.0008282930357381701, - 0.009386788122355938, - -0.026735413819551468, - -0.011738277971744537, - -0.020383836701512337, - 0.022249693050980568, - 0.029981492087244987, - -0.006766922306269407, - -0.01015996839851141, - -0.008722237311303616, - 0.03772607073187828, - -0.03721487894654274, - 0.007099198177456856, - -0.02415388822555542, - 0.012160012498497963, - -0.009885202161967754, - 0.017214437946677208, - 0.004565596114844084, - -0.014952406287193298, - 0.004012868274003267, - -0.01937422901391983, - 0.00488828681409359, - 0.03304865211248398, - -0.008179094642400742, - 0.0026310484390705824, - 0.12442447245121002, - 0.011112065985798836, - 0.009808523580431938, - 0.012064163573086262, - -0.015386921353638172, - 0.02228803187608719, - -1.0165210369450506e-05, - -0.003137449501082301, - 2.8829510483774357e-05, - -0.05439097806811333, - 0.016575446352362633, - -0.007278115954250097, - 0.013636083342134953, - -0.030109290033578873, - 0.004786048084497452, - 0.01929754950106144, - 0.009853252209722996, - 0.011124846525490284, - -0.015616958029568195, - -0.0017923718551173806, - 0.048614490777254105, - -0.01992376148700714, - 0.010166358202695847, - 0.03279305621981621, - -0.008383571170270443, - -0.026505377143621445, - 0.028703508898615837, - 0.026352019980549812, - -0.004715758841484785, - -0.014837387949228287, - 0.005894698668271303, - 0.008332451805472374, - -0.05285739526152611, - -0.02065221220254898, - 0.00043131940765306354, - -0.04368147626519203, - -0.00013638479867950082, - -0.015131324529647827, - 0.007687070406973362, - 0.009233430959284306, - 0.027169927954673767, - 0.034275516867637634, - -0.0087541863322258, - -0.017316676676273346, - 0.027169927954673767, - -0.003113487269729376, - -0.0002386234700679779, - -0.003837145399302244, - -0.013815001584589481 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 37, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 421 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000038.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000038.json deleted file mode 100644 index d67c7757ac8308ed38aa28aa568ed1c519816190..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000038.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000038", - "content": "Dadurch wird eine bessere Ann\u00e4herung an die tats\u00e4chliche Schallfeldstruktur erzielt und genauere Mess- ergebnisse k\u00f6nnen erzielt werden. [89] Um eine genaue Schallleistungspegelberechnun- gen durchzuf\u00fchren, ist es wichtig die Richtcharakteristik der Quelle zu untersuchen. Zuf\u00e4llige Fehler, oder auch statistische Fehler genannt, entstehen zuf\u00e4llig w\u00e4hrend der Messung, beispielsweise durch das Rauschen eines Sensors und anderen externen Quel- len. Diese Fehler beeinflussen die Pr\u00e4zision der Messreihe und \u00e4u\u00dfern sich somit in der Streuung der Messergebnisse. [87, 88] Vorbeifahrende Autos oder andere Fremdger\u00e4u- sche fallen h\u00e4ufig bei einer Messung im freien auf die den gemessenen Schalldruckpegel ver\u00e4ndern. Da vorbeifahrende Autos und andere externe Ger\u00e4uschquellen nicht kon- trolliert werden k\u00f6nnen, k\u00f6nnen sie zu einer gewissen Unsch\u00e4rfe und Varianz in den Messergebnissen f\u00fchren. In der Auswertung der Messung wurden die Fremdger\u00e4usche, im Programm NorReview 6.2 ausgeblendet. Da die protokollierten Verladet\u00e4tigkeiten in einzelne 5 Sekunden lange Arbeitsschritte unterteilt waren, konnten eventuelle Fremd- ger\u00e4usche gezielt in diesem Zeitraum anhand des Geh\u00f6reindrucks analysiert werden und bei eventueller vorherrschender Dominanz nicht ber\u00fccksichtigt. Dennoch kann trotz dieser Ma\u00dfnahmen eine Messungenauigkeit aufgrund der Fremdger\u00e4usche von\nsch\u00e4tzungsweise \u00b1 1 dB auftreten. Zusammenfassend l\u00e4sst sich erkennen, dass die Validierungsrechnung durchschnittliche Abweichungen von 4,6 dB(A) zwischen simulierten und gemessenen Pegelwerten auf- weist, was auf eine gewisse Ungenauigkeit der Simulation hinweist. Bei der Messung selbst k\u00f6nnen Messungenauigkeiten von \u00b1 0,5 dB durch die verwendeten Schallpegel- messer, \u00b1 3 dB durch die Beladung durch unterschiedliche Personen und \u00b1 2 dB durch die Erfassung der Entfernungen auftreten. Zus\u00e4tzlich k\u00f6nnen vorbeifahrende Autos und andere Fremdger\u00e4usche zu einer Unsicherheit von etwa \u00b1 1 dB f\u00fchren. Die gesamte Un- sicherheit ist durch die Standardabweichung repr\u00e4sentiert und kann daher als Ma\u00df f\u00fcr die Variabilit\u00e4t der Messergebnisse betrachtet werden. 74\n8 Abschlie\u00dfende Bewertung und Ausblick\n\n## 8 Abschlie\u00dfende Bewertung und Ausblick\n\nDas Ziel dieser Thesis bestand darin, detailliert die Verladet\u00e4tigkeiten in Speditionen mit verschiedenen Flurf\u00f6rderger\u00e4ten und anderen Parametern zu analysieren und zu be- werten. Aus dem gewonnenen Wissen wurden Emissionsans\u00e4tze ausgearbeitet, die als Prognosegrundlage f\u00fcr weiterf\u00fchrende Schallimmissionsprognosen zur Verf\u00fcgung ste- hen. F\u00fcr die Prognosegrundlage zur Schallimmissionsprognose lassen sich anhand der vorliegenden Thesis Emissionsdaten zusammenfassen. Die Verwendung eines Daten- blattes erleichtert die Arbeit erheblich, weshalb in Anhang 1: Emissionsdatenbl\u00e4tter ent- sprechende Vorlagen erstellt wurden. Wenn der genaue Anh\u00e4ngertyp nicht bekannt ist, sollten die Emissionsdatenbl\u00e4tter Nr. 1 und Nr. 2 verwendet werden. Falls detailliertere Informationen zu Verladevorg\u00e4ngen vorliegen, k\u00f6nnen die Emissionsdatenbl\u00e4tter Nr. 3, Nr. 4, Nr. 5 und Nr. 6 genutzt werden, um pr\u00e4zisere Ergebnisse zu erzielen.", - "embedding": [ - 0.008143735118210316, - 0.017118601128458977, - -0.0060390993021428585, - -0.03892906382679939, - -0.006786446087062359, - 0.017976541072130203, - -0.010107615031301975, - -0.005274995695799589, - -0.038017503917217255, - -0.02679724618792534, - 0.00679650017991662, - 0.03244088590145111, - -0.017185626551508904, - 0.023472724482417107, - 0.007098119705915451, - 0.009866319596767426, - 0.04396946728229523, - -0.00199069082736969, - 0.005382238421589136, - -0.00086296780500561, - -0.013653323985636234, - -0.002526903757825494, - -0.010422640480101109, - 0.005978775210678577, - -0.008405138738453388, - 0.019786261022090912, - 0.035336438566446304, - -0.022346677258610725, - -0.029545336961746216, - 0.004098678473383188, - 0.008478868752717972, - -0.011729659512639046, - -0.011428040452301502, - -0.008867623284459114, - -0.01380748488008976, - -0.018754050135612488, - -0.015576988458633423, - -0.007506982423365116, - 0.035926271229982376, - -0.010583504103124142, - 0.01682368293404579, - 0.006568609271198511, - -0.0007213740609586239, - -0.028365667909383774, - 0.008110221475362778, - 0.010717557743191719, - 0.014464346691966057, - -0.0031921430490911007, - -0.01804356835782528, - 0.020563770085573196, - 0.018191026523709297, - 0.005090672522783279, - -0.005087321158498526, - 0.013519270345568657, - -0.004772295709699392, - 0.00030434277141466737, - -0.003004468511790037, - 0.004386893007904291, - -0.01945112645626068, - -0.012741762213408947, - -0.03844647482037544, - 0.002183392411097884, - -0.02465239353477955, - 0.009752374142408371, - -0.024518340826034546, - -0.01144814770668745, - -0.003029603511095047, - 0.004574567545205355, - -0.004571216180920601, - -0.007352821063250303, - 0.007734872866421938, - 0.023767642676830292, - -0.006977471988648176, - 0.011930739507079124, - 0.02611357346177101, - -0.01292943675071001, - 0.006273692473769188, - -0.00486278161406517, - -0.0056000747717916965, - 0.012922734022140503, - 0.012835599482059479, - -0.027856266126036644, - -0.020965928211808205, - 0.048098307102918625, - 0.013753863982856274, - -0.005234779790043831, - -0.012641222216188908, - 0.022480729967355728, - -0.02922360971570015, - -0.0019806367345154285, - 0.006431204732507467, - 0.03841966390609741, - -0.0009132378036156297, - 0.00507391570135951, - 0.027936698868870735, - -0.013887917622923851, - 0.002144852187484503, - 0.030483709648251534, - -0.003760193707421422, - -0.02425023354589939, - -0.02077825367450714, - -0.004222677554935217, - -0.0044706761837005615, - 0.0019739342387765646, - -0.024491529911756516, - -0.0035390059929341078, - -0.0006124558276496828, - -0.004688512533903122, - -0.0009601564379408956, - -0.019491342827677727, - -0.015469745732843876, - 0.025684604421257973, - -0.0019387451466172934, - 0.002164960140362382, - 0.03407633677124977, - 0.006856823805719614, - 0.026998326182365417, - -0.018901508301496506, - -0.011421337723731995, - -0.012781977653503418, - 0.02986706607043743, - 0.004112083464860916, - 0.031127166002988815, - -0.01290262583643198, - 0.024853473529219627, - 0.0050001866184175014, - -0.005201266147196293, - -0.003693167120218277, - -0.012064793147146702, - -0.020617390051484108, - -0.036408863961696625, - 0.002632470801472664, - 0.030698195099830627, - 0.011910631321370602, - -0.008338112384080887, - 0.00855259783565998, - -0.021582573652267456, - 0.0064278533682227135, - -0.0156440157443285, - -0.03606032580137253, - -0.002035933779552579, - 0.02187749184668064, - -0.03150251507759094, - -0.043245580047369, - 0.0006354962242767215, - 0.02981344424188137, - 0.017426922917366028, - 0.007540495600551367, - -0.004259542096406221, - -0.003709923941642046, - -0.012996463105082512, - -0.03402271494269371, - 0.0031401976011693478, - 0.0012115063145756721, - -0.015804879367351532, - -0.005221374332904816, - -0.002672686707228422, - 0.026073358952999115, - -0.020818470045924187, - -0.003009495558217168, - 0.006964066531509161, - 0.02475963532924652, - 0.01572444662451744, - 0.010657234117388725, - 0.027802644297480583, - 0.016394713893532753, - -0.013224354013800621, - -0.02345931902527809, - -0.017158817499876022, - -0.010429343208670616, - -0.018901508301496506, - 0.011133123189210892, - -0.013418731279671192, - 0.000509402365423739, - -0.002607335802167654, - 0.007292496971786022, - 0.008492273278534412, - -0.004306460730731487, - -0.03758853301405907, - -0.039652951061725616, - -0.007976168766617775, - 0.008840812370181084, - 0.021126793697476387, - 0.005090672522783279, - -0.01439731940627098, - 0.011260473169386387, - 0.012158630415797234, - 0.012064793147146702, - -0.01032210048288107, - -0.003820517798885703, - 0.012165333144366741, - 0.00693055335432291, - -0.002540309214964509, - -0.034827034920454025, - -0.6331603527069092, - -0.012714951299130917, - 0.0026425248943269253, - -0.00037178833736106753, - -0.006706014275550842, - 0.03402271494269371, - 0.0020074474159628153, - -0.0036361946258693933, - 0.002766523975878954, - 0.05153007060289383, - -0.004490783903747797, - 0.008324706926941872, - -0.004799106623977423, - 0.0021817167289555073, - -0.012560790404677391, - -0.016904115676879883, - -0.008344815112650394, - -0.013492460362613201, - 0.03434444218873978, - -0.0030145226046442986, - -0.02386147901415825, - 0.0236872099339962, - 0.01022156048566103, - 0.004309812095016241, - 0.002195121953263879, - 0.007828709669411182, - 0.017976541072130203, - -0.013023274019360542, - 0.011401229538023472, - -0.007620927412062883, - -0.023419104516506195, - 0.015523366630077362, - -0.023982128128409386, - 0.01513461209833622, - 0.03984062746167183, - -0.002195121953263879, - 0.005097375251352787, - 0.026730218902230263, - 0.011193446815013885, - 0.01160230953246355, - -0.006672500632703304, - -0.03134164959192276, - -0.0028653882909566164, - 0.002892198972404003, - -0.0003386939351912588, - 0.0029491716995835304, - 0.05270973965525627, - 0.002231986727565527, - 0.01144814770668745, - -0.029491716995835304, - 0.001744367997162044, - -0.0026140385307371616, - 0.017681624740362167, - 0.010261776857078075, - 0.024075964465737343, - -0.011394526809453964, - 0.032682184129953384, - -0.012788680382072926, - -0.026207411661744118, - 0.011387824080884457, - -0.0021917708218097687, - 0.010281885042786598, - 0.013277974911034107, - -0.02547011896967888, - -0.016528766602277756, - 0.01699795201420784, - -0.014209644868969917, - -0.039170362055301666, - 0.012051387690007687, - -0.014115807600319386, - -0.017949730157852173, - 0.023419104516506195, - -0.008572706021368504, - -0.026663191616535187, - 0.02560417167842388, - 0.016877304762601852, - 0.013412028551101685, - -0.016649413853883743, - -0.003294358728453517, - 0.0211804136633873, - -0.0016639360692352057, - 0.0006748743471689522, - -0.009759076870977879, - 0.011394526809453964, - 0.022252840921282768, - -0.01569763571023941, - -0.01916961558163166, - 0.011588904075324535, - 0.00011729660036507994, - 0.00743325287476182, - 0.02018842101097107, - 0.03922398388385773, - -0.016166822984814644, - -0.021327873691916466, - -0.010737665928900242, - 0.02970620058476925, - -0.017091790214180946, - 0.018646808341145515, - 0.0008671570103615522, - -0.03024241514503956, - -0.031288031488657, - -0.0016488550463691354, - 0.023727426305413246, - -0.01914280466735363, - 0.023445913568139076, - 0.0066121770069003105, - -0.0033881959971040487, - -0.0014025322161614895, - 0.014276671223342419, - -0.024437908083200455, - 0.012869112193584442, - -0.01727946475148201, - 0.0005491994088515639, - -0.004256190732121468, - 0.002585552167147398, - -0.022936511784791946, - 0.02919679880142212, - 0.004041705746203661, - 0.01221225131303072, - -0.0027263080701231956, - 0.012098305858671665, - 0.005328617058694363, - 0.03399590402841568, - -0.026609571650624275, - -0.020684417337179184, - 0.024545151740312576, - 0.020228635519742966, - 0.007312605157494545, - 0.01302997674793005, - -0.01332489401102066, - 0.010462856851518154, - -0.004584621172398329, - 0.02284267544746399, - -0.01697114296257496, - 0.011823496781289577, - 0.005643642041832209, - 0.02687767706811428, - -0.016247253865003586, - -0.006538447458297014, - -0.021984733641147614, - -0.025563955307006836, - 0.011937442235648632, - 0.004370136186480522, - -0.026757029816508293, - -0.015107802115380764, - -0.032172780483961105, - -0.011367715895175934, - 0.01575125753879547, - 0.004738782532513142, - -0.0069439588114619255, - 0.0033697637263685465, - -0.011568795889616013, - 0.0019203128758817911, - 0.024022342637181282, - -0.006803202908486128, - 0.004902997985482216, - -0.019558370113372803, - -0.007158443797379732, - -0.010496369563043118, - -0.017493950203061104, - 0.008988270536065102, - 0.02973301149904728, - -0.03152932599186897, - -0.0025067958049476147, - 0.005814559757709503, - -0.026301247999072075, - 0.01074436865746975, - 0.008190654218196869, - -0.031100355088710785, - -0.04187823832035065, - 0.015094396658241749, - 0.003512195311486721, - -0.010791286826133728, - 0.013097003102302551, - -0.009671942330896854, - 0.011025880463421345, - -0.03203872963786125, - -0.006025693845003843, - -0.020858686417341232, - -0.023781048133969307, - 0.012614411301910877, - 0.00716514652594924, - -0.011032583191990852, - 0.002761497162282467, - 0.01985328644514084, - 0.004021597560495138, - 0.009135729633271694, - 0.002082852413877845, - -0.0004210110055282712, - 0.04399627819657326, - -0.008981567807495594, - 0.031609758734703064, - -0.01370694488286972, - 0.01128058135509491, - -0.02475963532924652, - 0.008445355109870434, - 0.0019353938987478614, - -0.015416123904287815, - -0.0064881774596869946, - 0.028446100652217865, - 0.031073544174432755, - 0.007982871495187283, - 0.015590393915772438, - -0.014665425755083561, - 0.01366672944277525, - -0.006706014275550842, - 0.01140793226659298, - -0.013505865819752216, - 0.03169018775224686, - 0.0356849767267704, - 0.010992366820573807, - -0.019947124645113945, - -0.012674734927713871, - -0.0011025880230590701, - 0.007057903800159693, - 0.04187823832035065, - -0.01545634027570486, - 0.007734872866421938, - 0.02866058610379696, - 0.0038406257517635822, - -0.009759076870977879, - -0.0039009496103972197, - 0.048607710748910904, - 0.014477751217782497, - -0.013499163091182709, - -0.009028486907482147, - 0.006146341562271118, - 0.01880767196416855, - 0.008110221475362778, - -0.01359300035983324, - -0.004547756630927324, - 0.0029307391960173845, - 0.0033094396349042654, - 0.017091790214180946, - 0.010208155028522015, - 0.008532489649951458, - 0.023164402693510056, - -0.0041053807362914085, - 0.040108732879161835, - 0.016046173870563507, - 0.013995159417390823, - 0.024692609906196594, - 0.007842115126550198, - -0.002428039675578475, - 0.0039009496103972197, - -0.015040774829685688, - 0.021944517269730568, - 0.03343288227915764, - -0.008056600578129292, - -0.0050437538884580135, - -0.019813071936368942, - 0.003626140533015132, - -0.012989760376513004, - -0.010067399591207504, - 0.0070914169773459435, - -0.01993371918797493, - 0.032655373215675354, - -0.012332899495959282, - 0.015630610287189484, - 0.018445728346705437, - 0.013847701251506805, - 0.023016944527626038, - 0.0065518529154360294, - -0.011273878626525402, - 1.2927498573844787e-05, - 0.0020191771909594536, - -0.03083224780857563, - -0.009671942330896854, - -0.020389501005411148, - 0.00689704017713666, - 0.005147644784301519, - 0.0020158258266747, - -0.012004468590021133, - -0.010663936845958233, - 0.0214887373149395, - -0.011092906817793846, - -0.0030161982867866755, - 0.016863899305462837, - 0.02978663332760334, - -5.665190201398218e-06, - -0.017949730157852173, - -0.02453174628317356, - 0.008726866915822029, - 0.02600633166730404, - -0.01914280466735363, - -0.015657419338822365, - 0.005110780242830515, - 0.003076522145420313, - -0.02769540250301361, - -0.017574381083250046, - -0.01024837139993906, - 0.003492087358608842, - -0.009370322339236736, - -0.01707838475704193, - 0.0012936139246448874, - 0.013365109451115131, - 0.022346677258610725, - 0.0057810465805232525, - 0.004708620719611645, - 0.02715918980538845, - 0.010456154122948647, - -0.020201826468110085, - -0.01620703935623169, - -0.03415676951408386, - 0.027561349794268608, - 0.0036093839444220066, - -0.019692422822117805, - -0.021689817309379578, - 0.0010908583644777536, - -0.023593373596668243, - -0.016555577516555786, - 0.008532489649951458, - -0.006206665653735399, - 0.008612921461462975, - -0.003713275073096156, - -0.0029960903339087963, - 0.011890524066984653, - 0.00998026505112648, - 0.043379634618759155, - 0.007493576966226101, - -0.019558370113372803, - -0.01707838475704193, - 0.006571960635483265, - 0.022226030007004738, - 0.006856823805719614, - 0.027990318834781647, - 0.012051387690007687, - 0.011555390432476997, - -0.009095513261854649, - -0.019075777381658554, - -0.008445355109870434, - -0.03493427857756615, - 0.018392106518149376, - 0.02292310632765293, - -0.0055833179503679276, - -0.0032373860012739897, - 0.03233364596962929, - -0.010596909560263157, - -0.0019487992394715548, - -0.004708620719611645, - 0.0026475517079234123, - -0.017855893820524216, - 0.02634146437048912, - 0.010797989554703236, - -0.02439769171178341, - 0.011736362241208553, - 0.004373487550765276, - 0.02679724618792534, - 0.009986967779695988, - -0.010871718637645245, - 0.025684604421257973, - 0.013358406722545624, - 0.014303482137620449, - -0.026274437084794044, - -0.01569763571023941, - 0.042307205498218536, - 0.0018432323122397065, - 0.015027370303869247, - -0.02202495001256466, - -0.006783094722777605, - -0.0032223050948232412, - -0.00031397785642184317, - 0.0001699753338471055, - 0.0006995904259383678, - 0.00044237574911676347, - 0.022185813635587692, - 0.011213555000722408, - -0.006823310628533363, - 0.0064446101896464825, - -0.010570099577307701, - 0.006608825642615557, - 0.012118414044380188, - -0.012714951299130917, - -0.022453920915722847, - 0.010268479585647583, - -0.030027929693460464, - 0.005033699795603752, - 0.0009836157551035285, - 0.005023645702749491, - -0.02820480428636074, - 0.012621114030480385, - -0.020603984594345093, - -0.00987972505390644, - -0.006360827013850212, - -0.03228002414107323, - -0.01666281931102276, - 0.025684604421257973, - -0.015483151189982891, - -0.029464906081557274, - -0.009350214153528214, - -0.0265425443649292, - 0.0004507540725171566, - -0.015362503007054329, - 0.018284864723682404, - 0.004001489840447903, - -0.017038168385624886, - -0.03418358042836189, - -0.009531186893582344, - 0.013780674897134304, - -0.01037572231143713, - 0.016917521134018898, - -0.0006874418468214571, - -0.016501955687999725, - 0.001024669618345797, - -0.02411618083715439, - -0.011609012261033058, - -0.010710855014622211, - -0.026891082525253296, - -0.020684417337179184, - 0.014437535777688026, - -0.01369354035705328, - 0.011756470426917076, - -0.005274995695799589, - 0.009135729633271694, - -0.00031062652124091983, - 0.013345001265406609, - 0.002630795119330287, - -0.002459877170622349, - -0.0047857011668384075, - 0.018110595643520355, - 0.008505678735673428, - 0.003579221898689866, - 0.01643492840230465, - -0.007057903800159693, - 0.017963135614991188, - -0.013941538520157337, - -0.012594303116202354, - 0.0026827408000826836, - 0.027199406176805496, - 0.005104077514261007, - -0.004477378912270069, - -0.015268665738403797, - 0.013351703993976116, - 0.013277974911034107, - 0.003706572577357292, - -0.021703222766518593, - -0.004624837078154087, - 0.00987972505390644, - 0.0013338299468159676, - 0.005063861608505249, - -0.002407931489869952, - 0.01651536114513874, - 0.027936698868870735, - 0.0067596351727843285, - -0.010610315017402172, - -0.02769540250301361, - 0.03833923116326332, - 0.0038406257517635822, - -0.011092906817793846, - 0.028017129749059677, - -0.013257866725325584, - -0.00427629891782999, - -0.041663751006126404, - 0.009055297821760178, - 0.0239955335855484, - 0.015483151189982891, - 0.003522249171510339, - -0.011709552258253098, - -0.007761683315038681, - 9.200452041113749e-05, - 0.009115621447563171, - 0.008586110547184944, - -0.007875628769397736, - 0.0008160491706803441, - -0.012668032199144363, - 0.019772855564951897, - -0.014517967589199543, - 0.016166822984814644, - 0.02190430276095867, - -0.03139527142047882, - -0.031288031488657, - 0.01778886653482914, - -0.020657606422901154, - 0.04112754017114639, - -0.02292310632765293, - -0.013097003102302551, - -0.028553342446684837, - -0.02213219180703163, - -0.002585552167147398, - -0.03774939849972725, - -0.004484081175178289, - -0.016086390241980553, - 0.009182647801935673, - 0.01807037927210331, - 0.026810651645064354, - -0.004849376622587442, - -0.006598771549761295, - 0.000951778085436672, - -0.009919940494000912, - 0.0097121587023139, - -0.02190430276095867, - -0.006079315207898617, - -0.020630795508623123, - 0.0257516298443079, - 0.006675851996988058, - 0.003043008968234062, - 0.010060696862637997, - 0.008204059675335884, - 0.013505865819752216, - 0.05147644877433777, - -0.01855297014117241, - -0.01615341752767563, - -0.0015424502780660987, - -0.016850493848323822, - -0.001162074157036841, - 0.014879911206662655, - 0.011273878626525402, - 0.02677043527364731, - -0.030001118779182434, - -0.0044103520922362804, - 0.0032675480470061302, - -0.030054740607738495, - -0.018847888335585594, - -0.009437349624931812, - 0.022990133613348007, - -0.02080506458878517, - 0.028285237029194832, - 0.012674734927713871, - 0.006870229262858629, - -0.015684230253100395, - 0.000745252298656851, - -0.027856266126036644, - -0.016783468425273895, - 0.021193819120526314, - -0.0017276112921535969, - 0.01595233753323555, - -0.005549804773181677, - -0.0026190655771642923, - 0.002516849897801876, - -0.011924036778509617, - 0.026663191616535187, - -0.008874325081706047, - -0.005543102044612169, - -0.013552783988416195, - -0.03080543875694275, - -0.020054366439580917, - -0.0031418732833117247, - -0.004071867559105158, - 0.005951964762061834, - 0.0016195308417081833, - 0.005003537517040968, - 0.02764178067445755, - -0.009886427782475948, - -0.002806740114465356, - 0.0001260938443010673, - 0.006950661074370146, - 0.010777881368994713, - 0.004970024339854717, - 0.02092571370303631, - 0.02626103349030018, - -0.03930441290140152, - -0.012849004939198494, - -0.06541799008846283, - 0.020175015553832054, - -0.01758778654038906, - 0.025952709838747978, - 0.006739527452737093, - -0.030590953305363655, - 0.0035188980400562286, - 0.00916253961622715, - 0.015094396658241749, - -0.014745858497917652, - -0.005154347512871027, - 0.026864271610975266, - 0.015201639384031296, - -0.008364923298358917, - -0.004919754341244698, - 0.006823310628533363, - -0.019518153741955757, - -0.004024948924779892, - 0.001967231510207057, - 0.002094582188874483, - -0.002541984897106886, - 0.00049138895701617, - 0.00039252470014616847, - 0.039143551141023636, - 0.003049711463972926, - 0.013767269439995289, - 0.0063541242852807045, - -0.03984062746167183, - 0.003113386919721961, - -0.026381680741906166, - -0.01679687201976776, - -0.004554459359496832, - -0.017038168385624886, - 0.04472016543149948, - -0.011367715895175934, - -0.0048761870712041855, - -0.004035003017634153, - 0.006833364721387625, - 0.0075002796947956085, - -0.008183951489627361, - -0.013458946719765663, - 0.022722026333212852, - -0.01462521031498909, - 0.013599703088402748, - 0.02179705910384655, - -0.00012368508032523096, - 0.005120834335684776, - 0.0009040216682478786, - 0.0009676969493739307, - -0.01939750649034977, - 0.00040739623364061117, - -0.00916253961622715, - 9.7921714768745e-05, - 0.010462856851518154, - -0.016475144773721695, - -0.008371626026928425, - -0.005811208393424749, - -0.027320053428411484, - 0.0023157699033617973, - -0.020912308245897293, - 0.01592552661895752, - -0.02970620058476925, - -0.01236641313880682, - 0.012560790404677391, - 0.011354310438036919, - 0.029920686036348343, - -0.003046360332518816, - -0.022936511784791946, - -0.012292683124542236, - 0.020483337342739105, - -0.03815155476331711, - 0.016247253865003586, - 0.034237202256917953, - -0.0044271089136600494, - -0.012031279504299164, - 0.0009903183672577143, - -0.005087321158498526, - -0.01410240214318037, - 0.02521541714668274, - -0.018754050135612488, - -0.025590766221284866, - -0.008592813275754452, - -0.001836529583670199, - 0.02100614458322525, - -0.013727053068578243, - -0.01651536114513874, - 0.002607335802167654, - 0.014450941234827042, - -0.0022688512690365314, - -0.004601377993822098, - -0.010013777762651443, - -0.009933345951139927, - 0.022319866344332695, - -0.005606777500361204, - 0.02677043527364731, - -0.014209644868969917, - 0.013633215799927711, - 0.008076708763837814, - -0.024129586294293404, - 0.0061563956551253796, - -0.03174380958080292, - -0.013525973074138165, - -0.0007243065047077835, - 0.006307205650955439, - -0.03758853301405907, - 0.012218954041600227, - -0.019263451918959618, - -0.01584509387612343, - -0.010637125931680202, - 0.02018842101097107, - -0.0018884752644225955, - 0.014169429428875446, - 0.01027518231421709, - -0.00345187122002244, - -0.013304785825312138, - 0.02769540250301361, - -0.0006832526996731758, - -0.008023086935281754, - 0.025617577135562897, - 0.00024108639627229422, - -0.037990693002939224, - 0.006706014275550842, - -0.017413517460227013, - 0.02634146437048912, - 0.02182387001812458, - -0.026073358952999115, - -0.01167603861540556, - -0.00044028114643879235, - -0.019839880988001823, - -0.007795196957886219, - -0.008297896943986416, - 0.005610128864645958, - 0.0034585739485919476, - 0.00862632691860199, - -0.016046173870563507, - 0.04147607833147049, - -0.005908397026360035, - 0.01985328644514084, - -0.01671644113957882, - -0.027480917051434517, - -0.01459839940071106, - 0.0030128469225019217, - 0.009323404170572758, - -0.001074939500540495, - -0.0511547215282917, - -0.010523180477321148, - 0.029572147876024246, - 0.00033115342375822365, - 0.014906722120940685, - 0.028338858857750893, - 0.0010305343894287944, - -0.020885497331619263, - 0.014196239411830902, - 0.01730627566576004, - 0.02560417167842388, - -0.002451498992741108, - 0.0035390059929341078, - -0.022748837247490883, - -0.00549283204600215, - 0.01154868770390749, - 0.00786222331225872, - -0.03597989305853844, - -0.02057717554271221, - 0.01677006296813488, - -0.010020480491220951, - -0.014048781245946884, - 0.007815305143594742, - -0.02583206258714199, - -0.006699311546981335, - -0.019746044650673866, - 0.016408119350671768, - 0.022239435464143753, - -0.03201191872358322, - 0.016113201156258583, - 0.01615341752767563, - -0.01115323044359684, - -0.02914317697286606, - 0.0025118228513747454, - -0.022239435464143753, - 0.0034384659957140684, - -0.0028854962438344955, - -0.02394191175699234, - 0.019813071936368942, - -0.0047689443454146385, - 0.013633215799927711, - 0.0050437538884580135, - -0.00021343791740946472, - -0.032655373215675354, - -0.021931111812591553, - -0.020831875503063202, - 0.043352823704481125, - 0.022427110001444817, - -0.024437908083200455, - -0.0015223423251882195, - -0.0069439588114619255, - -0.006521690636873245, - -0.007527090143412352, - -0.025054553523659706, - 0.006186557933688164, - -0.029330851510167122, - -0.003031279193237424, - -0.003049711463972926, - -0.008760380558669567, - -0.006762986537069082, - -0.0020158258266747, - -0.005770992487668991, - -0.029652580618858337, - -0.012795383110642433, - 0.18928319215774536, - -0.03356693685054779, - -0.016676224768161774, - 0.006528393365442753, - -0.029518526047468185, - -0.03026922419667244, - 0.028580153360962868, - 0.0031770621426403522, - 0.013351703993976116, - 0.025671198964118958, - 0.0070914169773459435, - -0.0006882796878926456, - 0.0006354962242767215, - 0.0021096630953252316, - 0.016274064779281616, - -0.005191212520003319, - -0.03721318393945694, - -0.012399925850331783, - -0.0006363340653479099, - 0.01855297014117241, - 0.013452243991196156, - -0.02504114806652069, - -0.0007699683774262667, - -0.015402719378471375, - 0.05364811420440674, - 0.01237981766462326, - 0.004571216180920601, - 0.0031971700955182314, - 0.04083262011408806, - 0.03182424232363701, - -0.027909887954592705, - 0.0035256005357950926, - 0.01435710396617651, - -0.0009006703039631248, - 0.004450567997992039, - 0.010315397754311562, - 0.01277527492493391, - -0.010536585934460163, - 0.026167195290327072, - 0.02261478453874588, - 0.013499163091182709, - -0.025403091683983803, - -0.009544591419398785, - -0.03729361668229103, - 0.002915658289566636, - 0.023673804476857185, - -0.0007837926386855543, - 0.007111525163054466, - -2.72295674221823e-05, - 0.0021347980946302414, - -0.010677341371774673, - 0.016930926591157913, - 0.008016384206712246, - 0.03396909311413765, - -0.01317073218524456, - -0.029464906081557274, - 0.006136287935078144, - -0.006347421556711197, - 0.012601005844771862, - -0.00040697731310501695, - -0.021153602749109268, - 0.01128058135509491, - -0.021609384566545486, - 0.01575125753879547, - -0.02467920444905758, - 0.0032809535041451454, - -0.02156916819512844, - -0.002743064658716321, - 0.011850307695567608, - -0.02544330805540085, - 0.007506982423365116, - -0.014705642126500607, - -0.021247440949082375, - 0.012440142221748829, - -0.03241407871246338, - -0.03461255133152008, - 0.00918935053050518, - 0.004028300289064646, - 0.029893875122070312, - 0.02427704446017742, - 0.0018683671951293945, - 0.009309998713433743, - -0.01620703935623169, - -0.03882182389497757, - -0.005191212520003319, - -0.0322532132267952, - 0.009356916882097721, - -0.0031469000969082117, - -0.0008772109868004918, - -0.01985328644514084, - -0.02922360971570015, - 0.0038774902932345867, - -0.006592068821191788, - -0.012849004939198494, - 0.00823086965829134, - -0.006491528823971748, - 0.02021523006260395, - 0.005660398863255978, - -0.010751071386039257, - -0.0008730218396522105, - -0.02067101188004017, - 0.0701366662979126, - 0.04107391834259033, - -0.011166635900735855, - -0.011528579518198967, - -0.007627630140632391, - -0.002515174215659499, - 0.03088586963713169, - -0.00729919970035553, - 0.0011671012034639716, - -0.012473654933273792, - -0.027266431599855423, - 0.019491342827677727, - -0.024102775380015373, - 0.012761869467794895, - 0.020992739126086235, - 0.005147644784301519, - -0.003386520314961672, - 0.002297337632626295, - -0.0060390993021428585, - -0.0038774902932345867, - 0.003225656459107995, - 0.021864086389541626, - 0.0010950475698336959, - 0.013056786730885506, - -0.02600633166730404, - -0.030725006014108658, - 0.03147570416331291, - -0.016140012070536613, - 0.005459318868815899, - 0.024210017174482346, - -0.02343250811100006, - 0.026958109810948372, - -0.00034623441752046347, - 0.01973263919353485, - -0.0004134705231990665, - -0.0273334588855505, - -0.030081549659371376, - -0.012158630415797234, - 0.0038707877974957228, - 0.02134127914905548, - 0.002540309214964509, - 0.017346492037177086, - 0.003116738284006715, - 0.010764476843178272, - 0.002501768758520484, - 0.02863377518951893, - 0.0009785887086763978, - -0.02427704446017742, - -0.028017129749059677, - -0.009973562322556973, - -0.00015751257888041437, - 0.0007109011639840901, - -0.021019550040364265, - 0.019786261022090912, - 0.025081364437937737, - -0.01266133040189743, - -0.034827034920454025, - 0.013338298536837101, - 0.005901694763451815, - -0.023365482687950134, - -0.009222864173352718, - 0.00029554552747868, - -0.008767083287239075, - -0.00835822056978941, - -0.01489331666380167, - -0.17040850222110748, - 0.00862632691860199, - 0.006675851996988058, - -0.026958109810948372, - 0.017185626551508904, - 0.0009735617786645889, - 0.022655000910162926, - 0.028419289737939835, - -0.017735246568918228, - -0.009377025067806244, - 0.027239620685577393, - 0.008029789663851261, - -0.015590393915772438, - -0.013157326728105545, - -0.006065909750759602, - -0.002429715357720852, - -0.023646993562579155, - 0.024290449917316437, - 0.028285237029194832, - 0.0161266066133976, - -0.000984453596174717, - -0.02253435179591179, - 0.01538931392133236, - 0.0020191771909594536, - 0.009222864173352718, - 0.012151927687227726, - -0.020429715514183044, - 0.0149201275780797, - -0.01916961558163166, - -0.016072984784841537, - -0.01789611019194126, - 0.0013748836936429143, - 0.013901322148740292, - 0.0009852914372459054, - -0.005234779790043831, - -0.02029566280543804, - -0.0010313722304999828, - -0.005683857947587967, - -0.002344256266951561, - 0.028821449726819992, - 0.012332899495959282, - 0.034264013171195984, - -0.010369019582867622, - 0.018539564684033394, - 0.004698566626757383, - 0.02470601536333561, - 0.019772855564951897, - -0.019839880988001823, - -0.004226028919219971, - -0.02317780815064907, - -0.0020878794603049755, - -0.017829082906246185, - -0.006414448376744986, - 0.01115323044359684, - -0.011629119515419006, - 0.021113388240337372, - -0.012453547678887844, - 0.018673619255423546, - 0.0035256005357950926, - 0.002959225559607148, - -0.017708435654640198, - -0.01666281931102276, - 0.01433029305189848, - -0.001305343583226204, - -0.015992553904652596, - -0.016528766602277756, - -0.012359710410237312, - 0.023285049945116043, - -0.017319681122899055, - -0.004494135268032551, - -0.0035892759915441275, - -0.03780301660299301, - 0.011629119515419006, - 0.00120731710921973, - 0.005462670233100653, - 0.02261478453874588, - -0.009645131416618824, - -0.009041892364621162, - -0.003937814384698868, - -0.002406256040558219, - -0.011213555000722408, - 0.03890225291252136, - -0.004504189360886812, - -0.03244088590145111, - -0.011950847692787647, - -0.000524064467754215, - -0.0008194005349650979, - 0.02332526631653309, - -0.01486650574952364, - 0.007634332869201899, - 0.01880767196416855, - -0.023338671773672104, - -0.013378514908254147, - -0.027829455211758614, - 0.015764662995934486, - -0.003951219841837883, - -0.006072612479329109, - 0.007379631511867046, - -0.01886129379272461, - -0.0025956062600016594, - 0.010596909560263157, - -0.0216227900236845, - -0.034853845834732056, - 0.014142618514597416, - -0.00027732265880331397, - -0.0005722398054786026, - -0.022427110001444817, - -0.0020242042373865843, - 0.0464092381298542, - -0.022011544555425644, - -0.01914280466735363, - -0.012567493133246899, - 0.016193633899092674, - 0.009765779599547386, - -0.01014783140271902, - 0.01702476292848587, - 0.009236269630491734, - -0.006786446087062359, - 0.013646621257066727, - -0.0055397506803274155, - 0.06413107365369797, - -0.012976354919373989, - -0.0029106312431395054, - 0.0224137045443058, - -0.002188419457525015, - -0.0331379659473896, - -0.09850233048200607, - 0.0025805251207202673, - 0.021756842732429504, - 0.0216227900236845, - 0.009511078707873821, - 0.024102775380015373, - 0.003207224188372493, - 0.006236827466636896, - 0.011079501360654831, - 0.04410352185368538, - -0.01513461209833622, - -0.033218394964933395, - -0.03412995859980583, - -0.032119158655405045, - 0.016810277476906776, - -0.01437050849199295, - -0.002779929433017969, - -0.02044312097132206, - -0.024049153551459312, - 0.040135543793439865, - -0.013291380368173122, - -0.003773599164560437, - 0.0010983988177031279, - 4.835866275243461e-05, - -0.013874512165784836, - -0.0014678831212222576, - -0.03989424929022789, - 0.018847888335585594, - 0.017413517460227013, - -0.008170546032488346, - 0.030430089682340622, - -0.02258797362446785, - -0.002097933553159237, - -0.013485757634043694, - -0.008800595998764038, - -0.0066691492684185505, - -0.012145224958658218, - -0.010007075034081936, - 0.025590766221284866, - -0.01115323044359684, - -0.0059150997549295425, - 0.02095252461731434, - 0.019786261022090912, - -0.016300875693559647, - -0.008029789663851261, - -0.023579968139529228, - -0.014437535777688026, - 0.026462113484740257, - -0.0006375907687470317, - -0.005650344770401716, - -0.04249488189816475, - -0.03144889324903488, - -0.023781048133969307, - 0.020898902788758278, - 0.018110595643520355, - -0.0014058834640309215, - -0.005462670233100653, - -0.015603798441588879, - -0.015375908464193344, - -0.00848557148128748, - -0.032226402312517166, - 0.018794266507029533, - -0.029598958790302277, - 0.030644573271274567, - -0.006424502469599247, - -0.010898529551923275, - -0.009745671413838863, - -0.02057717554271221, - 0.023848073557019234, - 0.002789983293041587, - -0.018780861049890518, - 0.009102215990424156, - 0.01024837139993906, - 0.0015282070962712169, - -0.01908918283879757, - -0.00798957422375679, - -0.052924226969480515, - -0.015992553904652596, - 0.012989760376513004, - -0.006350772920995951, - -0.007111525163054466, - -0.025389686226844788, - 0.022038355469703674, - -0.027373675256967545, - 0.02501433715224266, - 0.021864086389541626, - 0.0019756099209189415, - -0.016649413853883743, - 0.012011171318590641, - -0.007895736955106258, - -0.014169429428875446, - 0.012131819501519203, - 0.016729846596717834, - 0.002768199658021331, - -0.03246769681572914, - 0.01993371918797493, - 0.0007335226400755346, - -0.00042415288044139743, - 0.0027547944337129593, - 0.0016203686827793717, - -0.01457158848643303, - -0.009142432361841202, - -0.043835412710905075, - 0.02879463881254196, - 0.024464718997478485, - -0.002986036241054535, - -0.016917521134018898, - -0.0032105755526572466, - 0.0037937071174383163, - 0.015791473910212517, - 0.01809719018638134, - 0.0003516803262755275, - -0.015912121161818504, - -0.00036236271262168884, - -0.012520574033260345, - -0.010114317759871483, - -0.04461292177438736, - -0.03675740212202072, - -0.0014226401690393686, - 0.014182833954691887, - -0.000768711615819484, - 0.004252839367836714, - -0.007084714714437723, - 0.012218954041600227, - 0.009692050516605377, - 0.01659579388797283, - -0.02930404245853424, - -0.007292496971786022, - -0.005650344770401716, - -0.002448147628456354, - -0.009799293242394924, - -0.013231056742370129, - -0.0017611245857551694, - -0.0008566840551793575, - -0.0014092348283156753, - 0.007252281066030264, - -0.01727946475148201, - 0.0005450102617032826, - 0.0076075224205851555, - 0.03147570416331291, - 0.023392293602228165, - 0.045363619923591614, - -0.011347607709467411, - -0.01849934831261635, - -0.0018197729950770736, - -0.020711228251457214, - -0.0003560789627954364, - 0.01032210048288107, - 0.006374232470989227, - 0.011897226795554161, - 0.00756060378625989, - -0.008264383301138878, - 0.03707912936806679, - 0.00796276330947876, - 0.010429343208670616, - -0.006431204732507467, - 0.01437050849199295, - -0.0005219698650762439, - 0.004272947553545237, - 0.0103489113971591, - 0.015590393915772438, - -0.035309627652168274, - 0.053380005061626434, - 0.009893130511045456, - 0.0022705269511789083, - -0.02134127914905548, - 0.009330106899142265, - -0.0157780684530735, - -0.028472911566495895, - -0.014021970331668854, - 0.0023777696769684553, - -0.007527090143412352, - -0.016863899305462837, - -0.0019571774173527956, - 0.01970582827925682, - 0.038580525666475296, - -0.007855520583689213, - -0.011622416786849499, - 0.010978961363434792, - 0.02233327180147171, - -0.004148948471993208, - 0.01615341752767563, - 0.02396872267127037, - 0.01433029305189848, - 0.0051007261499762535, - -0.010013777762651443, - 0.046972259879112244, - 0.009055297821760178, - -0.007647738326340914, - -0.003307764185592532, - -0.006464718375355005, - 0.007024390622973442, - -0.006997579708695412, - 0.02414299175143242, - -0.0011327499523758888, - 0.016327686607837677, - 0.013190840370953083, - 0.018646808341145515, - 0.0054492647759616375, - -0.006675851996988058, - 0.04056451469659805, - 0.04721355810761452, - 0.0007062930963002145, - -0.001613666070625186, - -0.0029558741953223944, - -0.030564142391085625, - -0.004071867559105158, - 0.015992553904652596, - -0.020376095548272133, - -0.02774902433156967, - 0.013036679476499557, - 0.01753416657447815, - -0.00746006378903985, - 0.012359710410237312, - 0.0011302365455776453, - 0.008887730538845062, - -0.018566375598311424, - 0.01154868770390749, - -0.02817799337208271, - -0.008726866915822029, - -0.025148389860987663, - 0.028580153360962868, - 0.02772221341729164, - 0.0020024206023663282, - -0.0021079874131828547, - 0.010007075034081936, - 0.030993113294243813, - -0.02049674279987812, - 0.021756842732429504, - -0.010308695025742054, - 0.008814001455903053, - -0.012178738601505756, - 0.01801675744354725, - 0.0038372743874788284, - -0.014491156674921513, - -0.0012793707428500056, - 7.859919423935935e-05, - 0.008096816949546337, - 0.02475963532924652, - 0.016636008396744728, - 0.0031653326004743576, - 0.1271897256374359, - 0.02455855719745159, - -0.0026643085293471813, - 0.0157780684530735, - -0.012473654933273792, - 0.007614224683493376, - 0.015590393915772438, - 0.012842302210628986, - 0.011213555000722408, - -0.05102067068219185, - 0.025711413472890854, - -0.007627630140632391, - 0.015938932076096535, - -0.03941165655851364, - 0.007352821063250303, - 0.033700987696647644, - 0.01233960222452879, - 0.0010146155254915357, - -0.023164402693510056, - 0.005097375251352787, - 0.0360335148870945, - -0.019303668290376663, - 0.015818284824490547, - 0.02916998788714409, - -0.023164402693510056, - -0.016381308436393738, - 0.021730031818151474, - 0.0020426365081220865, - 0.003555762581527233, - -0.024022342637181282, - -0.000485943048261106, - 0.012922734022140503, - -0.054961834102869034, - -0.022199219092726707, - 0.011086204089224339, - -0.02713237889111042, - -0.0005810370785184205, - -0.02386147901415825, - 0.005874883849173784, - 0.009544591419398785, - 0.016421522945165634, - 0.026462113484740257, - -0.007098119705915451, - -0.024947309866547585, - 0.009678645059466362, - 0.007024390622973442, - -0.0014695588033646345, - -0.011883821338415146, - -0.026194006204605103 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 38, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 402 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000039.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000039.json deleted file mode 100644 index b4c9465af882847c658854fbec507bd80bcce79f..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000039.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000039", - "content": "5 und Nr. 6 genutzt werden, um pr\u00e4zisere Ergebnisse zu erzielen. Ein Entlade- vorgang kann in \u00e4hnlicher Weise wie ein Beladevorgang betrachtet werden. W\u00e4hrend beim Beladen G\u00fcter in einen Anh\u00e4nger geladen werden, werden beim Entladen G\u00fcter aus dem Anh\u00e4nger entfernt. Aus der Thesis geht hervor, dass die Beladung sowohl mit einem Gabelstapler als auch mit einem Gabelhubwagen in \u00e4hnlicher Gr\u00f6\u00dfenordnung erfolgt wie die Beladung mit einem Handhubwagen gem\u00e4\u00df den aktuellen Prognosegrundlagen. Dennoch zeigt sich, dass die Beladung mit dem Gabelstapler und dem Gabelhubwagen deutlich leiser als bisher in Untersuchungen angesetzt vonstattengeht. Die Begr\u00fcndung f\u00fcr die genannten Aussagen und Schlussfolgerungen ergibt sich aus der Analyse der vorliegenden Thesis und den daraus abgeleiteten Erkenntnissen. Diese Erkenntnisse lassen darauf schlie\u00dfen, dass die Verwendung ein Gabelhubwagen im Vergleich zur Verwendung eines Gabel- staplers eine etwas h\u00f6here Ger\u00e4uschentwicklung aufweist und somit eine h\u00f6here L\u00e4rm- belastung verursacht. Obwohl die Schallleistungspegel der beiden Flurf\u00f6rderger\u00e4te identisch sind, zeigt sich ein Unterschied in der Impulshaftigkeit der Ger\u00e4uschentwick- lung. Der Gabelhubwagen erzeugt mehr impulsartige Schallereignisse, w\u00e4hrend der Ga- belstapler eine best\u00e4ndigere Ger\u00e4uschabstrahlung aufweist. Diese impulsbehafteten Ger\u00e4usche f\u00fchren zu einer subjektiven Wahrnehmung von L\u00e4rm. Bei einem Vergleich der Schallleistungspegel zwischen den verschiedenen Flurf\u00f6rderger\u00e4ten und Anh\u00e4nger- typen zeigt sich eine gewisse Variation. Allerdings l\u00e4sst sich kein signifikanter Unter- schied zwischen den Beladevorg\u00e4ngen der Flurf\u00f6rderger\u00e4te in den verschiedenen Anh\u00e4-\nngern feststellen, was auf eine gewisse \u00c4hnlichkeit hinweist. 75\n8 Abschlie\u00dfende Bewertung und Ausblick\nAuf diese Weise k\u00f6nnen zudem Ma\u00dfnahmen zur L\u00e4rmminderung gezielt entwickelt und umgesetzt werden, um die Gesamtemissionen zu reduzieren. Durch subjektives Erleben und H\u00f6ren w\u00e4hrend des Beladevorgangs konnten potenzielle Hauptursachen identifi- ziert werden, die zu einer erh\u00f6hten L\u00e4rmbelastung beitragen k\u00f6nnen. Insgesamt gibt es verschiedene M\u00f6glichkeiten, die L\u00e4rmbelastung zu senken. Durch gezielte Ma\u00dfnahmen, die an die individuellen Gegebenheiten angepasst sind, kann der L\u00e4rmpegel effektiv mi- nimiert werden. Es wurden verschiedene Ma\u00dfnahmen dargestellt, um die L\u00e4rmbelas- tung zu reduzieren. Dazu geh\u00f6ren die Anbringung einer weicheren Oberfl\u00e4che auf der \u00dcberladebr\u00fccke, die Verwendung einer Dr\u00f6hnfolie an der Unterseite der \u00dcberladebr\u00fc- cke, die Installation von speziell angepassten Schalld\u00e4mpfern im Anh\u00e4nger sowie Ma\u00df- nahmen auf dem Gel\u00e4nde und durch das richtige Verhalten des Personals. In Zukunft k\u00f6nnten weitere Untersuchungen durchgef\u00fchrt werden und bei Bedarf noch zus\u00e4tzliche spezifische Untersuchungen und Messungen f\u00fcr bestimmte Situationen von Flurf\u00f6rderger\u00e4te durchgef\u00fchrt werden, um eine detailliertere und pr\u00e4zisere Bewertung vorzunehmen. Ein Ansatz k\u00f6nnte darin bestehen, gezielte Untersuchungen zur Identifi- zierung der Hauptquellen des Schallpegels bei den Flurf\u00f6rderger\u00e4ten durchgef\u00fchrt wer- den. Dies erm\u00f6glicht eine gezielte Optimierung der schalltechnischen Eigenschaften die- ser Quellen, beispielsweise durch den Einsatz von schalld\u00e4mpfenden Materialien. Eine weitere M\u00f6glichkeit besteht darin, den Einfluss verschiedener Betriebsbedingungen und Parameter auf die Schallabstrahlung der Flurf\u00f6rderger\u00e4te zu untersuchen. Eine m\u00f6gliche Methode zur Identifizierung der Schallquellenentstehung k\u00f6nnte der Einsatz einer akus- tischen Kamera sein. Diese erm\u00f6glicht es, die Richtung und Position von Schallquellen visuell darzustellen und somit zur Lokalisierung und Analyse des Schallgeschehens bei-\n\n## zutragen.", - "embedding": [ - 0.008924118243157864, - 0.010180847719311714, - 0.015080757439136505, - -0.03917253389954567, - 0.0042915986850857735, - 0.018998010084033012, - -0.016992591321468353, - -0.008001625537872314, - -0.011130080558359623, - -0.020121045410633087, - 0.008810478262603283, - 0.017300087958574295, - -0.01881083846092224, - 0.01371707208454609, - 0.02088310569524765, - 0.0076540191657841206, - 0.04484118893742561, - 0.005354471039026976, - 0.011444262228906155, - -0.004722763784229755, - -0.033102795481681824, - 0.0002619579609017819, - 0.003340695286169648, - -0.019091596826910973, - -0.033744532614946365, - 0.019452571868896484, - 0.04115121439099312, - -0.023824388161301613, - -0.016604876145720482, - 0.011190243065357208, - 0.0007470189011655748, - -0.011664859019219875, - -0.005986178293824196, - 0.00131355004850775, - -0.02553568035364151, - -0.026150675490498543, - -0.004335049074143171, - -0.024853836745023727, - 0.00793477799743414, - -0.006965491455048323, - 0.022126466035842896, - -0.003987443167716265, - -0.00472610630095005, - -0.03681951016187668, - -0.003365762997418642, - 0.02740740403532982, - -0.008957542479038239, - 0.006507587619125843, - -0.01834290660917759, - 0.029332607984542847, - 0.011103341355919838, - 0.009037759155035019, - -0.02315591461956501, - 0.024947423487901688, - -0.017206503078341484, - 0.006778318900614977, - -0.002931255381554365, - -0.000714013003744185, - 0.001484010717831552, - -0.029172174632549286, - -0.031150855123996735, - 0.021511470898985863, - -0.02310243621468544, - 0.01586955599486828, - -0.020187893882393837, - -0.012674253433942795, - 0.0015366529114544392, - -0.021377775818109512, - 0.0019302165601402521, - -0.0105752469971776, - 0.020241370424628258, - 0.03243432566523552, - -0.006818427704274654, - 0.007473531179130077, - 0.03406539931893349, - -0.026819149032235146, - 0.00821553636342287, - -0.0045756995677948, - -0.007506954949349165, - 0.002453296910971403, - 0.010481661185622215, - -0.028931524604558945, - -0.0210836473852396, - 0.05508219823241234, - 0.02509448677301407, - -0.010622040368616581, - 0.001310207648202777, - 0.010561877861618996, - -0.024680033326148987, - 0.008770369924604893, - 0.007647334598004818, - 0.033316709101200104, - 0.010889429599046707, - 0.014144894666969776, - 0.036124296486377716, - 0.004956729244440794, - -0.01378391869366169, - 0.014505870640277863, - -0.010013730265200138, - -0.022046249359846115, - -0.025027640163898468, - 0.009846611879765987, - -0.01581607758998871, - 0.008904064074158669, - -0.023690693080425262, - -0.004020866937935352, - 0.003265491919592023, - 0.003643179312348366, - 0.0012751127360388637, - -0.040295571088790894, - -0.03181932866573334, - 0.020147785544395447, - -0.014104786328971386, - -0.009545798413455486, - -0.005504877306520939, - -0.014185003004968166, - 0.028343267738819122, - -0.017112916335463524, - 0.0022845075000077486, - -0.022086357697844505, - 0.014559348113834858, - 0.018102256581187248, - 0.03476060926914215, - -0.003960704430937767, - 0.026204152032732964, - 0.011069918051362038, - -0.008162058889865875, - 0.012634145095944405, - -0.0046258349902927876, - -0.0185701884329319, - -0.019399095326662064, - 0.010749050416052341, - -0.0004445347294677049, - 0.0063605234026908875, - -0.01623053103685379, - 0.019639745354652405, - -0.002648825291544199, - 0.003370776539668441, - -0.008823847398161888, - -0.04655247926712036, - 0.0013912600697949529, - 0.004271544516086578, - -0.02538861520588398, - -0.035910386592149734, - -0.006748237647116184, - 0.040589697659015656, - 0.017259979620575905, - 0.03492104262113571, - -0.020482022315263748, - 0.009345256723463535, - -0.03187280520796776, - -0.040883827954530716, - 0.021712012588977814, - -0.013302618637681007, - -0.002137443283572793, - -0.001289317850023508, - -0.00804841797798872, - 0.005812375340610743, - -0.019532788544893265, - 0.006744895596057177, - 0.01835627667605877, - -0.0016001579351723194, - 0.01609683595597744, - -0.007794398348778486, - 0.01643107272684574, - 0.014118155464529991, - 0.0009985319338738918, - -0.007500270381569862, - -0.00064883689628914, - -0.019399095326662064, - -0.01834290660917759, - 0.005829086992889643, - -0.011036493815481663, - 0.0022393856197595596, - -0.01046160701662302, - -0.0046291775070130825, - 0.017594216391444206, - 0.008890694938600063, - -0.030562598258256912, - -0.03385148569941521, - -0.017888344824314117, - -0.00810858141630888, - 0.011364045552909374, - -0.005705419462174177, - -0.022313637658953667, - -0.003927280660718679, - 0.02070930227637291, - 0.019492680206894875, - -0.01493369322270155, - -0.003390830708667636, - 0.004101083613932133, - 0.02282167784869671, - -0.003232068382203579, - -0.015642274171113968, - -0.6267605423927307, - 0.004385184962302446, - -0.00520740682259202, - -0.013670278713107109, - 0.004592411685734987, - 0.0231960229575634, - 0.013262510299682617, - 0.010849321261048317, - 0.0014480802929028869, - 0.04224751144647598, - -0.006233513355255127, - 0.020040828734636307, - 0.010134055279195309, - 0.01273441594094038, - -0.008623305708169937, - -0.016965851187705994, - -0.01617705263197422, - -0.0137438103556633, - 0.03230062872171402, - 0.0033607494551688433, - -0.013021859340369701, - 0.008315807208418846, - -0.005555013194680214, - -0.000912466028239578, - 0.013275879435241222, - 0.01053513865917921, - 0.027059799060225487, - -0.02117723412811756, - 0.019465941935777664, - -0.01274778600782156, - -0.01889105513691902, - 0.008416078984737396, - -0.03478734940290451, - 0.023984821513295174, - 0.035616256296634674, - 0.01621716283261776, - -0.0053377593867480755, - 0.042648594826459885, - 0.008248960599303246, - 0.012420233339071274, - -0.01812899485230446, - -0.02097669243812561, - 0.0010227641323581338, - -0.01493369322270155, - -0.0033072715159505606, - -0.009739656001329422, - 0.0518200509250164, - 0.0054513998329639435, - 0.00915808416903019, - -0.0259100254625082, - 0.0025452119298279285, - 0.02320939302444458, - 0.022260161116719246, - 0.008830532431602478, - 0.019265400245785713, - 0.0019268742762506008, - 0.040402524173259735, - -0.03152519837021828, - -0.017086178064346313, - 0.019867025315761566, - 0.02323613129556179, - 0.013255825266242027, - -0.011865400709211826, - -0.03275519236922264, - -0.031498461961746216, - 0.02303558960556984, - -0.02796892262995243, - -0.03018825314939022, - 0.01816910319030285, - 0.010120685212314129, - -7.370178991550347e-06, - 0.00518401013687253, - -0.012186268344521523, - -0.00940541923046112, - 0.037969283759593964, - 0.03286214545369148, - -0.009224931709468365, - -0.006504245102405548, - -0.002047199523076415, - 0.02324950136244297, - -0.0019970638677477837, - 7.891118002589792e-05, - -0.0021341009996831417, - 0.005541643593460321, - 0.022139836102724075, - -0.014345436356961727, - -0.0046325200237333775, - 0.012012464925646782, - -0.002217660192400217, - -0.0026688796933740377, - 0.012533874250948429, - 0.023663954809308052, - -0.021818967536091805, - -0.02045528218150139, - -0.009773079305887222, - 0.04104426130652428, - 0.002583649242296815, - 0.01256729755550623, - -0.00822222139686346, - -0.026752300560474396, - -0.0150673883035779, - -0.005588436499238014, - 0.017420412972569466, - -0.012440287508070469, - 0.028476962819695473, - 0.01510749664157629, - -0.015160974115133286, - 0.007359890732914209, - 0.0036197828594595194, - -0.031338028609752655, - 0.014412283897399902, - -0.0013820684980601072, - -0.007433422841131687, - 0.004692682530730963, - -0.0031986446119844913, - -0.021297559142112732, - 0.03510821610689163, - 0.003800270613282919, - 0.014011200517416, - -0.027126645669341087, - 0.02328960970044136, - 0.004104426130652428, - 0.011210297234356403, - -0.008375970646739006, - -0.015842817723751068, - 0.05085744708776474, - 0.02315591461956501, - -0.012894849292933941, - -0.005655284039676189, - -0.012079312466084957, - 0.013135500252246857, - 0.0027708217967301607, - 0.01260740589350462, - -0.013061967678368092, - 0.019145075231790543, - 0.028797829523682594, - 0.040669914335012436, - 0.0072930436581373215, - 0.01826268993318081, - -0.02788870595395565, - -0.019719962030649185, - -0.00287109287455678, - 0.015548688359558582, - -0.026377955451607704, - -0.01631074771285057, - -0.03230062872171402, - -0.015548688359558582, - 0.008970911614596844, - -0.0009742997935973108, - -0.011317253112792969, - -0.0061332425102591515, - -0.02330297790467739, - -0.009886720217764378, - 0.014265219680964947, - -0.002100677229464054, - 0.013971091248095036, - -0.021457992494106293, - -0.010488346219062805, - -0.0025535679887980223, - -0.02062908560037613, - 0.009265040047466755, - 0.02992086485028267, - -0.04454705864191055, - 0.004121137782931328, - -0.014545978978276253, - -0.011958987452089787, - 0.019024750217795372, - 0.005979493726044893, - -0.005321047268807888, - -0.029172174632549286, - 0.011658173985779285, - -0.021778859198093414, - 0.0041746157221496105, - 0.02764805592596531, - -0.00808852631598711, - 0.009418788366019726, - -0.00906449742615223, - 0.0016519646160304546, - -0.0033874884247779846, - -0.01822258159518242, - 0.004358445759862661, - -0.006738210562616587, - -0.015602166764438152, - -0.006805058103054762, - 0.0068117426708340645, - 0.003693314967676997, - 0.004826377145946026, - 0.00935194082558155, - -0.03152519837021828, - 0.033477142453193665, - -0.009619330987334251, - 0.02358373813331127, - -0.01613694429397583, - 0.001764769433066249, - -0.033557359129190445, - 0.010140739381313324, - 0.0037969283293932676, - 0.011992410756647587, - -0.008777054026722908, - 0.020147785544395447, - 0.02973369136452675, - 0.00802167970687151, - 0.008416078984737396, - 0.003572989720851183, - 0.011076602153480053, - -0.009806503541767597, - 0.01808888651430607, - -0.01371707208454609, - 0.03395844250917435, - 0.020334957167506218, - 0.009525744244456291, - -0.0019168471917510033, - -0.017112916335463524, - -0.005832429509609938, - -0.0023229445796459913, - 0.04601770266890526, - -0.021297559142112732, - 0.0115980114787817, - 0.026377955451607704, - -0.009753025136888027, - -0.0011196928098797798, - 0.008322492241859436, - 0.036151036620140076, - 0.01391761377453804, - -0.021952662616968155, - -0.005524931475520134, - -0.004495482891798019, - 0.004936675075441599, - -0.012513820081949234, - -0.019933873787522316, - -0.00744679244235158, - 0.033744532614946365, - -0.004321679938584566, - 0.01636422611773014, - 0.014586087316274643, - 0.017620956525206566, - 0.006912013981491327, - 0.0009433829109184444, - 0.04198012128472328, - 0.014505870640277863, - 0.00936531089246273, - 0.01602998934686184, - 0.01653802953660488, - -0.00907118245959282, - 0.011938933283090591, - -0.01405130885541439, - 0.01169159822165966, - 0.014786629006266594, - -0.01375718042254448, - -0.003572989720851183, - -0.00808852631598711, - 0.009679493494331837, - 0.00753369415178895, - -0.026057088747620583, - 0.023637214675545692, - -0.02096332237124443, - 0.04406575858592987, - -0.0027758353389799595, - 0.015267929993569851, - 0.015642274171113968, - 0.004218066576868296, - 0.033664315938949585, - 0.007092501502484083, - -0.03018825314939022, - -0.01629737950861454, - 0.0038838298059999943, - -0.01620379276573658, - -0.023851126432418823, - -0.02088310569524765, - -0.00016544714162591845, - -0.005361155606806278, - -0.015294669196009636, - 0.008609935641288757, - -0.0017313457792624831, - 0.023877866566181183, - -0.011972356587648392, - -0.01037470530718565, - 0.02772827260196209, - 0.021524839103221893, - 0.006992230657488108, - -0.00046417114208452404, - -0.01572249084711075, - -0.010020414367318153, - 0.020254740491509438, - -0.016872266307473183, - -0.012253114953637123, - -0.010033784434199333, - 0.027153383940458298, - -0.017794758081436157, - -0.00691869854927063, - -0.027019690722227097, - 0.007132609840482473, - -0.014706412330269814, - -0.0002607045753393322, - -0.0002653003321029246, - -0.0007436765008606017, - 0.03302257880568504, - 0.017340196296572685, - -0.000839351792819798, - -0.001594308763742447, - -0.0036264676600694656, - -0.031177593395113945, - -0.04072339087724686, - -0.014733151532709599, - 0.025843176990747452, - 0.00171964755281806, - -0.008716891519725323, - -0.02788870595395565, - 0.024853836745023727, - -0.022220052778720856, - -0.019118335098028183, - 0.019599637016654015, - 0.0076072257943451405, - 0.004431977868080139, - -0.01383739709854126, - -0.0036598911974579096, - 0.001990379299968481, - 0.02069593220949173, - 0.04157903790473938, - 0.012293223291635513, - -0.021912554278969765, - -0.016992591321468353, - 0.0024399275425821543, - 0.012640830129384995, - 0.014799998141825199, - 0.01651128940284252, - 0.005187352653592825, - 0.030856726691126823, - -0.0063605234026908875, - -0.013242456130683422, - 0.0072663044556975365, - -0.04401228204369545, - 0.023917974904179573, - 0.02540198527276516, - 0.0064474246464669704, - -0.00830912310630083, - 0.026217522099614143, - -0.017099546268582344, - 0.00792809296399355, - -0.0011698282323777676, - -0.009438842535018921, - -0.0031535227317363024, - 0.033289968967437744, - -0.012206322513520718, - -0.012413549236953259, - -0.006320415064692497, - -0.006166666280478239, - 0.035669732838869095, - -0.009345256723463535, - -0.01633748784661293, - 0.03235410526394844, - 0.022179944440722466, - 0.007794398348778486, - -0.014746520668268204, - 0.0020388434641063213, - 0.00808852631598711, - 0.016872266307473183, - 0.017433783039450645, - -0.00825564470142126, - -0.012266485020518303, - -0.004117795266211033, - 0.004298283252865076, - 0.01598988100886345, - -0.002449954627081752, - 0.003029855201020837, - 0.01592303439974785, - 0.013015175238251686, - -0.01812899485230446, - 0.018062148243188858, - 0.006574434693902731, - 0.005595121532678604, - 0.016658354550600052, - -0.008863955736160278, - -0.005067027639597654, - 0.023757539689540863, - -0.037755370140075684, - -0.000932520255446434, - 0.015562058426439762, - 0.0189044252038002, - -0.024345796555280685, - -0.0080952113494277, - -0.008783739060163498, - -0.013021859340369701, - -0.002408175030723214, - -0.0005765582318417728, - -0.021297559142112732, - 0.0105418236926198, - -0.013971091248095036, - -0.013382835313677788, - -0.023597106337547302, - -0.02981390804052353, - -0.020147785544395447, - -0.018035409972071648, - 0.01586955599486828, - -0.004716079216450453, - -0.02799566090106964, - -0.028797829523682594, - -0.003673260798677802, - 0.0071526640094816685, - -0.0006588639807887375, - 0.022540919482707977, - -0.00398410065099597, - -0.0014530938351526856, - 0.028583917766809464, - -0.01812899485230446, - -0.0007549570291303098, - -0.011096656322479248, - -0.023650584742426872, - -0.0065844617784023285, - 0.009913458488881588, - -0.014572717249393463, - -0.00761391082778573, - 0.0005740514607168734, - 0.0059059616178274155, - 0.002592005068436265, - 0.015428363345563412, - 7.969454600242898e-05, - -0.0009509032242931426, - 0.0036197828594595194, - 0.02569611370563507, - 0.009097921662032604, - 0.022113095968961716, - 0.01858355663716793, - -0.02300885133445263, - 0.0058992765843868256, - -0.011497740633785725, - 0.005053658038377762, - -0.0026170730125159025, - 0.012199637480080128, - 0.00412782235071063, - -0.003410884877666831, - -0.0064942180179059505, - 0.0024750223383307457, - 0.019813548773527145, - 0.007333151996135712, - -0.00937199592590332, - -0.0027474251110106707, - 0.0034827457275241613, - -0.008957542479038239, - 0.01030117366462946, - -0.0004704380698967725, - 0.031017160043120384, - 0.02274146117269993, - 0.0023496835492551327, - -0.022032879292964935, - -0.026618605479598045, - 0.03665907680988312, - 0.014826737344264984, - -0.009866666048765182, - 0.04315663501620293, - -0.006363865453749895, - 0.002083965577185154, - -0.017179762944579124, - 0.006891959346830845, - 0.006166666280478239, - 0.019051488488912582, - 0.003422583220526576, - -0.0054246606305241585, - -0.014519239775836468, - -0.01169159822165966, - 0.004759529605507851, - 0.010749050416052341, - -0.019867025315761566, - -0.029439562931656837, - -0.01819584332406521, - 0.017607586458325386, - -0.01518771331757307, - 0.010281119495630264, - 0.008703522384166718, - -0.031043900176882744, - -0.012968381866812706, - 0.02566937357187271, - -0.017941823229193687, - 0.029198912903666496, - -0.003877145005390048, - -0.009044443257153034, - -0.026217522099614143, - -0.013890874572098255, - 0.0042882561683654785, - -0.011337307281792164, - 0.01865040510892868, - -0.005936042871326208, - 0.0185701884329319, - 0.011196927167475224, - 0.019813548773527145, - -0.0165246594697237, - 0.012981751002371311, - -0.01063541043549776, - -0.008897379040718079, - 0.00010115881013916805, - -0.019278770312666893, - -0.0032788615208119154, - -0.016644984483718872, - 0.040161874145269394, - 0.01854344829916954, - 0.0005243337363936007, - 0.002453296910971403, - 0.01653802953660488, - 0.019706591963768005, - 0.04409249871969223, - -0.024171993136405945, - -0.016738571226596832, - -0.006678048055619001, - -0.031391505151987076, - -0.001062036957591772, - -0.0009392049396410584, - 0.0061532966792583466, - -0.002149141626432538, - -0.021872445940971375, - -0.004826377145946026, - 0.012533874250948429, - -0.028316527605056763, - -0.012380125001072884, - -0.005264227278530598, - -0.0034860882442444563, - -0.026150675490498543, - 0.021230710670351982, - 0.03748798370361328, - -0.007299728225916624, - -0.006905328948050737, - -0.00788129959255457, - -0.014733151532709599, - -0.013262510299682617, - 0.008897379040718079, - 0.0021641822531819344, - 0.0038504060357809067, - 0.0007495256722904742, - -0.024466121569275856, - -0.0002421126700937748, - -0.007954832166433334, - 0.0071526640094816685, - -0.016698462888598442, - -0.011965671554207802, - -0.020027460530400276, - -0.03451995924115181, - -0.0366055965423584, - -0.0035663049202412367, - -0.012072627432644367, - 0.018971271812915802, - 0.0069253831170499325, - 0.013930982910096645, - 0.021966032683849335, - -0.006885274779051542, - -0.013108761049807072, - -0.008509664796292782, - -0.010441552847623825, - 0.01861029677093029, - 0.0053143627010285854, - 0.03655212000012398, - 0.012319962494075298, - -0.02295537292957306, - -0.007172718178480864, - -0.04553639888763428, - 0.03005455806851387, - -0.0002813854662235826, - 0.008817162364721298, - -0.006945437286049128, - -0.005588436499238014, - -0.005494850222021341, - 0.00636720797047019, - 0.0030114720575511456, - 0.0019318878185003996, - -0.011317253112792969, - 0.04911941662430763, - 0.020482022315263748, - -0.008362600579857826, - -0.008121950551867485, - -0.000746183330193162, - 0.0024349140003323555, - 0.0003921013558283448, - 0.011531163938343525, - 0.007827822118997574, - -0.01651128940284252, - -0.01142420805990696, - 0.00804841797798872, - 0.04379836842417717, - 0.009759710170328617, - 0.01862366497516632, - -0.0015015581157058477, - -0.031070638447999954, - 0.0010369691299274564, - -0.02818283438682556, - -0.024706773459911346, - 0.011885454878211021, - -0.021591687574982643, - 0.020428543910384178, - -0.004839746747165918, - -0.023650584742426872, - 0.010795843787491322, - 0.0034760611597448587, - -0.01588292606174946, - -0.010708942078053951, - 0.00287109287455678, - 0.016845526173710823, - -0.014586087316274643, - 0.01514760497957468, - 0.016925742849707603, - 0.004866485483944416, - 0.012426918372511864, - 0.0032303971238434315, - 0.00013755926920566708, - -0.012426918372511864, - 0.005327732302248478, - -0.007867930456995964, - -0.0011121723800897598, - 0.01621716283261776, - -0.01820921152830124, - -0.0033640917390584946, - -0.0012475382536649704, - -0.012246430851519108, - 0.0035195117816329002, - -0.028878046199679375, - 0.03016151487827301, - -0.028289789333939552, - -0.015294669196009636, - 0.007814452983438969, - 0.014505870640277863, - 0.019679853692650795, - -0.018957901746034622, - -0.019024750217795372, - -0.0012191281421110034, - 0.031150855123996735, - -0.03235410526394844, - 0.02096332237124443, - 0.028744351118803024, - -0.009739656001329422, - 0.0011589655186980963, - 0.006156638730317354, - 0.021605055779218674, - -0.016725201159715652, - 0.01819584332406521, - -0.01653802953660488, - -0.030616076663136482, - -0.00788798462599516, - -0.005003522615879774, - 0.026525020599365234, - -0.00793477799743414, - -0.002080623060464859, - 0.014225111342966557, - 0.019385725259780884, - 0.007433422841131687, - -0.016899004578590393, - -0.0005982836009934545, - -0.00020534663053695112, - 0.013590062037110329, - -0.013683647848665714, - 0.02274146117269993, - -0.016711832955479622, - 0.01266088429838419, - 0.010528454557061195, - -0.0012091010576114058, - 0.0004445347294677049, - -0.047568559646606445, - -0.031364765018224716, - 0.010715627111494541, - 0.0011497740633785725, - -0.03005455806851387, - -0.007587171625345945, - -0.006905328948050737, - -0.028209572657942772, - -0.011116710491478443, - 0.0014631209196522832, - 0.0025285002775490284, - 0.016818787902593613, - 0.02062908560037613, - -0.009779764339327812, - 0.005077054724097252, - 0.007085816934704781, - -8.11046120361425e-05, - -0.0013695346424356103, - 0.021752120926976204, - 0.00805510301142931, - -0.027180124074220657, - 0.007867930456995964, - -0.022581027820706367, - 0.026885995641350746, - 0.0021157178562134504, - -0.0314449816942215, - -0.005147244315594435, - 0.005000180099159479, - -0.024252211675047874, - -0.009458896704018116, - -0.0019018064485862851, - 0.012767840176820755, - -0.005347786471247673, - 0.007272989489138126, - -0.02772827260196209, - 0.02740740403532982, - 0.0008376805926673114, - 0.017193133011460304, - -0.011504425667226315, - 0.0038036128971725702, - 0.0028276420198380947, - 0.002513459650799632, - -0.00032796969753690064, - -0.016939112916588783, - -0.04200686141848564, - 0.00046041098539717495, - 0.01621716283261776, - 0.003994127735495567, - 0.011544534005224705, - 0.018931163474917412, - 0.01163811981678009, - 0.00757380248978734, - -0.008603251539170742, - 0.01286811102181673, - 0.01657813787460327, - -0.009378680028021336, - 0.007059077732264996, - -0.015682382509112358, - -0.01824931986629963, - 0.01874399185180664, - 0.024212101474404335, - -0.035803429782390594, - -0.015495210886001587, - 0.006631255149841309, - -0.013583377003669739, - -0.012059258297085762, - 0.01505401823669672, - -0.019145075231790543, - 6.309369382506702e-06, - -0.008917433209717274, - 0.028717612847685814, - 0.019613007083535194, - -0.023797648027539253, - 0.007787713780999184, - 0.011825292371213436, - -0.009799818508327007, - -0.006427370477467775, - 0.009178138338029385, - -0.019907133653759956, - 0.007841191254556179, - 0.020482022315263748, - -0.031471721827983856, - 0.011778498999774456, - -0.00013327685883268714, - 0.011838661506772041, - 0.0005527438479475677, - -0.0014088074676692486, - -0.0229286327958107, - -0.012426918372511864, - -0.01894453354179859, - 0.03984100744128227, - -0.010114001110196114, - -0.008035048842430115, - 0.005177325569093227, - 0.004458716604858637, - -0.01820921152830124, - -0.002015447011217475, - -0.024519599974155426, - -0.007072447333484888, - -0.028664134442806244, - -0.007299728225916624, - -0.003840378951281309, - -0.021016800776124, - -0.0023730802349746227, - -0.012807948514819145, - -0.004358445759862661, - -0.022193312644958496, - -0.010735681280493736, - 0.1895255446434021, - -0.0376751534640789, - -0.011096656322479248, - -0.002867750357836485, - -0.026752300560474396, - -0.03476060926914215, - 0.0376751534640789, - -0.01633748784661293, - 0.0005644421325996518, - 0.028931524604558945, - 0.011878769844770432, - -0.001953613245859742, - -0.019465941935777664, - 0.00231960229575634, - 0.006825112272053957, - -0.01834290660917759, - -0.0364719033241272, - -0.014599456451833248, - -0.004545618314296007, - 0.03243432566523552, - 0.026324477046728134, - -0.035616256296634674, - -0.017955193296074867, - -0.02060234732925892, - 0.036311469972133636, - 0.00687190517783165, - -0.006096476223319769, - 0.010742365382611752, - 0.03029520995914936, - 0.014719781465828419, - -0.0466594360768795, - -0.004191327374428511, - 0.01366359367966652, - -0.010187532752752304, - 0.005120505578815937, - 0.007279674056917429, - -0.002393134403973818, - -0.02046865224838257, - 0.013984461314976215, - 0.04390532523393631, - 0.004896566737443209, - -0.03179258853197098, - -0.026845887303352356, - -0.021324297413229942, - -0.0045121945440769196, - -0.001371205784380436, - 0.008081842213869095, - -0.007132609840482473, - 0.012761155143380165, - -0.005494850222021341, - -0.020241370424628258, - 0.020067568868398666, - 0.014866845682263374, - 0.0363382063806057, - -0.013048598542809486, - -0.019385725259780884, - -0.0006546860095113516, - -0.0006718156510032713, - 0.018998010084033012, - 0.013469737023115158, - -0.024987531825900078, - 0.016631614416837692, - -0.0024833781644701958, - 0.017487261444330215, - -0.010722311213612556, - 0.01636422611773014, - -0.012921588495373726, - 1.6424597561126575e-05, - 0.012159529142081738, - -0.03419909253716469, - -0.00571878906339407, - -0.0071526640094816685, - -0.0322471521794796, - 0.0036999995354562998, - -0.029412824660539627, - -0.0325145423412323, - 0.00470270961523056, - -0.013202347792685032, - 0.03216693550348282, - 0.026190783828496933, - 0.00567199569195509, - 0.009512375108897686, - -0.01588292606174946, - -0.020348327234387398, - 0.008235590532422066, - -0.012801263481378555, - 0.009626015089452267, - 0.015321407467126846, - 0.01649792119860649, - -0.03751472011208534, - -0.02314254455268383, - 0.0015483512543141842, - 0.007506954949349165, - -0.0185701884329319, - -0.0020822943188250065, - -0.010615355335175991, - 0.019786808639764786, - 0.005795663222670555, - -0.008302438072860241, - 0.007426738273352385, - -0.026030350476503372, - 0.058718692511320114, - 0.03933296725153923, - -0.010809212923049927, - -0.01859692670404911, - 0.011063233017921448, - 0.0037568197585642338, - 0.028637396171689034, - 0.00038875898462720215, - -0.016591506078839302, - 0.010789158754050732, - -0.028958262875676155, - 0.01640433445572853, - -0.019185183569788933, - 0.0077676596119999886, - 0.0030733058229088783, - 0.005016892217099667, - 0.005748870316892862, - -0.007781029213219881, - -0.0017597558908164501, - -0.004418608266860247, - -0.0034493221901357174, - 0.026484912261366844, - -0.0005510726477950811, - 0.000484643125673756, - -0.040322307497262955, - -0.027140015736222267, - 0.028370006009936333, - -0.015508580021560192, - 0.01590966433286667, - 0.009378680028021336, - -0.029279129579663277, - 0.04235446825623512, - -0.007994940504431725, - 0.003823667299002409, - -0.008643359877169132, - -0.030482381582260132, - -0.04663269594311714, - -0.01853008009493351, - -0.002393134403973818, - 0.021230710670351982, - 0.008369285613298416, - 0.008763684891164303, - -0.003095031250268221, - 0.0034827457275241613, - -0.000904110143892467, - 0.03430604934692383, - 0.0050837392918765545, - -0.012500450015068054, - -0.03427930921316147, - -0.013376150280237198, - -0.0011932248016819358, - 0.012106050737202168, - -0.022380486130714417, - 0.026244260370731354, - 0.008409393951296806, - -0.017099546268582344, - -0.033503882586956024, - 0.017607586458325386, - 0.007219511549919844, - -0.03296910226345062, - -0.024171993136405945, - 0.008295753039419651, - -0.009933512657880783, - 0.005090423859655857, - -0.015602166764438152, - -0.1692039519548416, - 0.003910568542778492, - 0.006691417656838894, - -0.02282167784869671, - 0.02040180377662182, - 0.006738210562616587, - 0.021244080737233162, - 0.015468471683561802, - -0.02282167784869671, - -0.012186268344521523, - 0.015254559926688671, - -0.004886539652943611, - -0.02732718735933304, - -0.03893188387155533, - -0.006778318900614977, - -0.01030117366462946, - -0.025027640163898468, - 0.015334777534008026, - 0.022581027820706367, - 0.013930982910096645, - -0.0037367655895650387, - -0.035509299486875534, - 0.01858355663716793, - 0.017046067863702774, - 0.0006108174566179514, - 0.01624390110373497, - -0.028236310929059982, - 0.03385148569941521, - -0.031338028609752655, - -0.01168491318821907, - -0.017527369782328606, - 0.019987350329756737, - 4.423412974574603e-05, - -0.01639096438884735, - -0.01866377331316471, - 0.01264751423150301, - -0.015562058426439762, - 0.007299728225916624, - -0.0053377593867480755, - 0.035429082810878754, - 0.012968381866812706, - 0.03952014073729515, - -0.00814200472086668, - 0.01616368442773819, - 0.005772267002612352, - 0.02558915689587593, - 0.014104786328971386, - -0.01836964674293995, - 0.00830912310630083, - -0.03152519837021828, - 0.0028894757851958275, - -0.010829267092049122, - -0.007333151996135712, - 0.03021499328315258, - 0.005772267002612352, - 0.004428635351359844, - 0.010401444509625435, - 0.011584642343223095, - 0.000803003553301096, - 0.0021307584829628468, - 0.005872537847608328, - -0.01873062178492546, - 0.01272773090749979, - -0.0094522126019001, - -0.01509412657469511, - -0.0322471521794796, - -0.016792049631476402, - 0.01620379276573658, - -0.00372339622117579, - -0.008937487378716469, - -0.011056547984480858, - -0.021364405751228333, - -0.0015801037661731243, - -0.0161235760897398, - 0.009753025136888027, - 0.014398914761841297, - 0.0006973011768423021, - -0.004528906662017107, - 0.010708942078053951, - -0.004117795266211033, - -0.0008297424647025764, - 0.045242272317409515, - 0.003780216444283724, - -0.026444803923368454, - -0.0151342349126935, - -0.02358373813331127, - -0.010802527889609337, - 0.021966032683849335, - -0.017968561500310898, - 0.006517614703625441, - 0.029466303065419197, - -0.02818283438682556, - -0.021645164117217064, - -0.03441300615668297, - 0.02354362979531288, - -0.00798157136887312, - 0.010281119495630264, - -0.013489791192114353, - -0.009077867493033409, - -0.001682881498709321, - 0.0020956636872142553, - -0.0091179758310318, - -0.026631975546479225, - 0.024853836745023727, - 0.02510785683989525, - 0.007914723828434944, - -0.015602166764438152, - 0.008282383903861046, - 0.05518915504217148, - -0.01831616833806038, - 0.00459909625351429, - -0.014719781465828419, - 0.011317253112792969, - 0.006708129309117794, - -0.004896566737443209, - 0.021524839103221893, - -0.008583197370171547, - -0.016631614416837692, - 0.014612825587391853, - 0.001260907738469541, - 0.04949376359581947, - -0.023931343108415604, - 0.006744895596057177, - -0.0020137757528573275, - -0.008990965783596039, - -0.02762131579220295, - -0.10166141390800476, - 0.005611833184957504, - 0.02565600536763668, - 0.007834507152438164, - -0.0024716800544410944, - 0.010615355335175991, - 0.003686630167067051, - 0.0063605234026908875, - 0.0033607494551688433, - 0.045135315507650375, - -0.03296910226345062, - -0.019867025315761566, - -0.01586955599486828, - -0.01034128200262785, - 0.04441336542367935, - -0.0020204605534672737, - 0.01024769525974989, - -0.02085636742413044, - -0.03425257280468941, - 0.033530618995428085, - -0.0030799906235188246, - 0.016925742849707603, - 0.0105752469971776, - -0.005508219823241234, - -0.028370006009936333, - -0.013322672806680202, - -0.04128491133451462, - 0.019907133653759956, - 0.024305688217282295, - -0.0256426353007555, - 0.03671255335211754, - -0.0126876225695014, - 0.0029295841231942177, - -0.012961696833372116, - -0.005123847629874945, - -0.003492772812023759, - -0.008623305708169937, - -0.00571210402995348, - 0.04414597526192665, - -0.023958083242177963, - 0.002237714361399412, - 0.01370370201766491, - 0.006845166441053152, - -0.005658626556396484, - -0.003106729593127966, - -0.028958262875676155, - -0.003146837931126356, - 0.0018065490294247866, - -0.002964678918942809, - -0.017687803134322166, - -0.03724732995033264, - -0.028744351118803024, - -0.03858427703380585, - 0.013342726975679398, - 0.029091957956552505, - -0.010755735449492931, - -0.006547695957124233, - 0.0032504512928426266, - -0.006624570116400719, - 0.002185907680541277, - -0.01854344829916954, - 0.0030883466824889183, - -0.02581643871963024, - 0.01637759618461132, - 0.0020956636872142553, - -0.0072930436581373215, - -0.00757380248978734, - -0.01155790314078331, - 0.005755554884672165, - 0.0228617861866951, - -0.02973369136452675, - 0.006711471825838089, - -0.00581571739166975, - 0.004876512568444014, - -0.03205997869372368, - -0.007781029213219881, - -0.030963683500885963, - -0.021391145884990692, - 0.013035229407250881, - -0.011497740633785725, - -0.007600541226565838, - -0.030990421772003174, - 0.035910386592149734, - -0.01894453354179859, - 0.03173911198973656, - 0.005835771560668945, - 0.0035696474369615316, - -0.009880035184323788, - 0.01819584332406521, - -0.01620379276573658, - -0.008790424093604088, - 0.0301347766071558, - 0.02354362979531288, - -0.014265219680964947, - -0.026752300560474396, - 0.028022401034832, - -0.00822222139686346, - 0.006671363487839699, - 0.003069963539019227, - 0.014011200517416, - -0.003049909370020032, - -0.007373260334134102, - -0.042728811502456665, - 0.01827606000006199, - 0.01871725171804428, - 0.0054513998329639435, - -0.01653802953660488, - -0.005932700354605913, - 0.006049683317542076, - 0.01278120931237936, - 0.017540739849209785, - -0.0003565887163858861, - -0.003977416083216667, - 0.008817162364721298, - -0.010595301166176796, - -0.01269430760294199, - -0.015321407467126846, - -0.038076236844062805, - 0.001188211259432137, - 0.014545978978276253, - 0.0037200539372861385, - 0.010822582058608532, - -0.012921588495373726, - 0.005805690307170153, - -0.006945437286049128, - 0.03692646324634552, - -0.04465401545166969, - -0.012192952446639538, - -0.012059258297085762, - -0.0031084008514881134, - -0.009599276818335056, - -0.0017087848391383886, - 0.001955284271389246, - -0.004675970412790775, - -0.008843901567161083, - 0.0024315714836120605, - -0.012366755865514278, - -0.014799998141825199, - 0.017754649743437767, - 0.022059617564082146, - 0.03307605907320976, - 0.0518200509250164, - -0.013469737023115158, - -0.02780848927795887, - 0.004943360108882189, - -0.0330493189394474, - -0.0007804425549693406, - 0.007794398348778486, - 0.03465365618467331, - 0.0009057812858372927, - 0.005441372748464346, - 0.008850586600601673, - 0.025121226906776428, - 0.0182359516620636, - 0.027019690722227097, - -0.019746700301766396, - 0.011364045552909374, - 0.0030064585153013468, - 0.008743630722165108, - -0.0080617880448699, - 0.015388255007565022, - -0.02558915689587593, - 0.04147208109498024, - 0.002608716953545809, - 0.0007524502580054104, - -0.006858536042273045, - -0.0077208662405610085, - -0.010775789618492126, - -0.02534850686788559, - -0.014652934856712818, - 0.005077054724097252, - -0.024372536689043045, - -0.010655464604496956, - 0.0038270095828920603, - 0.024466121569275856, - 0.030776510015130043, - -0.008670098148286343, - -0.014131525531411171, - 0.005976151209324598, - 0.004117795266211033, - -0.021364405751228333, - 0.017380304634571075, - 0.00461580790579319, - 0.011223666369915009, - -0.0010227641323581338, - -0.005237488076090813, - 0.040562957525253296, - 0.005682022776454687, - -0.027073167264461517, - -0.00022999658540356904, - 0.006601173896342516, - 0.001658649300225079, - -0.013556637801229954, - 0.024118516594171524, - -0.007145979441702366, - 0.026939474046230316, - -1.269707536266651e-05, - 0.030642814934253693, - -0.019425833597779274, - -0.007814452983438969, - 0.036097556352615356, - 0.026177413761615753, - 0.012480395846068859, - 0.01596314273774624, - -0.0102075869217515, - -0.004361788276582956, - -0.02580306865274906, - 0.03205997869372368, - -0.017313458025455475, - -0.01590966433286667, - 0.009091236628592014, - 0.0187038816511631, - -0.017981931567192078, - -0.012406864203512669, - -0.0032872173469513655, - 0.012934957630932331, - -0.02323613129556179, - 0.005357813555747271, - -0.02350352145731449, - -0.03451995924115181, - -0.02340993471443653, - 0.01167154312133789, - 0.030990421772003174, - 0.0033640917390584946, - -0.009017704986035824, - 0.014104786328971386, - 0.02783522754907608, - -0.00231960229575634, - 0.013082021847367287, - -0.009265040047466755, - 0.012794578447937965, - -0.031204333528876305, - 0.020080937072634697, - 0.002533513819798827, - -0.03219367191195488, - -0.019786808639764786, - -0.01838301494717598, - -0.015548688359558582, - 0.027046428993344307, - 0.007807767949998379, - 0.0027106590569019318, - 0.11850694566965103, - 0.014987170696258545, - -0.010956277139484882, - 0.02288852445781231, - 0.011584642343223095, - 0.009505690075457096, - 0.03502799943089485, - 0.007079131901264191, - 0.005805690307170153, - -0.029359346255660057, - -0.0010645437287166715, - -0.009605960920453072, - 0.007199457380920649, - -0.031418245285749435, - -0.0068351393565535545, - 0.024265579879283905, - 0.0010737351840361953, - 0.010067207738757133, - -0.015642274171113968, - -0.015588796697556973, - 0.03230062872171402, - -0.01641770452260971, - 0.01871725171804428, - 0.021645164117217064, - -0.010642094537615776, - -0.017005959525704384, - -0.0004428635584190488, - -1.583054398679451e-07, - 0.005732158198952675, - -0.0210836473852396, - -0.009218246676027775, - 0.019519420340657234, - -0.04473423212766647, - -0.026404695585370064, - 0.0363382063806057, - -0.01647118106484413, - -0.007553748320788145, - -0.01653802953660488, - 0.01586955599486828, - -0.011303883045911789, - 0.004896566737443209, - 0.027073167264461517, - -0.004712736699730158, - -0.022153204306960106, - 0.013242456130683422, - -0.00023793471336830407, - 0.006410658825188875, - 0.008556458167731762, - -0.009813187643885612 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 39, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 470 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000040.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000040.json deleted file mode 100644 index e45ae7e7c783a405c595e3422fb4e47497ae4949..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000040.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000040", - "content": "Eine m\u00f6gliche Methode zur Identifizierung der Schallquellenentstehung k\u00f6nnte der Einsatz einer akus- tischen Kamera sein. Diese erm\u00f6glicht es, die Richtung und Position von Schallquellen visuell darzustellen und somit zur Lokalisierung und Analyse des Schallgeschehens bei-\n\n## zutragen. Die gewonnenen Erkenntnisse k\u00f6nnen dazu beitragen, Standards und Richtlinien f\u00fcr den Einsatz von Flurf\u00f6rderger\u00e4ten zu verbessern und die allgemeine L\u00e4rmbelastung in Spe- ditionen und w\u00e4hrend des Verladeprozesses zu reduzieren. 76\nAbschlie\u00dfende Bewertung und Ausblick\n\n## 9 Literatur\n\n- [1] Teufel Blog Redaktion: Musik und Emotionen: Was Kl\u00e4nge in uns ausl\u00f6sen, 2023, https://blog.teufel.de/musik-und-emotionen-was-klange-in-uns-auslosen/ [Zugriff am: 05.04.2023]. - [2] Fraunhofer-Institut f\u00fcr Bauphysik IBP: Schallimmissionsschutz und urbane Akustik \u2013 Wirksamer pr\u00e4ventiver Schallschutz f\u00fcr angenehmes akustisches Stadtklima, 2023, https://www.ibp.fraunhofer.de/de/kompetenzen/akustik/bauakustik/schal- limmissionsschutz.html [Zugriff am: 05.04.2023]. - [3] Wothge, J., Niemann, H.: Gesundheitliche Auswirkungen von Umgebungsl\u00e4rm im urbanen Raum. - [4] Bundesministerium f\u00fcr Umwelt, Naturschutz, nukleare Sicherheit und Verbrau- cherschutz/ Umweltbundesamt: Umweltbewusstseinsstudie 2020 \u2013 Ergebnisse ei- ner repr\u00e4sentativen Bev\u00f6lkerungsumfrage. - [5] Claus Muchna, Hans Brandenburg, Johannes Fottner und Jens Gutermuth: Grund- lagen der Logistik \u2013 Begriffe, Strukturen und Prozesse. Springer Gabler Wiesbaden. - [6] Schreiben des Bundesministeriums f\u00fcr Umwelt, Naturschutz, Bau und Reaktorsi- cherheit: Sechste Allgemeine Verwaltungsvorschrift zum Bundes-Immissions- schutzgesetz \u2013 Technische Anleitung zum Schutz gegen L\u00e4rm (TA L\u00e4rm). Schreiben des Bundesministeriums f\u00fcr Umwelt, Naturschutz, Bau und Reaktorsicherheit, 1998 (GMBl Nr. 26/1998 S. 503). - [7] Dipl.-Phys. Ing. Knut Lenkewitz: Technischer Bericht zur Untersuchung der LKW- und Ladeger\u00e4usche auf Betriebsgel\u00e4nden von Frachtzentren, Auslieferungslagern und Speditionen. Hessische Landesanstalt f\u00fcr Umwelt, Umweltplanung, Arbeits- und Umweltschutz Heft 192, Hessische Landesanst. f\u00fcr Umwelt, Wiesbaden, 1995. - [8] Dipl.-Phys. Ing. Knut Lenkewitz und Dipl.-Ing J\u00fcrgen M\u00fcller: Technischer Bericht zur Untersuchung der Ger\u00e4uschemissionen durch Lastkraftwagen auf Betriebsge- l\u00e4nden von Frachtzentren, Auslieferungslagern, Speditionen und Verbraucher- m\u00e4rkten sowie weiterer typischer Ger\u00e4usche insbesondere von Verbraucherm\u00e4rk- ten \u2013 Umwelt und Geologie L\u00e4rmschutz in Hessen, Heft 3. Hessisches Landesamt f\u00fcr Umwelt und Geologie, Wiesbaden Ausgabe 2005. - [9] TIMOCOM: Umschlag in der Logistik, 2023, https://www.timocom.de/lexi- con/transportlexikon/umschlag [Zugriff am: 05.04.2023]. I\nAbschlie\u00dfende Bewertung und Ausblick\n- [10] Ehrhardt + Partner GmbH & Co. KG: Definition Flurf\u00f6rderzeug \u2013 Logistik Lexikon, 2023, https://www.epg.com/logistik-know-how/lexikon/flurfoerderzeug [Zugriff am: 05.04.2023]. - [11] Stertil Dock Produktion (Hrsg. ): Entwurf einer Verladestation.", - "embedding": [ - 0.011896604672074318, - 0.009746295399963856, - -9.45025312830694e-05, - -0.03853248432278633, - 0.00927362684160471, - 0.016856297850608826, - -0.03440495580434799, - -0.01657669059932232, - -0.0038745517376810312, - -0.01195652037858963, - 0.03499079868197441, - 0.011730172671377659, - -0.011783430352807045, - 0.021822648122906685, - -0.012109639123082161, - -5.090498234494589e-06, - 0.03504405543208122, - -0.010445312596857548, - 0.014393094927072525, - -0.004836532287299633, - -0.023260625079274178, - 0.015724556520581245, - 0.010591773316264153, - -0.01485910639166832, - -0.01889343373477459, - 0.032700683921575546, - 0.029691582545638084, - -0.025856975466012955, - -0.03035731241106987, - 0.008481407538056374, - 0.00462682731449604, - -0.011483851820230484, - -0.015578094869852066, - -0.006570760626345873, - -0.020797422155737877, - -0.0037647061981260777, - 0.012835284695029259, - -0.01958579197525978, - 0.001294845947995782, - -0.016203882172703743, - 0.015551465563476086, - 0.011577053926885128, - -0.0004764134355355054, - -0.028892705217003822, - 0.00021053728414699435, - 0.016803039237856865, - 0.008301660418510437, - 0.013168150559067726, - -0.013913768343627453, - 0.02396629936993122, - 0.022741355001926422, - 0.02429916523396969, - -0.030197538435459137, - 0.01874697208404541, - 0.0017641859594732523, - -0.01171020045876503, - 0.0023866440169513226, - 0.01485910639166832, - 0.00914713740348816, - -0.03232787549495697, - -0.025603996589779854, - 0.008201800286769867, - -0.019705625250935555, - 0.003601602278649807, - -0.01987871341407299, - -0.01171020045876503, - -0.019545849412679672, - 0.007556041702628136, - -0.01604410633444786, - -0.02292776107788086, - 0.029398661106824875, - 0.022168828174471855, - 0.00794882234185934, - 0.012875229120254517, - 0.018813544884324074, - -0.0013655797811225057, - 0.005608779843896627, - -0.026056693866848946, - -0.004397150129079819, - 0.005422375164926052, - 0.018826860934495926, - -0.021143602207303047, - -0.030437201261520386, - 0.0516606904566288, - 0.01613730937242508, - 0.008747699670493603, - 0.004410464782267809, - 0.036189112812280655, - -0.012529049068689346, - 0.0074961259961128235, - 0.0007489468553103507, - 0.03182192146778107, - 0.011850004084408283, - -0.0007556041819043458, - 0.018094556406140327, - -0.009346856735646725, - 0.004566911607980728, - 0.0019822127651423216, - -0.00029770637047477067, - -0.039784058928489685, - -0.014805847778916359, - -0.0031006401404738426, - -0.00892744679003954, - 0.009826183319091797, - -0.020544445142149925, - -0.011836688965559006, - -0.012229470536112785, - 0.01085140835493803, - 0.02135663665831089, - -0.030783381313085556, - -0.0324610210955143, - 0.015178656205534935, - 0.0026146566960960627, - 0.01259562186896801, - 0.02351360395550728, - -0.030091021209955215, - 0.03214146941900253, - -0.01390045415610075, - -0.011490508913993835, - 0.004806574434041977, - 0.0349375382065773, - 0.020624332129955292, - -0.011284132488071918, - -0.012975088320672512, - 0.029531806707382202, - 0.016150623559951782, - 0.0019805484917014837, - -0.006963541731238365, - -0.023939670994877815, - -0.02184927649796009, - -0.021875906735658646, - -0.01712258905172348, - 0.03065023384988308, - 0.025217873975634575, - -0.011064441874623299, - 0.003465127432718873, - -0.023500287905335426, - 0.00951994676142931, - -0.015391690656542778, - -0.02322068251669407, - 0.010205649770796299, - 0.017575286328792572, - -0.04271327331662178, - -0.024711918085813522, - -0.018320905044674873, - 0.05136777088046074, - 0.005898372735828161, - -0.00026920478558167815, - 0.005515577737241983, - 0.01820107363164425, - -0.012129610404372215, - -0.029984503984451294, - 0.0026163209695369005, - 0.015205285511910915, - 0.007742446381598711, - 0.006071462761610746, - 0.007203204557299614, - 0.02184927649796009, - -0.006693920586258173, - -0.013467729091644287, - -0.005758569110184908, - -0.01561803836375475, - 0.0022967704571783543, - 0.0018940034788101912, - 0.026655850932002068, - 0.006863682065159082, - 0.017921466380357742, - -0.009187081828713417, - -0.000981952529400587, - 0.006600718479603529, - -0.012755397707223892, - 0.0057352688163518906, - -0.004929734859615564, - 0.014086858369410038, - -0.010019244626164436, - 0.0005974931991659105, - 0.002255162224173546, - 0.010898008942604065, - -0.029744841158390045, - -0.03483102098107338, - -0.020597703754901886, - 0.02075747773051262, - 0.012855256907641888, - 0.004673428367823362, - -0.018387477844953537, - 0.013793936930596828, - 0.0098394975066185, - 0.008767670951783657, - 0.0019622407853603363, - -0.00766255846247077, - -0.010298851877450943, - 0.013168150559067726, - 0.008807615377008915, - -0.010325481183826923, - -0.622910737991333, - -0.013454414904117584, - 0.01173682976514101, - -0.0089807054027915, - -0.0031389195937663317, - 0.02750798687338829, - 0.014313207007944584, - 0.010598430410027504, - 0.017801634967327118, - 0.041754622012376785, - 0.0044038076885044575, - 0.005758569110184908, - 0.0008962397696450353, - 0.01050522830337286, - -0.009400115348398685, - -0.025763772428035736, - -0.01011244673281908, - -0.012489105574786663, - 0.049876533448696136, - 0.005635409150272608, - -0.02588360384106636, - 0.011324076913297176, - -0.0015095439739525318, - 0.0012299371883273125, - 0.008940760977566242, - 0.024924952536821365, - 0.011830031871795654, - -0.023899726569652557, - 0.0036348889116197824, - -0.0033319813665002584, - -0.02480512112379074, - 0.008075311779975891, - -0.01717584766447544, - 0.017681803554296494, - 0.04660113900899887, - 0.015977533534169197, - -0.0015661311335861683, - 0.02982472814619541, - 0.002080407924950123, - 0.014406409114599228, - -0.0051494259387254715, - -0.01584438793361187, - 0.012043065391480923, - -0.004769959487020969, - -0.003495085285976529, - 0.01208300981670618, - 0.04841192439198494, - -0.011616998352110386, - -0.012975088320672512, - -0.04092911258339882, - -0.0011101056588813663, - -0.00709668779745698, - 0.018786916509270668, - 0.00490643410012126, - 0.022102253511548042, - 0.00557216489687562, - 0.025271132588386536, - -0.016496803611516953, - -0.020504500716924667, - -0.0008612889214418828, - -0.005575493443757296, - 0.007649244274944067, - -0.007136631291359663, - -0.020730849355459213, - -0.03152899816632271, - 0.03895855322480202, - -0.023686693981289864, - -0.031555626541376114, - 0.015538151375949383, - -0.013474386185407639, - 0.007143288850784302, - 0.03573641553521156, - -0.01806792803108692, - -0.015724556520581245, - 0.028919335454702377, - 0.03379248455166817, - 0.009113851003348827, - -0.017588600516319275, - -0.0030573676340281963, - 0.0012008114717900753, - -0.0014055236242711544, - -0.015085454098880291, - -0.030676864087581635, - 0.0030190879479050636, - 0.02559068240225315, - -0.012495762668550014, - -0.026682481169700623, - -0.003365267999470234, - 0.00031497376039624214, - 0.0009911063825711608, - 0.01962573640048504, - 0.04337900131940842, - 0.0021985750645399094, - -0.019798826426267624, - 0.003039059927687049, - 0.04276653006672859, - -0.018720343708992004, - 0.015125398524105549, - 0.0067338645458221436, - -0.034617990255355835, - -0.02479180507361889, - 0.010278879664838314, - 0.02203568071126938, - -0.03291371837258339, - 0.018813544884324074, - 0.007835648953914642, - -0.008508036844432354, - 0.017282364889979362, - 0.018041297793388367, - -0.024911636486649513, - -0.007742446381598711, - -0.020877311006188393, - -0.0017591930227354169, - -0.021609613671898842, - 0.0019422689219936728, - -0.0253377053886652, - 0.03128933534026146, - 0.00115670682862401, - 0.0025031468831002712, - -0.020744163542985916, - 0.0086145531386137, - -0.00025734645896591246, - 0.03933136165142059, - -0.022621523588895798, - -0.015578094869852066, - 0.015964219346642494, - 0.006018204148858786, - -0.0058451141230762005, - -0.008541323244571686, - -0.006996828131377697, - 0.013148178346455097, - -0.018041297793388367, - 0.01752202771604061, - -0.0017775006126612425, - -0.0021736102644354105, - 0.00660737557336688, - 0.041834507137537, - -0.009426744654774666, - -0.0031405838672071695, - -0.022501692175865173, - -0.03144911304116249, - -0.026402873918414116, - 0.02416601963341236, - -0.024126075208187103, - -0.013401156291365623, - -0.028999222442507744, - -0.0064775580540299416, - 0.003821293357759714, - -0.012828627601265907, - -0.007715817075222731, - -0.01579112932085991, - -0.008528008125722408, - -0.005635409150272608, - 0.02002517506480217, - 0.006510844919830561, - 0.005192698445171118, - -0.011224216781556606, - -0.022807927802205086, - 0.006098092067986727, - -0.030863268300890923, - 0.022009052336215973, - 0.01800135336816311, - -0.04186113551259041, - -0.0013198108645156026, - -0.007955480366945267, - -0.02031809650361538, - 0.024485569447278976, - 0.0009711344609968364, - -0.021369950845837593, - -0.02150309644639492, - 0.01535174623131752, - 0.0075427270494401455, - 0.0007905550301074982, - 0.029957875609397888, - -0.016270454972982407, - 0.00681708101183176, - -0.01741551049053669, - -0.004370521288365126, - -0.0063344263471663, - -0.019865399226546288, - 0.014978937804698944, - -0.0013905446976423264, - -0.002088729524984956, - -0.013447756879031658, - 0.005828470923006535, - 0.01515202783048153, - 0.012855256907641888, - 0.028067199513316154, - -0.018667085096240044, - 0.027614504098892212, - -0.0092270253226161, - 0.017482085153460503, - -0.020211579278111458, - 0.01697612926363945, - -0.04463057592511177, - 0.019452646374702454, - -0.002278462750837207, - 0.005219327751547098, - -0.011483851820230484, - 0.012369273230433464, - 0.028653042390942574, - 0.005961616989225149, - 0.016550062224268913, - -0.018760286271572113, - 0.020597703754901886, - -0.013833880424499512, - 0.009926042519509792, - -0.0324876494705677, - 0.03861237317323685, - 0.02608332224190235, - 0.011430593207478523, - -0.010671660304069519, - -0.01820107363164425, - -0.025071412324905396, - 0.0007693348452448845, - 0.03975742682814598, - -0.006161336321383715, - -0.003501742612570524, - 0.014259948395192623, - -0.004453737288713455, - 0.002870962955057621, - 0.0030274097807705402, - 0.031076302751898766, - -0.0021952465176582336, - -0.011803402565419674, - 0.004417122341692448, - -0.006171322427690029, - 0.0057352688163518906, - 0.02268809638917446, - -0.012162896804511547, - -0.002884277608245611, - -0.0018440736457705498, - 0.00824174378067255, - 0.024099446833133698, - 0.019545849412679672, - 0.017402196303009987, - 0.01816112920641899, - 0.004443751648068428, - 0.04929069057106972, - 0.020145006477832794, - 0.015405004844069481, - 0.021130288019776344, - 0.0016193895135074854, - 0.01820107363164425, - 0.013674105517566204, - -0.003458470106124878, - 0.010125761851668358, - 0.03315338119864464, - 0.008095283061265945, - -0.018906747922301292, - -0.020384669303894043, - -0.014180060476064682, - -0.010891351848840714, - -0.016416914761066437, - 0.02095719799399376, - 0.005209341645240784, - 0.026549333706498146, - -0.012063037604093552, - 0.006068134214729071, - 0.019745567813515663, - 0.0005059551913291216, - 0.011790088377892971, - 0.005968274548649788, - -0.018826860934495926, - -0.005761898122727871, - 0.005632080603390932, - -0.025950176641345024, - -0.02696208655834198, - -0.008128570392727852, - -0.019079837948083878, - 0.0004314766265451908, - 0.0036948046181350946, - -0.00031122902873903513, - 0.015072139911353588, - 0.03762708976864815, - 0.0018307589925825596, - -0.003608259605243802, - 0.025910232216119766, - 0.03315338119864464, - -0.005768555216491222, - -0.01849399507045746, - -0.015418319962918758, - -0.007888906635344028, - 0.021543040871620178, - 0.0026912158355116844, - -0.03251428157091141, - -0.00600156094878912, - 0.012355959042906761, - -0.039198216050863266, - -0.0126688526943326, - -0.002443231176584959, - 0.003015759401023388, - -0.022128883749246597, - -0.006647319532930851, - -0.001408020150847733, - -0.0005109481862746179, - 0.029505178332328796, - -0.010977896861732006, - -0.001430488540790975, - 0.00824174378067255, - -0.002985801547765732, - -0.018680399283766747, - -0.01350767258554697, - -0.016550062224268913, - 0.016257140785455704, - -0.009433401748538017, - -0.009180424734950066, - -0.019066523760557175, - 0.011843346990644932, - -0.01395371276885271, - -0.017588600516319275, - 0.00826171599328518, - 0.006427628453820944, - 0.008414833806455135, - -0.0005067873862572014, - -0.0009004005696624517, - 0.002841005101799965, - -0.008747699670493603, - 0.04859833046793938, - 0.009440058842301369, - -0.02125011943280697, - -0.03216810151934624, - 0.0006495033740065992, - 0.009380143135786057, - 0.012023094110190868, - 0.0027977325953543186, - 0.010278879664838314, - 0.029851358383893967, - -0.015578094869852066, - -0.03733417019248009, - -0.008428148925304413, - -0.03831944987177849, - 0.015444949269294739, - 0.005369117017835379, - -0.014526240527629852, - 0.00799542386084795, - 0.02690882980823517, - -0.015365061350166798, - -0.002138659358024597, - -0.011943206191062927, - 0.0023583504371345043, - 0.015857702121138573, - 0.01800135336816311, - -0.003731419797986746, - -0.009906070306897163, - -0.008454778231680393, - 0.011537110432982445, - 0.033632706850767136, - 0.0003852915542665869, - -0.020624332129955292, - 0.019359445199370384, - 0.024339109659194946, - -0.004666771274060011, - -0.014033599756658077, - -0.0023500288370996714, - 0.009859469719231129, - 0.003039059927687049, - 0.016217196360230446, - -0.00925365462899208, - 0.004823217634111643, - 0.00868778396397829, - 0.014566184021532536, - 0.012549021281301975, - -0.005548864137381315, - 0.009000676684081554, - 0.03310012444853783, - 0.008488064631819725, - -0.008461435325443745, - -0.001629375503398478, - -0.0031455769203603268, - 0.003791335504502058, - 0.017335623502731323, - -0.004204088356345892, - 0.0011741822818294168, - 0.01737556792795658, - -0.013887139037251472, - 0.00067363609559834, - 0.001552816480398178, - 0.004680085927248001, - -0.038159675896167755, - 0.005785198416560888, - -0.006643990986049175, - 0.0009045613696798682, - -0.0037414056714624166, - -0.019665680825710297, - -0.022115569561719894, - 4.329849161877064e-06, - -0.002679565455764532, - -0.008354918099939823, - -0.024285851046442986, - -0.010917981155216694, - 0.0023350499104708433, - -0.02592354826629162, - 0.014632757753133774, - 0.010764863342046738, - -0.009626463986933231, - -0.024592086672782898, - -0.009752952493727207, - 0.015405004844069481, - 0.0013714049709960818, - 0.01608405075967312, - -0.006068134214729071, - 0.0027344883419573307, - 0.007003485225141048, - -0.021955793723464012, - -0.008987362496554852, - -0.0177084319293499, - -0.032940346747636795, - -0.009187081828713417, - 0.016110679134726524, - -0.016456859186291695, - -0.014632757753133774, - 0.006963541731238365, - 0.02942529134452343, - 0.0028975922614336014, - 0.004853175953030586, - 0.02666916511952877, - -0.004437094088643789, - -0.011510481126606464, - 0.017002757638692856, - 0.006187965627759695, - 0.021290063858032227, - 0.018573882058262825, - -0.024592086672782898, - 0.031715404242277145, - -0.02047787234187126, - -0.008388204500079155, - -0.0037280910182744265, - 0.01619056612253189, - -0.0012698810314759612, - -0.0034884281922131777, - -0.0027444742154330015, - 0.006404327694326639, - 0.0216495580971241, - 0.012169554829597473, - 0.0012382587883621454, - 0.011796745471656322, - -0.004343891981989145, - 0.004756644833832979, - 0.004117543343454599, - 0.003448484232649207, - 0.014140116982161999, - 0.018773602321743965, - 0.009952671825885773, - -0.00036365530104376376, - -0.024765176698565483, - 0.03829282149672508, - 0.010864722542464733, - 0.015112083405256271, - 0.041115518659353256, - -0.004087585490196943, - 0.03706787899136543, - -0.03605596721172333, - -0.007090030238032341, - 0.009187081828713417, - 0.021423209458589554, - 0.013394498266279697, - -0.02867967262864113, - -0.045882150530815125, - -0.0036681753117591143, - 0.0092270253226161, - 0.018187759444117546, - -0.031129561364650726, - -0.017735062167048454, - -0.004866490140557289, - 0.017641859129071236, - -0.0043572066351771355, - -0.0020820721983909607, - 0.02170281670987606, - -0.032700683921575546, - -0.015524836257100105, - 0.015671297907829285, - -0.008994019590318203, - 0.021236805245280266, - -0.026216469705104828, - -0.0031771990470588207, - -0.031955067068338394, - -0.009939356707036495, - -0.013560931198298931, - -0.03605596721172333, - 0.006963541731238365, - -0.011863318271934986, - 0.014938993379473686, - 0.0014288241509348154, - 0.030730122700333595, - 0.008228429593145847, - 0.02174275927245617, - 0.007482811342924833, - -0.00660737557336688, - 0.00402101268991828, - -0.019665680825710297, - 0.008714413270354271, - -0.03349956125020981, - 0.03797326982021332, - 0.015218600630760193, - 0.017788320779800415, - 0.005009622313082218, - 0.0014421388041228056, - 0.009526603855192661, - 0.035550013184547424, - -0.029345402494072914, - 0.004317262675613165, - -0.002208561170846224, - -0.023753266781568527, - -0.021077029407024384, - -0.0007144120754674077, - 0.018320905044674873, - 0.0083682332187891, - -0.02465865947306156, - 0.004520310554653406, - 0.023686693981289864, - -0.009939356707036495, - -0.017548657953739166, - -0.004247360862791538, - 0.012675509788095951, - -0.023340513929724693, - 0.029105739668011665, - 0.004520310554653406, - 0.0010235607624053955, - -0.012316015549004078, - -0.01505882479250431, - -0.02144983783364296, - -0.00648421561345458, - 0.01766848936676979, - -0.0033003592398017645, - -0.0016934521263465285, - 0.012149582616984844, - -0.009786238893866539, - -0.003335310146212578, - 0.008301660418510437, - 0.0184540506452322, - -0.01914641074836254, - -0.013540958985686302, - -0.01633702777326107, - -0.023952985182404518, - -0.02451219968497753, - -0.004333905875682831, - -0.018467364832758904, - 0.03211484104394913, - 0.00900733470916748, - 0.00767587311565876, - 0.018707027658820152, - -0.005791855975985527, - -0.0035450151190161705, - 0.004776616580784321, - 0.0031039686873555183, - 0.009473346173763275, - 0.0023283925838768482, - 0.03858574107289314, - 0.006078119855374098, - -0.013347897678613663, - -0.02095719799399376, - -0.05538878217339516, - 0.0004963853280059993, - -0.010538514703512192, - 0.02564394101500511, - 0.00834160391241312, - -0.031369224190711975, - -0.011523796245455742, - 0.04452405869960785, - 0.023460345342755318, - -0.01579112932085991, - -0.0029408647678792477, - 0.04596203565597534, - 0.02966495417058468, - -0.0009902742458507419, - -0.010045873932540417, - -0.0032021638471633196, - -0.008108598180115223, - -0.0010967911221086979, - 0.009559891186654568, - 0.006713892798870802, - -0.02937203273177147, - -0.001880688825622201, - -0.012615594081580639, - 0.04090248420834541, - -0.0019988559652119875, - 0.02051781490445137, - 0.02238186076283455, - -0.015112083405256271, - 0.02312747947871685, - -0.014499611221253872, - 0.0018457379192113876, - 0.003921153023838997, - -0.012682166881859303, - 0.01692287065088749, - 0.0007360483286902308, - 0.0009311906178481877, - 0.012256099842488766, - 0.015191971324384212, - -0.0026978731621056795, - 0.005222656298428774, - 0.01269548200070858, - 0.020637646317481995, - -0.008454778231680393, - -0.005791855975985527, - 0.004024341236799955, - -0.022168828174471855, - 0.010625059716403484, - 0.006424299906939268, - -0.00031684612622484565, - -0.008175170980393887, - 0.008468092419207096, - -0.011583711951971054, - 0.009732980281114578, - 0.010864722542464733, - -0.009985958226025105, - -0.009872783906757832, - -0.009047278203070164, - -0.022301973775029182, - -0.012469133362174034, - -0.01323472335934639, - 0.0003228793211746961, - -0.031129561364650726, - -0.0023666720371693373, - 0.023007648065686226, - 0.022421805188059807, - 0.021622927859425545, - -0.0005845946143381298, - -0.016177251935005188, - 0.008461435325443745, - 0.02342040091753006, - -0.035310350358486176, - 0.008667811751365662, - 0.04497675597667694, - -0.009340199641883373, - -0.008155199699103832, - 0.0045935409143567085, - 0.01781494915485382, - -0.02110365778207779, - 0.017988039180636406, - -0.013574246317148209, - -0.009340199641883373, - -0.007868935354053974, - 0.004320591222494841, - 0.01776169054210186, - -0.005615437403321266, - -0.002002184744924307, - 0.011616998352110386, - 0.015191971324384212, - -0.00034264317946508527, - -0.016403600573539734, - -0.017495399340987206, - 0.004566911607980728, - 0.009826183319091797, - -0.005948302336037159, - 0.023739950731396675, - -0.02168950065970421, - 0.0241127610206604, - 0.01390045415610075, - -0.0047533162869513035, - 0.009220368228852749, - -0.015005567111074924, - -0.03278057277202606, - 0.016350341960787773, - 0.0009095543646253645, - -0.015471577644348145, - 0.0024315807968378067, - -0.00505622336640954, - -0.0029242215678095818, - -0.007669216021895409, - -0.020051803439855576, - -0.010811463929712772, - 0.007822333835065365, - 0.0016726480098441243, - 0.005642066244035959, - -0.020544445142149925, - 0.03272731229662895, - 0.002954179421067238, - -0.014552869834005833, - 0.002263483824208379, - -0.01485910639166832, - -0.03626900166273117, - 0.0021885891910642385, - -0.021769389510154724, - 0.03698799014091492, - -0.0016185573767870665, - -0.04068944975733757, - -0.011164301075041294, - 0.011357363313436508, - -0.021369950845837593, - -0.01419337559491396, - -0.005332501605153084, - -0.010032559745013714, - -0.007862278260290623, - 0.03336641564965248, - -0.027321582660079002, - 0.024379052221775055, - -0.013088262639939785, - 0.020451242104172707, - 0.0012856920948252082, - -0.03174203261733055, - 0.02431247942149639, - 0.001667655073106289, - 0.014872420579195023, - -0.0067638223990798, - -0.04114214703440666, - 0.005176055245101452, - 0.024046188220381737, - 0.00021906696201767772, - 0.015271859243512154, - 0.022501692175865173, - -0.008228429593145847, - -0.0339522585272789, - 0.007762418128550053, - 0.0038645658642053604, - 0.0014812505105510354, - -0.007955480366945267, - 0.0004485359531827271, - -0.02381983958184719, - -0.004876476246863604, - 0.008581266738474369, - 0.023833153769373894, - -0.026149896904826164, - 0.006277839187532663, - 0.01958579197525978, - -0.019426017999649048, - 0.006507516372948885, - 0.003448484232649207, - -0.0216495580971241, - 0.010684975422918797, - -0.027667760848999023, - 0.04060956463217735, - 0.031715404242277145, - -0.010744891129434109, - 0.0033452960196882486, - 0.012442504055798054, - -0.0164834875613451, - -0.02449888363480568, - -0.007063400931656361, - -0.038798775523900986, - 0.00895407609641552, - 0.005725282710045576, - -0.02774764969944954, - 0.01874697208404541, - -0.01953253522515297, - 0.005345816258341074, - -0.0014454674674198031, - 0.007815676741302013, - -0.009952671825885773, - -0.008121912367641926, - -0.027374839410185814, - 0.023407086730003357, - -0.005911687389016151, - -0.020930567756295204, - -0.01805461198091507, - -0.00981952529400587, - -0.04335237294435501, - -0.01860051229596138, - -0.030437201261520386, - 0.00263296440243721, - -0.012455818243324757, - -0.004097571596503258, - -0.0019855413120239973, - -0.013461071997880936, - -0.008015396073460579, - -0.010392053984105587, - -0.0009253654861822724, - -0.030756751075387, - -0.012136268429458141, - 0.1978018581867218, - -0.028013940900564194, - -0.011776773259043694, - -0.004367192275822163, - -0.02405950240790844, - -0.015138712711632252, - 0.03424517810344696, - -0.008960733190178871, - -0.007782390341162682, - 0.012269414030015469, - 0.009353513829410076, - 0.0057985130697488785, - 0.007229833863675594, - 0.0010210642358288169, - -0.005931659135967493, - -0.001957247732207179, - -0.02367337793111801, - -0.008388204500079155, - -0.0062911538407206535, - 0.03664181008934975, - 0.025111356750130653, - -0.02278129942715168, - -3.229833237128332e-05, - -0.027002030983567238, - 0.03552338108420372, - 0.005775212310254574, - 0.016310399398207664, - 0.017042702063918114, - 0.027028661221265793, - 0.0023433715105056763, - -0.03176866099238396, - -0.0021453166846185923, - 0.02756124548614025, - -0.008721070364117622, - -0.00284766242839396, - -0.007809019181877375, - 0.0017159205162897706, - -0.03006439097225666, - 0.03965091332793236, - 0.04684080183506012, - 0.0033918970730155706, - -0.0472402386367321, - -0.000852967263199389, - -0.02867967262864113, - 0.012116296216845512, - -0.0002477765956427902, - -0.004603526555001736, - -0.007030114531517029, - -0.0008637853898108006, - -0.008714413270354271, - -0.005039580166339874, - 0.017162533476948738, - 0.012602278962731361, - 0.029531806707382202, - -0.011297447606921196, - -0.016656577587127686, - 0.002672908129170537, - 0.008774328976869583, - 0.020051803439855576, - 0.011989807710051537, - -0.03379248455166817, - 0.026189839467406273, - 0.0008325792732648551, - 0.01259562186896801, - -0.03011764958500862, - 0.006983513478189707, - 0.0025380977895110846, - 0.0037047904916107655, - 0.004680085927248001, - -0.027348211035132408, - -0.00806865468621254, - -0.005665367003530264, - -0.02528444677591324, - 0.017428826540708542, - -0.003007437800988555, - -0.04044978693127632, - 0.01653674617409706, - -0.01171020045876503, - 0.04063619300723076, - 0.01840079203248024, - 0.00616466486826539, - 0.012196184135973454, - -0.016803039237856865, - -0.025377647951245308, - 0.010565144009888172, - -0.004207416903227568, - 0.022794613614678383, - -0.0016451866831630468, - 0.008255058899521828, - -0.023779895156621933, - -0.037174392491579056, - 0.007576013915240765, - 0.0035083999391645193, - -0.020997142419219017, - 0.018134500831365585, - -0.007149945944547653, - 0.024685289710760117, - 0.015964219346642494, - -0.0011708536185324192, - 0.019612422212958336, - -0.0167364664375782, - 0.054057322442531586, - 0.040316641330718994, - -0.02568388544023037, - -0.004134186543524265, - 0.015338432043790817, - -0.013753993436694145, - 0.021782703697681427, - -0.0044970097951591015, - -0.010205649770796299, - 0.008761013858020306, - -0.02686888538300991, - 0.024019557982683182, - -0.015405004844069481, - 0.007762418128550053, - 0.01737556792795658, - 0.0032937019132077694, - -0.0021885891910642385, - 0.003907838370651007, - 0.011497166939079762, - -0.009113851003348827, - 0.01055848691612482, - 0.004603526555001736, - 0.0017641859594732523, - 0.01013241894543171, - -0.033685967326164246, - -0.015711240470409393, - 0.010498571209609509, - -0.01079814974218607, - -0.002879284555092454, - 0.012901858426630497, - -0.007988766767084599, - 0.042287204414606094, - 0.0007414573919959366, - 0.012162896804511547, - -0.011690228246152401, - 0.004550268407911062, - -0.024964895099401474, - -0.005868414882570505, - 0.007815676741302013, - 0.01532511692494154, - -0.00954657606780529, - 0.01564466767013073, - 0.008894160389900208, - 0.011583711951971054, - -0.0038246221374720335, - 0.011470537632703781, - -0.006044833455234766, - -0.02686888538300991, - -0.026642536744475365, - -0.015405004844069481, - -0.004467051941901445, - 0.026988716796040535, - -0.007982109673321247, - 0.03807978704571724, - 0.015178656205534935, - -0.017641859129071236, - -0.01613730937242508, - 0.0056387376971542835, - 0.021676186472177505, - -0.015498206950724125, - -0.009113851003348827, - -0.005528892390429974, - -0.013148178346455097, - -0.0037347483448684216, - 0.002679565455764532, - -0.16819016635417938, - -0.014366465620696545, - 0.006883653812110424, - -0.030490459874272346, - 0.0005434025661088526, - 0.010445312596857548, - 0.011230874806642532, - 0.012475790455937386, - -0.018933376297354698, - 0.0026828942354768515, - 0.01947927661240101, - -0.0009353514178656042, - -0.02445894107222557, - -0.020384669303894043, - -0.012948459014296532, - -0.015298488549888134, - -0.008734384551644325, - 0.040822599083185196, - 0.024525513872504234, - 0.008920789696276188, - 0.0010119103826582432, - -0.031555626541376114, - 0.017894838005304337, - -0.0016468509566038847, - -0.00892744679003954, - 0.010278879664838314, - -0.021023770794272423, - 0.023992929607629776, - -0.02283455803990364, - -0.032061584293842316, - -0.022568264976143837, - -0.004829875193536282, - 0.006254538428038359, - -0.014286577701568604, - -0.017109274864196777, - -0.0012931815581396222, - 0.001150049502030015, - 0.00021865087910555303, - -0.007136631291359663, - 0.031369224190711975, - 0.01301503274589777, - 0.050808556377887726, - 0.00033348938450217247, - 0.00458688335493207, - -0.020690904930233955, - 0.017455454915761948, - 0.010738234035670757, - -0.02307422086596489, - -0.008940760977566242, - -0.03349956125020981, - -0.017681803554296494, - -0.020437927916646004, - -0.01706933043897152, - 0.02612326666712761, - -0.0011791752185672522, - 0.0062445527873933315, - 0.00555885024368763, - 0.008481407538056374, - 0.011190930381417274, - -0.010625059716403484, - -0.0027627816889435053, - -0.022355232387781143, - -0.015005567111074924, - -0.005156083032488823, - -0.021037084981799126, - -0.015711240470409393, - 0.010345452465116978, - 0.003981068730354309, - -0.0354434959590435, - -0.005655380897223949, - -0.004437094088643789, - -0.009426744654774666, - -0.0030190879479050636, - -0.008235086686909199, - -0.003784678177908063, - 0.001408020150847733, - -0.0017908151494339108, - 0.0018523952458053827, - 0.003386904252693057, - -0.00711000245064497, - -0.012309357523918152, - 0.032008323818445206, - 9.87153616733849e-05, - -0.021955793723464012, - -0.002862641355022788, - -0.014379779808223248, - -0.018214387819170952, - 0.011377335526049137, - -0.013940397650003433, - 0.005944973789155483, - 0.034271810203790665, - -0.022275343537330627, - -0.02750798687338829, - -0.025856975466012955, - 0.009406772442162037, - -0.0014504604041576385, - -0.0012990067480131984, - 0.01424663420766592, - -0.004736673086881638, - 0.0003954855492338538, - 0.003891195170581341, - -0.018707027658820152, - -0.014126801863312721, - 0.03227461874485016, - -0.006201280280947685, - -0.011011183261871338, - -0.023593490943312645, - 0.011230874806642532, - 0.04604192450642586, - -0.01505882479250431, - -0.025031467899680138, - -0.0010019245091825724, - 0.018906747922301292, - -0.0017908151494339108, - -0.013401156291365623, - 0.0054490044713020325, - -4.7355286369565874e-05, - -0.01732230931520462, - 0.023739950731396675, - 0.00041212880751118064, - 0.04894451051950455, - -0.006217923481017351, - -0.013001717627048492, - 0.0073563228361308575, - -0.0077025024220347404, - -0.03238113224506378, - -0.09442722052335739, - -0.00799542386084795, - 0.025617310777306557, - 0.014339836314320564, - 0.0038745517376810312, - 0.03365933522582054, - 0.0058917151764035225, - -0.014845791272819042, - 0.0021919177379459143, - 0.026016749441623688, - -0.03152899816632271, - -0.037866752594709396, - -0.009453373961150646, - -0.018813544884324074, - 0.029931245371699333, - -0.013980341143906116, - -0.02144983783364296, - -0.01392708346247673, - -0.025697199627757072, - 0.02977146953344345, - 9.138192399404943e-05, - 0.01453955564647913, - -0.0008076143567450345, - -0.013228066265583038, - -0.017775006592273712, - -0.0026779011823236942, - -0.04292630776762962, - 0.009706351906061172, - 0.018533939495682716, - -0.00681708101183176, - 0.039198216050863266, - -0.023952985182404518, - 0.006760493852198124, - -0.02223540097475052, - -0.0010293858358636498, - 0.0019705623853951693, - -0.009706351906061172, - -0.03650866448879242, - 0.02878618985414505, - -0.026562649756669998, - -0.007076715584844351, - 0.016163937747478485, - 0.02425922080874443, - -0.00888084527105093, - 0.018627140671014786, - -0.025896918028593063, - -0.011670256964862347, - 0.013700734823942184, - 0.024432310834527016, - -0.007848963141441345, - -0.031955067068338394, - -0.0378933846950531, - -0.03714776411652565, - -0.0018091227393597364, - 0.030170908197760582, - -0.016403600573539734, - -0.007316378876566887, - -0.008627868257462978, - -0.024019557982683182, - -0.008508036844432354, - -0.019079837948083878, - 0.012162896804511547, - -0.02150309644639492, - 0.020837366580963135, - -0.006464243866503239, - -0.0038412653375416994, - -0.03411203250288963, - -0.0042906333692371845, - 0.007143288850784302, - 0.00858792383223772, - -0.0339522585272789, - 0.006284496281296015, - 0.0016335363034158945, - 0.0039011810440570116, - -0.029212256893515587, - -0.011217559687793255, - -0.04886462166905403, - -0.00142383121419698, - 0.010791492648422718, - -0.012715453281998634, - -0.012242784723639488, - -0.03632225841283798, - 0.02563062682747841, - -0.01564466767013073, - 0.011989807710051537, - 0.015085454098880291, - 0.004526967648416758, - 0.0001958704087883234, - 0.00030894059455022216, - -0.021582985296845436, - -0.0023799866903573275, - 0.025377647951245308, - 0.011457222513854504, - 0.005162740591913462, - -0.016177251935005188, - 0.019865399226546288, - -0.011603683233261108, - 0.003012430854141712, - 0.008228429593145847, - 0.017482085153460503, - -0.007436210289597511, - -0.01880023069679737, - -0.04095574468374252, - 0.01850730925798416, - 0.047613050788640976, - 0.011197587475180626, - -0.024525513872504234, - -0.0033669322729110718, - 0.0089807054027915, - 0.012522391974925995, - 0.04188776761293411, - 0.006537474226206541, - -0.009133823215961456, - 0.009220368228852749, - -0.0033170024398714304, - 0.002140323631465435, - -0.01358090341091156, - -0.02455214224755764, - 0.02445894107222557, - 0.0027344883419573307, - 0.01949259079992771, - -0.011317419819533825, - 0.0014354814775288105, - -0.0033303170930594206, - 0.009466688148677349, - 0.021396579220891, - -0.019346129149198532, - 0.014379779808223248, - -0.010345452465116978, - -0.013068290427327156, - -0.017162533476948738, - -0.01653674617409706, - -0.012063037604093552, - 0.0019589122384786606, - 0.002474853303283453, - 0.009932699613273144, - -0.013327925466001034, - -0.005445675924420357, - 0.004107557702809572, - 0.014885734766721725, - 0.003495085285976529, - 0.06529485434293747, - -0.006787123158574104, - -0.024738546460866928, - 0.0009087222279049456, - -0.014566184021532536, - 0.0005038747913204134, - 0.014273262582719326, - 0.013494358398020267, - -0.001217454788275063, - 0.016789725050330162, - -0.004297290928661823, - 0.029345402494072914, - 0.01224944181740284, - -0.017455454915761948, - -0.005186040885746479, - 0.017988039180636406, - 0.002429916523396969, - 0.006793780252337456, - 0.00709668779745698, - 0.010598430410027504, - -0.02111697383224964, - 0.038159675896167755, - 0.008028710260987282, - -0.0010318823624402285, - 0.012189526110887527, - 0.009506632573902607, - -0.005262599792331457, - -0.03376585245132446, - -0.014899049885571003, - 0.028280233964323997, - -0.03243439272046089, - -0.03408540412783623, - -0.0016601656097918749, - 0.0201716348528862, - 0.020051803439855576, - -0.013108234852552414, - -0.01473927404731512, - 0.004167473409324884, - -0.003275394206866622, - -0.002103708451613784, - 0.02838675118982792, - 0.015684612095355988, - 0.031023044139146805, - -0.0002789827121887356, - 0.0008837573113851249, - 0.04859833046793938, - 0.005072867032140493, - -0.010957924649119377, - 0.00036032666685059667, - -0.007988766767084599, - 0.002338378457352519, - -0.018267646431922913, - 0.010598430410027504, - 0.01732230931520462, - 0.010345452465116978, - 0.011490508913993835, - 0.005342487711459398, - 0.0001638321264181286, - -0.008508036844432354, - 0.0364021472632885, - 0.044790349900722504, - 0.008101941086351871, - 0.008408176712691784, - 0.0010069174459204078, - -0.030197538435459137, - -0.022475063800811768, - 0.028546525165438652, - -0.02489832229912281, - -0.032753944396972656, - 0.0003540854377206415, - 0.014033599756658077, - -0.009040621109306812, - 0.015871016308665276, - -0.008521351031959057, - -0.005865086335688829, - -0.038798775523900986, - 0.03232787549495697, - -0.015365061350166798, - -0.028706301003694534, - -0.03176866099238396, - 0.017788320779800415, - 0.04044978693127632, - 0.010218963958323002, - -0.011290790513157845, - -0.006890311371535063, - 0.027135176584124565, - -0.002496489556506276, - 0.016030792146921158, - -0.027614504098892212, - 0.017535341903567314, - -0.018081242218613625, - 0.01296843122690916, - 0.02190253511071205, - -0.027721019461750984, - 0.006534145213663578, - -0.03576304391026497, - -0.017482085153460503, - 0.037813495844602585, - -0.011989807710051537, - 0.002954179421067238, - 0.112162284553051, - 0.029398661106824875, - -0.008348261006176472, - 0.021423209458589554, - -0.016816353425383568, - -0.001340614864602685, - 0.0177084319293499, - 0.01195652037858963, - -0.012635566294193268, - -0.04769293591380119, - 0.00403432734310627, - -0.021396579220891, - 0.023899726569652557, - -0.03371259570121765, - 0.0007164925336837769, - 0.009000676684081554, - -0.007409580983221531, - 0.015964219346642494, - -0.005275914445519447, - -0.0009927706560119987, - 0.027987312525510788, - -0.01772174797952175, - 0.011550424620509148, - 0.03371259570121765, - -0.024019557982683182, - -0.010718261823058128, - 0.010518542490899563, - -0.014885734766721725, - -0.00885421596467495, - -0.0221421979367733, - -0.0019672338385134935, - 0.009679722599685192, - -0.0521400161087513, - -0.03725428134202957, - 0.019505904987454414, - -0.01885348930954933, - -0.001529515953734517, - -0.017535341903567314, - 0.006357726640999317, - 0.020637646317481995, - 0.008281688205897808, - 0.013753993436694145, - -0.0028826133348047733, - -0.021929163485765457, - -0.0153783755376935, - 0.006564103066921234, - 0.003341967472806573, - -0.008767670951783657, - -0.014126801863312721 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 40, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 352 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000041.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000041.json deleted file mode 100644 index a841ecae0e61deab93c9fa072605a78eeaa92ff9..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000041.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000041", - "content": "- [11] Stertil Dock Produktion (Hrsg. ): Entwurf einer Verladestation. STERTIL Superior So- lutions, 9288 ZG Kootstertille, Die Niederlande. - [12] Thiele Shop: Was sind \u00dcberladebr\u00fccken?, 2023, https://www.auffahrrampen- thiele.de/was-sind-ueberladebruecken [Zugriff am: 05.04.2023]. - [13] Jedermann-Verlag (Hrsg. ): Sicheres-Be-und-Entladen-von-Fahrzeugen \u2013 Ein Leitfa- den f\u00fcr Praktiker. Jedermann-Verlag, Heidelberg, 2006. - [14] Berufsgenossenscha\u017ft Holz und Metall (Hrsg. ): Be- und Entladen von Fahrzeugen, Isaac-Fulda-Allee 18 55124 Mainz, 2021. - [15] Lasiprofi: Die Verladung von Frachtgut, 2023, https://www.ladungssiche- rung.eu/ratgeber/ladung/verladen [Zugriff am: 05.04.2023]. - [16] DIN 45645-1: Ermittlung von Beurteilungspegeln aus Messungen, Teil 1: Ge- r\u00e4uschemissionen in der Nachbarschaft. Ausgabe Juli 1996. - [17] M\u00fcller, G.; M\u00f6ser, M.: Beurteilung von Schallimmissionen \u2013 Gesetze - Vorschriften - Normen - Richtlinien. Fachwissen Technische Akustik, Fachwissen Technische Akustik, Springer Berlin Heidelberg, Berlin, Heidelberg, 2017. - [18] DIN ISO 9613-2: D\u00e4mpfung bei Ausbreitung im Freien. Ausgabe Oktober 1999. - [19] DIN 45681: Bestimmung der Tonhaltigkeit von ger\u00e4uschen und Ermittlung eines Tonzuschlages f\u00fcr die Beurteilung von Ger\u00e4uschimmissionen. Ausgabe Januar 1992. - [20] DIN 45641: Mittelung von Schallpegeln. Ausgabe Juni 1990. - [21] Professor Dr.-Ing. Michael M\u00f6ser: Messtechnik der Akustik. Technische Universit\u00e4t Berlin - Institut f\u00fcr Str\u00f6mungsmechanik und Technische Akustik. Springer-Verlag Berlin Heidelberg, Berlin, 2009. - [22] fairaudio: Punktschallquelle - akustische Idealvorstellung | Lexikon fairaudio, 2020, https://www.fairaudio.de/lexikon/punktschallquelle/ [Zugriff am: 14.04.2023].", - "embedding": [ - 0.014622260816395283, - -0.008098587393760681, - 0.0033500862773507833, - -0.028755756095051765, - 0.021288491785526276, - 0.008892832323908806, - -0.027588147670030594, - 0.004700982011854649, - -0.010169056244194508, - -0.028266988694667816, - 0.009306926280260086, - 0.01832873933017254, - -0.016265058889985085, - 0.012931943871080875, - 0.0013678669929504395, - 0.0014764817897230387, - 0.021600758656859398, - 0.012707926332950592, - 0.019306272268295288, - -0.01143170241266489, - -0.015464025549590588, - -0.000397122697904706, - 0.010820744559168816, - 0.008743487298488617, - -0.0008774035377427936, - 0.012877636589109898, - 0.03350765258073807, - -0.02151929773390293, - -0.010725706815719604, - 0.0012838602997362614, - 0.0062860785983502865, - 0.0020687715150415897, - -0.014635837636888027, - -0.005804101005196571, - -0.0038795832078903913, - -0.018342316150665283, - -0.004925000015646219, - -0.015477602370083332, - 0.02261902205646038, - -0.01845093071460724, - -0.003027636092156172, - 0.004083235748112202, - 0.003692901460453868, - -0.04238690808415413, - 0.0015053325332701206, - 0.02218456380069256, - 0.002476076828315854, - 0.0010140205267816782, - -0.014730875380337238, - 0.013766920194029808, - 0.03133535757660866, - 0.025212198495864868, - -0.011866161599755287, - 0.013658304698765278, - 0.005766764283180237, - -0.0003071760875172913, - -0.021560028195381165, - 0.025483736768364906, - 0.0016538293566554785, - -0.015396141447126865, - -0.03652171045541763, - -0.0014798759948462248, - -0.028022605925798416, - 0.01089541707187891, - -0.021261338144540787, - -0.015803446993231773, - -0.01398414932191372, - -0.013678669929504395, - -0.025361545383930206, - 0.0014128403272479773, - 0.010542419739067554, - 0.03369772806763649, - 0.007202515844255686, - 0.005508804228156805, - 0.0319598913192749, - -0.029543211683630943, - 0.010963301174342632, - -0.00038715219125151634, - -0.021166300401091576, - 0.0021383529528975487, - 0.02347436361014843, - -0.029570365324616432, - -0.027506684884428978, - 0.03548986837267876, - 0.020338112488389015, - 0.004493935499340296, - -0.002538869855925441, - 0.0095173679292202, - -0.019292695447802544, - -0.003910130821168423, - -0.002014464233070612, - 0.025565197691321373, - -0.02105768583714962, - 0.009306926280260086, - 0.014147071167826653, - -0.0014807245461270213, - 0.0013822923647239804, - 0.023827360942959785, - -0.018491661176085472, - -0.04092060774564743, - -0.017038939520716667, - -0.010121537372469902, - 0.015898484736680984, - -0.0005863499245606363, - -0.012388870120048523, - 0.005335699766874313, - 0.011085493490099907, - 0.006971709430217743, - -0.01017584465444088, - -0.02788683772087097, - -0.018994005396962166, - 0.010006134398281574, - 0.007698070723563433, - -0.005518986843526363, - 0.02479131706058979, - -0.018016472458839417, - 0.02176368050277233, - -0.002941083861514926, - -0.008118952624499798, - -0.022021640092134476, - 0.03209565952420235, - 0.015559063293039799, - 0.0035944695118814707, - -0.014785182662308216, - 0.014513646252453327, - 0.017283322289586067, - 0.0011099069379270077, - 0.007059958763420582, - -0.01282332930713892, - -0.005359459202736616, - -0.02252398431301117, - -0.008302239701151848, - 0.0132374232634902, - 0.0027934357058256865, - -0.004436233546584845, - 0.021858718246221542, - -0.017120400443673134, - 0.008078222163021564, - -0.03030351549386978, - -0.04254982993006706, - 0.016753826290369034, - 0.01023694034665823, - -0.033670574426651, - -0.018315162509679794, - -0.0007866083760745823, - 0.03763500973582268, - 0.011777912266552448, - -0.0012125818757340312, - -0.018342316150665283, - 0.01089541707187891, - -0.01127556897699833, - -0.018613852560520172, - 0.004181668162345886, - 0.0046975878067314625, - -0.010637457482516766, - 0.01698463223874569, - 0.015355410054326057, - 0.006574586499482393, - -0.016903171315789223, - -0.011228050105273724, - 0.016821710392832756, - 0.007922088727355003, - 0.01445933897048235, - 0.003076852299273014, - 0.016332942992448807, - 0.011621778830885887, - -0.01998511515557766, - -0.007209304254502058, - 0.0022724242880940437, - -0.010196209885179996, - -0.013916265219449997, - 0.023026326671242714, - -0.005033615045249462, - 0.01178470067679882, - -0.015260372310876846, - 0.010657822713255882, - 0.01576271653175354, - 0.005057374481111765, - -0.021464990451931953, - -0.03948146104812622, - -0.02025665156543255, - 0.005922898184508085, - 0.018288008868694305, - 0.016794556751847267, - -0.029027292504906654, - 0.014961682260036469, - 0.026977188885211945, - 0.01573556289076805, - -0.006608528550714254, - -0.014147071167826653, - 0.001007232116535306, - 0.014527223072946072, - -0.003139645094051957, - -0.020283805206418037, - -0.6343101263046265, - -0.009191523306071758, - 0.0011625172337517142, - -0.011839007958769798, - 0.006482942961156368, - 0.04882233217358589, - 0.027289455756545067, - 0.004565213806927204, - 0.003031030297279358, - 0.03521833196282387, - -0.005179565865546465, - 0.0194013100117445, - -0.013223846442997456, - 0.007725224364548922, - -0.021980909630656242, - -0.01566767878830433, - -0.02237463928759098, - -0.008634872734546661, - 0.033561959862709045, - 0.01725616864860058, - -0.007677705027163029, - 0.02069110982120037, - -0.020894762128591537, - -0.006445606704801321, - -0.0023623709566891193, - -0.004246158059686422, - 0.018138663843274117, - -0.017188284546136856, - 0.004364955238997936, - -0.009415540844202042, - -0.025443006306886673, - 0.017269745469093323, - -0.028538525104522705, - 0.008594142273068428, - 0.04909386858344078, - 0.019509924575686455, - -0.0020891367457807064, - 0.03426795452833176, - 0.00940875243395567, - 0.022442523390054703, - -0.0029835114255547523, - -0.02289055846631527, - 0.007779531646519899, - -0.007304341997951269, - 0.007636974565684795, - 0.006435424089431763, - 0.061313025653362274, - -0.012755445204675198, - 0.00422239862382412, - -0.03136251121759415, - 0.007596244104206562, - 0.005641178693622351, - 0.015138180926442146, - 0.01805720292031765, - 0.009870365262031555, - 0.00568530336022377, - 0.043690282851457596, - -0.01597994565963745, - -0.0097617506980896, - 0.006000964902341366, - 0.02542942948639393, - 0.014038456603884697, - 0.0017734752036631107, - -0.016767403110861778, - -0.030004825443029404, - 0.013570055365562439, - -0.02842991054058075, - -0.04037753492593765, - 0.02644769288599491, - 0.0021621123887598515, - -0.007433322258293629, - 0.01634651981294155, - -0.0026950035244226456, - -0.00904217828065157, - 0.026651345193386078, - 0.0264748465269804, - 0.005335699766874313, - -0.0175684355199337, - 0.014839490875601768, - 0.03736347332596779, - 0.0009300138335675001, - 0.014622260816395283, - 0.012633252888917923, - -0.0030225447844713926, - 0.031389664858579636, - -0.0056343902833759785, - -0.007847416214644909, - -0.006258924957364798, - 0.00483675068244338, - 0.001406051917001605, - 0.01803004927933216, - 0.02589104138314724, - 0.006822363939136267, - -0.01407918706536293, - 0.000669932400342077, - 0.028239835053682327, - -0.004588973242789507, - 0.01778566464781761, - 0.009035389870405197, - -0.029054446145892143, - -0.016699517145752907, - -0.0074061681516468525, - 0.01158104743808508, - -0.011031185276806355, - 0.023053480312228203, - 0.013264576904475689, - -0.015328256413340569, - 0.017609165981411934, - 0.022537561133503914, - -0.007229669485241175, - -0.0006788421887904406, - -0.0038116988725960255, - -0.012314197607338428, - -0.016414403915405273, - -0.0033568746875971556, - -0.017215438187122345, - 0.007616609334945679, - -0.0005587720079347491, - -0.006880065891891718, - -0.03470241278409958, - 0.0034570039715617895, - 0.006903825327754021, - 0.011594624258577824, - -0.0016699518309906125, - -0.013441075570881367, - 0.018858235329389572, - 0.01130951102823019, - 0.003940679132938385, - -0.005671726539731026, - -0.0006190192070789635, - 0.016536595299839973, - -0.0030853378120809793, - 0.014717298559844494, - -0.007725224364548922, - 0.010746072046458721, - 0.02938028983771801, - 0.031905584037303925, - -0.012796175666153431, - 0.020487457513809204, - -0.03054789826273918, - -0.0373363196849823, - -0.020555341616272926, - 0.01637367345392704, - -0.036956168711185455, - -0.017609165981411934, - -0.039400000125169754, - -0.01151995174586773, - 0.002011070027947426, - 0.007446899078786373, - -0.010929359123110771, - -0.03567994758486748, - -0.016726672649383545, - -0.003832064103335142, - 0.004639886319637299, - -0.015002412721514702, - 0.005980599671602249, - -0.03567994758486748, - -0.014853067696094513, - 0.001814205781556666, - -0.01934700272977352, - 0.0068155755288898945, - 0.015328256413340569, - -0.042223986238241196, - -0.0033161442261189222, - -0.0017717781011015177, - -0.02105768583714962, - 0.03106381930410862, - -0.002245270647108555, - -0.026651345193386078, - -0.030982358381152153, - 0.010433804243803024, - 0.0012304014526307583, - -0.008675603196024895, - 0.0024879565462470055, - 0.0012889516074210405, - -0.0004111237940378487, - -0.002864714013412595, - 0.0019550654105842113, - -0.013855169527232647, - -0.003044607350602746, - 0.011133012361824512, - -0.009659924544394016, - -0.024044590070843697, - 0.0050743455067276955, - 0.027153687551617622, - 0.018722467124462128, - 0.0025235959328711033, - 0.006146916188299656, - -0.021464990451931953, - 0.02986905723810196, - 0.0010886931559070945, - 0.02396312914788723, - 0.005359459202736616, - 0.022442523390054703, - -0.04502081498503685, - 0.013637939468026161, - -0.015871331095695496, - 0.021044109016656876, - -0.0028562285006046295, - 0.018383046612143517, - 0.0341593399643898, - 0.005145623814314604, - 0.027533840388059616, - -0.023297864943742752, - 0.01762274280190468, - 0.007107477635145187, - 0.0012414326192811131, - -0.006764662452042103, - 0.03994307667016983, - 0.02962467260658741, - 0.02169579640030861, - -0.006360751576721668, - -0.01898042857646942, - -0.0017921434482559562, - -0.005427343305200338, - 0.04982701689004898, - -0.0192791186273098, - 0.009924672544002533, - 0.026203308254480362, - -0.001367018441669643, - 0.008485527709126472, - -0.003709872718900442, - 0.042006753385066986, - 0.010983666405081749, - -0.023243557661771774, - -0.017188284546136856, - 0.01750055141746998, - -0.0012287043500691652, - 0.0021383529528975487, - -0.005858408287167549, - -0.009483425877988338, - 0.0029886027332395315, - 0.0035197967663407326, - 0.007949242368340492, - 0.017894281074404716, - 0.0028613198082894087, - 0.026366230100393295, - 0.0061333393678069115, - 0.035761408507823944, - 0.013916265219449997, - 0.03467525914311409, - 0.031878430396318436, - 0.02610827051103115, - -0.006123156752437353, - 0.019265541806817055, - -0.012796175666153431, - 0.007317918818444014, - 0.03491964191198349, - -0.012836906127631664, - -0.018898967653512955, - -0.010182633064687252, - 0.0009037086856551468, - -0.025755273178219795, - -0.01664520986378193, - 0.010705341584980488, - 0.0017717781011015177, - 0.019061889499425888, - -0.00343154720030725, - 0.0026322107296437025, - 0.001672497484833002, - 0.003967832773923874, - 0.014717298559844494, - 0.021994486451148987, - 0.0029190215282142162, - 0.0032160149421542883, - 0.0074061681516468525, - -0.03168835490942001, - -0.014445762149989605, - 0.0039542559534311295, - -0.013339249417185783, - -0.006323414854705334, - 0.0013636242365464568, - -0.010942935943603516, - 0.015083873644471169, - 0.015192488208413124, - -0.005383218638598919, - -0.005858408287167549, - 0.029434597119688988, - 0.024723432958126068, - 0.011513163335621357, - 0.002540566958487034, - -0.024981392547488213, - -0.0014603593153879046, - 0.03231288865208626, - -0.020514611154794693, - -0.011832219548523426, - -0.008926775306463242, - 0.01986292190849781, - -0.023270711302757263, - -0.0007649703184142709, - -0.007704859133809805, - 0.007922088727355003, - -0.006129945162683725, - 0.009605617262423038, - 0.010338766500353813, - -0.024506203830242157, - 0.029706135392189026, - -0.005240661557763815, - -0.007867781445384026, - -0.0036861130502074957, - 0.009741385467350483, - -0.01793501153588295, - -0.006004359107464552, - -0.010067230090498924, - 0.023420056328177452, - -0.016563748940825462, - -0.013590420596301556, - -0.021967332810163498, - 0.010725706815719604, - -0.03535410016775131, - 0.0041375430300831795, - 0.002121381927281618, - -0.0063166264444589615, - -0.0031549190171062946, - 0.004229187034070492, - -0.006248742341995239, - 0.00925940740853548, - -0.002414981136098504, - 0.03369772806763649, - 0.001552851521410048, - -0.02530723623931408, - -0.0003377239918336272, - 0.0026865180116146803, - 0.006964921019971371, - 0.029896210879087448, - 0.027004342526197433, - 0.007073535583913326, - 0.01781282015144825, - -0.00824793241918087, - -0.022904135286808014, - -0.006537250243127346, - -0.027533840388059616, - 0.009401964023709297, - 0.015015989542007446, - 0.005057374481111765, - -0.00982284639030695, - 0.019700000062584877, - -0.029217367991805077, - 0.02613542415201664, - -0.008716333657503128, - 0.01722901500761509, - 0.0050437976606190205, - 0.04336443915963173, - -0.019089043140411377, - -0.017364783212542534, - -0.017554858699440956, - -0.009605617262423038, - 0.029977671802043915, - 0.0037200553342700005, - -0.017921434715390205, - 0.0170796699821949, - 0.019333425909280777, - 0.01839662343263626, - 0.0008434614283032715, - 0.011655720882117748, - 0.013495382852852345, - 0.02274121344089508, - 0.014948105439543724, - -0.014866644516587257, - -0.00979569274932146, - -0.014880221337080002, - -0.005797312129288912, - 0.027832530438899994, - 0.017215438187122345, - 0.009096485562622547, - 0.027167264372110367, - -0.001814205781556666, - -0.012375293299555779, - 0.0076709166169166565, - -0.012870848178863525, - -0.012599310837686062, - 0.014500069431960583, - -0.0021655065938830376, - -0.013929842039942741, - 0.020650379359722137, - -0.013807650655508041, - -0.0013296821853145957, - -0.01781282015144825, - -0.001125180977396667, - -0.01803004927933216, - -0.002117987722158432, - -0.03033066913485527, - -0.015898484736680984, - -0.012015506625175476, - 0.0061333393678069115, - -0.025320813059806824, - 0.01505672000348568, - -0.013271365314722061, - -0.036195866763591766, - -0.0289186779409647, - -0.023243557661771774, - -0.0009308623848482966, - -0.021614335477352142, - 0.01808435656130314, - 0.013590420596301556, - -0.009843211621046066, - -0.02818552777171135, - -0.01143170241266489, - 0.004694193601608276, - -0.019903652369976044, - 0.015382564626634121, - -0.015559063293039799, - -0.004592367447912693, - 0.03394211083650589, - -0.022483253851532936, - 0.013692246749997139, - -0.01793501153588295, - -0.034783873707056046, - -0.00620461767539382, - 0.025239352136850357, - -0.018627429381012917, - 0.00022465434449259192, - 0.004181668162345886, - 0.009843211621046066, - 0.023026326671242714, - 0.0009189826087094843, - -0.0007883054786361754, - -0.02491350844502449, - 0.01866815984249115, - 0.0028511371929198503, - 0.020460303872823715, - 0.023365749046206474, - 0.013427498750388622, - -0.0014679962769150734, - 0.011567470617592335, - -0.020894762128591537, - -0.0016572235617786646, - -0.023420056328177452, - 0.014812336303293705, - -0.015599793754518032, - -0.014133494347333908, - 0.005128652788698673, - 0.01876319758594036, - 0.009985769167542458, - 0.004459993448108435, - -0.009313714690506458, - -0.012436388991773129, - 0.0018057202687487006, - -0.027859684079885483, - 0.02735733985900879, - 0.007385802920907736, - 0.015898484736680984, - 0.017310475930571556, - 0.00304121314547956, - -0.0006135036237537861, - -0.02206237055361271, - 0.03540840744972229, - 0.011472432874143124, - -0.00626571336761117, - 0.044912200421094894, - -0.02169579640030861, - -0.015436871908605099, - -0.033534806221723557, - 0.017799241468310356, - 0.017486974596977234, - 0.020460303872823715, - 0.002382736187428236, - -0.020433150231838226, - -0.041517987847328186, - -0.02120703086256981, - 0.008526258170604706, - 0.004700982011854649, - -0.015464025549590588, - -0.018953274935483932, - -0.005821072030812502, - 0.028049759566783905, - -0.01961853913962841, - 0.0026627585757523775, - -0.012965885922312737, - -0.026434114202857018, - -0.01433714758604765, - 0.005841437261551619, - -0.01664520986378193, - 0.044233355671167374, - -0.0030242418870329857, - -0.003239774378016591, - -0.022972019389271736, - 0.007317918818444014, - -0.022442523390054703, - -0.04884948581457138, - 0.014269262552261353, - -0.011384183540940285, - 0.0272079948335886, - 0.017242591828107834, - 0.018125087022781372, - -0.005305151920765638, - 0.02271405979990959, - 0.00314134219661355, - -0.00495894206687808, - 0.005620813462883234, - -0.029461750760674477, - -0.009809269569814205, - -0.01705251634120941, - 0.01922481134533882, - 0.008451585657894611, - -0.004208821803331375, - 0.014445762149989605, - 0.032367195934057236, - 0.006401482038199902, - 0.03005913272500038, - -0.012273467145860195, - -0.016685940325260162, - -0.013339249417185783, - -0.034295108169317245, - -0.008886043913662434, - -0.012483907863497734, - 0.029923364520072937, - -0.0011133012594655156, - -0.026637768372893333, - -0.0012176731834188104, - 0.018260855227708817, - -0.02418035827577114, - -0.01735120639204979, - -0.010888628661632538, - 0.026298345997929573, - -0.04735603183507919, - 0.032421503216028214, - 0.01674024946987629, - -0.0026983977295458317, - -0.018749620765447617, - 0.0034128790721297264, - -0.03008628636598587, - -0.017758511006832123, - 0.02008015289902687, - -0.00887246709316969, - 0.006673018913716078, - 0.012599310837686062, - -0.015518332831561565, - 0.009239042177796364, - -0.016848864033818245, - 0.002343702595680952, - -0.010542419739067554, - -0.003916919697076082, - -0.012721503153443336, - -0.017310475930571556, - -0.0341593399643898, - -0.003658959409222007, - -0.016387250274419785, - 0.013889111578464508, - 0.009096485562622547, - 0.007562302052974701, - 0.014690144918859005, - -0.020786147564649582, - -0.010922570712864399, - -0.012103755958378315, - -0.0065813749097287655, - -0.0007849112735129893, - 0.01759558916091919, - 0.03109097294509411, - 0.025931771844625473, - -0.004181668162345886, - -0.006007753312587738, - -0.050424396991729736, - 0.03054789826273918, - 0.0008952231728471816, - 0.021003376692533493, - 0.011302722617983818, - -0.01674024946987629, - -0.015613370575010777, - 0.019170504063367844, - 0.005586871411651373, - 0.001848147832788527, - -0.0031956497114151716, - 0.04097491502761841, - 0.03323611244559288, - 0.008220778778195381, - -0.01603425294160843, - -0.006062060594558716, - 0.01005365327000618, - -0.010277670808136463, - -0.01202908344566822, - 0.007698070723563433, - -0.022822674363851547, - -1.0785900485643651e-05, - 0.01228704396635294, - 0.0380694717168808, - -0.004229187034070492, - 0.022415369749069214, - 0.017826396971940994, - -0.014866644516587257, - 0.011051550507545471, - -0.020188767462968826, - -0.004731530323624611, - 0.01467656809836626, - -0.01612929068505764, - 0.03516402468085289, - -0.01035913173109293, - -0.017758511006832123, - 0.020582495257258415, - 0.016292212530970573, - -0.016441557556390762, - -0.011648932471871376, - 0.004297071136534214, - 0.022876981645822525, - -0.007555513642728329, - -0.0031141885556280613, - 0.0037777568213641644, - -0.010718918405473232, - 0.001815902884118259, - -0.027140110731124878, - 0.004161302465945482, - -0.004548242781311274, - -0.00985678844153881, - -0.010155479423701763, - 0.001567276893183589, - 0.002513413317501545, - -0.0027611905243247747, - 0.0002681426703929901, - -0.011608202010393143, - -0.007270399946719408, - 0.013929842039942741, - -0.02420751191675663, - 0.021437836810946465, - -0.03500110283493996, - -0.034077879041433334, - 0.002255453262478113, - -0.016020676121115685, - 0.01133666466921568, - -0.01686244085431099, - -0.012646829709410667, - -0.009850000031292439, - 0.02313494123518467, - -0.029000138863921165, - 0.025605928152799606, - 0.02240179292857647, - -0.015355410054326057, - -0.01493452861905098, - 0.005963628645986319, - 0.006252136547118425, - 0.00018169636314269155, - 0.012402446940541267, - 0.012938732281327248, - -0.005943263415247202, - 0.0048808753490448, - -0.006146916188299656, - 0.009123639203608036, - -0.018926121294498444, - -9.514397970633581e-05, - 0.008709545247256756, - 0.004212216008454561, - 0.014255685731768608, - -0.006866488605737686, - -0.013026981614530087, - 0.033670574426651, - 0.009965403005480766, - 0.016170021146535873, - 0.016305789351463318, - -0.016170021146535873, - 0.01805720292031765, - 0.025700965896248817, - -0.014242108911275864, - -0.010250517167150974, - -0.026732806116342545, - -0.012796175666153431, - 0.022972019389271736, - 0.006038301158696413, - -0.031905584037303925, - -0.010427015833556652, - -0.017242591828107834, - -0.020215921103954315, - -0.00355713302269578, - 0.00688685430213809, - 0.004504118114709854, - 0.0017666867934167385, - 0.023053480312228203, - 0.007860993035137653, - 0.028945831581950188, - 0.025660235434770584, - 0.0125653687864542, - -0.0196456927806139, - 0.01366509310901165, - -0.009422329254448414, - -0.01729689911007881, - 0.00794245395809412, - -0.0023725535720586777, - 0.02271405979990959, - 0.0055732945911586285, - -0.025456583127379417, - -0.008254720829427242, - 0.02369159273803234, - -0.01820654794573784, - -0.0009325594874098897, - 0.007440110668540001, - 0.0056649381294846535, - 0.01433714758604765, - 0.018600275740027428, - 0.00812574103474617, - 0.03185127675533295, - 0.006415058858692646, - 0.022931288927793503, - -0.019197657704353333, - -0.011390971951186657, - 0.004151119850575924, - 0.00283416616730392, - 0.0050437976606190205, - -0.01410634070634842, - -0.05800027772784233, - -0.002547355368733406, - 0.0264748465269804, - 0.012545003555715084, - 0.015871331095695496, - 0.023311441764235497, - -0.0011693056439980865, - -0.020487457513809204, - 0.014853067696094513, - 0.0011438491055741906, - -0.0016054618172347546, - -0.013590420596301556, - 0.028728602454066277, - -0.035272639244794846, - -0.009306926280260086, - 0.0026203307788819075, - 0.02164148911833763, - -0.016536595299839973, - -0.01688959449529648, - 0.024533357471227646, - 0.002145141363143921, - 0.004140937235206366, - 0.018871812149882317, - -0.002050103386864066, - 0.016387250274419785, - -0.0025015335995703936, - 0.010284459218382835, - -0.009361233562231064, - -0.02845706418156624, - -0.007385802920907736, - -0.0016801344463601708, - -0.007290765177458525, - -0.007596244104206562, - 0.00369968987070024, - -0.027072226628661156, - -0.00040327469469048083, - 0.014160647988319397, - -0.0269636120647192, - 0.0170796699821949, - -0.019686423242092133, - 0.010508476756513119, - -0.0007055716123431921, - -0.0072839767672121525, - -0.0400245375931263, - -0.010162267833948135, - -0.03329041972756386, - 0.031389664858579636, - 0.007657339796423912, - -0.030140593647956848, - -0.004782443400472403, - 0.005077739711850882, - -0.03035782277584076, - -0.004999672994017601, - -0.024967815726995468, - 0.0016402524197474122, - -0.03201419860124588, - -0.010467746295034885, - -0.004364955238997936, - -0.013502171263098717, - -0.005359459202736616, - 0.007820261642336845, - -0.00824793241918087, - -0.0344037227332592, - -0.01854596845805645, - 0.1827986240386963, - -0.03386064991354942, - 0.0046059442684054375, - 0.004273311700671911, - -0.008241144008934498, - -0.026149000972509384, - 0.050207167863845825, - -0.010352343320846558, - 0.011105858720839024, - 0.020826878026127815, - 0.02386809140443802, - 0.004215610213577747, - -0.010264093987643719, - 0.00765055138617754, - 0.014975259080529213, - -0.007446899078786373, - -0.043228670954704285, - -0.01888539083302021, - -0.010881840251386166, - 0.03223142772912979, - 0.016998209059238434, - -0.018613852560520172, - -0.005379824433475733, - -0.017242591828107834, - 0.025456583127379417, - 0.016292212530970573, - 0.016916748136281967, - 0.013889111578464508, - 0.015708409249782562, - 0.01622432842850685, - -0.031145280227065086, - -0.010746072046458721, - 0.017364783212542534, - -0.005349276587367058, - 0.003402696456760168, - -0.0051354411989450455, - 0.006791816093027592, - -0.009809269569814205, - 0.015654101967811584, - 0.020365266129374504, - 0.019197657704353333, - -0.02840275689959526, - -0.028239835053682327, - -0.03209565952420235, - -0.0057565816678106785, - 0.007657339796423912, - -0.002279212698340416, - 0.004246158059686422, - -0.004120572004467249, - 0.0003619077324401587, - -0.01505672000348568, - 0.029081599786877632, - 0.028348449617624283, - 0.045889731496572495, - 0.010223363526165485, - -0.020541764795780182, - -0.013115230947732925, - -0.0006139278993941844, - 0.025958925485610962, - -0.0021638094913214445, - -0.032910268753767014, - 0.020487457513809204, - -0.031172433868050575, - 0.023460786789655685, - -0.026895727962255478, - 0.007759166415780783, - -0.017894281074404716, - -0.012673983350396156, - -0.006710355170071125, - -0.02555162087082863, - -0.008675603196024895, - -0.021750103682279587, - -0.020283805206418037, - 0.005766764283180237, - -0.017514128237962723, - -0.03749924153089523, - 0.007657339796423912, - -0.00593647500500083, - 0.021722950041294098, - 0.0373363196849823, - 0.0024234666489064693, - 0.0026559701655060053, - -0.02025665156543255, - -0.013332461006939411, - -0.0036114405374974012, - -0.029543211683630943, - 0.028782909736037254, - 0.014377878047525883, - 0.018966851755976677, - -0.028321295976638794, - -0.03844962269067764, - -0.007419745437800884, - 0.00036572624230757356, - -0.003828669898211956, - -0.0029919969383627176, - -0.005759975872933865, - 0.01133666466921568, - 0.0033229326363652945, - -0.0040764473378658295, - -0.000156982263433747, - -0.021220607683062553, - 0.06408270448446274, - 0.02984190359711647, - -0.0056343902833759785, - -0.02635265327990055, - 0.005379824433475733, - -0.0005384067189879715, - 0.030710820108652115, - 0.0010505083482712507, - -0.01389589998871088, - -0.023420056328177452, - -0.017269745469093323, - 0.015097450464963913, - -0.027140110731124878, - 0.003239774378016591, - 0.009788904339075089, - -0.002077257027849555, - -0.011241626925766468, - 0.018125087022781372, - -0.011343453079462051, - 0.0075487252324819565, - -0.008913198485970497, - 0.01151995174586773, - 0.008648449555039406, - 0.009897518903017044, - -0.03179696947336197, - -0.03535410016775131, - 0.029488904401659966, - -0.006873277015984058, - 0.01199514139443636, - 0.01065103430300951, - -0.0005188899813219905, - 0.012877636589109898, - -0.011696451343595982, - 0.01649586483836174, - -0.0019211233593523502, - -0.0036861130502074957, - -0.030982358381152153, - -0.013434287160634995, - 0.0015638826880604029, - 0.01430999394506216, - 0.00044591445475816727, - -0.0024608029052615166, - -0.008336181752383709, - 0.00818683672696352, - -0.012606099247932434, - 0.026434114202857018, - -0.006136733572930098, - -0.018858235329389572, - -0.01898042857646942, - -0.01854596845805645, - 0.003733632154762745, - 0.012273467145860195, - -0.03497394919395447, - 0.00436156103387475, - -0.0025948742404580116, - -0.037227705121040344, - -0.029733289033174515, - 0.0036793246399611235, - 0.01671309396624565, - -0.032883115112781525, - -0.006330203264951706, - 0.015233218669891357, - -0.03543556109070778, - -0.009564886800944805, - -0.0097617506980896, - -0.17367498576641083, - 0.014092763885855675, - 0.008553411811590195, - -0.005413766484707594, - 0.007745589595288038, - 0.01202908344566822, - 0.01600709930062294, - 0.010915782302618027, - -0.006174069829285145, - -0.013244211673736572, - 0.004639886319637299, - 0.0028171951416879892, - -0.02074541710317135, - -0.02576884999871254, - -0.01591206155717373, - 0.008349758572876453, - -0.0033280239440500736, - 0.02032453566789627, - 0.025022123008966446, - 0.010270882397890091, - 0.006197829265147448, - -0.014540799893438816, - 0.01735120639204979, - -0.018369469791650772, - 0.0016283727018162608, - 0.01854596845805645, - -0.017731357365846634, - 0.019170504063367844, - -0.010338766500353813, - -0.013766920194029808, - -0.016672363504767418, - -0.0013644727878272533, - 0.009598828852176666, - -0.0022944866213947535, - -0.012354928068816662, - -0.010399862192571163, - -0.0035197967663407326, - -0.001386535237543285, - -0.0029037476051598787, - 0.04388035833835602, - -0.0038049104623496532, - 0.04808918014168739, - 0.0034587010741233826, - 0.0075487252324819565, - -0.011574259027838707, - 0.040051691234111786, - 0.018247278407216072, - -0.03033066913485527, - -0.008967505767941475, - -0.022211717441678047, - -0.004005169030278921, - -0.027099380269646645, - -0.012612887658178806, - 0.020677533000707626, - -0.0005719245527870953, - 0.013162749819457531, - -0.008234355598688126, - 0.006764662452042103, - -0.0020636802073568106, - 0.01505672000348568, - -0.019781460985541344, - -0.0198900755494833, - 0.01517891138792038, - -0.014771605841815472, - -0.019292695447802544, - -0.011710028164088726, - -0.007379014510661364, - 0.012931943871080875, - -0.008424432016909122, - -0.006571192294359207, - -0.004578790627419949, - -0.025605928152799606, - 0.007250034715980291, - -0.025605928152799606, - 0.0025524466764181852, - 0.00694794999435544, - 0.010399862192571163, - -0.004863904323428869, - 0.00680199870839715, - -0.005590265616774559, - -0.03231288865208626, - 0.0375807024538517, - 0.003794727846980095, - -0.01048132311552763, - -0.017799241468310356, - -0.006017935927957296, - -0.01949634775519371, - 0.014948105439543724, - -0.02056891843676567, - 0.010427015833556652, - 0.014214955270290375, - -0.025836734101176262, - 0.001010626321658492, - -0.036195866763591766, - -0.001275374786928296, - -0.0001367230579489842, - -0.004290282726287842, - 0.007433322258293629, - -0.004385320469737053, - 0.006174069829285145, - 0.016197174787521362, - -0.024560511112213135, - -0.024384012445807457, - 0.01395699568092823, - 0.008166471496224403, - 0.017649896442890167, - -0.025117160752415657, - 0.005030220840126276, - 0.03301888331770897, - -0.0038049104623496532, - 0.003506219945847988, - -0.003899948438629508, - 0.018043626099824905, - 0.01717470772564411, - 0.01259252242743969, - 0.0189125444740057, - -0.018871812149882317, - -0.014486492611467838, - 0.016780979931354523, - 0.011798277497291565, - 0.04062191769480705, - -0.020799724385142326, - -0.008166471496224403, - 0.009666712954640388, - -0.004887663759291172, - -0.033833496272563934, - -0.08748918026685715, - -0.0031939526088535786, - 0.024275396019220352, - 0.018138663843274117, - -0.0017582012806087732, - 0.029570365324616432, - -0.0004219428519718349, - 0.003866006387397647, - -0.013461440801620483, - 0.03307319059967995, - -0.004996278788894415, - -0.033806342631578445, - -0.02093549259006977, - -0.008709545247256756, - 0.034539490938186646, - 0.001433205557987094, - -0.00746726430952549, - -0.022089524194598198, - -0.036005791276693344, - 0.023582978174090385, - 0.003567315638065338, - -0.008695968426764011, - 0.007107477635145187, - -0.008315816521644592, - -0.023311441764235497, - -0.009972191415727139, - -0.042522676289081573, - 0.005420554894953966, - 0.012918367050588131, - -0.020310958847403526, - 0.02157360501587391, - -0.01288442499935627, - -0.0036827188450843096, - -0.011696451343595982, - -0.017391936853528023, - 0.0026339078322052956, - -0.02096264623105526, - -0.013305307365953922, - 0.02096264623105526, - -0.035299792885780334, - -0.009150792844593525, - 0.00562420766800642, - -0.005705668590962887, - -0.013624362647533417, - -0.0012906487099826336, - -0.038123778998851776, - -0.008112164214253426, - 0.01250427309423685, - 0.004992884583771229, - 0.00440568570047617, - -0.018939698114991188, - -0.03209565952420235, - -0.015002412721514702, - -0.010209786705672741, - 0.031634047627449036, - -0.0008078222163021564, - -0.004928394220769405, - 0.004123966209590435, - -0.012069813907146454, - -0.003866006387397647, - -0.01747339777648449, - 0.02276836708188057, - -0.03535410016775131, - 0.01211733277887106, - 0.002014464233070612, - -0.012959097512066364, - -0.01934700272977352, - -0.0023267315700650215, - 0.0250085461884737, - 0.007134631276130676, - -0.012694349512457848, - 0.0030242418870329857, - -0.004633097909390926, - 0.0169574785977602, - -0.02776464633643627, - 0.01130951102823019, - -0.05468752607703209, - -0.011404548771679401, - -0.0028222864493727684, - -0.00554614095017314, - -0.0033500862773507833, - -0.030982358381152153, - 0.02623046189546585, - -0.025334389880299568, - 0.0383138544857502, - 0.034783873707056046, - -0.010725706815719604, - 0.004246158059686422, - 0.025605928152799606, - -0.021139146760106087, - 0.011302722617983818, - 0.024899931624531746, - 0.015871331095695496, - -0.006004359107464552, - -0.008383701555430889, - 0.023284288123250008, - -0.0014518738025799394, - -0.009449483826756477, - 0.010854686610400677, - 0.019917229190468788, - -0.035544175654649734, - -0.026773536577820778, - -0.0646800845861435, - 0.02222529426217079, - 0.03950861468911171, - -0.015776293352246284, - -0.02181798778474331, - 0.0055223810486495495, - -0.013712611980736256, - 0.021750103682279587, - 0.04208821803331375, - 0.0049012405797839165, - -0.02813122048974037, - 0.0018209941918030381, - 0.0003071760875172913, - -0.0013347734929993749, - -0.015382564626634121, - -0.02754741720855236, - 0.011031185276806355, - 0.01827443204820156, - 0.01597994565963745, - -0.002711974550038576, - -0.009334079921245575, - -0.0076709166169166565, - -0.009524156339466572, - 0.029516058042645454, - -0.021750103682279587, - 0.00973459705710411, - 0.005366247612982988, - -0.016455134376883507, - 0.0038422467187047005, - 0.010352343320846558, - -0.002474379725754261, - -0.012714714743196964, - -0.01774493418633938, - 0.014296416193246841, - -0.015246795490384102, - -0.021030530333518982, - 0.0011752455029636621, - 0.02579600363969803, - 0.005084528122097254, - 0.04578111693263054, - -0.017310475930571556, - -0.02181798778474331, - -0.01517891138792038, - -0.02598607912659645, - -0.015681255608797073, - 0.0026899122167378664, - 0.029543211683630943, - 0.018736043944954872, - 0.01845093071460724, - -0.008512681350111961, - 0.03657601773738861, - 0.017948588356375694, - 0.017337629571557045, - -0.015219641849398613, - 0.004008563235402107, - 0.01527394913136959, - -0.004561819601804018, - 0.001173548400402069, - 0.013726188801229, - -0.033670574426651, - 0.04263129085302353, - 0.004656857345253229, - 0.019387733191251755, - -0.0016037647146731615, - -0.0020008874125778675, - -0.008159683085978031, - -0.025687389075756073, - -0.01783997379243374, - -0.010970089584589005, - -0.004429445136338472, - -0.00752836000174284, - 0.005858408287167549, - 0.010433804243803024, - 0.026827843859791756, - -0.007711647544056177, - -0.009449483826756477, - -4.301101580495015e-05, - -0.0022367851343005896, - -0.02132922224700451, - 0.016115713864564896, - 0.008356546983122826, - 0.022075947374105453, - -0.002737431088462472, - 0.004164696671068668, - 0.02552446722984314, - 0.0024200724437832832, - -0.01881750486791134, - 0.016387250274419785, - 0.009435906074941158, - 0.007793108467012644, - -0.009775327518582344, - 0.015368986874818802, - -0.008499104529619217, - 0.003994986414909363, - 0.01065103430300951, - 0.011777912266552448, - 0.005644572898745537, - -0.009530944749712944, - 0.03372488170862198, - 0.028755756095051765, - 0.009449483826756477, - 0.005736216437071562, - -0.017364783212542534, - -0.01793501153588295, - -0.013033770024776459, - 0.02981474995613098, - -0.011166954413056374, - -0.01934700272977352, - -0.0008935260120779276, - 0.024967815726995468, - -0.014364301227033138, - 0.010902205482125282, - -0.0024930478539317846, - 0.005841437261551619, - -0.014052033424377441, - 0.009340868331491947, - -0.017799241468310356, - -0.01479875948280096, - -0.019998691976070404, - 0.0317155085504055, - 0.020487457513809204, - 0.003563921432942152, - -0.0004531271697487682, - 0.003940679132938385, - 0.024044590070843697, - -0.011010820046067238, - 0.013529324904084206, - -0.022809097543358803, - 0.006455789320170879, - -0.015111027285456657, - -0.007535148411989212, - 0.003241471480578184, - -0.017921434715390205, - -0.004677222575992346, - -0.02215741015970707, - 0.008051068522036076, - 0.017188284546136856, - 0.005485044792294502, - 0.012096967548131943, - 0.11730393022298813, - 0.04113783687353134, - -0.02286340482532978, - 0.03500110283493996, - -0.005060768686234951, - 0.01805720292031765, - 0.010746072046458721, - 0.009435906074941158, - 0.013855169527232647, - -0.04341874644160271, - 0.016685940325260162, - 0.0009444392053410411, - 0.013332461006939411, - -0.02240179292857647, - -0.0002876593789551407, - 0.004083235748112202, - 0.008763852529227734, - 0.021777257323265076, - -0.02540227584540844, - -0.02681426703929901, - 0.02625761553645134, - -0.013651516288518906, - -0.0072228810749948025, - 0.025049276649951935, - -0.028239835053682327, - -0.013339249417185783, - 0.009653136134147644, - 0.0006474457331933081, - 0.002947872271761298, - -0.031905584037303925, - -0.020039422437548637, - 0.00132374232634902, - -0.05449745059013367, - -0.029190214350819588, - 0.024899931624531746, - -0.03204135224223137, - -0.013780497014522552, - -0.008791006170213223, - 0.01803004927933216, - 0.0006342931883409619, - 0.011377395130693913, - 0.02757457084953785, - -0.00862808432430029, - -0.035707101225852966, - 0.009598828852176666, - -0.004079841542989016, - -0.009245830588042736, - -0.001025051693432033, - -0.012918367050588131 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 41, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 209 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000042.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000042.json deleted file mode 100644 index 3b39107851a38408d4110b995d12a2934bde2afc..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000042.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000042", - "content": "Springer-Verlag Berlin Heidelberg, Berlin, 2009. - [22] fairaudio: Punktschallquelle - akustische Idealvorstellung | Lexikon fairaudio, 2020, https://www.fairaudio.de/lexikon/punktschallquelle/ [Zugriff am: 14.04.2023]. - [23] Br\u00fcel & Kj\u00e6r: Was sind Schallleistung und Schalldruck?, 2023, https://www.bksv.com/de/knowledge/blog/sound/sound-power-sound-pressure [Zugriff am: 06.04.2023]. ## II\n\nAbschlie\u00dfende Bewertung und Ausblick\n- [24] IMV CORPORATION: Schallleistung und Schalldruck \u2013 Schall in Aktion - IMV COR- PORATION, 2023, https://we-are-imv.com/de/news/topics/item/47939/ [Zugriff am: 16.05.2023]. - [25] DIN EN ISO 3740: Bestimmung Schallleistungspegel. Ausgabe Januar 2019. - [26] DIN EN ISO 3741: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- r\u00e4uschquellen aus Schalldruckmessungen. Ausgabe Januar 2011. - [27] DIN EN ISO 3743-1: Bestimmung der Schallleistungs- und Schallenergiepegel von Ger\u00e4uschquellen aus Schalldruckmessungen. Ausgabe Januar 2011. - [28] DIN EN ISO 3743-2: Bestimmung Schallleistungspegel. Ausgabe November 2022. - [29] DIN EN ISO 3744: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- r\u00e4uschquellen aus Schalldruckmessunge. Ausgabe Februar 2011. - [30] DIN EN ISO 3746: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- r\u00e4uschquellen aus Schalldruckmessungen. Ausgabe M\u00e4rz 2011. - [31] DIN EN ISO 3747: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- r\u00e4uschquellen aus Schalldruckmessungen. Ausgabe M\u00e4rz 2011. - [32] DIN EN ISO 9614-1: Akustik \u2013 Bestimmung der Schallleistungspegel von Ger\u00e4usch- quellen aus Schallintensit\u00e4tsmessungen \u2013 Teil 1: Messungen an diskreten Punk- ten. Ausgabe 2009. - [33] DIN EN ISO 9614-2: Bestimmung der Schalleistungspegel von Ger\u00e4uschquellen aus Schallintensit\u00e4tsmessungen Teil 2; Messung mit kontinuierlicher Abtastung. Aus- gabe 1996. - [34] DIN EN ISO 9614-3: Akustik \u2013Bestimmung der Schallleistungspegel von Ger\u00e4usch- quellen aus Schallintensit\u00e4tsmessungen \u2013 Teil 3: Scanning-Verfahren der Genauig- keitsklasse 1. Ausgabe 2009. - [35] ISO/TS 7849-2: Acoustics \u2014 Determination of airborne sound power levels emit- ted by machinery using vibration measurement \u2014 Part 2: Engineering method in- cluding determination of the adequate radiation factor.", - "embedding": [ - 0.02448982745409012, - 0.008137278258800507, - 0.015650611370801926, - -0.028363484889268875, - 0.013778777793049812, - 0.01723647117614746, - -0.021110128611326218, - -0.01093852985650301, - -0.009430663660168648, - -0.029871350154280663, - 0.030781270936131477, - 0.022799978032708168, - -0.0036559258587658405, - 0.008689729496836662, - -0.005589504260569811, - 0.015026667155325413, - 0.029117418453097343, - -0.0028353736270219088, - 0.013024845160543919, - -0.00601846631616354, - 3.5061344533460215e-05, - 0.019407279789447784, - -0.020122215151786804, - 0.005654498469084501, - -0.007467837538570166, - 0.016820508986711502, - 0.023800889030098915, - -0.029091419652104378, - -0.01093852985650301, - 0.009814130142331123, - 0.010698051191866398, - 0.013297820463776588, - -0.019836241379380226, - 0.01467569824308157, - -0.011555975303053856, - -0.0212401170283556, - -0.02513977140188217, - -0.013187330216169357, - 0.011464983224868774, - -0.00359093165025115, - -0.008930208161473274, - 0.011620969511568546, - 0.004640588536858559, - -0.025958698242902756, - -0.00867673009634018, - 0.016989493742585182, - 0.02690761350095272, - 0.005342526361346245, - -0.003330954583361745, - 0.00859873741865158, - 0.028519470244646072, - 0.012589383870363235, - -0.018237382173538208, - 0.01106851827353239, - -0.0015988581581041217, - -0.018822330981492996, - 0.0027671295683830976, - 0.008696229197084904, - -0.005755239631980658, - -0.003912652842700481, - -0.031275227665901184, - -0.015052665024995804, - -0.017704429104924202, - 0.013141834177076817, - -0.028961431235074997, - -0.0010488445404917002, - -0.017392458394169807, - 0.006463676691055298, - -0.014857682399451733, - -0.003522687591612339, - 0.019420277327299118, - 0.029715364798903465, - 0.009242180734872818, - 0.011360992677509785, - 0.0321071520447731, - -0.008689729496836662, - 0.0073768459260463715, - -0.021513091400265694, - 0.004429357126355171, - 0.0005069550243206322, - 0.023410923779010773, - -0.014350727200508118, - -0.028987430036067963, - 0.021396102383732796, - 0.011809452436864376, - 0.006772399414330721, - -0.007123368326574564, - 0.024476829916238785, - -0.028571465983986855, - -0.011965438723564148, - 0.011497480794787407, - 0.014077751897275448, - -0.0051377941854298115, - 0.004156381357461214, - 0.026751628145575523, - 0.01706748642027378, - 0.007071373052895069, - 0.0168985016644001, - -0.008748224005103111, - -0.011607971042394638, - -0.013258824124932289, - -0.023371927440166473, - 0.007058374118059874, - -0.0005492012714967132, - -0.034316956996917725, - 0.003974397666752338, - 0.00863773375749588, - 0.03135322034358978, - 0.002148059429600835, - -0.0025656474754214287, - -0.018016401678323746, - -0.002066816668957472, - 0.011146511882543564, - -0.028155503794550896, - 0.03998445346951485, - -0.012680375948548317, - 0.01795140840113163, - -0.018523357808589935, - -0.028363484889268875, - -0.013583795167505741, - 0.024151857942342758, - 0.00774081377312541, - 0.013414810411632061, - -0.008735225535929203, - 0.02394387684762478, - 0.0010675303637981415, - -0.01994023099541664, - -0.024970784783363342, - -0.009684140793979168, - -0.01467569824308157, - -0.015338639728724957, - -0.0016882253112271428, - 0.03941250592470169, - 0.015988582745194435, - 0.008761223405599594, - 0.004699083510786295, - -0.01206293050199747, - -0.004526848439127207, - -0.022319020703434944, - -0.034446943551301956, - 0.01605357602238655, - 0.020681165158748627, - -0.03205515816807747, - -0.04853769391775131, - -0.0006215074099600315, - 0.03928251564502716, - 0.01480568666011095, - -0.002188680926337838, - 0.01601457968354225, - 0.027219586074352264, - -0.03338104113936424, - -0.027843531221151352, - 0.008208772167563438, - 0.02112312614917755, - -0.02555573359131813, - 0.005820233840495348, - 0.0030774769838899374, - 0.033641017973423004, - -0.007532832212746143, - 0.002801251597702503, - -0.023800889030098915, - 0.006268694065511227, - -0.0003105505893472582, - 0.0002871932811103761, - 0.015000669285655022, - 0.017054487019777298, - 0.00543676782399416, - -0.006161453668028116, - -0.0037371686194092035, - -0.0017938409000635147, - -0.010132601484656334, - 0.029585376381874084, - -0.0097166383638978, - 0.013297820463776588, - -0.008091782219707966, - 0.024593818932771683, - 0.016651524230837822, - 0.004926563240587711, - -0.009495657868683338, - -0.02922140806913376, - -0.01618356443941593, - 0.015260647051036358, - 0.02277398109436035, - 0.026387659832835197, - -0.015572618693113327, - 0.03137921914458275, - 0.017730427905917168, - 0.006229697726666927, - 0.0012007685145363212, - -0.012361903674900532, - 0.020005226135253906, - 0.009723138064146042, - 0.0013908767141401768, - -0.020915145054459572, - -0.6335118412971497, - -0.015741603448987007, - -0.0143637266010046, - -0.005527759902179241, - 0.00416938029229641, - 0.054335180670022964, - 0.015377636067569256, - -0.008910709992051125, - -0.004500851035118103, - 0.04887566715478897, - 0.007123368326574564, - -0.007721315138041973, - -0.021266113966703415, - 0.001519240322522819, - -0.006450677756220102, - -0.014688697643578053, - -0.0013364439364522696, - -0.017639435827732086, - 0.043104179203510284, - -0.002113937633112073, - -0.01210192684084177, - 0.017639435827732086, - 0.009320173412561417, - -0.013908766210079193, - -0.003261085832491517, - 0.015156655572354794, - 0.02065516822040081, - -0.02859746478497982, - 0.01355779729783535, - 0.0016012955456972122, - -0.022695986554026604, - 0.0076238238252699375, - -0.03176918253302574, - 0.022332020103931427, - 0.03969847783446312, - -0.0016289179911836982, - 0.011822451837360859, - 0.013700785115361214, - 0.008826217614114285, - 0.019836241379380226, - -0.02360590733587742, - -0.008754723705351353, - -0.01115301065146923, - 0.0023414173629134893, - -0.0003568589745555073, - 0.00833876058459282, - 0.05511511117219925, - 0.005160542204976082, - 0.01320032961666584, - -0.03205515816807747, - -0.01416874397546053, - -0.010724049061536789, - 0.03239312767982483, - 0.02277398109436035, - 0.011334994807839394, - -0.007662820629775524, - 0.04877167567610741, - -0.015273645520210266, - -0.027817532420158386, - 0.013700785115361214, - -0.0016191689064726233, - 0.005966471042484045, - 0.01235540397465229, - -0.01579359918832779, - -0.013044343329966068, - 0.026205675676465034, - -0.008910709992051125, - -0.021058132871985435, - 0.004588593263179064, - -0.012114925310015678, - -0.014428720809519291, - 0.021942054852843285, - 0.0005496075027622283, - -0.030885260552167892, - 0.017847416922450066, - 0.007396344095468521, - 0.0028873689007014036, - -0.014597705565392971, - 0.008579239249229431, - 0.011308996938169003, - -0.007493835408240557, - -0.008852214552462101, - 0.013596794568002224, - 0.0027850030455738306, - 0.019615260884165764, - -0.022163035348057747, - -0.011438985355198383, - 0.009846626780927181, - 0.011737959459424019, - 0.002999484073370695, - 0.024190854281187057, - 0.026179678738117218, - -0.009053696878254414, - -0.011731459759175777, - -0.01731446385383606, - 0.023332931101322174, - -0.018861327320337296, - -0.0063986824825406075, - 0.0007003128994256258, - -0.03785264492034912, - -0.018484361469745636, - -0.020369194447994232, - 0.0018117143772542477, - -0.022617993876338005, - 0.016287555918097496, - 0.004393610171973705, - -0.012498391792178154, - -0.0004346489440649748, - 0.03577282652258873, - -0.02187705971300602, - 0.017548443749547005, - -0.0036299279890954494, - -0.02445083111524582, - -0.004260372370481491, - 0.0007778997533023357, - -0.023709896951913834, - 0.041960280388593674, - -0.01349280308932066, - 0.01334981620311737, - -0.01710648275911808, - 0.014311730861663818, - -0.003971147816628218, - 0.05014955252408981, - -0.020772157236933708, - -0.029637372121214867, - 0.02082415297627449, - 0.01098402589559555, - 0.01184844970703125, - 0.0028759948909282684, - -0.010425075888633728, - 0.02779153548181057, - -0.010659054853022099, - 0.017262469977140427, - 0.0003288302104920149, - 0.01765243522822857, - 0.019797245040535927, - 0.02559472993016243, - -0.027193589136004448, - 0.01091903168708086, - -0.026517648249864578, - -0.03452493995428085, - 0.0006909699877724051, - -0.004851819947361946, - -0.03041730262339115, - -0.03340703621506691, - -0.037098709493875504, - -0.008052785880863667, - -0.00013445682998280972, - 0.019654257223010063, - -0.0018702091183513403, - -0.018510358408093452, - -0.02001822553575039, - -0.007948795333504677, - 0.026621639728546143, - -0.015871591866016388, - -0.013031343929469585, - -0.021565087139606476, - -0.023787889629602432, - -0.015195652842521667, - -0.022436009719967842, - 0.01887432672083378, - 0.009703639894723892, - -0.04848570004105568, - -0.014961672946810722, - 0.01349280308932066, - -0.025542734190821648, - 0.004494351334869862, - -0.00025611789897084236, - -0.018432365730404854, - -0.03488890454173088, - 0.006531920749694109, - 0.016521533951163292, - -0.009872624650597572, - 0.009762134402990341, - -0.011685963720083237, - -0.011016523465514183, - -0.006739902310073376, - -0.005839732009917498, - -0.008312762714922428, - -0.0051995390094816685, - 0.0389445461332798, - -0.006002217531204224, - -0.014350727200508118, - 0.008832716383039951, - 0.012127924710512161, - 0.014831684529781342, - 0.02039519138634205, - 0.019966229796409607, - -0.009625646285712719, - 0.014584707096219063, - 0.0074613383039832115, - 0.020031223073601723, - -0.02940339222550392, - 0.025191765278577805, - -0.05449116602540016, - -0.007415842264890671, - -0.019420277327299118, - -0.02669963240623474, - 0.004029642790555954, - 0.012940352782607079, - 0.0406343974173069, - -0.0034284458961337805, - 0.009092693217098713, - -0.031067244708538055, - 0.023709896951913834, - 0.0010659054387360811, - 0.002486029639840126, - -0.010275588370859623, - 0.042090266942977905, - 0.028311489149928093, - 0.020174210891127586, - -0.010347082279622555, - -0.011438985355198383, - -0.016144568100571632, - 0.0016175440978258848, - 0.04021843522787094, - 0.010132601484656334, - 0.006843892857432365, - 0.015741603448987007, - -0.00421487633138895, - 0.016781512647867203, - -0.0038281604647636414, - 0.03834659978747368, - 0.01093852985650301, - -0.009554152376949787, - 0.004478103015571833, - -0.010522566735744476, - 0.022955963388085365, - -0.000245962553890422, - -0.005186540074646473, - -0.012342405505478382, - -0.029195411130785942, - 0.03806062415242195, - -0.01081504113972187, - -0.0005638250149786472, - 0.024632815271615982, - 0.030885260552167892, - -0.011250502429902554, - 0.02437283843755722, - 0.02330693230032921, - 0.02580271102488041, - 0.015780599787831306, - 0.002880869433283806, - 0.007383345160633326, - 0.013713783584535122, - -0.022098040208220482, - -0.0014607454650104046, - 0.03109324350953102, - -0.024593818932771683, - -0.012407399713993073, - -0.020707163959741592, - -0.012836361303925514, - -0.021981051191687584, - -0.012842861004173756, - 0.027193589136004448, - -0.0029751111287623644, - 0.02014821395277977, - -0.006343437358736992, - -0.010737047530710697, - 0.0034966899547725916, - -0.005046802572906017, - 0.010054608806967735, - 0.03889255225658417, - 0.006720404140651226, - -0.00018909260688815266, - 0.0003759510291274637, - -0.037020716816186905, - -0.018640346825122833, - -0.01227091159671545, - -0.010808541439473629, - -0.01345380675047636, - 0.012147422879934311, - -0.0072988527826964855, - 0.03096325509250164, - 0.01904331147670746, - 0.007903299294412136, - -0.0005008618463762105, - -0.0008595488034188747, - 0.028363484889268875, - 0.005859230179339647, - -0.030547291040420532, - -0.02606268785893917, - -0.003059603739529848, - 0.027843531221151352, - -0.016495537012815475, - -0.008182774297893047, - -0.0003083164046984166, - -0.007467837538570166, - -0.03665674850344658, - -0.0027655046433210373, - -0.02322893962264061, - 0.006733403075486422, - -0.0031635945197194815, - -0.017262469977140427, - 0.005303529556840658, - 0.009229181334376335, - 0.009508656337857246, - 0.003932151477783918, - -0.018276378512382507, - 0.007474337238818407, - 0.00965164415538311, - -0.02551673725247383, - -0.006986880209296942, - -0.016235560178756714, - 0.02163008227944374, - -0.004786825273185968, - -0.023241939023137093, - -0.016820508986711502, - -0.004728330764919519, - -0.023241939023137093, - -0.00012196574971312657, - 0.001575297792442143, - -0.011633967980742455, - 0.011861448176205158, - 0.019485272467136383, - -0.011861448176205158, - 0.005485513713210821, - 0.0012275786139070988, - 0.041752297431230545, - -0.008735225535929203, - -0.017223471775650978, - -0.019160300493240356, - 0.013895767740905285, - -0.0007287478656508029, - 0.008351759053766727, - 0.019628260284662247, - 0.021266113966703415, - 0.03143121302127838, - -0.0055505079217255116, - -0.03070327639579773, - -0.015403633937239647, - -0.026413656771183014, - 0.004910314455628395, - 0.009931119158864021, - 0.018939319998025894, - 0.012491892091929913, - 0.016378547996282578, - -0.002513652201741934, - 0.006850392557680607, - -0.03426496312022209, - 0.03577282652258873, - -0.004218125715851784, - 0.008065784350037575, - 0.0065026734955608845, - -0.015182653442025185, - 0.010100103914737701, - 0.019927233457565308, - 0.05371123552322388, - -0.0027053849771618843, - -0.02448982745409012, - 0.013193829916417599, - 0.01825038157403469, - 0.011354492977261543, - -0.004292869474738836, - -0.005622001364827156, - 0.026179678738117218, - 0.004965559579432011, - 0.012277411296963692, - -0.02771354280412197, - -0.00023986934684216976, - -0.0010179722448810935, - -0.0067853983491659164, - 0.020304199308156967, - 0.004153131507337093, - 0.0033569522202014923, - 0.02922140806913376, - 0.007155865430831909, - -0.016365548595786095, - 0.0033260800410062075, - -0.014259735122323036, - -0.0245028268545866, - 0.02432084269821644, - -0.00973613653331995, - 0.015364637598395348, - 0.011159510351717472, - -0.002388538094237447, - 0.004442356061190367, - -0.012608882039785385, - -0.01892632246017456, - -0.025906702503561974, - 0.0027557555586099625, - -0.013083339668810368, - -0.005924224853515625, - -0.011510479263961315, - -0.005024054553359747, - -0.017392458394169807, - 0.016287555918097496, - -0.014961672946810722, - -0.044170081615448, - -0.0067918975837528706, - -0.014649701304733753, - 0.006379184313118458, - -0.016586529091000557, - 0.02448982745409012, - 0.020980140194296837, - -0.01622256077826023, - -0.03676073998212814, - 0.004656836856156588, - 0.017327463254332542, - -0.02292996644973755, - 0.0212011206895113, - 0.006008717231452465, - -0.010392578318715096, - 0.0018848328618332744, - -0.01235540397465229, - -0.007968293502926826, - -0.006372685078531504, - -0.0339529886841774, - 0.0006235384498722851, - 0.02867545746266842, - -0.03137921914458275, - 0.0014818685594946146, - 0.001270637265406549, - -0.005813734605908394, - 0.0033439535181969404, - 0.0034771915525197983, - -0.0008562990697100759, - -0.01216692104935646, - 0.007818806916475296, - 0.016352549195289612, - 0.024047868326306343, - 0.017379458993673325, - 0.02677762508392334, - 0.006554668769240379, - 0.014870680868625641, - -0.020330196246504784, - -0.005514760967344046, - 0.0024941537994891405, - 0.01227091159671545, - 0.012862359173595905, - -0.001759718987159431, - 0.02420385368168354, - 0.002759005408734083, - -0.0052580335177481174, - 0.01470169611275196, - 0.002169182524085045, - 0.011360992677509785, - 0.003772915340960026, - -0.009944118559360504, - 0.012030432932078838, - 0.010035109706223011, - -0.0004557720967568457, - 0.02065516822040081, - -0.0016094198217615485, - -0.016742514446377754, - -0.02805151231586933, - 0.03426496312022209, - 0.01218641921877861, - -0.023592907935380936, - 0.013882769271731377, - -0.02238401584327221, - 0.011659965850412846, - -0.032965075224637985, - 0.009261678904294968, - 0.0195502657443285, - 0.01068505272269249, - 0.007233858574181795, - -0.0009359170217067003, - -0.025581730529665947, - -0.005920975003391504, - 0.004601591732352972, - 0.004273370839655399, - -0.01710648275911808, - -0.009183685295283794, - 0.006141955498605967, - 0.014051754027605057, - -0.011484481394290924, - 0.011698962189257145, - 0.009684140793979168, - -0.03150920569896698, - -0.03574683144688606, - 0.01988823711872101, - -0.006050963420420885, - 0.035200878977775574, - -0.020135214552283287, - -0.005963221192359924, - -0.01680750958621502, - 0.002942614024505019, - -0.016573529690504074, - -0.031015248969197273, - 0.002388538094237447, - -0.013440808281302452, - 0.021136125549674034, - -0.005358774680644274, - 0.011562475003302097, - 0.013674787245690823, - -0.009866124950349331, - 0.023072954267263412, - -0.010659054853022099, - 0.005020804703235626, - -0.009658143855631351, - -0.013674787245690823, - -0.018952319398522377, - 0.011789954267442226, - 0.006395432632416487, - 0.0017922160914167762, - -0.003720920067280531, - 0.012322907336056232, - 0.018783334642648697, - 0.03889255225658417, - -0.015741603448987007, - 0.00015994675050023943, - -0.008767722174525261, - -0.008332260884344578, - 0.0072208596393466, - -0.016339551657438278, - 0.014129746705293655, - 0.01669052056968212, - -0.008527243509888649, - -0.008806719444692135, - 0.030053334310650826, - -0.013778777793049812, - -0.011796453967690468, - -0.015871591866016388, - 0.021825063973665237, - -0.04489801824092865, - 0.04539197310805321, - -0.0007864302606321871, - 0.014077751897275448, - -0.020473184064030647, - -0.0006678157951682806, - -0.03598080947995186, - -0.012966349720954895, - 0.006765900179743767, - -0.008007289841771126, - 0.011406488716602325, - -0.008273766376078129, - -0.004374112002551556, - -0.006609913893043995, - -0.006450677756220102, - 0.008956206031143665, - -0.026517648249864578, - 0.0064831748604774475, - -0.010405576787889004, - -0.012517889961600304, - -0.02685561776161194, - -0.01230990793555975, - -0.024346841499209404, - 0.008247768506407738, - 0.012979349121451378, - 0.0031489706598222256, - 0.022241028025746346, - -0.010191095992922783, - 0.0010317835258319974, - 0.004874567501246929, - 0.010522566735744476, - 0.017418455332517624, - -0.01108801644295454, - 0.029663369059562683, - 0.023254938423633575, - -0.008689729496836662, - -0.0271155945956707, - -0.04611990973353386, - 0.003080726834014058, - -0.005570006091147661, - 0.038242608308792114, - 0.014415721409022808, - -0.02318994328379631, - -0.00978163257241249, - 0.014194740913808346, - 0.010971027426421642, - -0.0019612011965364218, - -0.0043838610872626305, - 0.023553911596536636, - 0.012517889961600304, - 0.006470176391303539, - -0.02467181161046028, - 0.023982873186469078, - -0.012927353382110596, - 0.005699994508177042, - -0.006427930202335119, - -0.00861823558807373, - -0.016066575422883034, - -0.00124626443721354, - -0.0008831091690808535, - 0.0407903827726841, - 0.004604841582477093, - 0.006063962355256081, - 0.015117659233510494, - -0.02225402742624283, - 0.01727546751499176, - -0.03340703621506691, - -0.024892792105674744, - 0.011146511882543564, - -0.023761892691254616, - 0.030313311144709587, - -0.026387659832835197, - -0.010041609406471252, - -0.0071818633005023, - -0.00735084805637598, - 0.017626436427235603, - 0.007097370456904173, - 0.0131548335775733, - 0.02529575675725937, - -0.029975341632962227, - -0.0015168029349297285, - 0.007812307216227055, - -0.03062528371810913, - 0.0017288466915488243, - 0.0004025580419693142, - -0.0015809847973287106, - -0.007513333577662706, - 0.003639677306637168, - -0.00969064049422741, - -0.0029036174528300762, - 0.015936587005853653, - -0.013921765610575676, - -0.010808541439473629, - -0.022189032286405563, - -0.018991315737366676, - -0.00661966297775507, - -0.006824394688010216, - 0.0013933139853179455, - -0.030807267874479294, - 0.0014282483607530594, - 0.0011300873011350632, - -0.01804240047931671, - 0.020434187725186348, - 0.009385167621076107, - -0.015221649780869484, - 0.007441840134561062, - 0.002486029639840126, - -0.03618879243731499, - 0.008306263014674187, - 0.03130122274160385, - -0.02643965557217598, - -0.017587440088391304, - -0.00728585384786129, - -0.0036266783718019724, - -0.009976615197956562, - 0.012673876248300076, - 0.005602503195405006, - -0.001147148315794766, - -0.011464983224868774, - -0.014961672946810722, - 0.011270000599324703, - -0.018484361469745636, - 0.006700905971229076, - 0.009151188656687737, - 0.012472393922507763, - 0.007669319864362478, - -0.012153922580182552, - 0.005323027726262808, - 0.017626436427235603, - 0.008520744740962982, - -0.004829071927815676, - 0.04266221821308136, - -0.03189917281270027, - 0.025646725669503212, - 0.02074616029858589, - 0.0006369434995576739, - -0.01195244025439024, - -0.004429357126355171, - -0.01994023099541664, - 0.013752780854701996, - -0.007584827486425638, - -0.02833748795092106, - -0.0012998847523704171, - -0.02221502922475338, - -0.002078190678730607, - -0.003210715251043439, - -0.0026956358924508095, - 0.002216303488239646, - 0.021721074357628822, - 0.0031782181467860937, - 0.007981291972100735, - -0.008377756923437119, - 0.017639435827732086, - 0.007916297763586044, - -0.013011845760047436, - 0.015052665024995804, - -0.0009741011308506131, - -0.02495778724551201, - 0.0008489871979691088, - 0.0076238238252699375, - 0.03772265464067459, - 0.018172388896346092, - 0.004562595393508673, - -0.029195411130785942, - 0.026153679937124252, - -0.016235560178756714, - -0.030469298362731934, - -0.009125190787017345, - 0.011822451837360859, - 0.010054608806967735, - 0.023891881108283997, - -0.02166907861828804, - 0.019823241978883743, - -0.0010642806300893426, - 0.017041489481925964, - -0.03543485701084137, - -0.03964648395776749, - 0.006089959759265184, - 0.003327704966068268, - 0.019368281587958336, - -0.007753812242299318, - -0.03530487045645714, - -0.002291046781465411, - 0.027609551325440407, - 0.0011528353206813335, - 0.013141834177076817, - 0.03798263147473335, - -0.0044098589569330215, - -0.04440406337380409, - 0.024359839037060738, - 0.014025756157934666, - 0.013083339668810368, - 0.007688818033784628, - 0.010230093263089657, - -0.016573529690504074, - 0.015442630276083946, - -0.0012933852849528193, - 0.014948674477636814, - -0.019823241978883743, - -0.0008258330053649843, - 0.022578997537493706, - -0.00978163257241249, - 0.004465104080736637, - 0.006008717231452465, - -0.028857441619038582, - 0.017301466315984726, - -0.021058132871985435, - 0.03184717521071434, - -0.0071818633005023, - -0.025230761617422104, - 0.004393610171973705, - 0.013843772001564503, - -0.01904331147670746, - -0.006817895453423262, - 0.006941384635865688, - -0.01887432672083378, - 0.009430663660168648, - 0.008085283450782299, - -0.0009513531113043427, - 0.021474095061421394, - -0.018341373652219772, - 0.008579239249229431, - 0.0031489706598222256, - -0.018003404140472412, - -0.02906542271375656, - -0.016547532752156258, - -0.030911259353160858, - 0.02395687624812126, - 0.018354373052716255, - -0.013713783584535122, - -0.011347993277013302, - -0.02867545746266842, - -0.017002493143081665, - 0.005625251214951277, - -0.010210594162344933, - -0.012907855212688446, - -0.018822330981492996, - -0.015728605911135674, - 0.011490981094539165, - -0.025152768939733505, - -0.001967700431123376, - 8.713289571460336e-05, - -0.008780721575021744, - -0.026491651311516762, - 0.020941143855452538, - 0.18947120010852814, - -0.013817775063216686, - -0.0017272218829020858, - 0.014493715018033981, - -0.018575353547930717, - -0.02176007069647312, - 0.02150009386241436, - -0.01334981620311737, - 0.005534259136766195, - 0.020590174943208694, - 0.005706493742763996, - 0.004279870539903641, - -0.008689729496836662, - 0.0063401879742741585, - 0.026283668354153633, - -0.006216698791831732, - -0.040868375450372696, - -0.014857682399451733, - -0.01199793629348278, - 0.0048128231428563595, - 0.0029718615114688873, - -0.02471080794930458, - -0.006379184313118458, - -0.014207740314304829, - 0.06255045533180237, - 0.0144027229398489, - -0.004634088836610317, - 0.002846747636795044, - 0.022825974971055984, - 0.01609257236123085, - -0.008559741079807281, - -0.0032155897933989763, - 0.015897590667009354, - 0.022280024364590645, - -0.01212142501026392, - -0.009534654207527637, - 0.02632266655564308, - -0.01702849008142948, - 0.018068397417664528, - 0.025776714086532593, - 0.006086710374802351, - -0.032081153243780136, - -0.01605357602238655, - -0.03704671561717987, - 0.015260647051036358, - 0.037696655839681625, - -0.0013283196603879333, - 0.004539847373962402, - -0.0035974308848381042, - 0.02035619504749775, - -0.01875733584165573, - 0.010483570396900177, - 0.017496448010206223, - 0.041882287710905075, - 0.01643054373562336, - -0.016625525429844856, - 0.005505011882632971, - 0.006541669834405184, - 0.0034771915525197983, - -0.0005662622861564159, - -0.02437283843755722, - 0.012920854613184929, - -0.014207740314304829, - 0.008247768506407738, - -0.02534775249660015, - 0.021903058513998985, - -0.01433772873133421, - -0.011419487185776234, - -0.021682078018784523, - -0.02504877932369709, - -0.0036656749434769154, - -0.02221502922475338, - -0.027349574491381645, - 0.020174210891127586, - -0.011231004260480404, - -0.02298196218907833, - 0.038034625351428986, - 0.012797364965081215, - 0.0194722730666399, - 0.021513091400265694, - -0.0064246803522109985, - 0.0022423011250793934, - -0.01298584882169962, - 0.0014453093754127622, - 0.0010878409957513213, - -0.02610168606042862, - 0.021864060312509537, - -0.009222682565450668, - 0.02023920603096485, - -0.004884317051619291, - -0.03551284968852997, - 0.012498391792178154, - -0.002248800592496991, - -0.008332260884344578, - 0.004075138829648495, - -0.013226327486336231, - 0.008072284050285816, - -0.01605357602238655, - 0.013895767740905285, - 1.7343433000860387e-06, - 0.001589921535924077, - 0.061354558914899826, - 0.04315617308020592, - -0.015273645520210266, - -0.006921886000782251, - -0.01875733584165573, - 0.014597705565392971, - 0.010652555152773857, - 0.00870272796601057, - -0.005755239631980658, - -0.007636822760105133, - -0.027063600718975067, - 0.010698051191866398, - -0.024216853082180023, - 0.016105571761727333, - 0.012524389661848545, - -0.007123368326574564, - -0.012296909466385841, - 0.021643079817295074, - -0.0010845912620425224, - -0.004380611702799797, - 0.011926442384719849, - 0.010093605145812035, - 0.00012816050730179995, - 0.011594971641898155, - -0.04463804140686989, - -0.04765377566218376, - 0.023449920117855072, - -0.013960761949419975, - 0.012654378078877926, - 0.02157808654010296, - -0.00681139575317502, - 0.017249470576643944, - -0.0014875555643811822, - 0.018939319998025894, - 0.020876148715615273, - 0.011295998468995094, - -0.01804240047931671, - -0.007792809046804905, - -0.013278322294354439, - 0.003186342539265752, - -0.02331993170082569, - -0.003600680734962225, - 0.02112312614917755, - 0.005472514778375626, - -0.015975583344697952, - 0.017665432766079903, - -0.0016654772916808724, - -0.016456540673971176, - -0.0020554426591843367, - -0.011555975303053856, - -0.010282088071107864, - -0.009710138663649559, - -0.02272198535501957, - 0.007877301424741745, - 0.010028610937297344, - -0.026088686659932137, - -0.023475918918848038, - -0.006593665108084679, - 0.030729275196790695, - -0.006837393622845411, - -0.004227875266224146, - 0.006063962355256081, - -0.016833506524562836, - -0.02061617188155651, - -0.011360992677509785, - -0.1631615310907364, - -0.008897710591554642, - 0.008865213952958584, - 0.003691672580316663, - 0.0039808969013392925, - 0.001993698300793767, - -0.0015777350636199117, - 0.013336817733943462, - -0.0008351759170182049, - -0.016105571761727333, - 0.0007324037724174559, - -0.004198627546429634, - 0.010763045400381088, - -0.02656964398920536, - -0.00674640154466033, - -0.01089953351765871, - -0.0007571828318759799, - 0.0405564047396183, - 0.015117659233510494, - 0.005725992377847433, - -0.005014305468648672, - -0.006541669834405184, - 0.0041628810577094555, - -0.010366580449044704, - -0.005180040840059519, - 0.01684650592505932, - -0.015455629676580429, - 0.008111280389130116, - -0.009729636833071709, - -0.01334981620311737, - -0.01605357602238655, - -0.006804896518588066, - 0.00865723192691803, - 0.0036169292870908976, - -0.01571560651063919, - -0.0169764943420887, - -0.003571433247998357, - -0.014545709826052189, - -0.00867673009634018, - 0.04734180122613907, - -0.003681923495605588, - 0.030859263613820076, - -0.010119603015482426, - 0.008982203900814056, - -0.004068639129400253, - 0.03338104113936424, - 0.02255300059914589, - -0.012023934163153172, - -0.021682078018784523, - -0.014311730861663818, - -0.005098797846585512, - -0.027089597657322884, - -0.02014821395277977, - -0.00011079486284870654, - 0.0026208925992250443, - 0.0168985016644001, - -0.020369194447994232, - 0.030521294102072716, - 0.010080605745315552, - 0.01571560651063919, - -0.017938409000635147, - -0.015390635468065739, - 0.008501246571540833, - -0.007688818033784628, - 0.013336817733943462, - -0.0071948617696762085, - 0.017470451071858406, - 0.028987430036067963, - -0.02365790121257305, - 0.00045699073234573007, - 0.007155865430831909, - -0.04235024377703667, - -0.0022715486120432615, - -0.011926442384719849, - 0.0007064060773700476, - -0.008962704800069332, - -0.010119603015482426, - 0.0028337487019598484, - -0.01073054876178503, - -3.5188284527976066e-05, - -0.003480441402643919, - 0.027843531221151352, - 0.0010772794485092163, - -0.027765538543462753, - -0.028155503794550896, - -0.0010642806300893426, - -0.01073054876178503, - 0.030443299561738968, - -0.02386588416993618, - 0.012504891492426395, - 0.010152099654078484, - -0.01841936632990837, - -0.03738468512892723, - -0.019147301092743874, - 0.007123368326574564, - 0.004627589602023363, - -0.00599896814674139, - 0.013245825655758381, - -0.02812950499355793, - -0.010379579849541187, - 0.015208651311695576, - -0.01220591738820076, - -0.011542976833879948, - 0.025399748235940933, - 0.0024844047147780657, - -0.010568062774837017, - -0.03231513500213623, - -0.0014038755325600505, - 0.03855458274483681, - -0.01622256077826023, - -0.013122336007654667, - -0.01083453930914402, - 0.03288708254694939, - 0.0035031894221901894, - -0.011549475602805614, - 0.010301586240530014, - -0.00952165573835373, - -0.018016401678323746, - -0.0067074052058160305, - -0.0025331503711640835, - 0.055895041674375534, - -0.013895767740905285, - -0.007103870157152414, - -0.004250623285770416, - -0.005368523765355349, - -0.03639677166938782, - -0.06930985301733017, - -0.013031343929469585, - 0.02636166289448738, - 0.020330196246504784, - 0.014623703435063362, - 0.024359839037060738, - 0.010087105445563793, - 9.754212806001306e-05, - 0.01474069245159626, - 0.036474764347076416, - 0.002858121646568179, - -0.016885502263903618, - -0.02812950499355793, - -0.015416632406413555, - 0.025243761017918587, - -0.011796453967690468, - 0.011939440853893757, - -0.029325399547815323, - -0.04307818040251732, - 0.03278309106826782, - -0.004822572227567434, - 0.003153845202177763, - -0.00833876058459282, - -0.004049140959978104, - -0.014818686060607433, - -0.00048095735837705433, - -0.03923052176833153, - 0.0271155945956707, - 0.023852884769439697, - -0.009872624650597572, - 0.008871713653206825, - -0.017730427905917168, - -0.016352549195289612, - -0.01968025416135788, - -0.02078515663743019, - -0.01323932595551014, - -0.017561443150043488, - -0.015143657103180885, - 0.021721074357628822, - -0.019758248701691628, - -0.01904331147670746, - 0.013252324424684048, - 0.018861327320337296, - -0.01808139681816101, - 0.001504616579040885, - -0.0110035240650177, - -0.009710138663649559, - 0.013187330216169357, - 0.01921229623258114, - -0.014350727200508118, - -0.02467181161046028, - -0.017678432166576385, - -0.01368778571486473, - 0.011900444515049458, - 0.03169118985533714, - -0.006635911297053099, - -0.012758368626236916, - -0.00367542402818799, - -0.022903969511389732, - 0.0028743701986968517, - -0.007188362535089254, - 0.04076438397169113, - -0.03759266808629036, - 0.016066575422883034, - 0.004842070396989584, - 0.0011780204949900508, - -0.00844925083220005, - 0.007669319864362478, - 0.020980140194296837, - -0.013187330216169357, - -0.015871591866016388, - 0.011451984755694866, - -0.0011950815096497536, - 0.025412745773792267, - -0.0071818633005023, - 0.002000197535380721, - -0.0424022413790226, - -0.00833876058459282, - 0.014064752496778965, - 2.3039949155645445e-05, - -0.011205006390810013, - -0.02140910178422928, - 0.014129746705293655, - -0.003841159399598837, - 0.012498391792178154, - 0.0038184113800525665, - -0.007253356743603945, - -0.00851424504071474, - 0.023007959127426147, - -0.017834417521953583, - -0.01562461443245411, - 0.013037843629717827, - 0.027141593396663666, - -0.004136883188039064, - -0.021812066435813904, - 0.011464983224868774, - 0.004097886383533478, - -0.02061617188155651, - 0.013869769871234894, - 0.028103508055210114, - -0.02416485734283924, - -0.010282088071107864, - -0.0558430477976799, - 0.02737557142972946, - 0.03192516788840294, - -0.016547532752156258, - -0.005430268589407206, - 0.01423373818397522, - 0.009619146585464478, - 0.008917208760976791, - 0.035538848489522934, - -0.006525421515107155, - -0.01981024257838726, - 0.012277411296963692, - -0.028857441619038582, - -0.0067074052058160305, - -0.036006808280944824, - -0.013778777793049812, - 0.00048380086082033813, - 0.015299643389880657, - -0.003041730262339115, - -0.024762803688645363, - 0.0029539880342781544, - -0.0026257671415805817, - 0.0015200526686385274, - 0.022098040208220482, - -0.031743183732032776, - 0.006837393622845411, - -0.003720920067280531, - -0.020642168819904327, - -0.01601457968354225, - 0.004764077719300985, - 0.0013819399755448103, - 0.002973486203700304, - -0.005563506856560707, - 0.026244672015309334, - -0.015780599787831306, - -0.016144568100571632, - 0.009541153907775879, - 0.032679103314876556, - -0.002867870731279254, - 0.027167590335011482, - -0.01774342730641365, - -0.023540912196040154, - -0.01744445227086544, - -0.0288054458796978, - 0.008416753262281418, - 0.005027304403483868, - 0.005423768889158964, - 0.010217093862593174, - 0.015260647051036358, - -0.012641378678381443, - 0.04936962202191353, - 0.02610168606042862, - -0.006343437358736992, - 0.009320173412561417, - 0.014779689721763134, - 0.02901342697441578, - 0.01934228464961052, - 0.008897710591554642, - 0.03280908986926079, - -0.0020944392308592796, - 0.0440920889377594, - -0.0008392380550503731, - 0.017470451071858406, - -0.016924498602747917, - 0.001178832957521081, - -0.012303409166634083, - -0.014896678738296032, - -0.034030981361866, - 0.005128045100718737, - -0.02538674883544445, - 0.0031164735555648804, - 0.0021935554686933756, - 0.016716517508029938, - 0.03969847783446312, - -0.018432365730404854, - -0.03213315084576607, - 0.004949311260133982, - 0.005985969211906195, - -0.0035551846958696842, - 0.00024332216707989573, - 0.013011845760047436, - 0.02580271102488041, - -0.0030677278991788626, - 0.0022244276478886604, - 0.04632789269089699, - -0.004370862618088722, - -0.03109324350953102, - 0.010178097523748875, - -0.0028337487019598484, - 0.0062199486419558525, - 0.002820749767124653, - 0.025711720809340477, - 0.017327463254332542, - 0.006713904440402985, - 0.0337190106511116, - -0.0002072706847684458, - 0.004981808364391327, - -0.02529575675725937, - 0.02653064765036106, - 0.025152768939733505, - 0.007682318799197674, - -0.0040231430903077126, - -0.013817775063216686, - -0.028519470244646072, - 0.013037843629717827, - 0.008689729496836662, - -0.029429391026496887, - -0.03730669245123863, - -0.0023430422879755497, - 0.015871591866016388, - -0.012862359173595905, - 0.012459395453333855, - -0.002981610596179962, - 0.004078388214111328, - -0.023553911596536636, - 0.009807630442082882, - -0.030781270936131477, - -0.005579755175858736, - -0.025399748235940933, - 0.027089597657322884, - 0.0221240371465683, - 0.005287281237542629, - -0.0009359170217067003, - 0.017093483358621597, - 0.010418576188385487, - -0.02247500605881214, - 0.007617324590682983, - 0.009430663660168648, - 0.0001108964133891277, - -0.004266871605068445, - 0.0012170170666649938, - 0.019901234656572342, - -0.024398837238550186, - -0.007825305685400963, - -0.010691551491618156, - -0.0061159576289355755, - 0.013635790906846523, - 0.001012285239994526, - 0.008891211822628975, - 0.10326284170150757, - 0.033641017973423004, - -0.013167832046747208, - 0.02005722187459469, - -0.003915902692824602, - 0.011926442384719849, - 0.009053696878254414, - 0.008390756323933601, - -0.010353581979870796, - -0.044794026762247086, - 0.004582093562930822, - -0.0010967777343466878, - 0.0062199486419558525, - -0.04097236692905426, - 0.00031034747371450067, - 0.0195502657443285, - 0.0031148488633334637, - 0.026179678738117218, - -0.02525676041841507, - 0.013934764079749584, - 0.029325399547815323, - -0.013440808281302452, - -0.013414810411632061, - 0.025828709825873375, - -0.043234165757894516, - -0.043364156037569046, - 0.019199296832084656, - 0.017041489481925964, - 0.010743547230958939, - -0.03611079603433609, - -0.0022812976967543364, - -0.001529801869764924, - -0.05360724776983261, - -0.030989252030849457, - 0.0022845473140478134, - -0.042636219412088394, - -0.004699083510786295, - -0.015403633937239647, - 0.0041856286115944386, - 0.008273766376078129, - 0.008007289841771126, - 0.025750717148184776, - -0.01548162754625082, - -0.015221649780869484, - 0.001862084842287004, - 0.00963214598596096, - -0.013583795167505741, - -0.003802162827923894, - -0.014220738783478737 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 42, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 282 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000043.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000043.json deleted file mode 100644 index ceb20061b64e4852d294bf59db853fbf203ac3b9..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000043.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000043", - "content": "Ausgabe 2009. - [35] ISO/TS 7849-2: Acoustics \u2014 Determination of airborne sound power levels emit- ted by machinery using vibration measurement \u2014 Part 2: Engineering method in- cluding determination of the adequate radiation factor. Ausgabe 2009. - [36] ISO/TS 7849-1: Acoustics \u2014 Determination of airborne sound power levels emit- ted by machinery using vibration measurement \u2014 Part 1: Survey method using a fixed radiation factor. Ausgabe 2009. ## III\n\nAbschlie\u00dfende Bewertung und Ausblick\n- [37] Nordrhein-Westfalen, L.: Handbuch f\u00fcr die Ausbildung im Bereich \"Elektrische An- lagen\" in den Berufen Fachkraft f\u00fcr Abwassertechnik und Fachkraft f\u00fcr Wasserver- sorgungstechnik. Landesumweltamt Nordrhein-Westfalen, 2003. - [38] DIN EN ISO 3741: Bestimmung Schallleistungspegel. Ausgabe Januar 1997. - [39] DIN EN ISO 3744: Bestimmung Schallleistungspegel. Ausgabe Februar 2011. [40] DIN EN ISO 3746: Bestimmung Schallleistungspegel. - [41] DIN EN ISO 3747: Bestimmung Schallleistungspegel. Ausgabe Juli 1998. - [42] Gh. Reza Sinambari, Stefan Sentpali: Ingenieurakustik \u2013 Physikalische Grundlagen und Anwendungsbeispiele. Springer Vieweg, Wiesbaden, 2014. - [43] Cosmos indirekt: Nahfeld und Fernfeld (Akustik), https://www.cosmos-indi- rekt.de//Physik-Schule/Nahfeld_und_Fernfeld_(Akustik) [Zugriff am: 13.04.2023]. - [44] Doccheck, M.B. Schalldruckpegel - DocCheck [online]. In: DocCheck Community GmbH, 2004 [Zugriff am: 13.04.2023], https://flexikon.doccheck.com/de/Schall- druckpegel. - [45] AMBOSS: Akustik - Wissen, 2023, https://www.amboss.com/de/wissen/Akustik/ [Zugriff am: 13.04.2023]. - [46] Prof. Dr. Jochen Koubek: Akustik \u2013 Erzeugung von Schallwellen. Universit\u00e4t Bay- reuth, Digitale Medien,, Bayreuth. - [47] Bellton AG - Optimale Raumakustik: AKUSTIK -ABC | SCHALLSCHNELLE, 2023, https://bellton.ch/akustik-abc/schallschnelle [Zugriff am: 13.04.2023].", - "embedding": [ - 0.019034530967473984, - -0.0019173613982275128, - 0.011411446146667004, - -0.028505435213446617, - -0.0036525900941342115, - 0.006854815408587456, - -0.02221357636153698, - -0.027790149673819542, - -0.015987945720553398, - -0.02479654923081398, - 0.018385475501418114, - 0.010888228192925453, - -0.01478255819529295, - -0.0010911409044638276, - -0.009795431979000568, - 0.021246615797281265, - 0.029883021488785744, - 0.0014057338703423738, - 0.01741851679980755, - 0.006169333588331938, - -0.002872730605304241, - 0.009709333069622517, - -0.020637299865484238, - 0.014067273586988449, - -0.01266319490969181, - 0.01258371863514185, - 0.016941659152507782, - -0.038572411984205246, - -0.018173540011048317, - 0.00044746711500920355, - 0.013206281699240208, - 0.02067703753709793, - -0.015352137386798859, - 0.026558270677924156, - -0.015974700450897217, - -0.00909339264035225, - -0.014398423954844475, - -0.0062819248996675014, - 0.021074417978525162, - 0.003086322685703635, - 0.007338295225054026, - -0.0009785497095435858, - -0.00034605228574946523, - -0.018703380599617958, - -0.0042287916876375675, - 0.004818239714950323, - 0.020571069791913033, - -0.008762242272496223, - -0.010060352273285389, - 0.01651778630912304, - 0.009947760961949825, - 0.018027832731604576, - -0.02494225651025772, - 0.010027237236499786, - -0.010649800300598145, - 0.0005277711316011846, - -0.006536910776048899, - 0.026518531143665314, - -0.001970345387235284, - -0.015193184837698936, - -0.025021731853485107, - -0.016305850818753242, - -0.019696831703186035, - 0.016610508784651756, - -0.021246615797281265, - 0.005182505119591951, - -0.018425213173031807, - -0.00268066325224936, - -0.024624351412057877, - -0.006626321468502283, - 0.02389582060277462, - 0.029247211292386055, - 0.007238950114697218, - 0.011345216073095798, - 0.02209436148405075, - 0.0006978996680118144, - 0.015352137386798859, - -0.024306446313858032, - 0.01496800221502781, - -0.00487122405320406, - 0.007768790703266859, - -0.022822892293334007, - -0.019935259595513344, - 0.034148238599300385, - 0.02194865420460701, - 0.012126731686294079, - -0.018623903393745422, - 0.01665024645626545, - -0.032744161784648895, - -0.0006382925785146654, - 0.014954756945371628, - 0.022160591557621956, - 0.007967481389641762, - 0.008292008191347122, - 0.019418666139245033, - 0.011338593438267708, - 0.009841793216764927, - 0.01602768339216709, - -0.011702858842909336, - -0.034280698746442795, - -0.02273016981780529, - -0.01213335432112217, - 0.015034232288599014, - 0.001058025867678225, - -0.02879684790968895, - 0.011278985999524593, - 0.01626611314713955, - 0.025286652147769928, - 0.008861587382853031, - -0.023856081068515778, - -0.01271617878228426, - 0.014001043513417244, - 0.021365830674767494, - -0.009775563143193722, - 0.03412174805998802, - -0.01642506569623947, - 0.032585207372903824, - -0.00827876292169094, - -0.011762465350329876, - -0.007835021242499352, - 0.04016193374991417, - 0.019723324105143547, - 0.006510418839752674, - -0.01589522324502468, - 0.034810539335012436, - 0.004546696320176125, - -0.024240216240286827, - -0.02235928177833557, - -0.013027460314333439, - -0.021511536091566086, - -0.01729930192232132, - -0.01642506569623947, - 0.01911400631070137, - 0.018915316089987755, - 0.016994643956422806, - 0.006987275555729866, - -0.01757746934890747, - 0.013802352361381054, - -0.02245200425386429, - -0.02866438776254654, - 0.012835393659770489, - 0.006752158515155315, - -0.03496949374675751, - -0.033512432128190994, - -0.00529178511351347, - 0.03889031335711479, - 0.010974327102303505, - -0.004768567159771919, - 0.0030813554767519236, - 0.016173390671610832, - -0.012365159578621387, - -0.01794835738837719, - 0.01129223220050335, - 0.022253314033150673, - -0.009311951696872711, - 0.006632944568991661, - 0.013643400743603706, - 0.028346482664346695, - -0.010517340153455734, - 0.002470382722094655, - -0.016729723662137985, - 0.004503646865487099, - 0.015550827607512474, - -0.010470978915691376, - 0.012219453230500221, - 0.0030333385802805424, - 0.006967406719923019, - -0.01486203446984291, - -0.020465100184082985, - -0.00969608686864376, - -0.018690133467316628, - 0.017219826579093933, - -0.006738912779837847, - 0.026650991290807724, - -0.01013982854783535, - 0.0013386758510023355, - 0.004997061099857092, - -0.009146376512944698, - -0.012861885130405426, - -0.026266857981681824, - -0.024876026436686516, - 0.014570621773600578, - 0.006914422381669283, - 0.015193184837698936, - -0.027710674330592155, - 0.023935558274388313, - 0.0010911409044638276, - 0.037406761199235916, - 0.010206058621406555, - -0.010298780165612698, - 0.0031095033045858145, - 0.011987647973001003, - 0.0021706914994865656, - -0.020730020478367805, - -0.6281792521476746, - -0.012305552139878273, - 0.014265963807702065, - -0.011510791257023811, - -0.005344768986105919, - 0.031763955950737, - 0.016875429078936577, - -0.01531239878386259, - -0.0029273703694343567, - 0.05022890865802765, - 0.00155640731099993, - -0.0059772664681077, - -0.009735824540257454, - -0.00332806259393692, - 0.00865627359598875, - -0.02246524952352047, - -0.003844657214358449, - -0.012305552139878273, - 0.035446349531412125, - 0.014557375572621822, - -0.020120704546570778, - 0.038413457572460175, - -0.012596964836120605, - -0.005520279053598642, - -0.009908023290336132, - 0.004997061099857092, - 0.015696533024311066, - -0.02879684790968895, - 0.021604258567094803, - -0.004622860811650753, - -0.02314079739153385, - 0.015511089004576206, - -0.009013916365802288, - 0.022266559302806854, - 0.044109247624874115, - 0.0008316016755998135, - 0.0158819779753685, - 0.016504541039466858, - 0.011702858842909336, - 0.00667930580675602, - -0.0010994196636602283, - -0.008470829576253891, - -0.01006697490811348, - 0.00890794862061739, - -0.01896830089390278, - 0.005401064641773701, - 0.05944813787937164, - -0.0028512058779597282, - 0.017630452290177345, - -0.04938116297125816, - -0.010470978915691376, - -0.00820590928196907, - 0.023021582514047623, - 0.00935831293463707, - 0.04085072502493858, - 0.008543683215975761, - 0.03179044649004936, - -0.022425511851906776, - -0.020478347316384315, - 0.008245647884905338, - 0.018531182780861855, - 0.014716328121721745, - 0.013007591478526592, - -0.01602768339216709, - -0.030147941783070564, - 0.017087366431951523, - -0.008795357309281826, - -0.020571069791913033, - 0.005543459206819534, - -0.026001937687397003, - -0.013616908341646194, - 0.03369787335395813, - 0.0078880051150918, - -0.018809348344802856, - 0.020451854914426804, - 0.0004648525209631771, - 0.0059275939129292965, - -0.01679595373570919, - -0.0021110845264047384, - 0.019061023369431496, - -0.0024621039628982544, - 0.00142808654345572, - -0.006543533876538277, - 0.007801905740052462, - 0.0049208966083824635, - -0.03862539306282997, - -0.010470978915691376, - 0.013438086956739426, - 0.004732140805572271, - -0.00025519286282360554, - 0.02273016981780529, - 0.034678079187870026, - -0.00045409012818709016, - -0.010596816428005695, - -0.02571052499115467, - 0.01793511025607586, - -0.007921120151877403, - 0.005275227595120668, - 0.012226076796650887, - -0.028902815654873848, - -0.019710076972842216, - -0.010451110079884529, - -0.005762018729001284, - -0.024213723838329315, - 0.01174259651452303, - -0.0096166105940938, - -0.0018859021365642548, - 0.006142841652035713, - 0.021206878125667572, - -0.015497843734920025, - 0.018054325133562088, - -0.01831924542784691, - -0.01896830089390278, - -0.010338518768548965, - -0.00034853589022532105, - -0.025352882221341133, - 0.03549933433532715, - 0.00461292639374733, - 0.0007264614105224609, - -0.023604407906532288, - -0.008404599502682686, - -0.002278315369039774, - 0.04042685404419899, - -0.02647879347205162, - -0.022955352440476418, - 0.02156452089548111, - 0.003983740694820881, - 0.002771729603409767, - -0.006242186762392521, - -0.008768864907324314, - 0.004430793691426516, - -0.001236847136169672, - -0.005606377962976694, - -0.0065534682944417, - 0.026809943839907646, - 0.008040334098041058, - 0.01821327768266201, - 0.002736958907917142, - 0.013093690387904644, - -0.01574951782822609, - -0.03605566546320915, - -0.013351988047361374, - -0.0012442979495972395, - -0.014663344249129295, - -0.023273257538676262, - -0.03788361698389053, - -0.007676068693399429, - 0.034810539335012436, - 0.0203856248408556, - 0.02324676513671875, - -0.005397753324359655, - -0.016491295769810677, - 0.01419973373413086, - 0.01986902952194214, - -0.00771580683067441, - -0.0010696160607039928, - -0.01227243710309267, - -0.01937892660498619, - -0.01543161366134882, - -0.002991944784298539, - 0.017127104103565216, - 0.005314965732395649, - -0.04866587743163109, - -0.015484597533941269, - 0.0031260608229786158, - -0.030916210263967514, - 0.0035731138195842505, - 0.0008249786915257573, - -0.0018130489625036716, - -0.04633457958698273, - 0.012173091992735863, - 0.022822892293334007, - -0.002596220001578331, - 0.01899479329586029, - 0.0011010754387825727, - -0.006500484421849251, - -0.010669669136404991, - -0.017524484544992447, - -0.022319544106721878, - -0.01729930192232132, - 0.03361839801073074, - 0.012047255411744118, - -0.021140648052096367, - 0.0010191156761720777, - 0.019286205992102623, - 0.017537729814648628, - 0.012106861919164658, - 0.0012161502381786704, - -0.020994940772652626, - 0.021882424131035805, - -0.015723025426268578, - 0.0239090658724308, - -0.01780265010893345, - 0.025101207196712494, - -0.03761869668960571, - -0.006341531872749329, - -0.008146301843225956, - -0.019683586433529854, - -0.0011250837706029415, - 0.021259862929582596, - 0.031763955950737, - -0.0050235530361533165, - 0.04069177433848381, - -0.007020390592515469, - 0.028319990262389183, - -0.006109726615250111, - -0.014054027386009693, - -0.020557822659611702, - 0.04108915477991104, - 0.02969757653772831, - 0.016742968931794167, - -0.015378628857433796, - -0.01059019286185503, - -0.013696384616196156, - -0.0075104935094714165, - 0.03160500526428223, - -0.0032916360069066286, - 0.007854890078306198, - 0.009311951696872711, - -0.00409964332357049, - 0.018385475501418114, - -0.00416918471455574, - 0.049540113657712936, - 0.010603439062833786, - -0.001867688843049109, - -7.368098886217922e-05, - 0.003934068139642477, - 0.018822593614459038, - 0.008901325054466724, - -0.007543608546257019, - 0.0013991108862683177, - -0.02273016981780529, - 0.017365531995892525, - -0.0022402331233024597, - 0.011398199945688248, - 0.021471798419952393, - 0.01001399103552103, - -0.0003752349002752453, - 0.034174732863903046, - 0.0261079054325819, - 0.02684968337416649, - 0.012365159578621387, - 0.004960634279996157, - 0.006447500083595514, - 0.013080445118248463, - -0.028955800458788872, - 0.007987350225448608, - 0.022756662219762802, - -0.011623382568359375, - -0.02675696089863777, - -0.027551721781492233, - 0.0038247883785516024, - -0.02749873697757721, - -0.002130953362211585, - 0.026571515947580338, - -0.004073150921612978, - 0.026690730825066566, - 0.0023114304058253765, - -0.0027319916989654303, - 0.010947835631668568, - 0.012490997090935707, - 0.013166544027626514, - 0.032717667520046234, - -0.004573188256472349, - -0.004172496497631073, - 0.012020763009786606, - -0.03163149580359459, - -0.017643699422478676, - -0.006212383508682251, - 0.0009048687643371522, - 0.00043049565283581614, - -0.013563924469053745, - -0.0069541605189442635, - 0.02323351986706257, - 0.03250573202967644, - -0.007543608546257019, - -0.00606998847797513, - -0.0011184607865288854, - 0.04185742139816284, - 0.009974253363907337, - -0.03473106399178505, - -0.014583867974579334, - 0.00021814538922626525, - 0.030571814626455307, - -0.008484075777232647, - -0.011543906293809414, - -0.0008419501245953143, - -5.176813647267409e-05, - -0.026372825726866722, - 0.0029306819196790457, - -0.016742968931794167, - 0.002558137523010373, - -0.012901623733341694, - -0.00949077308177948, - -0.0029869775753468275, - 0.0051096524111926556, - -0.00487784668803215, - 0.00041352419066242874, - -0.02426670864224434, - 0.01427921000868082, - -0.00144381623249501, - -0.020359132438898087, - -0.0030250598210841417, - -0.006411073729395866, - 0.021008187904953957, - -0.0038910184521228075, - -0.015550827607512474, - -0.01665024645626545, - 0.0017021135427057743, - -0.022107606753706932, - -0.008609913289546967, - 0.0007136292988434434, - -0.0026856304612010717, - 0.006934291683137417, - 0.00018678957712836564, - -0.001973656937479973, - 0.0027170898392796516, - -0.02284938469529152, - 0.03642655536532402, - -0.009868284687399864, - -0.014623605646193027, - -0.013669892214238644, - 0.028902815654873848, - 0.008503944613039494, - 0.004093020223081112, - 0.009643102996051311, - 0.009808678179979324, - 0.01845170557498932, - -0.008285385556519032, - -0.03756571188569069, - -0.011802203953266144, - -0.03022741712629795, - 0.01137170847505331, - 0.02311430498957634, - -0.002950550988316536, - 0.004861289169639349, - 0.029379671439528465, - 0.004795059096068144, - 0.006119661033153534, - -0.017378779128193855, - 0.020822742953896523, - -0.0023346110247075558, - -0.003536687232553959, - 0.00910001527518034, - -0.02067703753709793, - 0.018266262486577034, - 0.022677186876535416, - 0.02622712031006813, - 0.016305850818753242, - -0.016703231260180473, - 0.0006987275555729866, - 0.017378779128193855, - 0.01135183870792389, - -0.0239090658724308, - -0.00545404851436615, - 0.03992350399494171, - 0.01898154616355896, - 0.025260159745812416, - -0.02529989741742611, - -0.0046625989489257336, - 0.005864675156772137, - 0.014239471405744553, - -0.006212383508682251, - -0.008477453142404556, - 0.013418218120932579, - 0.04432118311524391, - 0.0041128890588879585, - -0.004162561614066362, - 0.008046956732869148, - -0.01653103344142437, - -0.013464579358696938, - 0.012219453230500221, - -0.01077563688158989, - -0.005583197344094515, - 0.009762316942214966, - -0.015193184837698936, - 0.0009553692070767283, - -0.0008535404340364039, - -0.0147295743227005, - -0.03775115683674812, - 0.002943927887827158, - -0.018637150526046753, - -0.0030151254031807184, - -0.009855038486421108, - -0.015193184837698936, - -0.01796160265803337, - 0.017392024397850037, - -0.0018147047376260161, - -0.04029439389705658, - -0.02156452089548111, - -0.017259564250707626, - -0.0013966272817924619, - -0.02051808498799801, - 0.018888823688030243, - 0.026637746021151543, - -0.027472244575619698, - -0.027286801487207413, - 0.005742149893194437, - 0.028637895360589027, - -0.012928115203976631, - 0.02442566119134426, - 0.004278464242815971, - -0.025273406878113747, - -0.006454123184084892, - -0.031975891441106796, - 0.010543831624090672, - -0.016623755916953087, - -0.015338891185820103, - -0.008623158559203148, - 0.03295609727501869, - -0.024505136534571648, - 0.0054871635511517525, - 0.01335861161351204, - -0.012676441110670567, - 0.015948208048939705, - -0.0044738431461155415, - 0.02168373391032219, - -0.005026864353567362, - 0.014001043513417244, - 0.010497470386326313, - 0.011570398695766926, - 0.02469058148562908, - 0.017206579446792603, - -0.0036525900941342115, - -0.006113038398325443, - -0.011484299786388874, - -0.0043579405173659325, - -0.011835318990051746, - 0.015987945720553398, - -0.0022551349829882383, - -0.0069409143179655075, - 0.02983003668487072, - 0.006967406719923019, - -0.009000670164823532, - -0.021988393738865852, - -0.0010745833860710263, - 0.0037519352044910192, - -0.006887930445373058, - 0.0033976042177528143, - 0.0015406777383759618, - 0.0072720651514828205, - 0.0058116912841796875, - 0.012338667176663876, - 0.0013966272817924619, - -0.0013063887599855661, - -0.01691516675055027, - 0.028346482664346695, - 0.010358387604355812, - -0.028743863105773926, - 0.025352882221341133, - -0.01834573782980442, - 0.011126657016575336, - -0.03141956031322479, - 0.01252411212772131, - -0.0012426422908902168, - 0.010232550092041492, - 0.02402828074991703, - -0.006692551542073488, - -0.033644892275333405, - -0.018027832731604576, - -0.0015729648293927312, - 0.020690282806754112, - -0.023975295946002007, - -0.007013767492026091, - 0.0022468562237918377, - 0.019445156678557396, - -0.011192887090146542, - 0.02765768952667713, - 0.012987722642719746, - -0.029008783400058746, - -0.031022178009152412, - 0.03886382281780243, - -0.029114751145243645, - 0.0315520204603672, - -0.00794761162251234, - -0.0038413458969444036, - -0.01336523424834013, - -0.009656348265707493, - -0.03229379653930664, - -0.030386369675397873, - 0.0007123874966055155, - -0.010874981991946697, - 0.02686292864382267, - 0.007907873950898647, - 0.020306149497628212, - 0.006228941027075052, - -0.011735973879694939, - 0.018928563222289085, - -0.005381195805966854, - 0.012073746882379055, - -0.010947835631668568, - -0.008583420887589455, - -0.021485043689608574, - 0.029008783400058746, - 0.009000670164823532, - -0.008616535924375057, - -0.00513614434748888, - -0.011649874970316887, - 0.010245796293020248, - 0.030174434185028076, - -0.014477900229394436, - -0.005106340628117323, - -0.010888228192925453, - -0.01576276309788227, - 0.00484804343432188, - -0.012126731686294079, - 0.0017534418730065227, - 0.026253610849380493, - -0.017762912437319756, - -0.00020665860211011022, - 0.02649204060435295, - -0.022928860038518906, - -0.009133131243288517, - -0.008152925409376621, - 0.027578214183449745, - -0.033274002373218536, - 0.03677095100283623, - -0.005732215009629726, - 0.0011598545825108886, - -0.023789850994944572, - -0.004579811356961727, - -0.035578809678554535, - -0.03528739884495735, - 0.0032287174835801125, - -0.004212234169244766, - 0.011053803376853466, - -0.01833249256014824, - -0.006772027816623449, - 0.0017964914441108704, - -0.01305395271629095, - 0.027790149673819542, - -0.01899479329586029, - -0.0005285989609546959, - -0.01110678818076849, - -0.03528739884495735, - -0.03642655536532402, - -0.009186115115880966, - -0.0262138731777668, - 0.023538177832961082, - 0.007437640335410833, - 0.014928264543414116, - 0.021988393738865852, - -0.005550082307308912, - -0.0010762391611933708, - 0.012676441110670567, - 0.0012318798108026385, - 0.020597560331225395, - -0.014438161626458168, - 0.029644593596458435, - 0.024889271706342697, - -0.02466408908367157, - -0.023471947759389877, - -0.05279863625764847, - -0.004954011645168066, - -0.013451333157718182, - 0.033141542226076126, - 0.02184268645942211, - -0.02168373391032219, - -0.01419973373413086, - 0.029750561341643333, - 0.01964384689927101, - 0.006834946107119322, - -0.0030681092757731676, - 0.037539221346378326, - 0.005503721535205841, - 0.00878211110830307, - -0.012292306870222092, - 0.017643699422478676, - -0.027313293889164925, - 0.008186040446162224, - 0.01641181856393814, - -0.008768864907324314, - -0.022942107170820236, - 0.008298631757497787, - -0.0013982829404994845, - 0.028637895360589027, - 0.0021210189443081617, - 0.022650694474577904, - 0.01899479329586029, - -0.010841866955161095, - 0.017855634912848473, - -0.01986902952194214, - -0.014226225204765797, - 0.0016267768805846572, - -0.018941808491945267, - 0.03035987727344036, - -0.006927668582648039, - -2.8484117137850262e-05, - -0.01208037044852972, - -0.008179416880011559, - 0.003937379457056522, - 0.005838183220475912, - 0.003034994238987565, - 0.024478644132614136, - -0.012444635853171349, - -0.014054027386009693, - 0.0035764253698289394, - -0.015060724690556526, - 0.007424394134432077, - 0.004967257380485535, - -0.009927892126142979, - -0.0026160888373851776, - -0.005960708949714899, - -0.008099941536784172, - -0.003947313874959946, - 0.02222682163119316, - -0.01613365299999714, - -0.020597560331225395, - -0.018822593614459038, - -0.03279714658856392, - 0.005755395628511906, - -0.013517563231289387, - 0.008643028326332569, - -0.026372825726866722, - -0.006033562123775482, - 0.0169284138828516, - -0.01103393454104662, - 0.021021433174610138, - -0.0024024969898164272, - -0.0016110471915453672, - -0.007152850739657879, - 0.013457956723868847, - -0.02634633332490921, - 0.0001396006264258176, - 0.03910225257277489, - -0.021352583542466164, - -0.0021359208039939404, - 0.0023710376117378473, - 0.0035996059887111187, - -0.008186040446162224, - 0.014822296798229218, - -0.001534882583655417, - -0.016888676211237907, - -0.022518234327435493, - -0.005156013183295727, - 0.026386070996522903, - -0.02543235756456852, - -0.0022865941282361746, - 0.015020987018942833, - 0.01589522324502468, - 0.015140200965106487, - -0.034625094383955, - 0.010384880006313324, - 0.015126954764127731, - 0.03499598428606987, - -0.006573337595909834, - 0.021273108199238777, - -0.015365383587777615, - 0.02351168543100357, - 0.020584315061569214, - -0.0021011498756706715, - -0.017643699422478676, - -0.012067124247550964, - -0.019577616825699806, - 0.03393630310893059, - 0.005589820444583893, - -0.022571217268705368, - -0.012722802348434925, - -0.0272603090852499, - -0.0010845179203897715, - -0.007073374465107918, - 0.013881828635931015, - 0.0025796624831855297, - 0.02442566119134426, - -0.0004207681049592793, - -0.004904339089989662, - -0.01910076104104519, - 0.011100164614617825, - 0.0032883244566619396, - -0.013166544027626514, - 0.01363015454262495, - 0.0013353644171729684, - -0.029803544282913208, - 0.0012823803117498755, - -0.0028197464998811483, - 0.029247211292386055, - 0.028717370703816414, - -0.0040036095306277275, - -0.011014065705239773, - 0.013987797312438488, - -0.022438757121562958, - -0.019683586433529854, - -0.018398722633719444, - 0.02494225651025772, - 0.004934142343699932, - 0.028319990262389183, - -0.00713960500434041, - 0.021908916532993317, - -4.537796849035658e-05, - 0.03173746541142464, - -0.046414054930210114, - -0.03669147565960884, - 0.0016557525377720594, - -0.00150011177174747, - 0.0067223552614450455, - -0.011199509724974632, - -0.03438666835427284, - 0.004377809818834066, - 0.018279507756233215, - -0.0066064526326954365, - 0.010417995043098927, - 0.0228626299649477, - -0.004609615076333284, - -0.03372436761856079, - 0.01576276309788227, - 0.012100239284336567, - 0.0010812063701450825, - 0.015444858931005001, - -0.0005236317520029843, - -0.018796103075146675, - 0.01861065812408924, - -0.006248809862881899, - 0.004788435995578766, - -0.02919422835111618, - -0.0031972581055015326, - 0.04283762723207474, - -0.007126358803361654, - 0.015603811480104923, - 0.006788585335016251, - 0.0001155922218458727, - 0.020332640036940575, - -0.016332343220710754, - 0.03139306604862213, - 0.012643326073884964, - -0.02002798207104206, - -0.009159622713923454, - 0.005815002601593733, - -0.007782036904245615, - -0.009961007162928581, - 0.0026955651119351387, - -0.0258297398686409, - 0.019352436065673828, - 0.009861662052571774, - -0.004824862815439701, - 0.02919422835111618, - -0.01834573782980442, - 0.01027228869497776, - -0.009954383596777916, - -0.00885496474802494, - -0.03112814761698246, - -0.011524037458002567, - -0.03396279364824295, - 0.023418962955474854, - 0.01576276309788227, - -0.022822892293334007, - -0.01266319490969181, - -0.030651289969682693, - -0.016040930524468422, - -0.006331597454845905, - -0.024319693446159363, - 0.004712271504104137, - -0.030545322224497795, - -0.00025415801792405546, - 0.005748772528022528, - -0.020332640036940575, - 0.009656348265707493, - 0.018557673320174217, - -0.007901251316070557, - -0.013014215044677258, - 0.004189054016023874, - 0.18830542266368866, - -0.024756811559200287, - -0.010384880006313324, - 0.002753516426309943, - -0.027710674330592155, - -0.03073076717555523, - 0.019908767193555832, - -0.008901325054466724, - -0.001058025867678225, - 0.02723381668329239, - 0.007371410261839628, - 0.002940616337582469, - -0.006083234678953886, - 0.01260358840227127, - -0.00041373114800080657, - -0.003023404162377119, - -0.051871415227651596, - -0.012490997090935707, - -0.013709630817174911, - 0.03165798634290695, - 0.02531314454972744, - -0.025008486583828926, - -0.0029389606788754463, - -0.0060501196421682835, - 0.05812353640794754, - 0.023922313004732132, - -0.005394441541284323, - 0.0096166105940938, - 0.02080949768424034, - 0.018663642928004265, - -0.01110678818076849, - -0.013855337165296078, - 0.007854890078306198, - 0.017392024397850037, - -0.01331225037574768, - -0.0034704571589827538, - 0.017246317118406296, - -0.01292149256914854, - 0.019166991114616394, - 0.01486203446984291, - 0.005192440003156662, - -0.028108054772019386, - -0.01769668236374855, - -0.04249323159456253, - 0.011855187825858593, - 0.031022178009152412, - -0.012351913377642632, - 0.009676218032836914, - -0.010358387604355812, - 0.013133428990840912, - -0.016305850818753242, - 0.018782855942845345, - 0.013868583366274834, - 0.028134547173976898, - 0.007689314428716898, - -0.021352583542466164, - 0.0192332211881876, - 0.004967257380485535, - 0.0009744103299453855, - 0.013040706515312195, - -0.022306296974420547, - 0.014756066724658012, - -0.017855634912848473, - 0.006589895114302635, - -0.03216133639216423, - 0.008106564171612263, - -0.013378480449318886, - -0.006444188766181469, - -0.015723025426268578, - -0.02416074089705944, - -0.0059408401139080524, - -0.0058116912841796875, - -0.023670637980103493, - 0.023962050676345825, - -0.023312995210289955, - -0.021352583542466164, - 0.026015182957053185, - 0.01111341081559658, - 0.012477750889956951, - 0.009709333069622517, - 0.000582410953938961, - 0.00872250460088253, - -0.011603513732552528, - -0.001152403769083321, - -0.013974551111459732, - -0.024995239451527596, - 0.0018726560520008206, - 0.003342964220792055, - 0.02763119712471962, - -0.013908321037888527, - -0.025750262662768364, - 0.003788361791521311, - -0.007040259428322315, - -0.0017319171456620097, - -0.005046733655035496, - -0.008715881034731865, - 0.006854815408587456, - -0.024862779304385185, - 0.013828844763338566, - 0.00441754749044776, - -0.013934813439846039, - 0.057010870426893234, - 0.037380266934633255, - -0.015073970891535282, - -0.009272214025259018, - -0.012199584394693375, - 0.0012600276386365294, - 0.023339487612247467, - 0.015550827607512474, - 0.0023428897839039564, - -0.013895074836909771, - -0.027710674330592155, - 0.012305552139878273, - -0.02853192761540413, - 0.011272363364696503, - 0.017524484544992447, - -0.01394805870950222, - 0.004255284089595079, - 0.02001473680138588, - -0.006146153435111046, - 0.004834797233343124, - -0.0007554370677098632, - 0.009318575263023376, - 0.001333708642050624, - 0.01767018996179104, - -0.032744161784648895, - -0.04498348385095596, - 0.014292455278337002, - 0.004049970768392086, - -0.014265963807702065, - 0.017497992143034935, - 0.009729201905429363, - 0.02427995391190052, - -0.0024306445848196745, - 0.014809050597250462, - 0.003689016681164503, - 0.0067024859599769115, - -0.02455812133848667, - -0.02453162893652916, - 0.0033379970118403435, - 0.014054027386009693, - -0.01613365299999714, - 0.0019256401574239135, - 0.026425810530781746, - 0.003732066135853529, - -0.007775413803756237, - 0.021922163665294647, - 0.013451333157718182, - -0.024438906461000443, - -0.0036989510990679264, - -0.03255871683359146, - -0.020610807463526726, - 0.01006697490811348, - -0.023074567317962646, - 0.003041617339476943, - 0.012570473365485668, - -0.013524186797440052, - -0.02504822425544262, - -0.006414385046809912, - 0.02337922528386116, - -0.024438906461000443, - -0.006738912779837847, - 0.007113112602382898, - -0.02311430498957634, - -0.00877548847347498, - -0.01833249256014824, - -0.16721776127815247, - -0.020306149497628212, - 0.01510046236217022, - -0.022293051704764366, - 0.022173836827278137, - 0.008292008191347122, - 0.012034009210765362, - 0.017643699422478676, - -0.007623084355145693, - -0.01767018996179104, - 0.01531239878386259, - 0.012464504688978195, - -0.0037420005537569523, - -0.00819928664714098, - 0.002796565880998969, - -0.00974907074123621, - -0.013736122287809849, - 0.04053281992673874, - 0.027816642075777054, - 0.0008518846589140594, - -0.01266319490969181, - -0.01718008704483509, - 0.00036654219729825854, - -0.006381270010024309, - -0.018001340329647064, - 0.014451407827436924, - -0.014027534984052181, - 0.00852381344884634, - -0.006699174642562866, - -0.01510046236217022, - -0.013206281699240208, - 0.0008133884402923286, - 0.005318277049809694, - 0.004268529824912548, - -0.01667673885822296, - -0.01729930192232132, - -0.001717015285976231, - -0.005791822448372841, - -0.007662822492420673, - 0.027975594624876976, - 0.0077489218674600124, - 0.019537879154086113, - 0.0027833199128508568, - 0.011265739798545837, - -0.0011250837706029415, - 0.03165798634290695, - 0.034174732863903046, - -0.00016216025687754154, - 0.007397902198135853, - -0.016372080892324448, - -0.00015843482105992734, - -0.016372080892324448, - -0.023339487612247467, - 0.006520353257656097, - -0.009470904245972633, - 0.009106638841331005, - -0.011669743806123734, - 0.018809348344802856, - 0.027061618864536285, - 0.0009735824423842132, - 0.0034042270854115486, - -0.021485043689608574, - 0.007828397676348686, - -0.0074972473084926605, - -0.012020763009786606, - -0.016319096088409424, - 0.01291486993432045, - 0.025538327172398567, - -0.022385774180293083, - -0.0067091090604662895, - -0.0009255656623281538, - -0.021749963983893394, - -0.0037651811726391315, - -0.022915614768862724, - 0.01168961264193058, - -0.0005799272912554443, - -0.0021491667721420527, - -0.011146525852382183, - 4.5326225517783314e-05, - -0.008980801329016685, - -0.018756363540887833, - 0.03277065232396126, - 0.003069765167310834, - -0.017286056652665138, - -0.014769311994314194, - 0.0001723017485346645, - -0.019683586433529854, - 0.021339338272809982, - -0.016848936676979065, - 0.006626321468502283, - 0.020862480625510216, - -0.012636703439056873, - -0.027710674330592155, - -0.034413158893585205, - 0.012484373524785042, - 0.01706087402999401, - -0.0034009155351668596, - 0.018690133467316628, - -0.01937892660498619, - 0.005964020267128944, - 0.01719333417713642, - -0.009689463302493095, - -0.019153743982315063, - 0.03708885610103607, - 0.008417845703661442, - -0.004043347667902708, - -0.03380384296178818, - 0.018517935648560524, - 0.0516594797372818, - -0.022690432146191597, - -0.012358536943793297, - 0.00865627359598875, - 0.021405568346381187, - 0.017021136358380318, - 0.010417995043098927, - 0.020200179889798164, - -0.015285907313227654, - -0.019140498712658882, - -0.0014330537524074316, - 0.017087366431951523, - 0.035976190119981766, - -0.0011110099731013179, - -0.00987490825355053, - 0.01058357022702694, - -0.00909339264035225, - -0.0449569933116436, - -0.0826551616191864, - -0.003924133256077766, - 0.02000148966908455, - 0.01680919900536537, - 0.004477154929190874, - 0.015842240303754807, - 0.016968151554465294, - -0.0012103550834581256, - -0.014517637901008129, - 0.03669147565960884, - 0.01590847037732601, - -0.03459860384464264, - -0.01641181856393814, - -0.027922609820961952, - 0.027074864134192467, - -0.004066528286784887, - -0.00017323310021311045, - -0.03602917492389679, - -0.02959160879254341, - 0.028055069968104362, - -0.012285683304071426, - 0.0003661282826215029, - 0.002849549986422062, - -0.005391130223870277, - -0.025657540187239647, - -0.004954011645168066, - -0.04612264037132263, - 0.018915316089987755, - 0.011941286735236645, - -0.015987945720553398, - 0.012351913377642632, - -0.03046584688127041, - -0.009258967824280262, - -0.028372975066304207, - -0.021127402782440186, - -0.01000736840069294, - -0.015113708563148975, - -0.03295609727501869, - 0.02712784893810749, - -0.017868880182504654, - -0.015736272558569908, - 0.007762167602777481, - 0.02054457738995552, - -0.012868508696556091, - 0.01796160265803337, - -0.01614689826965332, - -0.01846495270729065, - 0.017537729814648628, - 0.0077224294655025005, - -0.018041079863905907, - -0.039314188063144684, - -0.02892930805683136, - -0.004874535370618105, - 0.009576871991157532, - 0.022531479597091675, - -0.02429320104420185, - -0.012338667176663876, - 0.006619698368012905, - -0.031154638156294823, - 0.0067289783619344234, - -0.0026723844930529594, - 0.027048373594880104, - -0.034280698746442795, - 0.032479241490364075, - -0.000985172693617642, - -0.022822892293334007, - -0.011146525852382183, - -0.005122898146510124, - 0.00872250460088253, - -0.006520353257656097, - -0.02221357636153698, - 0.008490698412060738, - -0.008318500593304634, - 0.02249174192547798, - -0.023564670234918594, - -0.013908321037888527, - -0.04289061203598976, - -0.0013378480216488242, - 0.019418666139245033, - -0.0005559189012274146, - -0.005536836571991444, - -0.024068018421530724, - 0.02014719694852829, - -0.002897566882893443, - 0.023061320185661316, - 0.03022741712629795, - 0.003437342122197151, - -0.008470829576253891, - 0.02013394981622696, - -0.016093913465738297, - -0.016345588490366936, - 0.00793436635285616, - 0.014159995131194592, - 0.0002802360977511853, - -0.025021731853485107, - 0.017246317118406296, - 0.004629483912140131, - -0.008762242272496223, - 0.007974104024469852, - 0.012875131331384182, - -0.02016044221818447, - -0.013669892214238644, - -0.05976604297757149, - 0.027035126462578773, - 0.03126060590147972, - -0.02119363285601139, - -0.02712784893810749, - -0.00039179244777187705, - 0.013351988047361374, - 0.012126731686294079, - 0.03112814761698246, - -0.008616535924375057, - -0.00732504902407527, - 0.020107457414269447, - -0.0325322262942791, - -0.007344917859882116, - -0.030412862077355385, - -0.021524783223867416, - 0.016173390671610832, - 0.02503497712314129, - 0.013418218120932579, - -0.00929870642721653, - 0.003314816392958164, - 0.015140200965106487, - 0.0032187828328460455, - 0.01781589724123478, - -0.02892930805683136, - 0.0029621412977576256, - -0.005917659495025873, - -0.018398722633719444, - -0.005258670076727867, - 0.020478347316384315, - 0.007291933987289667, - -0.0018974923295900226, - -0.007397902198135853, - 0.02042536251246929, - -0.005467294715344906, - -0.009815300814807415, - 0.0009313607588410378, - 0.018570920452475548, - 0.0006978996680118144, - 0.03793660178780556, - 0.0017782781505957246, - -0.031949400901794434, - -0.018306000158190727, - -0.027551721781492233, - 0.014835542067885399, - 0.01227243710309267, - 0.01678270660340786, - 0.014795804396271706, - 0.008172794245183468, - -0.009662971831858158, - 0.03589671477675438, - 0.019153743982315063, - 6.40569269307889e-05, - -0.0034505880903452635, - 0.007298557087779045, - 0.01459711417555809, - 0.027843134477734566, - -0.007027013693004847, - 0.02646554820239544, - -0.013027460314333439, - 0.06294509023427963, - 0.0003545380022842437, - 0.027922609820961952, - -0.011305478401482105, - -0.010239173658192158, - -0.005887855775654316, - -0.022677186876535416, - -0.03549933433532715, - 0.007358164060860872, - -0.025631047785282135, - -0.0072654420509934425, - 0.0031244049314409494, - 0.012464504688978195, - 0.031472545117139816, - -0.017776159569621086, - -0.007980726659297943, - -0.00455000763759017, - 0.010570324026048183, - -0.003847968764603138, - 0.014809050597250462, - 0.00930532906204462, - 0.01363015454262495, - -0.0035068837460130453, - 0.0004967257264070213, - 0.044082753360271454, - 0.014226225204765797, - -0.037406761199235916, - 0.0025051534175872803, - -0.006096480879932642, - 0.001603596261702478, - -0.006149464752525091, - 0.025591310113668442, - -0.00052404566667974, - -0.009027162566781044, - 0.031154638156294823, - -0.004146004095673561, - 0.009477526880800724, - -0.0262138731777668, - 0.03279714658856392, - 0.04291710630059242, - 0.002298184437677264, - -0.00020883178513031453, - -0.01265657227486372, - -0.04416223242878914, - -0.006020315922796726, - 0.03059830702841282, - -0.024094510823488235, - -0.030916210263967514, - -0.009451035410165787, - 0.0034572111908346415, - -0.0002582973975222558, - 0.027286801487207413, - -0.000394689996028319, - -0.0016797608695924282, - -0.013881828635931015, - 0.014239471405744553, - -0.04053281992673874, - -0.016941659152507782, - -0.03520791977643967, - 0.03022741712629795, - 0.018928563222289085, - -0.002778352703899145, - 0.0010530585423111916, - 0.008888079784810543, - 0.014954756945371628, - -0.016981396824121475, - 0.009398051537573338, - -0.005967332050204277, - 0.012947984971106052, - -0.026399318128824234, - 0.008636404760181904, - 0.010371633805334568, - -0.010517340153455734, - -0.011199509724974632, - -0.010742521844804287, - -0.021670488640666008, - 0.015921715646982193, - -0.003044928889721632, - 0.012722802348434925, - 0.10607412457466125, - 0.032744161784648895, - -0.00664619030430913, - 0.02491576410830021, - -0.00461292639374733, - 0.014239471405744553, - 0.005768641829490662, - 0.0022998403292149305, - -0.0023428897839039564, - -0.04365888237953186, - 0.0030018792022019625, - -0.01077563688158989, - 0.010206058621406555, - -0.018041079863905907, - -0.008139679208397865, - 0.014703081920742989, - 0.007152850739657879, - 0.012994345277547836, - -0.0072588189505040646, - -0.0002897566882893443, - 0.03136657550930977, - -0.013259265571832657, - -0.005732215009629726, - 0.02855842001736164, - -0.029538623988628387, - -0.04103616997599602, - 0.02993600443005562, - 0.008119810372591019, - 0.00758996931836009, - -0.036373570561409, - -0.004434105008840561, - 0.005185816902667284, - -0.050679273903369904, - -0.031578510999679565, - 0.00865627359598875, - -0.04360589757561684, - 0.0043579405173659325, - -0.017789404839277267, - 0.012219453230500221, - 0.01363015454262495, - 0.014809050597250462, - 0.019604109227657318, - -0.015365383587777615, - -0.002278315369039774, - -0.017378779128193855, - 0.005301719531416893, - -0.020703529939055443, - -0.0012567160883918405, - -0.006993898656219244 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 43, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 232 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000044.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000044.json deleted file mode 100644 index c2f2c9af8a8dc374f04f66033874e6a853f2d4e7..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000044.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000044", - "content": "Universit\u00e4t Bay- reuth, Digitale Medien,, Bayreuth. - [47] Bellton AG - Optimale Raumakustik: AKUSTIK -ABC | SCHALLSCHNELLE, 2023, https://bellton.ch/akustik-abc/schallschnelle [Zugriff am: 13.04.2023]. - [48] H\u00f6gel,biancahoegel.de, Bianca: Schallschnelle, 2022, https://www.bian- cahoegel.de/physik/akustik/schallschnelle.html [Zugriff am: 13.04.2023]. - [49] Friedrich Sch\u00f6nholtz (Hrsg. ): Technische Publikationen - Grundlagen der Schall- technik \u2013 Luftschall, Schallfeldgr\u00f6\u00dfen, Schallgeschwindigkeit, Schalldruck, Schall- leistung, Dezibel, Oktavspektrum, Terzspektrum, Phon und Schallausbreitung etc. TROX TLT GmbH, 36251 Bad Hersfeld, 2013. - [50] H\u00f6gel,biancahoegel.de, Bianca: Logarithmische Gr\u00f6\u00dfe, 2022, https://www.bian- cahoegel.de/technik/messen/einheiten/gross_logarith.html [Zugriff am: 13.04.2023]. - [51] Hessisches Landesamt f\u00fcr Naturschutz, Umwelt und Geologie: Ermittlungsverfah- ren, 2023, https://www.hlnug.de/themen/laerm/industrie-und-gewerbeanlagen- laerm/ermittlungsverfahren [Zugriff am: 14.04.2023]. ## IV\n\nAbschlie\u00dfende Bewertung und Ausblick\n- [52] DIN EN ISO 3745: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- r\u00e4uschquellen aus Schalldruckmessunge. Ausgabe Oktober 2017. - [53] NTi Audio: Wie werden Perzentile gemessen?, 2023, https://www.nti-au- dio.com/de/service/wissen/wie-werden-perzentile-gemessen [Zugriff am: 14.04.2023]. - [54] Ministerium f\u00fcr Landesentwicklung und Wohnen: St\u00e4dtebauliche L\u00e4rmfibel \u2013 Hin- weise f\u00fcr die Bauleitplanung. Ministerium f\u00fcr Landesentwicklung und Wohnen. Kohlhammer-Verlag, 70173 Stuttgart, 2018. - [55] Schulze, C.; H\u00fcbelt, J.: Bestimmung der vertikalen Richtcharakteristik der Schallab- strahlung von Pkw, Transportern und Lkw \u2013 Bericht zum Forschungsprojekt FE 02.274/2006/LRB. [56] DAGA - Fortschritte der Akustik. - [57] Hirsch, K.-W.; Buchta, E.; Institut f\u00fcr L\u00e4rmschutz, D\u00fcsseldorf (Hrsg. ): Zur mathema- tischen Darstellung der Richtcharakterisitk einer Punktschallquelle, Dresden 1994,\n- [58] Polarkoordinatensystem in Mathematik | Sch\u00fclerlexikon | Lernhelfer, 2023, https://www.lernhelfer.de/schuelerlexikon/mathematik-abitur/artikel/polarkoor- dinatensystem# [Zugriff am: 25.05.2023]. - [59] Patrick Planing: Deskriptive Statistik \u2013 Kennwerte. - [60] Reinhold Kosfeld,Hans Friedrich Eckey, Matthias T\u00fcrck: Deskriptive Statistik \u2013 Grundlagen, Methoden, Beispiele und Aufgaben. Universit\u00e4t Kassel, Siemens Fi- nancial Services. Springer Gabler Wiesbaden, 2016. - [61] MassMatics UG: H\u00e4ufigkeitsverteilung, 2023, https://www.massmatics.de/merk- zettel/#!814:Haeufigkeitsverteilung [Zugriff am: 23.05.2023]. - [62] Akustikb\u00fcro Schwartzenberger und Burkhart: Mittelung von Schallpegeln | Akus- tikb\u00fcro Schwartzenberger und Burkhart, 27.11.20217, https://akustikbu- ero.com/lexikon/mittelung-von-schallpegeln/ [Zugriff am: 23.05.2023]. - [63] W.A.", - "embedding": [ - 0.013543755747377872, - 0.009777930565178394, - 0.015631476417183876, - -0.030153024941682816, - 0.009341888129711151, - 0.004694067407399416, - -0.025079071521759033, - -0.011356934905052185, - -0.012658456340432167, - -0.02551511488854885, - 0.03874174878001213, - 0.015856103971600533, - -0.005103683564811945, - -0.008753891102969646, - -0.011766551062464714, - -0.0018548339139670134, - 0.01734922081232071, - 0.013623036444187164, - 0.014799030497670174, - 0.007498615887016058, - 0.0012098537990823388, - 0.02115468494594097, - -0.008740677498281002, - 0.019344447180628777, - -0.020309027284383774, - 0.012156346812844276, - 0.023044204339385033, - -0.018815910443663597, - -0.010623590089380741, - 0.002971367910504341, - 0.022819576784968376, - 0.00907101295888424, - -0.02324240654706955, - 0.02165679633617401, - 0.005645433906465769, - -0.008786924183368683, - -0.01179958414286375, - -0.009599549695849419, - 0.02901666983962059, - 0.0011776461033150554, - 0.008271601051092148, - 0.02436554618179798, - 0.012704703956842422, - -0.016331788152456284, - -0.01059055607765913, - 0.008192320354282856, - 0.011720303446054459, - 0.00023598343250341713, - -0.012764164246618748, - 0.002745087957009673, - 0.02751034125685692, - 0.012645242735743523, - -0.002160394098609686, - 0.01244704145938158, - -0.006950259208679199, - -0.021670009940862656, - -0.009956312365829945, - 0.030681561678647995, - -0.0010587252909317613, - 0.00010973332246067002, - -0.01564469002187252, - -0.02498657815158367, - -0.028118157759308815, - 0.007399515248835087, - -0.018445935100317, - -0.021286819130182266, - -0.036046210676431656, - -0.008562296628952026, - -0.023903077468276024, - -0.01262542326003313, - 0.024325907230377197, - 0.019251953810453415, - 0.0035808368120342493, - 0.014838671311736107, - 0.02769532799720764, - -0.00182840705383569, - 0.024590175598859787, - -0.0072409543208777905, - 0.001255274866707623, - 0.009123866446316242, - 0.020282600075006485, - -0.004152317065745592, - -0.011284261010587215, - 0.03131580725312233, - 0.013497509062290192, - 0.005252334289252758, - -0.013860877603292465, - 0.0126980971544981, - -0.02295171096920967, - -0.0001259404089068994, - 0.013332340866327286, - 0.01878948323428631, - 0.011812797747552395, - 0.018961258232593536, - 0.011409788392484188, - 0.002835930325090885, - 0.011700483970344067, - 0.013649462722241879, - -0.018842337653040886, - -0.017785264179110527, - -0.026347558945417404, - -0.022291040048003197, - 0.016807470470666885, - -0.004892268683761358, - -0.025581181049346924, - -0.009467415511608124, - -0.0019142942037433386, - 0.024814803153276443, - 0.01300861220806837, - -0.01608073152601719, - -0.024312693625688553, - 0.008522655814886093, - -0.006567069794982672, - -0.010286647826433182, - 0.04717190936207771, - -0.009863818064332008, - 0.01974084973335266, - -0.0005809775902889669, - -0.008383914828300476, - -0.018049532547593117, - 0.036099065095186234, - 0.02247602678835392, - 0.002318955259397626, - -0.014177999459207058, - 0.012731130234897137, - 0.005358041729778051, - 0.0007837209850549698, - -0.019251953810453415, - -0.0063292281702160835, - -0.019185885787010193, - -0.006246644537895918, - -0.009586336091160774, - 0.016477134078741074, - 0.02592473104596138, - 0.003537893295288086, - 0.009692043997347355, - -0.01478581689298153, - 0.0034652194008231163, - -0.025871876627206802, - -0.02698180451989174, - 0.01123801339417696, - 0.01979370415210724, - -0.03572908788919449, - -0.026995018124580383, - -0.016767829656600952, - 0.04595627635717392, - 0.006164060439914465, - 0.014164786785840988, - 0.006950259208679199, - 0.011568349786102772, - -0.014614042825996876, - -0.01655641570687294, - 0.011482462286949158, - 0.025990797206759453, - -0.009249393828213215, - 0.009493842720985413, - 0.012301694601774216, - 0.025594394654035568, - -0.019251953810453415, - -0.0020976304076611996, - -0.002700492739677429, - 0.0012304997071623802, - 0.009130473248660564, - -0.0025997404009103775, - 0.015710756182670593, - 0.00113965745549649, - 0.0055826702155172825, - -0.013636250048875809, - -0.013583395630121231, - -0.013556969352066517, - -0.03316568583250046, - 0.025581181049346924, - 0.005083863623440266, - 0.017362434417009354, - -0.0077034239657223225, - 0.017772050574421883, - 0.015684328973293304, - -0.0007366481586359441, - -0.01849878765642643, - -0.03126295283436775, - -0.017137806862592697, - 0.007828951813280582, - 0.008978518657386303, - 0.023374540731310844, - -0.027087511494755745, - 0.04381570219993591, - 0.01411193236708641, - 0.010841610841453075, - 0.014072292484343052, - -0.014904738403856754, - 0.018604496493935585, - 0.01006201934069395, - 0.0017722499324008822, - -0.021696435287594795, - -0.632975697517395, - 0.0032455462496727705, - 0.010828398168087006, - 0.007247561123222113, - -0.0008621756569482386, - 0.04386855661869049, - 0.020784709602594376, - -0.005803994834423065, - -0.012850050814449787, - 0.03702400252223015, - 0.0026790208648890257, - -0.0019621928222477436, - -0.016305360943078995, - -0.0022330679930746555, - -0.006273071281611919, - -0.0025287182070314884, - 0.0061376336961984634, - -0.018300587311387062, - 0.02949235402047634, - -0.005407592281699181, - -0.028805255889892578, - 0.020427947863936424, - 0.0063688685186207294, - -0.0051730540581047535, - 0.00523581774905324, - 0.011852437630295753, - 0.0192915927618742, - -0.015089726075530052, - 0.004089553374797106, - -0.011892078444361687, - -0.027853889390826225, - 0.007399515248835087, - -0.02194749005138874, - 0.01646392233669758, - 0.04471421241760254, - 0.009863818064332008, - 0.0021851693745702505, - 0.007300414610654116, - 0.006758664269000292, - 0.0033132650423794985, - 0.0025006397627294064, - -0.009355101734399796, - 0.003106805495917797, - 0.0018746539717540145, - -0.005952645558863878, - 0.014204426668584347, - 0.050739534199237823, - -0.020969698205590248, - 0.005249031353741884, - -0.04257363826036453, - 0.011429608799517155, - -0.0006553030689246953, - 0.029333792626857758, - 0.012823624536395073, - 0.032716426998376846, - 0.0141383595764637, - 0.048176128417253494, - -0.0061838808469474316, - -0.016212865710258484, - -0.010055412538349628, - -0.0012767467414960265, - 0.014402627944946289, - -0.0016665426082909107, - -0.022912070155143738, - -0.03599335625767708, - 0.01346447505056858, - -0.013556969352066517, - -0.01277077104896307, - 0.02583223581314087, - -0.009612763300538063, - -0.012394187971949577, - 0.02568688802421093, - -0.004895572084933519, - -0.000970360531937331, - 0.031210098415613174, - 0.013424835167825222, - 0.019463367760181427, - -0.012010999023914337, - 0.0035709268413484097, - 0.014442267827689648, - -0.01201760582625866, - -0.01175333745777607, - 0.004644517321139574, - -0.0060979933477938175, - 0.020018331706523895, - -0.02774818241596222, - -0.009328674525022507, - 0.015618262812495232, - 0.01262542326003313, - 0.004578450229018927, - 0.023519888520240784, - 0.026440054178237915, - 0.0038351952098309994, - -0.003422275884076953, - 0.01304825209081173, - 0.025052644312381744, - -0.01285665761679411, - 0.015393634326756, - -0.003187737660482526, - -0.02772175520658493, - -0.01820809207856655, - -0.005562849808484316, - 0.02000511810183525, - -0.010643409565091133, - 0.0011272699339315295, - -0.0014708188828080893, - 0.00584033178165555, - 0.0027896834071725607, - 0.024828016757965088, - -0.02206641249358654, - -0.0006445671315304935, - -0.024854443967342377, - -0.023163124918937683, - -0.012242233380675316, - -0.009817571379244328, - -0.027021443471312523, - 0.03871532157063484, - -0.005784174893051386, - 0.0026790208648890257, - -0.013246453367173672, - 0.009256000630557537, - -0.008509442210197449, - 0.04008951783180237, - -0.02345382049679756, - -0.022145692259073257, - 0.02283279038965702, - 0.017137806862592697, - 0.012288480997085571, - -0.013497509062290192, - -0.010808577761054039, - 0.012295087799429893, - -0.013206813484430313, - 0.02566046267747879, - 0.012050638906657696, - 0.0253961943089962, - 0.019608715549111366, - 0.02721964567899704, - -0.012275267392396927, - 0.01300861220806837, - -0.027431059628725052, - -0.0300737451761961, - -0.018300587311387062, - 0.0021025855094194412, - -0.02930736541748047, - -0.02949235402047634, - -0.03697114810347557, - -0.02424662560224533, - 0.011257833801209927, - 0.013887304812669754, - 0.004149014130234718, - -0.011687270365655422, - -0.017151018604636192, - 0.0010455119190737605, - 0.02566046267747879, - 0.0028739189729094505, - -0.0034586128313094378, - -0.01814202591776848, - -0.026558974757790565, - -0.011112486012279987, - -0.02094327099621296, - 0.029333792626857758, - 0.015895744785666466, - -0.033271390944719315, - -0.016833897680044174, - 0.02130003273487091, - -0.01206385251134634, - 0.008291421458125114, - -0.0013271229108795524, - -0.024960150942206383, - -0.031447939574718475, - 0.010881251655519009, - 0.01148906908929348, - -0.0028706155717372894, - 0.010940711945295334, - 0.0033677704632282257, - -0.016212865710258484, - -0.02566046267747879, - -0.0010686353780329227, - -0.018723417073488235, - -0.007406122051179409, - 0.04106730967760086, - 0.004172137472778559, - -0.0036997576244175434, - 0.011290867812931538, - 0.033720649778842926, - 0.011211587116122246, - 0.008753891102969646, - 0.011482462286949158, - -0.022793149575591087, - 0.0126980971544981, - 0.014376200735569, - 0.019251953810453415, - -0.03057585470378399, - 0.019701208919286728, - -0.040670908987522125, - -0.009533482603728771, - -0.017983464524149895, - -0.015869317576289177, - -0.0012883084127679467, - 0.020467588678002357, - 0.03432846441864967, - 0.019780490547418594, - 0.025079071521759033, - -0.024761948734521866, - 0.016662122681736946, - -8.057089144131169e-05, - 0.018551642075181007, - -0.0021042372100055218, - 0.03152722120285034, - 0.003673330880701542, - 0.019080178812146187, - -0.010187546722590923, - -0.022317467257380486, - -0.017957037314772606, - 0.006064959801733494, - 0.041727982461452484, - -6.684132677037269e-05, - 0.010418782010674477, - 0.03409062325954437, - -0.005222604144364595, - 0.015208646655082703, - 0.0009257652563974261, - 0.03612549230456352, - 0.017890971153974533, - -0.017402075231075287, - -0.003769128117710352, - 0.005232514347881079, - 0.023704875260591507, - 0.0015459702117368579, - -0.010213973931968212, - -0.00692383199930191, - -0.01047163549810648, - 0.01732279360294342, - 0.0001951044105226174, - 0.012077066116034985, - 0.028910962864756584, - 0.02185499668121338, - -0.007267381064593792, - 0.016767829656600952, - 0.025885090231895447, - 0.021485021337866783, - 0.01823451928794384, - 0.00245934771373868, - 0.012731130234897137, - 0.01717744581401348, - -0.014534762129187584, - 0.008337668143212795, - 0.03192362189292908, - -0.002939986065030098, - -0.027827462181448936, - -0.02082435041666031, - -0.0060550495982170105, - -0.022674228996038437, - -0.008020546287298203, - 0.04133157804608345, - -0.014693323522806168, - 0.010564129799604416, - -0.0028673121705651283, - -0.0076109301298856735, - 0.016860324889421463, - -0.005493479315191507, - 0.021868210285902023, - 0.02259494923055172, - -0.00798090547323227, - -0.00029131461633369327, - 0.005711500998586416, - -0.031712207943201065, - -0.007498615887016058, - -0.007762884255498648, - -0.008601936511695385, - -0.01576361060142517, - -0.0036766340490430593, - -0.008509442210197449, - 0.012480075471103191, - 0.013649462722241879, - -0.01387409120798111, - 0.012750950641930103, - 0.014878311194479465, - 0.02825029194355011, - 0.01296236552298069, - -0.01890840381383896, - -0.03438131883740425, - -0.010392354801297188, - 0.012440434657037258, - -0.013900518417358398, - -0.016992459073662758, - 0.009526875801384449, - 0.0106632299721241, - -0.04603555426001549, - -0.0024808195885270834, - -0.010524488985538483, - 0.005889881867915392, - -0.008258387446403503, - 0.0005367951816879213, - -0.0008175803814083338, - -0.004254721105098724, - 0.0026542458217591047, - 0.002733526285737753, - -0.0268364567309618, - 0.005794084630906582, - 0.010907677933573723, - -0.013411621563136578, - -0.017758836969733238, - -0.02120753936469555, - 0.011251226998865604, - -0.005021099466830492, - -0.02774818241596222, - -0.011865651234984398, - -0.00854247622191906, - -0.012645242735743523, - -0.001958889653906226, - -0.004003666341304779, - -0.009355101734399796, - 0.026373986154794693, - 0.007531649433076382, - 0.006785091478377581, - 0.012195986695587635, - -0.022224972024559975, - 0.04756831377744675, - 0.002322258660569787, - -0.025792596861720085, - -0.009764717891812325, - 0.001498071476817131, - 0.006771877873688936, - 0.013623036444187164, - 0.011621203273534775, - 0.0018465754110366106, - 0.04267934709787369, - -0.017957037314772606, - -0.02595115639269352, - -0.014600829221308231, - -0.03670687973499298, - 0.005638827104121447, - -0.0013733698287978768, - 0.00012015953689115122, - 0.0010207367595285177, - 0.012572568841278553, - -0.0026790208648890257, - -0.004182047676295042, - -0.011588169261813164, - 0.021260393783450127, - -0.0036469039041548967, - 0.010874644853174686, - -0.0010479893535375595, - -0.020322240889072418, - 0.0022446296643465757, - 0.016371427103877068, - 0.035808369517326355, - 0.0030935918912291527, - -0.024206986650824547, - 0.011548529379069805, - 0.011792977340519428, - 0.022132478654384613, - -0.022000344470143318, - 0.007108820136636496, - 0.022634588181972504, - 0.01489152479916811, - 0.015221860259771347, - -0.022053198888897896, - -0.014799030497670174, - 0.00665626022964716, - -0.008549083024263382, - 0.013305913656949997, - -0.0014220942975953221, - 0.01384766399860382, - 0.03292784467339516, - -0.0004765089543070644, - -0.009143686853349209, - -0.00013832798867952079, - -0.006890798453241587, - -0.018075957894325256, - 0.025726528838276863, - 0.007016326300799847, - 0.006144240498542786, - 0.01756063476204872, - -0.005113593768328428, - -0.0025964369997382164, - -0.009249393828213215, - -0.017032098025083542, - -0.020401520654559135, - -0.00832445453852415, - -0.013913731090724468, - 0.013794810511171818, - -0.02374451607465744, - -0.010174333117902279, - -0.010028986260294914, - 0.015221860259771347, - -0.012480075471103191, - -0.024140918627381325, - -0.026968590915203094, - -0.021498234942555428, - -0.006983292754739523, - -0.018247732892632484, - 0.018393080681562424, - 0.013200206682085991, - -0.027853889390826225, - -0.024352332577109337, - 0.0048559317365288734, - 0.005932825617492199, - -0.0019291593926027417, - 0.02250245399773121, - 0.0020216533448547125, - -0.008740677498281002, - 0.02341417968273163, - -0.01909339241683483, - -0.006576979998499155, - -0.01322663389146328, - -0.0323464535176754, - 0.0036270837299525738, - 0.014270493760704994, - -0.01411193236708641, - -0.0034718262031674385, - 0.02338775433599949, - -0.006246644537895918, - -0.0008122124127112329, - -0.009962919168174267, - 0.014244066551327705, - -0.009949705563485622, - 0.008912451565265656, - -0.0028574021998792887, - 0.0253961943089962, - 0.006438239011913538, - 0.01837986707687378, - -0.007425941992551088, - 0.01156174298375845, - -0.01044520828872919, - 0.008040365763008595, - -0.006111206952482462, - 0.023493461310863495, - 0.010438601486384869, - -0.005106986965984106, - 0.019489794969558716, - 0.008945485576987267, - -0.011363541707396507, - 0.007425941992551088, - -0.007934658788144588, - 0.006616620346903801, - -0.0025287182070314884, - -0.0032339845784008503, - 0.012526322156190872, - 0.024999791756272316, - 0.003861621953547001, - -0.005694983992725611, - -0.003382635535672307, - -0.015248286537826061, - -0.029122378677129745, - 0.02398235723376274, - -0.010643409565091133, - -0.019846556708216667, - 0.04310217499732971, - -0.013596609234809875, - 0.003917779307812452, - -0.021405741572380066, - 0.01652998849749565, - 0.007366481702774763, - 0.0036865442525595427, - 0.014151573181152344, - -0.012823624536395073, - -0.04051234573125839, - -0.0268364567309618, - 0.0036436005029827356, - 0.005285367835313082, - -0.02453732118010521, - -0.002262798137962818, - -0.003270321525633335, - 0.012618816457688808, - -0.021141471341252327, - 0.014376200735569, - -0.004049913492053747, - -0.03150079399347305, - -0.030945830047130585, - 0.007055966183543205, - -0.0024494377430528402, - 0.019582288339734077, - -0.017217086628079414, - -0.010425388813018799, - -0.015102939680218697, - -0.0019060358172282577, - -0.03160650283098221, - -0.03720899298787117, - 0.006851158570498228, - -0.013477688655257225, - 0.01163441687822342, - 0.018749842420220375, - 0.033244963735342026, - 0.012044032104313374, - 0.00904458574950695, - 0.03136865794658661, - -0.007782704662531614, - 0.004816291853785515, - -0.01409871969372034, - -0.0096457963809371, - -0.022806363180279732, - 0.00827820785343647, - 0.0018118902808055282, - 0.008337668143212795, - 0.0023073935881257057, - 0.013378587551414967, - 0.008701037615537643, - 0.04653766751289368, - -0.009830784983932972, - 0.0018218002514913678, - -0.006930438801646233, - -0.025885090231895447, - -0.02091684378683567, - -0.015776824206113815, - 0.020877202972769737, - 0.005519906058907509, - -0.02429948002099991, - -0.014045865274965763, - 0.028038877993822098, - 0.005655343644320965, - 0.00039660907350480556, - -0.012526322156190872, - 0.02259494923055172, - -0.030998684465885162, - 0.047066204249858856, - 0.0017953735077753663, - -0.0034751296043395996, - -0.02925451286137104, - -0.008291421458125114, - -0.028038877993822098, - -0.023427393287420273, - 0.01387409120798111, - 0.004274541512131691, - 0.004581753630191088, - 0.0006974208517931402, - -0.006504306104034185, - -0.0035081631503999233, - -0.015208646655082703, - 0.008555689826607704, - -0.03002089075744152, - -0.005747837945818901, - -0.0030225699301809072, - -0.012308300472795963, - -0.027801036834716797, - -0.014984018169343472, - -0.035041991621255875, - 0.029360219836235046, - 0.008245173841714859, - -0.007987512275576591, - 0.026136144995689392, - -0.012658456340432167, - 0.012585782445967197, - -0.0034685228019952774, - -0.0018944741459563375, - 0.019304806366562843, - 0.008179106749594212, - 0.025290485471487045, - 0.022053198888897896, - -0.009051192551851273, - -0.031025109812617302, - -0.06532715260982513, - 0.004386855289340019, - -0.01614679954946041, - 0.03390563651919365, - -0.0033776804339140654, - -0.03311283141374588, - 0.019318019971251488, - 0.02391629107296467, - 0.025316912680864334, - -0.017018884420394897, - -0.011541922576725483, - 0.02772175520658493, - 0.02515835128724575, - 0.0004888965631835163, - -0.017256727442145348, - 0.025026217103004456, - -0.01111909281462431, - 0.009507055394351482, - 0.0006123594357632101, - -0.011977965012192726, - -0.026532547548413277, - -0.01329930778592825, - -0.01923874020576477, - 0.0361783429980278, - 0.018934831023216248, - 0.0253961943089962, - 0.02427305281162262, - -0.02274029701948166, - 0.019423726946115494, - -0.030945830047130585, - -0.025197992101311684, - -0.0018300586380064487, - -0.027298925444483757, - 0.030972257256507874, - -0.017256727442145348, - -0.009084226563572884, - 0.009659009985625744, - -0.00040053180418908596, - 0.0019621928222477436, - 0.001709486241452396, - 0.0025353250093758106, - 0.02235710620880127, - -0.03538553789258003, - -0.015657903626561165, - -0.007835558615624905, - -0.010009165853261948, - 0.011594776064157486, - -2.3420270736096427e-05, - -0.007234347518533468, - -0.010650016367435455, - -0.0006569547113031149, - -0.005301884841173887, - -0.009282427839934826, - 0.02477516233921051, - 0.004961639177054167, - -0.020903630182147026, - -0.01243382878601551, - -0.015975024551153183, - 0.004561933223158121, - 0.004106070380657911, - 0.006864371709525585, - -0.04896893352270126, - -0.0017672949470579624, - -0.002327213529497385, - -0.014468695037066936, - 0.01297557819634676, - -0.007809131406247616, - -0.011350328102707863, - -0.008364095352590084, - 0.006844551768153906, - -0.03842462599277496, - 0.011977965012192726, - 0.0364161841571331, - -0.02077149599790573, - -0.01787775754928589, - 0.005414199084043503, - -0.0024395277723670006, - -0.008139466866850853, - 0.014547975733876228, - 0.009797750972211361, - -0.0003148510295432061, - -0.007994119077920914, - -0.015406847931444645, - 0.017930611968040466, - -0.01501044537872076, - -0.0029895363841205835, - 0.015776824206113815, - 0.022013558074831963, - 0.004664337262511253, - -0.0021967310458421707, - -0.013623036444187164, - -0.0004339782753959298, - 0.021379314363002777, - -0.007042753044515848, - 0.01602787896990776, - -0.01787775754928589, - 0.024907296523451805, - 0.011515495367348194, - -0.011066239327192307, - -0.014059078879654408, - -0.028620267286896706, - -0.009725077077746391, - 0.014812244102358818, - 0.004882358945906162, - -0.02053365483880043, - -0.0010265175951644778, - -0.019608715549111366, - 0.0016161664389073849, - -0.013233240693807602, - 0.01626572012901306, - 0.0017904184060171247, - 0.025871876627206802, - 0.006785091478377581, - 0.005083863623440266, - -0.006431632209569216, - 0.02056008204817772, - 0.00975150428712368, - -0.016979245468974113, - 0.012565962970256805, - -0.0064217220060527325, - -0.02957163378596306, - 0.00033363886177539825, - 0.011158733628690243, - 0.032980695366859436, - 0.021247180178761482, - -0.018075957894325256, - -0.01013469323515892, - 0.027801036834716797, - -0.01660926826298237, - -0.021115045994520187, - -0.012572568841278553, - 0.019569074735045433, - 0.005698287393897772, - 0.024233411997556686, - -0.008284814655780792, - 0.03670687973499298, - -0.017018884420394897, - 0.02127360738813877, - -0.03871532157063484, - -0.021511448547244072, - 0.026294706389307976, - -0.005843635182827711, - 0.00654064305126667, - -0.009672223590314388, - -0.03755253925919533, - 0.004409979097545147, - 0.029148804023861885, - -0.012744343839585781, - 0.0011421350063756108, - 0.028620267286896706, - -0.011508888565003872, - -0.034249186515808105, - 0.019978690892457962, - 0.00045916636008769274, - -0.004347215406596661, - 0.011898685246706009, - 0.005675164051353931, - -0.04669622704386711, - 0.018247732892632484, - 0.00497154938057065, - 0.002462651114910841, - -0.038662467151880264, - -0.0027500430587679148, - 0.02498657815158367, - -0.0126386359333992, - 0.0038946554996073246, - 0.005754444282501936, - -0.023572741076350212, - 0.02026938647031784, - -0.020044758915901184, - 0.040485918521881104, - -0.003765824716538191, - -0.01794382371008396, - 0.008080006577074528, - 0.012797197327017784, - -0.026968590915203094, - -0.013332340866327286, - 0.018459148705005646, - -0.021128259599208832, - -0.005341525189578533, - 0.006240037735551596, - -0.013266273774206638, - 0.020401520654559135, - -0.03287499025464058, - 0.008416948840022087, - 0.0031844342593103647, - -0.022000344470143318, - -0.033773500472307205, - -0.025700101628899574, - -0.04281148314476013, - 0.020480800420045853, - 0.03218789026141167, - -0.027933171018958092, - -0.0002023304987233132, - -0.014917951077222824, - -0.02801245078444481, - 0.0064646657556295395, - -0.020546868443489075, - -0.0012205897364765406, - -0.01878948323428631, - -0.01991262473165989, - 0.0072013139724731445, - -0.021260393783450127, - -0.015221860259771347, - 0.006897405255585909, - -0.012156346812844276, - -0.026823243126273155, - -0.017375648021697998, - 0.18826481699943542, - -0.022436387836933136, - -0.0027483913581818342, - 0.003227377776056528, - -0.021934278309345245, - -0.024524107575416565, - 0.023374540731310844, - -0.003808768466114998, - 0.005252334289252758, - 0.021987130865454674, - -0.000832032528705895, - 0.0089256651699543, - -0.004320788197219372, - 0.007412728853523731, - 0.01175333745777607, - -0.018948044627904892, - -0.031025109812617302, - -0.021868210285902023, - -0.011627810075879097, - 0.030866550281643867, - 0.004370338749140501, - -0.013457868248224258, - -0.012744343839585781, - 0.0019886197987943888, - 0.04849325120449066, - 0.01157495565712452, - -0.004449619445949793, - 0.0014410886215046048, - 0.01732279360294342, - 0.02173607610166073, - -0.007683604024350643, - -0.005420805420726538, - 0.0021934276446700096, - 0.02288564294576645, - -0.02530369907617569, - -0.009156900458037853, - 0.027113938704133034, - -0.015565409325063229, - 0.022846003994345665, - 0.03805464878678322, - -0.007657176814973354, - -0.016014665365219116, - -0.005698287393897772, - -0.03438131883740425, - 0.008826564997434616, - 0.028752401471138, - -0.011356934905052185, - 0.0024841229896992445, - -0.002442830940708518, - 0.01670176349580288, - -0.005585973151028156, - 0.017402075231075287, - 0.025237632915377617, - 0.033271390944719315, - 0.004073036834597588, - -0.02674396149814129, - -1.9239461835240945e-05, - 0.014296920970082283, - 0.014376200735569, - 0.020758282393217087, - -0.025092285126447678, - 0.022674228996038437, - 0.0019489794503897429, - 0.020401520654559135, - -0.026202213019132614, - -0.0002964761224575341, - -0.013021825812757015, - 0.012922724708914757, - -0.007782704662531614, - -0.015486128628253937, - 0.005549636669456959, - -0.00776949105784297, - -0.039957381784915924, - 0.019489794969558716, - -0.016120372340083122, - -0.021934278309345245, - 0.038662467151880264, - 0.0178513303399086, - 0.02556796744465828, - 0.017520995810627937, - 0.007386301644146442, - 0.0057313209399580956, - -0.019318019971251488, - -0.0004975678748451173, - 0.0004102353996131569, - -0.004598270170390606, - 0.008390521630644798, - 0.005358041729778051, - 0.020863991230726242, - -0.009348494932055473, - -0.026294706389307976, - 0.016728190705180168, - 0.008608543314039707, - -0.012361154891550541, - 0.00918993353843689, - -0.01411193236708641, - 0.013054858893156052, - -0.002223158022388816, - -0.001639289897866547, - 0.015393634326756, - -0.011654236353933811, - 0.04294361546635628, - 0.02556796744465828, - -0.019516222178936005, - -0.0039871493354439735, - -0.02300456538796425, - -0.009659009985625744, - 0.0070229326374828815, - 0.015948597341775894, - -0.012103493325412273, - -0.012836838141083717, - -0.017692768946290016, - 0.007921445183455944, - -0.010306467302143574, - 0.010940711945295334, - 0.022793149575591087, - 0.007597716525197029, - 0.0011941628763452172, - 0.01384766399860382, - -0.00593612901866436, - 0.005833724979311228, - 0.00340245570987463, - 0.003029176499694586, - 0.013834451325237751, - 0.013523935340344906, - -0.03514769673347473, - -0.03649546578526497, - 0.01667533628642559, - -0.005741231143474579, - -0.0054967827163636684, - 0.021366100758314133, - 0.007359874900430441, - 0.020229745656251907, - 0.007108820136636496, - -0.0029548511374741793, - 0.01622607931494713, - -0.003944206051528454, - -0.022898856550455093, - -0.017190659418702126, - 0.0054571423679590225, - 0.008364095352590084, - -0.0151557931676507, - 0.00629619462415576, - 0.007961085997521877, - 0.01696603186428547, - -0.0126980971544981, - 0.02377094328403473, - -0.00497154938057065, - -0.03290141746401787, - -0.014429055154323578, - -0.009810964576900005, - -0.014270493760704994, - -0.007307021412998438, - -0.024471255019307137, - 0.0161732267588377, - 0.02321597933769226, - -0.01897447183728218, - -0.025819022208452225, - -0.011132306419312954, - 0.031157243996858597, - -0.001215634634718299, - -0.01746814139187336, - 0.0056784674525260925, - -0.012929331511259079, - -0.00929564144462347, - -0.005797388032078743, - -0.16712333261966705, - 0.012229020707309246, - 0.01814202591776848, - -0.006884192116558552, - -0.0063688685186207294, - 0.01462725643068552, - 0.011178553104400635, - 0.008007332682609558, - -0.01425728015601635, - -0.0076505704782903194, - 0.0016186439897865057, - 0.002462651114910841, - -0.004651124123483896, - -0.01425728015601635, - -0.008668003603816032, - -0.02386343665421009, - -0.0016013013664633036, - 0.0392967127263546, - 0.021247180178761482, - 0.010702870786190033, - -0.011839224025607109, - -0.022462815046310425, - 0.019991904497146606, - 0.01076893787831068, - -0.01266506314277649, - 0.013438048772513866, - -0.011006779037415981, - 0.011779763735830784, - -0.005106986965984106, - -0.019066965207457542, - -0.02433912083506584, - -0.01076893787831068, - 0.02026938647031784, - -0.009440988302230835, - -0.018393080681562424, - -0.013074679300189018, - -0.004961639177054167, - -0.009335281327366829, - -0.010075232945382595, - 0.048387546092271805, - 0.015565409325063229, - 0.0332978181540966, - -0.016001451760530472, - 0.0076637836173176765, - -0.018445935100317, - 0.028805255889892578, - 0.017309579998254776, - -0.01111909281462431, - -0.014349774457514286, - -0.02259494923055172, - -0.015710756182670593, - -0.04088232293725014, - -0.002330516930669546, - 0.01652998849749565, - -0.003670027479529381, - 0.001884564058855176, - -4.129193712287815e-06, - 0.01705852523446083, - -0.003670027479529381, - -0.01660926826298237, - -0.012242233380675316, - -0.0043967654928565025, - 0.036548320204019547, - -0.0019076875178143382, - -0.0065076095052063465, - -0.01187225803732872, - 0.010967139154672623, - 0.014680109918117523, - -0.022132478654384613, - 0.0025518417824059725, - 0.012070459313690662, - -0.012598996050655842, - -0.0020216533448547125, - -0.010623590089380741, - -0.0030275247991085052, - -0.0022809666115790606, - -0.009969525970518589, - 0.004036699887365103, - 0.006415115669369698, - 0.0030655134469270706, - -0.019344447180628777, - 0.03335067257285118, - -0.004287754651159048, - -0.021907851099967957, - -0.01590895839035511, - -0.009051192551851273, - -0.023850223049521446, - 0.026321133598685265, - -0.009196540340781212, - 0.01411193236708641, - 0.009599549695849419, - -0.01814202591776848, - -0.01794382371008396, - -0.013649462722241879, - 0.010702870786190033, - -0.0005652866093441844, - -0.014389414340257645, - 0.00419856421649456, - -0.011647629551589489, - -0.00726077426224947, - 0.012380974367260933, - -0.013391801156103611, - -0.005972465965896845, - 0.02745748683810234, - 0.008952092379331589, - 0.005325008183717728, - -0.030496573075652122, - -0.0005355564644560218, - 0.03903244435787201, - -0.018459148705005646, - -0.01756063476204872, - 0.0005070649785920978, - 0.025409407913684845, - -0.00011654649279080331, - -0.02015046589076519, - -0.003225726308301091, - -0.019066965207457542, - -0.03356208652257919, - 0.01542006153613329, - 0.0033396920189261436, - 0.05206087604165077, - 0.012585782445967197, - -0.01985977031290531, - 0.0076109301298856735, - -0.0009637538460083306, - -0.0325842946767807, - -0.08081328123807907, - 9.419723210157827e-05, - 0.028646694496273994, - 0.023202765733003616, - 0.021722862496972084, - 0.033535659313201904, - 0.0006759490352123976, - 0.002315651858225465, - 0.0013849316164851189, - 0.038926735520362854, - -0.0016516775358468294, - -0.024722309783101082, - -0.019542647525668144, - -0.010313074104487896, - 0.03268999978899956, - -0.017838116735219955, - 0.00253367330878973, - -0.029677342623472214, - -0.043234311044216156, - 0.024352332577109337, - -0.004538809880614281, - -0.006071566604077816, - -0.0076637836173176765, - -0.013398407958447933, - -0.02412770502269268, - -0.016212865710258484, - -0.041675128042697906, - 0.02846170775592327, - 0.01512936595827341, - -0.014270493760704994, - 0.009447595104575157, - -0.02433912083506584, - -0.014415841549634933, - -0.029915183782577515, - -0.02618899941444397, - -0.01608073152601719, - -0.02681002952158451, - -0.012929331511259079, - 0.01602787896990776, - -0.033509232103824615, - -0.01643749512732029, - 0.02607007883489132, - 0.006352351978421211, - -0.006365565117448568, - 0.016411067917943, - -0.03131580725312233, - -0.00794126559048891, - 0.009553303010761738, - 0.017256727442145348, - -0.002067900262773037, - -0.017600275576114655, - -0.027272500097751617, - -0.0219210647046566, - -0.004997976124286652, - 0.03004731796681881, - -0.003881442127749324, - 0.0017078345408663154, - 0.007320234552025795, - -0.01693960465490818, - 0.007835558615624905, - -0.019304806366562843, - 0.03205575793981552, - -0.032505013048648834, - 0.024286266416311264, - 0.008377308025956154, - -0.0059592523612082005, - -0.0196483563631773, - 0.0018383170245215297, - 0.01823451928794384, - -0.017256727442145348, - -0.020718643441796303, - 0.008753891102969646, - 0.01006201934069395, - 0.030338013544678688, - -0.02872597612440586, - 0.010868038050830364, - -0.04910106956958771, - -0.011911897920072079, - 0.012242233380675316, - 0.005675164051353931, - -0.0033050067722797394, - -0.028065305203199387, - 0.015182219445705414, - 0.006742147728800774, - 0.003944206051528454, - 0.01059055607765913, - -0.018287373706698418, - -0.009764717891812325, - 0.016331788152456284, - -0.025700101628899574, - 0.0029267724603414536, - 0.014151573181152344, - 0.023202765733003616, - 0.0007424290524795651, - -0.02153787575662136, - 0.026466481387615204, - 0.014680109918117523, - -0.015737183392047882, - 0.001181775238364935, - 0.011674056760966778, - -0.03469844162464142, - 0.0015633127186447382, - -0.05322365462779999, - 0.026757175102829933, - 0.03623119741678238, - -0.016992459073662758, - -0.011396574787795544, - 0.004158923868089914, - -0.0031761759892106056, - -0.0011198373977094889, - 0.017428500577807426, - 0.005073953419923782, - -0.009474022313952446, - 0.006722327321767807, - -0.03644261136651039, - -0.01711137965321541, - -0.04281148314476013, - -0.020256172865629196, - 0.004281148314476013, - 0.007234347518533468, - 0.0012717916397377849, - -0.02542261965572834, - 0.014204426668584347, - 0.0032818831969052553, - -0.011389967985451221, - 0.019542647525668144, - -0.026677895337343216, - 0.002147180726751685, - 0.0006210307474248111, - -0.017692768946290016, - -0.017243513837456703, - -0.014072292484343052, - -0.000575609621591866, - -0.011964752338826656, - 0.006164060439914465, - 0.040697332471609116, - -0.007392908446490765, - -0.030787268653512, - 0.009956312365829945, - 0.02398235723376274, - -0.004400068894028664, - 0.047621164470911026, - -0.013596609234809875, - -0.021101832389831543, - -0.020216532051563263, - -0.029148804023861885, - 0.011773156933486462, - 0.003174524288624525, - 0.01955586113035679, - 0.011720303446054459, - 0.007115426938980818, - -0.010048805736005306, - 0.03586122393608093, - 0.03461915999650955, - -0.018075957894325256, - -8.619692380307242e-06, - 0.016384640708565712, - 0.024841230362653732, - 0.005827118176966906, - 0.0029267724603414536, - 0.03615191578865051, - -0.0012181121855974197, - 0.028831683099269867, - 0.01194493193179369, - 0.021617155522108078, - 0.0002923469291999936, - -0.0005025228601880372, - -0.011555136181414127, - -0.011812797747552395, - -0.026638254523277283, - -0.00548026617616415, - -0.026532547548413277, - -0.0033529053907841444, - -0.0005491827614605427, - 0.011581562459468842, - 0.040723759680986404, - -0.02056008204817772, - -0.007630750071257353, - 0.00034375538234598935, - 0.010762331075966358, - -0.010901072062551975, - 0.020427947863936424, - 0.01837986707687378, - 0.004023486282676458, - 0.0026740659959614277, - -0.004201867617666721, - 0.02616257220506668, - 0.0022661015391349792, - -0.013570182956755161, - -0.006857764907181263, - 0.00448595592752099, - 0.0071484604850411415, - 0.007055966183543205, - 0.008641576394438744, - 0.0126980971544981, - 0.0038781387265771627, - 0.014534762129187584, - 0.0020860687363892794, - 0.007108820136636496, - -0.01711137965321541, - 0.031183671206235886, - 0.03829248994588852, - 0.00776949105784297, - 0.0028111550491303205, - -0.01823451928794384, - -0.026136144995689392, - -0.007868591696023941, - 0.025739742442965508, - -0.00983739085495472, - -0.039191003888845444, - 0.016371427103877068, - 0.011568349786102772, - -0.010260220617055893, - 0.02451089397072792, - -0.008284814655780792, - 0.006438239011913538, - -0.02120753936469555, - 0.027774609625339508, - -0.0330599769949913, - -0.01938408799469471, - -0.04230936989188194, - 0.030681561678647995, - 0.011112486012279987, - 0.00987042486667633, - -0.007102213334292173, - -0.003494949545711279, - 0.004000362940132618, - -0.020573295652866364, - 0.02238353341817856, - -0.02135288715362549, - 0.010147906839847565, - -0.01818166673183441, - -0.010603769682347775, - -0.006395295262336731, - -0.026757175102829933, - -0.010101660154759884, - -0.013338947668671608, - -0.005064043216407299, - 0.03348280489444733, - -0.0032405913807451725, - 0.016714977100491524, - 0.10586592555046082, - 0.043287165462970734, - 0.0022049895487725735, - 0.0219210647046566, - -0.005820511374622583, - 0.01952943578362465, - 0.023969143629074097, - 0.004314181860536337, - 0.008245173841714859, - -0.053276509046554565, - -0.007214527577161789, - -0.011971358209848404, - 0.007174887228757143, - -0.028805255889892578, - -0.00236355047672987, - 0.01553898211568594, - 0.004320788197219372, - 0.027589621022343636, - -0.026004010811448097, - 0.008681217208504677, - 0.02666468173265457, - -0.020731857046484947, - -0.0007663783617317677, - 0.03517412394285202, - -0.029360219836235046, - -0.036310479044914246, - 0.013834451325237751, - 0.017811689525842667, - 0.006576979998499155, - -0.03342995420098305, - -0.0023486854042857885, - 0.008892632089555264, - -0.0642172247171402, - -0.034249186515808105, - 0.0015690936706960201, - -0.03749968484044075, - -0.011508888565003872, - -0.015750396996736526, - 0.008152680471539497, - 0.014455481432378292, - 0.007492009084671736, - 0.02165679633617401, - -0.013253060169517994, - -0.004935212433338165, - 0.004492562729865313, - -0.0034652194008231163, - -0.017256727442145348, - -0.006930438801646233, - -0.022753508761525154 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 44, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 295 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000045.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000045.json deleted file mode 100644 index 36f7c34b869b06d87824563768b25a07a76324c6..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000045.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000045", - "content": "- [62] Akustikb\u00fcro Schwartzenberger und Burkhart: Mittelung von Schallpegeln | Akus- tikb\u00fcro Schwartzenberger und Burkhart, 27.11.20217, https://akustikbu- ero.com/lexikon/mittelung-von-schallpegeln/ [Zugriff am: 23.05.2023]. - [63] W.A. Kreiner Faculty of Natural Sciences University of Ulm: Gau\u00df oder nicht Gau\u00df? \u2013 Is it a Gaussian or a non-Gaussian Distribution? Ulm, W.A. Kreiner Faculty of Na- tural Sciences University of Ulm. - [64] Prof. Dr. Torsten Schatz: Lambacher Schweizer Kursstufe \u2013 Modellieren mit der Normalverteilung. Ernst Klett Verlag GmbH, Stuttgart, 2020. ## V\n\nAbschlie\u00dfende Bewertung und Ausblick\n- [65] Martin Heroldt: Schallpegelanalyse von Be- und Entladevorg\u00e4ngen mit Paletten- hubwagen und beladener Palette bei Lkw in Logistikzentren \u2013 Studiengang Um- weltschutz. Bingen, TH Bingen, Bachelorarbeit, 2016. - [66] LfU: Materialien zur Parkplatzl\u00e4rmstudie; Bewegungs- und Belegungsganglinien. Bayerisches Landesamt f\u00fcr Umwelt. - [67] Bianca Berghofer: Untersuchung der Ger\u00e4uschemissionen durch Ladevorg\u00e4nge in Ladezonen von Discountern \u2013 Studiengang: Umweltingenieurwesen. L\u00fcbeck, Fach- hochschule L\u00fcbeck, Diplomarbeit, 2009. - [68] Gebr\u00fcder Weiss: \u00dcber uns - Unternehmen - Gebr\u00fcder Weiss, 2023, https://www.gw-world.com/de/unternehmen/ueber-uns [Zugriff am: 20.04.2023]. - [69] Gebr\u00fcder Weiss: Geschichte - \u00dcber uns - Unternehmen - Gebr\u00fcder Weiss, 2023, https://www.gw-world.com/de/unternehmen/ueber-uns/geschichte [Zugriff am: 02.05.2023]. - [70] Wikipedia: Gebr\u00fcder Weiss, 2023, https://de.wikipedia.org/w/index.php?title=Ge- br\u00fcder_Weiss&oldid=232890186 [Zugriff am: 20.04.2023]. - [71] Gebr\u00fcder Weiss: Zahlen, Daten & Fakten - \u00dcber uns - Unternehmen - Gebr\u00fcder Weiss, 2023, https://www.gw-world.com/de/unternehmen/ueber-uns/zahlen-da- ten-fakten [Zugriff am: 20.04.2023]. - [72] Saloodo! : Was ist ein Auflieger? Definitionen & Erkl\u00e4rungen | Saloodo!, 2023, https://www.saloodo.com/de/logistik-lexikon/auflieger/ [Zugriff am: 08.05.2023]. - [73] zipmend Express: Auflieger - Definition und Erkl\u00e4rung, 2022+00:00, https://zipmend.com/logistik-lexikon/auflieger/ [Zugriff am: 08.05.2023]. - [74] TIMOCOM: Was ist ein Tautliner? | TIMOCOM Transportlexikon, 2023, https://www.timocom.de/lexicon/transportlexikon/tautliner [Zugriff am: 08.05.2023]. - [75] Saloodo!", - "embedding": [ - 0.023466650396585464, - 0.01027351338416338, - 0.025001851841807365, - -0.018477246165275574, - 0.0032314620912075043, - 0.007730836048722267, - -0.015530208125710487, - -0.017010580748319626, - -0.01816198229789734, - -0.03703673556447029, - 0.03155387192964554, - 0.02316509373486042, - -0.02095824107527733, - 0.006418375764042139, - -0.008985040709376335, - -0.007388157304376364, - 0.03330839052796364, - 0.016558244824409485, - 0.016571952030062675, - 0.011514010839164257, - -0.026304032653570175, - -0.0025272569619119167, - -0.0016225846484303474, - -0.005188158713281155, - -0.010232391767203808, - 0.016284100711345673, - 0.03662551939487457, - -0.019573818892240524, - -0.026523346081376076, - 0.002597506158053875, - 0.00632585259154439, - 0.001857319613918662, - -0.016325222328305244, - 0.014337684959173203, - -0.008052954450249672, - -0.008628654293715954, - 0.0048591867089271545, - -0.009800616651773453, - 0.016626780852675438, - -0.007799371611326933, - -0.00043263210682198405, - 0.00953332707285881, - 0.007120867725461721, - -0.03163611516356468, - -0.008546411991119385, - 0.012158247642219067, - 0.014378806576132774, - 0.0018556062132120132, - -0.007477253675460815, - 0.0016782699385657907, - 0.029278485104441643, - 0.021945156157016754, - -0.011877250857651234, - 0.01300123706459999, - -0.0047632367350161076, - -0.0094031086191535, - -0.007024917285889387, - 0.022260421887040138, - -0.015091578476130962, - -0.021095313131809235, - -0.0015720394439995289, - -0.01562615856528282, - -0.017161360010504723, - 0.01060248538851738, - -0.018778804689645767, - -0.021465405821800232, - -0.009670398198068142, - -0.0036975054536014795, - -0.023685965687036514, - -0.02295948565006256, - 0.014885971322655678, - 0.03185543045401573, - 0.008491583168506622, - -0.012740801088511944, - 0.02834639884531498, - -0.010472266934812069, - -0.007648593280464411, - 0.007072892505675554, - -0.038188137114048004, - 0.005626787431538105, - 0.018682854250073433, - -0.021479113027453423, - -0.025248581543564796, - 0.014858556911349297, - 0.006911833304911852, - -0.020314006134867668, - -0.000891821866389364, - 0.00908099114894867, - -0.04117629677057266, - -0.0011137063847854733, - 0.0019772571977227926, - 0.013069773092865944, - 0.0018436125246807933, - 0.010328342206776142, - 0.01202117558568716, - 0.011123357340693474, - -0.001580606447532773, - 0.02080746367573738, - -0.009656690992414951, - -0.03418564796447754, - -0.02726353332400322, - -0.006154512986540794, - 0.023014314472675323, - -0.006205915007740259, - -0.02834639884531498, - 0.0136454738676548, - 0.003180060302838683, - 0.0054691550321877, - 0.011801861226558685, - -0.02123238518834114, - -0.01598254404962063, - 0.015242357738316059, - -0.003120091278105974, - -0.0036563838366419077, - 0.02443986013531685, - -0.003985355608165264, - 0.03783174976706505, - -0.0017416655318811536, - -0.01494080014526844, - -0.029360728338360786, - 0.02293207123875618, - 0.022370079532265663, - 0.009677251800894737, - -0.016750143840909004, - 0.03944919630885124, - 0.028456056490540504, - -0.0006420945865102112, - -0.008724604733288288, - -0.00661027617752552, - -0.014707778580486774, - -0.02167101390659809, - 0.017421795055270195, - 0.00910840556025505, - 0.0162429790943861, - -0.0007436132291331887, - 0.01750403828918934, - -0.01603737287223339, - 0.01376198511570692, - -0.018093446269631386, - -0.04542551562190056, - 0.027345776557922363, - 0.026660418137907982, - -0.020382540300488472, - -0.015502793714404106, - -0.004399997182190418, - 0.04739934578537941, - 0.02058814838528633, - 0.014132077805697918, - -0.0009929121006280184, - -0.0013989865547046065, - -0.01733955182135105, - -0.0257557462900877, - 0.007007783744484186, - 0.00725793931633234, - -0.005606226623058319, - -0.0010211830958724022, - 0.016119616106152534, - 0.02117755636572838, - -0.026948269456624985, - 0.009581302292644978, - -0.004180682823061943, - 0.01049968134611845, - 0.011986907571554184, - 0.0015694693429395556, - 0.008443607948720455, - 0.013508401811122894, - -0.016366343945264816, - 0.0014461049577221274, - -0.014543292112648487, - -0.012781922705471516, - -0.013117748312652111, - 0.021259799599647522, - -0.012610583566129208, - -0.0014195473631843925, - -0.024494687095284462, - 0.023521479219198227, - 0.007518375292420387, - -5.0223876314703375e-05, - -0.01289158035069704, - -0.03350028768181801, - -0.020780049264431, - -0.00019222144328523427, - 0.007251085713505745, - 0.01945045404136181, - -0.008347658440470695, - 0.006514325737953186, - 0.024741416797041893, - 0.01330279465764761, - 0.004228657577186823, - -0.010671021416783333, - 0.012103418819606304, - 0.023315872997045517, - 0.01156883966177702, - -0.015502793714404106, - -0.6342574954032898, - -0.009355134330689907, - 0.008690336719155312, - 0.008135196752846241, - -0.012240489944815636, - 0.026674125343561172, - 0.007799371611326933, - 0.005537691060453653, - -0.021821793168783188, - 0.044493429362773895, - 0.0030224279034882784, - 0.014776314608752728, - -0.03092334419488907, - 0.009279744699597359, - -0.005849529057741165, - -0.02076634205877781, - -0.012370708398520947, - -0.006593142170459032, - 0.04029903933405876, - 0.011767593212425709, - -0.014323977753520012, - 0.03311648964881897, - 0.00025079812621697783, - 0.013028651475906372, - 0.01233644038438797, - 0.03270527347922325, - 0.04065542295575142, - -0.018477246165275574, - 0.015105285681784153, - -0.009923980571329594, - -0.030402472242712975, - 0.0024056059774011374, - -0.030594373121857643, - 0.012685973197221756, - 0.04306788370013237, - 0.007134574931114912, - -0.002672895323485136, - 0.01600995846092701, - 0.010677874088287354, - 0.03509031981229782, - -0.0009869151981547475, - -0.025166338309645653, - 0.0030104340985417366, - -0.015077871270477772, - -0.018545782193541527, - 0.026537053287029266, - 0.0601470023393631, - -0.02121867798268795, - 0.01147974282503128, - -0.03262303024530411, - -0.001074298401363194, - 0.013337062671780586, - 0.005959186237305403, - 0.0022411199752241373, - 0.02252085693180561, - -0.004670713562518358, - 0.04909903183579445, - -0.014104663394391537, - -0.02009469084441662, - 0.005164171103388071, - -0.0003204047679901123, - 0.02664671093225479, - -0.0002863510453607887, - -0.018024910241365433, - -0.022836122661828995, - 0.008244854398071766, - -0.01838129572570324, - -0.03739312291145325, - 0.016284100711345673, - 0.0033034246880561113, - -0.013378184288740158, - 0.007833640091121197, - -0.007888467982411385, - -0.010294074192643166, - 0.0307314433157444, - 0.02748284861445427, - 0.020492197945713997, - -0.0009517906582914293, - 0.014707778580486774, - 0.006353267002850771, - -0.015036750584840775, - 0.016928337514400482, - 0.010691581293940544, - -0.018463538959622383, - 0.017243601381778717, - -0.023274751380085945, - -0.005287535488605499, - 0.014228028245270252, - -0.010225538164377213, - -0.012219930067658424, - 0.0016611359314993024, - 0.0329245887696743, - 0.00909469835460186, - -0.03317131847143173, - -0.001440964755602181, - 0.02687973342835903, - -0.01583176478743553, - 0.01245295163244009, - 0.005523983854800463, - -0.03703673556447029, - -0.006199061404913664, - -0.010252952575683594, - 0.01728472299873829, - 0.003308564890176058, - 0.0139744458720088, - 0.012823044322431087, - -0.00984859187155962, - 0.006329279392957687, - 0.023548893630504608, - -0.015612450428307056, - 0.0018538928125053644, - -0.024316495284438133, - -0.004708407912403345, - -0.0242205448448658, - -0.0008382782689295709, - -0.027990013360977173, - 0.03032022900879383, - -0.011651082895696163, - -0.004119000397622585, - -0.014584413729608059, - -0.004800931550562382, - -0.010033638216555119, - 0.03243112936615944, - -0.018943289294838905, - -0.0024878487456589937, - 0.014584413729608059, - 0.0019052947172895074, - -0.004615884739905596, - -0.000764602271374315, - -0.014365099370479584, - 0.015173821710050106, - -0.008402486331760883, - 0.024124594405293465, - 0.003060122486203909, - 0.023028021678328514, - 0.009389402344822884, - 0.031279731541872025, - -0.01598254404962063, - 0.012288465164601803, - -0.02881244197487831, - -0.03070402890443802, - -0.013707156293094158, - 0.0144884642213583, - -0.024604344740509987, - -0.01684609428048134, - -0.03640620782971382, - -0.030676614493131638, - 0.004016196820884943, - 0.011020553298294544, - -0.01688721589744091, - -0.014735192991793156, - -0.010897189378738403, - -0.00606884341686964, - 0.02727724052965641, - -0.007943296805024147, - 0.0010785817867144942, - -0.029744528234004974, - -0.014200613833963871, - -0.009211208671331406, - -0.016585659235715866, - 0.024426152929663658, - 0.012158247642219067, - -0.04389031231403351, - 1.5206375792331528e-05, - -0.003851710818707943, - -0.014104663394391537, - 0.014200613833963871, - 0.0020286589860916138, - -0.020437369123101234, - -0.017778180539608, - 0.022781293839216232, - -0.008806847967207432, - 0.0010940023930743337, - 0.006408095359802246, - -0.012274757958948612, - 0.003618689253926277, - -0.011150771751999855, - 0.009444230236113071, - -0.0289769284427166, - -0.010849214158952236, - 0.0346791036427021, - -0.010862921364605427, - -0.022685343399643898, - 0.021163849160075188, - 0.026071010157465935, - 0.008046100847423077, - 0.013391891494393349, - 0.025385653600096703, - -0.022164471447467804, - 0.02528970316052437, - 0.0061133913695812225, - 0.023055436089634895, - -0.018079739063978195, - 0.030046086758375168, - -0.04128595441579819, - -0.003567287465557456, - -0.015283479355275631, - 0.009656690992414951, - 0.004739249125123024, - 0.024097179993987083, - 0.027811819687485695, - 0.007744543254375458, - 0.004845479503273964, - -0.013988153077661991, - 0.02294577844440937, - -0.012302172370254993, - 0.016380051150918007, - -0.01950528286397457, - 0.03295200318098068, - 0.023631136864423752, - 0.03155387192964554, - -0.01842241734266281, - -0.02723611891269684, - -0.0030858234968036413, - 0.007936443202197552, - 0.04498688504099846, - -0.011287842877209187, - 0.015612450428307056, - 0.01816198229789734, - 0.004886601120233536, - 0.0036975054536014795, - -0.002568378346040845, - 0.028264155611395836, - 0.0022668209858238697, - -0.01712023839354515, - -0.011109650135040283, - 0.008608094416558743, - 0.02574203908443451, - -0.012576315551996231, - -0.01691463030874729, - 0.00875201914459467, - 0.01577693596482277, - 0.0033222718629986048, - 0.012871019542217255, - 0.004931149538606405, - 0.009903420694172382, - 0.02036883309483528, - -0.0037728946190327406, - 0.03594016283750534, - 0.018011203035712242, - 0.007586910855025053, - 0.036296550184488297, - 0.017846716567873955, - 0.007408717647194862, - 0.024727709591388702, - -0.02076634205877781, - -0.00030327081913128495, - 0.03530963510274887, - -0.002532397164031863, - -0.0289769284427166, - -0.010444852523505688, - -0.006003734190016985, - -0.012617437168955803, - -0.01670902408659458, - 0.01354266982525587, - -0.010218684561550617, - 0.021986277773976326, - -0.014323977753520012, - -0.003037848509848118, - 0.0166816096752882, - 0.0027482847217470407, - 0.015543915331363678, - -0.002738004317507148, - -0.023946400731801987, - 0.002777412533760071, - 0.0016517123440280557, - -0.024604344740509987, - -0.025180045515298843, - -0.006942674517631531, - -0.013741424307227135, - -0.0026129265315830708, - -0.024152008816599846, - -0.0020817744079977274, - 0.013652327470481396, - 0.020519612357020378, - -0.005897503811866045, - 0.004262925591319799, - 0.027140168473124504, - 0.03125231713056564, - 0.009526473470032215, - -0.01969718374311924, - -0.01666790246963501, - 0.0036495302338153124, - 0.024289080873131752, - -0.018449831753969193, - -0.020944533869624138, - 0.006966662127524614, - 0.010410585440695286, - -0.031005587428808212, - -0.0056027998216450214, - -0.0017493758350610733, - 0.01968347653746605, - 0.0036975054536014795, - -0.013926470652222633, - 0.007107160519808531, - -0.012158247642219067, - 0.020314006134867668, - 0.014790021814405918, - -0.01525606494396925, - 0.004848906304687262, - -0.0017973508220165968, - -0.004283486399799585, - -0.0032845772802829742, - -0.010362610220909119, - 0.0018384723225608468, - -0.00027585652424022555, - -0.031910259276628494, - -0.015461672097444534, - 0.004304047208279371, - -0.01235014759004116, - -0.0011693917913362384, - -0.0017065409338101745, - -0.013666034676134586, - 0.010204977355897427, - -0.009855445474386215, - 0.005171024706214666, - 0.017366966232657433, - -0.014392513781785965, - 0.03437754884362221, - 0.02117755636572838, - -0.025262288749217987, - -0.016352636739611626, - -0.00983488466590643, - -0.0002957747201435268, - 0.0058358218520879745, - 0.03095075860619545, - 0.0047837975434958935, - 0.026907147839665413, - 0.0019961046054959297, - -0.006195634603500366, - 0.006476631388068199, - -0.025714624673128128, - 0.004420557990670204, - 0.005462301895022392, - -0.0005949762417003512, - -0.009053576737642288, - 0.01772335357964039, - -0.011034260503947735, - 0.027441726997494698, - -0.017175067216157913, - 0.013570084236562252, - -0.015447964891791344, - 0.025632381439208984, - -0.015598743222653866, - -0.017366966232657433, - -0.016571952030062675, - 0.00044719595462083817, - 0.0359949916601181, - -0.0008339947671629488, - -0.010629899799823761, - 0.013323355466127396, - 0.011753886006772518, - 0.018888460472226143, - -0.02210964262485504, - -0.01861431822180748, - 0.0225345641374588, - 0.023960107937455177, - 0.01417319942265749, - -0.025056680664420128, - -0.011740178801119328, - 0.006342986598610878, - -0.010842360556125641, - 0.011740178801119328, - 0.000612966890912503, - 0.01713394559919834, - 0.03977816551923752, - 0.012494072318077087, - -0.012288465164601803, - -0.002146883402019739, - -0.016942044720053673, - 0.003673517843708396, - 0.012165101245045662, - 0.004074451979249716, - -0.006911833304911852, - 0.021712135523557663, - -0.010856067761778831, - 0.0024775683414191008, - -0.010122735053300858, - 0.004197816364467144, - -0.017257308587431908, - 0.004622738342732191, - -0.034322720021009445, - -0.012370708398520947, - -0.011870397254824638, - -0.00821058638393879, - -0.010568217374384403, - 0.00481806555762887, - -0.009910273365676403, - -0.016791265457868576, - -0.022986900061368942, - -0.010952017270028591, - -0.015571328811347485, - -0.016722731292247772, - 0.018299052491784096, - 0.01840871013700962, - -0.025906525552272797, - -0.030183156952261925, - 0.000805723771918565, - 0.015489086508750916, - -0.01253519393503666, - 0.007066038902848959, - -0.010451706126332283, - -0.02404235117137432, - 0.010595631785690784, - -0.017805594950914383, - -0.016585659235715866, - -0.011788154020905495, - -0.03898315131664276, - -0.006901552900671959, - 0.020478490740060806, - -0.00845046155154705, - 0.0008489869651384652, - 0.009807470254600048, - 0.008834262378513813, - -0.005832395050674677, - 0.006521179340779781, - -0.011390646919608116, - -0.009560741484165192, - 0.0030498423147946596, - 0.0020098118111491203, - 0.012637997977435589, - 0.014029273763298988, - 0.01687350869178772, - -0.006555447354912758, - 0.004944856744259596, - -0.018518367782235146, - -0.009992516599595547, - -0.014001860283315182, - 0.016311515122652054, - 0.00471526151522994, - -0.0023010887671262026, - 0.0006862144800834358, - 0.009355134330689907, - 0.0070112100802361965, - -0.010342049412429333, - -0.002559811342507601, - -0.004101866390556097, - 0.004931149538606405, - -0.0017193914391100407, - 0.0004998828517273068, - 0.024522101506590843, - 0.02013581246137619, - 0.017682231962680817, - -0.006274450570344925, - -0.020505905151367188, - -0.012871019542217255, - 0.030676614493131638, - 0.0056713358499109745, - -0.004550775978714228, - 0.037749506533145905, - -0.030183156952261925, - 0.015064164064824581, - -0.021136434748768806, - 0.00950591266155243, - 0.0160236656665802, - 0.00951961986720562, - 0.001877880422398448, - 0.002325076377019286, - -0.02271275781095028, - -0.01865543983876705, - 0.013474134728312492, - 0.004410277586430311, - -0.03552894666790962, - 0.005955759435892105, - -0.0019532698206603527, - 0.00929345190525055, - -0.005393765866756439, - 0.010801238939166069, - 0.004821492359042168, - -0.027880355715751648, - -0.010958870872855186, - 0.01374827791005373, - -0.01973830536007881, - 0.029278485104441643, - -0.012254197150468826, - 0.007107160519808531, - 0.002667755354195833, - 0.0010897188913077116, - -0.019957618787884712, - -0.046220529824495316, - -0.0024381603579968214, - -0.012500925920903683, - 0.023096557706594467, - 0.010609338991343975, - 0.0345420315861702, - -0.008114635944366455, - 0.004646725952625275, - 0.016571952030062675, - -0.005020245909690857, - 0.0010614478960633278, - -0.030375057831406593, - -0.005160744301974773, - -0.01883363164961338, - 0.022205593064427376, - 0.0008112923242151737, - 0.0075526428408920765, - 0.011431768536567688, - 0.03133456036448479, - 0.010115881450474262, - 0.037612434476614, - -0.003591274842619896, - -0.006260743364691734, - -0.00842304714024067, - -0.035172563046216965, - -0.03251337260007858, - 0.014981921762228012, - 0.004393143579363823, - 0.006312145385891199, - -0.02189032733440399, - -0.01287787314504385, - 0.015324600040912628, - -0.0019669767934828997, - -0.005643921438604593, - -0.02010839805006981, - 0.008306536823511124, - -0.04304046928882599, - 0.03763984888792038, - 0.009060430340468884, - -0.015160114504396915, - -0.023206215351819992, - -0.016119616106152534, - -0.011774446815252304, - -0.030018672347068787, - 0.010444852523505688, - 0.0037591876462101936, - 0.021479113027453423, - -0.0016191578470170498, - -0.016338929533958435, - -0.00029448966961354017, - -0.0053046694956719875, - 0.003889405634254217, - -0.01286416593939066, - 0.0027705589309334755, - -0.008368218317627907, - -0.02401493676006794, - -0.02726353332400322, - -0.009821177460253239, - -0.03328097611665726, - 0.02016322687268257, - 0.0031834871042519808, - 0.0026026463601738214, - 0.019354503601789474, - -0.01750403828918934, - -0.017901545390486717, - -0.0033959478605538607, - -0.007723982445895672, - 0.03273268789052963, - 0.025152631103992462, - 0.04802987352013588, - 0.04054576903581619, - -0.01799749583005905, - -0.011753886006772518, - -0.04893454536795616, - 0.007285353261977434, - -0.005983173381537199, - 0.010664167813956738, - -0.02139686979353428, - -0.014721485786139965, - 0.00078516302164644, - 0.022246714681386948, - 0.0032503092661499977, - -0.014419928193092346, - -0.006918686907738447, - 0.04435635730624199, - 0.023946400731801987, - -0.005558251868933439, - -0.012521486729383469, - 0.0031577860936522484, - -0.024097179993987083, - -0.0016885502263903618, - -0.0029161975253373384, - -0.00676448130980134, - -0.018312759697437286, - -0.02271275781095028, - 0.0011676783906295896, - 0.04608345776796341, - 0.021342042833566666, - 0.03637879341840744, - 0.020286591723561287, - -0.02183550037443638, - 0.017695939168334007, - -0.02120497077703476, - -0.00676448130980134, - 0.010218684561550617, - -0.016338929533958435, - 0.028922099620103836, - -0.01732584461569786, - 0.0009123825584538281, - 0.008388779126107693, - 0.0063738273456692696, - -0.005787846632301807, - 0.0020526465959846973, - -0.004341741558164358, - 0.021972570568323135, - -0.030594373121857643, - 0.0023387835826724768, - 0.02117755636572838, - -0.015297186560928822, - -0.004129280801862478, - -0.002744857920333743, - 0.0015223510563373566, - -0.01114391814917326, - 0.007929589599370956, - -0.00983488466590643, - 0.007936443202197552, - 0.018011203035712242, - -0.004095012787729502, - -0.006730213761329651, - -0.020464783534407616, - -2.4897763069020584e-05, - -0.012274757958948612, - -0.020053569227457047, - -0.0042423647828400135, - -0.040161967277526855, - -0.0035775676369667053, - -0.006360120605677366, - 0.008491583168506622, - 0.026290325447916985, - -0.01373457070440054, - -0.01838129572570324, - -0.024508394300937653, - 0.014351392164826393, - -0.02768845483660698, - 0.016325222328305244, - 0.03382926061749458, - -0.017243601381778717, - -0.031087830662727356, - 0.011822422035038471, - 0.013768837787210941, - -0.00863550789654255, - 0.01684609428048134, - 0.0017408088315278292, - -0.008704043924808502, - -0.000897818710654974, - -0.002316509373486042, - 0.026331447064876556, - -0.01776447333395481, - -0.011692204512655735, - -0.005088781472295523, - 0.023740794509649277, - 0.018573196604847908, - -0.005253267474472523, - -0.0006429512868635356, - -0.009889713488519192, - 0.005849529057741165, - 0.0062024882063269615, - 0.010705288499593735, - -0.021163849160075188, - 0.024727709591388702, - 0.003567287465557456, - -0.001086292089894414, - -0.00421837717294693, - -0.04660433158278465, - -0.012082858011126518, - 0.0231925081461668, - 0.005434887483716011, - -0.020039862021803856, - 0.01495450735092163, - -0.023877866566181183, - -0.027181290090084076, - -0.0015420550480484962, - 0.021328335627913475, - -0.0021571635734289885, - 0.0052258530631661415, - 0.014885971322655678, - 0.013008090667426586, - 0.0077171288430690765, - 0.035830505192279816, - 0.017435502260923386, - -0.019231140613555908, - 0.02513892389833927, - 0.0017151079373434186, - -0.02508409507572651, - -0.0027499981224536896, - 0.005102488677948713, - 0.020492197945713997, - 0.009814323857426643, - -0.03478876128792763, - -0.023932693526148796, - 0.021533941850066185, - -0.012055443599820137, - -0.006257316563278437, - 0.0016020238399505615, - 0.010999992489814758, - 0.017695939168334007, - 0.030813686549663544, - -0.018449831753969193, - 0.02095824107527733, - 0.020259177312254906, - 0.019820546731352806, - -0.018532074987888336, - -0.021081605926156044, - -0.0069872229360044, - -0.022685343399643898, - 0.005095635075122118, - -0.008381925523281097, - -0.041889067739248276, - 0.009341427125036716, - 0.02058814838528633, - -0.00281682051718235, - 0.009259183891117573, - 0.036488451063632965, - -0.015639865770936012, - -0.02378191612660885, - 0.013823666609823704, - 0.0011522577842697501, - -0.0026951695326715708, - -0.008512143976986408, - 0.002486135344952345, - -0.03977816551923752, - 0.006493765395134687, - 0.011671643704175949, - -0.0004634732031263411, - -0.024069765582680702, - -0.007251085713505745, - 0.02726353332400322, - -0.007203110493719578, - 0.016626780852675438, - 0.020231762900948524, - -0.013837373815476894, - 0.015118992887437344, - -0.0005889793392270803, - 0.04526102915406227, - 0.008943919092416763, - -0.022356372326612473, - -0.0024690015707165003, - 0.015585036017000675, - 0.0008926785085350275, - -0.020629270002245903, - -0.007580057252198458, - -0.032814931124448776, - 0.0030961039010435343, - 0.009773202240467072, - -0.012583169154822826, - 0.027112754061818123, - -0.026975683867931366, - 0.018956996500492096, - 0.004622738342732191, - -0.011829275637865067, - -0.05025043338537216, - -0.019971325993537903, - -0.032787516713142395, - 0.0225345641374588, - 0.028922099620103836, - -0.029333313927054405, - 0.006637690123170614, - -0.016777558252215385, - -0.017805594950914383, - -0.004355448763817549, - -0.025837989524006844, - -0.009046723134815693, - -0.01838129572570324, - -0.016763851046562195, - -0.012103418819606304, - 0.003130371682345867, - -0.011287842877209187, - -0.01265170518308878, - -0.02228783629834652, - -0.020231762900948524, - -0.020245470106601715, - 0.17040736973285675, - -0.03986040875315666, - 0.003995636012405157, - -0.005338937044143677, - -0.02209593541920185, - -0.02859312668442726, - 0.03221181780099869, - 0.00249298894777894, - 0.012528340332210064, - 0.012494072318077087, - 0.014570706523954868, - 0.009457937441766262, - -0.015064164064824581, - 0.0020098118111491203, - 0.012583169154822826, - -0.015214943327009678, - -0.035611189901828766, - -0.026454811915755272, - 0.0027071633376181126, - 0.008320244029164314, - 0.025700917467474937, - -0.013755131512880325, - -0.00633955979719758, - -0.010204977355897427, - 0.03509031981229782, - 0.016366343945264816, - -0.004043611232191324, - 0.0063943881541490555, - 0.02596135437488556, - 0.031115245074033737, - -0.016188152134418488, - -0.013953885063529015, - 0.018874753266572952, - -0.009122112765908241, - -0.013563230633735657, - 0.007744543254375458, - 0.003831150010228157, - -0.001847039326094091, - 0.03552894666790962, - 0.03341804817318916, - -0.0005272971466183662, - -0.032760102301836014, - -0.00680902972817421, - -0.03114265762269497, - 0.015338307246565819, - 0.014447342604398727, - -0.018559489399194717, - 0.008142050355672836, - 0.006959808524698019, - 0.0076828608289361, - -0.0133165018633008, - 0.018134567886590958, - 0.020053569227457047, - 0.04696071520447731, - 0.0029367581009864807, - -0.010109027847647667, - -0.0032537360675632954, - -0.008196879178285599, - 0.004393143579363823, - 0.010157003067433834, - -0.0428759828209877, - 0.01754515990614891, - -0.006747347768396139, - 0.016571952030062675, - 0.0010366037022322416, - 0.011013699695467949, - -0.006147659383714199, - 0.009807470254600048, - -0.006144232582300901, - -0.030237985774874687, - -0.006264170166105032, - -0.01684609428048134, - -0.02707163244485855, - 0.015968836843967438, - -0.02079375647008419, - -0.03440496325492859, - 0.030457301065325737, - 0.009841738268733025, - 0.024618051946163177, - 0.03574826195836067, - 0.002011525211855769, - -0.0017750767292454839, - -0.008375071920454502, - -0.02297319285571575, - -0.012857312336564064, - -0.016791265457868576, - 0.025385653600096703, - 0.013912763446569443, - 0.010218684561550617, - -0.010561363771557808, - -0.02493331767618656, - 0.004280059598386288, - -0.008429900743067265, - -0.004557629581540823, - 0.00621962221339345, - -0.013467281125485897, - 0.00974578782916069, - -0.011082235723733902, - -0.023425528779625893, - 0.004413704387843609, - -0.01710653118789196, - 0.042958226054906845, - 0.029744528234004974, - -0.02232895791530609, - 0.016311515122652054, - -0.011349525302648544, - 0.00632585259154439, - 0.019190018996596336, - -0.0007825929205864668, - -0.013282233849167824, - -0.013775691390037537, - -0.031279731541872025, - 0.030621785670518875, - -0.018038617447018623, - 0.016517123207449913, - 0.02036883309483528, - 0.003226321889087558, - -0.0047632367350161076, - -0.003216041484847665, - -0.006089404225349426, - -0.0012413542717695236, - -0.008464168757200241, - 0.01733955182135105, - 0.006545166950672865, - 0.017024287953972816, - -0.03456944599747658, - -0.049428004771471024, - 0.007943296805024147, - -0.0094031086191535, - 0.01254890114068985, - 0.011760739609599113, - -0.006500618532299995, - 0.029305899515748024, - -0.0037214928306639194, - 0.008032393641769886, - 0.0037317732349038124, - -0.0033753872849047184, - -0.020615562796592712, - -0.0006258173380047083, - 0.0024347335565835238, - 0.018956996500492096, - -0.013021797873079777, - -1.2663056622841395e-05, - 0.0014126937603577971, - 0.0014786594547331333, - -0.004814638756215572, - 0.01644858717918396, - -0.0046775671653449535, - -0.03053954429924488, - -0.024823660030961037, - -0.008299683220684528, - -0.017408087849617004, - -0.010581924580037594, - -0.02076634205877781, - 0.007182549685239792, - 0.015722107142210007, - -0.021931448951363564, - -0.01950528286397457, - 0.009053576737642288, - 0.019231140613555908, - -0.019546404480934143, - -0.01625668630003929, - 0.022027399390935898, - -0.033637359738349915, - -0.005266974680125713, - -0.012603729963302612, - -0.17599987983703613, - 0.0066582509316504, - 0.011233014054596424, - -0.007504668086767197, - 0.0004349880327936262, - -0.0011616814881563187, - 0.00897818710654974, - 0.010294074192643166, - -0.02227412909269333, - -0.013158869929611683, - -0.0037831750232726336, - 0.006874138955026865, - -0.024508394300937653, - -0.017462916672229767, - -0.021465405821800232, - -0.005630214232951403, - -0.019834253937005997, - 0.04671398922801018, - 0.02661929652094841, - 0.01625668630003929, - 0.01642117276787758, - -0.020944533869624138, - 0.021150141954421997, - 0.012418683618307114, - -0.0038859788328409195, - 0.015091578476130962, - -0.02291836403310299, - 0.02815449796617031, - -0.023494064807891846, - -0.025166338309645653, - -0.011609961278736591, - 0.0032794370781630278, - 0.014817435294389725, - 0.004016196820884943, - -0.01884733885526657, - -0.003226321889087558, - 0.00525669427588582, - -0.00984859187155962, - -0.005493142642080784, - 0.018120860680937767, - 0.020670391619205475, - 0.0316087007522583, - -0.014981921762228012, - 0.01927226223051548, - -0.014001860283315182, - 0.025714624673128128, - 0.018340174108743668, - -0.012034882791340351, - -0.012843605130910873, - -0.02095824107527733, - -0.00298130651935935, - -0.021163849160075188, - 0.004461679141968489, - 0.0054691550321877, - -0.006504045333713293, - 0.006853578146547079, - 0.00822429358959198, - 0.005650775041431189, - 0.0015746095450595021, - 0.010568217374384403, - -0.02486478164792061, - -0.012130833230912685, - -0.0002722155477385968, - -0.004379436373710632, - -0.006963235326111317, - -0.016119616106152534, - -0.0004268494085408747, - 0.0027260107453912497, - -0.010095320641994476, - -0.0119252260774374, - -0.004376009572297335, - 0.0007534652249887586, - 0.012692826800048351, - -0.009512766264379025, - -0.0018024910241365433, - 0.01581805758178234, - -0.01838129572570324, - 0.0024261665530502796, - -0.006480058189481497, - 0.003351399675011635, - -0.011109650135040283, - 0.03763984888792038, - 0.003779748221859336, - -0.0074566928669810295, - -0.01625668630003929, - -0.011095942929387093, - -0.015639865770936012, - 0.014090956188738346, - -0.004591897130012512, - 0.0037626144476234913, - 0.010999992489814758, - -0.011226160451769829, - -0.01713394559919834, - -0.019847961142659187, - 0.019546404480934143, - -0.015886593610048294, - -0.016969459131360054, - 0.007648593280464411, - -0.010554510168731213, - -0.0094031086191535, - -0.0012310739839449525, - -0.02035512588918209, - -0.023644844070076942, - 0.010335195809602737, - 0.007902175188064575, - 0.009588155895471573, - -0.02119126357138157, - 0.008793140761554241, - 0.04325978457927704, - -0.02206852100789547, - -0.020738927647471428, - -0.01072584930807352, - 0.01115762535482645, - -0.00616136658936739, - -0.008368218317627907, - 0.004657006356865168, - -0.004091585986316204, - -0.026564467698335648, - 0.01664048805832863, - -0.0028408081270754337, - 0.05784419924020767, - -0.015639865770936012, - 0.021753257140517235, - 0.00899189431220293, - -0.02209593541920185, - -0.025837989524006844, - -0.0734703540802002, - 0.005568532273173332, - 0.018682854250073433, - 0.021342042833566666, - 0.0056336410343647, - 0.011493450030684471, - -0.0012327873846516013, - 0.004396570380777121, - 0.005191585514694452, - 0.05049716308712959, - -0.01794266700744629, - -0.017421795055270195, - -0.016736436635255814, - 0.001857319613918662, - 0.026674125343561172, - -0.02082117088139057, - 0.007285353261977434, - -0.03117007203400135, - -0.03177318722009659, - 0.018038617447018623, - -0.01576322875916958, - 0.010568217374384403, - -0.008285976015031338, - -0.01428285613656044, - -0.008244854398071766, - -0.017147652804851532, - -0.03829779475927353, - 0.021067898720502853, - 0.018956996500492096, - -0.025837989524006844, - 0.01200746838003397, - -0.025193752720952034, - 0.010033638216555119, - -0.022383784875273705, - -0.015160114504396915, - -0.017421795055270195, - -0.009766348637640476, - -0.015489086508750916, - 0.025591259822249413, - -0.012960116378962994, - -0.01048597414046526, - 0.018107153475284576, - 0.008923358283936977, - -0.02701680362224579, - -0.017586281523108482, - -0.023768208920955658, - -0.01526977214962244, - 0.03155387192964554, - 0.034322720021009445, - -0.0005619933945126832, - -0.01286416593939066, - -0.024343909695744514, - -0.018271638080477715, - -0.007497814483940601, - 0.04698812961578369, - 0.010979431681334972, - -0.022411199286580086, - 0.0018556062132120132, - -0.015516500920057297, - -0.009012455120682716, - -0.025042973458766937, - 0.03728346526622772, - -0.022849829867482185, - 0.0011368372943252325, - 0.007490960881114006, - 0.001773363328538835, - -0.018874753266572952, - -0.019628647714853287, - 0.009499059058725834, - -0.0007847346714697778, - -0.020944533869624138, - 0.0071962568908929825, - 0.009923980571329594, - 0.021588770672678947, - -0.011726471595466137, - 0.0040573179721832275, - -0.038818664848804474, - -0.004403423983603716, - 0.009457937441766262, - -0.005729591008275747, - -0.005695323459804058, - -0.026482226327061653, - 0.015132700093090534, - -0.023644844070076942, - 0.021766964346170425, - 0.018559489399194717, - -0.008395632728934288, - 0.007655446417629719, - 0.02990901470184326, - -0.02204110659658909, - -0.0013912763679400086, - 0.009067283943295479, - 0.025234874337911606, - -0.014968214556574821, - -0.020218055695295334, - 0.010993138886988163, - 0.007333328481763601, - -0.023672258481383324, - 0.034487202763557434, - 0.03075885772705078, - -0.015845471993088722, - -0.01836758852005005, - -0.05252582207322121, - 0.024782538414001465, - 0.02834639884531498, - -0.0029281910974532366, - -0.018669147044420242, - -0.0009603576036170125, - -0.010102174244821072, - 0.017654817551374435, - 0.014406220987439156, - 0.006157939787954092, - -0.014132077805697918, - 0.02293207123875618, - -0.017353259027004242, - -0.01461182814091444, - -0.03144421428442001, - -0.0279488917440176, - 0.012096565216779709, - 0.019560111686587334, - 0.00030348499421961606, - 0.011541425250470638, - 0.009690959006547928, - 0.008704043924808502, - -0.010986285284161568, - 0.026482226327061653, - -0.009656690992414951, - 0.007251085713505745, - -0.01949157565832138, - -0.004365729168057442, - 0.0021554501727223396, - -0.008587533608078957, - 0.011760739609599113, - -0.010444852523505688, - 0.0005697036976926029, - 0.02383674494922161, - 0.002345637185499072, - -0.024823660030961037, - 0.021040484309196472, - 0.008683483116328716, - 0.02312397211790085, - 0.058118343353271484, - -0.0291962418705225, - -0.021698428317904472, - -0.012028029188513756, - -0.017641110345721245, - -0.004201243165880442, - 0.0075526428408920765, - 0.029388142749667168, - 0.02145169861614704, - 0.02010839805006981, - -0.015516500920057297, - 0.036296550184488297, - 0.01925855502486229, - -0.0030018670950084925, - -0.01451587863266468, - 0.01189781166613102, - 0.01647600159049034, - 0.013008090667426586, - 0.009738934226334095, - 0.03415823355317116, - -0.009553887881338596, - 0.04671398922801018, - 0.021492820233106613, - 0.009656690992414951, - -0.005801553837954998, - 0.006997503340244293, - -0.0100610526278615, - -0.027003098279237747, - -0.011726471595466137, - -0.02101306989789009, - -0.03286975994706154, - -0.006504045333713293, - -0.005352644249796867, - 0.011863543651998043, - 0.03506290540099144, - -0.004403423983603716, - -0.026537053287029266, - -0.0009672112064436078, - -0.0019292822107672691, - -0.002486135344952345, - 0.011836129240691662, - 0.013679741881787777, - 0.010972578078508377, - 0.006997503340244293, - 0.006411522161215544, - 0.03547412157058716, - -0.0016714163357391953, - -0.02380933053791523, - -0.0009929121006280184, - -0.004927722737193108, - 0.0038277232088148594, - -0.002350777154788375, - 0.006798749323934317, - -0.004163548815995455, - -0.0009783483110368252, - 0.01775076799094677, - 0.009684105403721333, - 0.006706226151436567, - -0.007833640091121197, - 0.0406828373670578, - 0.03728346526622772, - 0.018436124548316002, - -0.007861053571105003, - -0.013453573919832706, - -0.025604967027902603, - -0.005523983854800463, - 0.022370079532265663, - -0.02206852100789547, - -0.03857193887233734, - 0.00866292230784893, - 0.025042973458766937, - 0.001961836591362953, - -0.0024038925766944885, - -0.014543292112648487, - -0.0026009329594671726, - -0.006853578146547079, - 0.0031286582816392183, - -0.025495309382677078, - -0.0238504521548748, - -0.04526102915406227, - 0.025632381439208984, - 0.016393758356571198, - 0.0068227369338274, - 0.002777412533760071, - 0.006247036159038544, - 0.018024910241365433, - -0.015900300815701485, - 0.029963843524456024, - -0.014132077805697918, - 0.011514010839164257, - -0.022123349830508232, - 0.003889405634254217, - -0.006507472135126591, - -0.02815449796617031, - -0.020930826663970947, - -0.020684098824858665, - 0.011527718044817448, - 0.02792147733271122, - 0.001638005138374865, - 0.024563223123550415, - 0.12128091603517532, - 0.03267785906791687, - -0.003704358823597431, - 0.03155387192964554, - -0.013995006680488586, - 0.013138309121131897, - 0.0033102782908827066, - 0.006209341809153557, - 0.01429656334221363, - -0.05323859304189682, - 0.0036700910422950983, - -0.018463538959622383, - 0.019614940509200096, - -0.031910259276628494, - -0.0060277217999100685, - 0.009286598302423954, - 0.007628032471984625, - 0.03007350116968155, - -0.03827038034796715, - 0.010369463823735714, - 0.03947661072015762, - -0.008244854398071766, - 0.0035535802599042654, - 0.030018672347068787, - -0.021081605926156044, - -0.008697190321981907, - 0.00605513621121645, - -0.007696568034589291, - -0.0006677954806946218, - -0.020259177312254906, - -0.0023559173569083214, - 0.01707911677658558, - -0.05351273715496063, - -0.032129574567079544, - 0.009595009498298168, - -0.04114888235926628, - -0.0014606688637286425, - -0.028291570022702217, - 0.015406843274831772, - 0.0014486750587821007, - 0.00031333701917901635, - 0.019793134182691574, - -0.013083480298519135, - -0.016750143840909004, - 0.021766964346170425, - -0.02426166646182537, - -0.005287535488605499, - -0.013508401811122894, - -0.006980369333177805 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 45, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 262 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000046.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000046.json deleted file mode 100644 index 10e643f2698562d77fb6606c7a1cc5dbb64052ce..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000046.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000046", - "content": "| TIMOCOM Transportlexikon, 2023, https://www.timocom.de/lexicon/transportlexikon/tautliner [Zugriff am: 08.05.2023]. - [75] Saloodo! : Was ist eine Wechselbr\u00fccke? Definitionen & Erkl\u00e4rungen | Saloodo!, 2023, https://www.saloodo.com/de/logistik-lexikon/wechselbruecke/ [Zugriff am: 08.05.2023]. - [76] Yumpu.com: Speditions 1x1.indd - Gebr\u00fcder Weiss. Yumpu.com, 2013, https://www.yumpu.com/de/document/view/18328821/speditions-1x1indd-ge- bruder-weiss [Zugriff am: 15.05.2023]. ## VI\n\nAbschlie\u00dfende Bewertung und Ausblick\n- [77] Crown Equipment Corporation (Hrsg. ): Gabelhubwagen mit klappbarer Plattform oder Bedienerstand WT 3000 Spezifikationen, Deutschland, 11/21. - [78] Crown Equipment Corporation (Hrsg. ): Gabelstapler SC 6200 \u2013 Spezifikatio- nen Elektro-Gegengewichtsstapler 48 V (Dreirad-/Vierradausf\u00fchrung), Deutsch- land, 02/22. - [79] BG Bau: Frequenzbewertung, Spitzen- und Dauerschallpegel, 2023, https://www.bgbau.de/themen/sicherheit-und-gesundheit/laerm-und-vibratio- nen/frequenzbewertung-spitzen-und-dauerschallpegel [Zugriff am: 15.05.2023]. - [80] Norsonic: Bedienungsanleitung Nor140 Schallanalysator Norsonic. Norsonic, Nor- wegen, 2011. - [81] Norsonic: Betriebsanleitung Akustische Kalibrator Typ 1251 Klasse 1. Norsonic, Norwegen. - [82] DAkkS Deutsche Akkreditierungsstelle: Was ist Akkreditierung? - DAkkS - Deutsche Akkreditierungsstelle, 2023, https://www.dakks.de/de/was-ist-akkreditie- rung.html [Zugriff am: 15.05.2023]. - [83] Norsonic Brechb\u00fchl AG: NorReview - Auswertung von Umweltmessungen - Aus- wertungs- / \u00dcbertragungssoftware - Norsonic Brechb\u00fchl AG, 2023, https://www.norsonic.ch/produkte/auswertungssoftware/norreview/ [Zugriff am: 17.05.2023]. - [84] LUMITOS AG: Fernfeld, 2023, https://www.chemie.de/lexikon/Fernfeld.html [Zu- griff am: 23.05.2023]. - [85] ISO 9613-2: D\u00e4mpfung des Schalls bei der Ausbreitung im Freien Teil 2: Allgemei- nes Berechnungsverfahren. Ausgabe Oktober 1999. - [86] VDI 2714: Schallausbreitung im Freien. Ausgabe Januar 1986. - [87] Lohninger, H.: Zuf\u00e4llige und systematische Fehler, 2021, http://www.statis- tics4u.info/fundstat_germ/ee_precision_accuracy.html [Zugriff am: 01.06.2023]. - [88] Thode, J.: Aus dem Laboralltag \u2013 Systematische und zuf\u00e4llige Fehler, 2023, https://mpl.loesungsfabrik.de/blog/methodenvalidierung/fehlerarten [Zugriff am: 01.06.2023].", - "embedding": [ - 0.008163638412952423, - -0.013748927973210812, - 0.024695007130503654, - -0.0035749932285398245, - 0.011850881390273571, - -0.012150214985013008, - -0.017687883228063583, - -0.015034700743854046, - -0.00494920602068305, - -0.03344370424747467, - 0.028654370456933975, - 0.023497672751545906, - -0.011245411820709705, - 0.0017806936521083117, - 0.0038743268232792616, - -0.0086058359593153, - 0.024939915165305138, - 0.014245549216866493, - 0.0117896543815732, - -0.0167490653693676, - -0.02605561353266239, - -0.013864579610526562, - -0.005388001445680857, - 0.004367546644061804, - -0.022640490904450417, - 0.016027944162487984, - 0.018286550417542458, - -0.02666788548231125, - -0.014449640177190304, - 0.00955145712941885, - 0.0033130766823887825, - 0.011122957803308964, - -0.014041458256542683, - 0.009020820260047913, - 0.0032331410329788923, - -0.025266461074352264, - -0.008190850727260113, - -0.027606703341007233, - 0.016476944088935852, - -0.0193342175334692, - 0.011891700327396393, - 0.029443522915244102, - -0.005826796870678663, - -0.004939001053571701, - -0.0022569058928638697, - 0.015252397395670414, - -0.0009328657761216164, - -0.006217971444129944, - -0.0032195348758250475, - 0.023157520219683647, - 0.030885765329003334, - 0.029497947543859482, - -0.010810017585754395, - 0.012054972350597382, - -0.007075153291225433, - 0.006333622615784407, - -0.0014056764775887132, - 0.016653822734951973, - 0.008626244962215424, - -0.004098827019333839, - -0.005881221033632755, - -0.004285910166800022, - -0.03654588758945465, - 0.01708921603858471, - -0.02283097617328167, - -0.023552097380161285, - -0.005422016605734825, - -0.003683841787278652, - -0.00869427528232336, - 0.0029865310061722994, - 0.029525158926844597, - 0.02827340178191662, - 0.02088530920445919, - -0.0041532511822879314, - 0.03891334310173988, - -0.018789974972605705, - -0.013592458330094814, - 0.005683933384716511, - -0.040872614830732346, - -0.004649872425943613, - 0.028926491737365723, - -0.03578395023941994, - -0.03885892033576965, - 0.017238883301615715, - 0.03374303877353668, - 0.005473039112985134, - -0.0022347960621118546, - -0.005534266587346792, - -0.007687426172196865, - 0.00494920602068305, - 0.005234932992607355, - 0.027838006615638733, - -0.016667429357767105, - 0.023320794105529785, - 0.03706291690468788, - -0.0040273950435221195, - 0.0020409096032381058, - 0.02534809708595276, - -0.019837642088532448, - -0.024450097233057022, - -0.012524382211267948, - -0.008646653965115547, - 0.009238517843186855, - -0.002426981693133712, - -0.029933340847492218, - -0.01123860850930214, - -0.002564743161201477, - 0.01944306492805481, - 0.008741896599531174, - -0.030014976859092712, - -0.014463245868682861, - 0.022967036813497543, - -0.007660213857889175, - -0.004466190468519926, - 0.03074970468878746, - -0.01710282266139984, - 0.021579217165708542, - -0.0212254598736763, - 0.005530864931643009, - -0.039321526885032654, - 0.021497581154108047, - 0.012592412531375885, - 0.003243345534428954, - -0.020164186134934425, - 0.019198156893253326, - 0.022354763001203537, - 0.0018623300129547715, - 0.007388092577457428, - -0.00577917555347085, - -0.009354169480502605, - -0.013143457472324371, - -0.005768971052020788, - 0.010109305381774902, - 0.022803762927651405, - 0.0010706271277740598, - 0.003653228282928467, - -0.01281691249459982, - 0.018490640446543694, - -0.02748424932360649, - -0.04212437570095062, - 0.024137157946825027, - 0.01812327653169632, - -0.02322555147111416, - -0.012769291177392006, - 0.005255342461168766, - 0.029334673658013344, - 0.0015349341556429863, - 0.008122820407152176, - 0.007122774608433247, - -0.0007134680054150522, - -0.0018929436337202787, - -0.008952789939939976, - 0.007986759766936302, - -0.00940859317779541, - 0.019633550196886063, - 0.01680348999798298, - 0.030368734151124954, - 0.021606430411338806, - -0.0033266826067119837, - 0.0005225578788667917, - -0.00702753197401762, - 0.00040711896144784987, - 0.016885126009583473, - -0.005054652690887451, - 0.028491098433732986, - 0.012959776446223259, - -0.007598986849188805, - -0.027225734665989876, - 0.01560615561902523, - -0.007857502438127995, - -0.02197379432618618, - 0.01617760956287384, - -0.013524428009986877, - 0.015238791704177856, - -0.02299424819648266, - 0.016422519460320473, - 0.026246096938848495, - -0.00817724410444498, - -0.024001097306609154, - -0.034450553357601166, - -0.009476623497903347, - 0.010048078373074532, - 0.025783492252230644, - 0.013211487792432308, - -0.02036827802658081, - -0.02347046136856079, - 0.022395581007003784, - 0.010633138939738274, - 0.010891654528677464, - 0.010803215205669403, - -0.005017236340790987, - 0.04187946394085884, - 0.009034426882863045, - -0.013408776372671127, - -0.6243550777435303, - -0.0021820724941790104, - -0.01227947324514389, - -0.01738855056464672, - 0.009980048052966595, - 0.04250534251332283, - 0.018096065148711205, - 0.00037352897925302386, - -0.024395672604441643, - 0.032953888177871704, - -0.0050308420322835445, - 0.015810245648026466, - -0.0038845313247293234, - 0.00906163826584816, - -0.0028776824474334717, - -0.030994614586234093, - 0.00487777404487133, - -0.004660076927393675, - 0.05295480042695999, - 0.005255342461168766, - -0.00513288751244545, - 0.028137341141700745, - -0.012000548653304577, - 0.006418660748749971, - 0.014000640250742435, - -0.009313350543379784, - 0.027212128043174744, - -0.010993699543178082, - 0.00017092618509195745, - -0.01431357953697443, - -0.019347822293639183, - 0.003694046288728714, - -0.012565200217068195, - 0.0026582847349345684, - 0.05243777111172676, - 0.018776368349790573, - -0.011225002817809582, - 0.00593904685229063, - 0.021143823862075806, - 0.01560615561902523, - -0.000781923474278301, - -0.02174249105155468, - -0.011925715021789074, - -0.01434079185128212, - 0.0022773148957639933, - 0.01951109617948532, - 0.05494128540158272, - -0.010571911931037903, - -0.003258652286604047, - -0.05072340741753578, - 0.019252581521868706, - -0.002321534790098667, - -0.003406618256121874, - 0.020844489336013794, - 0.014762579463422298, - 0.006316615268588066, - 0.052519407123327255, - -0.014762579463422298, - 0.002950815251097083, - -0.003986576572060585, - 0.0018640307243913412, - 0.021239066496491432, - 0.0074289110489189625, - -0.013395169749855995, - -0.04272304102778435, - 0.021592823788523674, - -0.016708247363567352, - -0.014667336829006672, - 0.026980824768543243, - 0.009878002107143402, - -0.01428636722266674, - 0.006888070143759251, - -0.0032144326251000166, - 0.0006390598136931658, - 0.0075377593748271465, - 0.028953704982995987, - 0.0019507694523781538, - -0.0011173980310559273, - 0.029552370309829712, - 0.03907661512494087, - -0.009741941466927528, - 0.012497169896960258, - 0.023674551397562027, - -0.009095653891563416, - 0.05643795430660248, - -0.014354397542774677, - -0.028436673805117607, - 0.007707835175096989, - -0.013333942741155624, - -0.015565337613224983, - 0.015334034338593483, - 0.02083088457584381, - 0.008592229336500168, - -0.004401561804115772, - 0.006194160785526037, - 0.024572551250457764, - -0.0012645135866478086, - 0.00533697847276926, - 0.01881718635559082, - -0.047811709344387054, - -0.013014200143516064, - 0.00017889848095364869, - 0.01927979290485382, - -0.004075016360729933, - 0.015252397395670414, - 0.014245549216866493, - -0.009741941466927528, - 0.025225643068552017, - 0.03665473684668541, - -0.026137249544262886, - -0.002328337635844946, - -0.01290535181760788, - -0.003864122088998556, - -0.018858004361391068, - -0.011850881390273571, - -0.015456488355994225, - 0.029443522915244102, - -0.007490138057619333, - 0.0017152144573628902, - -0.04492722451686859, - -0.0076125930063426495, - 0.0039151450619101524, - 0.017538215965032578, - -0.012245457619428635, - -0.0094358054921031, - 0.017456579953432083, - 0.01635448820888996, - 0.0013623071135953069, - -0.008714684285223484, - -0.011735230684280396, - -2.173781285819132e-05, - -0.013381564058363438, - 0.01681709475815296, - -0.003942356910556555, - 0.012619624845683575, - 0.010898456908762455, - 0.026871977373957634, - -0.0021446559112519026, - 0.015646973624825478, - -0.02609643153846264, - -0.013027806766331196, - -0.027729159221053123, - 0.01789197511970997, - -0.015279609709978104, - -0.022504430264234543, - -0.04538983106613159, - -0.02162003517150879, - 0.001356354565359652, - 0.009741941466927528, - -0.004221281502395868, - -0.015266004018485546, - -0.015456488355994225, - -0.018286550417542458, - 0.004170258529484272, - -0.015878276899456978, - -0.010299790650606155, - -0.04906346648931503, - -0.008190850727260113, - -0.014177518896758556, - -0.019837642088532448, - 0.011952927336096764, - 0.02202821709215641, - -0.013973427936434746, - 0.007211213931441307, - 0.0010629737516865134, - -0.011170578189194202, - 0.025035157799720764, - 0.01903488300740719, - -0.025144007056951523, - -0.024531733244657516, - 0.013606064021587372, - -0.029443522915244102, - -0.008966396562755108, - 0.0035783948842436075, - -0.004592046607285738, - 0.005224728491157293, - -0.0057655698619782925, - 0.014871427789330482, - 0.010088896378874779, - -0.006415259093046188, - 0.0030766711570322514, - -0.003158307634294033, - -0.028899280354380608, - -0.004415167961269617, - 0.014803397469222546, - -0.0006084461929276586, - 0.021783309057354927, - 0.017538215965032578, - -0.02977006882429123, - 0.026491006836295128, - -0.0012951272074133158, - 0.018912428990006447, - -0.011320245452225208, - 0.01658579148352146, - -0.020055338740348816, - -0.005881221033632755, - -0.0046294634230434895, - 0.016313670203089714, - 0.007381289731711149, - 0.010490274988114834, - 0.03798813000321388, - 0.0032671561930328608, - 0.015592548996210098, - -0.011449502781033516, - 0.007197607774287462, - -0.005064857192337513, - 0.025225643068552017, - 0.006789425853639841, - 0.05937686190009117, - 0.006935690995305777, - 0.035185281187295914, - -0.013844170607626438, - -0.03374303877353668, - -0.006942494306713343, - -0.0034117205068469048, - 0.0480838306248188, - -0.015905488282442093, - 0.014694549143314362, - 0.02604200690984726, - 0.007741850335150957, - 0.010653547942638397, - 0.007320062257349491, - 0.013830563984811306, - 0.006745206192135811, - -0.01653136871755123, - -0.012197836302220821, - 0.012592412531375885, - 0.014585700817406178, - -0.003108985722064972, - -0.01172842737287283, - -0.002148057334125042, - 0.0029950349126011133, - 0.011116154491901398, - 0.008646653965115547, - 0.02977006882429123, - 0.002714409725740552, - 0.028708795085549355, - 0.0030851750634610653, - 0.039375949651002884, - 0.0068982746452093124, - 0.004663478583097458, - 0.03706291690468788, - 0.022409187629818916, - -0.00767382001504302, - 0.011667200364172459, - -0.009796366095542908, - 0.003639622125774622, - 0.01514354906976223, - -0.005979865323752165, - -0.019198156893253326, - -0.0023980687838047743, - -0.02329358085989952, - -0.014490458182990551, - -0.02832782454788685, - -0.0018130079843103886, - -0.009429002180695534, - 0.017633458599448204, - 0.00840854737907648, - 0.028953704982995987, - 0.012123002670705318, - 0.008503790013492107, - 0.01557894330471754, - 0.00149156479164958, - -0.01646333746612072, - -0.005905031692236662, - 0.008775911293923855, - -0.020000914111733437, - -0.017470186576247215, - -8.918350067688152e-05, - -0.006313213612884283, - -0.000795104366261512, - -0.0072452290914952755, - -0.0038165010046213865, - 0.007605789694935083, - 0.028246188536286354, - -0.0007262236904352903, - 0.009476623497903347, - 0.023497672751545906, - 0.0065343123860657215, - 0.011490320786833763, - -0.005360789131373167, - -0.038804493844509125, - 0.003285864368081093, - 0.037770435214042664, - -0.012449548579752445, - -0.03562067449092865, - 0.0011071934131905437, - 0.023021459579467773, - -0.020341066643595695, - 0.02345685474574566, - -0.003819902427494526, - 0.014354397542774677, - -0.012191032990813255, - 0.006840448826551437, - 0.0049253953620791435, - -0.005234932992607355, - 0.02368815802037716, - -0.007326865568757057, - -0.011721624061465263, - -0.01876276172697544, - 0.015592548996210098, - -0.016544973477721214, - -0.006122728809714317, - -0.012265866622328758, - 0.025973975658416748, - -0.005792781710624695, - -0.02398749068379402, - -0.008646653965115547, - 0.010327002964913845, - -0.006979910656809807, - -0.003653228282928467, - -0.01055150292813778, - -0.026627067476511, - -0.02782440185546875, - -0.006959501653909683, - -0.007422107737511396, - 0.010429047979414463, - -0.018000822514295578, - 0.02534809708595276, - 0.018572278320789337, - -0.0162864588201046, - -0.0010408639209344983, - -0.016109580174088478, - 0.005860812030732632, - 0.017184458673000336, - 0.009422199800610542, - -0.0076125930063426495, - 0.02564743161201477, - 0.0011811763979494572, - -0.04187946394085884, - -0.0036872434429824352, - -0.027783581987023354, - 0.0021905764006078243, - 0.005432221107184887, - -0.0031770160421729088, - 0.0014958166284486651, - 0.028708795085549355, - -0.024626975879073143, - 0.01915733888745308, - 0.004990024026483297, - 0.0010281081777065992, - -0.0038845313247293234, - 0.029389098286628723, - -0.024817461147904396, - -0.024817461147904396, - -0.018218519166111946, - -0.0228853989392519, - 0.05442425608634949, - 0.013612867332994938, - -0.011408684775233269, - 0.02443649061024189, - 0.01511633675545454, - 0.04011067748069763, - -0.012347503565251827, - -0.023429641500115395, - 0.02259967289865017, - 0.023933066055178642, - 0.013068624772131443, - -0.009129668585956097, - -0.023960279300808907, - -0.005428819451481104, - -0.0055784862488508224, - 0.00025723964790813625, - 0.01514354906976223, - 0.012061775662004948, - 0.030314311385154724, - 0.004289311822503805, - -0.01812327653169632, - 0.009034426882863045, - 0.0003252699680160731, - -0.008884759619832039, - 0.011082138866186142, - 0.014531276188790798, - -0.02472221851348877, - 0.024831067770719528, - -0.007320062257349491, - -0.009116062894463539, - -0.02368815802037716, - 0.002920201513916254, - -0.01766067184507847, - -0.017932793125510216, - -0.020640399307012558, - -0.02129349112510681, - -0.006571728736162186, - -0.006632956210523844, - -0.028409462422132492, - 0.002969523426145315, - -0.025280067697167397, - -0.009531048126518726, - -0.025552188977599144, - -0.030423158779740334, - 0.0023708567023277283, - -0.01824573241174221, - -0.0023793603759258986, - 0.010333805344998837, - -0.03368861600756645, - -0.012483564205467701, - 0.009850790724158287, - 0.013170669786632061, - -0.012721669860184193, - 0.02559300698339939, - -0.019143732264637947, - -0.0060581001453101635, - 0.035185281187295914, - -0.012503973208367825, - -0.004214478190988302, - -0.015415670350193977, - -0.02794685587286949, - 0.0008869452867656946, - 0.0007780967862345278, - 0.001320638577453792, - 0.0009430703357793391, - 0.010599124245345592, - 0.019116520881652832, - -0.003762076608836651, - 0.004006986040621996, - -0.016789883375167847, - 0.011197790503501892, - 0.015007488429546356, - 0.006510501727461815, - 0.01630006544291973, - 0.021606430411338806, - 0.00843575969338417, - -0.008503790013492107, - 0.014857822097837925, - -0.015075518749654293, - -0.007000320125371218, - -0.020966945216059685, - 0.031402796506881714, - -0.00880992691963911, - 0.01293256413191557, - 0.0045546297915279865, - 0.005956054665148258, - -0.0032297393772751093, - 0.0021905764006078243, - -0.026518218219280243, - -0.017851155251264572, - 0.008082002401351929, - -0.03632819280028343, - 0.002978027332574129, - 0.007122774608433247, - 0.015184367075562477, - 0.011810063384473324, - -0.01273527555167675, - 0.0010910362470895052, - -0.011531139723956585, - 0.020218610763549805, - -0.011463109403848648, - -0.011510729789733887, - 0.04536261782050133, - -0.017361337319016457, - -0.013306730426847935, - -0.000840174441691488, - 0.011401881463825703, - 0.019769610837101936, - 0.008762305602431297, - 0.008585426025092602, - -0.00448659947142005, - -0.033879101276397705, - -0.005956054665148258, - 0.008068395778536797, - 0.0015604455256834626, - -0.02186494506895542, - -0.022980641573667526, - 0.0019762807060033083, - 0.02031385339796543, - -0.021824127063155174, - 0.010850836522877216, - -0.01853145845234394, - -0.025892339646816254, - -0.014708154834806919, - -0.00693909265100956, - 0.0162864588201046, - 0.027457037940621376, - -0.013123048469424248, - -0.01405506394803524, - -0.01299379114061594, - -0.012218245305120945, - 0.003195724217221141, - -0.0339607372879982, - 0.001433738972991705, - -0.029416309669613838, - 0.026627067476511, - 0.022762944921851158, - 0.019021278247237206, - -0.004983221180737019, - 0.03744388744235039, - 0.025198429822921753, - -0.004513811785727739, - 0.0034797508269548416, - -0.027838006615638733, - -0.012864533811807632, - -0.03741667792201042, - -0.0036600311286747456, - 0.0025273263454437256, - 0.011544745415449142, - 0.01532042771577835, - 0.028545523062348366, - 0.011449502781033516, - 0.03545740246772766, - -0.016150398179888725, - -0.008136426098644733, - -0.016953155398368835, - -0.039784129709005356, - -0.01790557987987995, - -0.0006522407056763768, - 0.022164277732372284, - 0.00705474428832531, - -0.029906129464507103, - 0.006180554628372192, - 0.03028709813952446, - 0.0019269587937742472, - 0.0021361520048230886, - 0.016708247363567352, - 0.005476440768688917, - -0.01830015704035759, - 0.03752552345395088, - 0.026695096865296364, - -0.009966442361474037, - 0.006183956284075975, - -0.012742078863084316, - -0.015687791630625725, - -0.03790649399161339, - 0.021524792537093163, - -0.018912428990006447, - 0.016490548849105835, - -0.0049764178693294525, - 0.0020341065246611834, - 0.012687655165791512, - -0.0009940930176526308, - 0.0071363807655870914, - -0.02454533986747265, - 0.003010341664776206, - -0.008796320296823978, - -0.01540206465870142, - -0.04427413269877434, - -0.005561478901654482, - -0.033770252019166946, - 0.01687151938676834, - 0.014667336829006672, - -0.0033947129268199205, - 0.017701489850878716, - -0.017279701307415962, - -0.013789745979011059, - -0.006503698416054249, - 0.00022386226919479668, - 0.017198065295815468, - 0.017701489850878716, - 0.045117709785699844, - 0.00866706296801567, - -0.027810795232653618, - -0.0021854741498827934, - -0.06051977351307869, - 0.02472221851348877, - -0.0035749932285398245, - 0.024463703855872154, - 0.013565246015787125, - 3.712435864144936e-05, - 0.006792827509343624, - 0.0019830837845802307, - -0.003707652445882559, - -0.02163364179432392, - -0.021307095885276794, - 0.01402785163372755, - 0.0083745326846838, - -0.005564880091696978, - -0.025946764275431633, - 0.0003037978895008564, - 0.0009600779158063233, - 0.013830563984811306, - -0.010741987265646458, - 0.004670281428843737, - -0.009510639123618603, - -0.021538399159908295, - 0.0013606064021587372, - 0.0406004935503006, - 0.00938138086348772, - 0.0015655477764084935, - 0.01589188352227211, - -0.028654370456933975, - 0.016449730843305588, - -0.029334673658013344, - -0.026531824842095375, - -0.002602159744128585, - -0.0219193696975708, - 0.03649146482348442, - 0.005251940805464983, - 0.009082048200070858, - 0.008428956381976604, - 0.008945987559854984, - -0.02197379432618618, - -0.005976463668048382, - 0.001998390769585967, - 0.02398749068379402, - -0.0212254598736763, - 0.005071660503745079, - 0.011864488013088703, - -0.001923557254485786, - 0.003302871948108077, - -0.015619761310517788, - 0.017701489850878716, - -0.007510547526180744, - -0.015102731063961983, - -0.02857273444533348, - -0.009394987486302853, - 0.018721943721175194, - -0.01425915490835905, - -0.011388275772333145, - -0.008619441650807858, - -0.023701762780547142, - -0.009054835885763168, - -0.02008255012333393, - 0.0025630423333495855, - -0.045471467077732086, - -0.017987215891480446, - -0.0037042510230094194, - 0.00573495589196682, - 0.030532008036971092, - -0.01600073091685772, - -0.0027246142271906137, - -0.008986805565655231, - 0.028980916365981102, - -0.039321526885032654, - 0.03137558326125145, - 0.037879280745983124, - -0.010946078225970268, - -0.014626518823206425, - -0.0007555617485195398, - 0.016490548849105835, - -0.002290921052917838, - 0.03730782866477966, - 0.01319788210093975, - -0.014068670570850372, - 0.005377796944230795, - 0.007401698734611273, - 0.021878551691770554, - -0.004200872499495745, - -0.012469957582652569, - 0.004751917906105518, - 0.014789791777729988, - 0.006547918543219566, - 0.0029014931060373783, - -0.009313350543379784, - 0.015701398253440857, - 0.005197516642510891, - 0.03194703906774521, - 0.03325321897864342, - -0.017823943868279457, - 0.006071706302464008, - 0.012088987976312637, - -0.019007671624422073, - -0.02557940036058426, - -0.04223322123289108, - -0.008449365384876728, - 0.015524518676102161, - -0.01410948857665062, - 0.012123002670705318, - -0.01181686669588089, - -0.021021369844675064, - -0.02254524827003479, - -0.006143137812614441, - -0.003217834047973156, - 0.011381472460925579, - -0.014068670570850372, - 0.014490458182990551, - -1.5120801435841713e-05, - 0.01835457980632782, - 0.01687151938676834, - 0.00855141133069992, - -0.017470186576247215, - 0.03085855394601822, - -0.008075199089944363, - -0.045580316334962845, - 0.004823349881917238, - 0.012299882248044014, - 0.02586512826383114, - 0.00010087621194543317, - -0.035484615713357925, - -0.012299882248044014, - 0.000198776091565378, - -0.038804493844509125, - -0.0034032168332487345, - 0.008381335064768791, - 0.022409187629818916, - 0.01195973064750433, - -0.0030579629819840193, - 0.0012321991380304098, - 0.03374303877353668, - 0.005728153046220541, - 0.021892156451940536, - -0.017796732485294342, - -0.00411583436653018, - 0.00020100834080949426, - 0.00834732037037611, - 0.009823578409850597, - 0.0014005742268636823, - -0.061064016073942184, - 0.021756095811724663, - 0.03676358610391617, - 0.010653547942638397, - 0.0038165010046213865, - 0.0325729176402092, - -0.0034780502319335938, - -0.029361886903643608, - 0.0055784862488508224, - -0.007313259411603212, - -0.013204685412347317, - -0.0054560317657887936, - 0.018939640372991562, - -0.027892431244254112, - 0.01408227626234293, - 0.010388229973614216, - 0.01287813950330019, - -0.003544379724189639, - -0.017238883301615715, - -0.0006441621226258576, - 0.015470094978809357, - 0.012980185449123383, - 0.01657218672335148, - -0.006789425853639841, - 0.010864442214369774, - -0.009197698906064034, - 0.011891700327396393, - 0.013075427152216434, - -0.007095562294125557, - 0.0009192596771754324, - 0.014789791777729988, - -0.004942402709275484, - 0.00416005402803421, - -0.004234887659549713, - -0.026341339573264122, - 0.0036430235486477613, - 0.012286275625228882, - -0.02425961196422577, - 0.026640674099326134, - -0.027742763981223106, - 0.013041412457823753, - 0.0050512515008449554, - -0.004932198207825422, - -0.02811012789607048, - -0.012667245231568813, - -0.006445873063057661, - 0.011571957729756832, - 0.007020729128271341, - -0.054124921560287476, - 0.003697447944432497, - -0.005554675590246916, - -0.02707606740295887, - 0.013646882027387619, - -0.028191763907670975, - 0.012619624845683575, - -0.025606611743569374, - -0.00926572922617197, - -0.005119281820952892, - -0.011150169186294079, - -0.014531276188790798, - 0.006268993951380253, - -0.016762670129537582, - -0.02190576307475567, - -0.033770252019166946, - 0.1735045313835144, - -0.034450553357601166, - -0.008660259656608105, - 0.0002587278140708804, - -0.007081956136971712, - -0.017402155324816704, - 0.03466825187206268, - 0.009748744778335094, - 0.00622137263417244, - 0.02730737067759037, - 0.003352194093167782, - 0.009687517769634724, - -0.018858004361391068, - 0.0017050099559128284, - 0.0016097674379125237, - 0.0010833828710019588, - -0.051893528550863266, - -0.018912428990006447, - -0.015905488282442093, - 0.014762579463422298, - 0.011891700327396393, - -0.014599306508898735, - -0.005973062012344599, - -0.021034974604845047, - 0.023851430043578148, - -0.002083428669720888, - 0.012456351891160011, - -0.0003225062391720712, - 0.007095562294125557, - 0.012218245305120945, - -0.040981464087963104, - 0.0033930123317986727, - -0.0019779815338552, - 0.014422427862882614, - -0.0072452290914952755, - 0.002665087813511491, - 0.013347548432648182, - -0.018749156966805458, - 0.018313761800527573, - 0.031239522621035576, - -0.002632773481309414, - -0.02127988450229168, - -0.00234534521587193, - -0.03665473684668541, - -0.007211213931441307, - 0.01927979290485382, - 0.002408273285254836, - -0.0010502181248739362, - -0.011605972424149513, - -0.018259337171912193, - -0.035076431930065155, - 0.04634225368499756, - -0.0016318772686645389, - 0.053553469479084015, - 0.013027806766331196, - -0.006411857903003693, - -0.004017190542072058, - 0.009775957092642784, - 0.016993973404169083, - 0.004983221180737019, - -0.037090130150318146, - 0.03017825074493885, - -0.014299972914159298, - 0.03366140276193619, - 0.014245549216866493, - 0.00758538069203496, - 0.010190942324697971, - -0.022286733612418175, - 0.0038981372490525246, - -0.03401516005396843, - -0.00758538069203496, - -0.014857822097837925, - -0.018313761800527573, - 0.004476394969969988, - -0.010020866058766842, - -0.020912520587444305, - 0.009449411183595657, - -0.003046057652682066, - 0.010286184027791023, - 0.0321103110909462, - 0.012157018296420574, - -0.0025137204211205244, - 0.016449730843305588, - -0.020409096032381058, - 0.018368186429142952, - -0.014748973771929741, - 0.019238974899053574, - 0.013381564058363438, - 0.013660488650202751, - -0.03785207122564316, - -0.007816683501005173, - -0.013844170607626438, - -0.0020613186061382294, - -0.004272304009646177, - -0.009197698906064034, - -0.00846297200769186, - 0.0021395536605268717, - 0.007816683501005173, - 0.0059254406951367855, - -0.001217742683365941, - -0.02186494506895542, - 0.049716558307409286, - 0.012150214985013008, - -0.008483381010591984, - 0.0047383117489516735, - -0.004551228601485491, - 0.007320062257349491, - 0.01204816997051239, - 0.01084403321146965, - -0.029634008184075356, - -0.003908341750502586, - -0.013286321423947811, - 0.011680806055665016, - -0.03017825074493885, - 0.0013546537375077605, - 0.01290535181760788, - -0.011204593814909458, - -0.006813236512243748, - 0.0216880664229393, - -0.004421970807015896, - 0.013293124735355377, - -0.030940189957618713, - 0.0004007411189377308, - 0.014299972914159298, - -0.022041823714971542, - -0.03964807093143463, - -0.03317158296704292, - 0.026082824915647507, - -0.007184001617133617, - 0.0071908049285411835, - 0.013857776299118996, - 0.008041183464229107, - 0.020395489409565926, - 0.0024371861945837736, - 0.009286139160394669, - 0.01104812417179346, - 0.004041001200675964, - -0.031457219272851944, - -0.020749248564243317, - -0.005251940805464983, - 0.017647065222263336, - -0.0006309812306426466, - -0.011721624061465263, - -0.005731554701924324, - 0.006513903383165598, - -0.016381701454520226, - 0.02259967289865017, - -0.024531733244657516, - -0.03265455365180969, - -0.023552097380161285, - -0.009299744851887226, - -0.009082048200070858, - -0.01070116925984621, - -0.011184184812009335, - 0.007877911441028118, - 0.02398749068379402, - -0.02903534099459648, - -0.018340975046157837, - 0.030205462127923965, - 0.006286001764237881, - -0.03632819280028343, - -0.028382249176502228, - 0.0075921835377812386, - -0.014857822097837925, - -0.008871153928339481, - 0.0005025739665143192, - -0.17339567840099335, - 0.016095973551273346, - 0.006799630355089903, - -0.0023691558744758368, - 0.012952973134815693, - -0.005360789131373167, - 0.016776276752352715, - 0.008741896599531174, - -0.011952927336096764, - -0.023279976099729538, - -0.007347274571657181, - -0.003819902427494526, - -0.02816455252468586, - -0.03213752433657646, - -0.013946215622127056, - -0.014068670570850372, - -0.02857273444533348, - 0.022001005709171295, - 0.014953064732253551, - 0.002996735507622361, - 0.006908479146659374, - -0.022218702360987663, - 0.016667429357767105, - -0.002418477786704898, - -0.015510912984609604, - 0.021470369771122932, - -0.019170943647623062, - 0.025851521641016006, - -0.012884942814707756, - -0.017361337319016457, - -0.01961994357407093, - -0.015456488355994225, - 0.01517076138406992, - -0.007422107737511396, - -0.035539038479328156, - 0.005891425535082817, - -0.014476852491497993, - 0.005663524381816387, - -0.014925852417945862, - 0.05385280027985573, - -0.006153342314064503, - 0.028191763907670975, - -0.012728473171591759, - 0.012572003528475761, - -0.026831157505512238, - 0.022327551618218422, - 0.006517304573208094, - -0.03213752433657646, - -0.020490732043981552, - -0.01600073091685772, - -0.020871702581644058, - -0.017755914479494095, - 0.00825888104736805, - 0.02402830868959427, - -0.00019463049829937518, - -0.011605972424149513, - 0.007490138057619333, - 0.005024039186537266, - 0.006850653328001499, - 0.014558488503098488, - -0.02329358085989952, - -0.018259337171912193, - 0.01451767049729824, - -0.02272212691605091, - -0.02655903622508049, - -0.018613096326589584, - -0.002610663650557399, - 0.01653136871755123, - -0.015238791704177856, - 0.0013333943206816912, - -0.001998390769585967, - 0.021783309057354927, - 0.02432764321565628, - -0.004816546570509672, - -0.004517213441431522, - 0.010218153707683086, - -0.003921947907656431, - 0.0024677999317646027, - 0.012286275625228882, - 0.010925669223070145, - -0.008054790087044239, - 0.043104011565446854, - -0.01227947324514389, - -0.017116429284214973, - 0.0024252808652818203, - -0.010653547942638397, - -0.018164096400141716, - 0.00940859317779541, - -0.0104970782995224, - -0.01425915490835905, - 0.007843895815312862, - -0.02162003517150879, - -0.020858095958828926, - -0.029416309669613838, - 0.0006131232366897166, - -0.00027297166525386274, - 0.005867615342140198, - -0.0004575038910843432, - 0.0004358192381914705, - -0.01015012338757515, - 0.0014958166284486651, - -0.0066431607119739056, - -0.022191490978002548, - 0.009796366095542908, - 0.016395308077335358, - 0.004006986040621996, - -0.02489909715950489, - 0.013449594378471375, - 0.055621590465307236, - -0.0016692939680069685, - -0.0023300384636968374, - -0.01158556342124939, - 0.010980093851685524, - 0.01658579148352146, - -4.195424480712973e-06, - -0.004605652764439583, - -0.01961994357407093, - -0.02673591673374176, - 0.02213706634938717, - 0.017851155251264572, - 0.04680486023426056, - -0.020912520587444305, - 0.011122957803308964, - -0.00846297200769186, - -0.013585655018687248, - -0.01842261105775833, - -0.08588147908449173, - -0.006792827509343624, - 0.03080412931740284, - 0.007952744141221046, - -0.0001555130584165454, - 0.011776048690080643, - 0.001621672767214477, - 0.004177061840891838, - 0.003707652445882559, - 0.022681308910250664, - -0.015293216332793236, - -0.016027944162487984, - -0.0070615471340715885, - -0.010796411894261837, - 0.04767564684152603, - 0.0037008493673056364, - 0.012653639540076256, - -0.006615948863327503, - -0.023089490830898285, - 0.029470734298229218, - -0.008741896599531174, - 0.0038301069289445877, - -0.006993516813963652, - -0.0013452995335683227, - -0.022558854892849922, - -0.010476669296622276, - -0.03132116049528122, - 0.0025052165146917105, - 0.001945667201653123, - -0.014640124514698982, - 0.0007015626761130989, - -0.03390631079673767, - 0.011952927336096764, - -0.01904848963022232, - 0.0011250514071434736, - 0.0221506729722023, - -0.027225734665989876, - -0.017810337245464325, - 0.018789974972605705, - -0.0447639524936676, - 0.005493448581546545, - -0.006653365213423967, - -0.00668397918343544, - -0.026763128116726875, - -0.005554675590246916, - -0.03464103862643242, - 0.007735047489404678, - 0.018789974972605705, - 0.015334034338593483, - 0.0015961613971740007, - 0.0013410476967692375, - -0.03162049129605293, - -0.02247721701860428, - -0.015497307293117046, - 0.03632819280028343, - 0.013891790993511677, - 0.014354397542774677, - -0.00042348873103037477, - -0.003527372144162655, - -0.009170487523078918, - -0.01767427660524845, - 0.01195973064750433, - -0.029987765476107597, - 0.020109763368964195, - 0.02811012789607048, - -0.006670373026281595, - -0.012170623987913132, - 0.007279244251549244, - 0.015361246652901173, - 0.007415304891765118, - -0.011714820750057697, - 0.001028958591632545, - -0.0032467469573020935, - 0.029797280207276344, - -0.037144556641578674, - 0.0026991029735654593, - -0.034096796065568924, - -0.017579033970832825, - 0.004609054420143366, - 0.009857593104243279, - -0.015034700743854046, - -0.03474988788366318, - -7.600262324558571e-05, - -0.026695096865296364, - 0.008898366242647171, - 0.016667429357767105, - -0.014789791777729988, - -0.01612318679690361, - 0.038695644587278366, - -0.03717176616191864, - 0.01534764003008604, - 0.007898320443928242, - 0.01892603561282158, - 0.0002183348115067929, - -0.002614065073430538, - 0.01978321745991707, - 0.008381335064768791, - -0.003656629705801606, - 0.009422199800610542, - 0.03551182895898819, - -0.01557894330471754, - -0.014490458182990551, - -0.06661529093980789, - 0.01493945810943842, - 0.02609643153846264, - 0.0015689493156969547, - 0.00013797399878967553, - 0.0020766255911439657, - 0.0045580314472317696, - 0.003035853151232004, - 0.02031385339796543, - 0.0358927957713604, - -0.028436673805117607, - 0.022055430337786674, - -0.013490412384271622, - -0.001164168817922473, - -0.01293936651200056, - -0.013354351744055748, - 0.014218336902558804, - -0.006207766942679882, - 0.03058643266558647, - 0.019769610837101936, - -0.0024865081068128347, - -0.015878276899456978, - 0.0050308420322835445, - 0.02620527893304825, - -0.023592915385961533, - 0.009946032427251339, - 0.006170350126922131, - 0.0018351179314777255, - 0.002095333766192198, - -0.007660213857889175, - 0.025402521714568138, - -0.008816729299724102, - -0.01778312586247921, - 0.02035467140376568, - -0.028082916513085365, - 0.0046838875859975815, - 0.013905397616326809, - 0.026314128190279007, - 0.0052689481526613235, - 0.05056013539433479, - -0.011918911710381508, - -0.019483882933855057, - 0.008381335064768791, - -0.023674551397562027, - -0.015483700670301914, - 0.004619258921593428, - 0.02295343019068241, - 0.015810245648026466, - 0.006755410693585873, - -0.009850790724158287, - 0.015959912911057472, - 0.02461336925625801, - 0.008993607945740223, - -0.0035511828027665615, - 0.027062460780143738, - 0.012823715806007385, - 0.023198340088129044, - 0.009163684211671352, - 0.023211944848299026, - -0.029334673658013344, - 0.043566618114709854, - 0.01052429061383009, - 0.017415761947631836, - 0.001680348883382976, - 0.007020729128271341, - -0.01296657882630825, - -0.03058643266558647, - -0.010095699690282345, - 0.007102365605533123, - -0.01915733888745308, - -0.0024507923517376184, - -0.007068350445479155, - 0.0019932882860302925, - 0.030994614586234093, - -0.006666971370577812, - 0.010027669370174408, - 0.00362941762432456, - -0.0002306653041159734, - -0.017279701307415962, - 0.02299424819648266, - 0.022926218807697296, - -0.008061593398451805, - 0.004870970733463764, - 0.006908479146659374, - 0.017252489924430847, - 0.0011378071503713727, - -0.013381564058363438, - 0.0028725801967084408, - 0.004847160540521145, - 0.0049219937063753605, - 0.00217356882058084, - -0.00972833577543497, - -0.014163912273943424, - 0.0165177620947361, - 0.0015374852810055017, - 0.023552097380161285, - 0.0004779130103997886, - -0.01755182258784771, - 0.016613004729151726, - 0.030722493305802345, - 0.0028504703659564257, - 0.005605698563158512, - -0.013531230390071869, - -0.003023947821930051, - -0.021701673045754433, - 0.0013861177721992135, - -0.01170121505856514, - -0.0042689028196036816, - 0.002870879601687193, - 0.027389006689190865, - -0.0022892202250659466, - -0.021075792610645294, - 0.012980185449123383, - 0.004932198207825422, - -0.010748790577054024, - 0.0020732239354401827, - -0.02488549053668976, - -0.025565793737769127, - -0.03523970767855644, - 0.033416494727134705, - 0.01813688315451145, - -0.0014269360108301044, - 0.0006620200583711267, - -0.001505170832388103, - 0.0032450463622808456, - -0.004010387230664492, - 0.022762944921851158, - -0.022694915533065796, - -0.009789562784135342, - -0.013803351670503616, - 0.001253458671271801, - -0.0006114225252531469, - -0.029987765476107597, - -0.031076250597834587, - -0.0044491831213235855, - -0.013633276335895061, - 0.023946672677993774, - -0.00622137263417244, - 0.0193342175334692, - 0.10378705710172653, - 0.038804493844509125, - -0.02185133844614029, - 0.02247721701860428, - -0.02186494506895542, - 0.012728473171591759, - 0.0018895420944318175, - 0.027865219861268997, - 0.0007372786058112979, - -0.03262734040617943, - 0.013381564058363438, - -0.008068395778536797, - 0.01084403321146965, - -0.0214567631483078, - -2.3863760361564346e-05, - 0.017511004582047462, - 0.008102411404252052, - 0.023715369403362274, - -0.020177792757749557, - -0.012864533811807632, - 0.01865391433238983, - -0.022912612184882164, - -0.006007077172398567, - 0.014463245868682861, - -0.006340425927191973, - -0.016912337392568588, - -0.007653411012142897, - -0.017579033970832825, - -0.011143366806209087, - -0.02259967289865017, - -0.013789745979011059, - -0.009741941466927528, - -0.055730439722537994, - -0.035185281187295914, - 0.011605972424149513, - -0.03121231123805046, - -0.0030171447433531284, - -0.01738855056464672, - 0.023851430043578148, - -0.008082002401351929, - 0.014095881953835487, - 0.040355585515499115, - -0.009483426809310913, - -0.02977006882429123, - -0.006360834930092096, - -0.026422975584864616, - 0.013538033701479435, - -0.006449274253100157, - -0.015919094905257225 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 46, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 237 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000047.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000047.json deleted file mode 100644 index 16d10d79c31f8e48a1f07b2992ab823b75534ce3..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000047.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000047", - "content": "- [87] Lohninger, H.: Zuf\u00e4llige und systematische Fehler, 2021, http://www.statis- tics4u.info/fundstat_germ/ee_precision_accuracy.html [Zugriff am: 01.06.2023]. - [88] Thode, J.: Aus dem Laboralltag \u2013 Systematische und zuf\u00e4llige Fehler, 2023, https://mpl.loesungsfabrik.de/blog/methodenvalidierung/fehlerarten [Zugriff am: 01.06.2023]. - [89] Dr.-Ing. Werner Schirmer: Technischer L\u00e4rmschutz \u2013 Grundlagen und praktische Ma\u00dfnahmen zum Schutz vor L\u00e4rm und Schwinungen von Maschinen. Springer Berlin Heidelberg, 2005. ## VII\n\n\n## Formelverzeichnis\n\nFormelverzeichnis\n\n## Formelverzeichnis\n\n\n| Formel | 1: | Beurteilungspegel | [dB(A)] | .................................................................................... | 10 | Formel | 2: | Impulszuschlag | [dB(A)] | ........................................................................................ | 11 | Formel | 3: | Taktmaximal-Mittelungspegel | [dB(A)] | ................................................................. | 11 | Formel | 4: | meteorologische | Korrektur | [dB(A)] | ..................................................................... | 12 | Formel | 5: | Schalldruck | [Pa | = | N/m\u00b2] | ....................................................................................... | 14 | Formel | 6: | Schallschnelle | [m/s] | ............................................................................................. | 14 | Formel | 7: | Schallleistung | [W] | ................................................................................................ | 14 | Formel | 8: | Schallleistung | der | einzelnen | Teilfl\u00e4chen | [W] | ....................................................... | 15 | Formel | 9: | Bezugsgr\u00f6\u00dfe | ......................................................................................................... | 15 | Formel | 10: | Schallleistung | der | einzelnen | Teilfl\u00e4chen | [W] | ..................................................... | 15 | Formel | 11: | Schallleistungspegel | bezogen | auf | 5 | Sekunden | [dB(A)] | ...................................... | 15 | Formel | 12: | maximale | Schallleistungspegel | [dB(A)] | .............................................................. | 15 | Formel | 13: | st\u00fcndlicher | Schallleistungspegel | [dB(A)] | ........................................................... | 16 | Formel | 14: | impulsbehafteter | st\u00fcndlicher | Schallleistungspegel | [dB(A)] | .............................. | 16 | Formel | 15: | Fremdger\u00e4uschkorrektur | [dB(A)]....................................................................... | 17 | Formel | 16: | Umgebungskorrektur | [dB(A)] | ............................................................................ | 17 | Formel | 17: | zeitlich | gemittelte | Messfl\u00e4chen-Schalldruckpegel | [dB(A)] | ................................ | 17 | Formel | 18: | \u00e4quivalenter | Dauerschallpegel | [dB(A)] | .............................................................. | 18 | Formel | 19: | komplexe | Richtungsfaktor | [-] | ............................................................................ | 19 | Formel | 20: | Richtungsfaktor | [-] | ............................................................................................. | 19 | Formel | 21: | Richtma\u00df | [dB(A)]................................................................................................ | 19 | Formel | 22: | Konturen | des | Polarkoordinatendiagramms | ...................................................... | 20 | Formel | 23: | relative | H\u00e4ufigkeit | [-] | ......................................................................................... | 22 | Formel | 24: | Mittelungspegel | [dB(A)]..................................................................................... | 22 | Formel | 25: | Varianz | der | Schalldruckpegel | [dB(A)] | ................................................................ | 22 | Formel | 26: | Standardabweichung | der | Schalldruckpegel | [dB(A)] | .......................................... | 23 | Formel | 27: | Dichtefunktion | der | Normalverteilung | ............................................................... | 23 | Formel | 28: | Schallleistungspegel | nach | dem | Technischen | Bericht | 1995 | [7] | [dB(A)] | .............. | 26 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Formel 29: Schallleistungspegel nach dem Technischen Bericht 2005 [8] [dB(A)] .............. 26\n\n\n## VIII\n\nAbbildungsverzeichnis\n\n## Abbildungsverzeichnis\n\nAbbildung 1: Ausma\u00df der L\u00e4rmbel\u00e4stigung der Bev\u00f6lkerung in Deutschland 2020 [4] ........ 3 Abbildung 2: \u00dcberblick \u00fcber die Grundnormen zur Bestimmung des\n\n| Abbildung | 3: | Geometrische | Darstellung | der | Richtcharakteristik | ......................................... | 20 | Abbildung | 4: | Verladezone | von | innen | und | au\u00dfen | ................................................................. | 32 | Abbildung | 5: | Oberfl\u00e4che | der | innenliegenden | \u00dcberladebr\u00fccke | ........................................... | 33 | Abbildung | 6: | Tautliner | .......................................................................................................... | 34 | Abbildung | 7: | Koffer | Auflieger | - | blau | ..................................................................................... | 34 | Abbildung | 8: | Wechselbr\u00fccke | ............................................................................................... | 34 | Abbildung | 9: | Prozessablauf | des | Beladevorgangs | ................................................................. | 39 | Abbildung | 10: | Exportbereich | von | au\u00dfen | ............................................................................. | 42 | Abbildung | 11: | Ortsfeste | Mikrofonposition | .......................................................................... | 44 | Abbildung | 12: | Variabler | Mikrofonaufbau | ............................................................................ | 45 | Abbildung | 13: | Arbeitsschritte | f\u00fcr | die | Berechnung | der | gew\u00fcnschten | akustischen | Abbildung | 14: | Vorgehensweise | statistische | Kennwerte | ...................................................... | 49 | Abbildung | 15: | Vorgang | f\u00fcr | die | Berechnung | der | Richtcharakteristik | vom | 03.05.2023 | ........ | 52 | Abbildung | 16: | Messpunkte | im | Polarkoordinatensystem | vom | 03.05.2023 | .......................... | 53 | Abbildung | 17: | Messpunkte | im | Polarkoordinatensystem | vom | 27.04.2023 | .......................... | 54 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nSchallleistungspegels ......................................................................................... 13\nKenngr\u00f6\u00dfen ....................................................................................................... 48\n\n## IX\n\nTabellenverzeichnis\n\n## Tabellenverzeichnis\n\nTabelle 1: Ergebnisse der Verladeger\u00e4usche ......................................................................... II Tabelle 2: \u00dcbersicht \u00fcber den Schallleistungspegel verschiedener Vorg\u00e4nge [7] ............... 25 Tabelle 3: \u00dcbersicht \u00fcber die aktuellen Untersuchungsergebnisse .................................... 26 Tabelle 4: \u00dcbersicht \u00fcber die Schallleistungspegel verschiedener Fahrzeugtypen [65] ..... 28 Tabelle 5: \u00dcbersicht \u00fcber die Schallleistungspegel verschiedener Fahrzeugtypen [67] ..... 29 Tabelle 6: Gabelhubwagen [77] ........................................................................................... 36 Tabelle 7: Elektro-Gegengewichtsstapler [78] ..................................................................... 37 Tabelle 8: Verwendete Messger\u00e4te und Equipment ........................................................... 40 Tabelle 9: Handschallpegelmesser Norsonic 140, Stand: 27.07.2021 ................................. 41 Tabelle 10: \u00dcberblick \u00fcber die verschiedenen Messungstage ............................................ 42 Tabelle 11: Emissionsans\u00e4tze f\u00fcr die verschiedenen Flurf\u00f6rderger\u00e4te ............................... 56 Tabelle 12: Vergleich verschiedene Flurf\u00f6rderger\u00e4te mit unterschiedlichen Anh\u00e4ngertypen .................................................................................................. 59\nTabelle 13: Ergebnisse des Richtma\u00dfes mit dazugeh\u00f6rigen Azimuthwinkel f\u00fcr ................. 67\nTabelle 14: Ergebnisse der Validierung ................................................................................ 69\n\n## X\n\n\n## Diagrammverzeichnis\n\n\n## Diagrammverzeichnis\n\nDiagramm 1: Normalverteilung Gabelstapler \u2013 Koffer Anh\u00e4nger Beladung ....................... 61 Diagramm 2: Normalverteilung Gabelstapler \u2013 Wechselbr\u00fccke Beladung ......................... 62 Diagramm 3: Normalverteilung Gabelstapler \u2013 Tautliner Beladung.................................... 63 Diagramm 4: Normalverteilung Gabelhubwagen \u2013 Koffer Beladung .................................. 64 Diagramm 5: Normalverteilung Gabelhubwagen \u2013 Wechselbr\u00fccke Beladung ................... 65 Diagramm 6: Richtwirkung eines Gabelstaplers (38 gesamt Einzelereignisse) ................... 67 Diagramm 7: Richtwirkung eines Gabelhubwagens (83 gesamt Einzelereignisse) .............. 68\n\n## XI\n\nAnh\u00e4nge\n\n## Anh\u00e4nge\n\n\n## Anhang 1: Emissionsdatenbl\u00e4tter\n\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Nr.1\n\n\n## Gabelstapler Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Anh\u00e4nger-Typ\n\n\n## Gemittelt \u00fcber Koffer, Tautliner und Wechselbr\u00fccken\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\n\n## Impulshaltigkeit K\u0131\n\n\n## Standardabweichung der Impulshaltigkeit s\n\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\n\n## XII\n\nAnh\u00e4nge\nXIII\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Nr.2\n\n\n## Gabelhubwagen Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Anh\u00e4nger-Typ\n\n\n## Gemittelt \u00fcber Koffer, Tautliner und Wechselbr\u00fccken\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\nca. 15\n[s]\n\n## Impulshaltigkeit KI\n\n6,2\n[dB(A)]\n\n## Standardabweichung der Impulshaltigkeit s\n\n2,7\n[dB(A)]\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\n\n## Lwar,\u0131h\n\nAnh\u00e4nge\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Gabelstapler Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Anh\u00e4nger-Typ\n\n\n## Tautliner\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\n\n## Impulshaltigkeit K\u0131\n\n\n## Standardabweichung der Impulshaltigkeit s\n\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\n\n## XIV\n\n\n## Nr.3\n\nAnh\u00e4nge\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Gabelstapler Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Anh\u00e4nger-Typ\n\n\n## Koffer\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\n\n## Impulshaltigkeit K\u0131\n\n\n## Standardabweichung der Impulshaltigkeit s\n\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\n\n## Nr.4\n\n\n## XV\n\nAnh\u00e4nge\nXVI\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Nr.5\n\n\n## Gabelstapler Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Anh\u00e4nger-Typ\n\n\n## Wechselbr\u00fccke\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\nca. 15\n[s]\n\n## Impulshaltigkeit K\u0131\n\n\n## Standardabweichung der Impulshaltigkeit s\n\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\nAnh\u00e4nge\nXVII\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Nr.6\n\n\n## Gabelhubwagen Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Koffer\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\n\n## Impulshaltigkeit K\u0131\n\n\n## Standardabweichung der Impulshaltigkeit s\n\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\nAnh\u00e4nge\nXVIII\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Nr.7\n\n\n## Gabelstapler Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Anh\u00e4nger-Typ\n\n\n## Wechselbr\u00fccke\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\nca. 15\n[s]\n\n## Impulshaltigkeit KI\n\n5,0\n[dB(A)]\n\n## Standardabweichung der Impulshaltigkeit s\n\n2,1\n[dB(A)]\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\nAnh\u00e4nge\n\n## Anhang 2: Lagepl\u00e4ne\n\nLageplan Allgemein\n\n[IMAGE: Zeichenerkl\u00e4rung EI +a\u0131e U] Anh\u00e4nger \u00a9 Messpunkt]\n\nLageplan Validierung: 27.04.2023\n\n[IMAGE: Zeichenerkl\u00e4rung EI \u00bbale U) Anh\u00e4nger TI] stachenscranaueite \u00a9 Messpunkt]\n\nXIX\nAnh\u00e4nge\nLageplan Validierung: 03.05.2023\n\n[IMAGE: Zeichenerkl\u00e4rung EEE +are U] Anh\u00e4nger II rtschenschatiaveite, \u00ae Messpunkt.] Lageplan Richtcharakteristik: 27.04.2023\n\n[IMAGE: [U wo IN w) N N Zeichenerkl\u00e4rung EI \u00bbale U] \u201aAnh\u00e4nger II] Ftachenschattauelte \u00ae Messpunkt]\n\n\n## XX\n\nAnh\u00e4nge\nLageplan Richtcharakteristik: 03.05.2023\n\n[IMAGE: Zeichenerkl\u00e4rung EI +a\u0131e U) Anh\u00e4nger [MIT] Ft\u00e4chenschaitauelte \u00a9 Messpunkt]\n\n\n## XXI\n\nAnh\u00e4nge\n\n## Anhang 3: Messprotokolle\n\n\n| Bearbeiterin: | Messgehilfe: | Messzeit: | Wetterbedingungen: | Bedeckungsgrad/Wetter: | Windrichtung/-geschwindigkeit: | Temperatur/ | Luftdruck | Messger\u00e4t: | Mikrofonh\u00f6he: | Bearbeiterin: | Messgehilfe: | Messzeit: | Wetterbedingungen: | Bedeckungsgrad/Wetter: | Windrichtung/-geschwindigkeit: | Temperatur/ | Luftdruck | Messger\u00e4t: | Mikrofonh\u00f6he: | Bearbeiterin: | Messgehilfe: | Messzeit: | Wetterbedingungen: | Bedeckungsgrad/Wetter: | Selin | Karag\u00f6z | Datum: | 17.04.2023 | Tobias | Gassner | 13:24:19 | bis | 14:14:35 | [hh:mm:ss] | Bew\u00f6lkt, | leichter | regen | N-NW/ | 13 | km/h | 8,4 | \u00b0C/ | 1021,5 | hPa | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | 140-1 | (ortsfest) | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | 140-3 | (variabel) | Jeweils | 3,5 | m | Selin | Karag\u00f6z | Datum: | 24.04.2023 | Sebastian | Gerner | ENTF\u00c4LLT | Bew\u00f6lkt | SW/ | 15,1 | km/h | 10 | \u00b0C/ | 1009,4 | hPa | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | 140-1 | (ortsfest) | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | 140-3 | (variabel) | Jeweils | 3,5 | m | Selin | Karag\u00f6z | Datum: | 27.04.2023 | Lena | Roberts | 14:07:26 | bis | 14:50:17 | [hh:mm:ss] | Sonnig |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Windrichtung/-geschwindigkeit:\n\n\n## NW-N-O/ 4,6 km/h\n\n\n## Temperatur/ Luftdruck\n\n11,1 \u00b0C/ 1017,6 hPa\n\n## Norsonic-Tippkemper GmbH Typ 140, geeicht 140-2 (ortsfest)\n\n\n## Messger\u00e4t:\n\n\n## Norsonic-Tippkemper GmbH Typ 140, geeicht 140-2 (variabel)\n\nXXII\nAnh\u00e4nge\n\n| Mikrofonh\u00f6he: | Bearbeiterin: | Messgehilfe: | Messzeit: | Wetterbedingungen: | Bedeckungsgrad/Wetter: | Windrichtung/-geschwindigkeit: | Temperatur/ | Luftdruck | Messger\u00e4t: | Mikrofonh\u00f6he: | Jeweils | 2,5 | m | Selin | Karag\u00f6z | Datum: | 03.05.2023 | Christian | Reutter | 13:45:40 | bis | 15:51:10 | [hh:mm:ss] | Sonnig | N-NO/ | 10,1 | km/h | 12,2 | \u00b0C/ | 1024,1 | hPa | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | 140-3 | (ortsfest) | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | 140-2 | (variabel) | Jeweils | 3,5 | m |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nXXIII\nAnh\u00e4nge\n\n## Anhang 4: Messergebnisse der Beladevorg\u00e4nge\n\nMit: Q1: Gabelstapler; Q2: Gabelhubwagen; 1-Q1,2: Reinfahrt mit Flurf\u00f6rderger\u00e4t Q 1,2; 2-Q1,2: Raus-\nfahrt mit Flurf\u00f6rderger\u00e4t Q 1,2; Q1,2-innen: Flurf\u00f6rderger\u00e4t Q1,2 im Anh\u00e4nger\nVerladevorg\u00e4nge Gabelstapler:\n\n| Vorgang | Lkw- | Typ | Zone | Datum | Uhrzeit | Start | - | Ende | T | [s] | Laeq | [dB(A)] | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | KI | [dB(A)] | r | [m] | LWA,5s | [dB(A)] | LWAmax | [dB(A)] | 1-Q1 | Koffer | H | 17.04.2023 | 13:59:32,000 | - | 17.04.2023 | 13:59:37,000 | 5,0 | 63,9 | 73,7 | 73,7 | 9,8 | 39,6 | 103,8 | 113,6 | 1-Q1 | Plane | C | 17.04.2023 | 14:18:20,000 | - | 17.04.2023 | 14:18:25,000 | 5,0 | 62,7 | 71,4 | 71,4 | 8,7 | 37,5 | 102,2 | 110,9 | 1-Q1 | Plane | C | 17.04.2023 | 14:21:46,000 | - | 17.04.2023 | 14:21:51,000 | 5,0 | 71,8 | 82,3 | 82,3 | 10,5 | 37,5 | 111,3 | 121,8 | 1-Q1 | Plane | C | 17.04.2023 | 14:22:49,000 | - | 17.04.2023 | 14:22:54,000 | 5,0 | 64,9 | 74,5 | 74,5 | 9,6 | 37,5 | 104,4 | 114,0 | 1-Q1 | Plane | C | 17.04.2023 | 14:23:25,000 | - | 17.04.2023 | 14:23:30,000 | 5,0 | 69,9 | 81,6 | 81,6 | 11,7 | 37,5 | 109,4 | 121,1 | 1-Q1 | Plane | C | 17.04.2023 | 14:24:09,000 | - | 17.04.2023 | 14:24:14,000 | 5,0 | 59,1 | 69,3 | 69,3 | 10,2 | 37,5 | 98,6 | 108,8 | 1-Q1 | Plane | C | 17.04.2023 | 14:25:18,000 | - | 17.04.2023 | 14:25:23,000 | 5,0 | 64,2 | 74,3 | 74,3 | 10,1 | 37,5 | 103,7 | 113,8 | 1-Q1 | Plane | C | 17.04.2023 | 14:30:21,000 | - | 17.04.2023 | 14:30:26,000 | 5,0 | 63,5 | 74,2 | 74,2 | 10,7 | 37,5 | 103,0 | 113,7 | 1-Q1 | Plane | C | 17.04.2023 | 14:30:48,000 | - | 17.04.2023 | 14:30:53,000 | 5,0 | 60,4 | 67,2 | 67,2 | 6,8 | 37,5 | 99,9 | 106,7 | 1-Q1 | Plane | C | 17.04.2023 | 14:31:24,000 | - | 17.04.2023 | 14:31:29,000 | 5,0 | 58,6 | 66,1 | 66,1 | 7,5 | 37,5 | 98,1 | 105,6 | 1-Q1 | Plane | C | 17.04.2023 | 14:32:19,000 | - | 17.04.2023 | 14:32:24,000 | 5,0 | 68,6 | 78,0 | 78,0 | 9,4 | 37,5 | 108,1 | 117,5 | 2-Q1 | Plane | C | 17.04.2023 | 13:59:37,000 | - | 17.04.2023 | 13:59:42,000 | 5,0 | 55,2 | 59,7 | 59,7 | 4,5 | 37,5 | 94,7 | 99,2 | 2-Q1 | Plane | C | 17.04.2023 | 14:18:38,000 | - | 17.04.2023 | 14:18:43,000 | 5,0 | 59,3 | 61,9 | 61,9 | 2,6 | 37,5 | 98,8 | 101,4 | 2-Q1 | Plane | C | 17.04.2023 | 14:23:04,000 | - | 17.04.2023 | 14:23:09,000 | 5,0 | 62,6 | 70,7 | 70,7 | 8,1 | 37,5 | 102,1 | 110,2 | 2-Q1 | Plane | C | 17.04.2023 | 14:23:41,000 | - | 17.04.2023 | 14:23:46,000 | 5,0 | 65,2 | 74,4 | 74,4 | 9,2 | 37,5 | 104,7 | 113,9 | 2-Q1 | Plane | C | 17.04.2023 | 14:24:46,000 | - | 17.04.2023 | 14:24:51,000 | 5,0 | 65,4 | 72,2 | 72,2 | 6,8 | 37,5 | 104,9 | 111,7 | 2-Q1 | Plane | C | 17.04.2023 | 14:26:35,000 | - | 17.04.2023 | 14:26:40,000 | 5,0 | 58,4 | 62,6 | 62,6 | 4,2 | 37,5 | 97,9 | 102,1 | 2-Q1 | Plane | C | 17.04.2023 | 14:28:34,000 | - | 17.04.2023 | 14:28:39,000 | 5,0 | 66,1 | 73,9 | 73,9 | 7,8 | 37,5 | 105,6 | 113,4 | 2-Q1 | Plane | C | 17.04.2023 | 14:30:34,000 | - | 17.04.2023 | 14:30:39,000 | 5,0 | 68,1 | 77,7 | 77,7 | 9,6 | 37,5 | 107,6 | 117,2 | 2-Q1 | Plane | C | 17.04.2023 | 14:31:04,000 | - | 17.04.2023 | 14:31:09,000 | 5,0 | 62,6 | 69,4 | 69,4 | 6,8 | 37,5 | 102,1 | 108,9 | 2-Q1 | Plane | C | 17.04.2023 | 14:31:44,000 | - | 17.04.2023 | 14:31:49,000 | 5,0 | 67,6 | 74,1 | 74,1 | 6,5 | 37,5 | 107,1 | 113,6 | 2-Q1 | Plane | C | 17.04.2023 | 14:32:50,000 | - | 17.04.2023 | 14:32:55,000 | 5,0 | 61,3 | 66,5 | 66,5 | 5,2 | 37,5 | 100,8 | 106,0 | LWA,1h | [dB(A)] | 75,3 | 73,6 | 82,7 | 75,8 | 80,8 | 70,0 | 75,1 | 74,4 | 71,3 | 69,5 | 79,5 | 66,1 | 70,2 | 73,5 | 76,1 | 76,3 | 69,3 | 77,0 | 79,0 | 73,5 | 78,5 | 72,2 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Q1-innen\n\n|\n\n## Plane\n\n|\n\n## C\n\n17.04.2023 14:18:25,000 -\n17.04.2023\n17.04.2023 14:18:30,000\n5,0\n|\n59,5\n63,4\n63,4\n3,9\n37,5\n|\n99,0\n102,9\nXXIV\n70,4\nAnh\u00e4nge\n\n| Vorgang | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | Lkw- | Typ | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | WB | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | C | 17.04.2023 | 14:22:54,000 | - | 17.04.2023 | 14:22:59,000 | C | 17.04.2023 | 14:23:31,000 | - | 17.04.2023 | 14:23:36,000 | C | 17.04.2023 | 14:23:36,000 | - | 17.04.2023 | 14:23:41,000 | C | 17.04.2023 | 14:24:14,000 | - | 17.04.2023 | 14:24:19,000 | C | 17.04.2023 | 14:24:33,000 | - | 17.04.2023 | 14:24:38,000 | C | 17.04.2023 | 14:25:23,000 | - | 17.04.2023 | 14:25:28,000 | C | 17.04.2023 | 14:26:29,000 | - | 17.04.2023 | 14:26:34,000 | C | 17.04.2023 | 14:28:27,000 | - | 17.04.2023 | 14:28:32,000 | C | 17.04.2023 | 14:30:26,000 | - | 17.04.2023 | 14:30:31,000 | C | 17.04.2023 | 14:30:53,000 | - | 17.04.2023 | 14:30:58,000 | C | 17.04.2023 | 14:30:58,000 | - | 17.04.2023 | 14:31:03,000 | C | 17.04.2023 | 14:31:29,000 | - | 17.04.2023 | 14:31:34,000 | C | 17.04.2023 | 14:32:24,000 | - | 17.04.2023 | 14:32:29,000 | C | 17.04.2023 | 14:32:32,000 | - | 17.04.2023 | 14:32:37,000 | E | 26.04.2023 | 13:56:38,000 | - | 26.04.2023 | 13:56:43,000 | C | 26.04.2023 | 14:15:52,000 | - | 26.04.2023 | 14:15:57,000 | B | 26.04.2023 | 14:20:41,000 | - | 26.04.2023 | 14:20:46,000 | B | 26.04.2023 | 14:24:59,000 | - | 26.04.2023 | 14:25:04,000 | B | 26.04.2023 | 14:28:07,000 | - | 26.04.2023 | 14:28:12,000 | B | 26.04.2023 | 14:28:37,000 | - | 26.04.2023 | 14:28:42,000 | B | 26.04.2023 | 14:30:15,000 | - | 26.04.2023 | 14:30:20,000 | B | 26.04.2023 | 14:31:35,000 | - | 26.04.2023 | 14:31:40,000 | 26.04.2023 | 14:32:07,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 59,8 | 57,5 | 60,4 | 53,3 | 54,4 | 56,7 | 57,0 | 54,7 | 55,2 | 59,7 | 54,5 | 53,3 | 62,4 | 60,8 | 61,0 | 53,5 | 52,5 | 68,8 | 62,0 | 57,9 | 63,0 | 55,5 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 70,2 | 70,2 | 64,8 | 64,8 | 72,3 | 72,3 | 58,6 | 58,6 | 58,2 | 58,2 | 61,6 | 61,6 | 60,2 | 60,2 | 57,1 | 57,1 | 60,2 | 60,2 | 68,9 | 68,9 | 56,4 | 56,4 | 56,6 | 56,6 | 69,7 | 69,7 | 63,3 | 63,3 | 67,6 | 67,6 | 56,1 | 56,1 | 55,6 | 55,6 | 81,3 | 81,3 | 73,7 | 73,7 | 65,2 | 65,2 | 74,3 | 74,3 | 64,2 | 64,2 | KI | [dB(A)] | 10,4 | 7,3 | 11,9 | 5,3 | 3,8 | 4,9 | 3,2 | 2,4 | 5,0 | 9,2 | 1,9 | 3,3 | 7,3 | 2,5 | 6,6 | 2,6 | 3,1 | 12,5 | 11,7 | 7,3 | 11,3 | 8,7 | r | [m] | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,4 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 99,3 | 97,0 | 99,9 | 92,8 | 93,9 | 96,2 | 96,5 | 94,2 | 94,7 | 99,2 | 94,0 | 92,8 | 101,9 | 100,3 | 100,4 | 93,1 | 92,1 | 108,4 | 101,6 | 97,5 | 102,6 | 95,1 | LWAmax | [dB(A)] | 109,7 | 104,3 | 111,8 | 98,1 | 97,7 | 101,1 | 99,7 | 96,6 | 99,7 | 108,4 | 95,9 | 96,1 | 109,2 | 102,8 | 107,0 | 95,7 | 95,2 | 120,9 | 113,3 | 104,8 | 113,9 | 103,8 | LWA,1h | [dB(A)] | 70,7 | 68,4 | 71,3 | 64,2 | 65,3 | 67,6 | 67,9 | 65,6 | 66,1 | 70,6 | 65,4 | 64,2 | 73,3 | 71,7 | 71,9 | 64,5 | 63,5 | 79,8 | 73,0 | 68,9 | 74,0 | 66,5 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n1-Q1\n\n## Koffer\n\n\n## B\n\n26.04.2023 14:32:12,000\n5,0\n55,1\n60,7\n60,7\n5,6\n38,0\n94,7\n100,3\n1-Q1\n|\n\n## Koffer\n\n\n## B\n\n2023 14:33:34.000\n26.04.2023 14:33:28,000 -\n26.04.2023 14:33:33,000\n5,0\n53,9\n59,8\n59,8\n5,9\n38,0\n93,5\n99,4\n1-Q1\n|\n\n## Koffer\n\n\n## B\n\n26.04.2023 14:34:23,000 -\n2000\n26.04.2023 14:34:28,000\n5,0\n59,5\n63,7\n63,7\n4,2\n38,0\n99,1\n103,3\n1-Q1\n|\n\n## Koffer\n\n\n## B\n\n2023 14:35:23.000\n26.04.2023 14:35:18,000 -\n26.04.2023 14:35:23,000\n5,0\n60,8\n66,8\n66,8\n6,0\n38,0\n100,4\n|\n106,4\n1-Q1\n|\n\n## Koffer\n\n\n## F\n\n26.04.2023 14:36:10,000 -\n26.04.2023 14:36:15,000\n5,0\n|\n61,5\n66,2\n66,2\n4,7\n37,9\n101,0\n|\n105,7\nXXV\n66,1\n64,9\n70,5\n71,8\n72,5\nAnh\u00e4nge\n\n| Vorgang | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | WB | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | B | 26.04.2023 | 14:37:51,000 | - | 26.04.2023 | 14:37:56,000 | B | 26.04.2023 | 14:41:18,000 | - | 26.04.2023 | 14:41:23,000 | B | 26.04.2023 | 14:52:56,000 | - | 26.04.2023 | 14:53:01,000 | B | 26.04.2023 | 14:55:18,000 | - | 26.04.2023 | 14:55:23,000 | E | 26.04.2023 | 13:56:53,000 | - | 26.04.2023 | 13:56:58,000 | C | 26.04.2023 | 14:15:07,000 | - | 26.04.2023 | 14:15:12,000 | B | 26.04.2023 | 14:20:51,000 | - | 26.04.2023 | 14:20:56,000 | B | 26.04.2023 | 14:25:14,000 | - | 26.04.2023 | 14:25:19,000 | B | 26.04.2023 | 14:28:20,000 | - | 26.04.2023 | 14:28:25,000 | B | 26.04.2023 | 14:28:48,000 | - | 26.04.2023 | 14:28:53,000 | B | 26.04.2023 | 14:29:15,000 | - | 26.04.2023 | 14:29:20,000 | B | 26.04.2023 | 14:31:53,000 | - | 26.04.2023 | 14:31:58,000 | B | 26.04.2023 | 14:32:18,000 | - | 26.04.2023 | 14:32:23,000 | B | 26.04.2023 | 14:33:40,000 | - | 26.04.2023 | 14:33:45,000 | B | 26.04.2023 | 14:34:46,000 | - | 26.04.2023 | 14:34:51,000 | B | 26.04.2023 | 14:35:34,000 | - | 26.04.2023 | 14:35:39,000 | B | 26.04.2023 | 14:37:33,000 | - | 26.04.2023 | 14:37:38,000 | F | 26.04.2023 | 14:38:01,000 | - | 26.04.2023 | 14:38:06,000 | F | 26.04.2023 | 14:38:39,000 | - | 26.04.2023 | 14:38:44,000 | B | 26.04.2023 | 14:39:48,000 | - | 26.04.2023 | 14:39:53,000 | B | 26.04.2023 | 14:40:59,000 | - | 26.04.2023 | 14:41:04,000 | B | 26.04.2023 | 14:41:30,000 | - | 26.04.2023 | 14:41:35,000 | 26.04.2023 | 14:48:05,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 62,1 | 56,2 | 54,8 | 57,6 | 65,9 | 63,1 | 54,7 | 62,9 | 61,9 | 62,8 | 62,8 | 62,5 | 63,8 | 60,4 | 61,6 | 59,5 | 67,1 | 62,8 | 58,0 | 64,2 | 58,8 | 59,4 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 67,2 | 67,2 | 60,1 | 60,1 | 64,7 | 64,7 | 61,2 | 61,2 | 74,6 | 74,6 | 69,2 | 69,2 | 64,1 | 64,1 | 72,8 | 72,8 | 70,7 | 70,7 | 69,6 | 69,6 | 72,1 | 72,1 | 72,9 | 72,9 | 74,0 | 74,0 | 70,0 | 70,0 | 67,8 | 67,8 | 62,5 | 62,5 | 69,7 | 69,7 | 69,4 | 69,4 | 64,0 | 64,0 | 69,7 | 69,7 | 66,3 | 66,3 | 67,3 | 67,3 | KI | [dB(A)] | 5,1 | 3,9 | 9,9 | 3,6 | 8,7 | 6,1 | 9,4 | 9,9 | 8,8 | 6,8 | 9,3 | 10,4 | 10,2 | 9,6 | 6,2 | 3,0 | 2,6 | 6,6 | 6,0 | 5,5 | 7,5 | 7,9 | r | [m] | 38,0 | 38,0 | 38,0 | 38,0 | 37,4 | 37,5 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 37,9 | 37,9 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 101,7 | 95,8 | 94,4 | 97,2 | 105,3 | 102,6 | 94,3 | 102,5 | 101,5 | 102,4 | 102,4 | 102,1 | 103,4 | 100,0 | 101,2 | 99,1 | 106,7 | 102,3 | 97,6 | 103,8 | 98,4 | 99,0 | LWAmax | [dB(A)] | 106,8 | 99,7 | 104,3 | 100,8 | 114,0 | 108,7 | 103,7 | 112,4 | 110,3 | 109,2 | 111,7 | 112,5 | 113,6 | 109,6 | 107,4 | 102,1 | 109,3 | 108,9 | 103,6 | 109,3 | 105,9 | 106,9 | LWA,1h | [dB(A)] | 73,1 | 67,2 | 65,8 | 68,6 | 76,8 | 74,0 | 65,7 | 73,9 | 72,9 | 73,8 | 73,8 | 73,5 | 74,8 | 71,4 | 72,6 | 70,5 | 78,1 | 73,8 | 69,0 | 75,2 | 69,8 | 70,4 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n2-Q1\n\n## Koffer\n\n\n## C\n\n26.04.2023 14:48:10,000\n5,0\n56,7\n60,8\n60,8\n4,1\n37,5\n96,2\n100,3\n2-Q1\n\n## WB\n\n\n## E\n\n26.04.2023 14:49:12,000 -\n7000\n26.04.2023 14:49:17,000\n5,0\n63,9\n74,8\n74,8\n|\n10,9\n37,4\n103,3\n|\n114,2\n2-Q1\n2-Q1\n|\n\n## WB\n\n\n## Koffer\n\n\n## E\n\n\n## B\n\n2023 14:52:43.000 2023 14:53:24.000\n26.04.2023 14:52:37,000 -\n26.04.2023 14:52:42,000\n26.04.2023 14:53:19,000 -\n26.04.2023 14:53:24,000\n5,0\n5,0\n54,2\n57,9\n62,0\n67,3\n62,0\n67,3\n7,8\n9,4\n37,4\n38,0\n|\n93,6\n97,5\n101,4\n106,9\n2-Q1\n|\n\n## Koffer\n\n\n## B\n\n26.04.2023 14:54:13,000 -\n26.04.2023 14:54:18,000\n5,0\n|\n59,5\n67,4\n67,4\n7,9\n38,0\n99,1\n107,0\nXXVI\n67,6\n74,8\n65,1\n68,9\n70,5\nAnh\u00e4nge\n\n| Vorgang | Lkw- | Typ | 2-Q1 | Koffer | 2-Q1 | Koffer | 2-Q1 | Koffer | Q1-innen | WB | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | 1-Q1 | Koffer | 1-Q1 | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | B | 26.04.2023 | 14:54:51,000 | - | 26.04.2023 | 14:54:56,000 | B | 26.04.2023 | 14:55:45,000 | - | 26.04.2023 | 14:55:50,000 | C | 26.04.2023 | 15:03:10,000 | - | 26.04.2023 | 15:03:15,000 | E | 26.04.2023 | 13:56:43,000 | - | 26.04.2023 | 13:56:48,000 | C | 26.04.2023 | 14:15:02,000 | - | 26.04.2023 | 14:15:07,000 | B | 26.04.2023 | 14:15:57,000 | - | 26.04.2023 | 14:16:02,000 | B | 26.04.2023 | 14:20:46,000 | - | 26.04.2023 | 14:20:51,000 | B | 26.04.2023 | 14:25:04,000 | - | 26.04.2023 | 14:25:09,000 | B | 26.04.2023 | 14:28:15,000 | - | 26.04.2023 | 14:28:20,000 | B | 26.04.2023 | 14:28:42,000 | - | 26.04.2023 | 14:28:47,000 | B | 26.04.2023 | 14:29:10,000 | - | 26.04.2023 | 14:29:15,000 | B | 26.04.2023 | 14:31:40,000 | - | 26.04.2023 | 14:31:45,000 | B | 26.04.2023 | 14:32:12,000 | - | 26.04.2023 | 14:32:17,000 | B | 26.04.2023 | 14:35:23,000 | - | 26.04.2023 | 14:35:28,000 | B | 26.04.2023 | 14:37:56,000 | - | 26.04.2023 | 14:38:01,000 | F | 26.04.2023 | 14:41:25,000 | - | 26.04.2023 | 14:41:30,000 | B | 26.04.2023 | 14:53:01,000 | - | 26.04.2023 | 14:53:06,000 | B | 26.04.2023 | 14:53:06,000 | - | 26.04.2023 | 14:53:11,000 | B | 26.04.2023 | 14:54:45,000 | - | 26.04.2023 | 14:54:51,000 | B | 26.04.2023 | 14:55:23,000 | - | 26.04.2023 | 14:55:28,000 | B | 27.04.2023 | 14:08:34,000 | - | 27.04.2023 | 14:08:39,000 | B | 27.04.2023 | 14:10:07,000 | - | 27.04.2023 | 14:10:12,000 | 27.04.2023 | 14:12:10,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 58,3 | 61,4 | 52,2 | 60,4 | 66,8 | 61,4 | 50,9 | 54,5 | 53,4 | 55,3 | 56,7 | 51,9 | 52,5 | 64,3 | 60,7 | 56,1 | 57,6 | 53,8 | 56,1 | 57,5 | 52,1 | 53,1 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 64,2 | 64,2 | 71,0 | 71,0 | 55,5 | 55,5 | 67,1 | 67,1 | 74,5 | 74,5 | 66,8 | 66,8 | 54,7 | 54,7 | 57,8 | 57,8 | 62,9 | 62,9 | 60,2 | 60,2 | 59,2 | 59,2 | 55,3 | 55,3 | 56,9 | 56,9 | 77,4 | 77,4 | 63,8 | 63,8 | 60,1 | 60,1 | 67,2 | 67,2 | 64,0 | 64,0 | 57,8 | 57,8 | 59,8 | 59,8 | 55,1 | 55,1 | 57,7 | 57,7 | KI | [dB(A)] | 5,9 | 9,6 | 3,3 | 6,7 | 7,7 | 5,4 | 3,8 | 3,3 | 9,5 | 4,9 | 2,5 | 3,4 | 4,4 | 13,1 | 3,1 | 4,0 | 9,6 | 10,2 | 1,7 | 2,3 | 3,0 | 4,6 | r | [m] | 38,0 | 38,0 | 38,0 | 37,5 | 37,4 | 37,5 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 97,9 | 101,0 | 91,8 | 99,9 | 106,2 | 100,9 | 90,5 | 94,1 | 93,0 | 94,9 | 96,3 | 91,5 | 92,1 | 103,9 | 100,3 | 95,6 | 97,2 | 93,4 | 95,7 | 97,1 | 91,7 | 92,7 | LWAmax | [dB(A)] | 103,8 | 110,6 | 95,1 | 106,6 | 113,9 | 106,3 | 94,3 | 97,4 | 102,5 | 99,8 | 98,8 | 94,9 | 96,5 | 117,0 | 103,4 | 99,6 | 106,8 | 103,6 | 97,4 | 99,4 | 94,7 | 97,3 | LWA,1h | [dB(A)] | 69,3 | 72,4 | 63,2 | 71,3 | 77,7 | 72,3 | 61,9 | 65,5 | 64,4 | 66,3 | 67,7 | 62,9 | 63,5 | 75,3 | 71,7 | 67,1 | 68,6 | 64,8 | 67,1 | 68,5 | 63,1 | 64,1 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n1-Q1\n\n## Koffer\n\n\n## B\n\n27.04.2023 14:12:15,000\n5,0\n56,2\n65,4\n65,4\n9,2\n38,0\n95,8\n105,0\n1-Q1\n|\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:12:40,000 -\n\n## N a0. 27.04.2023 14:12:45,000\n5,0\n55,6\n60,1\n60,1\n4,5\n37,5\n95,1\n99,6\n1-Q1\n1-Q1\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## B\n\n\n## B\n\n2023 141612.000 2023\n27.04.2023 14:16:24,000 -\n27.04.2023 14:16:29,000\n27.04.2023 14:17:11,000 -\n000\n27.04.2023 14:17:16,000\n5,0\n5,0\n55,5\n59,6\n62,0\n70,6\n62,0\n70,6\n|\n6,5\n11,0\n38,0\n38,0\n95,1\n99,2\n101,6\n110,2\n1-Q1\n|\n\n## Koffer\n\n\n## F\n\n27.04.2023 14:26:21,000 -\n27.04.2023 14:26:26,000\n5,0\n|\n58,6\n69,0\n69,0\n69,0\n|\n10,4\n37,9\n98,2\n108,6\nXXVII\n67,2\n66,5\n66,5\n70,6\n69,6\nAnh\u00e4nge\n\n| Vorgang | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 2-Q1 | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | F | 27.04.2023 | 14:27:00,000 | - | 27.04.2023 | 14:27:05,000 | F | 27.04.2023 | 14:27:39,000 | - | 27.04.2023 | 14:27:44,000 | C | 27.04.2023 | 14:28:32,000 | - | 27.04.2023 | 14:28:37,000 | B | 27.04.2023 | 14:29:15,000 | - | 27.04.2023 | 14:29:20,000 | B | 27.04.2023 | 14:30:13,000 | - | 27.04.2023 | 14:30:18,000 | F | 27.04.2023 | 14:30:36,000 | - | 27.04.2023 | 14:30:41,000 | F | 27.04.2023 | 14:31:05,000 | - | 27.04.2023 | 14:31:10,000 | B | 27.04.2023 | 14:31:28,000 | - | 27.04.2023 | 14:31:33,000 | F | 27.04.2023 | 14:31:56,000 | - | 27.04.2023 | 14:32:01,000 | B | 27.04.2023 | 14:32:24,000 | - | 27.04.2023 | 14:32:29,000 | B | 27.04.2023 | 14:32:44,000 | - | 27.04.2023 | 14:32:49,000 | F | 27.04.2023 | 14:33:40,000 | - | 27.04.2023 | 14:33:45,000 | B | 27.04.2023 | 14:37:36,000 | - | 27.04.2023 | 14:37:41,000 | B | 27.04.2023 | 14:38:46,000 | - | 27.04.2023 | 14:38:51,000 | F | 27.04.2023 | 14:39:04,000 | - | 27.04.2023 | 14:39:09,000 | F | 27.04.2023 | 14:40:04,000 | - | 27.04.2023 | 14:40:09,000 | F | 27.04.2023 | 14:41:21,000 | - | 27.04.2023 | 14:41:26,000 | F | 27.04.2023 | 14:41:26,000 | - | 27.04.2023 | 14:41:32,000 | B | 27.04.2023 | 14:42:53,000 | - | 27.04.2023 | 14:42:58,000 | F | 27.04.2023 | 14:43:23,000 | - | 27.04.2023 | 14:43:28,000 | F | 27.04.2023 | 14:47:11,000 | - | 27.04.2023 | 14:47:16,000 | B | 27.04.2023 | 14:09:08,000 | - | 27.04.2023 | 14:09:13,000 | 27.04.2023 | 14:10:20,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 55,9 | 58,5 | 65,6 | 59,4 | 50,9 | 56,5 | 56,5 | 53,6 | 57,0 | 55,8 | 70,9 | 61,3 | 55,4 | 60,7 | 59,6 | 60,5 | 51,0 | 54,2 | 61,7 | 69,3 | 63,4 | 54,9 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 63,3 | 63,3 | 62,7 | 62,7 | 77,2 | 77,2 | 62,0 | 62,0 | 57,7 | 57,7 | 61,9 | 61,9 | 63,5 | 63,5 | 56,7 | 56,7 | 62,4 | 62,4 | 60,8 | 60,8 | 77,5 | 77,5 | 66,7 | 66,7 | 61,1 | 61,1 | 68,3 | 68,3 | 63,4 | 63,4 | 63,4 | 63,4 | 53,6 | 53,6 | 59,4 | 59,4 | 68,7 | 68,7 | 76,2 | 76,2 | 70,5 | 70,5 | 62,3 | 62,3 | KI | [dB(A)] | 7,4 | 4,2 | 11,6 | 2,6 | 6,8 | 5,4 | 7,0 | 3,1 | 5,4 | 5,0 | 6,6 | 5,4 | 5,7 | 7,6 | 3,8 | 2,9 | 2,6 | 5,2 | 7,0 | 6,9 | 7,1 | 7,4 | r | [m] | 37,9 | 37,9 | 37,5 | 38,0 | 38,0 | 37,9 | 37,9 | 38,0 | 37,9 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 37,9 | 37,9 | 37,9 | 37,9 | 38,0 | 37,9 | 37,9 | 38,0 | LWA,5s | [dB(A)] | 95,5 | 98,1 | 105,1 | 99,0 | 90,5 | 96,1 | 96,1 | 93,2 | 96,6 | 95,4 | 110,5 | 100,9 | 95,0 | 100,3 | 99,2 | 100,1 | 90,6 | 93,8 | 101,3 | 108,9 | 103,0 | 94,5 | LWAmax | [dB(A)] | 102,9 | 102,3 | 116,7 | 101,6 | 97,3 | 101,5 | 103,1 | 96,3 | 102,0 | 100,4 | 117,1 | 106,3 | 100,7 | 107,9 | 103,0 | 103,0 | 93,2 | 99,0 | 108,3 | 115,8 | 110,1 | 101,9 | LWA,1h | [dB(A)] | 66,9 | 69,5 | 76,5 | 70,4 | 61,9 | 67,5 | 67,5 | 64,6 | 68,0 | 66,8 | 81,9 | 72,3 | 66,4 | 71,7 | 70,6 | 71,5 | 62,0 | 65,2 | 72,7 | 80,3 | 74,4 | 65,9 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n2-Q1\n\n## Koffer\n\n\n## B\n\n27.04.2023 14:10:25,000\n5,0\n59,0\n65,7\n65,7\n6,7\n38,0\n98,6\n105,3\n2-Q1\n|\n\n## Koffer\n\n\n## B\n\n27.04.2023 14:12:31,000 -\n\n## N ao. 27.04.2023 14:12:36,000\n5,0\n56,3\n62,8\n62,8\n6,5\n38,0\n95,9\n102,4\n2-Q1\n2-Q1\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## C\n\n\n## B\n\n2023 1438.00 2023\n27.04.2023 14:13:13,000 -\n27.04.2023 14:13:18,000\n27.04.2023 14:15:11,000 -\n000\n27.04.2023 14:15:16,000\n5,0\n5,0\n64,0\n61,8\n74,4\n66,2\n74,4\n66,2\n|\n10,4\n4,4\n37,5\n38,0\n|\n103,5\n101,4\n|\n|\n113,9\n105,8\n2-Q1\n|\n\n## Koffer\n\n\n## B\n\n27.04.2023 14:16:58,000 -\n27.04.2023 14:17:03,000\n5,0\n|\n55,1\n60,5\n60,5\n5,4\n38,0\n94,7\n100,1\nXXVIII\n70,0\n67,3\n74,9\n72,8\n66,1\nAnh\u00e4nge\n\n| Vorgang | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | F | 27.04.2023 | 14:17:49,000 | - | 27.04.2023 | 14:17:54,000 | F | 27.04.2023 | 14:26:36,000 | - | 27.04.2023 | 14:26:41,000 | F | 27.04.2023 | 14:27:15,000 | - | 27.04.2023 | 14:27:20,000 | C | 27.04.2023 | 14:27:58,000 | - | 27.04.2023 | 14:28:03,000 | B | 27.04.2023 | 14:28:42,000 | - | 27.04.2023 | 14:28:47,000 | B | 27.04.2023 | 14:29:27,000 | - | 27.04.2023 | 14:29:32,000 | F | 27.04.2023 | 14:29:32,000 | - | 27.04.2023 | 14:29:37,000 | F | 27.04.2023 | 14:30:31,000 | - | 27.04.2023 | 14:30:36,000 | B | 27.04.2023 | 14:30:50,000 | - | 27.04.2023 | 14:30:55,000 | F | 27.04.2023 | 14:31:16,000 | - | 27.04.2023 | 14:31:21,000 | B | 27.04.2023 | 14:31:48,000 | - | 27.04.2023 | 14:31:53,000 | B | 27.04.2023 | 14:32:02,000 | - | 27.04.2023 | 14:32:07,000 | F | 27.04.2023 | 14:33:07,000 | - | 27.04.2023 | 14:33:12,000 | B | 27.04.2023 | 14:33:53,000 | - | 27.04.2023 | 14:33:58,000 | B | 27.04.2023 | 14:38:00,000 | - | 27.04.2023 | 14:38:05,000 | F | 27.04.2023 | 14:38:57,000 | - | 27.04.2023 | 14:39:02,000 | F | 27.04.2023 | 14:39:18,000 | - | 27.04.2023 | 14:39:23,000 | F | 27.04.2023 | 14:40:19,000 | - | 27.04.2023 | 14:40:24,000 | F | 27.04.2023 | 14:41:03,000 | - | 27.04.2023 | 14:41:08,000 | B | 27.04.2023 | 14:41:08,000 | - | 27.04.2023 | 14:41:13,000 | F | 27.04.2023 | 14:41:37,000 | - | 27.04.2023 | 14:41:42,000 | F | 27.04.2023 | 14:47:22,000 | - | 27.04.2023 | 14:47:27,000 | 27.04.2023 | 14:08:39,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 62,8 | 58,5 | 63,0 | 69,3 | 64,2 | 57,8 | 65,9 | 54,2 | 62,8 | 58,4 | 65,2 | 64,5 | 63,6 | 63,9 | 60,5 | 59,6 | 60,1 | 59,8 | 56,5 | 62,0 | 53,8 | 70,1 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 65,7 | 65,7 | 65,7 | 65,7 | 68,5 | 68,5 | 70,6 | 70,6 | 70,8 | 70,8 | 64,0 | 64,0 | 71,5 | 71,5 | 60,6 | 60,6 | 73,8 | 73,8 | 65,0 | 65,0 | 77,0 | 77,0 | 72,9 | 72,9 | 71,5 | 71,5 | 74,7 | 74,7 | 64,7 | 64,7 | 65,8 | 65,8 | 61,2 | 61,2 | 62,2 | 62,2 | 62,4 | 62,4 | 72,8 | 72,8 | 57,5 | 57,5 | 82,5 | 82,5 | KI | [dB(A)] | 2,9 | 7,2 | 5,5 | 1,3 | 6,6 | 6,2 | 5,6 | 6,4 | 11,0 | 6,6 | 11,8 | 8,4 | 7,9 | 10,8 | 4,2 | 6,2 | 1,1 | 2,4 | 5,9 | 10,8 | 3,7 | 12,4 | r | [m] | 37,9 | 37,9 | 37,9 | 37,5 | 38,0 | 38,0 | 37,9 | 37,9 | 38,0 | 37,9 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 37,9 | 37,9 | 37,9 | 37,9 | 38,0 | 37,9 | 37,9 | LWA,5s | [dB(A)] | 102,4 | 98,1 | 102,6 | 108,8 | 103,8 | 97,4 | 105,5 | 93,8 | 102,4 | 98,0 | 104,8 | 104,1 | 103,2 | 103,5 | 100,1 | 99,2 | 99,7 | 99,4 | 96,1 | 101,6 | 93,4 | 109,7 | LWAmax | [dB(A)] | 105,3 | 105,3 | 108,1 | 110,1 | 110,4 | 103,6 | 111,1 | 100,2 | 113,4 | 104,6 | 116,6 | 112,5 | 111,1 | 114,3 | 104,3 | 105,4 | 100,8 | 101,8 | 102,0 | 112,4 | 97,1 | 122,1 | LWA,1h | [dB(A)] | 73,8 | 69,5 | 74,0 | 80,2 | 75,2 | 68,8 | 76,9 | 65,2 | 73,8 | 69,4 | 76,2 | 75,5 | 74,6 | 74,9 | 71,5 | 70,6 | 71,1 | 70,8 | 67,5 | 73,0 | 64,8 | 81,1 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Q1-innen\n\n\n## Koffer\n\n\n## B\n\n27.04.2023 14:08:44,000\n5,0\n55,1\n60,0\n60,0\n4,9\n38,0\n94,7\n99,6\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## B\n\n27.04.2023 14:10:12,000 -\nN 000\n27.04.2023 14:10:17,000\n5,0\n53,3\n56,1\n56,1\n2,8\n38,0\n92,9\n95,7\n\n## Q1-innen\n\n\n## Q1-innen\n\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## B\n\n\n## B\n\n2023 141220000 2023 1412:20.000\n27.04.2023 14:12:15,000 -\n27.04.2023 14:12:20,000\n27.04.2023 14:12:24,000 -\n27.04.2023 14:12:29,000\n5,0\n5,0\n56,9\n53,1\n60,3\n54,9\n60,3\n54,9\n3,4\n1,8\n38,0\n38,0\n|\n96,5\n92,7\n99,9\n94,5\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:13:01,000 -\n27.04.2023 14:13:06,000\n5,0\n|\n58,3\n62,0\n62,0\n3,7\n37,5\n|\n97,8\n101,5\nXXIX\n66,1\n64,3\n67,9\n64,1\n69,2\nAnh\u00e4nge\n\n| Vorgang | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | 1-Q1 | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | C | 27.04.2023 | 14:13:08,000 | - | 27.04.2023 | 14:13:13,000 | B | 27.04.2023 | 14:16:39,000 | - | 27.04.2023 | 14:16:44,000 | B | 27.04.2023 | 14:16:44,000 | - | 27.04.2023 | 14:16:49,000 | F | 27.04.2023 | 14:26:26,000 | - | 27.04.2023 | 14:26:31,000 | F | 27.04.2023 | 14:26:31,000 | - | 27.04.2023 | 14:26:36,000 | F | 27.04.2023 | 14:27:05,000 | - | 27.04.2023 | 14:27:10,000 | F | 27.04.2023 | 14:27:10,000 | - | 27.04.2023 | 14:27:15,000 | F | 27.04.2023 | 14:27:48,000 | - | 27.04.2023 | 14:27:53,000 | F | 27.04.2023 | 14:28:37,000 | - | 27.04.2023 | 14:28:42,000 | F | 27.04.2023 | 14:29:20,000 | - | 27.04.2023 | 14:29:25,000 | B | 27.04.2023 | 14:31:10,000 | - | 27.04.2023 | 14:31:15,000 | F | 27.04.2023 | 14:32:50,000 | - | 27.04.2023 | 14:32:55,000 | F | 27.04.2023 | 14:37:41,000 | - | 27.04.2023 | 14:37:46,000 | B | 27.04.2023 | 14:37:46,000 | - | 27.04.2023 | 14:37:51,000 | B | 27.04.2023 | 14:38:51,000 | - | 27.04.2023 | 14:38:56,000 | F | 27.04.2023 | 14:39:09,000 | - | 27.04.2023 | 14:39:14,000 | F | 27.04.2023 | 14:40:10,000 | - | 27.04.2023 | 14:40:15,000 | B | 27.04.2023 | 14:41:32,000 | - | 27.04.2023 | 14:41:37,000 | F | 27.04.2023 | 14:42:58,000 | - | 27.04.2023 | 14:43:03,000 | F | 27.04.2023 | 14:43:28,000 | - | 27.04.2023 | 14:43:33,000 | F | 27.04.2023 | 14:47:16,000 | - | 27.04.2023 | 14:47:21,000 | C | 03.05.2023 | 13:55:47,000 | - | 03.05.2023 | 13:55:52,000 | 03.05.2023 | 13:55:58,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 59,5 | 54,5 | 54,9 | 54,6 | 54,4 | 65,3 | 54,5 | 62,4 | 55,6 | 54,4 | 56,1 | 57,0 | 67,0 | 55,2 | 60,3 | 61,3 | 59,2 | 52,8 | 61,8 | 65,6 | 63,6 | 50,2 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 64,0 | 64,0 | 58,2 | 58,2 | 58,6 | 58,6 | 61,7 | 61,7 | 59,2 | 59,2 | 77,7 | 77,7 | 61,8 | 61,8 | 71,1 | 71,1 | 69,4 | 69,4 | 57,8 | 57,8 | 65,1 | 65,1 | 63,4 | 63,4 | 77,6 | 77,6 | 59,1 | 59,1 | 65,9 | 65,9 | 69,1 | 69,1 | 59,9 | 59,9 | 57,0 | 57,0 | 67,6 | 67,6 | 67,4 | 67,4 | 73,2 | 73,2 | 53,0 | 53,0 | KI | [dB(A)] | 4,5 | 3,7 | 3,7 | 7,1 | 4,8 | 12,4 | 7,3 | 8,7 | 13,8 | 3,4 | 9,0 | 6,4 | 10,6 | 3,9 | 5,6 | 7,8 | 0,7 | 4,2 | 5,8 | 1,8 | 9,6 | 2,8 | r | [m] | 37,5 | 38,0 | 38,0 | 37,9 | 37,9 | 37,9 | 37,9 | 37,9 | 37,9 | 37,9 | 38,0 | 37,9 | 37,9 | 38,0 | 38,0 | 37,9 | 37,9 | 38,0 | 37,9 | 37,9 | 37,9 | 37,5 | LWA,5s | [dB(A)] | 99,0 | 94,1 | 94,5 | 94,2 | 94,0 | 104,9 | 94,1 | 102,0 | 95,2 | 94,0 | 95,7 | 96,6 | 106,6 | 94,8 | 99,9 | 100,9 | 98,8 | 92,4 | 101,4 | 105,2 | 103,2 | 89,7 | LWAmax | [dB(A)] | 103,5 | 97,8 | 98,2 | 101,3 | 98,8 | 117,3 | 101,4 | 110,7 | 109,0 | 97,4 | 104,7 | 103,0 | 117,2 | 98,7 | 105,5 | 108,7 | 99,5 | 96,6 | 107,2 | 107,0 | 112,8 | 92,5 | LWA,1h | [dB(A)] | 70,4 | 65,5 | 65,9 | 65,6 | 65,4 | 76,3 | 65,5 | 73,4 | 66,6 | 65,4 | 67,1 | 68,0 | 78,0 | 66,2 | 71,3 | 72,3 | 70,2 | 63,8 | 72,8 | 76,6 | 74,6 | 61,1 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n1-Q1\n\n## Koffer\n\n\n## C\n\n03.05.2023 13:56:03,000\n5,0\n48,4\n51,5\n51,5\n3,1\n37,5\n87,9\n91,0\n1-Q1\n1-Q1\n1-Q1\n|\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## Koffer\n\n\n## C\n\n\n## D\n\n\n## D\n\n2023 13:97:54.000 2023 14:30:12.000 2023 1:33:41.000\n03.05.2023 13:57:48,000 -\n03.05.2023 13:57:53,000\n03.05.2023 14:30:12,000 -\n03.05.2023 14:30:17,000\n03.05.2023 14:33:36,000 -\n03.05.2023 14:33:41,000\n5,0\n5,0\n5,0\n63,6\n53,5\n50,5\n66,3\n56,4\n54,2\n66,3\n56,4\n54,2\n2,7\n2,9\n3,7\n37,5\n37,4\n37,4\n103,1\n92,9\n89,9\n|\n105,8\n95,8\n93,6\n1-Q1\n|\n\n## Koffer\n\n\n## D\n\n03.05.2023 14:36:11,000 -\n03.05.2023 14:36:16,000\n5,0\n|\n52,2\n55,2\n55,2\n3,0\n37,4\n91,6\n94,6\nXXX\n59,3\n74,5\n64,4\n61,4\n63,1\nAnh\u00e4nge\n\n| Vorgang | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | F | 03.05.2023 | 14:47:17,000 | - | 03.05.2023 | 14:47:22,000 | F | 03.05.2023 | 14:49:40,000 | - | 03.05.2023 | 14:49:45,000 | B | 03.05.2023 | 15:07:07,000 | - | 03.05.2023 | 15:07:12,000 | B | 03.05.2023 | 15:08:42,000 | - | 03.05.2023 | 15:08:47,000 | B | 03.05.2023 | 15:09:52,000 | - | 03.05.2023 | 15:09:57,000 | B | 03.05.2023 | 15:12:55,000 | - | 03.05.2023 | 15:13:00,000 | B | 03.05.2023 | 15:16:57,000 | - | 03.05.2023 | 15:17:02,000 | B | 03.05.2023 | 15:17:48,000 | - | 03.05.2023 | 15:17:53,000 | B | 03.05.2023 | 15:19:08,000 | - | 03.05.2023 | 15:19:13,000 | B | 03.05.2023 | 15:23:57,000 | - | 03.05.2023 | 15:24:03,000 | B | 03.05.2023 | 15:26:12,000 | - | 03.05.2023 | 15:26:17,000 | B | 03.05.2023 | 15:29:17,000 | - | 03.05.2023 | 15:29:22,000 | F | 03.05.2023 | 15:29:28,000 | - | 03.05.2023 | 15:29:33,000 | B | 03.05.2023 | 15:32:16,000 | - | 03.05.2023 | 15:32:21,000 | B | 03.05.2023 | 15:33:05,000 | - | 03.05.2023 | 15:33:10,000 | B | 03.05.2023 | 15:36:15,000 | - | 03.05.2023 | 15:36:20,000 | B | 03.05.2023 | 15:38:06,000 | - | 03.05.2023 | 15:38:11,000 | B | 03.05.2023 | 15:41:24,000 | - | 03.05.2023 | 15:41:29,000 | B | 03.05.2023 | 15:43:22,000 | - | 03.05.2023 | 15:43:27,000 | B | 03.05.2023 | 15:44:52,000 | - | 03.05.2023 | 15:44:57,000 | B | 03.05.2023 | 15:47:38,000 | - | 03.05.2023 | 15:47:43,000 | B | 03.05.2023 | 15:51:10,000 | - | 03.05.2023 | 15:51:15,000 | 03.05.2023 | 13:55:53,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 60,2 | 51,7 | 55,3 | 66,9 | 56,2 | 56,8 | 56,9 | 58,1 | 53,5 | 55,4 | 62,0 | 53,1 | 52,9 | 52,7 | 59,3 | 58,2 | 70,0 | 56,1 | 52,8 | 50,4 | 53,6 | 53,8 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 66,3 | 66,3 | 58,3 | 58,3 | 62,8 | 62,8 | 70,5 | 70,5 | 60,2 | 60,2 | 59,7 | 59,7 | 60,3 | 60,3 | 62,8 | 62,8 | 57,1 | 57,1 | 60,9 | 60,9 | 64,8 | 64,8 | 55,7 | 55,7 | 57,1 | 57,1 | 60,1 | 60,1 | 64,7 | 64,7 | 62,3 | 62,3 | 79,3 | 79,3 | 59,6 | 59,6 | 61,5 | 61,5 | 54,2 | 54,2 | 57,1 | 57,1 | 62,5 | 62,5 | KI | [dB(A)] | 6,1 | 6,6 | 7,5 | 3,6 | 4,0 | 2,9 | 3,4 | 4,7 | 3,6 | 5,5 | 2,8 | 2,6 | 4,2 | 7,4 | 5,4 | 4,1 | 9,3 | 3,5 | 8,7 | 3,8 | 3,5 | 8,7 | r | [m] | 37,9 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 99,8 | 91,3 | 94,9 | 106,5 | 95,8 | 96,4 | 96,5 | 97,7 | 93,1 | 95,0 | 101,6 | 92,7 | 92,5 | 92,3 | 98,9 | 97,8 | 109,6 | 95,7 | 92,4 | 90,0 | 93,2 | 93,4 | LWAmax | [dB(A)] | 105,9 | 97,9 | 102,4 | 110,1 | 99,8 | 99,3 | 99,9 | 102,4 | 96,7 | 100,5 | 104,4 | 95,3 | 96,7 | 99,7 | 104,3 | 101,9 | 118,9 | 99,2 | 101,1 | 93,8 | 96,7 | 102,1 | LWA,1h | [dB(A)] | 71,2 | 62,7 | 66,3 | 77,9 | 67,2 | 67,8 | 67,9 | 69,1 | 64,5 | 66,4 | 73,0 | 64,1 | 63,9 | 63,7 | 70,3 | 69,2 | 81,0 | 67,1 | 63,8 | 61,4 | 64,6 | 64,8 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n2-Q1\n\n## Koffer\n\n\n## C\n\n03.05.2023 13:55:58,000\n5,0\n53,7\n63,0\n63,0\n9,3\n37,5\n93,2\n102,5\n2-Q1\n2-Q1\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## C\n\n\n## D\n\n2023 13:8:03.000 2023 14:30:50\n03.05.2023 13:57:58,000 -\n03.05.2023 13:58:03,000\n03.05.2023 14:30:50,000 -\n03.05.2023 14:30:55,000\n5,0\n5,0\n63,2\n60,2\n65,8\n61,3\n65,8\n61,3\n2,6\n1,1\n37,5\n37,4\n102,7\n99,6\n|\n105,3\n100,7\n2-Q1\n|\n\n## Koffer\n\n\n## D\n\n03.05.2023 14:34:05,000 -\n000\n03.05.2023 14:34:10,000\n5,0\n51,4\n58,0\n58,0\n58,0\n6,6\n37,4\n90,8\n97,4\n2-Q1\n|\n\n## Koffer\n\n\n## D\n\n03.05.2023 14:36:31,000 -\n03.05.2023 14:36:36,000\n5,0\n|\n49,9\n52,4\n52,4\n2,5\n37,4\n89,3\n91,8\nXXXI\n64,6\n74,1\n71,1\n62,3\n60,8\nAnh\u00e4nge\n\n| Vorgang | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | D | 03.05.2023 | 14:38:17,000 | - | 03.05.2023 | 14:38:22,000 | F | 03.05.2023 | 14:47:33,000 | - | 03.05.2023 | 14:47:38,000 | F | 03.05.2023 | 14:49:45,000 | - | 03.05.2023 | 14:49:50,000 | F | 03.05.2023 | 14:52:02,000 | - | 03.05.2023 | 14:52:07,000 | B | 03.05.2023 | 15:07:23,000 | - | 03.05.2023 | 15:07:28,000 | B | 03.05.2023 | 15:09:15,000 | - | 03.05.2023 | 15:09:20,000 | B | 03.05.2023 | 15:10:17,000 | - | 03.05.2023 | 15:10:22,000 | B | 03.05.2023 | 15:13:18,000 | - | 03.05.2023 | 15:13:23,000 | B | 03.05.2023 | 15:16:10,000 | - | 03.05.2023 | 15:16:15,000 | B | 03.05.2023 | 15:18:36,000 | - | 03.05.2023 | 15:18:41,000 | B | 03.05.2023 | 15:19:24,000 | - | 03.05.2023 | 15:19:29,000 | B | 03.05.2023 | 15:24:22,000 | - | 03.05.2023 | 15:24:27,000 | B | 03.05.2023 | 15:25:48,000 | - | 03.05.2023 | 15:25:53,000 | B | 03.05.2023 | 15:27:06,000 | - | 03.05.2023 | 15:27:11,000 | F | 03.05.2023 | 15:29:38,000 | - | 03.05.2023 | 15:29:43,000 | B | 03.05.2023 | 15:30:30,000 | - | 03.05.2023 | 15:30:35,000 | B | 03.05.2023 | 15:32:37,000 | - | 03.05.2023 | 15:32:42,000 | B | 03.05.2023 | 15:34:44,000 | - | 03.05.2023 | 15:34:49,000 | B | 03.05.2023 | 15:36:28,000 | - | 03.05.2023 | 15:36:33,000 | B | 03.05.2023 | 15:38:22,000 | - | 03.05.2023 | 15:38:27,000 | B | 03.05.2023 | 15:40:46,000 | - | 03.05.2023 | 15:40:51,000 | B | 03.05.2023 | 15:41:44,000 | - | 03.05.2023 | 15:41:49,000 | 03.05.2023 | 15:45:07,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 60,5 | 52,3 | 55,3 | 59,4 | 51,4 | 49,9 | 53,4 | 56,3 | 57,7 | 54,2 | 54,8 | 55,8 | 58,3 | 57,1 | 54,4 | 57,7 | 58,8 | 60,6 | 53,4 | 63,8 | 71,9 | 62,8 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 64,6 | 64,6 | 59,5 | 59,5 | 61,4 | 61,4 | 65,6 | 65,6 | 55,1 | 55,1 | 53,2 | 53,2 | 59,6 | 59,6 | 60,7 | 60,7 | 60,9 | 60,9 | 57,8 | 57,8 | 59,6 | 59,6 | 61,5 | 61,5 | 61,6 | 61,6 | 64,0 | 64,0 | 62,4 | 62,4 | 60,0 | 60,0 | 65,1 | 65,1 | 64,2 | 64,2 | 57,4 | 57,4 | 66,3 | 66,3 | 75,6 | 75,6 | 64,7 | 64,7 | KI | [dB(A)] | 4,1 | 7,2 | 6,1 | 6,2 | 3,7 | 3,3 | 6,2 | 4,4 | 3,2 | 3,6 | 4,8 | 5,7 | 3,3 | 6,9 | 8,0 | 2,3 | 6,3 | 3,6 | 4,0 | 2,5 | 3,7 | 1,9 | r | [m] | 37,4 | 37,9 | 37,9 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 99,9 | 91,9 | 94,9 | 99,0 | 91,0 | 89,5 | 93,0 | 95,9 | 97,3 | 93,8 | 94,4 | 95,4 | 97,9 | 96,7 | 94,0 | 97,3 | 98,4 | 100,2 | 93,0 | 103,4 | 111,5 | 102,4 | LWAmax | [dB(A)] | 104,0 | 99,1 | 101,0 | 105,2 | 94,7 | 92,8 | 99,2 | 100,3 | 100,5 | 97,4 | 99,2 | 101,1 | 101,2 | 103,6 | 102,0 | 99,6 | 104,7 | 103,8 | 97,0 | 105,9 | 115,2 | 104,3 | LWA,1h | [dB(A)] | 71,4 | 63,3 | 66,3 | 70,4 | 62,4 | 60,9 | 64,4 | 67,3 | 68,7 | 65,2 | 65,8 | 66,8 | 69,3 | 68,1 | 65,4 | 68,7 | 69,8 | 71,6 | 64,4 | 74,8 | 82,9 | 73,8 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n2-Q1\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:45:12,000\n5,0\n51,4\n53,8\n53,8\n2,4\n38,0\n91,0\n93,4\n2-Q1\n2-Q1\n\n## Q1-innen\n\n|\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## Koffer\n\n\n## B\n\n\n## B\n\n\n## C\n\n2023 13:50:56.000 2023 13:91:33.000 2023 13:56:08.000\n03.05.2023 15:50:50,000 -\n03.05.2023 15:50:56,000\n03.05.2023 15:51:27,000 -\n03.05.2023 15:51:32,000\n03.05.2023 13:56:03,000 -\n03.05.2023 13:56:08,000\n5,0\n5,0\n5,0\n56,8\n53,0\n47,4\n64,2\n55,9\n49,2\n64,2\n55,9\n49,2\n7,4\n2,9\n1,8\n38,0\n38,0\n37,5\n|\n96,4\n92,6\n86,9\n103,8\n95,5\n88,7\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## C\n\n03.05.2023 13:57:53,000 -\n03.05.2023 13:57:58,000\n5,0\n63,4\n65,8\n65,8\n2,4\n37,5\n102,9\n|\n105,3\nXXXII\n62,4\n67,8\n64,0\n58,3\n74,3\nAnh\u00e4nge\n\n| Vorgang | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | D | 03.05.2023 | 14:30:18,000 | - | 03.05.2023 | 14:30:23,000 | D | 03.05.2023 | 14:30:24,000 | - | 03.05.2023 | 14:30:29,000 | D | 03.05.2023 | 14:30:29,000 | - | 03.05.2023 | 14:30:34,000 | D | 03.05.2023 | 14:30:34,000 | - | 03.05.2023 | 14:30:39,000 | D | 03.05.2023 | 14:30:43,000 | - | 03.05.2023 | 14:30:48,000 | D | 03.05.2023 | 14:33:41,000 | - | 03.05.2023 | 14:33:46,000 | D | 03.05.2023 | 14:33:46,000 | - | 03.05.2023 | 14:33:51,000 | D | 03.05.2023 | 14:33:51,000 | - | 03.05.2023 | 14:33:56,000 | D | 03.05.2023 | 14:33:58,000 | - | 03.05.2023 | 14:34:02,000 | D | 03.05.2023 | 14:36:16,000 | - | 03.05.2023 | 14:36:21,000 | D | 03.05.2023 | 14:36:21,000 | - | 03.05.2023 | 14:36:26,000 | D | 03.05.2023 | 14:36:26,000 | - | 03.05.2023 | 14:36:31,000 | F | 03.05.2023 | 14:38:11,000 | - | 03.05.2023 | 14:38:16,000 | F | 03.05.2023 | 14:47:22,000 | - | 03.05.2023 | 14:47:27,000 | B | 03.05.2023 | 14:47:28,000 | - | 03.05.2023 | 14:47:33,000 | B | 03.05.2023 | 15:07:12,000 | - | 03.05.2023 | 15:07:17,000 | B | 03.05.2023 | 15:07:17,000 | - | 03.05.2023 | 15:07:22,000 | B | 03.05.2023 | 15:08:48,000 | - | 03.05.2023 | 15:08:53,000 | B | 03.05.2023 | 15:08:53,000 | - | 03.05.2023 | 15:08:58,000 | B | 03.05.2023 | 15:09:57,000 | - | 03.05.2023 | 15:10:02,000 | B | 03.05.2023 | 15:10:02,000 | - | 03.05.2023 | 15:10:07,000 | B | 03.05.2023 | 15:10:07,000 | - | 03.05.2023 | 15:10:12,000 | 03.05.2023 | 15:10:12,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 54,8 | 60,0 | 59,7 | 55,4 | 58,6 | 51,7 | 52,0 | 50,0 | 48,5 | 50,5 | 53,2 | 50,8 | 60,7 | 53,4 | 51,1 | 51,9 | 56,9 | 58,7 | 55,1 | 55,0 | 53,1 | 52,9 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 58,2 | 58,2 | 61,8 | 61,8 | 64,5 | 64,5 | 56,2 | 56,2 | 60,7 | 60,7 | 61,9 | 61,9 | 60,0 | 60,0 | 54,3 | 54,3 | 52,4 | 52,4 | 52,5 | 52,5 | 61,8 | 61,8 | 55,7 | 55,7 | 62,9 | 62,9 | 55,0 | 55,0 | 52,9 | 52,9 | 54,5 | 54,5 | 66,9 | 66,9 | 61,7 | 61,7 | 63,3 | 63,3 | 61,7 | 61,7 | 56,9 | 56,9 | 57,1 | 57,1 | KI | [dB(A)] | 3,4 | 1,8 | 4,8 | 0,8 | 2,1 | 10,2 | 8,0 | 4,3 | 3,9 | 2,0 | 8,6 | 4,9 | 2,2 | 1,6 | 1,8 | 2,6 | 10,0 | 3,0 | 8,2 | 6,7 | 3,8 | 4,2 | r | [m] | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,9 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 94,2 | 99,4 | 99,1 | 94,8 | 98,0 | 91,1 | 91,4 | 89,4 | 87,9 | 89,9 | 92,6 | 90,2 | 100,3 | 93,0 | 90,7 | 91,5 | 96,5 | 98,3 | 94,7 | 94,6 | 92,7 | 92,5 | LWAmax | [dB(A)] | 97,6 | 101,2 | 103,9 | 95,6 | 100,1 | 101,3 | 99,4 | 93,7 | 91,8 | 91,9 | 101,2 | 95,1 | 102,5 | 94,6 | 92,5 | 94,1 | 106,5 | 101,3 | 102,9 | 101,3 | 96,5 | 96,7 | LWA,1h | [dB(A)] | 65,7 | 70,9 | 70,6 | 66,3 | 69,5 | 62,6 | 62,9 | 60,9 | 59,4 | 61,4 | 64,1 | 61,7 | 71,7 | 64,4 | 62,1 | 62,9 | 67,9 | 69,7 | 66,1 | 66,0 | 64,1 | 63,9 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Q1-innen\n\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:10:17,000\n5,0\n54,5\n61,6\n61,6\n7,1\n38,0\n94,1\n101,2\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:13:01,000 -\n\n## en sooo. 03.05.2023 15:13:06,000\n5,0\n60,8\n65,2\n65,2\n4,4\n38,0\n|\n100,4\n|\n104,8\n\n## Q1-innen\n\n\n## Q1-innen\n\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## B\n\n\n## B\n\n2023 19113:14.000 2023 1913117.000\n03.05.2023 15:13:06,000 -\n03.05.2023 15:13:11,000\n03.05.2023 15:13:12,000 -\n03.05.2023 15:13:17,000\n5,0\n5,0\n64,9\n57,2\n68,1\n59,8\n68,1\n59,8\n3,2\n2,6\n38,0\n38,0\n|\n104,5\n96,8\n|\n107,7\n99,4\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:15:45,000 -\n03.05.2023 15:15:50,000\n5,0\n|\n63,3\n65,3\n65,3\n2,0\n38,0\n102,9\n|\n104,9\nXXXIII\n65,5\n71,8\n75,9\n68,2\n74,3\nAnh\u00e4nge\n\n| Vorgang | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | B | 03.05.2023 | 15:15:50,000 | - | 03.05.2023 | 15:15:55,000 | B | 03.05.2023 | 15:15:55,000 | - | 03.05.2023 | 15:16:00,000 | B | 03.05.2023 | 15:16:00,000 | - | 03.05.2023 | 15:16:05,000 | B | 03.05.2023 | 15:16:05,000 | - | 03.05.2023 | 15:16:10,000 | B | 03.05.2023 | 15:17:02,000 | - | 03.05.2023 | 15:17:07,000 | B | 03.05.2023 | 15:17:53,000 | - | 03.05.2023 | 15:17:58,000 | B | 03.05.2023 | 15:17:58,000 | - | 03.05.2023 | 15:18:03,000 | B | 03.05.2023 | 15:18:31,000 | - | 03.05.2023 | 15:18:36,000 | B | 03.05.2023 | 15:19:13,000 | - | 03.05.2023 | 15:19:18,000 | B | 03.05.2023 | 15:19:18,000 | - | 03.05.2023 | 15:19:23,000 | B | 03.05.2023 | 15:24:11,000 | - | 03.05.2023 | 15:24:16,000 | B | 03.05.2023 | 15:24:16,000 | - | 03.05.2023 | 15:24:21,000 | F | 03.05.2023 | 15:29:22,000 | - | 03.05.2023 | 15:29:27,000 | B | 03.05.2023 | 15:30:24,000 | - | 03.05.2023 | 15:30:29,000 | B | 03.05.2023 | 15:32:21,000 | - | 03.05.2023 | 15:32:26,000 | B | 03.05.2023 | 15:32:26,000 | - | 03.05.2023 | 15:32:31,000 | B | 03.05.2023 | 15:32:31,000 | - | 03.05.2023 | 15:32:36,000 | B | 03.05.2023 | 15:33:10,000 | - | 03.05.2023 | 15:33:15,000 | B | 03.05.2023 | 15:34:38,000 | - | 03.05.2023 | 15:34:43,000 | B | 03.05.2023 | 15:36:20,000 | - | 03.05.2023 | 15:36:25,000 | B | 03.05.2023 | 15:38:11,000 | - | 03.05.2023 | 15:38:16,000 | B | 03.05.2023 | 15:38:16,000 | - | 03.05.2023 | 15:38:21,000 | 03.05.2023 | 15:41:29,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 61,9 | 59,7 | 61,0 | 55,9 | 59,8 | 59,0 | 60,1 | 56,6 | 56,3 | 51,9 | 51,8 | 53,4 | 54,1 | 52,8 | 54,3 | 57,5 | 55,3 | 57,9 | 58,1 | 61,1 | 63,9 | 63,5 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 63,3 | 63,3 | 62,8 | 62,8 | 66,6 | 66,6 | 59,2 | 59,2 | 62,3 | 62,3 | 62,6 | 62,6 | 62,9 | 62,9 | 62,7 | 62,7 | 62,0 | 62,0 | 53,9 | 53,9 | 56,9 | 56,9 | 57,2 | 57,2 | 59,8 | 59,8 | 59,5 | 59,5 | 59,4 | 59,4 | 63,0 | 63,0 | 59,8 | 59,8 | 61,5 | 61,5 | 61,5 | 61,5 | 69,4 | 69,4 | 65,9 | 65,9 | 65,2 | 65,2 | KI | [dB(A)] | 1,4 | 3,1 | 5,6 | 3,3 | 2,5 | 3,6 | 2,8 | 6,1 | 5,7 | 2,0 | 5,1 | 3,8 | 5,7 | 6,7 | 5,1 | 5,5 | 4,5 | 3,6 | 3,4 | 8,3 | 2,0 | 1,7 | r | [m] | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 101,5 | 99,3 | 100,6 | 95,5 | 99,4 | 98,6 | 99,7 | 96,2 | 95,9 | 91,5 | 91,4 | 93,0 | 93,7 | 92,4 | 93,9 | 97,1 | 94,9 | 97,5 | 97,7 | 100,7 | 103,5 | 103,1 | LWAmax | [dB(A)] | 102,9 | 102,4 | 106,2 | 98,8 | 101,9 | 102,2 | 102,5 | 102,3 | 101,6 | 93,5 | 96,5 | 96,8 | 99,4 | 99,1 | 99,0 | 102,6 | 99,4 | 101,1 | 101,1 | 109,0 | 105,5 | 104,8 | LWA,1h | [dB(A)] | 72,9 | 70,7 | 72,0 | 66,9 | 70,8 | 70,0 | 71,1 | 67,6 | 67,3 | 62,9 | 62,8 | 64,4 | 65,1 | 63,8 | 65,3 | 68,5 | 66,3 | 68,9 | 69,1 | 72,1 | 74,9 | 74,5 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Q1-innen\n\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:41:34,000\n5,0\n59,2\n61,4\n61,4\n2,2\n38,0\n98,8\n101,0\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:41:34,000 -\nne 000\n03.05.2023 15:41:39,000\n5,0\n61,0\n64,6\n64,6\n3,6\n38,0\n|\n100,6\n|\n104,2\n\n## Q1-innen\n\n\n## Q1-innen\n\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## B\n\n\n## B\n\n2023 19.41:44,000 ne 132.000\n03.05.2023 15:41:39,000 -\n03.05.2023 15:43:27,000 -\n5,0\n5,0\n61,7\n51,1\n63,3\n54,9\n63,3\n54,9\n1,6\n3,8\n38,0\n38,0\n|\n101,3\n90,7\n|\n102,9\n94,5\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:44:57,000 -\n03.05.2023 15:45:02,000\n5,0\n|\n48,8\n51,3\n51,3\n2,5\n38,0\n88,4\n90,9\nXXXIV\n70,2\n72,0\n72,7\n62,1\n59,8\nAnh\u00e4nge\n\n| Vorgang | Lkw- | Typ | Zone | Datum | Uhrzeit | Start | - | Ende | Q1-innen | Koffer | B | 03.05.2023 | 15:45:02,000 | - | 03.05.2023 | 15:45:07,000 | Q1-innen | Koffer | B | 03.05.2023 | 15:47:43,000 | - | 03.05.2023 | 15:47:48,000 | Q1-innen | Koffer | B | 03.05.2023 | 15:51:15,000 | - | 03.05.2023 | 15:51:20,000 | Q1-innen | Koffer | B | 03.05.2023 | 15:51:20,000 | - | 03.05.2023 | 15:51:25,000 | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 55,6 | 53,7 | 50,6 | 50,4 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 65,8 | 65,8 | 59,0 | 59,0 | 54,8 | 54,8 | 53,5 | 53,5 | KI | [dB(A)] | 10,2 | 5,3 | 4,2 | 3,1 | r | [m] | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 95,2 | 93,3 | 90,2 | 90,0 | LWAmax | [dB(A)] | 105,4 | 98,6 | 94,4 | 93,1 | LWA,1h | [dB(A)] | 66,6 | 64,7 | 61,6 | 61,4 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nVerladevorgang Gabelhubwagen:\n\n| Vorgang | Lkw- | Typ | Zone | Datum | Uhrzeit | Start | - | Ende | 1-Q2 | Koffer | B | 17.04.2023 | 13:24:17,000 | - | 17.04.2023 | 13:24:22,000 | 1-Q2 | Koffer | C | 17.04.2023 | 13:28:22,000 | - | 17.04.2023 | 13:28:27,000 | 1-Q2 | Koffer | C | 17.04.2023 | 14:15:24,000 | - | 17.04.2023 | 14:15:29,000 | 1-Q2 | Koffer | C | 17.04.2023 | 14:22:14,000 | - | 17.04.2023 | 14:22:19,000 | 1-Q2 | Koffer | C | 17.04.2023 | 14:26:58,000 | - | 17.04.2023 | 14:27:03,000 | 1-Q2 | Koffer | C | 17.04.2023 | 14:27:34,000 | - | 17.04.2023 | 14:27:39,000 | 1-Q2 | Koffer | C | 17.04.2023 | 14:33:18,000 | - | 17.04.2023 | 14:33:23,000 | 1-Q2 | Koffer | C | 17.04.2023 | 14:34:59,000 | - | 17.04.2023 | 14:35:04,000 | 2-Q2 | Koffer | B | 17.04.2023 | 13:24:27,000 | - | 17.04.2023 | 13:24:32,000 | 2-Q2 | Koffer | C | 17.04.2023 | 13:28:33,000 | - | 17.04.2023 | 13:28:38,000 | 2-Q2 | Koffer | C | 17.04.2023 | 14:15:36,000 | - | 17.04.2023 | 14:15:41,000 | 2-Q2 | Koffer | C | 17.04.2023 | 14:27:12,000 | - | 17.04.2023 | 14:27:17,000 | 2-Q2 | Koffer | C | 17.04.2023 | 14:27:48,000 | - | 17.04.2023 | 14:27:53,000 | 2-Q2 | Koffer | C | 17.04.2023 | 14:33:31,000 | - | 17.04.2023 | 14:33:36,000 | 2-Q2 | Koffer | C | 17.04.2023 | 14:35:06,000 | - | 17.04.2023 | 14:35:11,000 | 2-Q2 | Koffer | C | 17.04.2023 | 14:35:18,000 | - | 17.04.2023 | 14:35:23,000 | Q2-innen | Koffer | B | 17.04.2023 | 13:24:22,000 | - | 17.04.2023 | 13:24:27,000 | Q2-innen | Koffer | C | 17.04.2023 | 13:28:27,000 | - | 17.04.2023 | 13:28:32,000 | Q2-innen | Koffer | C | 17.04.2023 | 14:15:29,000 | - | 17.04.2023 | 14:15:34,000 | Q2-innen | Koffer | C | 17.04.2023 | 14:27:07,000 | - | 17.04.2023 | 14:27:11,000 | Q2-innen | Koffer | C | 17.04.2023 | 14:27:39,000 | - | 17.04.2023 | 14:27:44,000 | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 63,1 | 72,5 | 64,9 | 60,3 | 63,2 | 65,6 | 63,9 | 61,7 | 63,8 | 60,4 | 64,9 | 60,1 | 69,8 | 63,9 | 62,6 | 65,3 | 58,5 | 65,1 | 63,4 | 52,5 | 62,3 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 71,9 | 71,9 | 74,6 | 74,6 | 69,2 | 69,2 | 63,5 | 63,5 | 72,2 | 72,2 | 73,2 | 73,2 | 69,7 | 69,7 | 66,7 | 66,7 | 72,7 | 72,7 | 64,0 | 64,0 | 71,4 | 71,4 | 66,7 | 66,7 | 74,4 | 74,4 | 69,2 | 69,2 | 70,9 | 70,9 | 72,7 | 72,7 | 68,7 | 68,7 | 69,4 | 69,4 | 68,4 | 68,4 | 55,4 | 55,4 | 68,1 | 68,1 | KI | [dB(A)] | 8,8 | 2,1 | 4,3 | 3,2 | 9,0 | 7,6 | 5,8 | 5,0 | 8,9 | 3,6 | 6,5 | 6,6 | 4,6 | 5,3 | 8,3 | 7,4 | 10,2 | 4,3 | 5,0 | 2,9 | 5,8 | r | [m] | 38,0 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 38,0 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 38,0 | 37,5 | 37,5 | 37,5 | 37,5 | LWA,5s | [dB(A)] | 102,7 | 112,0 | 104,4 | 99,8 | 102,7 | 105,1 | 103,4 | 101,2 | 103,4 | 99,9 | 104,4 | 99,6 | 109,3 | 103,4 | 102,1 | 104,8 | 98,1 | 104,6 | 102,9 | 92,0 | 101,8 | LWAmax | [dB(A)] | 111,5 | 114,1 | 108,7 | 103,0 | 111,7 | 112,7 | 109,2 | 106,2 | 112,3 | 103,5 | 110,9 | 106,2 | 113,9 | 108,7 | 110,4 | 112,2 | 108,3 | 108,9 | 107,9 | 94,9 | 107,6 | LWA,1h | [dB(A)] | 74,1 | 83,4 | 75,8 | 71,2 | 74,1 | 76,5 | 74,8 | 72,6 | 74,8 | 71,3 | 75,8 | 71,0 | 80,7 | 74,8 | 73,5 | 76,2 | 69,5 | 76,0 | 74,3 | 63,4 | 73,2 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nXXXV\nAnh\u00e4nge\n\n| Vorgang | Q2-innen | Q2-innen | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | Lkw- | Typ | Koffer | Koffer | Koffer | WB | WB | WB | WB | WB | WB | WB | WB | WB | Koffer | Koffer | Koffer | WB | WB | WB | WB | WB | WB | WB | Zone | Datum | Uhrzeit | Start | - | Ende | C | 17.04.2023 | 14:33:23,000 | - | 17.04.2023 | 14:33:28,000 | C | 17.04.2023 | 14:35:12,000 | - | 17.04.2023 | 14:35:17,000 | C | 26.04.2023 | 13:57:42,000 | - | 26.04.2023 | 13:57:47,000 | E | 26.04.2023 | 13:58:30,000 | - | 26.04.2023 | 13:58:35,000 | E | 26.04.2023 | 13:59:44,000 | - | 26.04.2023 | 13:59:49,000 | E | 26.04.2023 | 14:01:53,000 | - | 26.04.2023 | 14:01:58,000 | E | 26.04.2023 | 14:02:48,000 | - | 26.04.2023 | 14:02:53,000 | E | 26.04.2023 | 14:03:50,000 | - | 26.04.2023 | 14:03:55,000 | E | 26.04.2023 | 14:04:40,000 | - | 26.04.2023 | 14:04:45,000 | E | 26.04.2023 | 14:06:00,000 | - | 26.04.2023 | 14:06:05,000 | E | 26.04.2023 | 14:06:45,000 | - | 26.04.2023 | 14:06:50,000 | E | 26.04.2023 | 14:07:39,000 | - | 26.04.2023 | 14:07:44,000 | B | 26.04.2023 | 14:12:53,000 | - | 26.04.2023 | 14:12:58,000 | C | 26.04.2023 | 14:48:38,000 | - | 26.04.2023 | 14:48:43,000 | C | 26.04.2023 | 13:57:52,000 | - | 26.04.2023 | 13:57:57,000 | E | 26.04.2023 | 13:58:51,000 | - | 26.04.2023 | 13:58:56,000 | E | 26.04.2023 | 13:59:58,000 | - | 26.04.2023 | 14:00:03,000 | E | 26.04.2023 | 14:01:36,000 | - | 26.04.2023 | 14:01:41,000 | E | 26.04.2023 | 14:02:03,000 | - | 26.04.2023 | 14:02:08,000 | E | 26.04.2023 | 14:02:58,000 | - | 26.04.2023 | 14:03:03,000 | E | 26.04.2023 | 14:06:10,000 | - | 26.04.2023 | 14:06:15,000 | E | 26.04.2023 | 14:06:55,000 | - | 26.04.2023 | 14:07:00,000 | 26.04.2023 | 14:07:49,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 61,4 | 59,8 | 63,0 | 54,9 | 52,3 | 54,2 | 56,3 | 61,2 | 60,8 | 49,3 | 52,8 | 52,5 | 55,6 | 54,8 | 63,4 | 63,5 | 53,9 | 54,8 | 53,5 | 53,0 | 52,5 | 52,4 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 67,0 | 67,0 | 62,2 | 62,2 | 72,9 | 72,9 | 60,7 | 60,7 | 57,7 | 57,7 | 60,1 | 60,1 | 62,0 | 62,0 | 71,6 | 71,6 | 67,4 | 67,4 | 51,2 | 51,2 | 54,5 | 54,5 | 56,9 | 56,9 | 60,1 | 60,1 | 61,0 | 61,0 | 73,0 | 73,0 | 72,5 | 72,5 | 60,4 | 60,4 | 59,0 | 59,0 | 58,1 | 58,1 | 59,1 | 59,1 | 58,6 | 58,6 | 59,3 | 59,3 | KI | [dB(A)] | 5,6 | 2,4 | 9,9 | 5,8 | 5,4 | 5,9 | 5,7 | 10,4 | 6,6 | 1,9 | 1,7 | 4,4 | 4,5 | 6,2 | 9,6 | 9,0 | 6,5 | 4,2 | 4,6 | 6,1 | 6,1 | 6,9 | r | [m] | 37,5 | 37,5 | 37,5 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 38,0 | 37,5 | 37,5 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | LWA,5s | [dB(A)] | 100,9 | 99,3 | 102,5 | 94,3 | 91,7 | 93,6 | 95,7 | 100,6 | 100,2 | 88,7 | 92,2 | 91,9 | 95,2 | 94,3 | 102,9 | 102,9 | 93,3 | 94,2 | 92,9 | 92,4 | 91,9 | 91,8 | LWAmax | [dB(A)] | 106,5 | 101,7 | 112,4 | 100,1 | 97,1 | 99,5 | 101,4 | 111,0 | 106,8 | 90,6 | 93,9 | 96,3 | 99,7 | 100,5 | 112,5 | 111,9 | 99,8 | 98,4 | 97,5 | 98,5 | 98,0 | 98,7 | LWA,1h | [dB(A)] | 72,3 | 70,7 | 73,9 | 65,8 | 63,2 | 65,1 | 67,2 | 72,1 | 71,7 | 60,2 | 63,7 | 63,4 | 66,6 | 65,7 | 74,3 | 74,4 | 64,8 | 65,7 | 64,4 | 63,9 | 63,4 | 63,3 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n2-Q2\n\n## WB\n\n\n## E\n\n26.04.2023 14:07:54,000\n5,0\n66,4\n71,4\n71,4\n5,0\n37,4\n105,8\n110,8\n2-Q2\n|\n\n## Koffer\n\n\n## B\n\n26.04.2023 14:13:03,000 -\nEN 108.000. 26.04.2023 14:13:08,000\n5,0\n68,6\n81,0\n81,0\n|\n12,4\n38,0\n108,2\n|\n120,6\n2-Q2\n2-Q2\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## C\n\n\n## C\n\n2023 14.49:03.000 2023 1917:21.000\n26.04.2023 14:48:57,000 -\n26.04.2023 14:49:02,000\n26.04.2023 15:17:16,000 -\n26.04.2023 15:17:21,000\n5,0\n5,0\n58,1\n61,1\n66,7\n66,7\n69,2\n66,7\n69,2\n8,6\n8,1\n37,5\n37,5\n|\n97,6\n100,6\n|\n106,2\n108,7\n\n## Q2-innen\n\n|\n\n## Koffer\n\n\n## C\n\n26.04.2023 13:57:47,000 -\n26.04.2023 13:57:52,000\n5,0\n|\n59,6\n69,2\n69,2\n9,6\n37,5\n99,1\n108,7\nXXXVI\n77,3\n79,6\n69,0\n72,0\n70,5\nAnh\u00e4nge\n\n| Vorgang | Lkw- | Typ | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | Koffer | Q2-innen | Koffer | Q2-innen | Koffer | Q2-innen | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | E | 26.04.2023 | 13:58:35,000 | - | 26.04.2023 | 13:58:40,000 | E | 26.04.2023 | 13:59:51,000 | - | 26.04.2023 | 13:59:56,000 | E | 26.04.2023 | 14:01:58,000 | - | 26.04.2023 | 14:02:03,000 | E | 26.04.2023 | 14:02:53,000 | - | 26.04.2023 | 14:02:58,000 | E | 26.04.2023 | 14:03:55,000 | - | 26.04.2023 | 14:04:00,000 | E | 26.04.2023 | 14:04:45,000 | - | 26.04.2023 | 14:04:50,000 | E | 26.04.2023 | 14:06:05,000 | - | 26.04.2023 | 14:06:10,000 | E | 26.04.2023 | 14:06:50,000 | - | 26.04.2023 | 14:06:55,000 | E | 26.04.2023 | 14:07:44,000 | - | 26.04.2023 | 14:07:49,000 | B | 26.04.2023 | 14:12:58,000 | - | 26.04.2023 | 14:13:03,000 | C | 26.04.2023 | 14:48:47,000 | - | 26.04.2023 | 14:48:52,000 | C | 26.04.2023 | 14:48:52,000 | - | 26.04.2023 | 14:48:57,000 | C | 26.04.2023 | 14:49:02,000 | - | 26.04.2023 | 14:49:07,000 | C | 27.04.2023 | 14:14:58,000 | - | 27.04.2023 | 14:15:03,000 | C | 27.04.2023 | 14:19:21,000 | - | 27.04.2023 | 14:19:26,000 | C | 27.04.2023 | 14:19:59,000 | - | 27.04.2023 | 14:20:04,000 | C | 27.04.2023 | 14:20:42,000 | - | 27.04.2023 | 14:20:47,000 | C | 27.04.2023 | 14:21:07,000 | - | 27.04.2023 | 14:21:12,000 | C | 27.04.2023 | 14:23:21,000 | - | 27.04.2023 | 14:23:26,000 | C | 27.04.2023 | 14:24:22,000 | - | 27.04.2023 | 14:24:27,000 | C | 27.04.2023 | 14:24:38,000 | - | 27.04.2023 | 14:24:43,000 | C | 27.04.2023 | 14:25:13,000 | - | 27.04.2023 | 14:25:18,000 | 27.04.2023 | 14:28:10,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 58,1 | 51,0 | 52,9 | 48,7 | 59,2 | 59,7 | 51,2 | 53,2 | 54,1 | 56,7 | 54,0 | 55,7 | 56,0 | 62,2 | 62,2 | 54,6 | 54,2 | 56,2 | 56,5 | 54,0 | 63,4 | 52,8 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 65,1 | 65,1 | 52,8 | 52,8 | 55,8 | 55,8 | 52,2 | 52,2 | 61,8 | 61,8 | 63,2 | 63,2 | 55,2 | 55,2 | 59,1 | 59,1 | 56,9 | 56,9 | 62,1 | 62,1 | 58,2 | 58,2 | 63,8 | 63,8 | 60,6 | 60,6 | 70,0 | 70,0 | 70,0 | 70,0 | 61,2 | 61,2 | 59,9 | 59,9 | 65,4 | 65,4 | 61,2 | 61,2 | 56,0 | 56,0 | 74,1 | 74,1 | 58,5 | 58,5 | KI | [dB(A)] | 7,0 | 1,8 | 2,9 | 3,5 | 2,6 | 3,5 | 4,0 | 5,9 | 2,8 | 5,4 | 4,2 | 8,1 | 4,6 | 7,8 | 7,8 | 6,6 | 5,7 | 9,2 | 4,7 | 2,0 | 10,7 | 5,7 | r | [m] | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 38,0 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | LWA,5s | [dB(A)] | 97,5 | 90,4 | 92,3 | 88,1 | 98,6 | 99,1 | 90,6 | 92,6 | 93,5 | 96,3 | 93,5 | 95,2 | 95,5 | 101,7 | 101,7 | 94,1 | 93,7 | 95,7 | 96,0 | 93,5 | 102,9 | 92,3 | LWAmax | [dB(A)] | 104,5 | 92,2 | 95,2 | 91,6 | 101,2 | 102,6 | 94,6 | 98,5 | 96,3 | 101,7 | 97,7 | 103,3 | 100,1 | 109,5 | 109,5 | 100,7 | 99,4 | 104,9 | 100,7 | 95,5 | 113,6 | 98,0 | LWA,1h | [dB(A)] | 69,0 | 61,9 | 63,8 | 59,6 | 70,1 | 70,6 | 62,1 | 64,1 | 65,0 | 67,7 | 64,9 | 66,6 | 66,9 | 73,1 | 73,1 | 65,5 | 65,1 | 67,1 | 67,4 | 64,9 | 74,3 | 63,7 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n1-Q2\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:28:15,000\n5,0\n54,5\n59,7\n59,7\n5,2\n37,5\n94,0\n99,2\n1-Q2\n|\n\n## Koffer\n\n\n## C\n\n04.2023 14:30:24.000\n27.04.2023 14:30:19,000 -\n5,0\n55,2\n61,9\n61,9\n6,7\n37,5\n94,7\n101,4\n1-Q2\n|\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:31:33,000 -\n3000\n27.04.2023 14:31:38,000\n5,0\n60,5\n64,2\n64,2\n3,7\n37,5\n|\n100,0\n|\n103,7\n1-Q2\n|\n\n## Koffer\n\n\n## C\n\n2023 14:33:51.000\n27.04.2023 14:33:46,000 -\n27.04.2023 14:33:51,000\n5,0\n62,6\n74,8\n74,8\n|\n12,2\n37,5\n102,1\n|\n114,3\n2-Q2\n|\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:19:31,000 -\n27.04.2023 14:19:36,000\n5,0\n|\n57,9\n68,4\n68,4\n68,4\n|\n10,5\n37,5\n|\n97,4\n107,9\nXXXVII\n65,4\n66,1\n71,4\n73,5\n68,8\nAnh\u00e4nge\n\n| Vorgang | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | C | 27.04.2023 | 14:20:57,000 | - | 27.04.2023 | 14:21:02,000 | C | 27.04.2023 | 14:21:15,000 | - | 27.04.2023 | 14:21:20,000 | C | 27.04.2023 | 14:23:33,000 | - | 27.04.2023 | 14:23:38,000 | C | 27.04.2023 | 14:24:32,000 | - | 27.04.2023 | 14:24:37,000 | C | 27.04.2023 | 14:24:52,000 | - | 27.04.2023 | 14:24:57,000 | C | 27.04.2023 | 14:25:27,000 | - | 27.04.2023 | 14:25:32,000 | C | 27.04.2023 | 14:25:53,000 | - | 27.04.2023 | 14:25:58,000 | C | 27.04.2023 | 14:28:28,000 | - | 27.04.2023 | 14:28:33,000 | C | 27.04.2023 | 14:30:43,000 | - | 27.04.2023 | 14:30:48,000 | C | 27.04.2023 | 14:31:43,000 | - | 27.04.2023 | 14:31:48,000 | C | 27.04.2023 | 14:33:59,000 | - | 27.04.2023 | 14:34:04,000 | C | 27.04.2023 | 14:15:03,000 | - | 27.04.2023 | 14:15:08,000 | C | 27.04.2023 | 14:19:26,000 | - | 27.04.2023 | 14:19:31,000 | C | 27.04.2023 | 14:20:08,000 | - | 27.04.2023 | 14:20:13,000 | C | 27.04.2023 | 14:20:28,000 | - | 27.04.2023 | 14:20:33,000 | C | 27.04.2023 | 14:20:47,000 | - | 27.04.2023 | 14:20:52,000 | C | 27.04.2023 | 14:20:52,000 | - | 27.04.2023 | 14:20:57,000 | C | 27.04.2023 | 14:23:28,000 | - | 27.04.2023 | 14:23:33,000 | C | 27.04.2023 | 14:24:27,000 | - | 27.04.2023 | 14:24:32,000 | C | 27.04.2023 | 14:24:47,000 | - | 27.04.2023 | 14:24:52,000 | C | 27.04.2023 | 14:25:18,000 | - | 27.04.2023 | 14:25:23,000 | C | 27.04.2023 | 14:25:48,000 | - | 27.04.2023 | 14:25:53,000 | 27.04.2023 | 14:28:18,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 57,5 | 69,0 | 57,5 | 56,4 | 49,2 | 57,2 | 58,9 | 58,5 | 56,7 | 60,4 | 53,2 | 59,0 | 51,4 | 55,8 | 60,7 | 49,6 | 56,3 | 54,6 | 55,1 | 52,1 | 53,1 | 48,7 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 68,5 | 68,5 | 75,4 | 75,4 | 68,9 | 68,9 | 66,1 | 66,1 | 55,3 | 55,3 | 67,0 | 67,0 | 68,0 | 68,0 | 66,8 | 66,8 | 66,0 | 66,0 | 66,2 | 66,2 | 58,0 | 58,0 | 65,3 | 65,3 | 54,3 | 54,3 | 62,4 | 62,4 | 65,4 | 65,4 | 51,7 | 51,7 | 66,6 | 66,6 | 64,0 | 64,0 | 60,0 | 60,0 | 61,3 | 61,3 | 61,3 | 61,3 | 50,1 | 50,1 | KI | [dB(A)] | 11,0 | 6,4 | 11,4 | 9,7 | 6,1 | 9,8 | 9,1 | 8,3 | 9,3 | 5,8 | 4,8 | 6,3 | 2,9 | 6,6 | 4,7 | 2,1 | 10,3 | 9,4 | 4,9 | 9,2 | 8,2 | 1,4 | r | [m] | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | LWA,5s | [dB(A)] | 97,0 | 108,5 | 97,0 | 95,9 | 88,7 | 96,7 | 98,4 | 98,0 | 96,2 | 99,9 | 92,7 | 98,5 | 90,9 | 95,3 | 100,2 | 89,1 | 95,8 | 94,1 | 94,6 | 91,6 | 92,6 | 88,2 | LWAmax | [dB(A)] | 108,0 | 114,9 | 108,4 | 105,6 | 94,8 | 106,5 | 107,5 | 106,3 | 105,5 | 105,7 | 97,5 | 104,8 | 93,8 | 101,9 | 104,9 | 91,2 | 106,1 | 103,5 | 99,5 | 100,8 | 100,8 | 89,6 | LWA,1h | [dB(A)] | 68,4 | 79,9 | 68,4 | 67,3 | 60,1 | 68,1 | 69,8 | 69,4 | 67,6 | 71,3 | 64,1 | 69,9 | 62,3 | 66,7 | 71,6 | 60,5 | 67,2 | 65,5 | 66,0 | 63,0 | 64,0 | 59,6 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Q2-innen\n\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:28:23,000\n5,0\n58,5\n60,6\n60,6\n2,1\n37,5\n98,0\n100,1\n\n## Q2-innen\n\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:31:38,000 -\n27.04.2023 14:31:43,000\n5,0\n60,1\n64,4\n64,4\n4,3\n37,5\n99,6\n103,9\nXXXVIII\n69,4\n71,0\nAnh\u00e4nge\n\n## Anhang 4: Richtcharakteristik\n\n\n## Gabelhubwagen 07.04.2023:\n\n\n| Mit | Messpunkte | vom | 27.04.23 | Vorgang | Datum | Start | - | Ende | 1-Q2 | 27.04.2023 | 14:14:58,000 | - | 27.04.2023 | 14:15:03,000 | 1-Q2 | 27.04.2023 | 14:19:21,000 | - | 27.04.2023 | 14:19:26,000 | 1-Q2 | 27.04.2023 | 14:19:59,000 | - | 27.04.2023 | 14:20:04,000 | 1-Q2 | 27.04.2023 | 14:20:42,000 | - | 27.04.2023 | 14:20:47,000 | 1-Q2 | 27.04.2023 | 14:21:07,000 | - | 27.04.2023 | 14:21:12,000 | 1-Q2 | 27.04.2023 | 14:23:21,000 | - | 27.04.2023 | 14:23:26,000 | 1-Q2 | 27.04.2023 | 14:24:22,000 | - | 27.04.2023 | 14:24:27,000 | 1-Q2 | 27.04.2023 | 14:24:38,000 | - | 27.04.2023 | 14:24:43,000 | 1-Q2 | 27.04.2023 | 14:25:13,000 | - | 27.04.2023 | 14:25:18,000 | 1-Q2 | 27.04.2023 | 14:28:10,000 | - | 27.04.2023 | 14:28:15,000 | 1-Q2 | 27.04.2023 | 14:30:19,000 | - | 27.04.2023 | 14:30:24,000 | 1-Q2 | 27.04.2023 | 14:31:33,000 | - | 27.04.2023 | 14:31:38,000 | 1-Q2 | 27.04.2023 | 14:33:46,000 | - | 27.04.2023 | 14:33:51,000 | 2-Q2 | 27.04.2023 | 14:19:31,000 | - | 27.04.2023 | 14:19:36,000 | 2-Q2 | 27.04.2023 | 14:20:57,000 | - | 27.04.2023 | 14:21:02,000 | 2-Q2 | 27.04.2023 | 14:21:15,000 | - | 27.04.2023 | 14:21:20,000 | 2-Q2 | 27.04.2023 | 14:23:33,000 | - | 27.04.2023 | 14:23:38,000 | 2-Q2 | 27.04.2023 | 14:24:32,000 | - | 27.04.2023 | 14:24:37,000 | 2-Q2 | 27.04.2023 | 14:24:52,000 | - | 27.04.2023 | 14:24:57,000 | 2-Q2 | 27.04.2023 | 14:25:27,000 | - | 27.04.2023 | 14:25:32,000 | 2-Q2 | 27.04.2023 | 14:25:53,000 | - | 27.04.2023 | 14:25:58,000 | 2-Q2 | 27.04.2023 | 14:28:28,000 | - | 27.04.2023 | 14:28:33,000 | 2-Q2 | 27.04.2023 | 14:30:43,000 | - | 27.04.2023 | 14:30:48,000 | 2-Q2 | 27.04.2023 | 14:31:43,000 | - | 27.04.2023 | 14:31:48,000 | 1 | LAeq | [dB(A)] | 62,2 | 62,2 | 54,6 | 54,2 | 56,2 | 56,5 | 54,0 | 63,4 | 52,8 | 54,5 | 55,2 | 60,5 | 62,6 | 57,9 | 57,5 | 69,0 | 57,5 | 56,4 | 49,2 | 57,2 | 58,9 | 58,5 | 56,7 | 60,4 | x/y | 3,3/4,8 | Ortsfest | LAmax | [dB(A)] | 70,0 | 70,0 | 61,2 | 59,9 | 65,4 | 61,2 | 56,0 | 74,1 | 58,5 | 59,7 | 61,9 | 64,2 | 74,8 | 68,4 | 68,5 | 75,4 | 68,9 | 66,1 | 55,3 | 67,0 | 68,0 | 66,8 | 66,0 | 66,2 | 2 | r | [m] | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | x/y | 3,2/18,5 | LAeq | [dB(A)] | 63,7 | 69,7 | 59,8 | 65,7 | 67,2 | 64,2 | 64,1 | 68,1 | 54,0 | 56,6 | 58,0 | 60,0 | 73,4 | 65,3 | 68,9 | 80,6 | 53,4 | 62,9 | 52,0 | 60,8 | 67,3 | 66,7 | 63,7 | 65,8 | 3 | Variabel | LAmax | [dB(A)] | 72,4 | 78,3 | 68,8 | 72,4 | 77,4 | 71,8 | 79,2 | 78,9 | 61,8 | 64,4 | 67,8 | 64,2 | 86,7 | 76,8 | 81,0 | 87,1 | 60,9 | 71,4 | 59,9 | 70,5 | 77,2 | 75,1 | 74,4 | 75,3 | x/y | -7,2/18,7 | r | [m] | 22,9 | 22,9 | 8,4 | 8,4 | 8,4 | 8,4 | 22,9 | 22,9 | 22,9 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 4 | \u03c6 | [\u00b0] | 158,9 | 158,9 | 55,2 | 55,2 | 55,2 | 55,2 | 158,9 | 158,9 | 158,9 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | x/y | 6,7/18,4 | DI | [dB(A)] | 1,5 | 7,5 | 5,2 | 11,5 | 11,0 | 7,7 | 10,1 | 4,7 | 1,2 | 2,1 | 2,8 | -0,5 | 10,8 | 7,4 | 11,4 | 11,6 | -4,1 | 6,5 | 2,8 | 3,6 | 8,4 | 8,2 | 7,0 | 5,4 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n2-Q2\n\n## Q2-innen\n\n\n## Q2-innen\n\n\n## Q2-innen\n\n\n## Q2-innen\n\n2 06.2023 193404000 06.2023 19508.000 06.2023 102032.000\n27.04.2023 14:33:59,000 -\n27.04.2023 14:15:03,000 -\n27.04.2023 14:19:26,000 -\n53,2\n59,0\n59,0\n51,4\n58,0\n65,3\n54,3\n40,5\n40,5\n40,5\n56,5\n63,0\n51,4\n62,9\n73,9\n53,7\n21,8\n22,9\n22,9\n9,8\n158,9\n158,9\n\n## Q2-innen\n\n|\n27.04.2023 14:20:08,000 -\n27.04.2023 14:20:13,000\n55,8\n62,4\n40,5\n65,6\n76,2\n8,4\n55,2\nXXXIX\n3,3\n4,0\n0,0\n9,8\nAnh\u00e4nge\n\n| Q2-innen | 27.04.2023 | 14:20:28,000 | - | 27.04.2023 | 14:20:33,000 | Q2-innen | 27.04.2023 | 14:20:47,000 | - | 27.04.2023 | 14:20:52,000 | Q2-innen | 27.04.2023 | 14:20:52,000 | - | 27.04.2023 | 14:20:57,000 | Q2-innen | 27.04.2023 | 14:23:28,000 | - | 27.04.2023 | 14:23:33,000 | Q2-innen | 27.04.2023 | 14:24:27,000 | - | 27.04.2023 | 14:24:32,000 | Q2-innen | 27.04.2023 | 14:24:47,000 | - | 27.04.2023 | 14:24:52,000 | Q2-innen | 27.04.2023 | 14:25:18,000 | - | 27.04.2023 | 14:25:23,000 | Q2-innen | 27.04.2023 | 14:25:48,000 | - | 27.04.2023 | 14:25:53,000 | Q2-innen | 27.04.2023 | 14:28:18,000 | - | 27.04.2023 | 14:28:23,000 | Q2-innen | 27.04.2023 | 14:31:38,000 | - | 27.04.2023 | 14:31:43,000 | Mit | Messpunkte | vom | 27.04.23 | 60,7 | 49,6 | 56,3 | 54,6 | 55,1 | 52,1 | 53,1 | 48,7 | 58,5 | 60,1 | 1 | 65,4 | 51,7 | 66,6 | 64,0 | 60,0 | 61,3 | 61,3 | 50,1 | 60,6 | 64,4 | x/y | 3,5/4,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 2 | 59,5 | 55,7 | 65,6 | 69,8 | 56,4 | 64,0 | 54,8 | 54,2 | 54,4 | 57,0 | x/y | 3,5/9,4 | 68,1 | 63,6 | 75,3 | 81,1 | 59,1 | 78,7 | 64,2 | 61,7 | 57,3 | 59,9 | 3 | 8,4 | 8,4 | 8,4 | 8,4 | 8,4 | 8,4 | 22,9 | 22,9 | 20,6 | 20,6 | x/y | 3,5/17,1 | 55,2 | 55,2 | 55,2 | 55,2 | 55,2 | 55,2 | 158,9 | 158,9 | 70,0 | 70,0 | 4 | -1,2 | 6,1 | 9,3 | 15,2 | 1,3 | 11,9 | 1,7 | 5,5 | -4,1 | -3,1 | x/y | 0/17,2 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Gabelstapler 03.05.2023:\n\n\n## Ortsfest\n\n\n## Variabel\n\n\n| Vorgang | Datum | Start | - | Ende | 1-Q1 | 03.05.2023 | 15:07:07,000 | - | 03.05.2023 | 15:07:12,000 | 1-Q1 | 03.05.2023 | 15:08:42,000 | - | 03.05.2023 | 15:08:47,000 | 1-Q1 | 03.05.2023 | 15:09:52,000 | - | 03.05.2023 | 15:09:57,000 | 1-Q1 | 03.05.2023 | 15:12:55,000 | - | 03.05.2023 | 15:13:00,000 | 1-Q1 | 03.05.2023 | 15:16:57,000 | - | 03.05.2023 | 15:17:02,000 | 1-Q1 | 03.05.2023 | 15:17:48,000 | - | 03.05.2023 | 15:17:53,000 | 1-Q1 | 03.05.2023 | 15:19:08,000 | - | 03.05.2023 | 15:19:13,000 | 1-Q1 | 03.05.2023 | 15:23:57,000 | - | 03.05.2023 | 15:24:03,000 | 1-Q1 | 03.05.2023 | 15:26:12,000 | - | 03.05.2023 | 15:26:17,000 | 1-Q1 | 03.05.2023 | 15:29:17,000 | - | 03.05.2023 | 15:29:22,000 | 1-Q1 | 03.05.2023 | 15:29:28,000 | - | 03.05.2023 | 15:29:33,000 | 1-Q1 | 03.05.2023 | 15:32:16,000 | - | 03.05.2023 | 15:32:21,000 | 1-Q1 | 03.05.2023 | 15:33:05,000 | - | 03.05.2023 | 15:33:10,000 | 1-Q1 | 03.05.2023 | 15:36:15,000 | - | 03.05.2023 | 15:36:20,000 | 1-Q1 | 03.05.2023 | 15:38:06,000 | - | 03.05.2023 | 15:38:11,000 | 1-Q1 | 03.05.2023 | 15:41:24,000 | - | 03.05.2023 | 15:41:29,000 | 1-Q1 | 03.05.2023 | 15:43:22,000 | - | 03.05.2023 | 15:43:27,000 | 1-Q1 | 03.05.2023 | 15:44:52,000 | - | 03.05.2023 | 15:44:57,000 | 1-Q1 | 03.05.2023 | 15:47:38,000 | - | 03.05.2023 | 15:47:43,000 | LAeq | [dB(A)] | 55,3 | 66,9 | 56,2 | 56,8 | 56,9 | 58,1 | 53,5 | 55,4 | 62,0 | 53,1 | 52,9 | 52,7 | 59,3 | 58,2 | 70,0 | 56,1 | 52,8 | 50,4 | 53,6 | LAmax | [dB(A)] | 62,8 | 70,5 | 60,2 | 59,7 | 60,3 | 62,8 | 57,1 | 60,9 | 64,8 | 55,7 | 57,1 | 60,1 | 64,7 | 62,3 | 79,3 | 59,6 | 61,5 | 54,2 | 57,1 | r | [m] | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LAeq | [dB(A)] | 56,2 | 66,9 | 63,0 | 58,7 | 62,7 | 64,4 | 58,9 | 60,3 | 63,9 | 57,7 | 56,0 | 58,3 | 66,1 | 62,6 | 66,3 | 59,3 | 62,2 | 58,0 | 63,8 | LAmax | [dB(A)] | 66,7 | 74,3 | 67,9 | 63,9 | 70,3 | 71,2 | 65,2 | 71,0 | 67,2 | 64,8 | 58,4 | 68,9 | 74,5 | 72,8 | 73,7 | 67,1 | 72,7 | 68,5 | 73,3 | r | [m] | 5,7 | 5,7 | 5,7 | 10,1 | 10,1 | 10,1 | 17,5 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | \u03c6 | [\u00b0] | 52,5 | 52,5 | 52,5 | 69,9 | 69,9 | 69,9 | 78,6 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | DI | [dB(A)] | 0,9 | 0,0 | 6,8 | 1,9 | 5,8 | 6,3 | 5,4 | 4,9 | 1,9 | 4,6 | 3,1 | 5,6 | 6,8 | 4,4 | -3,7 | 3,2 | 9,4 | 7,6 | 10,2 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## XL\n\nAnh\u00e4nge\n\n| 1-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | 03.05.2023 | 15:51:10,000 | - | 03.05.2023 | 15:51:15,000 | 03.05.2023 | 15:07:23,000 | - | 03.05.2023 | 15:07:28,000 | 03.05.2023 | 15:09:15,000 | - | 03.05.2023 | 15:09:20,000 | 03.05.2023 | 15:10:17,000 | - | 03.05.2023 | 15:10:22,000 | 03.05.2023 | 15:13:18,000 | - | 03.05.2023 | 15:13:23,000 | 03.05.2023 | 15:16:10,000 | - | 03.05.2023 | 15:16:15,000 | 03.05.2023 | 15:18:36,000 | - | 03.05.2023 | 15:18:41,000 | 03.05.2023 | 15:19:24,000 | - | 03.05.2023 | 15:19:29,000 | 03.05.2023 | 15:24:22,000 | - | 03.05.2023 | 15:24:27,000 | 03.05.2023 | 15:25:48,000 | - | 03.05.2023 | 15:25:53,000 | 03.05.2023 | 15:27:06,000 | - | 03.05.2023 | 15:27:11,000 | 03.05.2023 | 15:29:38,000 | - | 03.05.2023 | 15:29:43,000 | 03.05.2023 | 15:30:30,000 | - | 03.05.2023 | 15:30:35,000 | 03.05.2023 | 15:32:37,000 | - | 03.05.2023 | 15:32:42,000 | 03.05.2023 | 15:34:44,000 | - | 03.05.2023 | 15:34:49,000 | 03.05.2023 | 15:36:28,000 | - | 03.05.2023 | 15:36:33,000 | 03.05.2023 | 15:38:22,000 | - | 03.05.2023 | 15:38:27,000 | 03.05.2023 | 15:40:46,000 | - | 03.05.2023 | 15:40:51,000 | 03.05.2023 | 15:41:44,000 | - | 03.05.2023 | 15:41:49,000 | 03.05.2023 | 15:45:07,000 | - | 03.05.2023 | 15:45:12,000 | 03.05.2023 | 15:50:50,000 | - | 03.05.2023 | 15:50:56,000 | 03.05.2023 | 15:51:27,000 | - | 03.05.2023 | 15:51:32,000 | 03.05.2023 | 15:07:17,000 | - | 03.05.2023 | 15:07:22,000 | 03.05.2023 | 15:08:48,000 | - | 03.05.2023 | 15:08:53,000 | 03.05.2023 | 15:08:53,000 | - | 03.05.2023 | 15:08:58,000 | 03.05.2023 | 15:09:57,000 | - | 03.05.2023 | 15:10:02,000 | 03.05.2023 | 15:10:02,000 | - | 03.05.2023 | 15:10:07,000 | 53,8 | 51,4 | 49,9 | 53,4 | 56,3 | 57,7 | 54,2 | 54,8 | 55,8 | 58,3 | 57,1 | 54,4 | 57,7 | 58,8 | 60,6 | 53,4 | 63,8 | 71,9 | 62,8 | 51,4 | 56,8 | 53,0 | 56,9 | 58,7 | 55,1 | 55,0 | 53,1 | 62,5 | 55,1 | 53,2 | 59,6 | 60,7 | 60,9 | 57,8 | 59,6 | 61,5 | 61,6 | 64,0 | 62,4 | 60,0 | 65,1 | 64,2 | 57,4 | 66,3 | 75,6 | 64,7 | 53,8 | 64,2 | 55,9 | 66,9 | 61,7 | 63,3 | 61,7 | 56,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 68,3 | 51,3 | 58,6 | 63,1 | 61,6 | 66,5 | 62,0 | 63,4 | 62,5 | 59,0 | 60,1 | 58,8 | 64,1 | 63,3 | 62,6 | 57,8 | 67,9 | 70,2 | 67,4 | 66,2 | 71,3 | 65,6 | 55,4 | 64,3 | 65,8 | 66,7 | 60,9 | 77,6 | 54,2 | 63,7 | 66,9 | 67,9 | 74,3 | 68,9 | 72,9 | 73,6 | 63,3 | 65,3 | 67,8 | 66,7 | 69,6 | 66,2 | 65,0 | 72,6 | 76,4 | 72,3 | 75,3 | 80,1 | 74,3 | 64,8 | 73,4 | 75,3 | 75,5 | 67,6 | 17,2 | 5,7 | 5,7 | 5,7 | 5,7 | 10,1 | 17,5 | 17,5 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 5,7 | 5,7 | 5,7 | 5,7 | 5,7 | 90,0 | 52,5 | 52,5 | 52,5 | 52,5 | 69,9 | 78,6 | 78,6 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 52,5 | 52,5 | 52,5 | 52,5 | 52,5 | 14,5 | -0,1 | 8,7 | 9,7 | 5,3 | 8,8 | 7,8 | 8,6 | 6,7 | 0,7 | 3,0 | 4,4 | 6,4 | 4,5 | 2,0 | 4,4 | 4,1 | -1,7 | 4,6 | 14,8 | 14,5 | 12,6 | -1,5 | 5,6 | 10,7 | 11,7 | 7,8 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nQl-innen 05.08 2003 13:10:12.000 Q1-innen 05.08 2023 13:10.12.000 Q1-innen 5.03 2023 13:13:06.000 Q1-innen 05.08 2003 18:13:11.000 Ql-innen 05.09 2003 15:13.12.000 |\n03.05.2023 15:10:07,000 -\n03.05.2023 15:10:12,000 -\n03.05.2023 15:13:01,000 -\n03.05.2023 15:13:06,000 -\n03.05.2023 15:13:12,000 -\n03.05.2023 15:15:45,000 -\n03.05.2023 15:15:50,000\n52,9\n54,5\n60,8\n64,9\n57,2\n63,3\n57,1\n61,6\n65,2\n65,2\n68,1\n59,8\n65,3\n38,0\n38,0\n38,0\n38,0\n38,0\n38,0\n61,4\n62,6\n69,9\n66,5\n61,5\n68,3\n70,4\n71,1\n77,1\n72,5\n65,7\n74,2\n5,7\n5,7\n5,7\n5,7\n5,7\n5,7\n52,5\n52,5\n52,5\n52,5\n52,5\n52,5\n8,5\n8,1\n9,1\n1,6\n4,3\n5,0\nXLI\nAnh\u00e4nge\n\n| Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | 03.05.2023 | 15:15:50,000 | - | 03.05.2023 | 15:15:55,000 | 03.05.2023 | 15:15:55,000 | - | 03.05.2023 | 15:16:00,000 | 03.05.2023 | 15:16:00,000 | - | 03.05.2023 | 15:16:05,000 | 03.05.2023 | 15:16:05,000 | - | 03.05.2023 | 15:16:10,000 | 03.05.2023 | 15:17:02,000 | - | 03.05.2023 | 15:17:07,000 | 03.05.2023 | 15:17:53,000 | - | 03.05.2023 | 15:17:58,000 | 03.05.2023 | 15:17:58,000 | - | 03.05.2023 | 15:18:03,000 | 03.05.2023 | 15:18:31,000 | - | 03.05.2023 | 15:18:36,000 | 03.05.2023 | 15:19:13,000 | - | 03.05.2023 | 15:19:18,000 | 03.05.2023 | 15:19:18,000 | - | 03.05.2023 | 15:19:23,000 | 03.05.2023 | 15:24:11,000 | - | 03.05.2023 | 15:24:16,000 | 03.05.2023 | 15:24:16,000 | - | 03.05.2023 | 15:24:21,000 | 03.05.2023 | 15:29:22,000 | - | 03.05.2023 | 15:29:27,000 | 03.05.2023 | 15:30:24,000 | - | 03.05.2023 | 15:30:29,000 | 03.05.2023 | 15:32:21,000 | - | 03.05.2023 | 15:32:26,000 | 03.05.2023 | 15:32:26,000 | - | 03.05.2023 | 15:32:31,000 | 03.05.2023 | 15:32:31,000 | - | 03.05.2023 | 15:32:36,000 | 03.05.2023 | 15:33:10,000 | - | 03.05.2023 | 15:33:15,000 | 03.05.2023 | 15:34:38,000 | - | 03.05.2023 | 15:34:43,000 | 03.05.2023 | 15:36:20,000 | - | 03.05.2023 | 15:36:25,000 | 03.05.2023 | 15:38:11,000 | - | 03.05.2023 | 15:38:16,000 | 03.05.2023 | 15:38:16,000 | - | 03.05.2023 | 15:38:21,000 | 03.05.2023 | 15:41:29,000 | - | 03.05.2023 | 15:41:34,000 | 03.05.2023 | 15:41:34,000 | - | 03.05.2023 | 15:41:39,000 | 03.05.2023 | 15:41:39,000 | - | 03.05.2023 | 15:41:44,000 | 03.05.2023 | 15:43:27,000 | - | 03.05.2023 | 15:43:32,000 | 03.05.2023 | 15:44:57,000 | - | 03.05.2023 | 15:45:02,000 | 61,9 | 59,7 | 61,0 | 55,9 | 59,8 | 59,0 | 60,1 | 56,6 | 56,3 | 51,9 | 51,8 | 53,4 | 54,1 | 52,8 | 54,3 | 57,5 | 55,3 | 57,9 | 58,1 | 61,1 | 63,9 | 63,5 | 59,2 | 61,0 | 61,7 | 51,1 | 48,8 | 63,3 | 62,8 | 66,6 | 59,2 | 62,3 | 62,6 | 62,9 | 62,7 | 62,0 | 53,9 | 56,9 | 57,2 | 59,8 | 59,5 | 59,4 | 63,0 | 59,8 | 61,5 | 61,5 | 69,4 | 65,9 | 65,2 | 61,4 | 64,6 | 63,3 | 54,9 | 51,3 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 63,5 | 59,4 | 60,5 | 60,0 | 66,3 | 68,0 | 65,5 | 60,6 | 64,9 | 57,5 | 57,3 | 57,8 | 56,7 | 60,5 | 59,2 | 63,0 | 59,5 | 66,2 | 63,5 | 60,9 | 65,7 | 64,8 | 62,1 | 62,2 | 61,7 | 55,6 | 61,8 | 67,6 | 65,6 | 62,9 | 66,8 | 71,9 | 74,1 | 72,2 | 68,2 | 72,5 | 63,3 | 68,3 | 67,6 | 63,7 | 69,8 | 64,8 | 70,8 | 65,7 | 77,9 | 68,4 | 67,3 | 69,7 | 67,1 | 70,7 | 69,7 | 65,3 | 62,1 | 75,7 | 5,7 | 10,1 | 10,1 | 10,1 | 10,1 | 10,1 | 17,5 | 17,5 | 17,5 | 17,5 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 52,5 | 69,9 | 69,9 | 69,9 | 69,9 | 69,9 | 78,6 | 78,6 | 78,6 | 78,6 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 1,6 | -0,3 | -0,5 | 4,1 | 6,5 | 9,0 | 5,4 | 4,0 | 8,6 | 5,6 | 5,5 | 4,4 | 2,6 | 7,7 | 4,9 | 5,5 | 4,2 | 8,3 | 5,4 | -0,2 | 1,8 | 1,3 | 2,9 | 1,2 | 0,0 | 4,5 | 13,0 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nQ1-innen 5.03 2023 15:45.07.000 Q1-innen 5.08 2003 15:47.49.000 Q1-innen 5.0 2003 18:91.20.000 |\n03.05.2023 15:45:02,000 -\n03.05.2023 15:47:43,000 -\n03.05.2023 15:51:15,000 -\n03.05.2023 15:51:20,000 -\n03.05.2023 15:51:25,000\n55,6\n53,7\n50,6\n50,4\n65,8\n59,0\n54,8\n53,5\n38,0\n38,0\n38,0\n38,0\n61,5\n60,0\n59,2\n54,9\n75,0\n68,3\n68,3\n69,1\n62,8\n17,2\n17,2\n17,2\n17,2\n90,0\n90,0\n90,0\n90,0\n5,9\n6,3\n8,6\n4,5\nXLII\nAnh\u00e4nge\n\n## Anhang 5: Rechenmodell SoundPlan 9.0 \u2013 Gabelhubwagen 27.04.23\n\n\n[IMAGE: Schalltechnische Untersuchung Anlage A5 Bachelor Thesis: Verladeger\u00e4usche in Speditionen - Eingangsdaten- Projekt-Info Projekttitel: Bachelor Thesis: Verladeger\u00e4usche in Speditionen Projekt Nr. : Projektbearbeiter: Selin Karag\u00f6z Auftraggeber: Rechenlaufparameter Reflexionsordnung 3 Maximaler Reflexionsabstand zum Empf\u00e4nger 200 m Maximaler Reflexionsabstand zur Quelle 50m Suchradius 5000 m Filter: dB(A) Zul\u00e4ssige Toleranz (f\u00fcr einzelne Quelle): 0,100 dB Bodeneffektgebiete aus Stra\u00dfenoberfl\u00e4chen erzeugen: Nein Stra\u00dfen als gel\u00e4ndefolgend behandeln: Nein Richtlinien: Gewerbe: ISO 9613-2: 1996 Luftabsorption: ISO 9613-1 regul\u00e4rer Bodeneffekt (Kapitel 7.3.1), f\u00fcr Quellen ohne Spektrum automatisch alternativer Bodeneffekt Begrenzung des Beugungsverlusts: einfach/mehrfach 20,0 dB /25,0 dB Seitenbeugung: ISO/TR 17534-3:2015 konform: keine Seitenbeugung, wenn das Gel\u00e4nde die Sichtverbindung unterbricht Verwende Glg (Abar=Dz-Max(Agr,O)) statt Glg (12) (Abar=Dz-Agr) f\u00fcr die Einf\u00fcged\u00e4mpfung Umgebung: Luftdruck 1013,3 mbar relative Feuchte 70,0% Temperatur 10,0\u00b0C Meteo. Korr. C0(6-22h)[dB]=0,0; C0(22-6h)[dB]=0,0; Cmet f\u00fcr Lmax Gewerbe Berechnungen ignorieren: Nein Beugungsparameter: C2=20,0 Zerlegungsparameter: Faktor Abstand / Durchmesser 8 Minimale Distanz [m] 1m Max. Differenz Bodend\u00e4mpfung + Beugung 1,0 dB Max. Iterationszahl 4 Minderung Bewuchs: ISO 9613-2 Bebauung: ISO 9613-2 Industriegel\u00e4nde: ISO 9613-2 Bewertung: TA-L\u00e4rm 1998/2017 - Werktag Reflexion der \"eigenen\" Fassade wird unterdr\u00fcckt Geometriedaten Gabelhubwagen 27-04-23.sil 19.06.2023 13:41:12 - enth\u00e4lt: F001 Bodeneffekt.geo 01.06.2023 12:27:46 G001 Bebauung.geo 01.06.2023 11:59:38 MP003 Messpunkte.geo 19.06.2023 13:41:12 0003 Lkws.geo 01.06.2023 09:47:10 Q001 Schallquelle Gabelhubwagen 27.04.geo 19.06.2023 12:49:02 RG001 Rechengebiet.geo 01.06.2023 12:31:18 RDGM9999.dgm 18.04.2023 12:15:40 Ergebnisi Heine + Jud - Ingenieurb\u00fcro f\u00fcr Umweltakustik SoundPLAN 9.0]\n\nXLIII\nAnh\u00e4nge\n\n[IMAGE: jyden le\u00dfsds\u00dfunjeunsg (war N41 Be je\u00dfeds\u00dfunjsuneg (war 141 Yu) Beiyosnzueyezeuny gap (LIDAZ USNIeZsqeLJEg INPIaLIOy sp {NITAIP uSNEZSgELER Inplauoy ap (map uUSUORXEJS4 Yp\u0131np Bunyayusje\u00dfed (var yar\u0131p uondlosgeynT pun\u00dfjne Bunydweg Sue ep uney Bunwunpsgy puns\u00dfyne Bunydweg BON 2193 JegV Pleysuepog punu\u00dfjne Bunydweg auan\u0131\u0131 gp bw Bunyaugsny JsyosisWwosd puns\u00dfyne Bunydweg Sala gp NPY Bunyeysgyw 32449UOB any Beiyosnz gr o4 yay\u00f6nleyuoL an) Beiyosnz gp 44 ep IM (We MI (ver a ven-wwep| gp NY 1a6aduauu\u0131 (ver 7 Yosuoissiuu - ajenbjleyog Bunuenug auan\u0131y) w Ss (ay9e|4 1opo SBUFT) SIIoENd J2p sYQ19 zwi $.40p0 | SWweujend Send Spushs] -b87 Bunysugsny Son - usuopsdg ul ayosne1s\u00dfspenen :s\u0131sey | Jofsyseg Ss obejuy Bunyonsigjun syas\u0131uyosyjeyas]\n\nXLIV\nAnh\u00e4nge\n\n[IMAGE: gg \u2018eg 0'0 erz_ | Erz g\u0131 v\u20190- 00 Sr sor \u20ac 00 29 E77 621 03 B3 (vIap 9\u2019 xew'nT (wWIap grz xew'L1 (Waps'san.T (WIaprseg LIT 93 ZOrL wer | (war ap Ei ap (wap ap ap ap ap ap ap a | (wer | (War ap | (war wu zu N 11 | (umaz |inDarp|asmanp| year | wiew | Jeaw dv APY O4 a IM m m\u0131 mg a) s | s.epo ayend -b87 Bunysugsny SapuN - usuonpadg ul ayadsne4s\u00dfapenaN !s\u0131say | Jofaydeg S obejuy Bunyansusjun sy9s\u0131uyoayjeyas GUIEEIED)]\n\nXLV\nAnh\u00e4nge\n\n## Anhang 6: Rechenmodell SoundPlan 9.0 \u2013 Gabelstapler 03.05.2023\n\n\n[IMAGE: Schalltechnische Untersuchung Anlage A6 Bachelor Thesis: Verladeger\u00e4usche in Speditionen - Eingangsdaten- Projekt-Info Projekttitel: Bachelor Thesis: Verladeger\u00e4usche in Speditionen Projekt Nr. Projektbearbeiter: Selin Karag\u00f6z Auftraggeber: Rechenlaufparameter Reflexionsordnung 3 Maximaler Reflexionsabstand zum Empf\u00e4nger 200 m Maximaler Reflexionsabstand zur Quelle 50m Suchradius 5000 m Filter: dB(A) Zul\u00e4ssige Toleranz (f\u00fcr einzelne Quelle): 0,100 dB Bodeneffektgebiete aus Stra\u00dfenoberfl\u00e4chen erzeugen: Nein Stra\u00dfen als gel\u00e4ndefolgend behandeln: Nein Richtlinien: Gewerbe: ISO 9613-2: 1996 Luftabsorption: ISO 9613-1 regul\u00e4rer Bodeneffekt (Kapitel 7.3.1), f\u00fcr Quellen ohne Spektrum automatisch altemativer Bodeneffekt Begrenzung des Beugungsverlusts: einfach/mehrfach 20,0 dB /25,0 dB Seitenbeugung: ISO/TR 17534-3:2015 konform: keine Seitenbeugung, wenn das Gel\u00e4nde die Sichtverbindung unterbricht Verwende Glg (Abar=Dz-Max(Agr,0)) statt Glg (12) (Abar=Dz-Agr) f\u00fcr die Einf\u00fcged\u00e4mpfung Umgebung: Luftdruck 1013,3 mbar relative Feuchte 70,0% Temperatur 10,0\u00b0C Meteo. Korr. C0(6-22h)[dB]=0,0; C0(22-6h)[dB]=0,0; Cmet f\u00fcr Lmax Gewerbe Berechnungen ignorieren: Beugungsparameter: c2=20,0 Zerlegungsparameter: Faktor Abstand / Durchmesser Minimale Distanz [m] Max. Differenz Bodend\u00e4mpfung + Beugung Max. Iterationszahl 4 Minderung Bewuchs: ISO 9613-2 Bebauung: ISO 9613-2 Industriegel\u00e4nde: ISO 9613-2 Bewertung: TA-L\u00e4rm 1998/2017 - Werktag Reflexion der \"eigenen\" Fassade wird unterdr\u00fcckt Geometriedaten Gabelstapler 03-05-23.sit 19.06.2023 13:55:18 - enth\u00e4lt: F001 Bodeneffekt.geo 01.06.2023 12:27:46 G001 Bebauung.geo 01.06.2023 11 MP004 Messpunkte.geo 19.06.2023 13:16:02 0004 Lkws.geo 19.06.2023 10:26:00 Q001 Schallquelle Gabelstapler 03.05.geo 19.06.2023 12:14:38 RG001 Rechengebiet.geo 01.06.2023 12:31:18 RDGM9999.dgm 18.04.2023 12:15:40 | Ergebnisnr. : 1 Heine + Jud - Ingenieurb\u00fcro f\u00fcr Umweltakustik SoundPLAN 9.0]\n\nXLVI\nAnh\u00e4nge\n\n[IMAGE: yden le\u00dfsds\u00dfunjeunsg (War NAT Be jo\u00dfadsfunjounag {var 141 usjlezsqeueg \u0131myaLLoy Ep {NATANIP (neyuy) Beiyosnzusyiezayng gap (LVaZ ueyezsgeueg Inpauoy.", - "embedding": [ - 0.002736680954730076, - 0.009008438080013647, - 0.0001318682850990784, - -0.01987536485203241, - -0.020465488894509484, - 0.012272019514703785, - -0.017666178251030885, - -0.01862732107281702, - -0.03115559780761183, - -0.01950463247157844, - 0.020556978088866345, - 0.02912658847604875, - -0.019333671587751736, - 0.002899098110176513, - 0.0004151437279559833, - 0.01754518372241903, - 0.016803069249717553, - 0.0036131949802611857, - 0.017977906527544395, - -0.012344361481317227, - -0.004976333406232433, - 0.00787859550051678, - -0.01296930315405204, - 0.010676665373998875, - -0.00309097632073784, - 0.0065346063137127, - 0.003038800467748051, - -0.0129494090212267, - -0.0023200580104184134, - 0.0024253354997870223, - 0.010457987376834132, - -0.007294802818141722, - -0.03425327411810895, - 0.0018273880478193389, - -0.0046625491652710115, - -0.035121761220065724, - -0.011436186976555586, - -0.009358452718604192, - 0.01887190294389273, - 0.006465426512289243, - 0.017523052378070572, - 0.024447957658202582, - 0.0012122343292954943, - -0.008118514130482635, - -0.019706639925777165, - 0.021668387482809366, - 0.01423177962011629, - -0.009265621012225531, - -0.00592957254824679, - 0.016247682666788422, - 0.01075029421132343, - 0.015312248796859352, - -0.0236615929052261, - -0.009779906196670093, - 0.007025786189336876, - -0.008538998717741704, - 0.009972866341953298, - 0.01632804933996681, - -0.023100829853475266, - 0.0011773617826588692, - -0.008539719534150976, - -0.021740048761153596, - -0.024457611813804455, - 0.006370357914910079, - -0.012034610347951981, - -0.03623111176693286, - -0.004968051625463212, - 0.0036240207448162624, - 0.0026813537191739422, - 0.0011236531694156018, - 0.010122027660814376, - 0.023714196071033547, - 0.010283941283530268, - -0.0030334150425581023, - 0.037675785772045486, - -0.016656220834729535, - -0.009048921884699891, - 0.011685708596203522, - 0.020679219174341353, - -0.007116922597509713, - 0.024393056378002848, - -0.013544448732336074, - -0.026745696704385688, - 0.012432964990729533, - 0.0228343224741612, - -0.007950760284530121, - 0.0005671302859954411, - 0.03418416791595709, - -0.014443477408636534, - -0.0022472843793908464, - 0.02123074191098202, - 0.03872600140456452, - 0.01762260037280984, - 0.013599298483026054, - 0.0180737622591527, - -0.010731102118958129, - -0.011355114724280201, - 0.02131773657165124, - -0.0018751207696187417, - -0.01731080104047886, - -0.004472596057878315, - -0.0074189948351251036, - 0.0012039254328635098, - 0.0011871009799020254, - -0.016916212183596322, - -0.007806256259718055, - 0.012524477691476745, - 0.0007716367912623217, - -0.01732900949593941, - -0.012831820882338894, - 0.01508688354428858, - 0.022244348810335855, - 0.0049433501642297106, - 0.011258226162312696, - 0.014300021233770695, - -0.017742314599704778, - 0.031564045495084916, - -0.027706194809975642, - -0.023034171791626132, - -0.030504405821042902, - 0.03650278251759318, - 0.025761539406922936, - 0.01166118999474351, - -0.04428787249824834, - 0.02167334496811915, - 0.01725605457732062, - 0.005856821776682341, - -0.016029380958252924, - -0.028032758828653175, - -0.02271511744110838, - 0.022584302407723283, - 0.009139229627006909, - 0.020145099237582956, - 0.03219366303965456, - 0.001956719516769421, - 0.024927633876646427, - -0.03753122411793984, - 0.009008782457687143, - -0.026797029472292868, - -0.021783825580974057, - 0.017523601714083327, - 0.013827639330862986, - -0.015945105201672465, - -0.0243682185291904, - -0.0053091875247519345, - 0.009900966411899479, - -0.0010213626431039061, - 0.01193214847461169, - 0.001807061668950729, - -0.02014650632942354, - 0.02041110444532771, - -0.011565157758862831, - 0.02095030800412297, - 0.011057915990116069, - 0.006715765494144419, - 0.0044227550105823835, - -0.01350234933905209, - 0.005288808805941706, - -0.024217270210019515, - -0.01877977150866253, - -0.017099881039210847, - 0.015153723704634048, - 0.0033759012934930356, - -0.006020713604231853, - 0.03906408414437056, - 0.007030586559338627, - -0.0034832145990588456, - -0.020490223426832207, - -0.001648794376257593, - -0.02126268681102314, - -0.017491458449873463, - 0.007444731464602105, - -0.0038537856465077343, - 0.018266419566582266, - 0.004995096906081252, - 0.0108597259436681, - 0.025713615641194582, - -0.009073814483718372, - -0.038353632808687275, - -0.0164832408774249, - -0.006403865039583006, - 0.010104953080311263, - 0.014705861577479612, - 0.026426439369239607, - -0.023786409863912134, - -0.008605299189287036, - 0.019314259141378888, - 0.013343244813940532, - 0.0032314519495258375, - -0.004421378630064691, - 0.024305978259473043, - 0.012794428217418108, - 0.004791929800867111, - -0.012438093443034572, - -0.6452803753307718, - -0.0252718478851261, - -0.014797375011518711, - 0.003038499745773322, - 0.005275262995988452, - 0.02703833573907864, - 0.020392161279579744, - 0.016831557284429786, - -0.01969873453780851, - 0.04533416749270093, - -0.0023763504566475494, - 0.020100931268676573, - -0.0018824740126960487, - -0.00249019715493142, - -0.010129612211317675, - -0.02324033939198377, - 0.005131263033000096, - -0.009881341940033074, - 0.01967013885086434, - 0.03171490122012411, - -0.023142937995711124, - 0.010987983614481644, - 0.014159810941011132, - 0.02378922109966724, - 0.004848787389907022, - -0.0024102649672797074, - 0.009980715129994142, - -0.02586380022002545, - 0.012321828813169382, - -0.00693053929264772, - -0.03945252696516401, - 0.003181856744296377, - -0.004936640341488887, - -0.009308879588441458, - 0.03814771248822186, - -0.016555597418171954, - -0.016583854996840952, - 0.011504237009902255, - 0.02707567321072529, - 0.020989744066626317, - -0.011649320779636535, - -0.031543567725213516, - 0.005939666882597016, - 0.0004765496672762731, - 0.000681104279890256, - -0.010190711797414946, - 0.023654723424555397, - 0.004678571623690057, - 0.007660036340849743, - -0.047052318725706525, - 0.011643786127705698, - 0.0071806854766496035, - -0.007038942559947158, - -0.011695863894961092, - -0.00010058531197041368, - 0.005430490351599759, - 0.009311838337644264, - -0.029505403631431826, - 0.009302537962930155, - -0.02285043902114234, - -0.009128851613153303, - -0.004228818639421169, - 0.000580175016416284, - -0.013256237307113918, - -0.020674565566326297, - 0.0034034048205140274, - -0.018636486915157943, - -0.01505602698521703, - 0.013253277916076302, - 0.0007393605492926935, - -0.009191001772424264, - 0.02640039046421713, - -0.003010775175016002, - -0.0007162769041686726, - 0.03035237450792842, - 0.018892519511166873, - 0.01448246087038795, - -0.022395619030850262, - 0.006754046736940041, - 0.019709538919977967, - -0.0038636954776561255, - -0.013340294963411796, - -0.021238089981641985, - 0.0013888666487349894, - 0.027647158735544443, - -0.015281505670781506, - -0.010487380487916472, - 0.007562672132235032, - -0.006129112990265451, - 0.010336715707212441, - 0.015930591156727205, - 0.023114481545999252, - 0.003194218470987367, - -0.002765000543518923, - -0.004717615005745677, - 0.025664692554985668, - -0.014105431969627444, - 0.018850230101674994, - 0.0038797614501732483, - -0.050413101305321395, - -0.0005476623037790873, - 0.00011425160533380961, - 0.015551369118930233, - -0.01825602191997134, - 0.024013535298635095, - 0.012742895034054569, - -0.0025778128782457904, - 0.010924666330093868, - 0.01694414756577247, - -0.02986237063580823, - -0.023929707188742072, - -0.01616350765425914, - -0.003751213731243369, - -0.011433481135703208, - -0.013482653830083709, - -0.03793853618073653, - 0.018348020346767347, - -0.0018755581243841556, - 0.01127280284771811, - -0.0025957536116424543, - 0.01767083274245159, - 0.0058314165557920425, - 0.018830048845986255, - -0.02420850163358707, - -0.011594643006748765, - 0.02985418319037455, - 0.015624292340175074, - 0.009830193111001789, - -0.005304013921586681, - -0.009016982305445105, - 0.0255191712543137, - 0.006338624102093313, - 0.025144409258193716, - -0.0006358344785097116, - 0.008958273470103277, - -0.0018205580036676665, - 0.023228529710512497, - -0.0013001285871002972, - 0.003207457450819416, - -0.017674352342449837, - -0.007051554675338058, - -0.012980698142628132, - 0.009577934865856555, - -0.020446984042201195, - -0.009777984241396932, - -0.03176256732890559, - -0.03164406180525058, - 0.02323127333622204, - -0.0008036726510566352, - 0.01879493250163569, - -0.010905560210638857, - -0.008240136418728599, - -0.011212731430130764, - 0.009324912433099544, - -0.00012043202036913681, - -0.009385634488612586, - -0.023759164406263595, - -0.015167038881095017, - -0.0134006529165338, - -0.022985607369834925, - 0.013253512762234989, - 0.027993682890037702, - -0.031731559010798466, - -0.02892765089489526, - -0.002208815943545751, - 0.0052650046088398555, - 0.016384091089243283, - 0.007478123845819331, - -0.013016768512065437, - -0.02850597595623696, - 0.005129721947622762, - 0.0013035158549412687, - -0.008155613945833674, - -0.0008256529551154984, - -0.019568917269645, - -0.001241178517088683, - -0.025239007503057957, - 0.010277023503846867, - -0.007009198238419328, - -0.011136263520483821, - 0.01092348573870733, - 0.003273981025130175, - -0.015272000965822473, - -0.01297735344029039, - 0.018689801676561285, - 0.019403072096424254, - 0.00014387234541944302, - 0.0028996503829550315, - -0.020233652435649046, - 0.029052549265723204, - -0.013885526673599232, - 0.008528261812582587, - -0.011432569977841863, - 0.000674933419019698, - -0.011806709871639287, - 0.02632027731347331, - -0.0073614874082274144, - 0.0023428199960052, - -0.012539071787507905, - 0.013056635434765346, - 0.029837097411077387, - 0.003092228596737047, - 0.012023927831183721, - -0.02909256267824777, - 0.011198483952554943, - -0.026871768132168055, - 0.01971655668410383, - -0.023642482761597385, - 0.05217876932336874, - 0.025251372354158634, - 0.020220572116449276, - -0.02711719049902189, - -0.03145899911171597, - 0.012531840576494422, - 0.004763210503734894, - 0.03771032368507143, - -0.00968067946347065, - 0.0002500704561796135, - 0.014245391969919488, - 0.011672384506382425, - 0.015420114717510864, - 8.088684847164517e-06, - 0.0307257916330546, - 0.013485200849650726, - -0.011673459347087349, - 0.0029311018036121328, - 0.01512844436831409, - 0.021457799728193918, - 0.0003483842104135707, - -0.012102095447242462, - -0.009874791304257594, - -0.000824129284207269, - 0.013322544780246694, - 0.0073983399050823045, - 0.01766198025313669, - 0.014246447829706922, - 0.040702807658738474, - 0.007364332896553915, - 0.030916689670730253, - 0.016548818653791358, - -0.007341554021760121, - -0.000749292896264511, - 0.031163807505473855, - -0.01352464421616616, - 0.002718236682108075, - -0.018054581427751373, - 0.02210503537346062, - 0.0520445192931788, - 0.011386244102047744, - -0.001955947706284053, - -0.011971861660303972, - -0.0075693096323283995, - -0.019534883071372848, - 0.0022821507202951297, - 0.0257341277216623, - -0.012366202966314691, - 0.011130264065582776, - 0.002809056363363409, - 0.010766282640791868, - 0.012844431292286332, - 0.01659972155015595, - 0.00415665730274653, - -0.007762571266814927, - -0.012913869755842362, - 0.013596186686547284, - -0.01612986520670995, - -0.027550101168015102, - -0.024484458482120844, - 5.611380131863844e-05, - -0.01050545798927408, - 0.005408015585576811, - -0.02521206132389589, - -0.023173903083891827, - 0.011898747642128943, - 0.014307678331546416, - -0.010607368757600523, - 0.009144180482040267, - 0.009810262597696915, - 0.021306294433060743, - 0.008671332535394602, - -0.002499747025452247, - -0.03179553943253425, - 0.00961697969234656, - 0.019826091832373542, - -0.0035241523458813913, - -0.006360665111588452, - -0.0003543659518042344, - 0.026553491854164554, - -0.024071483196266938, - -0.0007110339653129833, - -0.016587216984534848, - 0.0219456636124209, - -0.013631597192482987, - 0.0040160700976760244, - 0.0038698985288757506, - -0.003211648210976789, - 0.00888957190809819, - -0.010487882901300271, - -0.010567023328845581, - -0.002380042735984229, - -0.026113968395010623, - -0.002367359301693068, - -0.00382144957593722, - -0.021345901671517363, - 0.04166808878018641, - -0.007401470434120637, - -0.00395611550187985, - -0.014967580104945552, - 0.01855914824148327, - -0.00010565447740392386, - 0.004788869054761543, - -0.006570665532136409, - -0.018758583231427258, - 0.019239620909356665, - -0.01691176131061567, - -0.002140656723513841, - -0.001786695192666511, - -0.016831771789975507, - 0.016226318640495233, - 0.00015239645986051022, - -0.018901156840753337, - -0.022517706661136703, - -0.012768329678224152, - 0.007148335623511538, - 0.0018499326361761175, - 0.04185989612750059, - 0.016373163542316604, - 0.008483650767908352, - 0.004315367886580979, - 0.0014366291325705208, - -0.0005750812754053478, - -0.031395906845063465, - 0.007254583445938035, - -0.004611539817177032, - 0.0018464713346455382, - 0.008406737792089081, - 0.02118871557965739, - -0.013905899982489851, - 0.011392836828095306, - -0.013404855484468738, - 0.010540711663625996, - -0.00019019242688478473, - 0.02316680799988937, - 0.01926449171330164, - -0.013410102215546043, - 0.001759717693026837, - -0.016664331290358877, - 0.05162045824158261, - 0.0071393150054762265, - -0.006107801583713806, - 0.010640605215814223, - 0.016032205574845422, - 0.04469273090086972, - -0.021596026221912125, - -0.0012573952198528158, - 0.03378022759733434, - 0.021292274250303726, - 0.024833761724655717, - -0.013213198409409153, - -0.0128122726741296, - 0.01515715871059137, - -0.015619231561292978, - 0.0313935739658387, - 6.881229481623229e-05, - -0.0050188716124432075, - 0.02182568289388785, - 0.0076335701258346544, - -0.0050316470793893555, - 0.029283099239994014, - -0.0021478428028793768, - -0.00491710330090071, - 0.010191848733700515, - 0.013451570394666112, - -0.018802548454686173, - 0.006225612296381893, - -0.00983981423543622, - -0.013527566709345722, - -0.018532553694413215, - -0.007354080449833833, - 0.007092801689374917, - -0.017766839089399612, - -0.02905274147323732, - -0.018470754035004016, - -0.013420271428170247, - -0.01430231648124077, - -0.04177406324958125, - 0.025529523853555034, - -0.0034238022095048793, - -0.014199091888284335, - -0.007952294902184768, - -0.057215322784834766, - -0.014186600526605605, - -0.02576951093704588, - -0.008151647976034319, - -0.0038198090111236714, - -0.02192851562571761, - -0.012831986995532937, - 0.01764979589220331, - 0.007337404629158052, - 0.011884134456587326, - 0.02955802068623069, - -0.009213107605772227, - -0.00235683647460356, - 0.0003494584830173561, - -0.015175156702225455, - -0.02313361464775622, - 0.001969135888323025, - -0.004489410283516403, - -0.01586120118602116, - 0.015431003969161515, - 0.007244930149912118, - 0.0005888745219821621, - 0.0037014638442134473, - 0.007648298385432149, - 0.008686788764002985, - 0.009749863208587322, - 0.01848385569159385, - 0.005215692399739527, - 0.01555096555349807, - -0.0016383822068236824, - 0.0042165597283532795, - 0.0111846641877489, - 0.010995735716808551, - -0.003580352685913662, - 0.03326884896151119, - -0.014137450495271216, - -0.0010820643978664707, - 0.006592059733753023, - 0.009428574583281168, - 0.008360369398006516, - 0.006015415226203018, - -0.00803681042892142, - -0.012381589176883862, - -0.002067176444448432, - -0.002913848379684955, - -0.009044289894261317, - 0.0012156113511031855, - 0.00011749928435949047, - -0.017295732655440283, - 0.008318364644548753, - 0.011487577374301425, - -0.005356095464214897, - 0.012916577970422652, - 0.0018936521217859067, - -0.011700347768371791, - -0.021311089648651697, - 0.05251877080398484, - -0.012073720192395143, - 0.008338316698311294, - 0.030751030053072583, - -0.023826615218228795, - -0.0030345059111689322, - -0.01070242313718168, - 0.00933486760412339, - 0.015054515132204373, - -0.0019665614466531775, - -0.0004313465337386054, - -0.009748350922955971, - -0.016022397804292158, - -0.020671034826053973, - -0.005959371224555001, - 0.03035950061067079, - -0.0013341626021883342, - 0.005123100881085793, - -0.008807211121844278, - 0.008394657477726363, - -0.00517696013893653, - 0.014656894648395568, - -0.013740349995957713, - -0.020143246282773995, - -0.025378491259231035, - -0.0021875957013071786, - -0.014408570843675732, - 0.028497655002601673, - -0.007532050305114553, - 0.002475771611548949, - -0.021294968897212555, - -0.020483828038192264, - -0.010397030571893028, - -0.02359554280287431, - -0.023742443443405616, - -0.006269780560002486, - 0.008633127405360739, - 0.03645886882265266, - 0.030863648717345288, - 0.003629089651197738, - 0.009777785742353322, - 0.005451880145147315, - 0.010079582477869848, - -0.004291016020658973, - -0.00965210127978959, - -0.005396003367517427, - -0.03324398790564239, - 0.005571208654450603, - -0.003206541820628148, - 0.00986666873523147, - 0.0023542723547787447, - 0.006627039904874789, - -0.010513312607285066, - 0.03606720811244353, - -0.017026243685122282, - -0.010714282207693764, - -0.006120290655143472, - -0.033552406299618975, - 0.0008198928427077287, - -0.02059075266851155, - -0.009550842187183058, - 0.004250358419594317, - -0.03414793461780007, - -0.009282834112145122, - 0.01953439806846645, - 0.006309439952551054, - -0.0001725117947811032, - 0.012400755053421574, - 0.003660401976881831, - -0.02399935981969243, - 0.033826640137501945, - -0.001392032168068598, - 0.005778461023532962, - -0.007145892788569092, - -0.009090283944869569, - -0.015865179975662374, - -0.02635294077736522, - 0.01477308256860057, - -0.021193601904139416, - 0.005970431118479389, - -0.015490427507810742, - -0.024175947702294406, - -0.0024981813803088425, - -0.01617397462147049, - -0.01055826187295175, - -0.02149422079836626, - 0.009964263578107894, - -0.00620829291198989, - -0.013777781770743226, - -0.023534268041483876, - -0.013775146518630049, - -0.0179375560099191, - 0.02405897621851063, - -0.0006747498329264395, - 0.007094410318950338, - 0.020764745490374617, - -0.016085615692314217, - -0.03146014558918272, - 0.0015829200074923896, - -0.025805314680626544, - 0.04661422677979335, - 0.010878669881881116, - 0.06071512432347036, - 0.025284775707673138, - -0.02690183756636692, - -0.015795091120842188, - -0.04401438875434262, - 0.009125406008232539, - -0.009589961732827423, - 0.011069440414335776, - 0.026524628461560153, - -0.023059632834145045, - 0.004371803285780954, - 0.005261286986096018, - -0.0030066354124791855, - -0.021928212955832475, - -0.010605527455886459, - 0.04739931727408985, - 0.010755620150076937, - 0.018605359062077904, - -0.02154547665003736, - -0.006978202560253888, - -0.03099715259942503, - 0.0031149469887748345, - -0.015214099824695031, - 0.00526675785358666, - -0.004025449582250734, - -0.008281394412902422, - -0.016159370192139255, - 0.036554178254387185, - -0.012560001350201622, - 0.026633616834926755, - 0.021599342868116895, - -0.0198970914162806, - 0.013940613785475902, - -0.009956784837663903, - 0.0014084167369937807, - 0.012097434547901747, - -0.028382984054211528, - 0.026964695657544568, - -0.0076403157610528145, - -0.004315703119345673, - 0.011268506199724334, - -0.015235765001454965, - -0.023894240178684627, - -0.024863383232552536, - 0.010846808151535502, - 0.02030759453233916, - -0.02141304578906666, - 0.0001789165089980439, - 0.0007481745051242421, - -0.0009858725900449674, - 0.0092476945281808, - 0.020863712656488446, - -0.00945265807857424, - -0.005790110810657178, - -0.0017793847946069885, - -0.0018160561559092223, - 0.0036971571730787718, - 0.013032168753394573, - 0.007081666683519905, - -0.026117484251997676, - -0.005255277569356525, - -0.016229011833326028, - -0.004406570413597834, - -0.008839439263906429, - 0.024200409396354386, - -0.0429475613345906, - -0.00423912104136823, - 4.8084578365180065e-05, - 0.01102344118276434, - 0.03657402017839761, - 0.00983253989511148, - -0.02329550565021625, - 0.006266774323071579, - 0.021843805486350648, - -0.02172619159590016, - 0.026280739320592578, - 0.02012962381361379, - -0.009696845692719705, - -0.039054009102717634, - -0.010331385089081997, - -0.001565850585450211, - 0.0026570007881926167, - 0.03223044619762348, - -0.008146972477260442, - 0.0012151414873363964, - -0.009565519938522365, - 0.013506745286077046, - 0.02304239913721588, - -0.018973127205756776, - -0.0066060433226514895, - 0.005726740515957999, - 0.02025159656090622, - 0.007894609996923018, - -0.006830162422108517, - -0.000597366805346725, - 0.02846597298283693, - 0.017239912648481258, - 0.01027856564526925, - 0.008597420809783216, - -0.01935506469950055, - 0.027292520838812676, - 0.013354911275097085, - -0.018469955957855645, - 0.008429593784844338, - -0.0295586644358658, - -0.0018617973912752072, - 0.03407240815664677, - 0.00868261861869463, - -0.016004239826466926, - -0.0013402507347751742, - -0.013971447486883438, - -0.024453828104351618, - -0.01631609146880412, - 0.03143205112710418, - -0.00881126708602639, - 0.005347629766086126, - 0.025554798721868176, - 0.012835549389226049, - -0.008669761128694366, - 0.01400729931737596, - 0.01270762686636476, - -0.01898142928738838, - 0.018410210003595714, - -0.019999722670549915, - -0.014945202477319406, - -0.006821487298915831, - 0.0024930553619015874, - 0.021292275439912047, - 0.024856805446389296, - -0.033170354745797, - -0.010292010935181626, - -0.0037824878952270003, - -0.010836130739382652, - -0.005543797322045742, - -0.008000473500358705, - 0.010931499618902683, - 0.01550659813567311, - 0.02292925941777865, - -0.017080928730933725, - 0.05320949988459418, - 0.00026128665758483994, - 0.022453709210602225, - -0.024958645925970323, - -0.01089640625154334, - 0.012670775942242824, - 0.002401747715232102, - 0.015206617355829953, - 0.008808803859882664, - -0.03309325694966088, - 0.0009053555313996584, - 0.01539996808912248, - 0.018578886981137046, - 0.014620581308613894, - 0.018363224587102527, - -0.011914855326759372, - -0.04046734092687327, - 0.00047879926817289277, - -0.0021029779325485846, - 0.01650915986669537, - 0.0067168049910768845, - 0.010303535170100617, - -0.025661390441812877, - 0.009933314851371167, - -0.00043970140275015275, - 0.011211934806096198, - -0.021314324552845838, - -0.007667711779812723, - 0.021482120012499873, - -0.012489028944798683, - -0.01495978470560279, - 0.01394991151768653, - -0.012313419996135028, - -0.0069329600472149665, - -0.03578896510294424, - 0.03309029816562268, - 0.017744408865789388, - -0.0196090122537985, - 0.017826918352482603, - 0.02001945233834492, - -0.006056951728352297, - -0.02013543080924794, - -0.011241861718897824, - -0.04109918869305981, - -0.02682047491109608, - 0.006022287470855618, - -0.008879704423003553, - 0.021237952105903832, - -0.02244302010308938, - 0.02295992788000813, - -0.01395065442877412, - -0.006953915708298726, - -0.019960263003918236, - -0.03392686564524894, - -0.02876913771980248, - 0.03167714915650275, - 0.021109641871879876, - -0.03236117037533033, - 0.008687002004699374, - 0.009959562303197984, - -0.018409033861631598, - 0.014394150817385253, - -0.01575384081389478, - -0.019661388080559936, - -0.01475977433276457, - -0.015513849155092673, - 0.019169639158061715, - -0.014787443106695611, - -0.004296297616871709, - 0.009070627705920594, - -0.008248520852091318, - -0.0012942785643280412, - -0.00991074819262222, - 0.17412304209127397, - -0.019397106263440468, - -0.009542983858826954, - 0.040692127757591, - -0.01919135251688409, - -0.008236165008462953, - 0.010401797412168236, - 0.0081935441247068, - 0.006218845311648272, - 0.028476821434414844, - -0.0034590581654770046, - 0.01694055414102323, - 0.0002478004531905069, - -0.002943987180419128, - 0.029692346715835715, - -0.006794097945503186, - -0.04466515664876761, - -0.026810344002438095, - -0.034647422942438284, - 0.003919162404348672, - 0.009853037313372812, - -0.002971301325752464, - -0.014413590044336393, - -0.02496757693432971, - 0.030050198606732453, - 0.004147652363411516, - -0.0028408636513133014, - 0.005723705443978583, - 0.01788849002186411, - -0.002812447016896111, - -0.018711354126365508, - -0.00028822635256709584, - 0.004594836621249785, - 0.001320346371540106, - -0.021783510406650518, - 0.003852227653648408, - 0.014287712936018953, - -0.00951076859713446, - 0.027202514909763817, - 0.021133537954557132, - 0.009245377175562569, - -0.03360157853563392, - 0.01520348169757019, - -0.029189319150042393, - -0.0014121208581180402, - 0.008206299944270808, - 0.008904030726796849, - -0.004742651023325079, - -0.02697734750767247, - -0.000813513665576104, - -0.024116188697483228, - -0.00446048549897084, - 0.0005034938773867682, - 0.02667213782756035, - 0.00638796896716951, - -0.016260462946306505, - 0.02375107012854913, - -0.010429163958025643, - -0.0027718141822903357, - 0.011156414568078164, - -0.008227889033739525, - 0.021165724132141173, - -0.012958050422020534, - -0.008278186785904265, - -0.01938035083994831, - 0.01795491200484024, - -0.027131538847371295, - 0.006219249599924424, - 0.013257367919316247, - -0.0219435352962872, - -0.003921371655400841, - -0.023188011471709964, - -0.021056119734238536, - 0.008655404398175295, - -0.03600981846471068, - -0.026431443523047868, - 0.021271187883572927, - 0.012098775580738288, - 0.02087432049751247, - 0.02460369957918892, - -0.012373313041024804, - -0.006685459150748174, - -0.005093092483248439, - -0.030870272894451965, - -0.01698210677676121, - -0.025599137306394674, - 0.019520808487138903, - 0.014671899264892199, - -0.00584576055519189, - -0.0231335253880246, - -0.005197428096169348, - -0.008258082476774144, - 0.0012470765874930672, - -0.0036693376077564783, - -0.0016128294891916278, - -0.004529877994537129, - 0.014376965203155663, - 0.015887701442664656, - -0.006867106702928041, - -0.004464887253550471, - -0.01654405930990666, - 0.02820086266147327, - 0.027884574172158037, - -0.020802753143979925, - -0.019414461393316113, - -0.010199697405191289, - 0.0038075764513968895, - 0.023692408886656358, - 0.019514968234550872, - -0.02087152215460861, - -0.015304013385245546, - -0.02225184753050985, - -0.0010820707110567767, - -0.010213738388302978, - 0.0016900394067485066, - 0.01699234539687186, - 0.003437673007610242, - 0.00501518569557722, - -0.0009780544272024435, - -0.0009920005014679384, - 0.000764570421524355, - -0.021410031974635157, - 0.015024272267886125, - 0.010431114973486793, - 0.0068760486032793874, - -0.03832716079852579, - -0.027962529394646555, - -0.001363795025773346, - -0.006576339288044928, - -0.02993733649712831, - 0.016026231585174824, - -0.009896665987199077, - 0.027826119516119636, - 0.008438469077895047, - 0.006094827953365237, - 0.01001524401393957, - 0.008528883743735165, - -0.0231692474158153, - 0.004876830201154767, - 0.009712727687354447, - 0.029561752294952726, - -0.004753362745686996, - 0.003656282713728566, - -0.010167303425664293, - 0.03111488228246651, - -0.016794375493558743, - 0.007548022110014744, - -0.01857002572444025, - -0.050178810116421106, - -0.03064604207911751, - -0.013414729847762694, - -0.026448960816186563, - 0.015156538600901041, - -0.007499146905704579, - 0.037886074255081094, - 0.0038258827378326076, - -0.02511993308984597, - -0.03643692816665867, - -0.0029644227566196766, - 0.001834657171114011, - -0.036775609065489406, - -0.020313267274864134, - -0.00814813233793808, - -0.0292069771214199, - -0.0023199621547875774, - 0.01642400705187197, - -0.18263816990064982, - 0.018010129438040492, - 0.01644216896152314, - -0.007189270041593504, - 0.013918162184379614, - 0.015536277583651052, - 0.038971176014700286, - 0.009631630258851257, - -0.013048331574432937, - -0.007377275465232511, - 0.012173279617624506, - 0.007231124934185577, - -0.027309043582979056, - -0.0071812181933956845, - -0.008724921120758615, - -0.007187277915304852, - -0.040543119981931316, - 0.018685974783375647, - 0.036782429467692945, - 0.009891887986970499, - 0.018509506246023575, - -0.027863458540727665, - 0.014486873731903936, - 0.016229992792530533, - -0.0027960925455816216, - 0.025674537860326283, - 0.0005084193240253706, - 0.020937742519073366, - 0.0020332100677055934, - 0.00028174417125984095, - -0.011490921767954321, - -0.0131679671723066, - 0.014193248607639269, - -0.011093471191179911, - -0.008653019427657243, - -0.011832202145445711, - -0.013075677017325597, - -0.0030333267087658848, - -0.015514394832666907, - 0.01777740928955501, - 0.01847594531978841, - 0.01594452925193562, - -0.007309809425218778, - 0.025365877815925204, - -0.020328366412599774, - 0.03748265927765992, - 0.006862506172118898, - -0.01426767611007787, - -0.00763927671775365, - -0.007222978790235911, - 0.0011920583174467602, - -0.02432280561421569, - 0.015128733483478535, - 0.0015605805264908195, - 0.00775314366066546, - 0.013121540176530496, - -0.0100234718083216, - 0.0212264402523219, - -0.0004082785361546679, - -0.006666643567988908, - -0.00608930515604554, - -0.020933638784766243, - 0.016715541749418236, - -0.012627777501075034, - -0.004429636815965004, - -0.012095374852770499, - -0.014143562852431634, - 0.017294743648533496, - -0.01846051472467988, - 0.004597406656616795, - -0.012594488262788195, - -0.029405159581211773, - 0.020341457301431415, - -0.003516131665800697, - 0.01031340852420013, - -0.00013154140315473807, - -0.019717255672324394, - 0.00208162317824184, - 0.017553498758502584, - 0.002171941503323401, - -0.021985602155532014, - 0.0769835959250437, - -0.00286349424704792, - 0.00464549676321766, - 0.0105040168845808, - -0.017773231750507802, - -0.003346464756663316, - 0.010089648844076638, - 0.016795101897245684, - -0.012748756264627112, - 0.002270079002428077, - -0.015064925744069193, - -0.02234210950124663, - -0.03154423193006896, - 0.022127184774576345, - -0.005768609199149759, - -0.008860314909657776, - 0.009963544365131445, - -0.005751881647984099, - -0.008521479613912945, - 0.0034425545828196597, - -0.025753868675460367, - -0.023686160545079705, - 0.012907323477625137, - 0.011772684541089066, - -0.0030412293255659365, - -0.01439975212704721, - 0.009366453584643455, - 0.037768266262425784, - -8.366797846770298e-05, - -0.014292189146485938, - -0.003232362992696372, - 0.00590878211253504, - 0.01179028085342259, - -0.009371472410706244, - 0.008245316742973179, - -0.026912305651948278, - -0.023038562897917947, - 0.013446815115603528, - 0.019401604609871972, - 0.030764672787772923, - -0.02586787161117761, - -0.010439964583863351, - 0.008586804311646901, - -0.006711995105899435, - -0.0247223077405806, - -0.08856128854125095, - -0.006646140087965977, - 0.0216131443209535, - 0.0355493585494011, - -9.969256703643505e-05, - 0.007356561888787279, - -0.006378112488086651, - 0.012356593697165415, - 0.007471278230512772, - 0.042065345852785783, - -0.004894026632557482, - -0.030466975219239113, - -0.02418017148299408, - 0.008313237425723905, - 0.007832884614779498, - 0.006265576465165123, - -0.009128537801057001, - -0.030471514699124028, - -0.024176074515332036, - 0.036924494380737714, - -0.00909816207892577, - 0.0020132820563916226, - 0.0006306000126510592, - -0.0066936671594621504, - -0.020371196375602644, - -0.026306751118424246, - -0.038619539430914694, - 0.01877899688050919, - 0.018566450150398147, - 0.005472271050571028, - 0.00852479874847671, - -0.023001717675946685, - -0.0010448078262282896, - -0.016513202825298612, - -0.01741244584152435, - -0.024544849643009046, - -0.019387902958929348, - -0.024952946942858115, - 0.028546837187943826, - -0.04825926912972154, - -0.001983645392561922, - 0.010367854268293166, - -0.014529935368850236, - -0.015015417491758217, - 0.01799943209226544, - -0.012454958716749414, - -0.004495950635930257, - 0.021667821038257856, - -0.01838319236000441, - -0.001732910736808607, - -0.026104056292011273, - -0.026660150423205405, - -0.017171417080254797, - -0.01438426150189529, - 0.02463725441539314, - 0.005571440805213629, - 0.005011329558382977, - 0.01620817635123623, - -0.010555423640013717, - -0.015608257981559731, - -0.013836278594575504, - 0.009226753402858076, - -0.023825015944837744, - 0.021066957998600696, - 0.002040809095328562, - 0.002448755104619237, - -0.02280456663785166, - 0.007133020617731693, - 0.011678698612757334, - 0.0039415071831091905, - -0.021019632038134586, - 0.016101643191460825, - -0.003187588357422857, - 0.008154978815161446, - -0.02641891334447256, - 0.006546151046833828, - -0.023610317857568064, - -0.03517946201511435, - 0.010546023533433037, - -0.0151285289147228, - -0.01541079938898319, - -0.023277785397019128, - 0.0054998542378014515, - -0.0018664752645135422, - 0.027391882785514448, - 0.026095045461208048, - -0.01283287347680625, - -0.012979601635601929, - 0.014890520974488296, - -0.020960329205908578, - -0.0028918655867556523, - 0.023615245797642133, - 0.0293101637416122, - -0.0236519036263237, - -0.01915797396517201, - 0.011524636887755029, - 0.004275742314284171, - -0.0006393337342256374, - 0.009595769234555176, - -0.007175229524766616, - -0.039782450415610064, - -0.011886747452980994, - -0.06867129008679487, - 0.030000736143932283, - 0.007113555569447041, - -0.003273309276527749, - -0.023858836684651444, - 0.003927706354224611, - 0.021285625661263304, - 0.027469528122852967, - 0.006108961285873828, - 0.02689343631100305, - -0.0006271425144759781, - 0.02133066855208683, - -0.03284623918111797, - -0.015208963708415632, - -0.015879209305699, - 0.00702958850397088, - 0.0006127882065758043, - 0.01810723500425152, - 0.011698513221728529, - -0.000779361545027712, - -0.01303010827493855, - 0.01803787949407615, - 0.006118079477358298, - 0.018527795810202224, - -0.009856079550384441, - 0.014756736278207514, - 0.0018891478630171281, - 0.0017734742774588434, - -0.004736293279325329, - -0.008142013711816285, - 0.021661695834162102, - 0.00910276656462907, - -0.00840123545346976, - 0.015522145243141076, - -0.010986947570719307, - -0.014087882506026876, - 0.011275128049185896, - 0.02391932401384359, - 0.0012137346383612137, - 0.03223773147164813, - -0.018799517080705364, - -0.025516629567276336, - 0.01157543215278651, - 0.0071228726180119425, - 0.0009482701593229838, - -0.0026660106407673414, - 0.01903455188055254, - 0.019408809519822177, - 0.013713925653922683, - -0.01234583151531167, - 0.009422831843021132, - 0.01138239763307577, - 0.011121392357524905, - -0.013322593127067552, - 0.025737553348261027, - -0.006475829205995743, - 0.0012981889648897317, - 0.017720171963005515, - 0.03403539952816572, - -0.0225614877649657, - 0.04673760246152078, - 0.015062208612444753, - 0.02979338911453563, - -0.006411351883529042, - 0.009895052886872691, - -0.008758071696059116, - -0.013588019365699783, - -0.006700064172055548, - 0.0033144285960356058, - -0.021546902996671193, - -0.013273286041238399, - 0.0025004053048480043, - 0.0012680186578646144, - 0.03821648883943502, - 0.008433736672576705, - 0.004159898983559297, - 0.004259843437054512, - 0.009810730242766191, - -0.00436159627699957, - 0.010173774627729606, - 0.04154522614909275, - -0.00034133732119386663, - -0.011379194876807285, - -0.002167909016062721, - 0.030481167997435693, - 0.0038637767550792792, - -0.006333738517640753, - 0.008714759069442983, - 0.0016896639853862495, - -0.0005027502044105346, - 0.0016143411136148355, - 0.0038656600428809418, - 0.001854181031292066, - -0.008818070943001561, - 0.018528483319293115, - 0.009909146184154574, - 0.009217667163542137, - -0.013611475546617945, - 0.010702278179607167, - 0.023163302605379597, - -0.007243545192581937, - 0.00819384178508129, - -0.019345561275602174, - -0.015153605543731425, - -0.010132128457563722, - 0.005440998325038645, - -0.0022509178865281047, - -0.026317449240310844, - 0.031357636795894005, - 0.015635954983121463, - 0.002131867996600995, - -0.0037164870682069064, - -0.008762103668126114, - 0.008159430430151781, - -0.020012581765510642, - 0.016214058063368782, - -0.017562908478566598, - -0.02873009816978579, - -0.03817091336228305, - 0.0357888708245771, - -0.00012386914953028217, - 0.005423910162435681, - 0.011547945138342683, - -0.008290928410942592, - 0.03659869336744893, - -0.00291610239609791, - 0.016679973470717434, - -0.013617604739572912, - 0.005867385560110229, - -0.01445900455059007, - 0.0031995551225548736, - -0.010711076046368085, - -0.02065200197050794, - -0.013518373110707778, - -0.03219763644495786, - 0.012052928066838178, - 0.026432477342742393, - 0.0020759597023706855, - 0.0017933538988387863, - 0.12396333808570564, - 0.025866045305626296, - -0.013691605964804522, - 0.025022258699259618, - -0.01997315857504899, - 0.01548901720712774, - 0.011782853985214399, - -0.0028267068333187872, - -0.00973741780953639, - -0.06508875334089427, - -0.0026037990725508563, - -0.016437288769118947, - 0.00010226585629995858, - -0.028211575235251144, - -0.0008338398085143955, - -0.007239101560997122, - 0.016772578833768512, - 0.024352409763245018, - -0.012194561919870492, - 0.001125501360978729, - 0.029800730632041653, - -0.002197866797453633, - 0.01558650871165267, - 0.04074952261153516, - -0.014617490291887367, - -0.015349131316010395, - 0.022572028476454453, - -0.012388282377790452, - -0.0063517501832675355, - -0.025170595202625493, - 0.003197217062690023, - -0.005052458425413463, - -0.036589962768441384, - -0.01836691275371795, - 0.010757748959961502, - -0.04439467263959372, - -0.002789908830469524, - -0.030806439332027733, - 0.03667124565894744, - 0.004302611322259042, - -0.008760150451178212, - 0.024595724319836323, - -0.022028365830703358, - 0.013190002544765447, - 0.00871577569716044, - -0.02241306055500382, - 0.0022288964619773858, - -0.00970506107549647, - -0.02618154838365742 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 47, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 19603 - } -} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000048.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000048.json deleted file mode 100644 index 58ac860ebc575e807de76c7b86d68f4d42e9cb5f..0000000000000000000000000000000000000000 --- a/data/processed/85fd305f-83de-70b0-47e8-2dc000000048.json +++ /dev/null @@ -1,1570 +0,0 @@ -{ - "id": "85fd305f-83de-70b0-47e8-2dc000000048", - "content": "Iterationszahl 4 Minderung Bewuchs: ISO 9613-2 Bebauung: ISO 9613-2 Industriegel\u00e4nde: ISO 9613-2 Bewertung: TA-L\u00e4rm 1998/2017 - Werktag Reflexion der \"eigenen\" Fassade wird unterdr\u00fcckt Geometriedaten Gabelstapler 03-05-23.sit 19.06.2023 13:55:18 - enth\u00e4lt: F001 Bodeneffekt.geo 01.06.2023 12:27:46 G001 Bebauung.geo 01.06.2023 11 MP004 Messpunkte.geo 19.06.2023 13:16:02 0004 Lkws.geo 19.06.2023 10:26:00 Q001 Schallquelle Gabelstapler 03.05.geo 19.06.2023 12:14:38 RG001 Rechengebiet.geo 01.06.2023 12:31:18 RDGM9999.dgm 18.04.2023 12:15:40 | Ergebnisnr. : 1 Heine + Jud - Ingenieurb\u00fcro f\u00fcr Umweltakustik SoundPLAN 9.0]\n\nXLVI\nAnh\u00e4nge\n\n[IMAGE: yden le\u00dfsds\u00dfunjeunsg (War NAT Be jo\u00dfadsfunjounag {var 141 usjlezsqeueg \u0131myaLLoy Ep {NATANIP (neyuy) Beiyosnzusyiezayng gap (LVaZ ueyezsgeueg Inpauoy. ar (Tarp ueUONXE]JBY Yo\u0131np Bunyayusje\u00dfed (Warp SAP uondiosgqeynT pun\u00dfjne Bunydweg Sala sp uney Bunuuyosqy punJ\u00dfyne Bunydwea Samy ap Jegw Pleysuspog punu\u00dfjne Bunydweg Sana sp by Bunyaugsny JsyosisWwos\u00df punu\u00dfjne Bunydweg Samy ep NIPYW Bunyensgy 3}3jyoue\u00df un Beiyosnz 1:1 o4 NSy\u00d6nIeyuoL Any Beiyasnz gp 4a oyd\u0131yeysindwi any Beiyosnz gp I zu (wer m shejuy od je\u00dfsdshunisi: (WER Lie) yen-wwepjeuog gp ma je\u00dfsdusuu] (WER u Yosuo\u0131ssiuu - ajanbjleysg Bunuenug aran\u0131y w Ss (aypei4 Jspo sBueT) aan Jap ago\u0131g zur S.opo| Sweujendg Sand Spusks] -b87 Bunysugsny S1o\u0131N - usuopsdg ul syasne1s\u00dfapenag :s\u0131soy] Jofsyseg \\ gv obejuy Bunyansisjun Syos\u0131uyosyjeyos NXaNr+3NI3H]\n\nXLVII\nAnh\u00e4nge\n\n[IMAGE: vzr 122 E4 00 EX Ey 2 00 go gor- \u20ac 00 vg 3'939 E73 [173 ce Jouoz Zr z'gr 4] 00 es ri 1r\u20190- 00 go vor \u20ac co vs g'95 E74 [13 R4 aeuoz 20r 2'0p go v0 go o v0 00 go Sor- \u20ac 00 vs s'95 E73 0\u20ac we 9 auoZ gs gs su 00 Sul 2 1\u00b00- 00 go Lor- \u00a9 00 vs S'95 SL 53 3 gauoz (vIgp g\u2019ez xew'nT (WIgP gez xewL1 (WIAPEESNIT (VIAPEESLIT DI Zorn (wer | (war ap ap &p (Wa ap gap ap ap ap ap a | (Wer | (War ap | (war w u N 17 [ind] (1Ddaz |GsDamp| yar\u0131p | wiew | Jegw dw NPY 4 1a m MT Mm MA a] s S4Jopo | Elle) -b87 Bunnsugsny S1oUN - usuoy\u0131padg ul ayadsne1s\u00dfapenan :s\u0131say | Jofayseg gy abejuy Bunyansusjun Sy9s\u0131uyoayjeyas]\n\n\n| vzr 122 E4 00 EX Ey 2 00 go gor- \u20ac 00 vg 3'939 E73 [173 ce Zr z'gr 4] 00 es ri 1r\u20190- 00 go vor \u20ac co vs g'95 E74 [13 R4 20r 2'0p go v0 go o v0 00 go Sor- \u20ac 00 vs s'95 E73 0\u20ac we gs gs su 00 Sul 2 1\u00b00- 00 go Lor- \u00a9 00 vs S'95 SL 53 3 (vIgp g\u2019ez xew'nT (WIgP gez xewL1 (WIAPEESNIT (wer | (war ap ap &p (Wa ap gap ap ap ap ap a | (Wer | (War ap | (war w u N 17 [ind] (1Ddaz |GsDamp| yar\u0131p | wiew | Jegw dw NPY 4 1a m MT Mm MA a] s S4Jopo | -b87 Bunnsugsny S1oUN - usuoy\u0131padg ul ayadsne1s\u00dfapenan :s\u0131say | Jofayseg gy abejuy Bunyansusjun Sy9s\u0131uyoayjeyas |\n\nXLVIII", - "embedding": [ - 0.003202893305569887, - 0.004757995717227459, - 0.004679039120674133, - -0.025787925347685814, - 0.006350859999656677, - 0.017260607331991196, - -0.030648907646536827, - -0.02010304667055607, - -0.02900111675262451, - -0.025018956512212753, - 0.03734992444515228, - 0.02269831672310829, - -0.004953670781105757, - 0.0006908705690875649, - -0.011610059067606926, - 0.03174743428826332, - 0.01687612384557724, - 0.0062993667088449, - 0.03276357427239418, - 0.009639576077461243, - -0.0066701197065413, - 0.044682592153549194, - -0.01434951089322567, - -0.009001056663691998, - -0.014006221666932106, - 0.007854469120502472, - 0.01984214596450329, - -0.035372573882341385, - -0.006567132659256458, - 0.011081392876803875, - 0.015145943500101566, - -0.019334077835083008, - -0.03402687981724739, - 0.026048826053738594, - -0.014473095536231995, - -0.031610120087862015, - -0.0025695236399769783, - -0.015228332951664925, - 0.02695511095225811, - -0.0008135966490954161, - 0.012461417354643345, - 0.0069962446577847, - -0.0009852414950728416, - 0.0008856875356286764, - -0.0025643743574619293, - -0.000970651744864881, - 0.018565108999609947, - 0.013189191929996014, - -0.01710955984890461, - 0.014459364116191864, - 0.015338185243308544, - 0.021572327241301537, - 0.004806056153029203, - -0.006213544402271509, - -0.0033831202890723944, - 0.0027789303567260504, - 0.01635432243347168, - 0.010896015912294388, - -0.015612817369401455, - -0.007161024026572704, - -0.020789626985788345, - -0.012516343966126442, - -0.026117483153939247, - 0.006752509158104658, - -0.032159384340047836, - -0.01960870996117592, - -0.0008968444308266044, - 0.004830086603760719, - -0.0019224225543439388, - -0.015681475400924683, - 0.024002818390727043, - 0.03196714073419571, - 0.014912506565451622, - -0.004449035041034222, - 0.043721381574869156, - -0.00427395710721612, - -0.0007741183508187532, - -0.012976352125406265, - 0.03193967789411545, - -0.00471680099144578, - 0.02415386587381363, - -0.033614929765462875, - -0.0326811820268631, - 0.028259610757231712, - 0.03095100261271, - 0.010024060495197773, - -0.007765213958919048, - 0.013813978992402554, - -0.009261957369744778, - -0.002758332993835211, - 0.02722974121570587, - 0.028039906173944473, - 0.011335426941514015, - 0.010484068654477596, - 0.005341588519513607, - -0.022011738270521164, - -0.01892212964594364, - 0.014500558376312256, - 0.003886039834469557, - -0.01007212046533823, - -0.014582947827875614, - 0.00996226817369461, - 0.0013928981497883797, - -0.0023978787939995527, - -0.028287073597311974, - -0.019800951704382896, - 0.0053244237788021564, - 0.02567807212471962, - -0.006237574387341738, - -0.004953670781105757, - -0.015599085949361324, - 0.020556189119815826, - -0.015324453823268414, - -0.015461769886314869, - 0.034658532589673996, - -0.014871311374008656, - 0.03751470148563385, - 0.0017507777083665133, - -0.011390353552997112, - -0.006089959759265184, - 0.005276363343000412, - 0.014486826956272125, - 0.018688693642616272, - -0.014926237985491753, - 0.028589168563485146, - 0.015393111854791641, - -0.0015705504920333624, - -0.01761762984097004, - -0.04188134893774986, - -0.035180334001779556, - 0.0050120302475988865, - 0.009941671043634415, - 0.014116073958575726, - 0.01474772673100233, - -0.00996226817369461, - 0.005382783245295286, - -0.010401679202914238, - 0.007840737700462341, - -0.03883293643593788, - -0.0326811820268631, - 0.003748724004253745, - 0.001399763859808445, - -0.01684866100549698, - -0.016917318105697632, - 0.016450444236397743, - 0.004225896671414375, - -0.009982865303754807, - 0.010861687362194061, - -0.012832170352339745, - -0.030813686549663544, - -0.01462414301931858, - -0.036141544580459595, - 0.02968769706785679, - 0.026872720569372177, - 0.013827710412442684, - 0.01372472383081913, - -0.0022691451013088226, - 0.022712048143148422, - -0.02695511095225811, - -0.007957455702126026, - -0.0059801070019602776, - -0.00967390462756157, - 0.009110909886658192, - -0.011630656197667122, - 0.013916965574026108, - -0.0027978112921118736, - 0.00022850223467685282, - -0.005798163823783398, - -0.000970651744864881, - -0.016711344942450523, - -0.004682471975684166, - 0.010326155461370945, - 0.0010822209296748042, - 0.00447649834677577, - -0.01160319335758686, - 0.023989086970686913, - 0.01786479726433754, - 0.0017816737527027726, - -0.016271933913230896, - -0.018002113327383995, - -0.05610727518796921, - 0.014637874439358711, - 0.028808875009417534, - 0.017040902748703957, - -0.03119817189872265, - 0.020336484536528587, - 0.019732294604182243, - 0.013257849961519241, - 0.0021009331103414297, - -0.005066956393420696, - 0.007648495491594076, - 0.005458306986838579, - 0.00653966935351491, - -0.0078064086847007275, - -0.6129781603813171, - -0.009639576077461243, - 0.0005582749145105481, - -0.010532129555940628, - 0.00012927004718221724, - 0.037432312965393066, - 0.014637874439358711, - -0.010291825979948044, - -0.015571622177958488, - 0.023604601621627808, - 0.0015877149999141693, - 0.026254799216985703, - -0.001917273155413568, - -0.00016681734996382147, - 0.010401679202914238, - -0.028396926820278168, - -0.010772432200610638, - -0.002674227114766836, - 0.04020609334111214, - 0.006251306273043156, - -0.021544864401221275, - -0.0007689690100960433, - -3.5455392207950354e-05, - 0.01734299771487713, - 0.007984919473528862, - 0.00021691620349884033, - 0.024085208773612976, - -0.034356437623500824, - 0.011005869135260582, - -0.013621736317873001, - -0.017768677324056625, - 0.0013285313034430146, - -0.01335397083312273, - 0.007799542974680662, - 0.05569532513618469, - -0.004565753508359194, - -0.0024201925843954086, - 0.012962620705366135, - 0.03699290379881859, - 0.005410246085375547, - -0.034878239035606384, - 0.004363212734460831, - 0.0002551071811467409, - -0.004026788752526045, - 0.0010178540833294392, - -0.0078064086847007275, - 0.03910756856203079, - -0.023343702778220177, - 0.012289772741496563, - -0.050230152904987335, - 0.007195353042334318, - -0.009502260014414787, - -0.010779297910630703, - 0.013010680675506592, - 0.03699290379881859, - 0.015914911404252052, - 0.019938267767429352, - -0.016464175656437874, - 0.006951617076992989, - -0.008314477279782295, - 0.02619987353682518, - -0.009351212531328201, - -0.005911449436098337, - -0.0075661055743694305, - -0.020556189119815826, - 0.016917318105697632, - -0.026790330186486244, - -0.016079692170023918, - 0.0198696106672287, - 0.022588465362787247, - -0.019938267767429352, - 0.03597676381468773, - 0.005276363343000412, - -0.018304208293557167, - 0.026337187737226486, - 0.028589168563485146, - 0.012962620705366135, - -0.017933456227183342, - 0.010394813492894173, - 0.02315145917236805, - 0.004521125927567482, - -0.008108503185212612, - -0.0020185436587780714, - 0.017672555521130562, - 0.017219413071870804, - -0.0284793172031641, - -0.018688693642616272, - 0.00018290906155016273, - 0.006083094049245119, - 0.001150020631030202, - 0.02240995317697525, - 0.01709582842886448, - -0.003312746062874794, - -0.0008028688607737422, - -0.002691391622647643, - 0.026749135926365852, - -0.019594978541135788, - 0.011527669616043568, - 0.020720968022942543, - -0.028918728232383728, - -0.02470313012599945, - 0.003930667415261269, - 0.014541753567755222, - -0.027504373341798782, - 0.025279855355620384, - 0.009653307497501373, - -0.01888093538582325, - 0.002603852655738592, - 0.028342001140117645, - -0.02640584670007229, - 0.005331289488822222, - 0.01082735788077116, - -0.007442521397024393, - 0.000534244638402015, - -0.005104718264192343, - -0.025128807872533798, - 0.0402335561811924, - 0.005269497632980347, - -0.00018805840227287263, - -0.004967402666807175, - -0.003353940788656473, - -0.003189161652699113, - 0.031610120087862015, - -0.0169035866856575, - -0.009145238436758518, - 0.032159384340047836, - -0.0016683881403878331, - 0.014253390021622181, - -0.009364943951368332, - -0.009667038917541504, - 0.0037796199321746826, - 0.019320346415042877, - 0.032900888472795486, - -0.010181973688304424, - 0.023302506655454636, - 0.010978405363857746, - 0.02998979203402996, - -0.004792324732989073, - 0.018208088353276253, - -0.03751470148563385, - -0.015681475400924683, - -0.011898422613739967, - 0.004280822817236185, - -0.03295581415295601, - 0.0022811603266745806, - -0.04155179113149643, - -0.018510183319449425, - 0.033367764204740524, - 0.00490217749029398, - 0.02245114929974079, - -0.011287366971373558, - -0.013614870607852936, - 0.007586703170090914, - 0.002521463204175234, - 0.014225926250219345, - 3.097653461736627e-05, - -0.01632685959339142, - -0.015750132501125336, - -0.021077990531921387, - 0.004239628091454506, - 0.00075523741543293, - 0.0036457369569689035, - -0.02489537186920643, - -0.03202206641435623, - -0.004981134086847305, - 0.006615193095058203, - 0.019485125318169594, - 0.021105453372001648, - -0.005499501712620258, - -0.034658532589673996, - -0.012042604386806488, - -0.0031222200486809015, - -0.006385189015418291, - 0.005448007956147194, - -0.012001409195363522, - 0.009385541081428528, - -0.0071884868666529655, - -0.016230739653110504, - -0.01739792339503765, - 0.0008638027939014137, - 0.026364652439951897, - 0.008994190953671932, - -0.019320346415042877, - -0.0019035416189581156, - 0.016011033207178116, - 0.005520098842680454, - -0.0003025240730494261, - 0.003496405901387334, - -0.01635432243347168, - 0.016271933913230896, - 0.001377450069412589, - 0.022258905693888664, - -0.009618978016078472, - 0.025238661095499992, - -0.030346812680363655, - 0.026570625603199005, - 0.007607300765812397, - -0.003340209135785699, - -0.01632685959339142, - 0.02089947834610939, - 0.04465512931346893, - 0.013175460509955883, - 0.032324161380529404, - -0.0066838511265814304, - 0.021077990531921387, - -0.0341641940176487, - 0.022972948849201202, - -0.01892212964594364, - 0.03191221505403519, - 0.016944780945777893, - 0.02161352150142193, - -0.015530427917838097, - -0.037899188697338104, - 0.005156212020665407, - -0.008472390472888947, - 0.03696543723344803, - -0.01033302117139101, - 0.018208088353276253, - 0.010978405363857746, - -0.032159384340047836, - 0.02823214791715145, - 0.012159322388470173, - 0.02087201550602913, - -0.009255091659724712, - -0.017988381907343864, - -0.003940965980291367, - 0.01936154067516327, - 0.0056024882942438126, - 0.0023927295114845037, - -0.02010304667055607, - -0.024991493672132492, - -0.002748034428805113, - 0.01511847972869873, - 0.001992797013372183, - 0.003724693553522229, - 0.03507047891616821, - 0.02669421024620533, - -0.014019953086972237, - 0.03545496240258217, - 0.008973593823611736, - 0.005554427858442068, - 0.01662895455956459, - 0.024744324386119843, - -0.018057040870189667, - 0.019540050998330116, - -0.013491286896169186, - 0.023604601621627808, - 0.04454527795314789, - -0.004782026167958975, - 0.0024253420997411013, - 0.002179889939725399, - -0.0034552111756056547, - -0.014555484987795353, - -0.011610059067606926, - 0.027257205918431282, - -0.017425386235117912, - 0.02289056032896042, - 0.01686239242553711, - 0.010964673943817616, - 0.012790975160896778, - 0.02389296516776085, - 0.003055278677493334, - 0.00904911756515503, - -0.01107452716678381, - 0.012022006325423717, - -0.0035942434333264828, - -0.037404850125312805, - -0.03171997144818306, - 0.013937563635408878, - -0.02088574692606926, - 0.001597155467607081, - 0.0001585569407325238, - -0.015242064371705055, - 0.015200869180262089, - 0.015187137760221958, - 0.0015319304075092077, - 0.007133560720831156, - 0.021229038015007973, - 0.026996305212378502, - 0.0017936888616532087, - -0.008520451374351978, - -0.02419506013393402, - -0.0005698609747923911, - 0.02670794166624546, - -0.011307964101433754, - 0.004133208654820919, - -0.008046711795032024, - 0.011513938196003437, - -0.01307933870702982, - -0.0036869316827505827, - -0.008108503185212612, - -0.009900475852191448, - -0.012104395776987076, - 0.001678686821833253, - 0.011816033162176609, - -0.0010015477892011404, - 0.0066735525615513325, - -0.01738419197499752, - -0.03070383332669735, - 0.007140426430851221, - 0.005393081810325384, - -0.010902881622314453, - 0.0024545216001570225, - -0.014198463410139084, - 0.03325790911912918, - -0.013813978992402554, - -0.0038482779636979103, - -0.00843806192278862, - -0.013525615446269512, - -0.022492343559861183, - -0.0035770791582763195, - 0.005585324019193649, - 0.005513233132660389, - 0.014074878767132759, - -0.019691098481416702, - -0.013038144446909428, - -0.017933456227183342, - -0.03984907269477844, - 0.03597676381468773, - -0.0014512573834508657, - 0.005090986844152212, - -0.026543162763118744, - 0.008554779924452305, - 0.02365952916443348, - -0.012639927677810192, - 0.0226571224629879, - 0.016175812110304832, - 0.01862003467977047, - 0.010436007753014565, - -0.017040902748703957, - -0.016793733462691307, - -0.049735818058252335, - -0.0027926620095968246, - 0.005956077016890049, - -0.008863740600645542, - -0.0002377281489316374, - 0.02919335849583149, - -0.016766270622611046, - -0.0016134617617353797, - -0.00535875279456377, - 0.01472026389092207, - -0.015008627437055111, - 0.01962244138121605, - 0.01688985526561737, - -0.031115781515836716, - -0.0006295075290836394, - -0.005997271742671728, - 0.04366645589470863, - -0.00048189295921474695, - -0.02595270425081253, - 0.02216278575360775, - 0.02320638671517372, - 0.01309307012706995, - -0.0326811820268631, - 0.016038496047258377, - 0.02138008549809456, - 0.0024768353905528784, - 0.012028872035443783, - -0.0018932429375126958, - -0.008431196212768555, - 0.03803650289773941, - -0.006316530983895063, - 0.02188815362751484, - -0.012770378030836582, - 0.00893239863216877, - 0.024044012650847435, - 0.010923479683697224, - -0.009371809661388397, - 0.02622733637690544, - 0.00806730892509222, - -0.012550672516226768, - 0.02592524141073227, - -0.005588756874203682, - 0.002260562963783741, - 0.015187137760221958, - -0.02545836754143238, - -0.004668740555644035, - -0.011170648038387299, - -0.014418168924748898, - -0.009213896468281746, - -0.013278447091579437, - -0.013422628864645958, - 0.00775148207321763, - -0.027875127270817757, - -0.02187442220747471, - -0.04751129820942879, - -0.00541367894038558, - -0.016999708488583565, - -0.03018203377723694, - -0.013662931509315968, - -0.017425386235117912, - -0.0008221789030358195, - -0.03048412874341011, - -0.01587371714413166, - 0.01682119630277157, - -0.013381433673202991, - -0.018510183319449425, - 0.00014149973867461085, - 0.01712329126894474, - -0.009069714695215225, - 0.01816689223051071, - -0.017246875911951065, - -0.015612817369401455, - -9.756937652127817e-05, - -0.03100592829287052, - -0.013292178511619568, - -0.018345404416322708, - -0.0007646778831258416, - -0.002899081911891699, - 0.013429494574666023, - -0.02722974121570587, - -0.010669444687664509, - -0.008486121892929077, - 0.00031625566771253943, - -0.004126342479139566, - 0.015036090277135372, - -0.003910070285201073, - 0.000714900903403759, - 0.02037767879664898, - -0.009639576077461243, - 0.010127047076821327, - 0.010861687362194061, - 0.018510183319449425, - -0.01258500199764967, - -0.0010942360386252403, - 0.0007466551614925265, - -0.00567114632576704, - -0.0012289772275835276, - -0.0028887831140309572, - 0.005894284695386887, - 0.0030672939028590918, - 0.003731559496372938, - 0.00427395710721612, - 0.015818791463971138, - -0.022355027496814728, - -0.0037555897142738104, - 0.001319090835750103, - -0.005956077016890049, - -0.016464175656437874, - 0.025279855355620384, - 0.0008968444308266044, - -0.006340561434626579, - 0.012282907031476498, - -0.008012382313609123, - 0.005015463102608919, - -0.02996232733130455, - 0.028053637593984604, - -0.005557860713452101, - 0.0022399656008929014, - 0.03883293643593788, - -0.019718563184142113, - 0.005938912276178598, - -0.02517000399529934, - -0.0022365327458828688, - -0.022080395370721817, - 0.012859633192420006, - 0.031390413641929626, - -0.020844552665948868, - -0.021544864401221275, - -0.008472390472888947, - 0.003992459736764431, - 0.014431900344789028, - -0.017466582357883453, - -0.0060041374526917934, - -0.019993193447589874, - 0.010861687362194061, - 0.0028012441471219063, - 0.002440789947286248, - 0.00222966680303216, - -0.027531836181879044, - -0.024469692260026932, - 0.01866123080253601, - -0.006491608917713165, - 0.03240654990077019, - -0.03199460357427597, - -0.0002452376065775752, - -0.008891204372048378, - 0.007875066250562668, - -0.022780707105994225, - -0.03196714073419571, - -0.012763512320816517, - -0.007909395731985569, - 0.02640584670007229, - 0.016299396753311157, - 0.01783733442425728, - -0.007847603410482407, - 0.016491638496518135, - 0.01682119630277157, - -0.005331289488822222, - -0.007724019233137369, - -0.004541723057627678, - 0.0014246524078771472, - -0.04210105165839195, - 0.03303820267319679, - 0.01813942939043045, - 0.024346107617020607, - -0.002027125796303153, - -0.01119811087846756, - 0.013196057640016079, - 0.028589168563485146, - -0.019237956032156944, - -0.006477877497673035, - -0.006443548481911421, - -0.018221819773316383, - 0.00515964487567544, - -0.013065607286989689, - 0.01614834927022457, - -0.0002144488098565489, - -0.03751470148563385, - -0.004847250878810883, - 0.006481310352683067, - 0.002224517520517111, - 0.005643683485686779, - 0.005722640082240105, - 0.006089959759265184, - -0.020569920539855957, - 0.037871722131967545, - 0.010889150202274323, - 0.014912506565451622, - 0.001341404626145959, - -0.014418168924748898, - -0.010298691689968109, - -0.025362245738506317, - 0.023000411689281464, - -0.011548266746103764, - -0.0010942360386252403, - -0.009152104146778584, - -0.03204952925443649, - -0.0039443993009626865, - 0.00397529499605298, - 0.0025884045753628016, - -0.0183865986764431, - -7.986849959706888e-05, - -0.005423977971076965, - -0.014953700825572014, - -0.02722974121570587, - -0.008664633147418499, - -0.010916613973677158, - 0.015928644686937332, - 0.023288775235414505, - 0.008877472952008247, - 0.014225926250219345, - 0.0054754712618887424, - -0.011294232681393623, - 0.014528021216392517, - 0.0026450473815202713, - 0.02869902178645134, - 0.0034586440306156874, - 0.04078282043337822, - -0.00031518290052190423, - -0.001423794194124639, - -0.02647450380027294, - -0.011781703680753708, - 0.017590167000889778, - -0.015310722403228283, - 0.017191950231790543, - 0.024002818390727043, - -0.0010916613973677158, - -0.020995600149035454, - 0.012179919518530369, - 0.028369463980197906, - -0.01583252288401127, - -0.01886720396578312, - 0.02538970857858658, - 0.02442849799990654, - 0.011919019743800163, - -0.03018203377723694, - 0.008142832666635513, - -0.019004520028829575, - -0.0003351366030983627, - -0.00473053241148591, - -0.005369051359593868, - -0.014198463410139084, - -0.0011165498290210962, - 0.0061345878057181835, - 0.046220529824495316, - -0.008211490698158741, - 0.009344346821308136, - 0.0063714575953781605, - -0.011026466265320778, - 0.011932751163840294, - -0.04561633989214897, - -0.00585652282461524, - 0.026804063469171524, - -0.025842851027846336, - 0.038887862116098404, - -0.008225222118198872, - -0.013745320960879326, - 0.008444927632808685, - -0.005207705311477184, - -0.008815680630505085, - 0.0011920735705643892, - 0.011692448519170284, - 0.023563407361507416, - 0.0005119308480061591, - -0.010387947782874107, - -0.0151047483086586, - -0.004555454943329096, - 0.01988334208726883, - 0.02441476657986641, - -0.008101637475192547, - -0.0034243150148540735, - -0.012893962673842907, - -0.008211490698158741, - 0.0017713750712573528, - -0.0012847618199884892, - -0.00933748111128807, - -0.002399595221504569, - -0.017754945904016495, - -0.031637582927942276, - -0.0017241727327927947, - -0.012536941096186638, - 0.03240654990077019, - -0.04578112065792084, - -0.00042074447264894843, - 0.005684878211468458, - 0.0007350691594183445, - 0.03935473412275314, - 0.009900475852191448, - -0.013367702253162861, - -0.008492988534271717, - 0.03356000408530235, - -0.031610120087862015, - 0.023302506655454636, - 0.03649856522679329, - -0.008122235536575317, - -0.0030466963071376085, - 0.00458978395909071, - 0.0032612525392323732, - -0.0064332494512200356, - 0.046467699110507965, - -0.013985623605549335, - -0.005640250165015459, - -0.007724019233137369, - 0.024812981486320496, - 0.007799542974680662, - -0.0347958467900753, - -0.0007050312706269324, - -0.004627545829862356, - 0.007675958331674337, - 0.0029437094926834106, - -0.007229682058095932, - -0.0008444927516393363, - 0.02968769706785679, - 0.022478612139821053, - 0.003432897385209799, - 0.0276691522449255, - -0.02440103515982628, - 0.030017254874110222, - 0.013669797219336033, - -0.008589109405875206, - -0.004466199316084385, - -0.022355027496814728, - -0.021846959367394447, - 0.029275748878717422, - 0.013930697925388813, - -0.030264422297477722, - -0.018263014033436775, - -0.025252392515540123, - -0.0026931080501526594, - -0.004754562862217426, - 0.01207006722688675, - 0.0035942434333264828, - -0.005156212020665407, - 0.022492343559861183, - 0.008870607241988182, - -0.029275748878717422, - 0.03144533932209015, - -0.007696555927395821, - -0.025884045287966728, - 0.006007570307701826, - 0.0005805887631140649, - -0.024799250066280365, - 0.0018915263935923576, - -0.008767619729042053, - 0.022808169946074486, - 0.012131859548389912, - -0.03427404910326004, - -0.009975999593734741, - -0.017466582357883453, - -0.04600082337856293, - -0.03699290379881859, - -0.010696908459067345, - -0.009474797174334526, - -0.0018743620021268725, - 0.01069004274904728, - -0.022025469690561295, - 0.04300733655691147, - -0.005636817310005426, - 0.01322352048009634, - -0.03910756856203079, - -0.01936154067516327, - 0.006635790690779686, - -0.015805060043931007, - 0.03902517631649971, - -0.010470337234437466, - -0.02717481553554535, - -0.005252332892268896, - 0.019224224612116814, - 0.0129694864153862, - 0.008801949210464954, - 0.025018956512212753, - -0.0034243150148540735, - -0.020020658150315285, - 0.009186433628201485, - -0.011967080645263195, - 0.003927234560251236, - -0.000702885736245662, - -0.0017010006122291088, - -0.015942376106977463, - 0.0069619156420230865, - -0.0010418843012303114, - 0.019993193447589874, - -0.00843806192278862, - -0.021242769435048103, - 0.020583651959896088, - -0.014692801050841808, - -0.023014143109321594, - 0.030648907646536827, - -0.011898422613739967, - 0.002909380476921797, - -0.015296990983188152, - 0.02393416129052639, - 0.017562702298164368, - -0.027339594438672066, - -0.009550320915877819, - 0.006934452801942825, - -0.009502260014414787, - -0.025609415024518967, - -0.005523531697690487, - -0.04226583242416382, - 0.014898774214088917, - 0.023577138781547546, - -0.004425004590302706, - 0.0343015119433403, - -0.03693797439336777, - 0.022492343559861183, - -0.007929992862045765, - 7.43973214412108e-05, - -0.01585998572409153, - -0.017796140164136887, - -0.04034341126680374, - 0.026858989149332047, - 0.033395227044820786, - -0.013566810637712479, - -0.004562320653349161, - -0.010470337234437466, - -0.012076932936906815, - 0.004287688992917538, - -0.01710955984890461, - -0.014054281637072563, - -0.026556894183158875, - -0.010806760750710964, - 0.021970544010400772, - -0.016203274950385094, - 0.004126342479139566, - 0.0019104073289781809, - -0.01989707350730896, - -0.014418168924748898, - 0.02114664763212204, - 0.19443930685520172, - -0.01687612384557724, - 0.008650901727378368, - 0.02239622175693512, - -0.010127047076821327, - -0.008328208699822426, - 0.040398336946964264, - 0.0005943203577771783, - -0.002389296656474471, - 0.038942787796258926, - 0.0037521568592637777, - -0.0033247610554099083, - 0.0096876360476017, - 0.0015353633789345622, - 0.01537938043475151, - -0.033807173371315, - -0.048499975353479385, - -0.016670148819684982, - -0.011369756422936916, - 0.02393416129052639, - 0.02442849799990654, - -0.027257205918431282, - -0.0019310048082843423, - -0.010051523335278034, - 0.035152867436409, - 0.009900475852191448, - -0.010250631719827652, - 0.010030926205217838, - 0.03353254124522209, - 0.008122235536575317, - -0.013196057640016079, - -0.0032543865963816643, - 0.024291181936860085, - -0.010930345393717289, - -0.012681122869253159, - -0.0007372146937996149, - 0.008486121892929077, - -0.012646794319152832, - 0.018070772290229797, - 0.032598793506622314, - -0.010298691689968109, - -0.03855830430984497, - -0.01383457612246275, - -0.01587371714413166, - -0.0025128808338195086, - 0.018235551193356514, - -0.005959509871900082, - 0.009742562659084797, - -0.0031119214836508036, - -0.005255765747278929, - -0.016175812110304832, - 0.017274338752031326, - 0.013944429345428944, - 0.030401738360524178, - 0.02441476657986641, - -0.027408253401517868, - -0.0025832552928477526, - -0.001563684782013297, - -0.0015027507906779647, - 0.00996226817369461, - -0.021489936858415604, - 0.01536564901471138, - -0.020707236602902412, - 0.009090311825275421, - -0.015324453823268414, - -0.005166510585695505, - -0.018441524356603622, - 0.0016083123628050089, - -0.006666686851531267, - -0.03405434265732765, - 0.00624100724235177, - -0.003666334319859743, - -0.037157680839300156, - 0.013930697925388813, - -0.03180235996842384, - -0.026735404506325722, - 0.0143632423132658, - 0.009275688789784908, - 0.009104044176638126, - 0.03391702473163605, - -0.01665641739964485, - -0.0183865986764431, - 0.0028269910253584385, - -0.0024133268743753433, - -0.013161728158593178, - -0.026048826053738594, - 0.01862003467977047, - 0.002097500255331397, - 0.001132856123149395, - -0.03553735464811325, - -0.02949545346200466, - -0.01632685959339142, - -0.014939969405531883, - 0.0013070757267996669, - 0.01787852868437767, - -0.009234493598341942, - 0.004023355897516012, - -0.00933748111128807, - -0.00882254634052515, - 0.0056814453564584255, - -0.01509101688861847, - 0.06409905850887299, - 0.04133208468556404, - -0.011177513748407364, - -0.01610715501010418, - -0.00655683409422636, - 0.010456605814397335, - 0.013772783800959587, - 0.01640924997627735, - -0.00041688248165883124, - -0.008266417309641838, - -0.032626256346702576, - 0.003074159612879157, - -0.013779650442302227, - 0.01866123080253601, - -0.0026004198007285595, - 0.0011483042035251856, - -0.00816342979669571, - 0.008877472952008247, - -0.005894284695386887, - -0.016999708488583565, - 0.011225574649870396, - 0.017947187647223473, - 0.01587371714413166, - -0.014761459082365036, - -0.03770694509148598, - -0.05761775001883507, - 0.0062822019681334496, - -0.005266064777970314, - -0.023041607812047005, - 0.011651253327727318, - -0.010017194785177708, - 0.022959217429161072, - -0.006141453515738249, - -0.010683177039027214, - 0.02118784189224243, - -0.005437709391117096, - -0.015708938241004944, - -0.023371165618300438, - 0.032076992094516754, - 0.020720968022942543, - -0.0035427501425147057, - -0.0052248695865273476, - -0.001330247730948031, - 0.009824952110648155, - 0.0002643330954015255, - 0.0010676310630515218, - 0.004297987557947636, - -0.03073129802942276, - -0.035372573882341385, - -0.01373845525085926, - -0.026598088443279266, - 0.006337128579616547, - -0.0004050818970426917, - 0.03191221505403519, - 0.002457954455167055, - -0.026117483153939247, - -0.020583651959896088, - 0.014967432245612144, - 0.0027754975017160177, - -0.027037499472498894, - -0.002179889939725399, - 0.012646794319152832, - -0.02213532291352749, - -0.012276041321456432, - 0.008911801502108574, - -0.17565448582172394, - 0.008287014439702034, - 0.012509478256106377, - -0.01682119630277157, - 0.02493656612932682, - 0.0025540755596011877, - -0.0025695236399769783, - 0.018468987196683884, - -0.012571270577609539, - -0.009097178466618061, - 0.0198696106672287, - 0.024002818390727043, - -0.01809823513031006, - -0.009474797174334526, - -0.026543162763118744, - 0.003717827843502164, - -0.030539054423570633, - 0.014129805378615856, - 0.04784085601568222, - 0.02998979203402996, - -0.02345355413854122, - -0.019498856738209724, - -0.0008638027939014137, - 0.004613813944160938, - -0.003127369564026594, - 0.01809823513031006, - -0.0029145297594368458, - 0.024222522974014282, - 0.006192946806550026, - 0.008115369826555252, - -0.01835913583636284, - 0.002993486588820815, - 0.0037384252063930035, - -0.015599085949361324, - -0.012433954514563084, - -0.004727099556475878, - -0.00580159667879343, - 0.00622727582231164, - -0.014322048053145409, - 0.026529431343078613, - 0.003159981919452548, - 0.012900828383862972, - -0.021558595821261406, - 0.0023395195603370667, - -0.045231856405735016, - 0.022052932530641556, - 0.04377630725502968, - -0.025499561801552773, - 0.00274288491345942, - -0.011987677775323391, - -0.015750132501125336, - -0.015708938241004944, - 0.00478889187797904, - 0.007133560720831156, - 0.0053003933280706406, - 0.04550648853182793, - -0.01564028114080429, - 0.01082735788077116, - -0.010278094559907913, - 0.012591867707669735, - 0.005523531697690487, - -0.008657767437398434, - 0.03240654990077019, - -0.008211490698158741, - -0.00617234967648983, - -0.028287073597311974, - 0.006186081096529961, - 0.0072022187523543835, - -0.01282530464231968, - -0.007758348248898983, - -0.006618625950068235, - -0.015708938241004944, - 0.007778945378959179, - -0.017974650487303734, - 0.008740156888961792, - 0.0072777424938976765, - -0.006968781817704439, - -0.01033302117139101, - 0.017452850937843323, - -0.004297987557947636, - -0.015310722403228283, - 0.05267437547445297, - -0.010772432200610638, - -0.013086204417049885, - 0.013676662929356098, - -0.009879878722131252, - -0.006203245371580124, - 0.022533537819981575, - 0.016985977068543434, - 0.004782026167958975, - 0.0062066782265901566, - -0.022533537819981575, - -0.010799895040690899, - -0.027023768052458763, - 0.011266768909990788, - 0.01614834927022457, - -0.003340209135785699, - 0.0053896489553153515, - -0.02394789271056652, - 0.0037967844400554895, - -0.012365296483039856, - -0.024359839037060738, - -0.01311366818845272, - 0.011246171779930592, - 0.009900475852191448, - 0.019045714288949966, - -0.017672555521130562, - 0.017672555521130562, - 0.0448199063539505, - 0.003055278677493334, - -0.008046711795032024, - -0.014143536798655987, - 0.003312746062874794, - -0.002655346179381013, - -0.008513585664331913, - -0.015475501306355, - -0.01298321783542633, - -0.027284668758511543, - -4.0148806874640286e-05, - 0.009969133883714676, - 0.024098940193653107, - -0.003700663335621357, - -0.010230034589767456, - -0.011026466265320778, - -0.02010304667055607, - -0.030044717714190483, - -0.07832498848438263, - -0.017040902748703957, - 0.01739792339503765, - 0.01735672913491726, - 0.0005145054892636836, - 0.022519806399941444, - -0.0046241129748523235, - -0.0011191245866939425, - -0.003927234560251236, - 0.046934571117162704, - -0.01639551855623722, - -0.020446335896849632, - -0.015187137760221958, - -0.012770378030836582, - 0.019732294604182243, - -0.0012341266265138984, - -0.018070772290229797, - -0.011012734845280647, - -0.019993193447589874, - 0.04303480312228203, - 0.012090664356946945, - 0.0015473784878849983, - 0.011637521907687187, - -0.0015130494721233845, - -0.023851770907640457, - -0.013051875866949558, - -0.031335487961769104, - 0.019855879247188568, - 0.007250279188156128, - 0.0031822959426790476, - 0.01209753006696701, - -0.010024060495197773, - 0.0033264774829149246, - -0.0075043137185275555, - -0.015805060043931007, - -0.0027394520584493876, - -0.003230356378480792, - -0.019265420734882355, - 0.024469692260026932, - -0.02463447116315365, - 0.0016486489912495017, - 0.016052227467298508, - 0.011678717099130154, - -0.021544864401221275, - -0.00904911756515503, - -0.025897778570652008, - 0.002380714286118746, - 0.02669421024620533, - -0.009186433628201485, - -0.019732294604182243, - -0.022876828908920288, - -0.03125309944152832, - 0.0008247536025010049, - -0.0036937976256012917, - 0.022217711433768272, - 0.004675606265664101, - 0.022052932530641556, - 0.026543162763118744, - -0.016244471073150635, - 0.014225926250219345, - -4.12484077969566e-05, - 0.010154510848224163, - -0.013024413026869297, - 0.031857289373874664, - 0.013477555476129055, - 0.00642638374119997, - -0.004249927122145891, - -0.015448038466274738, - 0.012907694093883038, - -0.004122909624129534, - -0.04179895669221878, - 0.000639377161860466, - -0.011211843229830265, - 0.00981808640062809, - -0.024840446189045906, - -0.001568834064528346, - -0.028561705723404884, - -0.016519101336598396, - 0.010985272005200386, - -0.012523209676146507, - -0.010896015912294388, - -0.035345111042261124, - 0.018949594348669052, - -0.002875051461160183, - 0.022313833236694336, - 0.02293175458908081, - 0.00641265232115984, - -0.010291825979948044, - 0.015475501306355, - -0.031170707195997238, - -0.005005164537578821, - 0.03402687981724739, - 0.02162725292146206, - -0.009941671043634415, - -0.022821901366114616, - 0.004606948234140873, - 0.003432897385209799, - 0.01590117998421192, - -0.003656035754829645, - 0.004153805784881115, - -0.020487532019615173, - -0.006275336258113384, - -0.06256112456321716, - 0.03301073983311653, - 0.01433577947318554, - -0.01472026389092207, - -0.01765882410109043, - 0.003161698579788208, - 0.02315145917236805, - 0.01938900351524353, - 0.0037281266413629055, - 0.0226571224629879, - -0.021215306594967842, - 0.0387505441904068, - -0.022725781425833702, - -0.03345015272498131, - -0.026776598766446114, - -0.020226631313562393, - 0.015063554048538208, - 0.014843848533928394, - 0.01915556751191616, - 0.009097178466618061, - -0.019018251448869705, - 0.0075661055743694305, - -0.016258202493190765, - 0.01358054205775261, - -0.018990788608789444, - -0.014280852861702442, - -0.013402031734585762, - -0.004723666701465845, - -0.01069004274904728, - 0.00011221283057238907, - -0.004098879639059305, - 0.006865794770419598, - -0.0018760784296318889, - 0.01992453634738922, - -0.022245174273848534, - -0.016230739653110504, - 0.024867909029126167, - 0.006471011321991682, - 0.029605306684970856, - 0.032626256346702576, - -0.028589168563485146, - -0.015571622177958488, - 0.021572327241301537, - -0.02243741787970066, - 0.008980459533631802, - -0.008410598151385784, - 0.016944780945777893, - -0.002713705413043499, - 0.013923831284046173, - -0.0014770041452720761, - 0.03581198677420616, - 0.012234846130013466, - 0.025032687932252884, - 0.004184701945632696, - 0.009859281592071056, - -0.0072022187523543835, - 0.02262965962290764, - 0.01564028114080429, - -0.010580189526081085, - -0.013793381862342358, - 0.04929640516638756, - -0.002102649537846446, - 0.020309021696448326, - -0.0186337660998106, - 0.004328883718699217, - 0.0003347074962221086, - -0.022986680269241333, - 0.0015490949153900146, - -0.0052317357622087, - -0.014514289796352386, - -0.012832170352339745, - -0.011465877294540405, - 0.015818791463971138, - 0.04981820657849312, - -0.018427792936563492, - -0.020830821245908737, - -0.012797841802239418, - 0.010779297910630703, - -0.008225222118198872, - 0.029056042432785034, - 0.024867909029126167, - -0.011877824552357197, - -0.008472390472888947, - 7.47593867345131e-06, - 0.021270232275128365, - -0.004071416333317757, - -0.03122563473880291, - 0.0045691863633692265, - 0.00036753457970917225, - -0.0027651989366859198, - 0.009275688789784908, - 0.02289056032896042, - 0.008966728113591671, - -0.0042567928321659565, - 0.020844552665948868, - 0.008156564086675644, - 0.012832170352339745, - -0.004102312494069338, - 0.0241401344537735, - 0.0443255715072155, - 0.0017052917974069715, - 0.0016374920960515738, - -0.007531777024269104, - -0.017027171328663826, - -0.03751470148563385, - 0.03213191777467728, - -0.016313128173351288, - -0.002828707452863455, - 0.009763159789144993, - 0.01866123080253601, - -0.0040199230425059795, - -0.009941671043634415, - -0.004092013463377953, - 0.0069619156420230865, - -0.007360131945461035, - 0.019594978541135788, - -0.014486826956272125, - 0.0017001423984766006, - -0.026598088443279266, - 0.042705241590738297, - 0.003765888512134552, - -0.001092519611120224, - 0.024332376196980476, - -0.008026113733649254, - 0.004061117768287659, - -0.017178218811750412, - 0.022780707105994225, - -0.023082802072167397, - -0.0003548757522366941, - -0.022794438526034355, - 0.01195334829390049, - 0.004534857347607613, - -0.03800904005765915, - -0.015681475400924683, - -0.0104291420429945, - -0.008541048504412174, - 0.002909380476921797, - -0.003882606979459524, - 0.028753947466611862, - 0.11226947605609894, - 0.03243401274085045, - -0.014459364116191864, - 0.016752539202570915, - -0.00021627252863254398, - 0.01911437325179577, - -0.02617240883409977, - -0.0009946819627657533, - 0.01587371714413166, - -0.07925873249769211, - -0.009598380886018276, - -0.009770025499165058, - 0.030896076932549477, - -0.016519101336598396, - -0.03150026500225067, - -0.006525937933474779, - -0.0025884045753628016, - 0.0175764337182045, - -0.00624100724235177, - -0.0026707942597568035, - 0.024263719096779823, - -0.00993480533361435, - 0.013882637023925781, - 0.01171304564923048, - -0.029358137398958206, - -0.01686239242553711, - 0.012433954514563084, - -0.004287688992917538, - -0.018468987196683884, - -0.01710955984890461, - -0.025128807872533798, - 0.0052248695865273476, - -0.04866475239396095, - -0.03265371918678284, - 0.02040514163672924, - -0.03523525968194008, - 0.01960870996117592, - -0.024263719096779823, - 0.02845185250043869, - -0.0004913334269076586, - 0.004963969811797142, - 0.00854791421443224, - -0.019814683124423027, - -0.020254094153642654, - 0.014706532470881939, - -0.009969133883714676, - -0.006474444642663002, - -0.014775190502405167, - -0.03798157721757889 - ], - "metadata": { - "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "file_type": "pdf", - "has_tables": true, - "table_count": 41, - "has_images": true, - "image_count": 51, - "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", - "links": [], - "last_modified": "2025-05-05T22:59:16", - "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", - "filetype": "application/pdf", - "languages": [ - "de" - ], - "page_number": 1, - "file_directory": "data/raw", - "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", - "detection_class_prob": 0.2568194270133972, - "parent_id": "d45475a34bc527cde6987546fa6dd2f5", - "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", - "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", - "processing_timestamp": "2025-05-06T14:18:19.298665", - "chunk_number": 48, - "total_chunks": 49, - "chunking_strategy": "hybrid", - "word_count": 471 - } -} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/000018.log b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/000018.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/CURRENT index 625d147412870471b19d90716ccc20a7f207a5c3..7fbb62349a171cb93c0e07360fd312e3344b3571 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/CURRENT @@ -1 +1 @@ -MANIFEST-000013 +MANIFEST-000023 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/LOG index 06074cb5391a5ef30fbdae05c098dcc24280d57e..b81f3e8de751d2829a2c46ceb446428cbdddba3e 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.600987 40 RocksDB version: 9.9.3 -2025/05/04-10:09:55.601216 40 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.601217 40 DB SUMMARY -2025/05/04-10:09:55.601218 40 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.601219 40 DB Session ID: CD0SHR3DDC5AMRBDXMDP -2025/05/04-10:09:55.603995 40 CURRENT file: CURRENT -2025/05/04-10:09:55.603997 40 IDENTITY file: IDENTITY -2025/05/04-10:09:55.604239 40 MANIFEST file: MANIFEST-000009 size: 497 Bytes -2025/05/04-10:09:55.604247 40 SST files in ./storage/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566 dir, Total Num: 0, files: -2025/05/04-10:09:55.604250 40 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566: 000008.log size: 0 ; -2025/05/04-10:09:55.604252 40 Options.error_if_exists: 0 -2025/05/04-10:09:55.604253 40 Options.create_if_missing: 1 -2025/05/04-10:09:55.604255 40 Options.paranoid_checks: 1 -2025/05/04-10:09:55.604256 40 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.604257 40 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.604258 40 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.604260 40 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.604261 40 Options.env: 0xffff86034000 -2025/05/04-10:09:55.604263 40 Options.fs: PosixFileSystem -2025/05/04-10:09:55.604264 40 Options.info_log: 0xffff840a1000 -2025/05/04-10:09:55.604265 40 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.604266 40 Options.statistics: (nil) -2025/05/04-10:09:55.604267 40 Options.use_fsync: 0 -2025/05/04-10:09:55.604268 40 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.604269 40 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.604271 40 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.604272 40 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.604273 40 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.604274 40 Options.allow_fallocate: 1 -2025/05/04-10:09:55.604275 40 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.604276 40 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.604278 40 Options.use_direct_reads: 0 -2025/05/04-10:09:55.604279 40 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.604280 40 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.604281 40 Options.db_log_dir: -2025/05/04-10:09:55.604282 40 Options.wal_dir: -2025/05/04-10:09:55.604283 40 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.604284 40 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.604286 40 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.604287 40 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.604288 40 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.604289 40 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.604291 40 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.604292 40 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.604294 40 Options.write_buffer_manager: 0xffff840090c0 -2025/05/04-10:09:55.604295 40 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.604296 40 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.604298 40 Options.rate_limiter: (nil) -2025/05/04-10:09:55.604299 40 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.604301 40 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.604302 40 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.604303 40 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.604305 40 Options.unordered_write: 0 -2025/05/04-10:09:55.604308 40 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.604309 40 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.604310 40 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.604311 40 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.604312 40 Options.row_cache: None -2025/05/04-10:09:55.604313 40 Options.wal_filter: None -2025/05/04-10:09:55.604318 40 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.604320 40 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.604321 40 Options.two_write_queues: 0 -2025/05/04-10:09:55.604322 40 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.604323 40 Options.wal_compression: 0 -2025/05/04-10:09:55.604324 40 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.604325 40 Options.atomic_flush: 0 -2025/05/04-10:09:55.604326 40 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.604327 40 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.604329 40 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.604330 40 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.604331 40 Options.write_identity_file: 1 -2025/05/04-10:09:55.604332 40 Options.log_readahead_size: 0 -2025/05/04-10:09:55.604335 40 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.604336 40 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.604337 40 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.604338 40 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.604339 40 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.604340 40 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.604342 40 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.604343 40 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.604345 40 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.604370 40 Options.max_background_jobs: 2 -2025/05/04-10:09:55.604380 40 Options.max_background_compactions: -1 -2025/05/04-10:09:55.604382 40 Options.max_subcompactions: 1 -2025/05/04-10:09:55.604382 40 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.604383 40 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.604384 40 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.604384 40 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.604385 40 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.604386 40 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.604387 40 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.604387 40 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.604388 40 Options.max_open_files: 256 -2025/05/04-10:09:55.604389 40 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.604389 40 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.604390 40 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.604391 40 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.604392 40 Options.max_background_flushes: -1 -2025/05/04-10:09:55.604392 40 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.604393 40 Compression algorithms supported: -2025/05/04-10:09:55.604394 40 kZSTD supported: 0 -2025/05/04-10:09:55.604395 40 kXpressCompression supported: 0 -2025/05/04-10:09:55.604396 40 kBZip2Compression supported: 0 -2025/05/04-10:09:55.604396 40 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.604397 40 kLZ4Compression supported: 1 -2025/05/04-10:09:55.604398 40 kZlibCompression supported: 0 -2025/05/04-10:09:55.604398 40 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.604399 40 kSnappyCompression supported: 1 -2025/05/04-10:09:55.604402 40 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.604404 40 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.604404 40 Jemalloc supported: 0 -2025/05/04-10:09:55.610713 40 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.610983 40 Options.merge_operator: None -2025/05/04-10:09:55.610984 40 Options.compaction_filter: None -2025/05/04-10:09:55.610985 40 Options.compaction_filter_factory: None -2025/05/04-10:09:55.610986 40 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.610987 40 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.610988 40 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.611007 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84000060) +2025/05/26-19:13:17.062286 39 RocksDB version: 9.9.3 +2025/05/26-19:13:17.064849 39 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.064850 39 DB SUMMARY +2025/05/26-19:13:17.064851 39 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.064852 39 DB Session ID: PCRZT7AMVX68CX0XDWTT +2025/05/26-19:13:17.066359 39 CURRENT file: CURRENT +2025/05/26-19:13:17.066361 39 IDENTITY file: IDENTITY +2025/05/26-19:13:17.066564 39 MANIFEST file: MANIFEST-000013 size: 833 Bytes +2025/05/26-19:13:17.066566 39 SST files in ./storage/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566 dir, Total Num: 2, files: 000017.sst 000019.sst +2025/05/26-19:13:17.066567 39 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566: 000018.log size: 0 ; +2025/05/26-19:13:17.066568 39 Options.error_if_exists: 0 +2025/05/26-19:13:17.066568 39 Options.create_if_missing: 1 +2025/05/26-19:13:17.066569 39 Options.paranoid_checks: 1 +2025/05/26-19:13:17.066570 39 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.066571 39 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.066572 39 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.066573 39 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.066573 39 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.066574 39 Options.fs: PosixFileSystem +2025/05/26-19:13:17.066575 39 Options.info_log: 0xffff686a1000 +2025/05/26-19:13:17.066576 39 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.066577 39 Options.statistics: (nil) +2025/05/26-19:13:17.066577 39 Options.use_fsync: 0 +2025/05/26-19:13:17.066578 39 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.066579 39 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.066579 39 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.066580 39 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.066581 39 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.066583 39 Options.allow_fallocate: 1 +2025/05/26-19:13:17.066583 39 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.066584 39 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.066584 39 Options.use_direct_reads: 0 +2025/05/26-19:13:17.066585 39 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.066586 39 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.066586 39 Options.db_log_dir: +2025/05/26-19:13:17.066587 39 Options.wal_dir: +2025/05/26-19:13:17.066590 39 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.066590 39 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.066591 39 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.066592 39 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.066592 39 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.066593 39 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.066593 39 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.066594 39 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.066595 39 Options.write_buffer_manager: 0xffff686090c0 +2025/05/26-19:13:17.066595 39 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.066596 39 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.066597 39 Options.rate_limiter: (nil) +2025/05/26-19:13:17.066597 39 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.066598 39 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.066599 39 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.066599 39 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.066600 39 Options.unordered_write: 0 +2025/05/26-19:13:17.066601 39 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.066602 39 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.066603 39 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.066603 39 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.066604 39 Options.row_cache: None +2025/05/26-19:13:17.066605 39 Options.wal_filter: None +2025/05/26-19:13:17.066606 39 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.066607 39 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.066608 39 Options.two_write_queues: 0 +2025/05/26-19:13:17.066608 39 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.066609 39 Options.wal_compression: 0 +2025/05/26-19:13:17.066610 39 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.066610 39 Options.atomic_flush: 0 +2025/05/26-19:13:17.066611 39 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.066612 39 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.066613 39 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.066613 39 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.066614 39 Options.write_identity_file: 1 +2025/05/26-19:13:17.066615 39 Options.log_readahead_size: 0 +2025/05/26-19:13:17.066615 39 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.066616 39 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.066617 39 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.066617 39 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.066618 39 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.066619 39 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.066619 39 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.066620 39 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.066621 39 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.066621 39 Options.max_background_jobs: 2 +2025/05/26-19:13:17.066622 39 Options.max_background_compactions: -1 +2025/05/26-19:13:17.066624 39 Options.max_subcompactions: 1 +2025/05/26-19:13:17.066625 39 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.066626 39 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.066627 39 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.066628 39 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.066629 39 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.066630 39 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.066631 39 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.066631 39 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.066632 39 Options.max_open_files: 256 +2025/05/26-19:13:17.066633 39 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.066633 39 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.066634 39 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.066635 39 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.066636 39 Options.max_background_flushes: -1 +2025/05/26-19:13:17.066636 39 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.066637 39 Compression algorithms supported: +2025/05/26-19:13:17.066638 39 kZSTD supported: 0 +2025/05/26-19:13:17.066638 39 kXpressCompression supported: 0 +2025/05/26-19:13:17.066639 39 kBZip2Compression supported: 0 +2025/05/26-19:13:17.066640 39 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.066641 39 kLZ4Compression supported: 1 +2025/05/26-19:13:17.066641 39 kZlibCompression supported: 0 +2025/05/26-19:13:17.066642 39 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.066643 39 kSnappyCompression supported: 1 +2025/05/26-19:13:17.066644 39 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.066644 39 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.066645 39 Jemalloc supported: 0 +2025/05/26-19:13:17.069439 39 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.069441 39 Options.merge_operator: None +2025/05/26-19:13:17.069441 39 Options.compaction_filter: None +2025/05/26-19:13:17.069442 39 Options.compaction_filter_factory: None +2025/05/26-19:13:17.069442 39 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.069443 39 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.069444 39 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.069463 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68600060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff84009010 + block_cache: 0xffff68609010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,103 +155,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.611009 40 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.611011 40 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.611011 40 Options.compression: LZ4 -2025/05/04-10:09:55.611012 40 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.611013 40 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.611014 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.611014 40 Options.num_levels: 7 -2025/05/04-10:09:55.611015 40 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.611015 40 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.611016 40 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.611017 40 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.611018 40 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.611018 40 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.611019 40 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.611020 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.611020 40 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.611021 40 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.611022 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.611023 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.611023 40 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.611025 40 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.611026 40 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.611027 40 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.611027 40 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.611028 40 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.611028 40 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.611029 40 Options.compression_opts.enabled: false -2025/05/04-10:09:55.611030 40 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.611030 40 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.611031 40 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.611031 40 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.611032 40 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.611033 40 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.611033 40 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.611034 40 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.611035 40 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.611036 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.611036 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.611037 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.611037 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.611038 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.611038 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.611040 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.611042 40 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.611043 40 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.611043 40 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.611044 40 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.611045 40 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.611045 40 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.611046 40 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.611047 40 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.611048 40 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.611048 40 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.611049 40 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.611050 40 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.611051 40 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.611051 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.611052 40 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.611053 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.611053 40 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.611055 40 Options.table_properties_collectors: -2025/05/04-10:09:55.611056 40 Options.inplace_update_support: 0 -2025/05/04-10:09:55.611057 40 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.611057 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.611058 40 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.611059 40 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.611059 40 Options.bloom_locality: 0 -2025/05/04-10:09:55.611060 40 Options.max_successive_merges: 0 -2025/05/04-10:09:55.611061 40 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.611061 40 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.611062 40 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.611062 40 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.611063 40 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.611064 40 Options.ttl: 2592000 -2025/05/04-10:09:55.611064 40 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.611065 40 Options.default_temperature: kUnknown -2025/05/04-10:09:55.611066 40 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.611066 40 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.611067 40 Options.enable_blob_files: false -2025/05/04-10:09:55.611068 40 Options.min_blob_size: 0 -2025/05/04-10:09:55.611068 40 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.611069 40 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.611069 40 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.611070 40 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.611071 40 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.611072 40 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.611072 40 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.611073 40 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.611073 40 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.611264 40 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.611265 40 Options.merge_operator: None -2025/05/04-10:09:55.611266 40 Options.compaction_filter: None -2025/05/04-10:09:55.611266 40 Options.compaction_filter_factory: None -2025/05/04-10:09:55.611267 40 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.611268 40 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.611268 40 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.611276 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84000060) +2025/05/26-19:13:17.069467 39 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.069468 39 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.069470 39 Options.compression: LZ4 +2025/05/26-19:13:17.069472 39 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.069472 39 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.069473 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.069474 39 Options.num_levels: 7 +2025/05/26-19:13:17.069474 39 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.069475 39 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.069475 39 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.069476 39 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.069477 39 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.069477 39 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.069478 39 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069479 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069479 39 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069480 39 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.069480 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069481 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069482 39 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.069482 39 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.069483 39 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.069484 39 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069484 39 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069485 39 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069486 39 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069486 39 Options.compression_opts.enabled: false +2025/05/26-19:13:17.069487 39 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069487 39 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.069488 39 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.069489 39 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.069489 39 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.069490 39 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.069490 39 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.069491 39 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.069492 39 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.069493 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.069493 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.069494 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.069495 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.069495 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.069496 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.069497 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.069497 39 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.069498 39 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.069499 39 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.069499 39 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.069500 39 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.069501 39 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.069501 39 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.069502 39 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.069503 39 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.069503 39 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.069504 39 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.069504 39 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.069505 39 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.069506 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.069506 39 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.069507 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.069508 39 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.069509 39 Options.table_properties_collectors: +2025/05/26-19:13:17.069510 39 Options.inplace_update_support: 0 +2025/05/26-19:13:17.069510 39 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.069511 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.069511 39 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.069512 39 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.069513 39 Options.bloom_locality: 0 +2025/05/26-19:13:17.069513 39 Options.max_successive_merges: 0 +2025/05/26-19:13:17.069514 39 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.069514 39 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.069515 39 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.069515 39 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.069516 39 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.069517 39 Options.ttl: 2592000 +2025/05/26-19:13:17.069519 39 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.069520 39 Options.default_temperature: kUnknown +2025/05/26-19:13:17.069520 39 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.069521 39 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.069521 39 Options.enable_blob_files: false +2025/05/26-19:13:17.069522 39 Options.min_blob_size: 0 +2025/05/26-19:13:17.069523 39 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.069523 39 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.069524 39 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.069525 39 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.069526 39 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.069526 39 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.069527 39 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.069527 39 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.069528 39 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.069803 39 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.069804 39 Options.merge_operator: None +2025/05/26-19:13:17.069804 39 Options.compaction_filter: None +2025/05/26-19:13:17.069805 39 Options.compaction_filter_factory: None +2025/05/26-19:13:17.069805 39 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.069806 39 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.069806 39 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.069812 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68600060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -262,7 +262,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff84009010 + block_cache: 0xffff68609010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -290,103 +290,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.611277 40 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.611278 40 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.611279 40 Options.compression: LZ4 -2025/05/04-10:09:55.611280 40 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.611280 40 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.611281 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.611281 40 Options.num_levels: 7 -2025/05/04-10:09:55.611282 40 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.611283 40 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.611283 40 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.611284 40 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.611285 40 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.611285 40 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.611286 40 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.611287 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.611287 40 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.611288 40 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.611289 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.611289 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.611291 40 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.611292 40 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.611293 40 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.611294 40 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.611295 40 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.611295 40 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.611296 40 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.611297 40 Options.compression_opts.enabled: false -2025/05/04-10:09:55.611298 40 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.611299 40 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.611299 40 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.611301 40 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.611301 40 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.611302 40 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.611303 40 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.611304 40 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.611305 40 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.611306 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.611306 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.611307 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.611307 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.611308 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.611309 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.611309 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.611310 40 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.611310 40 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.611311 40 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.611312 40 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.611312 40 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.611313 40 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.611314 40 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.611315 40 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.611315 40 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.611316 40 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.611316 40 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.611317 40 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.611318 40 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.611318 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.611319 40 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.611319 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.611320 40 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.611321 40 Options.table_properties_collectors: -2025/05/04-10:09:55.611323 40 Options.inplace_update_support: 0 -2025/05/04-10:09:55.611323 40 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.611324 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.611325 40 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.611326 40 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.611327 40 Options.bloom_locality: 0 -2025/05/04-10:09:55.611328 40 Options.max_successive_merges: 0 -2025/05/04-10:09:55.611329 40 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.611330 40 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.611331 40 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.611332 40 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.611332 40 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.611333 40 Options.ttl: 2592000 -2025/05/04-10:09:55.611333 40 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.611334 40 Options.default_temperature: kUnknown -2025/05/04-10:09:55.611335 40 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.611335 40 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.611336 40 Options.enable_blob_files: false -2025/05/04-10:09:55.611336 40 Options.min_blob_size: 0 -2025/05/04-10:09:55.611337 40 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.611338 40 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.611338 40 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.611339 40 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.611339 40 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.611340 40 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.611341 40 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.611341 40 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.611342 40 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.611363 40 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.611364 40 Options.merge_operator: None -2025/05/04-10:09:55.611364 40 Options.compaction_filter: None -2025/05/04-10:09:55.611365 40 Options.compaction_filter_factory: None -2025/05/04-10:09:55.611365 40 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.611366 40 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.611366 40 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.611372 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84000060) +2025/05/26-19:13:17.069815 39 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.069816 39 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.069817 39 Options.compression: LZ4 +2025/05/26-19:13:17.069817 39 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.069818 39 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.069818 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.069819 39 Options.num_levels: 7 +2025/05/26-19:13:17.069820 39 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.069820 39 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.069821 39 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.069821 39 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.069822 39 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.069822 39 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.069823 39 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069823 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069824 39 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069824 39 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.069825 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069825 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069826 39 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.069827 39 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.069827 39 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.069828 39 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069829 39 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069830 39 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069831 39 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069834 39 Options.compression_opts.enabled: false +2025/05/26-19:13:17.069835 39 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069835 39 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.069836 39 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.069837 39 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.069837 39 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.069838 39 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.069838 39 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.069839 39 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.069839 39 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.069840 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.069841 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.069841 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.069842 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.069843 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.069843 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.069844 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.069844 39 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.069845 39 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.069846 39 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.069847 39 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.069847 39 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.069848 39 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.069849 39 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.069849 39 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.069850 39 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.069851 39 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.069851 39 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.069852 39 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.069853 39 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.069854 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.069856 39 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.069856 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.069857 39 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.069858 39 Options.table_properties_collectors: +2025/05/26-19:13:17.069859 39 Options.inplace_update_support: 0 +2025/05/26-19:13:17.069861 39 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.069862 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.069863 39 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.069865 39 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.069866 39 Options.bloom_locality: 0 +2025/05/26-19:13:17.069868 39 Options.max_successive_merges: 0 +2025/05/26-19:13:17.069869 39 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.069869 39 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.069870 39 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.069871 39 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.069872 39 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.069872 39 Options.ttl: 2592000 +2025/05/26-19:13:17.069873 39 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.069874 39 Options.default_temperature: kUnknown +2025/05/26-19:13:17.069875 39 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.069875 39 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.069876 39 Options.enable_blob_files: false +2025/05/26-19:13:17.069876 39 Options.min_blob_size: 0 +2025/05/26-19:13:17.069877 39 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.069878 39 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.069880 39 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.069880 39 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.069881 39 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.069882 39 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.069882 39 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.069883 39 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.069883 39 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.069907 39 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.069908 39 Options.merge_operator: None +2025/05/26-19:13:17.069909 39 Options.compaction_filter: None +2025/05/26-19:13:17.069910 39 Options.compaction_filter_factory: None +2025/05/26-19:13:17.069911 39 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.069912 39 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.069912 39 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.069920 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68600060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -397,7 +397,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff84009010 + block_cache: 0xffff68609010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -425,103 +425,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.611373 40 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.611374 40 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.611374 40 Options.compression: LZ4 -2025/05/04-10:09:55.611375 40 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.611375 40 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.611376 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.611377 40 Options.num_levels: 7 -2025/05/04-10:09:55.611377 40 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.611378 40 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.611378 40 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.611379 40 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.611379 40 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.611380 40 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.611380 40 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.611381 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.611382 40 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.611382 40 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.611383 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.611383 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.611384 40 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.611384 40 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.611385 40 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.611385 40 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.611386 40 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.611386 40 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.611387 40 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.611387 40 Options.compression_opts.enabled: false -2025/05/04-10:09:55.611388 40 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.611388 40 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.611389 40 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.611389 40 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.611390 40 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.611390 40 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.611391 40 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.611391 40 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.611392 40 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.611393 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.611393 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.611394 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.611394 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.611395 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.611395 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.611396 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.611397 40 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.611399 40 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.611399 40 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.611400 40 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.611400 40 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.611401 40 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.611401 40 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.611402 40 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.611403 40 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.611403 40 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.611404 40 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.611406 40 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.611406 40 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.611407 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.611408 40 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.611408 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.611409 40 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.611410 40 Options.table_properties_collectors: -2025/05/04-10:09:55.611411 40 Options.inplace_update_support: 0 -2025/05/04-10:09:55.611411 40 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.611412 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.611412 40 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.611413 40 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.611414 40 Options.bloom_locality: 0 -2025/05/04-10:09:55.611414 40 Options.max_successive_merges: 0 -2025/05/04-10:09:55.611415 40 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.611415 40 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.611416 40 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.611416 40 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.611417 40 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.611417 40 Options.ttl: 2592000 -2025/05/04-10:09:55.611418 40 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.611418 40 Options.default_temperature: kUnknown -2025/05/04-10:09:55.611419 40 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.611420 40 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.611420 40 Options.enable_blob_files: false -2025/05/04-10:09:55.611421 40 Options.min_blob_size: 0 -2025/05/04-10:09:55.611421 40 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.611422 40 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.611422 40 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.611423 40 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.611423 40 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.611425 40 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.611426 40 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.611427 40 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.611427 40 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.611443 40 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.611443 40 Options.merge_operator: None -2025/05/04-10:09:55.611444 40 Options.compaction_filter: None -2025/05/04-10:09:55.611444 40 Options.compaction_filter_factory: None -2025/05/04-10:09:55.611445 40 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.611446 40 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.611446 40 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.611453 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84000060) +2025/05/26-19:13:17.069924 39 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.069924 39 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.069925 39 Options.compression: LZ4 +2025/05/26-19:13:17.069925 39 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.069926 39 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.069928 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.069928 39 Options.num_levels: 7 +2025/05/26-19:13:17.069929 39 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.069929 39 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.069930 39 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.069949 39 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.069950 39 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.069951 39 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.069953 39 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069954 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069954 39 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069964 39 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.069965 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069966 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069967 39 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.069968 39 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.069968 39 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.069969 39 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069970 39 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069970 39 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069973 39 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069973 39 Options.compression_opts.enabled: false +2025/05/26-19:13:17.069974 39 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069975 39 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.069976 39 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.069976 39 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.069977 39 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.069978 39 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.069978 39 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.069979 39 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.069980 39 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.069981 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.069982 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.069983 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.069983 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.069984 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.069985 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.069985 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.069986 39 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.069986 39 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.069987 39 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.069988 39 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.069989 39 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.069989 39 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.069990 39 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.069991 39 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.069992 39 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.069992 39 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.069993 39 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.069994 39 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.069995 39 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.069996 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.069996 39 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.069997 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.069998 39 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070000 39 Options.table_properties_collectors: +2025/05/26-19:13:17.070003 39 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070004 39 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070005 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070006 39 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070006 39 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070007 39 Options.bloom_locality: 0 +2025/05/26-19:13:17.070009 39 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070012 39 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070013 39 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070015 39 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070017 39 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070017 39 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070018 39 Options.ttl: 2592000 +2025/05/26-19:13:17.070019 39 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070020 39 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070020 39 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070021 39 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070021 39 Options.enable_blob_files: false +2025/05/26-19:13:17.070022 39 Options.min_blob_size: 0 +2025/05/26-19:13:17.070023 39 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070023 39 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070025 39 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070026 39 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070027 39 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070029 39 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070030 39 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070031 39 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070031 39 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070062 39 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070063 39 Options.merge_operator: None +2025/05/26-19:13:17.070063 39 Options.compaction_filter: None +2025/05/26-19:13:17.070064 39 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070065 39 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070065 39 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070066 39 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070075 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68600060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -532,7 +532,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff84009010 + block_cache: 0xffff68609010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -560,103 +560,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.611454 40 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.611455 40 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.611456 40 Options.compression: LZ4 -2025/05/04-10:09:55.611456 40 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.611457 40 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.611457 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.611458 40 Options.num_levels: 7 -2025/05/04-10:09:55.611458 40 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.611459 40 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.611459 40 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.611460 40 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.611460 40 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.611461 40 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.611461 40 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.611462 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.611462 40 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.611463 40 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.611463 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.611464 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.611465 40 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.611465 40 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.611466 40 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.611466 40 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.611467 40 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.611467 40 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.611468 40 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.611468 40 Options.compression_opts.enabled: false -2025/05/04-10:09:55.611469 40 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.611469 40 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.611471 40 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.611472 40 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.611472 40 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.611473 40 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.611473 40 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.611474 40 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.611475 40 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.611475 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.611476 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.611477 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.611477 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.611478 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.611478 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.611480 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.611481 40 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.611482 40 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.611484 40 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.611484 40 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.611485 40 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.611486 40 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.611486 40 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.611487 40 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.611487 40 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.611488 40 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.611488 40 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.611489 40 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.611490 40 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.611490 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.611491 40 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.611491 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.611492 40 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.611493 40 Options.table_properties_collectors: -2025/05/04-10:09:55.611493 40 Options.inplace_update_support: 0 -2025/05/04-10:09:55.611495 40 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.611497 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.611498 40 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.611498 40 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.611499 40 Options.bloom_locality: 0 -2025/05/04-10:09:55.611499 40 Options.max_successive_merges: 0 -2025/05/04-10:09:55.611500 40 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.611500 40 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.611501 40 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.611502 40 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.611502 40 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.611503 40 Options.ttl: 2592000 -2025/05/04-10:09:55.611503 40 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.611504 40 Options.default_temperature: kUnknown -2025/05/04-10:09:55.611505 40 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.611505 40 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.611506 40 Options.enable_blob_files: false -2025/05/04-10:09:55.611506 40 Options.min_blob_size: 0 -2025/05/04-10:09:55.611507 40 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.611507 40 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.611508 40 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.611508 40 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.611509 40 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.611510 40 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.611510 40 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.611511 40 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.611511 40 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.611527 40 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.611528 40 Options.merge_operator: None -2025/05/04-10:09:55.611529 40 Options.compaction_filter: None -2025/05/04-10:09:55.611529 40 Options.compaction_filter_factory: None -2025/05/04-10:09:55.611530 40 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.611530 40 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.611531 40 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.611536 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84000060) +2025/05/26-19:13:17.070079 39 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070080 39 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070081 39 Options.compression: LZ4 +2025/05/26-19:13:17.070082 39 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070082 39 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070083 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070084 39 Options.num_levels: 7 +2025/05/26-19:13:17.070085 39 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070086 39 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070087 39 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070089 39 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070089 39 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070090 39 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070091 39 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070091 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070092 39 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070092 39 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070095 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070096 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070097 39 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070097 39 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070098 39 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070098 39 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070099 39 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070100 39 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070100 39 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070101 39 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070102 39 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070102 39 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070103 39 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070103 39 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070104 39 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070106 39 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070107 39 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070107 39 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070108 39 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070109 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070110 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070110 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070111 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070111 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070112 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070112 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070113 39 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070114 39 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070114 39 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070116 39 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070119 39 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070121 39 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070123 39 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070125 39 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070126 39 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070127 39 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070128 39 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070128 39 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070129 39 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070130 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070130 39 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070131 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070133 39 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070136 39 Options.table_properties_collectors: +2025/05/26-19:13:17.070136 39 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070137 39 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070139 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070141 39 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070142 39 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070142 39 Options.bloom_locality: 0 +2025/05/26-19:13:17.070143 39 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070144 39 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070144 39 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070145 39 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070146 39 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070147 39 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070147 39 Options.ttl: 2592000 +2025/05/26-19:13:17.070148 39 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070149 39 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070149 39 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070150 39 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070150 39 Options.enable_blob_files: false +2025/05/26-19:13:17.070153 39 Options.min_blob_size: 0 +2025/05/26-19:13:17.070153 39 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070154 39 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070155 39 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070155 39 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070156 39 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070157 39 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070158 39 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070159 39 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070159 39 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070184 39 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070186 39 Options.merge_operator: None +2025/05/26-19:13:17.070186 39 Options.compaction_filter: None +2025/05/26-19:13:17.070187 39 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070188 39 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070188 39 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070189 39 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070196 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68600060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -667,7 +667,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff84009010 + block_cache: 0xffff68609010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -695,93 +695,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.611537 40 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.611538 40 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.611538 40 Options.compression: LZ4 -2025/05/04-10:09:55.611539 40 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.611539 40 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.611540 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.611540 40 Options.num_levels: 7 -2025/05/04-10:09:55.611541 40 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.611541 40 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.611542 40 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.611542 40 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.611543 40 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.611543 40 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.611544 40 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.611544 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.611545 40 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.611545 40 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.611546 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.611546 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.611547 40 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.611548 40 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.611548 40 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.611549 40 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.611549 40 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.611550 40 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.611550 40 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.611551 40 Options.compression_opts.enabled: false -2025/05/04-10:09:55.611551 40 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.611552 40 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.611552 40 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.611553 40 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.611553 40 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.611554 40 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.611555 40 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.611555 40 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.611556 40 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.611556 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.611557 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.611557 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.611558 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.611559 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.611559 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.611560 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.611560 40 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.611561 40 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.611561 40 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.611562 40 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.611563 40 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.611563 40 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.611564 40 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.611564 40 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.611565 40 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.611565 40 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.611566 40 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.611566 40 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.611567 40 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.611568 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.611568 40 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.611569 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.611569 40 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.611570 40 Options.table_properties_collectors: -2025/05/04-10:09:55.611571 40 Options.inplace_update_support: 0 -2025/05/04-10:09:55.611571 40 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.611572 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.611572 40 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.611573 40 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.611573 40 Options.bloom_locality: 0 -2025/05/04-10:09:55.611574 40 Options.max_successive_merges: 0 -2025/05/04-10:09:55.611574 40 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.611575 40 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.611575 40 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.611576 40 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.611576 40 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.611577 40 Options.ttl: 2592000 -2025/05/04-10:09:55.611577 40 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.611578 40 Options.default_temperature: kUnknown -2025/05/04-10:09:55.611578 40 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.611579 40 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.611579 40 Options.enable_blob_files: false -2025/05/04-10:09:55.611580 40 Options.min_blob_size: 0 -2025/05/04-10:09:55.611580 40 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.611581 40 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.611582 40 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.611582 40 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.611583 40 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.611583 40 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.611584 40 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.611584 40 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.611585 40 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.669831 40 DB pointer 0xffff84063c00 +2025/05/26-19:13:17.070200 39 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070201 39 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070201 39 Options.compression: LZ4 +2025/05/26-19:13:17.070202 39 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070203 39 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070203 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070204 39 Options.num_levels: 7 +2025/05/26-19:13:17.070204 39 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070205 39 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070206 39 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070206 39 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070207 39 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070208 39 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070208 39 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070209 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070210 39 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070213 39 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070214 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070215 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070216 39 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070218 39 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070219 39 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070220 39 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070220 39 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070221 39 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070221 39 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070222 39 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070223 39 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070224 39 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070226 39 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070227 39 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070227 39 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070228 39 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070229 39 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070230 39 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070231 39 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070231 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070232 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070233 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070233 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070234 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070234 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070235 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070235 39 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070236 39 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070237 39 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070240 39 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070241 39 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070242 39 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070243 39 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070243 39 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070244 39 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070244 39 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070245 39 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070248 39 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070248 39 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070249 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070250 39 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070250 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070251 39 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070252 39 Options.table_properties_collectors: +2025/05/26-19:13:17.070253 39 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070253 39 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070254 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070255 39 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070255 39 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070256 39 Options.bloom_locality: 0 +2025/05/26-19:13:17.070256 39 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070257 39 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070257 39 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070258 39 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070259 39 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070259 39 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070260 39 Options.ttl: 2592000 +2025/05/26-19:13:17.070260 39 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070262 39 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070263 39 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070264 39 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070264 39 Options.enable_blob_files: false +2025/05/26-19:13:17.070265 39 Options.min_blob_size: 0 +2025/05/26-19:13:17.070266 39 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070266 39 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070268 39 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070269 39 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070270 39 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070271 39 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070271 39 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070273 39 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070273 39 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.109921 39 DB pointer 0xffff68663c00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/MANIFEST-000013 deleted file mode 100644 index 63688824d99900367e08c5cc47a369e124f8c192..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/MANIFEST-000013 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/OPTIONS-000011 deleted file mode 100644 index ad2b181add715408dc69839970eebfd4c1a28b4b..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/OPTIONS-000011 +++ /dev/null @@ -1,670 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "payload"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "payload"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "mapping"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "mapping"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "version"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "version"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "vector"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "vector"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/000012.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/CURRENT index 625d147412870471b19d90716ccc20a7f207a5c3..056df57bb7f73da12edea3c09d88bc3ff790ec7c 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/CURRENT @@ -1 +1 @@ -MANIFEST-000013 +MANIFEST-000017 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/LOG index d582234817762d0593220bffe12522c382a98a2b..b67b6a14d1e5d488910b55318c7ed6a52766b84c 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.798935 40 RocksDB version: 9.9.3 -2025/05/04-10:09:55.799025 40 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.799026 40 DB SUMMARY -2025/05/04-10:09:55.799028 40 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.799028 40 DB Session ID: CD0SHR3DDC5AMRBDXMDG -2025/05/04-10:09:55.799666 40 CURRENT file: CURRENT -2025/05/04-10:09:55.799668 40 IDENTITY file: IDENTITY -2025/05/04-10:09:55.799673 40 MANIFEST file: MANIFEST-000009 size: 159 Bytes -2025/05/04-10:09:55.799674 40 SST files in ./storage/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index dir, Total Num: 0, files: -2025/05/04-10:09:55.799675 40 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index: 000008.log size: 0 ; -2025/05/04-10:09:55.799676 40 Options.error_if_exists: 0 -2025/05/04-10:09:55.799677 40 Options.create_if_missing: 1 -2025/05/04-10:09:55.799677 40 Options.paranoid_checks: 1 -2025/05/04-10:09:55.799678 40 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.799680 40 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.799681 40 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.799682 40 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.799683 40 Options.env: 0xffff86034000 -2025/05/04-10:09:55.799684 40 Options.fs: PosixFileSystem -2025/05/04-10:09:55.799684 40 Options.info_log: 0xffff840a2800 -2025/05/04-10:09:55.799686 40 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.799689 40 Options.statistics: (nil) -2025/05/04-10:09:55.799691 40 Options.use_fsync: 0 -2025/05/04-10:09:55.799692 40 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.799692 40 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.799693 40 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.799693 40 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.799694 40 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.799695 40 Options.allow_fallocate: 1 -2025/05/04-10:09:55.799695 40 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.799696 40 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.799696 40 Options.use_direct_reads: 0 -2025/05/04-10:09:55.799697 40 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.799698 40 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.799698 40 Options.db_log_dir: -2025/05/04-10:09:55.799699 40 Options.wal_dir: -2025/05/04-10:09:55.799699 40 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.799700 40 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.799700 40 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.799701 40 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.799702 40 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.799702 40 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.799703 40 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.799704 40 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.799704 40 Options.write_buffer_manager: 0xffff8400a200 -2025/05/04-10:09:55.799705 40 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.799707 40 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.799708 40 Options.rate_limiter: (nil) -2025/05/04-10:09:55.799708 40 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.799709 40 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.799710 40 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.799711 40 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.799712 40 Options.unordered_write: 0 -2025/05/04-10:09:55.799714 40 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.799714 40 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.799715 40 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.799715 40 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.799716 40 Options.row_cache: None -2025/05/04-10:09:55.799717 40 Options.wal_filter: None -2025/05/04-10:09:55.799718 40 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.799719 40 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.799719 40 Options.two_write_queues: 0 -2025/05/04-10:09:55.799720 40 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.799721 40 Options.wal_compression: 0 -2025/05/04-10:09:55.799721 40 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.799722 40 Options.atomic_flush: 0 -2025/05/04-10:09:55.799722 40 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.799723 40 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.799724 40 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.799725 40 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.799728 40 Options.write_identity_file: 1 -2025/05/04-10:09:55.799728 40 Options.log_readahead_size: 0 -2025/05/04-10:09:55.799729 40 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.799730 40 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.799730 40 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.799732 40 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.799733 40 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.799734 40 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.799735 40 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.799735 40 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.799736 40 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.799737 40 Options.max_background_jobs: 2 -2025/05/04-10:09:55.799737 40 Options.max_background_compactions: -1 -2025/05/04-10:09:55.799738 40 Options.max_subcompactions: 1 -2025/05/04-10:09:55.799738 40 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.799739 40 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.799739 40 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.799740 40 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.799741 40 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.799742 40 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.799744 40 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.799744 40 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.799745 40 Options.max_open_files: 256 -2025/05/04-10:09:55.799746 40 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.799746 40 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.799747 40 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.799747 40 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.799749 40 Options.max_background_flushes: -1 -2025/05/04-10:09:55.799751 40 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.799751 40 Compression algorithms supported: -2025/05/04-10:09:55.799752 40 kZSTD supported: 0 -2025/05/04-10:09:55.799754 40 kXpressCompression supported: 0 -2025/05/04-10:09:55.799755 40 kBZip2Compression supported: 0 -2025/05/04-10:09:55.799756 40 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.799757 40 kLZ4Compression supported: 1 -2025/05/04-10:09:55.799757 40 kZlibCompression supported: 0 -2025/05/04-10:09:55.799758 40 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.799758 40 kSnappyCompression supported: 1 -2025/05/04-10:09:55.799759 40 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.799760 40 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.799761 40 Jemalloc supported: 0 -2025/05/04-10:09:55.801172 40 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.801173 40 Options.merge_operator: None -2025/05/04-10:09:55.801173 40 Options.compaction_filter: None -2025/05/04-10:09:55.801174 40 Options.compaction_filter_factory: None -2025/05/04-10:09:55.801174 40 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.801175 40 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.801176 40 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.801197 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84132c40) +2025/05/26-19:13:17.277421 39 RocksDB version: 9.9.3 +2025/05/26-19:13:17.277600 39 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.277601 39 DB SUMMARY +2025/05/26-19:13:17.277602 39 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.277603 39 DB Session ID: PCRZT7AMVX68CX0XDWU3 +2025/05/26-19:13:17.278273 39 CURRENT file: CURRENT +2025/05/26-19:13:17.278274 39 IDENTITY file: IDENTITY +2025/05/26-19:13:17.278279 39 MANIFEST file: MANIFEST-000013 size: 165 Bytes +2025/05/26-19:13:17.278281 39 SST files in ./storage/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index dir, Total Num: 0, files: +2025/05/26-19:13:17.278282 39 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index: 000012.log size: 0 ; +2025/05/26-19:13:17.278282 39 Options.error_if_exists: 0 +2025/05/26-19:13:17.278283 39 Options.create_if_missing: 1 +2025/05/26-19:13:17.278284 39 Options.paranoid_checks: 1 +2025/05/26-19:13:17.278285 39 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.278285 39 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.278286 39 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.278287 39 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.278287 39 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.278288 39 Options.fs: PosixFileSystem +2025/05/26-19:13:17.278289 39 Options.info_log: 0xffff686a2800 +2025/05/26-19:13:17.278291 39 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.278292 39 Options.statistics: (nil) +2025/05/26-19:13:17.278292 39 Options.use_fsync: 0 +2025/05/26-19:13:17.278293 39 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.278294 39 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.278296 39 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.278296 39 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.278297 39 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.278297 39 Options.allow_fallocate: 1 +2025/05/26-19:13:17.278298 39 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.278298 39 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.278299 39 Options.use_direct_reads: 0 +2025/05/26-19:13:17.278300 39 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.278300 39 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.278301 39 Options.db_log_dir: +2025/05/26-19:13:17.278302 39 Options.wal_dir: +2025/05/26-19:13:17.278302 39 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.278303 39 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.278303 39 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.278304 39 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.278305 39 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.278305 39 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.278306 39 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.278306 39 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.278307 39 Options.write_buffer_manager: 0xffff6860a200 +2025/05/26-19:13:17.278307 39 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.278308 39 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.278309 39 Options.rate_limiter: (nil) +2025/05/26-19:13:17.278309 39 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.278311 39 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.278311 39 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.278312 39 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.278312 39 Options.unordered_write: 0 +2025/05/26-19:13:17.278313 39 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.278314 39 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.278315 39 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.278315 39 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.278316 39 Options.row_cache: None +2025/05/26-19:13:17.278316 39 Options.wal_filter: None +2025/05/26-19:13:17.278317 39 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.278318 39 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.278318 39 Options.two_write_queues: 0 +2025/05/26-19:13:17.278319 39 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.278319 39 Options.wal_compression: 0 +2025/05/26-19:13:17.278320 39 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.278321 39 Options.atomic_flush: 0 +2025/05/26-19:13:17.278322 39 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.278322 39 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.278323 39 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.278324 39 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.278324 39 Options.write_identity_file: 1 +2025/05/26-19:13:17.278325 39 Options.log_readahead_size: 0 +2025/05/26-19:13:17.278325 39 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.278328 39 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.278328 39 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.278329 39 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.278330 39 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.278330 39 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.278331 39 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.278331 39 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.278332 39 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.278333 39 Options.max_background_jobs: 2 +2025/05/26-19:13:17.278333 39 Options.max_background_compactions: -1 +2025/05/26-19:13:17.278334 39 Options.max_subcompactions: 1 +2025/05/26-19:13:17.278334 39 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.278335 39 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.278335 39 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.278336 39 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.278337 39 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.278337 39 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.278338 39 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.278338 39 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.278341 39 Options.max_open_files: 256 +2025/05/26-19:13:17.278342 39 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.278343 39 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.278344 39 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.278345 39 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.278345 39 Options.max_background_flushes: -1 +2025/05/26-19:13:17.278346 39 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.278347 39 Compression algorithms supported: +2025/05/26-19:13:17.278347 39 kZSTD supported: 0 +2025/05/26-19:13:17.278348 39 kXpressCompression supported: 0 +2025/05/26-19:13:17.278350 39 kBZip2Compression supported: 0 +2025/05/26-19:13:17.278350 39 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.278351 39 kLZ4Compression supported: 1 +2025/05/26-19:13:17.278352 39 kZlibCompression supported: 0 +2025/05/26-19:13:17.278352 39 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.278353 39 kSnappyCompression supported: 1 +2025/05/26-19:13:17.278354 39 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.278355 39 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.278355 39 Jemalloc supported: 0 +2025/05/26-19:13:17.279877 39 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.279879 39 Options.merge_operator: None +2025/05/26-19:13:17.279880 39 Options.compaction_filter: None +2025/05/26-19:13:17.279880 39 Options.compaction_filter_factory: None +2025/05/26-19:13:17.279881 39 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.279881 39 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.279882 39 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.279893 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68732c60) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff8400a150 + block_cache: 0xffff6860a150 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,93 +155,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.801200 40 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.801201 40 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.801202 40 Options.compression: LZ4 -2025/05/04-10:09:55.801203 40 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.801203 40 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.801204 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.801205 40 Options.num_levels: 7 -2025/05/04-10:09:55.801205 40 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.801206 40 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.801206 40 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.801207 40 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.801208 40 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.801209 40 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.801209 40 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.801210 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.801210 40 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.801211 40 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.801212 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.801212 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.801213 40 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.801213 40 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.801214 40 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.801215 40 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.801216 40 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.801216 40 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.801217 40 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.801217 40 Options.compression_opts.enabled: false -2025/05/04-10:09:55.801218 40 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.801218 40 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.801219 40 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.801219 40 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.801220 40 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.801221 40 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.801222 40 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.801222 40 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.801225 40 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.801226 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.801227 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.801227 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.801228 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.801234 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.801234 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.801235 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.801236 40 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.801236 40 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.801237 40 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.801237 40 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.801238 40 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.801239 40 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.801240 40 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.801241 40 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.801243 40 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.801243 40 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.801244 40 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.801245 40 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.801245 40 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.801248 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.801248 40 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.801249 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.801249 40 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.801251 40 Options.table_properties_collectors: -2025/05/04-10:09:55.801252 40 Options.inplace_update_support: 0 -2025/05/04-10:09:55.801252 40 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.801253 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.801254 40 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.801254 40 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.801255 40 Options.bloom_locality: 0 -2025/05/04-10:09:55.801255 40 Options.max_successive_merges: 0 -2025/05/04-10:09:55.801256 40 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.801256 40 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.801257 40 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.801258 40 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.801258 40 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.801259 40 Options.ttl: 2592000 -2025/05/04-10:09:55.801259 40 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.801260 40 Options.default_temperature: kUnknown -2025/05/04-10:09:55.801261 40 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.801261 40 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.801262 40 Options.enable_blob_files: false -2025/05/04-10:09:55.801264 40 Options.min_blob_size: 0 -2025/05/04-10:09:55.801265 40 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.801266 40 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.801267 40 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.801268 40 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.801268 40 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.801269 40 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.801270 40 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.801270 40 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.801271 40 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.813376 40 DB pointer 0xffff84062000 +2025/05/26-19:13:17.279899 39 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.279899 39 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.279900 39 Options.compression: LZ4 +2025/05/26-19:13:17.279901 39 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.279901 39 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.279902 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.279904 39 Options.num_levels: 7 +2025/05/26-19:13:17.279905 39 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.279905 39 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.279906 39 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.279906 39 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.279907 39 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.279908 39 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.279908 39 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.279910 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.279911 39 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.279914 39 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.279915 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.279916 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.279917 39 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.279917 39 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.279921 39 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.279922 39 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.279923 39 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.279923 39 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.279924 39 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.279924 39 Options.compression_opts.enabled: false +2025/05/26-19:13:17.279925 39 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.279925 39 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.279926 39 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.279927 39 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.279927 39 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.279929 39 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.279930 39 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.279931 39 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.279932 39 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.279933 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.279935 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.279935 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.279936 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.279936 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.279937 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.279938 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.279938 39 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.279939 39 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.279939 39 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.279940 39 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.279940 39 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.279941 39 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.279942 39 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.279942 39 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.279943 39 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.279944 39 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.279946 39 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.279947 39 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.279947 39 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.279948 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.279949 39 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.279949 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.279950 39 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.279951 39 Options.table_properties_collectors: +2025/05/26-19:13:17.279951 39 Options.inplace_update_support: 0 +2025/05/26-19:13:17.279952 39 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.279953 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.279953 39 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.279954 39 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.279964 39 Options.bloom_locality: 0 +2025/05/26-19:13:17.279966 39 Options.max_successive_merges: 0 +2025/05/26-19:13:17.279966 39 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.279967 39 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.279968 39 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.279968 39 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.279969 39 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.279969 39 Options.ttl: 2592000 +2025/05/26-19:13:17.279970 39 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.279971 39 Options.default_temperature: kUnknown +2025/05/26-19:13:17.279971 39 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.279972 39 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.279972 39 Options.enable_blob_files: false +2025/05/26-19:13:17.279973 39 Options.min_blob_size: 0 +2025/05/26-19:13:17.279974 39 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.279974 39 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.279975 39 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.279976 39 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.279977 39 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.279979 39 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.279979 39 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.279980 39 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.279980 39 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.292588 39 DB pointer 0xffff68662000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/MANIFEST-000013 deleted file mode 100644 index 0c8140e76b2c025af16cadac10b2540239f606a4..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/MANIFEST-000013 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/OPTIONS-000011 deleted file mode 100644 index 1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/OPTIONS-000011 +++ /dev/null @@ -1,214 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000027.log b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000027.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/CURRENT index 5d0fffb388756bcfd7a9678d1870ed253ccc5176..259cf53c506615b137cc1005f84befa702518395 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/CURRENT @@ -1 +1 @@ -MANIFEST-000028 +MANIFEST-000032 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/LOG index 5f81dbabdd9b4df8e5560fe1b1faecd949b05fed..168e5a8f72e0984937fb8ffdc17729bb5e3a69d8 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.610821 43 RocksDB version: 9.9.3 -2025/05/04-10:09:55.611107 43 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.611108 43 DB SUMMARY -2025/05/04-10:09:55.611109 43 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.611109 43 DB Session ID: CD0SHR3DDC5AMRBDXMDL -2025/05/04-10:09:55.612385 43 CURRENT file: CURRENT -2025/05/04-10:09:55.612386 43 IDENTITY file: IDENTITY -2025/05/04-10:09:55.612474 43 MANIFEST file: MANIFEST-000024 size: 899 Bytes -2025/05/04-10:09:55.612487 43 SST files in ./storage/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222 dir, Total Num: 3, files: 000009.sst 000018.sst 000020.sst -2025/05/04-10:09:55.612490 43 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222: 000023.log size: 0 ; -2025/05/04-10:09:55.612493 43 Options.error_if_exists: 0 -2025/05/04-10:09:55.612495 43 Options.create_if_missing: 1 -2025/05/04-10:09:55.612498 43 Options.paranoid_checks: 1 -2025/05/04-10:09:55.612499 43 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.612500 43 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.612503 43 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.612504 43 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.612517 43 Options.env: 0xffff86034000 -2025/05/04-10:09:55.612520 43 Options.fs: PosixFileSystem -2025/05/04-10:09:55.612521 43 Options.info_log: 0xffff9abfd000 -2025/05/04-10:09:55.612522 43 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.612523 43 Options.statistics: (nil) -2025/05/04-10:09:55.612523 43 Options.use_fsync: 0 -2025/05/04-10:09:55.612524 43 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.612524 43 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.612525 43 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.612525 43 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.612526 43 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.612527 43 Options.allow_fallocate: 1 -2025/05/04-10:09:55.612528 43 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.612531 43 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.612532 43 Options.use_direct_reads: 0 -2025/05/04-10:09:55.612532 43 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.612533 43 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.612534 43 Options.db_log_dir: -2025/05/04-10:09:55.612534 43 Options.wal_dir: -2025/05/04-10:09:55.612536 43 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.612536 43 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.612537 43 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.612538 43 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.612538 43 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.612539 43 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.612539 43 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.612540 43 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.612540 43 Options.write_buffer_manager: 0xffff9bc36640 -2025/05/04-10:09:55.612541 43 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.612541 43 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.612542 43 Options.rate_limiter: (nil) -2025/05/04-10:09:55.612542 43 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.612543 43 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.612545 43 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.612546 43 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.612547 43 Options.unordered_write: 0 -2025/05/04-10:09:55.612548 43 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.612548 43 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.612549 43 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.612550 43 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.612550 43 Options.row_cache: None -2025/05/04-10:09:55.612551 43 Options.wal_filter: None -2025/05/04-10:09:55.612552 43 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.612552 43 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.612553 43 Options.two_write_queues: 0 -2025/05/04-10:09:55.612553 43 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.612554 43 Options.wal_compression: 0 -2025/05/04-10:09:55.612554 43 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.612555 43 Options.atomic_flush: 0 -2025/05/04-10:09:55.612555 43 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.612556 43 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.612556 43 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.612557 43 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.612558 43 Options.write_identity_file: 1 -2025/05/04-10:09:55.612558 43 Options.log_readahead_size: 0 -2025/05/04-10:09:55.612559 43 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.612561 43 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.612561 43 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.612562 43 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.612563 43 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.612563 43 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.612564 43 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.612564 43 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.612565 43 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.612566 43 Options.max_background_jobs: 2 -2025/05/04-10:09:55.612566 43 Options.max_background_compactions: -1 -2025/05/04-10:09:55.612567 43 Options.max_subcompactions: 1 -2025/05/04-10:09:55.612567 43 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.612568 43 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.612568 43 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.612569 43 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.612569 43 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.612570 43 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.612570 43 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.612571 43 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.612571 43 Options.max_open_files: 256 -2025/05/04-10:09:55.612572 43 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.612573 43 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.612573 43 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.612574 43 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.612574 43 Options.max_background_flushes: -1 -2025/05/04-10:09:55.612575 43 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.612575 43 Compression algorithms supported: -2025/05/04-10:09:55.612576 43 kZSTD supported: 0 -2025/05/04-10:09:55.612576 43 kXpressCompression supported: 0 -2025/05/04-10:09:55.612579 43 kBZip2Compression supported: 0 -2025/05/04-10:09:55.612579 43 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.612580 43 kLZ4Compression supported: 1 -2025/05/04-10:09:55.612580 43 kZlibCompression supported: 0 -2025/05/04-10:09:55.612581 43 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.612582 43 kSnappyCompression supported: 1 -2025/05/04-10:09:55.612582 43 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.612583 43 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.612584 43 Jemalloc supported: 0 -2025/05/04-10:09:55.631546 43 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.631548 43 Options.merge_operator: None -2025/05/04-10:09:55.631550 43 Options.compaction_filter: None -2025/05/04-10:09:55.631552 43 Options.compaction_filter_factory: None -2025/05/04-10:09:55.631552 43 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.631553 43 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.631554 43 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.631568 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff9bca9700) +2025/05/26-19:13:17.061859 42 RocksDB version: 9.9.3 +2025/05/26-19:13:17.064847 42 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.064848 42 DB SUMMARY +2025/05/26-19:13:17.064850 42 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.064850 42 DB Session ID: PCRZT7AMVX68CX0XDWTY +2025/05/26-19:13:17.066368 42 CURRENT file: CURRENT +2025/05/26-19:13:17.066369 42 IDENTITY file: IDENTITY +2025/05/26-19:13:17.066653 42 MANIFEST file: MANIFEST-000028 size: 899 Bytes +2025/05/26-19:13:17.066655 42 SST files in ./storage/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222 dir, Total Num: 3, files: 000009.sst 000018.sst 000020.sst +2025/05/26-19:13:17.066656 42 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222: 000027.log size: 0 ; +2025/05/26-19:13:17.066656 42 Options.error_if_exists: 0 +2025/05/26-19:13:17.066657 42 Options.create_if_missing: 1 +2025/05/26-19:13:17.066658 42 Options.paranoid_checks: 1 +2025/05/26-19:13:17.066658 42 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.066659 42 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.066660 42 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.066660 42 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.066661 42 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.066662 42 Options.fs: PosixFileSystem +2025/05/26-19:13:17.066662 42 Options.info_log: 0xffff7dde5000 +2025/05/26-19:13:17.066663 42 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.066663 42 Options.statistics: (nil) +2025/05/26-19:13:17.066664 42 Options.use_fsync: 0 +2025/05/26-19:13:17.066664 42 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.066665 42 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.066666 42 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.066666 42 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.066667 42 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.066667 42 Options.allow_fallocate: 1 +2025/05/26-19:13:17.066669 42 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.066670 42 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.066671 42 Options.use_direct_reads: 0 +2025/05/26-19:13:17.066671 42 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.066672 42 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.066673 42 Options.db_log_dir: +2025/05/26-19:13:17.066673 42 Options.wal_dir: +2025/05/26-19:13:17.066674 42 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.066675 42 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.066675 42 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.066676 42 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.066677 42 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.066677 42 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.066678 42 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.066678 42 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.066679 42 Options.write_buffer_manager: 0xffff7ee36640 +2025/05/26-19:13:17.066679 42 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.066680 42 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.066681 42 Options.rate_limiter: (nil) +2025/05/26-19:13:17.066681 42 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.066682 42 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.066682 42 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.066683 42 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.066684 42 Options.unordered_write: 0 +2025/05/26-19:13:17.066685 42 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.066686 42 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.066686 42 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.066687 42 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.066687 42 Options.row_cache: None +2025/05/26-19:13:17.066688 42 Options.wal_filter: None +2025/05/26-19:13:17.066689 42 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.066695 42 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.066696 42 Options.two_write_queues: 0 +2025/05/26-19:13:17.066697 42 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.066698 42 Options.wal_compression: 0 +2025/05/26-19:13:17.066698 42 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.066699 42 Options.atomic_flush: 0 +2025/05/26-19:13:17.066700 42 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.066700 42 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.066701 42 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.066702 42 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.066702 42 Options.write_identity_file: 1 +2025/05/26-19:13:17.066703 42 Options.log_readahead_size: 0 +2025/05/26-19:13:17.066703 42 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.066704 42 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.066705 42 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.066705 42 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.066706 42 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.066706 42 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.066707 42 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.066708 42 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.066708 42 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.066709 42 Options.max_background_jobs: 2 +2025/05/26-19:13:17.066710 42 Options.max_background_compactions: -1 +2025/05/26-19:13:17.066710 42 Options.max_subcompactions: 1 +2025/05/26-19:13:17.066711 42 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.066711 42 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.066712 42 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.066713 42 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.066713 42 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.066714 42 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.066714 42 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.066715 42 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.066715 42 Options.max_open_files: 256 +2025/05/26-19:13:17.066716 42 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.066716 42 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.066717 42 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.066717 42 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.066718 42 Options.max_background_flushes: -1 +2025/05/26-19:13:17.066718 42 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.066719 42 Compression algorithms supported: +2025/05/26-19:13:17.066720 42 kZSTD supported: 0 +2025/05/26-19:13:17.066720 42 kXpressCompression supported: 0 +2025/05/26-19:13:17.066721 42 kBZip2Compression supported: 0 +2025/05/26-19:13:17.066721 42 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.066722 42 kLZ4Compression supported: 1 +2025/05/26-19:13:17.066723 42 kZlibCompression supported: 0 +2025/05/26-19:13:17.066723 42 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.066724 42 kSnappyCompression supported: 1 +2025/05/26-19:13:17.066724 42 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.066725 42 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.066726 42 Jemalloc supported: 0 +2025/05/26-19:13:17.071777 42 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.071780 42 Options.merge_operator: None +2025/05/26-19:13:17.071781 42 Options.compaction_filter: None +2025/05/26-19:13:17.071781 42 Options.compaction_filter_factory: None +2025/05/26-19:13:17.071782 42 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.071782 42 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.071783 42 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.071796 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff7eea9780) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff9bc36590 + block_cache: 0xffff7ee36590 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,103 +155,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.631571 43 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.631572 43 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.631573 43 Options.compression: LZ4 -2025/05/04-10:09:55.631574 43 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.631575 43 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.631575 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.631576 43 Options.num_levels: 7 -2025/05/04-10:09:55.631576 43 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.631577 43 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.631578 43 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.631578 43 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.631579 43 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.631580 43 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.631580 43 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.631581 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.631582 43 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.631582 43 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.631583 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.631583 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.631584 43 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.631585 43 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.631587 43 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.631587 43 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.631588 43 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.631588 43 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.631589 43 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.631589 43 Options.compression_opts.enabled: false -2025/05/04-10:09:55.631590 43 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.631590 43 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.631591 43 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.631591 43 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.631592 43 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.631593 43 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.631595 43 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.631596 43 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.631597 43 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.631598 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.631598 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.631599 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.631599 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.631600 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.631601 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.631602 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.631603 43 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.631604 43 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.631604 43 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.631605 43 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.631606 43 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.631606 43 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.631607 43 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.631607 43 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.631609 43 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.631610 43 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.631611 43 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.631611 43 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.631612 43 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.631614 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.631615 43 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.631616 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.631616 43 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.631617 43 Options.table_properties_collectors: -2025/05/04-10:09:55.631618 43 Options.inplace_update_support: 0 -2025/05/04-10:09:55.631618 43 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.631619 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.631627 43 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.631734 43 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.631741 43 Options.bloom_locality: 0 -2025/05/04-10:09:55.631742 43 Options.max_successive_merges: 0 -2025/05/04-10:09:55.631746 43 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.631748 43 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.631749 43 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.631750 43 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.631751 43 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.631752 43 Options.ttl: 2592000 -2025/05/04-10:09:55.631753 43 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.631755 43 Options.default_temperature: kUnknown -2025/05/04-10:09:55.631756 43 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.631757 43 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.631759 43 Options.enable_blob_files: false -2025/05/04-10:09:55.631760 43 Options.min_blob_size: 0 -2025/05/04-10:09:55.631762 43 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.631764 43 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.631765 43 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.631781 43 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.631783 43 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.631784 43 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.631785 43 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.631785 43 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.631786 43 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.634855 43 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.634858 43 Options.merge_operator: None -2025/05/04-10:09:55.634858 43 Options.compaction_filter: None -2025/05/04-10:09:55.634859 43 Options.compaction_filter_factory: None -2025/05/04-10:09:55.634872 43 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.634874 43 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.634874 43 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.634906 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff9bca9700) +2025/05/26-19:13:17.071798 42 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.071799 42 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.071800 42 Options.compression: LZ4 +2025/05/26-19:13:17.071800 42 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.071801 42 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.071801 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.071802 42 Options.num_levels: 7 +2025/05/26-19:13:17.071803 42 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.071803 42 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.071804 42 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.071804 42 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.071805 42 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.071805 42 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.071806 42 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071806 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071807 42 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071808 42 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.071808 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071809 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071809 42 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.071810 42 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.071811 42 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.071811 42 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071812 42 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071812 42 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071813 42 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071814 42 Options.compression_opts.enabled: false +2025/05/26-19:13:17.071814 42 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071815 42 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.071815 42 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.071816 42 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.071816 42 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.071817 42 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.071817 42 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.071818 42 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.071819 42 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.071819 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.071820 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.071820 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.071823 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.071823 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.071824 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.071825 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.071825 42 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.071826 42 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.071826 42 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.071827 42 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.071828 42 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.071828 42 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.071829 42 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.071829 42 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.071830 42 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.071830 42 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.071831 42 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.071832 42 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.071832 42 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.071833 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.071833 42 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.071834 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.071834 42 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.071835 42 Options.table_properties_collectors: +2025/05/26-19:13:17.071836 42 Options.inplace_update_support: 0 +2025/05/26-19:13:17.071836 42 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.071837 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.071838 42 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.071838 42 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.071839 42 Options.bloom_locality: 0 +2025/05/26-19:13:17.071839 42 Options.max_successive_merges: 0 +2025/05/26-19:13:17.071843 42 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.071844 42 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.071844 42 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.071845 42 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.071845 42 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.071846 42 Options.ttl: 2592000 +2025/05/26-19:13:17.071847 42 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.071848 42 Options.default_temperature: kUnknown +2025/05/26-19:13:17.071850 42 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.071851 42 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.071851 42 Options.enable_blob_files: false +2025/05/26-19:13:17.071852 42 Options.min_blob_size: 0 +2025/05/26-19:13:17.071852 42 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.071853 42 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.071854 42 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.071854 42 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.071855 42 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.071855 42 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.071856 42 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.071857 42 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.071857 42 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.072474 42 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.072475 42 Options.merge_operator: None +2025/05/26-19:13:17.072476 42 Options.compaction_filter: None +2025/05/26-19:13:17.072476 42 Options.compaction_filter_factory: None +2025/05/26-19:13:17.072477 42 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.072478 42 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.072478 42 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.072486 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff7eea9780) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -262,7 +262,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff9bc36590 + block_cache: 0xffff7ee36590 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -290,103 +290,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.634909 43 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.634910 43 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.634911 43 Options.compression: LZ4 -2025/05/04-10:09:55.634912 43 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.634913 43 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.634913 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.634914 43 Options.num_levels: 7 -2025/05/04-10:09:55.634915 43 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.634919 43 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.634920 43 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.634921 43 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.634921 43 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.634922 43 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.634923 43 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.634924 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.634925 43 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.634926 43 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.634927 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.634928 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.634928 43 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.634929 43 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.634929 43 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.634930 43 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.634931 43 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.634931 43 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.634932 43 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.634934 43 Options.compression_opts.enabled: false -2025/05/04-10:09:55.634935 43 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.634936 43 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.634936 43 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.634937 43 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.634937 43 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.634938 43 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.634939 43 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.634939 43 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.634940 43 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.634941 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.634941 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.634942 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.634943 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.634943 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.634944 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.634944 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.634945 43 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.634945 43 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.634946 43 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.634947 43 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.634947 43 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.634948 43 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.634949 43 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.634950 43 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.634950 43 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.634951 43 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.634952 43 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.634953 43 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.634954 43 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.634955 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.634955 43 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.634956 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.634956 43 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.634959 43 Options.table_properties_collectors: -2025/05/04-10:09:55.634959 43 Options.inplace_update_support: 0 -2025/05/04-10:09:55.634960 43 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.634961 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.634961 43 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.634962 43 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.634963 43 Options.bloom_locality: 0 -2025/05/04-10:09:55.634963 43 Options.max_successive_merges: 0 -2025/05/04-10:09:55.634964 43 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.634964 43 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.634965 43 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.634966 43 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.634966 43 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.634967 43 Options.ttl: 2592000 -2025/05/04-10:09:55.634968 43 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.634968 43 Options.default_temperature: kUnknown -2025/05/04-10:09:55.634969 43 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.634970 43 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.634970 43 Options.enable_blob_files: false -2025/05/04-10:09:55.634971 43 Options.min_blob_size: 0 -2025/05/04-10:09:55.634971 43 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.634972 43 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.634973 43 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.634974 43 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.634974 43 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.634975 43 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.634976 43 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.634976 43 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.634977 43 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.635009 43 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.635010 43 Options.merge_operator: None -2025/05/04-10:09:55.635011 43 Options.compaction_filter: None -2025/05/04-10:09:55.635013 43 Options.compaction_filter_factory: None -2025/05/04-10:09:55.635014 43 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.635015 43 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.635015 43 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.635022 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff9bca9700) +2025/05/26-19:13:17.072488 42 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.072489 42 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.072490 42 Options.compression: LZ4 +2025/05/26-19:13:17.072490 42 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.072491 42 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.072491 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.072492 42 Options.num_levels: 7 +2025/05/26-19:13:17.072492 42 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.072494 42 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.072494 42 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.072495 42 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.072496 42 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.072531 42 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.072533 42 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.072534 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.072600 42 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.072602 42 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.072603 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.072603 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.072604 42 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.072605 42 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.072607 42 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.072607 42 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.072608 42 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.072608 42 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.072609 42 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.072615 42 Options.compression_opts.enabled: false +2025/05/26-19:13:17.072615 42 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.072616 42 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.072617 42 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.072617 42 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.072618 42 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.072618 42 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.072619 42 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.072619 42 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.072620 42 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.072621 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.072622 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.072624 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.072624 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.072625 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.072626 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.072626 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.072627 42 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.072627 42 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.072628 42 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.072628 42 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.072629 42 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.072629 42 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.072630 42 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.072631 42 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.072632 42 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.072632 42 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.072633 42 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.072633 42 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.072636 42 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.072637 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.072638 42 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.072638 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.072639 42 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.072640 42 Options.table_properties_collectors: +2025/05/26-19:13:17.072640 42 Options.inplace_update_support: 0 +2025/05/26-19:13:17.072641 42 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.072641 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.072642 42 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.072706 42 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.072709 42 Options.bloom_locality: 0 +2025/05/26-19:13:17.072709 42 Options.max_successive_merges: 0 +2025/05/26-19:13:17.072710 42 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.072710 42 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.072711 42 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.072711 42 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.072712 42 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.072713 42 Options.ttl: 2592000 +2025/05/26-19:13:17.072713 42 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.072715 42 Options.default_temperature: kUnknown +2025/05/26-19:13:17.072716 42 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.072717 42 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.072717 42 Options.enable_blob_files: false +2025/05/26-19:13:17.072718 42 Options.min_blob_size: 0 +2025/05/26-19:13:17.072718 42 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.072719 42 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.072719 42 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.072720 42 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.072721 42 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.072721 42 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.072722 42 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.072723 42 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.072723 42 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.072831 42 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.072832 42 Options.merge_operator: None +2025/05/26-19:13:17.072833 42 Options.compaction_filter: None +2025/05/26-19:13:17.072834 42 Options.compaction_filter_factory: None +2025/05/26-19:13:17.072836 42 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.072903 42 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.072904 42 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.072911 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff7eea9780) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -397,7 +397,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff9bc36590 + block_cache: 0xffff7ee36590 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -425,103 +425,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.635025 43 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.635025 43 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.635026 43 Options.compression: LZ4 -2025/05/04-10:09:55.635027 43 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.635027 43 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.635029 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.635029 43 Options.num_levels: 7 -2025/05/04-10:09:55.635030 43 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.635030 43 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.635031 43 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.635031 43 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.635032 43 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.635033 43 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.635033 43 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.635034 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.635034 43 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.635035 43 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.635035 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.635036 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.635037 43 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.635037 43 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.635038 43 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.635038 43 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.635039 43 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.635039 43 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.635040 43 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.635040 43 Options.compression_opts.enabled: false -2025/05/04-10:09:55.635041 43 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.635041 43 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.635042 43 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.635043 43 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.635043 43 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.635044 43 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.635044 43 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.635045 43 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.635045 43 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.635046 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.635047 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.635047 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.635048 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.635048 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.635049 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.635050 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.635051 43 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.635051 43 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.635052 43 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.635052 43 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.635053 43 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.635054 43 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.635054 43 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.635055 43 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.635056 43 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.635056 43 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.635057 43 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.635057 43 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.635058 43 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.635058 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.635059 43 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.635060 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.635060 43 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.635061 43 Options.table_properties_collectors: -2025/05/04-10:09:55.635062 43 Options.inplace_update_support: 0 -2025/05/04-10:09:55.635063 43 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.635064 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.635064 43 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.635065 43 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.635066 43 Options.bloom_locality: 0 -2025/05/04-10:09:55.635066 43 Options.max_successive_merges: 0 -2025/05/04-10:09:55.635067 43 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.635068 43 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.635068 43 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.635069 43 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.635069 43 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.635070 43 Options.ttl: 2592000 -2025/05/04-10:09:55.635070 43 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.635071 43 Options.default_temperature: kUnknown -2025/05/04-10:09:55.635071 43 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.635072 43 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.635072 43 Options.enable_blob_files: false -2025/05/04-10:09:55.635073 43 Options.min_blob_size: 0 -2025/05/04-10:09:55.635073 43 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.635074 43 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.635075 43 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.635075 43 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.635076 43 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.635076 43 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.635077 43 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.635077 43 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.635078 43 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.635098 43 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.635101 43 Options.merge_operator: None -2025/05/04-10:09:55.635102 43 Options.compaction_filter: None -2025/05/04-10:09:55.635102 43 Options.compaction_filter_factory: None -2025/05/04-10:09:55.635103 43 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.635104 43 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.635105 43 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.635112 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff9bca9700) +2025/05/26-19:13:17.072914 42 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.072915 42 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.072916 42 Options.compression: LZ4 +2025/05/26-19:13:17.072916 42 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.072917 42 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.072919 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.072921 42 Options.num_levels: 7 +2025/05/26-19:13:17.072922 42 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.072922 42 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.072923 42 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.072925 42 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.072926 42 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.073006 42 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.073009 42 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.073011 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.073012 42 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.073012 42 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.073013 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.073014 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.073016 42 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.073017 42 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.073017 42 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.073018 42 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.073018 42 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.073019 42 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.073019 42 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.073020 42 Options.compression_opts.enabled: false +2025/05/26-19:13:17.073020 42 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.073021 42 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.073022 42 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.073022 42 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.073023 42 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.073023 42 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.073026 42 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.073027 42 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.073028 42 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.073029 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.073029 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.073030 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.073030 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.073031 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.073032 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.073033 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.073034 42 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.073034 42 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.073035 42 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.073035 42 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.073036 42 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.073037 42 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.073037 42 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.073038 42 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.073038 42 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.073039 42 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.073040 42 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.073040 42 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.073041 42 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.073041 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.073042 42 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.073042 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.073043 42 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.073044 42 Options.table_properties_collectors: +2025/05/26-19:13:17.073045 42 Options.inplace_update_support: 0 +2025/05/26-19:13:17.073046 42 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.073046 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.073047 42 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.073052 42 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.073053 42 Options.bloom_locality: 0 +2025/05/26-19:13:17.073053 42 Options.max_successive_merges: 0 +2025/05/26-19:13:17.073054 42 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.073054 42 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.073055 42 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.073055 42 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.073056 42 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.073056 42 Options.ttl: 2592000 +2025/05/26-19:13:17.073057 42 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.073058 42 Options.default_temperature: kUnknown +2025/05/26-19:13:17.073058 42 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.073059 42 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.073059 42 Options.enable_blob_files: false +2025/05/26-19:13:17.073060 42 Options.min_blob_size: 0 +2025/05/26-19:13:17.073060 42 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.073061 42 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.073061 42 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.073062 42 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.073063 42 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.073063 42 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.073064 42 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.073066 42 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.073066 42 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.073210 42 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.073213 42 Options.merge_operator: None +2025/05/26-19:13:17.073213 42 Options.compaction_filter: None +2025/05/26-19:13:17.073214 42 Options.compaction_filter_factory: None +2025/05/26-19:13:17.073216 42 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.073217 42 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.073217 42 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.073223 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff7eea9780) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -532,7 +532,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff9bc36590 + block_cache: 0xffff7ee36590 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -560,103 +560,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.635113 43 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.635114 43 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.635114 43 Options.compression: LZ4 -2025/05/04-10:09:55.635115 43 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.635116 43 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.635118 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.635118 43 Options.num_levels: 7 -2025/05/04-10:09:55.635119 43 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.635121 43 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.635122 43 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.635122 43 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.635123 43 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.635124 43 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.635124 43 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.635125 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.635125 43 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.635126 43 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.635127 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.635129 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.635130 43 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.635130 43 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.635131 43 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.635131 43 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.635132 43 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.635132 43 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.635133 43 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.635134 43 Options.compression_opts.enabled: false -2025/05/04-10:09:55.635134 43 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.635135 43 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.635137 43 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.635137 43 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.635138 43 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.635138 43 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.635139 43 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.635140 43 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.635140 43 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.635141 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.635142 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.635142 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.635143 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.635143 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.635144 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.635145 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.635146 43 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.635146 43 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.635147 43 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.635147 43 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.635148 43 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.635149 43 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.635149 43 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.635150 43 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.635150 43 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.635151 43 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.635152 43 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.635152 43 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.635153 43 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.635153 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.635154 43 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.635154 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.635155 43 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.635156 43 Options.table_properties_collectors: -2025/05/04-10:09:55.635156 43 Options.inplace_update_support: 0 -2025/05/04-10:09:55.635157 43 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.635157 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.635158 43 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.635159 43 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.635159 43 Options.bloom_locality: 0 -2025/05/04-10:09:55.635160 43 Options.max_successive_merges: 0 -2025/05/04-10:09:55.635160 43 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.635161 43 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.635161 43 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.635163 43 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.635164 43 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.635165 43 Options.ttl: 2592000 -2025/05/04-10:09:55.635167 43 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.635169 43 Options.default_temperature: kUnknown -2025/05/04-10:09:55.635172 43 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.635173 43 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.635174 43 Options.enable_blob_files: false -2025/05/04-10:09:55.635174 43 Options.min_blob_size: 0 -2025/05/04-10:09:55.635175 43 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.635175 43 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.635176 43 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.635177 43 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.635177 43 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.635178 43 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.635178 43 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.635179 43 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.635179 43 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.635203 43 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.635204 43 Options.merge_operator: None -2025/05/04-10:09:55.635206 43 Options.compaction_filter: None -2025/05/04-10:09:55.635207 43 Options.compaction_filter_factory: None -2025/05/04-10:09:55.635208 43 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.635208 43 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.635209 43 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.635215 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff9bca9700) +2025/05/26-19:13:17.073224 42 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.073224 42 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.073225 42 Options.compression: LZ4 +2025/05/26-19:13:17.073226 42 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.073226 42 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.073227 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.073227 42 Options.num_levels: 7 +2025/05/26-19:13:17.073228 42 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.073228 42 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.073229 42 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.073229 42 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.073230 42 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.073231 42 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.073231 42 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.073232 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.073232 42 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.073233 42 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.073233 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.073234 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.073234 42 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.073236 42 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.073237 42 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.073237 42 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.073238 42 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.073239 42 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.073239 42 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.073240 42 Options.compression_opts.enabled: false +2025/05/26-19:13:17.073240 42 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.073241 42 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.073243 42 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.073244 42 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.073244 42 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.073246 42 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.073247 42 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.073247 42 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.073248 42 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.073249 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.073250 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.073251 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.073252 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.073253 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.073254 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.073255 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.073255 42 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.073256 42 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.073256 42 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.073257 42 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.073258 42 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.073258 42 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.073259 42 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.073259 42 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.073260 42 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.073261 42 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.073261 42 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.073262 42 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.073262 42 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.073263 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.073263 42 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.073264 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.073265 42 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.073266 42 Options.table_properties_collectors: +2025/05/26-19:13:17.073266 42 Options.inplace_update_support: 0 +2025/05/26-19:13:17.073267 42 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.073269 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.073269 42 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.073270 42 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.073271 42 Options.bloom_locality: 0 +2025/05/26-19:13:17.073271 42 Options.max_successive_merges: 0 +2025/05/26-19:13:17.073272 42 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.073272 42 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.073273 42 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.073274 42 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.073274 42 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.073296 42 Options.ttl: 2592000 +2025/05/26-19:13:17.073297 42 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.073298 42 Options.default_temperature: kUnknown +2025/05/26-19:13:17.073303 42 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.073304 42 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.073304 42 Options.enable_blob_files: false +2025/05/26-19:13:17.073305 42 Options.min_blob_size: 0 +2025/05/26-19:13:17.073305 42 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.073306 42 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.073307 42 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.073307 42 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.073308 42 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.073308 42 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.073309 42 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.073310 42 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.073311 42 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.073331 42 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.073332 42 Options.merge_operator: None +2025/05/26-19:13:17.073333 42 Options.compaction_filter: None +2025/05/26-19:13:17.073333 42 Options.compaction_filter_factory: None +2025/05/26-19:13:17.073334 42 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.073335 42 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.073335 42 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.073340 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff7eea9780) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -667,7 +667,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff9bc36590 + block_cache: 0xffff7ee36590 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -695,93 +695,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.635217 43 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.635218 43 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.635219 43 Options.compression: LZ4 -2025/05/04-10:09:55.635219 43 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.635220 43 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.635220 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.635221 43 Options.num_levels: 7 -2025/05/04-10:09:55.635221 43 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.635222 43 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.635222 43 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.635223 43 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.635224 43 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.635224 43 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.635225 43 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.635225 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.635227 43 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.635229 43 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.635230 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.635231 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.635231 43 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.635232 43 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.635232 43 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.635233 43 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.635234 43 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.635234 43 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.635235 43 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.635235 43 Options.compression_opts.enabled: false -2025/05/04-10:09:55.635236 43 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.635237 43 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.635237 43 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.635238 43 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.635238 43 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.635239 43 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.635239 43 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.635240 43 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.635242 43 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.635243 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.635244 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.635244 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.635245 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.635245 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.635246 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.635246 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.635247 43 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.635247 43 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.635248 43 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.635249 43 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.635249 43 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.635250 43 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.635252 43 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.635253 43 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.635253 43 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.635254 43 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.635254 43 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.635255 43 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.635256 43 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.635256 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.635257 43 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.635257 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.635258 43 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.635259 43 Options.table_properties_collectors: -2025/05/04-10:09:55.635259 43 Options.inplace_update_support: 0 -2025/05/04-10:09:55.635260 43 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.635262 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.635262 43 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.635263 43 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.635263 43 Options.bloom_locality: 0 -2025/05/04-10:09:55.635264 43 Options.max_successive_merges: 0 -2025/05/04-10:09:55.635264 43 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.635265 43 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.635265 43 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.635266 43 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.635267 43 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.635267 43 Options.ttl: 2592000 -2025/05/04-10:09:55.635268 43 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.635268 43 Options.default_temperature: kUnknown -2025/05/04-10:09:55.635269 43 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.635269 43 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.635270 43 Options.enable_blob_files: false -2025/05/04-10:09:55.635270 43 Options.min_blob_size: 0 -2025/05/04-10:09:55.635271 43 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.635271 43 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.635272 43 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.635272 43 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.635273 43 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.635274 43 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.635274 43 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.635275 43 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.635276 43 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.669042 43 DB pointer 0xffff9aabb400 +2025/05/26-19:13:17.073341 42 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.073342 42 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.073343 42 Options.compression: LZ4 +2025/05/26-19:13:17.073343 42 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.073344 42 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.073344 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.073345 42 Options.num_levels: 7 +2025/05/26-19:13:17.073345 42 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.073346 42 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.073346 42 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.073347 42 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.073347 42 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.073348 42 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.073348 42 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.073349 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.073351 42 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.073354 42 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.073355 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.073355 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.073356 42 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.073356 42 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.073357 42 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.073358 42 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.073358 42 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.073359 42 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.073361 42 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.073361 42 Options.compression_opts.enabled: false +2025/05/26-19:13:17.073362 42 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.073362 42 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.073363 42 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.073364 42 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.073366 42 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.073366 42 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.073367 42 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.073368 42 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.073369 42 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.073370 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.073371 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.073371 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.073372 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.073372 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.073375 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.073376 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.073376 42 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.073377 42 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.073377 42 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.073378 42 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.073379 42 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.073380 42 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.073380 42 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.073381 42 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.073381 42 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.073382 42 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.073382 42 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.073385 42 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.073386 42 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.073387 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.073387 42 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.073388 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.073388 42 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.073389 42 Options.table_properties_collectors: +2025/05/26-19:13:17.073390 42 Options.inplace_update_support: 0 +2025/05/26-19:13:17.073390 42 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.073392 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.073436 42 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.073437 42 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.073437 42 Options.bloom_locality: 0 +2025/05/26-19:13:17.073438 42 Options.max_successive_merges: 0 +2025/05/26-19:13:17.073438 42 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.073439 42 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.073439 42 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.073440 42 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.073440 42 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.073441 42 Options.ttl: 2592000 +2025/05/26-19:13:17.073443 42 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.073445 42 Options.default_temperature: kUnknown +2025/05/26-19:13:17.073445 42 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.073447 42 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.073447 42 Options.enable_blob_files: false +2025/05/26-19:13:17.073448 42 Options.min_blob_size: 0 +2025/05/26-19:13:17.073448 42 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.073449 42 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.073450 42 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.073450 42 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.073451 42 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.073452 42 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.073452 42 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.073453 42 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.073463 42 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.109391 42 DB pointer 0xffff7dca3400 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/MANIFEST-000028 b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/MANIFEST-000028 deleted file mode 100644 index 4a5b001b2b3f982af3d710930e02fed19f07165b..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/MANIFEST-000028 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/OPTIONS-000026 b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/OPTIONS-000026 deleted file mode 100644 index ad2b181add715408dc69839970eebfd4c1a28b4b..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/OPTIONS-000026 +++ /dev/null @@ -1,670 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "payload"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "payload"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "mapping"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "mapping"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "version"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "version"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "vector"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "vector"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/000012.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/CURRENT index 625d147412870471b19d90716ccc20a7f207a5c3..056df57bb7f73da12edea3c09d88bc3ff790ec7c 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/CURRENT @@ -1 +1 @@ -MANIFEST-000013 +MANIFEST-000017 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/LOG index c7ea8774483be37ee550d1168c62add2c67b1b0b..970b055443c940bded9c04587081890b44f451fd 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.816784 43 RocksDB version: 9.9.3 -2025/05/04-10:09:55.816871 43 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.816873 43 DB SUMMARY -2025/05/04-10:09:55.816874 43 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.816875 43 DB Session ID: CD0SHR3DDC5AMRBDXMDF -2025/05/04-10:09:55.817455 43 CURRENT file: CURRENT -2025/05/04-10:09:55.817456 43 IDENTITY file: IDENTITY -2025/05/04-10:09:55.817459 43 MANIFEST file: MANIFEST-000009 size: 159 Bytes -2025/05/04-10:09:55.817460 43 SST files in ./storage/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index dir, Total Num: 0, files: -2025/05/04-10:09:55.817461 43 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index: 000008.log size: 0 ; -2025/05/04-10:09:55.817462 43 Options.error_if_exists: 0 -2025/05/04-10:09:55.817463 43 Options.create_if_missing: 1 -2025/05/04-10:09:55.817464 43 Options.paranoid_checks: 1 -2025/05/04-10:09:55.817465 43 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.817465 43 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.817466 43 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.817467 43 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.817468 43 Options.env: 0xffff86034000 -2025/05/04-10:09:55.817468 43 Options.fs: PosixFileSystem -2025/05/04-10:09:55.817469 43 Options.info_log: 0xffff9abfe500 -2025/05/04-10:09:55.817470 43 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.817470 43 Options.statistics: (nil) -2025/05/04-10:09:55.817471 43 Options.use_fsync: 0 -2025/05/04-10:09:55.817471 43 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.817472 43 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.817473 43 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.817473 43 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.817474 43 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.817474 43 Options.allow_fallocate: 1 -2025/05/04-10:09:55.817475 43 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.817476 43 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.817476 43 Options.use_direct_reads: 0 -2025/05/04-10:09:55.817477 43 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.817477 43 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.817478 43 Options.db_log_dir: -2025/05/04-10:09:55.817478 43 Options.wal_dir: -2025/05/04-10:09:55.817479 43 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.817479 43 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.817480 43 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.817480 43 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.817481 43 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.817482 43 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.817485 43 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.817486 43 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.817486 43 Options.write_buffer_manager: 0xffff9ab73780 -2025/05/04-10:09:55.817487 43 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.817488 43 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.817489 43 Options.rate_limiter: (nil) -2025/05/04-10:09:55.817490 43 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.817490 43 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.817491 43 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.817491 43 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.817492 43 Options.unordered_write: 0 -2025/05/04-10:09:55.817492 43 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.817493 43 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.817493 43 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.817494 43 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.817495 43 Options.row_cache: None -2025/05/04-10:09:55.817495 43 Options.wal_filter: None -2025/05/04-10:09:55.817496 43 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.817496 43 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.817497 43 Options.two_write_queues: 0 -2025/05/04-10:09:55.817498 43 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.817498 43 Options.wal_compression: 0 -2025/05/04-10:09:55.817499 43 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.817500 43 Options.atomic_flush: 0 -2025/05/04-10:09:55.817500 43 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.817501 43 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.817502 43 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.817503 43 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.817503 43 Options.write_identity_file: 1 -2025/05/04-10:09:55.817504 43 Options.log_readahead_size: 0 -2025/05/04-10:09:55.817504 43 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.817506 43 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.817507 43 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.817508 43 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.817508 43 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.817509 43 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.817509 43 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.817510 43 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.817511 43 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.817511 43 Options.max_background_jobs: 2 -2025/05/04-10:09:55.817512 43 Options.max_background_compactions: -1 -2025/05/04-10:09:55.817513 43 Options.max_subcompactions: 1 -2025/05/04-10:09:55.817513 43 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.817514 43 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.817514 43 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.817515 43 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.817516 43 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.817516 43 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.817517 43 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.817518 43 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.817518 43 Options.max_open_files: 256 -2025/05/04-10:09:55.817519 43 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.817520 43 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.817520 43 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.817521 43 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.817521 43 Options.max_background_flushes: -1 -2025/05/04-10:09:55.817522 43 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.817522 43 Compression algorithms supported: -2025/05/04-10:09:55.817523 43 kZSTD supported: 0 -2025/05/04-10:09:55.817524 43 kXpressCompression supported: 0 -2025/05/04-10:09:55.817524 43 kBZip2Compression supported: 0 -2025/05/04-10:09:55.817525 43 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.817526 43 kLZ4Compression supported: 1 -2025/05/04-10:09:55.817526 43 kZlibCompression supported: 0 -2025/05/04-10:09:55.817527 43 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.817527 43 kSnappyCompression supported: 1 -2025/05/04-10:09:55.817528 43 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.817529 43 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.817529 43 Jemalloc supported: 0 -2025/05/04-10:09:55.818815 43 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.818816 43 Options.merge_operator: None -2025/05/04-10:09:55.818817 43 Options.compaction_filter: None -2025/05/04-10:09:55.818818 43 Options.compaction_filter_factory: None -2025/05/04-10:09:55.818818 43 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.818819 43 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.818820 43 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.818858 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff9bda9ce0) +2025/05/26-19:13:17.277584 42 RocksDB version: 9.9.3 +2025/05/26-19:13:17.277687 42 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.277688 42 DB SUMMARY +2025/05/26-19:13:17.277689 42 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.277689 42 DB Session ID: PCRZT7AMVX68CX0XDWU2 +2025/05/26-19:13:17.278343 42 CURRENT file: CURRENT +2025/05/26-19:13:17.278344 42 IDENTITY file: IDENTITY +2025/05/26-19:13:17.278347 42 MANIFEST file: MANIFEST-000013 size: 165 Bytes +2025/05/26-19:13:17.278348 42 SST files in ./storage/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index dir, Total Num: 0, files: +2025/05/26-19:13:17.278350 42 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index: 000012.log size: 0 ; +2025/05/26-19:13:17.278351 42 Options.error_if_exists: 0 +2025/05/26-19:13:17.278351 42 Options.create_if_missing: 1 +2025/05/26-19:13:17.278352 42 Options.paranoid_checks: 1 +2025/05/26-19:13:17.278353 42 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.278354 42 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.278355 42 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.278356 42 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.278356 42 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.278357 42 Options.fs: PosixFileSystem +2025/05/26-19:13:17.278358 42 Options.info_log: 0xffff7dde6500 +2025/05/26-19:13:17.278358 42 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.278359 42 Options.statistics: (nil) +2025/05/26-19:13:17.278359 42 Options.use_fsync: 0 +2025/05/26-19:13:17.278360 42 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.278361 42 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.278361 42 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.278362 42 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.278362 42 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.278363 42 Options.allow_fallocate: 1 +2025/05/26-19:13:17.278363 42 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.278364 42 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.278364 42 Options.use_direct_reads: 0 +2025/05/26-19:13:17.278365 42 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.278366 42 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.278367 42 Options.db_log_dir: +2025/05/26-19:13:17.278368 42 Options.wal_dir: +2025/05/26-19:13:17.278369 42 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.278369 42 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.278370 42 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.278370 42 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.278371 42 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.278371 42 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.278372 42 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.278373 42 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.278373 42 Options.write_buffer_manager: 0xffff7dd63780 +2025/05/26-19:13:17.278374 42 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.278374 42 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.278375 42 Options.rate_limiter: (nil) +2025/05/26-19:13:17.278376 42 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.278377 42 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.278377 42 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.278378 42 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.278378 42 Options.unordered_write: 0 +2025/05/26-19:13:17.278379 42 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.278379 42 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.278380 42 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.278381 42 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.278381 42 Options.row_cache: None +2025/05/26-19:13:17.278382 42 Options.wal_filter: None +2025/05/26-19:13:17.278382 42 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.278383 42 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.278385 42 Options.two_write_queues: 0 +2025/05/26-19:13:17.278385 42 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.278386 42 Options.wal_compression: 0 +2025/05/26-19:13:17.278387 42 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.278388 42 Options.atomic_flush: 0 +2025/05/26-19:13:17.278388 42 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.278389 42 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.278390 42 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.278390 42 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.278391 42 Options.write_identity_file: 1 +2025/05/26-19:13:17.278391 42 Options.log_readahead_size: 0 +2025/05/26-19:13:17.278392 42 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.278393 42 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.278393 42 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.278394 42 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.278394 42 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.278395 42 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.278395 42 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.278397 42 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.278399 42 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.278400 42 Options.max_background_jobs: 2 +2025/05/26-19:13:17.278400 42 Options.max_background_compactions: -1 +2025/05/26-19:13:17.278401 42 Options.max_subcompactions: 1 +2025/05/26-19:13:17.278402 42 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.278402 42 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.278403 42 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.278403 42 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.278404 42 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.278404 42 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.278405 42 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.278406 42 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.278406 42 Options.max_open_files: 256 +2025/05/26-19:13:17.278407 42 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.278407 42 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.278408 42 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.278409 42 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.278409 42 Options.max_background_flushes: -1 +2025/05/26-19:13:17.278410 42 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.278410 42 Compression algorithms supported: +2025/05/26-19:13:17.278411 42 kZSTD supported: 0 +2025/05/26-19:13:17.278412 42 kXpressCompression supported: 0 +2025/05/26-19:13:17.278412 42 kBZip2Compression supported: 0 +2025/05/26-19:13:17.278413 42 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.278413 42 kLZ4Compression supported: 1 +2025/05/26-19:13:17.278414 42 kZlibCompression supported: 0 +2025/05/26-19:13:17.278415 42 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.278415 42 kSnappyCompression supported: 1 +2025/05/26-19:13:17.278416 42 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.278417 42 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.278417 42 Jemalloc supported: 0 +2025/05/26-19:13:17.280019 42 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.280020 42 Options.merge_operator: None +2025/05/26-19:13:17.280021 42 Options.compaction_filter: None +2025/05/26-19:13:17.280021 42 Options.compaction_filter_factory: None +2025/05/26-19:13:17.280022 42 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.280023 42 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.280023 42 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.280032 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff7efa9d00) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff9ab736d0 + block_cache: 0xffff7dd636d0 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,93 +155,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.818868 43 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.818869 43 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.818878 43 Options.compression: LZ4 -2025/05/04-10:09:55.818879 43 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.818879 43 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.818880 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.818880 43 Options.num_levels: 7 -2025/05/04-10:09:55.818881 43 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.818882 43 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.818883 43 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.818884 43 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.818885 43 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.818886 43 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.818886 43 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.818887 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.818888 43 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.818889 43 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.818889 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.818890 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.818891 43 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.818891 43 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.818892 43 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.818892 43 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.818893 43 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.818893 43 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.818894 43 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.818895 43 Options.compression_opts.enabled: false -2025/05/04-10:09:55.818895 43 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.818896 43 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.818896 43 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.818897 43 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.818898 43 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.818898 43 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.818899 43 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.818900 43 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.818901 43 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.818902 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.818902 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.818903 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.818903 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.818904 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.818904 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.818905 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.818905 43 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.818906 43 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.818907 43 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.818907 43 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.818908 43 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.818908 43 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.818909 43 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.818910 43 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.818911 43 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.818911 43 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.818912 43 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.818912 43 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.818913 43 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.818914 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.818914 43 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.818915 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.818915 43 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.818917 43 Options.table_properties_collectors: -2025/05/04-10:09:55.818918 43 Options.inplace_update_support: 0 -2025/05/04-10:09:55.818918 43 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.818919 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.818919 43 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.818920 43 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.818921 43 Options.bloom_locality: 0 -2025/05/04-10:09:55.818921 43 Options.max_successive_merges: 0 -2025/05/04-10:09:55.818922 43 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.818922 43 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.818923 43 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.818923 43 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.818924 43 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.818925 43 Options.ttl: 2592000 -2025/05/04-10:09:55.818925 43 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.818926 43 Options.default_temperature: kUnknown -2025/05/04-10:09:55.818927 43 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.818927 43 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.818928 43 Options.enable_blob_files: false -2025/05/04-10:09:55.818928 43 Options.min_blob_size: 0 -2025/05/04-10:09:55.818929 43 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.818930 43 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.818930 43 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.818931 43 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.818932 43 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.818932 43 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.818933 43 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.818933 43 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.818934 43 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.826880 43 DB pointer 0xffff9aab9800 +2025/05/26-19:13:17.280034 42 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.280035 42 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.280035 42 Options.compression: LZ4 +2025/05/26-19:13:17.280036 42 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.280036 42 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.280037 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.280038 42 Options.num_levels: 7 +2025/05/26-19:13:17.280038 42 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.280039 42 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.280039 42 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.280040 42 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.280040 42 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.280041 42 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.280042 42 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.280042 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.280044 42 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.280047 42 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.280047 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.280048 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.280048 42 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.280049 42 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.280050 42 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.280050 42 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.280051 42 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.280051 42 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.280052 42 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.280052 42 Options.compression_opts.enabled: false +2025/05/26-19:13:17.280053 42 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.280053 42 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.280054 42 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.280055 42 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.280056 42 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.280056 42 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.280057 42 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.280058 42 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.280058 42 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.280059 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.280060 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.280060 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.280061 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.280061 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.280062 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.280063 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.280063 42 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.280064 42 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.280064 42 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.280065 42 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.280066 42 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.280066 42 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.280067 42 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.280067 42 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.280068 42 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.280069 42 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.280069 42 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.280070 42 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.280070 42 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.280071 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.280071 42 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.280072 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.280073 42 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.280074 42 Options.table_properties_collectors: +2025/05/26-19:13:17.280074 42 Options.inplace_update_support: 0 +2025/05/26-19:13:17.280075 42 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.280075 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.280076 42 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.280076 42 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.280077 42 Options.bloom_locality: 0 +2025/05/26-19:13:17.280077 42 Options.max_successive_merges: 0 +2025/05/26-19:13:17.280078 42 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.280079 42 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.280079 42 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.280080 42 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.280081 42 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.280083 42 Options.ttl: 2592000 +2025/05/26-19:13:17.280083 42 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.280084 42 Options.default_temperature: kUnknown +2025/05/26-19:13:17.280084 42 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.280085 42 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.280086 42 Options.enable_blob_files: false +2025/05/26-19:13:17.280086 42 Options.min_blob_size: 0 +2025/05/26-19:13:17.280087 42 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.280088 42 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.280088 42 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.280089 42 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.280090 42 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.280090 42 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.280092 42 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.280094 42 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.280094 42 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.292939 42 DB pointer 0xffff7dca1800 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/MANIFEST-000013 deleted file mode 100644 index 53a7cc89afe14862cd0a65124683d562306f2e1a..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/MANIFEST-000013 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/OPTIONS-000011 deleted file mode 100644 index 1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/OPTIONS-000011 +++ /dev/null @@ -1,214 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000029.log b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000029.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/CURRENT index caa721af8539c91200b4080d85b372d3b85f1c88..eea9b0f2d5104cecec9d939173226eee9d2565ee 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/CURRENT @@ -1 +1 @@ -MANIFEST-000030 +MANIFEST-000034 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/LOG index 66b4a6a1e89e19b50cde6d41ae0420a6be96472a..0a96a14c888006c75b70a86680ba0c6ec6bfee4a 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.602313 41 RocksDB version: 9.9.3 -2025/05/04-10:09:55.603785 41 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.603787 41 DB SUMMARY -2025/05/04-10:09:55.603789 41 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.603790 41 DB Session ID: CD0SHR3DDC5AMRBDXMDM -2025/05/04-10:09:55.605655 41 CURRENT file: CURRENT -2025/05/04-10:09:55.605662 41 IDENTITY file: IDENTITY -2025/05/04-10:09:55.606178 41 MANIFEST file: MANIFEST-000026 size: 1031 Bytes -2025/05/04-10:09:55.606183 41 SST files in ./storage/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557 dir, Total Num: 4, files: 000009.sst 000018.sst 000020.sst 000022.sst -2025/05/04-10:09:55.606186 41 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557: 000025.log size: 0 ; -2025/05/04-10:09:55.606188 41 Options.error_if_exists: 0 -2025/05/04-10:09:55.606190 41 Options.create_if_missing: 1 -2025/05/04-10:09:55.606191 41 Options.paranoid_checks: 1 -2025/05/04-10:09:55.606192 41 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.606193 41 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.606195 41 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.606196 41 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.606197 41 Options.env: 0xffff86034000 -2025/05/04-10:09:55.606199 41 Options.fs: PosixFileSystem -2025/05/04-10:09:55.606200 41 Options.info_log: 0xffff83ca1000 -2025/05/04-10:09:55.606201 41 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.606202 41 Options.statistics: (nil) -2025/05/04-10:09:55.606203 41 Options.use_fsync: 0 -2025/05/04-10:09:55.606204 41 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.606205 41 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.606206 41 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.606207 41 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.606208 41 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.606209 41 Options.allow_fallocate: 1 -2025/05/04-10:09:55.606210 41 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.606212 41 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.606214 41 Options.use_direct_reads: 0 -2025/05/04-10:09:55.606215 41 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.606216 41 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.606218 41 Options.db_log_dir: -2025/05/04-10:09:55.606219 41 Options.wal_dir: -2025/05/04-10:09:55.606220 41 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.606221 41 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.606222 41 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.606223 41 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.606224 41 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.606225 41 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.606226 41 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.606227 41 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.606228 41 Options.write_buffer_manager: 0xffff83c090c0 -2025/05/04-10:09:55.606229 41 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.606230 41 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.606231 41 Options.rate_limiter: (nil) -2025/05/04-10:09:55.606245 41 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.606247 41 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.606247 41 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.606248 41 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.606249 41 Options.unordered_write: 0 -2025/05/04-10:09:55.606250 41 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.606250 41 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.606251 41 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.606252 41 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.606252 41 Options.row_cache: None -2025/05/04-10:09:55.606253 41 Options.wal_filter: None -2025/05/04-10:09:55.606254 41 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.606255 41 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.606255 41 Options.two_write_queues: 0 -2025/05/04-10:09:55.606257 41 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.606258 41 Options.wal_compression: 0 -2025/05/04-10:09:55.606259 41 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.606259 41 Options.atomic_flush: 0 -2025/05/04-10:09:55.606260 41 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.606260 41 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.606261 41 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.606262 41 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.606263 41 Options.write_identity_file: 1 -2025/05/04-10:09:55.606263 41 Options.log_readahead_size: 0 -2025/05/04-10:09:55.606264 41 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.606265 41 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.606266 41 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.606267 41 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.606268 41 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.606269 41 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.606270 41 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.606271 41 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.606272 41 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.606272 41 Options.max_background_jobs: 2 -2025/05/04-10:09:55.606273 41 Options.max_background_compactions: -1 -2025/05/04-10:09:55.606273 41 Options.max_subcompactions: 1 -2025/05/04-10:09:55.606274 41 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.606274 41 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.606275 41 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.606276 41 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.606276 41 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.606278 41 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.606279 41 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.606279 41 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.606280 41 Options.max_open_files: 256 -2025/05/04-10:09:55.606281 41 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.606281 41 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.606282 41 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.606282 41 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.606283 41 Options.max_background_flushes: -1 -2025/05/04-10:09:55.606283 41 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.606284 41 Compression algorithms supported: -2025/05/04-10:09:55.606285 41 kZSTD supported: 0 -2025/05/04-10:09:55.606286 41 kXpressCompression supported: 0 -2025/05/04-10:09:55.606286 41 kBZip2Compression supported: 0 -2025/05/04-10:09:55.606287 41 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.606287 41 kLZ4Compression supported: 1 -2025/05/04-10:09:55.606288 41 kZlibCompression supported: 0 -2025/05/04-10:09:55.606288 41 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.606289 41 kSnappyCompression supported: 1 -2025/05/04-10:09:55.606290 41 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.606290 41 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.606291 41 Jemalloc supported: 0 -2025/05/04-10:09:55.611742 41 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.611750 41 Options.merge_operator: None -2025/05/04-10:09:55.611751 41 Options.compaction_filter: None -2025/05/04-10:09:55.611752 41 Options.compaction_filter_factory: None -2025/05/04-10:09:55.611754 41 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.611756 41 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.611758 41 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.611779 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff83c00060) +2025/05/26-19:13:17.063119 40 RocksDB version: 9.9.3 +2025/05/26-19:13:17.064901 40 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.064902 40 DB SUMMARY +2025/05/26-19:13:17.064903 40 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.064904 40 DB Session ID: PCRZT7AMVX68CX0XDWTS +2025/05/26-19:13:17.066361 40 CURRENT file: CURRENT +2025/05/26-19:13:17.066362 40 IDENTITY file: IDENTITY +2025/05/26-19:13:17.066566 40 MANIFEST file: MANIFEST-000030 size: 1031 Bytes +2025/05/26-19:13:17.066568 40 SST files in ./storage/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557 dir, Total Num: 4, files: 000009.sst 000018.sst 000020.sst 000022.sst +2025/05/26-19:13:17.066569 40 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557: 000029.log size: 0 ; +2025/05/26-19:13:17.066570 40 Options.error_if_exists: 0 +2025/05/26-19:13:17.066571 40 Options.create_if_missing: 1 +2025/05/26-19:13:17.066571 40 Options.paranoid_checks: 1 +2025/05/26-19:13:17.066572 40 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.066573 40 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.066574 40 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.066574 40 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.066575 40 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.066576 40 Options.fs: PosixFileSystem +2025/05/26-19:13:17.066577 40 Options.info_log: 0xffff682a1000 +2025/05/26-19:13:17.066578 40 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.066578 40 Options.statistics: (nil) +2025/05/26-19:13:17.066579 40 Options.use_fsync: 0 +2025/05/26-19:13:17.066580 40 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.066580 40 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.066582 40 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.066583 40 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.066584 40 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.066585 40 Options.allow_fallocate: 1 +2025/05/26-19:13:17.066586 40 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.066586 40 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.066587 40 Options.use_direct_reads: 0 +2025/05/26-19:13:17.066587 40 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.066590 40 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.066591 40 Options.db_log_dir: +2025/05/26-19:13:17.066591 40 Options.wal_dir: +2025/05/26-19:13:17.066592 40 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.066592 40 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.066593 40 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.066594 40 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.066595 40 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.066595 40 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.066596 40 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.066596 40 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.066597 40 Options.write_buffer_manager: 0xffff682090c0 +2025/05/26-19:13:17.066598 40 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.066598 40 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.066599 40 Options.rate_limiter: (nil) +2025/05/26-19:13:17.066600 40 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.066601 40 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.066601 40 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.066602 40 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.066603 40 Options.unordered_write: 0 +2025/05/26-19:13:17.066604 40 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.066604 40 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.066605 40 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.066606 40 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.066606 40 Options.row_cache: None +2025/05/26-19:13:17.066607 40 Options.wal_filter: None +2025/05/26-19:13:17.066608 40 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.066609 40 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.066609 40 Options.two_write_queues: 0 +2025/05/26-19:13:17.066610 40 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.066611 40 Options.wal_compression: 0 +2025/05/26-19:13:17.066612 40 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.066612 40 Options.atomic_flush: 0 +2025/05/26-19:13:17.066613 40 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.066613 40 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.066614 40 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.066615 40 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.066615 40 Options.write_identity_file: 1 +2025/05/26-19:13:17.066616 40 Options.log_readahead_size: 0 +2025/05/26-19:13:17.066617 40 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.066618 40 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.066618 40 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.066619 40 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.066619 40 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.066620 40 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.066621 40 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.066622 40 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.066624 40 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.066625 40 Options.max_background_jobs: 2 +2025/05/26-19:13:17.066627 40 Options.max_background_compactions: -1 +2025/05/26-19:13:17.066628 40 Options.max_subcompactions: 1 +2025/05/26-19:13:17.066629 40 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.066630 40 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.066630 40 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.066631 40 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.066631 40 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.066632 40 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.066633 40 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.066634 40 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.066634 40 Options.max_open_files: 256 +2025/05/26-19:13:17.066635 40 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.066636 40 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.066636 40 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.066637 40 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.066637 40 Options.max_background_flushes: -1 +2025/05/26-19:13:17.066638 40 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.066639 40 Compression algorithms supported: +2025/05/26-19:13:17.066639 40 kZSTD supported: 0 +2025/05/26-19:13:17.066640 40 kXpressCompression supported: 0 +2025/05/26-19:13:17.066641 40 kBZip2Compression supported: 0 +2025/05/26-19:13:17.066641 40 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.066642 40 kLZ4Compression supported: 1 +2025/05/26-19:13:17.066643 40 kZlibCompression supported: 0 +2025/05/26-19:13:17.066644 40 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.066644 40 kSnappyCompression supported: 1 +2025/05/26-19:13:17.066646 40 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.066647 40 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.066647 40 Jemalloc supported: 0 +2025/05/26-19:13:17.070145 40 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070146 40 Options.merge_operator: None +2025/05/26-19:13:17.070147 40 Options.compaction_filter: None +2025/05/26-19:13:17.070148 40 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070149 40 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070149 40 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070150 40 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070159 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68200060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff83c09010 + block_cache: 0xffff68209010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,103 +155,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.611784 41 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.611787 41 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.611788 41 Options.compression: LZ4 -2025/05/04-10:09:55.611792 41 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.611793 41 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.611794 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.611795 41 Options.num_levels: 7 -2025/05/04-10:09:55.611796 41 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.611797 41 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.611798 41 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.611799 41 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.611801 41 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.611802 41 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.611803 41 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.611804 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.611805 41 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.611806 41 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.611807 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.611810 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.611811 41 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.611812 41 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.611813 41 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.611815 41 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.611816 41 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.611817 41 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.611818 41 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.611819 41 Options.compression_opts.enabled: false -2025/05/04-10:09:55.611820 41 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.611822 41 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.611823 41 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.611824 41 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.611825 41 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.611827 41 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.611838 41 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.611840 41 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.611841 41 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.611842 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.611843 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.611845 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.611845 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.611846 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.611846 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.611849 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.611849 41 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.611850 41 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.611850 41 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.611851 41 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.611851 41 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.611852 41 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.611853 41 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.611854 41 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.611854 41 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.611855 41 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.611855 41 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.611856 41 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.611857 41 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.611857 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.611858 41 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.611859 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.611859 41 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.611873 41 Options.table_properties_collectors: -2025/05/04-10:09:55.611874 41 Options.inplace_update_support: 0 -2025/05/04-10:09:55.611874 41 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.611875 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.611876 41 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.611877 41 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.611877 41 Options.bloom_locality: 0 -2025/05/04-10:09:55.611878 41 Options.max_successive_merges: 0 -2025/05/04-10:09:55.611880 41 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.611880 41 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.611881 41 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.611881 41 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.611882 41 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.611882 41 Options.ttl: 2592000 -2025/05/04-10:09:55.611885 41 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.611886 41 Options.default_temperature: kUnknown -2025/05/04-10:09:55.611887 41 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.611887 41 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.611888 41 Options.enable_blob_files: false -2025/05/04-10:09:55.611889 41 Options.min_blob_size: 0 -2025/05/04-10:09:55.611889 41 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.611892 41 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.611893 41 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.611893 41 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.611894 41 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.611895 41 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.611895 41 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.611896 41 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.611896 41 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.612124 41 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.612125 41 Options.merge_operator: None -2025/05/04-10:09:55.612126 41 Options.compaction_filter: None -2025/05/04-10:09:55.612127 41 Options.compaction_filter_factory: None -2025/05/04-10:09:55.612127 41 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.612128 41 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.612128 41 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.612137 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff83c00060) +2025/05/26-19:13:17.070160 40 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070161 40 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070162 40 Options.compression: LZ4 +2025/05/26-19:13:17.070163 40 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070164 40 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070165 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070166 40 Options.num_levels: 7 +2025/05/26-19:13:17.070166 40 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070167 40 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070167 40 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070168 40 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070169 40 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070169 40 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070170 40 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070171 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070171 40 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070172 40 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070172 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070173 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070175 40 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070176 40 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070176 40 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070177 40 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070177 40 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070178 40 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070180 40 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070181 40 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070183 40 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070184 40 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070184 40 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070185 40 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070186 40 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070186 40 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070187 40 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070188 40 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070189 40 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070190 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070191 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070191 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070192 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070192 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070193 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070194 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070195 40 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070196 40 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070196 40 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070197 40 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070199 40 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070199 40 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070200 40 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070201 40 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070202 40 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070202 40 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070203 40 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070203 40 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070204 40 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070205 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070205 40 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070206 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070207 40 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070208 40 Options.table_properties_collectors: +2025/05/26-19:13:17.070208 40 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070209 40 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070210 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070213 40 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070214 40 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070215 40 Options.bloom_locality: 0 +2025/05/26-19:13:17.070215 40 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070216 40 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070218 40 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070218 40 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070219 40 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070220 40 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070220 40 Options.ttl: 2592000 +2025/05/26-19:13:17.070221 40 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070222 40 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070222 40 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070223 40 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070223 40 Options.enable_blob_files: false +2025/05/26-19:13:17.070224 40 Options.min_blob_size: 0 +2025/05/26-19:13:17.070225 40 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070226 40 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070227 40 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070228 40 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070229 40 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070230 40 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070230 40 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070231 40 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070232 40 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070469 40 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070475 40 Options.merge_operator: None +2025/05/26-19:13:17.070477 40 Options.compaction_filter: None +2025/05/26-19:13:17.070479 40 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070480 40 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070481 40 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070483 40 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070511 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68200060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -262,7 +262,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff83c09010 + block_cache: 0xffff68209010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -290,103 +290,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.612139 41 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.612139 41 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.612140 41 Options.compression: LZ4 -2025/05/04-10:09:55.612141 41 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.612141 41 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.612142 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.612142 41 Options.num_levels: 7 -2025/05/04-10:09:55.612143 41 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.612143 41 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.612144 41 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.612144 41 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.612145 41 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.612145 41 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.612146 41 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.612146 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.612147 41 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.612148 41 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.612148 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.612149 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.612149 41 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.612150 41 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.612151 41 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.612152 41 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.612152 41 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.612153 41 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.612153 41 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.612154 41 Options.compression_opts.enabled: false -2025/05/04-10:09:55.612155 41 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.612156 41 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.612156 41 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.612157 41 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.612157 41 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.612158 41 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.612158 41 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.612159 41 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.612159 41 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.612160 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.612161 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.612161 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.612162 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.612162 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.612163 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.612163 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.612164 41 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.612164 41 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.612165 41 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.612165 41 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.612166 41 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.612166 41 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.612167 41 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.612168 41 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.612168 41 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.612169 41 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.612170 41 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.612170 41 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.612171 41 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.612171 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.612172 41 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.612172 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.612173 41 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.612174 41 Options.table_properties_collectors: -2025/05/04-10:09:55.612174 41 Options.inplace_update_support: 0 -2025/05/04-10:09:55.612175 41 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.612176 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.612176 41 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.612177 41 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.612177 41 Options.bloom_locality: 0 -2025/05/04-10:09:55.612178 41 Options.max_successive_merges: 0 -2025/05/04-10:09:55.612178 41 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.612179 41 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.612179 41 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.612180 41 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.612180 41 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.612181 41 Options.ttl: 2592000 -2025/05/04-10:09:55.612182 41 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.612182 41 Options.default_temperature: kUnknown -2025/05/04-10:09:55.612183 41 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.612183 41 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.612184 41 Options.enable_blob_files: false -2025/05/04-10:09:55.612184 41 Options.min_blob_size: 0 -2025/05/04-10:09:55.612185 41 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.612187 41 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.612187 41 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.612188 41 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.612189 41 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.612189 41 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.612190 41 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.612190 41 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.612191 41 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.612212 41 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.612212 41 Options.merge_operator: None -2025/05/04-10:09:55.612213 41 Options.compaction_filter: None -2025/05/04-10:09:55.612214 41 Options.compaction_filter_factory: None -2025/05/04-10:09:55.612214 41 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.612215 41 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.612215 41 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.612221 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff83c00060) +2025/05/26-19:13:17.070513 40 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070514 40 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070515 40 Options.compression: LZ4 +2025/05/26-19:13:17.070515 40 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070516 40 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070517 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070517 40 Options.num_levels: 7 +2025/05/26-19:13:17.070518 40 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070518 40 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070519 40 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070519 40 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070522 40 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070523 40 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070523 40 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070524 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070524 40 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070526 40 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070527 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070528 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070528 40 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070529 40 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070531 40 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070532 40 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070532 40 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070533 40 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070533 40 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070535 40 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070536 40 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070536 40 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070537 40 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070537 40 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070538 40 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070539 40 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070539 40 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070540 40 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070541 40 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070542 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070543 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070543 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070544 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070544 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070545 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070545 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070546 40 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070547 40 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070547 40 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070548 40 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070548 40 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070549 40 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070550 40 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070550 40 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070551 40 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070552 40 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070552 40 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070553 40 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070553 40 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070554 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070554 40 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070555 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070556 40 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070557 40 Options.table_properties_collectors: +2025/05/26-19:13:17.070557 40 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070558 40 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070558 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070561 40 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070561 40 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070562 40 Options.bloom_locality: 0 +2025/05/26-19:13:17.070562 40 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070563 40 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070563 40 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070564 40 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070565 40 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070565 40 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070566 40 Options.ttl: 2592000 +2025/05/26-19:13:17.070566 40 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070567 40 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070568 40 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070568 40 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070569 40 Options.enable_blob_files: false +2025/05/26-19:13:17.070569 40 Options.min_blob_size: 0 +2025/05/26-19:13:17.070570 40 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070570 40 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070572 40 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070573 40 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070574 40 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070575 40 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070575 40 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070576 40 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070576 40 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070597 40 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070599 40 Options.merge_operator: None +2025/05/26-19:13:17.070600 40 Options.compaction_filter: None +2025/05/26-19:13:17.070601 40 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070601 40 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070602 40 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070605 40 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070614 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68200060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -397,7 +397,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff83c09010 + block_cache: 0xffff68209010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -425,103 +425,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.612224 41 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.612224 41 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.612225 41 Options.compression: LZ4 -2025/05/04-10:09:55.612227 41 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.612227 41 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.612228 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.612229 41 Options.num_levels: 7 -2025/05/04-10:09:55.612229 41 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.612230 41 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.612231 41 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.612231 41 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.612232 41 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.612232 41 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.612233 41 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.612233 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.612234 41 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.612234 41 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.612235 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.612235 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.612236 41 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.612236 41 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.612237 41 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.612237 41 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.612239 41 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.612240 41 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.612240 41 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.612241 41 Options.compression_opts.enabled: false -2025/05/04-10:09:55.612242 41 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.612242 41 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.612243 41 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.612243 41 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.612244 41 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.612244 41 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.612245 41 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.612245 41 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.612246 41 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.612247 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.612247 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.612249 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.612250 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.612250 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.612251 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.612251 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.612253 41 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.612254 41 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.612255 41 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.612255 41 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.612256 41 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.612256 41 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.612257 41 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.612258 41 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.612258 41 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.612259 41 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.612259 41 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.612260 41 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.612260 41 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.612261 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.612261 41 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.612262 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.612263 41 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.612265 41 Options.table_properties_collectors: -2025/05/04-10:09:55.612266 41 Options.inplace_update_support: 0 -2025/05/04-10:09:55.612267 41 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.612268 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.612269 41 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.612269 41 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.612270 41 Options.bloom_locality: 0 -2025/05/04-10:09:55.612270 41 Options.max_successive_merges: 0 -2025/05/04-10:09:55.612271 41 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.612273 41 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.612273 41 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.612274 41 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.612275 41 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.612276 41 Options.ttl: 2592000 -2025/05/04-10:09:55.612276 41 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.612277 41 Options.default_temperature: kUnknown -2025/05/04-10:09:55.612277 41 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.612278 41 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.612279 41 Options.enable_blob_files: false -2025/05/04-10:09:55.612279 41 Options.min_blob_size: 0 -2025/05/04-10:09:55.612280 41 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.612280 41 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.612281 41 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.612281 41 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.612282 41 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.612283 41 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.612283 41 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.612284 41 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.612284 41 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.612308 41 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.612309 41 Options.merge_operator: None -2025/05/04-10:09:55.612310 41 Options.compaction_filter: None -2025/05/04-10:09:55.612310 41 Options.compaction_filter_factory: None -2025/05/04-10:09:55.612311 41 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.612311 41 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.612312 41 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.612318 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff83c00060) +2025/05/26-19:13:17.070616 40 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070617 40 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070618 40 Options.compression: LZ4 +2025/05/26-19:13:17.070618 40 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070619 40 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070621 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070622 40 Options.num_levels: 7 +2025/05/26-19:13:17.070624 40 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070625 40 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070625 40 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070626 40 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070627 40 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070627 40 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070628 40 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070630 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070631 40 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070631 40 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070632 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070633 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070633 40 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070634 40 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070634 40 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070635 40 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070636 40 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070638 40 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070638 40 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070639 40 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070639 40 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070640 40 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070641 40 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070641 40 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070642 40 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070642 40 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070643 40 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070645 40 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070646 40 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070647 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070647 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070649 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070650 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070651 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070652 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070652 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070653 40 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070653 40 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070654 40 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070655 40 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070655 40 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070656 40 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070657 40 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070658 40 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070659 40 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070659 40 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070660 40 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070661 40 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070661 40 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070662 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070663 40 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070663 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070664 40 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070665 40 Options.table_properties_collectors: +2025/05/26-19:13:17.070667 40 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070705 40 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070706 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070707 40 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070707 40 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070708 40 Options.bloom_locality: 0 +2025/05/26-19:13:17.070709 40 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070709 40 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070710 40 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070710 40 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070711 40 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070712 40 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070712 40 Options.ttl: 2592000 +2025/05/26-19:13:17.070714 40 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070715 40 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070716 40 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070717 40 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070718 40 Options.enable_blob_files: false +2025/05/26-19:13:17.070720 40 Options.min_blob_size: 0 +2025/05/26-19:13:17.070721 40 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070721 40 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070722 40 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070723 40 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070723 40 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070724 40 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070724 40 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070725 40 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070726 40 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070743 40 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070744 40 Options.merge_operator: None +2025/05/26-19:13:17.070744 40 Options.compaction_filter: None +2025/05/26-19:13:17.070746 40 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070747 40 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070747 40 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070748 40 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070780 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68200060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -532,7 +532,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff83c09010 + block_cache: 0xffff68209010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -560,103 +560,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.612320 41 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.612320 41 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.612321 41 Options.compression: LZ4 -2025/05/04-10:09:55.612322 41 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.612322 41 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.612323 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.612323 41 Options.num_levels: 7 -2025/05/04-10:09:55.612324 41 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.612324 41 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.612325 41 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.612325 41 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.612326 41 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.612327 41 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.612327 41 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.612328 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.612328 41 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.612329 41 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.612329 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.612330 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.612330 41 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.612331 41 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.612331 41 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.612332 41 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.612333 41 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.612333 41 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.612334 41 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.612334 41 Options.compression_opts.enabled: false -2025/05/04-10:09:55.612335 41 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.612335 41 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.612336 41 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.612336 41 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.612338 41 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.612339 41 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.612339 41 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.612340 41 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.612341 41 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.612341 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.612342 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.612342 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.612343 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.612343 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.612344 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.612345 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.612345 41 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.612346 41 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.612347 41 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.612347 41 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.612348 41 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.612348 41 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.612349 41 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.612349 41 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.612350 41 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.612350 41 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.612351 41 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.612353 41 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.612353 41 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.612354 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.612354 41 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.612355 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.612355 41 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.612356 41 Options.table_properties_collectors: -2025/05/04-10:09:55.612357 41 Options.inplace_update_support: 0 -2025/05/04-10:09:55.612357 41 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.612358 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.612360 41 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.612361 41 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.612361 41 Options.bloom_locality: 0 -2025/05/04-10:09:55.612362 41 Options.max_successive_merges: 0 -2025/05/04-10:09:55.612362 41 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.612363 41 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.612363 41 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.612364 41 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.612365 41 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.612365 41 Options.ttl: 2592000 -2025/05/04-10:09:55.612366 41 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.612367 41 Options.default_temperature: kUnknown -2025/05/04-10:09:55.612367 41 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.612368 41 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.612368 41 Options.enable_blob_files: false -2025/05/04-10:09:55.612369 41 Options.min_blob_size: 0 -2025/05/04-10:09:55.612369 41 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.612370 41 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.612370 41 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.612371 41 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.612372 41 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.612372 41 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.612373 41 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.612373 41 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.612374 41 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.612391 41 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.612391 41 Options.merge_operator: None -2025/05/04-10:09:55.612392 41 Options.compaction_filter: None -2025/05/04-10:09:55.612393 41 Options.compaction_filter_factory: None -2025/05/04-10:09:55.612393 41 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.612394 41 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.612394 41 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.612400 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff83c00060) +2025/05/26-19:13:17.070788 40 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070789 40 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070792 40 Options.compression: LZ4 +2025/05/26-19:13:17.070807 40 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070811 40 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070813 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070814 40 Options.num_levels: 7 +2025/05/26-19:13:17.070816 40 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070818 40 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070822 40 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070826 40 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070829 40 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070831 40 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070833 40 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071159 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071161 40 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071161 40 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.071163 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071165 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071166 40 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.071168 40 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.071170 40 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.071171 40 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071172 40 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071173 40 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071174 40 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071175 40 Options.compression_opts.enabled: false +2025/05/26-19:13:17.071176 40 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071176 40 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.071177 40 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.071177 40 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.071178 40 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.071179 40 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.071179 40 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.071180 40 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.071181 40 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.071181 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.071182 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.071182 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.071183 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.071184 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.071184 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.071185 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.071186 40 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.071186 40 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.071187 40 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.071188 40 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.071189 40 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.071191 40 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.071192 40 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.071193 40 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.071193 40 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.071195 40 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.071196 40 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.071197 40 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.071197 40 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.071198 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.071199 40 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.071200 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.071201 40 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.071203 40 Options.table_properties_collectors: +2025/05/26-19:13:17.071204 40 Options.inplace_update_support: 0 +2025/05/26-19:13:17.071204 40 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.071206 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.071206 40 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.071207 40 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.071207 40 Options.bloom_locality: 0 +2025/05/26-19:13:17.071208 40 Options.max_successive_merges: 0 +2025/05/26-19:13:17.071209 40 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.071210 40 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.071210 40 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.071214 40 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.071215 40 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.071216 40 Options.ttl: 2592000 +2025/05/26-19:13:17.071217 40 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.071218 40 Options.default_temperature: kUnknown +2025/05/26-19:13:17.071219 40 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.071219 40 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.071222 40 Options.enable_blob_files: false +2025/05/26-19:13:17.071223 40 Options.min_blob_size: 0 +2025/05/26-19:13:17.071223 40 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.071224 40 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.071225 40 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.071226 40 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.071226 40 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.071227 40 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.071228 40 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.071230 40 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.071231 40 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.071251 40 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.071253 40 Options.merge_operator: None +2025/05/26-19:13:17.071254 40 Options.compaction_filter: None +2025/05/26-19:13:17.071254 40 Options.compaction_filter_factory: None +2025/05/26-19:13:17.071255 40 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.071256 40 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.071257 40 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.071263 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68200060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -667,7 +667,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff83c09010 + block_cache: 0xffff68209010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -695,93 +695,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.612401 41 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.612402 41 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.612402 41 Options.compression: LZ4 -2025/05/04-10:09:55.612403 41 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.612403 41 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.612404 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.612405 41 Options.num_levels: 7 -2025/05/04-10:09:55.612405 41 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.612406 41 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.612406 41 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.612407 41 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.612407 41 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.612408 41 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.612409 41 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.612409 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.612410 41 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.612410 41 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.612411 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.612411 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.612412 41 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.612413 41 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.612413 41 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.612414 41 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.612414 41 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.612415 41 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.612416 41 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.612416 41 Options.compression_opts.enabled: false -2025/05/04-10:09:55.612417 41 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.612417 41 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.612418 41 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.612418 41 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.612419 41 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.612419 41 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.612420 41 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.612420 41 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.612421 41 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.612422 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.612423 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.612425 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.612426 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.612426 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.612427 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.612427 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.612429 41 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.612430 41 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.612430 41 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.612432 41 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.612432 41 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.612433 41 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.612434 41 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.612434 41 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.612435 41 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.612435 41 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.612436 41 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.612436 41 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.612437 41 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.612437 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.612438 41 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.612438 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.612439 41 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.612440 41 Options.table_properties_collectors: -2025/05/04-10:09:55.612440 41 Options.inplace_update_support: 0 -2025/05/04-10:09:55.612441 41 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.612442 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.612442 41 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.612443 41 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.612443 41 Options.bloom_locality: 0 -2025/05/04-10:09:55.612444 41 Options.max_successive_merges: 0 -2025/05/04-10:09:55.612444 41 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.612445 41 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.612445 41 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.612447 41 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.612448 41 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.612448 41 Options.ttl: 2592000 -2025/05/04-10:09:55.612449 41 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.612450 41 Options.default_temperature: kUnknown -2025/05/04-10:09:55.612452 41 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.612452 41 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.612453 41 Options.enable_blob_files: false -2025/05/04-10:09:55.612453 41 Options.min_blob_size: 0 -2025/05/04-10:09:55.612454 41 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.612455 41 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.612455 41 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.612456 41 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.612456 41 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.612458 41 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.612459 41 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.612460 41 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.612460 41 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.674021 41 DB pointer 0xffff83c63c00 +2025/05/26-19:13:17.071265 40 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.071267 40 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.071268 40 Options.compression: LZ4 +2025/05/26-19:13:17.071269 40 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.071269 40 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.071270 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.071271 40 Options.num_levels: 7 +2025/05/26-19:13:17.071272 40 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.071272 40 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.071273 40 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.071273 40 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.071274 40 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.071275 40 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.071276 40 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071276 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071277 40 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071279 40 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.071279 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071280 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071281 40 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.071282 40 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.071282 40 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.071283 40 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071283 40 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071284 40 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071285 40 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071286 40 Options.compression_opts.enabled: false +2025/05/26-19:13:17.071287 40 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071288 40 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.071290 40 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.071290 40 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.071292 40 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.071293 40 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.071293 40 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.071294 40 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.071295 40 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.071305 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.071306 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.071307 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.071309 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.071311 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.071311 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.071312 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.071313 40 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.071314 40 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.071317 40 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.071318 40 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.071319 40 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.071320 40 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.071321 40 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.071322 40 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.071323 40 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.071323 40 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.071324 40 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.071325 40 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.071325 40 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.071326 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.071327 40 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.071329 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.071331 40 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.071332 40 Options.table_properties_collectors: +2025/05/26-19:13:17.071333 40 Options.inplace_update_support: 0 +2025/05/26-19:13:17.071334 40 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.071348 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.071349 40 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.071350 40 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.071351 40 Options.bloom_locality: 0 +2025/05/26-19:13:17.071352 40 Options.max_successive_merges: 0 +2025/05/26-19:13:17.071353 40 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.071355 40 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.071357 40 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.071357 40 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.071358 40 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.071359 40 Options.ttl: 2592000 +2025/05/26-19:13:17.071359 40 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.071361 40 Options.default_temperature: kUnknown +2025/05/26-19:13:17.071362 40 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.071363 40 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.071364 40 Options.enable_blob_files: false +2025/05/26-19:13:17.071365 40 Options.min_blob_size: 0 +2025/05/26-19:13:17.071365 40 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.071366 40 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.071367 40 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.071367 40 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.071369 40 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.071370 40 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.071373 40 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.071374 40 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.071375 40 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.109349 40 DB pointer 0xffff68263c00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/MANIFEST-000030 b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/MANIFEST-000030 deleted file mode 100644 index 5378b1a464595e1ddfc781e22f9f4622a049c63e..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/MANIFEST-000030 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/OPTIONS-000028 b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/OPTIONS-000028 deleted file mode 100644 index ad2b181add715408dc69839970eebfd4c1a28b4b..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/OPTIONS-000028 +++ /dev/null @@ -1,670 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "payload"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "payload"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "mapping"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "mapping"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "version"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "version"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "vector"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "vector"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/000012.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/CURRENT index 625d147412870471b19d90716ccc20a7f207a5c3..056df57bb7f73da12edea3c09d88bc3ff790ec7c 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/CURRENT @@ -1 +1 @@ -MANIFEST-000013 +MANIFEST-000017 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/LOG index 6cd1a70262738eac8233630a2b8e77b2624c70aa..57b1b7b6bcbd76c3fd9fe97f2bd697175315a78e 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.818820 41 RocksDB version: 9.9.3 -2025/05/04-10:09:55.818986 41 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.818987 41 DB SUMMARY -2025/05/04-10:09:55.819021 41 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.819022 41 DB Session ID: CD0SHR3DDC5AMRBDXMDD -2025/05/04-10:09:55.819579 41 CURRENT file: CURRENT -2025/05/04-10:09:55.819580 41 IDENTITY file: IDENTITY -2025/05/04-10:09:55.819584 41 MANIFEST file: MANIFEST-000009 size: 159 Bytes -2025/05/04-10:09:55.819585 41 SST files in ./storage/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index dir, Total Num: 0, files: -2025/05/04-10:09:55.819586 41 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index: 000008.log size: 0 ; -2025/05/04-10:09:55.819587 41 Options.error_if_exists: 0 -2025/05/04-10:09:55.819588 41 Options.create_if_missing: 1 -2025/05/04-10:09:55.819589 41 Options.paranoid_checks: 1 -2025/05/04-10:09:55.819589 41 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.819590 41 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.819591 41 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.819591 41 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.819592 41 Options.env: 0xffff86034000 -2025/05/04-10:09:55.819592 41 Options.fs: PosixFileSystem -2025/05/04-10:09:55.819593 41 Options.info_log: 0xffff83ca2500 -2025/05/04-10:09:55.819594 41 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.819594 41 Options.statistics: (nil) -2025/05/04-10:09:55.819595 41 Options.use_fsync: 0 -2025/05/04-10:09:55.819596 41 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.819596 41 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.819597 41 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.819597 41 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.819598 41 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.819599 41 Options.allow_fallocate: 1 -2025/05/04-10:09:55.819599 41 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.819600 41 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.819600 41 Options.use_direct_reads: 0 -2025/05/04-10:09:55.819601 41 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.819602 41 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.819602 41 Options.db_log_dir: -2025/05/04-10:09:55.819603 41 Options.wal_dir: -2025/05/04-10:09:55.819603 41 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.819604 41 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.819604 41 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.819606 41 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.819607 41 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.819608 41 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.819608 41 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.819609 41 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.819610 41 Options.write_buffer_manager: 0xffff83c0a2c0 -2025/05/04-10:09:55.819610 41 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.819611 41 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.819612 41 Options.rate_limiter: (nil) -2025/05/04-10:09:55.819613 41 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.819613 41 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.819615 41 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.819616 41 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.819617 41 Options.unordered_write: 0 -2025/05/04-10:09:55.819617 41 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.819618 41 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.819618 41 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.819619 41 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.819619 41 Options.row_cache: None -2025/05/04-10:09:55.819620 41 Options.wal_filter: None -2025/05/04-10:09:55.819621 41 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.819621 41 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.819622 41 Options.two_write_queues: 0 -2025/05/04-10:09:55.819622 41 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.819624 41 Options.wal_compression: 0 -2025/05/04-10:09:55.819624 41 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.819625 41 Options.atomic_flush: 0 -2025/05/04-10:09:55.819625 41 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.819627 41 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.819629 41 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.819630 41 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.819631 41 Options.write_identity_file: 1 -2025/05/04-10:09:55.819631 41 Options.log_readahead_size: 0 -2025/05/04-10:09:55.819632 41 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.819633 41 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.819633 41 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.819634 41 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.819636 41 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.819637 41 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.819638 41 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.819638 41 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.819639 41 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.819639 41 Options.max_background_jobs: 2 -2025/05/04-10:09:55.819640 41 Options.max_background_compactions: -1 -2025/05/04-10:09:55.819641 41 Options.max_subcompactions: 1 -2025/05/04-10:09:55.819641 41 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.819642 41 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.819642 41 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.819643 41 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.819644 41 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.819644 41 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.819645 41 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.819646 41 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.819646 41 Options.max_open_files: 256 -2025/05/04-10:09:55.819647 41 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.819648 41 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.819648 41 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.819649 41 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.819649 41 Options.max_background_flushes: -1 -2025/05/04-10:09:55.819650 41 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.819651 41 Compression algorithms supported: -2025/05/04-10:09:55.819651 41 kZSTD supported: 0 -2025/05/04-10:09:55.819652 41 kXpressCompression supported: 0 -2025/05/04-10:09:55.819653 41 kBZip2Compression supported: 0 -2025/05/04-10:09:55.819653 41 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.819654 41 kLZ4Compression supported: 1 -2025/05/04-10:09:55.819655 41 kZlibCompression supported: 0 -2025/05/04-10:09:55.819655 41 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.819656 41 kSnappyCompression supported: 1 -2025/05/04-10:09:55.819657 41 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.819657 41 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.819658 41 Jemalloc supported: 0 -2025/05/04-10:09:55.820890 41 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.820891 41 Options.merge_operator: None -2025/05/04-10:09:55.820892 41 Options.compaction_filter: None -2025/05/04-10:09:55.820892 41 Options.compaction_filter_factory: None -2025/05/04-10:09:55.820893 41 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.820893 41 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.820895 41 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.820905 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff83d32cc0) +2025/05/26-19:13:17.273389 40 RocksDB version: 9.9.3 +2025/05/26-19:13:17.273467 40 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.273468 40 DB SUMMARY +2025/05/26-19:13:17.273470 40 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.273471 40 DB Session ID: PCRZT7AMVX68CX0XDWU6 +2025/05/26-19:13:17.274577 40 CURRENT file: CURRENT +2025/05/26-19:13:17.274578 40 IDENTITY file: IDENTITY +2025/05/26-19:13:17.274582 40 MANIFEST file: MANIFEST-000013 size: 165 Bytes +2025/05/26-19:13:17.274583 40 SST files in ./storage/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index dir, Total Num: 0, files: +2025/05/26-19:13:17.274584 40 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index: 000012.log size: 0 ; +2025/05/26-19:13:17.274587 40 Options.error_if_exists: 0 +2025/05/26-19:13:17.274588 40 Options.create_if_missing: 1 +2025/05/26-19:13:17.274588 40 Options.paranoid_checks: 1 +2025/05/26-19:13:17.274589 40 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.274590 40 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.274590 40 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.274591 40 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.274592 40 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.274593 40 Options.fs: PosixFileSystem +2025/05/26-19:13:17.274594 40 Options.info_log: 0xffff682a2500 +2025/05/26-19:13:17.274594 40 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.274595 40 Options.statistics: (nil) +2025/05/26-19:13:17.274596 40 Options.use_fsync: 0 +2025/05/26-19:13:17.274597 40 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.274597 40 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.274598 40 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.274599 40 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.274601 40 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.274601 40 Options.allow_fallocate: 1 +2025/05/26-19:13:17.274602 40 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.274603 40 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.274603 40 Options.use_direct_reads: 0 +2025/05/26-19:13:17.274604 40 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.274605 40 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.274605 40 Options.db_log_dir: +2025/05/26-19:13:17.274606 40 Options.wal_dir: +2025/05/26-19:13:17.274606 40 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.274607 40 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.274608 40 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.274610 40 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.274610 40 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.274611 40 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.274612 40 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.274612 40 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.274613 40 Options.write_buffer_manager: 0xffff6820a2c0 +2025/05/26-19:13:17.274613 40 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.274615 40 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.274615 40 Options.rate_limiter: (nil) +2025/05/26-19:13:17.274616 40 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.274617 40 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.274617 40 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.274618 40 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.274619 40 Options.unordered_write: 0 +2025/05/26-19:13:17.274619 40 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.274620 40 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.274621 40 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.274621 40 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.274622 40 Options.row_cache: None +2025/05/26-19:13:17.274623 40 Options.wal_filter: None +2025/05/26-19:13:17.274623 40 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.274624 40 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.274625 40 Options.two_write_queues: 0 +2025/05/26-19:13:17.274625 40 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.274627 40 Options.wal_compression: 0 +2025/05/26-19:13:17.274627 40 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.274628 40 Options.atomic_flush: 0 +2025/05/26-19:13:17.274628 40 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.274630 40 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.274632 40 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.274632 40 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.274633 40 Options.write_identity_file: 1 +2025/05/26-19:13:17.274634 40 Options.log_readahead_size: 0 +2025/05/26-19:13:17.274634 40 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.274635 40 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.274635 40 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.274636 40 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.274636 40 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.274637 40 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.274638 40 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.274638 40 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.274639 40 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.274641 40 Options.max_background_jobs: 2 +2025/05/26-19:13:17.274642 40 Options.max_background_compactions: -1 +2025/05/26-19:13:17.274642 40 Options.max_subcompactions: 1 +2025/05/26-19:13:17.274643 40 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.274643 40 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.274644 40 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.274646 40 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.274647 40 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.274647 40 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.274650 40 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.274651 40 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.274652 40 Options.max_open_files: 256 +2025/05/26-19:13:17.274653 40 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.274655 40 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.274655 40 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.274656 40 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.274658 40 Options.max_background_flushes: -1 +2025/05/26-19:13:17.274658 40 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.274659 40 Compression algorithms supported: +2025/05/26-19:13:17.274660 40 kZSTD supported: 0 +2025/05/26-19:13:17.274660 40 kXpressCompression supported: 0 +2025/05/26-19:13:17.274661 40 kBZip2Compression supported: 0 +2025/05/26-19:13:17.274662 40 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.274662 40 kLZ4Compression supported: 1 +2025/05/26-19:13:17.274663 40 kZlibCompression supported: 0 +2025/05/26-19:13:17.274663 40 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.274664 40 kSnappyCompression supported: 1 +2025/05/26-19:13:17.274665 40 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.274665 40 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.274666 40 Jemalloc supported: 0 +2025/05/26-19:13:17.276753 40 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.276756 40 Options.merge_operator: None +2025/05/26-19:13:17.276757 40 Options.compaction_filter: None +2025/05/26-19:13:17.276758 40 Options.compaction_filter_factory: None +2025/05/26-19:13:17.276758 40 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.276785 40 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.276786 40 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.276798 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68332cc0) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff83c0a210 + block_cache: 0xffff6820a210 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,93 +155,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.820907 41 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.820908 41 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.820908 41 Options.compression: LZ4 -2025/05/04-10:09:55.820909 41 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.820910 41 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.820910 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.820911 41 Options.num_levels: 7 -2025/05/04-10:09:55.820911 41 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.821029 41 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.821030 41 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.821030 41 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.821032 41 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.821034 41 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.821036 41 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.821038 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.821039 41 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.821039 41 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.821040 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.821040 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.821042 41 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.821043 41 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.821044 41 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.821044 41 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.821045 41 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.821045 41 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.821046 41 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.821046 41 Options.compression_opts.enabled: false -2025/05/04-10:09:55.821047 41 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.821048 41 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.821049 41 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.821049 41 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.821050 41 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.821050 41 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.821051 41 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.821053 41 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.821129 41 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.821130 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.821131 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.821131 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.821132 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.821132 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.821133 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.821133 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.821134 41 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.821134 41 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.821135 41 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.821136 41 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.821136 41 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.821137 41 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.821137 41 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.821138 41 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.821139 41 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.821139 41 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.821140 41 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.821157 41 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.821158 41 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.821159 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.821160 41 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.821160 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.821161 41 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.821162 41 Options.table_properties_collectors: -2025/05/04-10:09:55.821163 41 Options.inplace_update_support: 0 -2025/05/04-10:09:55.821163 41 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.821183 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.821185 41 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.821185 41 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.821186 41 Options.bloom_locality: 0 -2025/05/04-10:09:55.821186 41 Options.max_successive_merges: 0 -2025/05/04-10:09:55.821187 41 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.821188 41 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.821188 41 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.821189 41 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.821189 41 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.821190 41 Options.ttl: 2592000 -2025/05/04-10:09:55.821191 41 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.821191 41 Options.default_temperature: kUnknown -2025/05/04-10:09:55.821192 41 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.821192 41 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.821193 41 Options.enable_blob_files: false -2025/05/04-10:09:55.821193 41 Options.min_blob_size: 0 -2025/05/04-10:09:55.821194 41 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.821195 41 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.821196 41 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.821196 41 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.821197 41 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.821198 41 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.821198 41 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.821199 41 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.821199 41 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.828685 41 DB pointer 0xffff83c62000 +2025/05/26-19:13:17.276804 40 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.276805 40 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.276805 40 Options.compression: LZ4 +2025/05/26-19:13:17.276806 40 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.276806 40 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.276807 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.276809 40 Options.num_levels: 7 +2025/05/26-19:13:17.276809 40 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.276810 40 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.276811 40 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.276811 40 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.276812 40 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.276813 40 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.276813 40 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.276814 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.276816 40 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.276816 40 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.276817 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.276818 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.276818 40 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.276819 40 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.276822 40 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.276823 40 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.276823 40 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.276824 40 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.276824 40 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.276825 40 Options.compression_opts.enabled: false +2025/05/26-19:13:17.276826 40 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.276826 40 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.276827 40 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.276828 40 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.276829 40 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.276829 40 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.276830 40 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.276830 40 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.276831 40 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.276832 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.276832 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.276833 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.276834 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.276835 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.276836 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.276837 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.276837 40 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.276838 40 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.276838 40 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.276839 40 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.276840 40 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.276840 40 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.276841 40 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.276842 40 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.276842 40 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.276843 40 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.276843 40 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.276844 40 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.276844 40 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.276845 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.276846 40 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.276846 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.276847 40 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.276848 40 Options.table_properties_collectors: +2025/05/26-19:13:17.276848 40 Options.inplace_update_support: 0 +2025/05/26-19:13:17.276849 40 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.276850 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.276850 40 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.276851 40 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.276851 40 Options.bloom_locality: 0 +2025/05/26-19:13:17.276852 40 Options.max_successive_merges: 0 +2025/05/26-19:13:17.276852 40 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.276853 40 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.276853 40 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.276854 40 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.276855 40 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.276855 40 Options.ttl: 2592000 +2025/05/26-19:13:17.276856 40 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.276856 40 Options.default_temperature: kUnknown +2025/05/26-19:13:17.276857 40 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.276857 40 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.276858 40 Options.enable_blob_files: false +2025/05/26-19:13:17.276859 40 Options.min_blob_size: 0 +2025/05/26-19:13:17.276859 40 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.276860 40 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.276860 40 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.276861 40 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.276862 40 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.276862 40 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.276863 40 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.276863 40 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.276864 40 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.290568 40 DB pointer 0xffff68262000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/MANIFEST-000013 deleted file mode 100644 index 9eb8902264650ba28dfda66d8cfd0989d1a680cd..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/MANIFEST-000013 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/OPTIONS-000011 deleted file mode 100644 index 1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/OPTIONS-000011 +++ /dev/null @@ -1,214 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/000018.log b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/000018.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/CURRENT index 625d147412870471b19d90716ccc20a7f207a5c3..7fbb62349a171cb93c0e07360fd312e3344b3571 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/CURRENT @@ -1 +1 @@ -MANIFEST-000013 +MANIFEST-000023 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/LOG index db965eb6126b0526b3502af18a7e30fb34f50641..dbe6b760ce80804ffffe8791c946405f70829637 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.594938 37 RocksDB version: 9.9.3 -2025/05/04-10:09:55.595104 37 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.595106 37 DB SUMMARY -2025/05/04-10:09:55.595107 37 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.595109 37 DB Session ID: CD0SHR3DDC5AMRBDXMDQ -2025/05/04-10:09:55.595564 37 CURRENT file: CURRENT -2025/05/04-10:09:55.595566 37 IDENTITY file: IDENTITY -2025/05/04-10:09:55.595593 37 MANIFEST file: MANIFEST-000009 size: 497 Bytes -2025/05/04-10:09:55.595595 37 SST files in ./storage/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad dir, Total Num: 0, files: -2025/05/04-10:09:55.595596 37 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad: 000008.log size: 0 ; -2025/05/04-10:09:55.595597 37 Options.error_if_exists: 0 -2025/05/04-10:09:55.595598 37 Options.create_if_missing: 1 -2025/05/04-10:09:55.595599 37 Options.paranoid_checks: 1 -2025/05/04-10:09:55.595599 37 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.595600 37 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.595601 37 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.595602 37 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.595603 37 Options.env: 0xffff86034000 -2025/05/04-10:09:55.595604 37 Options.fs: PosixFileSystem -2025/05/04-10:09:55.595604 37 Options.info_log: 0xffff860ac000 -2025/05/04-10:09:55.595605 37 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.595606 37 Options.statistics: (nil) -2025/05/04-10:09:55.595607 37 Options.use_fsync: 0 -2025/05/04-10:09:55.595607 37 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.595608 37 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.595609 37 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.595609 37 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.595610 37 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.595611 37 Options.allow_fallocate: 1 -2025/05/04-10:09:55.595611 37 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.595612 37 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.595612 37 Options.use_direct_reads: 0 -2025/05/04-10:09:55.595613 37 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.595614 37 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.595614 37 Options.db_log_dir: -2025/05/04-10:09:55.595615 37 Options.wal_dir: -2025/05/04-10:09:55.595615 37 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.595616 37 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.595617 37 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.595618 37 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.595618 37 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.595619 37 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.595620 37 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.595621 37 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.595621 37 Options.write_buffer_manager: 0xffff860090c0 -2025/05/04-10:09:55.595622 37 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.595623 37 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.595624 37 Options.rate_limiter: (nil) -2025/05/04-10:09:55.595625 37 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.595625 37 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.595626 37 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.595627 37 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.595627 37 Options.unordered_write: 0 -2025/05/04-10:09:55.595629 37 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.595629 37 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.595630 37 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.595631 37 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.595631 37 Options.row_cache: None -2025/05/04-10:09:55.595632 37 Options.wal_filter: None -2025/05/04-10:09:55.595632 37 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.595633 37 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.595634 37 Options.two_write_queues: 0 -2025/05/04-10:09:55.595634 37 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.595635 37 Options.wal_compression: 0 -2025/05/04-10:09:55.595635 37 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.595636 37 Options.atomic_flush: 0 -2025/05/04-10:09:55.595637 37 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.595637 37 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.595638 37 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.595638 37 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.595639 37 Options.write_identity_file: 1 -2025/05/04-10:09:55.595640 37 Options.log_readahead_size: 0 -2025/05/04-10:09:55.595641 37 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.595641 37 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.595642 37 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.595643 37 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.595643 37 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.595644 37 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.595644 37 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.595646 37 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.595647 37 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.595647 37 Options.max_background_jobs: 2 -2025/05/04-10:09:55.595648 37 Options.max_background_compactions: -1 -2025/05/04-10:09:55.595649 37 Options.max_subcompactions: 1 -2025/05/04-10:09:55.595649 37 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.595650 37 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.595650 37 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.595651 37 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.595652 37 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.595653 37 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.595654 37 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.595654 37 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.595655 37 Options.max_open_files: 256 -2025/05/04-10:09:55.595656 37 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.595656 37 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.595657 37 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.595657 37 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.595658 37 Options.max_background_flushes: -1 -2025/05/04-10:09:55.595658 37 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.595659 37 Compression algorithms supported: -2025/05/04-10:09:55.595660 37 kZSTD supported: 0 -2025/05/04-10:09:55.595661 37 kXpressCompression supported: 0 -2025/05/04-10:09:55.595661 37 kBZip2Compression supported: 0 -2025/05/04-10:09:55.595662 37 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.595662 37 kLZ4Compression supported: 1 -2025/05/04-10:09:55.595663 37 kZlibCompression supported: 0 -2025/05/04-10:09:55.595664 37 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.595664 37 kSnappyCompression supported: 1 -2025/05/04-10:09:55.595665 37 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.595666 37 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.595667 37 Jemalloc supported: 0 -2025/05/04-10:09:55.598130 37 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.598132 37 Options.merge_operator: None -2025/05/04-10:09:55.598133 37 Options.compaction_filter: None -2025/05/04-10:09:55.598134 37 Options.compaction_filter_factory: None -2025/05/04-10:09:55.598135 37 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.598136 37 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.598137 37 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.598156 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff86000060) +2025/05/26-19:13:17.061278 36 RocksDB version: 9.9.3 +2025/05/26-19:13:17.064735 36 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.064736 36 DB SUMMARY +2025/05/26-19:13:17.064738 36 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.064738 36 DB Session ID: PCRZT7AMVX68CX0XDWTX +2025/05/26-19:13:17.066456 36 CURRENT file: CURRENT +2025/05/26-19:13:17.066457 36 IDENTITY file: IDENTITY +2025/05/26-19:13:17.066641 36 MANIFEST file: MANIFEST-000013 size: 833 Bytes +2025/05/26-19:13:17.066643 36 SST files in ./storage/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad dir, Total Num: 2, files: 000017.sst 000019.sst +2025/05/26-19:13:17.066644 36 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad: 000018.log size: 0 ; +2025/05/26-19:13:17.066646 36 Options.error_if_exists: 0 +2025/05/26-19:13:17.066646 36 Options.create_if_missing: 1 +2025/05/26-19:13:17.066647 36 Options.paranoid_checks: 1 +2025/05/26-19:13:17.066648 36 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.066648 36 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.066649 36 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.066650 36 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.066650 36 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.066651 36 Options.fs: PosixFileSystem +2025/05/26-19:13:17.066651 36 Options.info_log: 0xffff69aa1000 +2025/05/26-19:13:17.066652 36 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.066652 36 Options.statistics: (nil) +2025/05/26-19:13:17.066653 36 Options.use_fsync: 0 +2025/05/26-19:13:17.066653 36 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.066654 36 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.066655 36 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.066655 36 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.066656 36 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.066656 36 Options.allow_fallocate: 1 +2025/05/26-19:13:17.066657 36 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.066657 36 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.066658 36 Options.use_direct_reads: 0 +2025/05/26-19:13:17.066659 36 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.066659 36 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.066660 36 Options.db_log_dir: +2025/05/26-19:13:17.066660 36 Options.wal_dir: +2025/05/26-19:13:17.066661 36 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.066661 36 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.066662 36 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.066663 36 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.066663 36 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.066664 36 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.066664 36 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.066665 36 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.066665 36 Options.write_buffer_manager: 0xffff69a090c0 +2025/05/26-19:13:17.066666 36 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.066667 36 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.066667 36 Options.rate_limiter: (nil) +2025/05/26-19:13:17.066669 36 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.066670 36 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.066671 36 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.066671 36 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.066672 36 Options.unordered_write: 0 +2025/05/26-19:13:17.066673 36 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.066674 36 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.066674 36 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.066675 36 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.066675 36 Options.row_cache: None +2025/05/26-19:13:17.066676 36 Options.wal_filter: None +2025/05/26-19:13:17.066677 36 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.066678 36 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.066678 36 Options.two_write_queues: 0 +2025/05/26-19:13:17.066679 36 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.066680 36 Options.wal_compression: 0 +2025/05/26-19:13:17.066680 36 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.066681 36 Options.atomic_flush: 0 +2025/05/26-19:13:17.066681 36 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.066682 36 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.066682 36 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.066683 36 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.066684 36 Options.write_identity_file: 1 +2025/05/26-19:13:17.066684 36 Options.log_readahead_size: 0 +2025/05/26-19:13:17.066685 36 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.066685 36 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.066686 36 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.066687 36 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.066687 36 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.066688 36 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.066688 36 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.066689 36 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.066690 36 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.066690 36 Options.max_background_jobs: 2 +2025/05/26-19:13:17.066691 36 Options.max_background_compactions: -1 +2025/05/26-19:13:17.066691 36 Options.max_subcompactions: 1 +2025/05/26-19:13:17.066692 36 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.066692 36 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.066693 36 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.066695 36 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.066695 36 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.066696 36 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.066697 36 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.066697 36 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.066698 36 Options.max_open_files: 256 +2025/05/26-19:13:17.066698 36 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.066699 36 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.066700 36 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.066700 36 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.066701 36 Options.max_background_flushes: -1 +2025/05/26-19:13:17.066702 36 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.066702 36 Compression algorithms supported: +2025/05/26-19:13:17.066703 36 kZSTD supported: 0 +2025/05/26-19:13:17.066704 36 kXpressCompression supported: 0 +2025/05/26-19:13:17.066704 36 kBZip2Compression supported: 0 +2025/05/26-19:13:17.066705 36 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.066705 36 kLZ4Compression supported: 1 +2025/05/26-19:13:17.066706 36 kZlibCompression supported: 0 +2025/05/26-19:13:17.066707 36 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.066707 36 kSnappyCompression supported: 1 +2025/05/26-19:13:17.066708 36 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.066709 36 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.066709 36 Jemalloc supported: 0 +2025/05/26-19:13:17.070611 36 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070613 36 Options.merge_operator: None +2025/05/26-19:13:17.070614 36 Options.compaction_filter: None +2025/05/26-19:13:17.070614 36 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070616 36 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070616 36 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070617 36 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070647 36 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff69a00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff86009010 + block_cache: 0xffff69a09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,103 +155,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.598157 37 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.598158 37 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.598160 37 Options.compression: LZ4 -2025/05/04-10:09:55.598161 37 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.598162 37 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.598163 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.598164 37 Options.num_levels: 7 -2025/05/04-10:09:55.598164 37 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.598165 37 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.598166 37 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.598166 37 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.598167 37 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.598168 37 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.598169 37 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.598169 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.598170 37 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.598171 37 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.598171 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.598172 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.598173 37 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.598173 37 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.598174 37 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.598175 37 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.598176 37 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.598176 37 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.598177 37 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.598177 37 Options.compression_opts.enabled: false -2025/05/04-10:09:55.598178 37 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.598179 37 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.598179 37 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.598180 37 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.598181 37 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.598181 37 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.598182 37 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.598183 37 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.598184 37 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.598186 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.598186 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.598187 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.598187 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.598188 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.598188 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.598189 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.598190 37 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.598190 37 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.598191 37 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.598192 37 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.598192 37 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.598193 37 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.598195 37 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.598196 37 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.598197 37 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.598197 37 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.598198 37 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.598198 37 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.598199 37 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.598200 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.598201 37 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.598201 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.598202 37 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.598205 37 Options.table_properties_collectors: -2025/05/04-10:09:55.598206 37 Options.inplace_update_support: 0 -2025/05/04-10:09:55.598206 37 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.598207 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.598208 37 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.598209 37 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.598209 37 Options.bloom_locality: 0 -2025/05/04-10:09:55.598210 37 Options.max_successive_merges: 0 -2025/05/04-10:09:55.598211 37 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.598211 37 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.598212 37 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.598212 37 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.598213 37 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.598214 37 Options.ttl: 2592000 -2025/05/04-10:09:55.598215 37 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.598215 37 Options.default_temperature: kUnknown -2025/05/04-10:09:55.598216 37 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.598216 37 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.598217 37 Options.enable_blob_files: false -2025/05/04-10:09:55.598218 37 Options.min_blob_size: 0 -2025/05/04-10:09:55.598218 37 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.598219 37 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.598220 37 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.598221 37 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.598221 37 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.598222 37 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.598223 37 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.598223 37 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.598224 37 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.598876 37 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.598878 37 Options.merge_operator: None -2025/05/04-10:09:55.598879 37 Options.compaction_filter: None -2025/05/04-10:09:55.598879 37 Options.compaction_filter_factory: None -2025/05/04-10:09:55.598880 37 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.598880 37 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.598881 37 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.598890 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff86000060) +2025/05/26-19:13:17.070651 36 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070652 36 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070653 36 Options.compression: LZ4 +2025/05/26-19:13:17.070654 36 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070654 36 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070655 36 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070656 36 Options.num_levels: 7 +2025/05/26-19:13:17.070656 36 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070657 36 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070658 36 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070659 36 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070660 36 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070660 36 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070661 36 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070662 36 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070662 36 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070663 36 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070664 36 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070664 36 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070665 36 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070666 36 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070666 36 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070667 36 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070668 36 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070668 36 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070669 36 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070669 36 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070670 36 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070670 36 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070671 36 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070671 36 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070672 36 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070673 36 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070673 36 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070674 36 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070676 36 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070677 36 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070677 36 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070678 36 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070678 36 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070679 36 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070679 36 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070681 36 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070681 36 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070682 36 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070682 36 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070683 36 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070683 36 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070684 36 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070685 36 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070685 36 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070686 36 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070686 36 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070687 36 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070688 36 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070688 36 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070689 36 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070690 36 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070691 36 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070692 36 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070693 36 Options.table_properties_collectors: +2025/05/26-19:13:17.070693 36 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070694 36 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070694 36 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070695 36 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070696 36 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070696 36 Options.bloom_locality: 0 +2025/05/26-19:13:17.070697 36 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070700 36 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070701 36 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070701 36 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070702 36 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070702 36 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070703 36 Options.ttl: 2592000 +2025/05/26-19:13:17.070703 36 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070704 36 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070704 36 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070705 36 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070706 36 Options.enable_blob_files: false +2025/05/26-19:13:17.070707 36 Options.min_blob_size: 0 +2025/05/26-19:13:17.070707 36 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070708 36 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070708 36 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070709 36 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070710 36 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070710 36 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070711 36 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070712 36 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070713 36 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070831 36 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070832 36 Options.merge_operator: None +2025/05/26-19:13:17.070832 36 Options.compaction_filter: None +2025/05/26-19:13:17.070833 36 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070835 36 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070836 36 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070837 36 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070842 36 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff69a00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -262,7 +262,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff86009010 + block_cache: 0xffff69a09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -290,103 +290,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.598892 37 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.598893 37 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.598894 37 Options.compression: LZ4 -2025/05/04-10:09:55.598894 37 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.598895 37 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.598896 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.598897 37 Options.num_levels: 7 -2025/05/04-10:09:55.598898 37 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.598899 37 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.598900 37 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.598901 37 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.598903 37 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.598903 37 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.598904 37 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.598904 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.598905 37 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.598906 37 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.598906 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.598907 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.598907 37 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.598909 37 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.598909 37 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.598910 37 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.598910 37 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.598911 37 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.598912 37 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.598912 37 Options.compression_opts.enabled: false -2025/05/04-10:09:55.598913 37 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.598913 37 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.598914 37 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.598914 37 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.598915 37 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.598915 37 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.598916 37 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.598917 37 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.598920 37 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.598920 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.598921 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.598922 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.598922 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.598923 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.598923 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.598924 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.598924 37 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.598925 37 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.598926 37 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.598927 37 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.598928 37 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.598928 37 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.598929 37 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.598930 37 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.598930 37 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.598931 37 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.598932 37 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.598932 37 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.598933 37 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.598933 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.598934 37 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.598935 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.598935 37 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.598937 37 Options.table_properties_collectors: -2025/05/04-10:09:55.598938 37 Options.inplace_update_support: 0 -2025/05/04-10:09:55.598939 37 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.598939 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.598940 37 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.598940 37 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.598941 37 Options.bloom_locality: 0 -2025/05/04-10:09:55.598941 37 Options.max_successive_merges: 0 -2025/05/04-10:09:55.598942 37 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.598943 37 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.598944 37 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.598944 37 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.598945 37 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.598945 37 Options.ttl: 2592000 -2025/05/04-10:09:55.598946 37 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.598947 37 Options.default_temperature: kUnknown -2025/05/04-10:09:55.598947 37 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.598948 37 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.598948 37 Options.enable_blob_files: false -2025/05/04-10:09:55.598949 37 Options.min_blob_size: 0 -2025/05/04-10:09:55.598949 37 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.598951 37 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.598952 37 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.598953 37 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.598956 37 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.598958 37 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.598959 37 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.598959 37 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.598960 37 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.598988 37 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.598989 37 Options.merge_operator: None -2025/05/04-10:09:55.598989 37 Options.compaction_filter: None -2025/05/04-10:09:55.598990 37 Options.compaction_filter_factory: None -2025/05/04-10:09:55.598991 37 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.598991 37 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.598992 37 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.598999 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff86000060) +2025/05/26-19:13:17.070846 36 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070847 36 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070847 36 Options.compression: LZ4 +2025/05/26-19:13:17.070848 36 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070848 36 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070849 36 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070850 36 Options.num_levels: 7 +2025/05/26-19:13:17.070850 36 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070851 36 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070852 36 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070852 36 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070854 36 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070855 36 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070855 36 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070856 36 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070856 36 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070857 36 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070858 36 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070858 36 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070859 36 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070859 36 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070860 36 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070861 36 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070861 36 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070862 36 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070862 36 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070866 36 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070868 36 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070868 36 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070869 36 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070870 36 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070870 36 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070871 36 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070873 36 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070873 36 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070874 36 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070876 36 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070876 36 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070877 36 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070878 36 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070878 36 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070879 36 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070880 36 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070882 36 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070882 36 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070883 36 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070884 36 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070885 36 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070885 36 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070886 36 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070887 36 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070888 36 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070888 36 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070889 36 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070889 36 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070890 36 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070891 36 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070893 36 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070894 36 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070895 36 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070896 36 Options.table_properties_collectors: +2025/05/26-19:13:17.070897 36 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070899 36 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070900 36 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070900 36 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070901 36 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070902 36 Options.bloom_locality: 0 +2025/05/26-19:13:17.070903 36 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070903 36 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070904 36 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070905 36 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070906 36 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070906 36 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070907 36 Options.ttl: 2592000 +2025/05/26-19:13:17.070908 36 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070909 36 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070910 36 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070912 36 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070913 36 Options.enable_blob_files: false +2025/05/26-19:13:17.070913 36 Options.min_blob_size: 0 +2025/05/26-19:13:17.070914 36 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070915 36 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070916 36 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070916 36 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070918 36 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070919 36 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070920 36 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070921 36 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070921 36 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070991 36 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070992 36 Options.merge_operator: None +2025/05/26-19:13:17.070993 36 Options.compaction_filter: None +2025/05/26-19:13:17.070994 36 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070994 36 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070995 36 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070996 36 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.071002 36 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff69a00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -397,7 +397,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff86009010 + block_cache: 0xffff69a09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -425,103 +425,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.599001 37 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.599002 37 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.599002 37 Options.compression: LZ4 -2025/05/04-10:09:55.599003 37 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.599003 37 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.599004 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.599005 37 Options.num_levels: 7 -2025/05/04-10:09:55.599005 37 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.599006 37 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.599006 37 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.599007 37 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.599008 37 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.599009 37 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.599009 37 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.599010 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.599011 37 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.599011 37 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.599012 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.599013 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.599014 37 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.599014 37 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.599015 37 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.599015 37 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.599016 37 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.599016 37 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.599017 37 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.599018 37 Options.compression_opts.enabled: false -2025/05/04-10:09:55.599018 37 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.599019 37 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.599019 37 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.599020 37 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.599021 37 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.599022 37 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.599022 37 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.599023 37 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.599023 37 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.599024 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.599025 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.599026 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.599027 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.599027 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.599028 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.599028 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.599029 37 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.599029 37 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.599030 37 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.599031 37 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.599031 37 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.599032 37 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.599033 37 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.599034 37 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.599034 37 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.599035 37 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.599036 37 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.599037 37 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.599037 37 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.599038 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.599038 37 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.599039 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.599040 37 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.599041 37 Options.table_properties_collectors: -2025/05/04-10:09:55.599041 37 Options.inplace_update_support: 0 -2025/05/04-10:09:55.599042 37 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.599043 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.599044 37 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.599045 37 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.599045 37 Options.bloom_locality: 0 -2025/05/04-10:09:55.599046 37 Options.max_successive_merges: 0 -2025/05/04-10:09:55.599046 37 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.599047 37 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.599048 37 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.599048 37 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.599049 37 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.599049 37 Options.ttl: 2592000 -2025/05/04-10:09:55.599050 37 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.599051 37 Options.default_temperature: kUnknown -2025/05/04-10:09:55.599051 37 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.599052 37 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.599052 37 Options.enable_blob_files: false -2025/05/04-10:09:55.599053 37 Options.min_blob_size: 0 -2025/05/04-10:09:55.599054 37 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.599054 37 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.599055 37 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.599056 37 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.599057 37 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.599058 37 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.599058 37 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.599059 37 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.599060 37 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.599075 37 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.599076 37 Options.merge_operator: None -2025/05/04-10:09:55.599077 37 Options.compaction_filter: None -2025/05/04-10:09:55.599077 37 Options.compaction_filter_factory: None -2025/05/04-10:09:55.599078 37 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.599078 37 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.599079 37 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.599085 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff86000060) +2025/05/26-19:13:17.071006 36 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.071007 36 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.071007 36 Options.compression: LZ4 +2025/05/26-19:13:17.071008 36 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.071008 36 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.071009 36 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.071011 36 Options.num_levels: 7 +2025/05/26-19:13:17.071012 36 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.071013 36 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.071013 36 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.071014 36 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.071014 36 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.071015 36 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.071016 36 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071016 36 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071017 36 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071017 36 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.071018 36 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071018 36 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071019 36 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.071020 36 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.071020 36 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.071021 36 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071021 36 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071022 36 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071024 36 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071025 36 Options.compression_opts.enabled: false +2025/05/26-19:13:17.071027 36 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071028 36 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.071028 36 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.071029 36 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.071029 36 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.071030 36 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.071030 36 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.071031 36 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.071032 36 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.071033 36 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.071034 36 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.071034 36 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.071035 36 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.071035 36 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.071036 36 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.071039 36 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.071040 36 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.071040 36 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.071041 36 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.071041 36 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.071042 36 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.071043 36 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.071044 36 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.071046 36 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.071046 36 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.071047 36 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.071048 36 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.071048 36 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.071049 36 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.071049 36 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.071050 36 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.071050 36 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.071051 36 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.071052 36 Options.table_properties_collectors: +2025/05/26-19:13:17.071053 36 Options.inplace_update_support: 0 +2025/05/26-19:13:17.071054 36 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.071054 36 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.071055 36 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.071056 36 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.071056 36 Options.bloom_locality: 0 +2025/05/26-19:13:17.071057 36 Options.max_successive_merges: 0 +2025/05/26-19:13:17.071057 36 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.071058 36 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.071060 36 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.071062 36 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.071062 36 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.071065 36 Options.ttl: 2592000 +2025/05/26-19:13:17.071067 36 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.071068 36 Options.default_temperature: kUnknown +2025/05/26-19:13:17.071068 36 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.071069 36 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.071071 36 Options.enable_blob_files: false +2025/05/26-19:13:17.071071 36 Options.min_blob_size: 0 +2025/05/26-19:13:17.071072 36 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.071073 36 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.071073 36 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.071074 36 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.071075 36 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.071075 36 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.071076 36 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.071076 36 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.071077 36 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.071103 36 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.071104 36 Options.merge_operator: None +2025/05/26-19:13:17.071105 36 Options.compaction_filter: None +2025/05/26-19:13:17.071105 36 Options.compaction_filter_factory: None +2025/05/26-19:13:17.071106 36 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.071107 36 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.071107 36 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.071115 36 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff69a00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -532,7 +532,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff86009010 + block_cache: 0xffff69a09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -560,103 +560,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.599087 37 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.599088 37 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.599088 37 Options.compression: LZ4 -2025/05/04-10:09:55.599089 37 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.599089 37 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.599090 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.599090 37 Options.num_levels: 7 -2025/05/04-10:09:55.599091 37 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.599091 37 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.599092 37 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.599093 37 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.599093 37 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.599094 37 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.599094 37 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.599095 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.599095 37 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.599096 37 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.599097 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.599097 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.599098 37 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.599098 37 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.599099 37 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.599099 37 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.599100 37 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.599100 37 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.599101 37 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.599101 37 Options.compression_opts.enabled: false -2025/05/04-10:09:55.599102 37 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.599102 37 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.599103 37 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.599104 37 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.599104 37 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.599105 37 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.599105 37 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.599106 37 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.599107 37 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.599109 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.599110 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.599110 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.599111 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.599112 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.599112 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.599113 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.599113 37 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.599114 37 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.599115 37 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.599115 37 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.599116 37 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.599116 37 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.599117 37 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.599118 37 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.599118 37 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.599119 37 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.599121 37 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.599122 37 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.599122 37 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.599123 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.599124 37 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.599124 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.599125 37 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.599126 37 Options.table_properties_collectors: -2025/05/04-10:09:55.599127 37 Options.inplace_update_support: 0 -2025/05/04-10:09:55.599128 37 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.599128 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.599129 37 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.599130 37 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.599130 37 Options.bloom_locality: 0 -2025/05/04-10:09:55.599131 37 Options.max_successive_merges: 0 -2025/05/04-10:09:55.599131 37 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.599132 37 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.599132 37 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.599133 37 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.599133 37 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.599134 37 Options.ttl: 2592000 -2025/05/04-10:09:55.599134 37 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.599135 37 Options.default_temperature: kUnknown -2025/05/04-10:09:55.599135 37 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.599136 37 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.599137 37 Options.enable_blob_files: false -2025/05/04-10:09:55.599137 37 Options.min_blob_size: 0 -2025/05/04-10:09:55.599138 37 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.599138 37 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.599139 37 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.599141 37 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.599142 37 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.599143 37 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.599143 37 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.599144 37 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.599144 37 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.599162 37 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.599163 37 Options.merge_operator: None -2025/05/04-10:09:55.599163 37 Options.compaction_filter: None -2025/05/04-10:09:55.599164 37 Options.compaction_filter_factory: None -2025/05/04-10:09:55.599164 37 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.599165 37 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.599165 37 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.599171 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff86000060) +2025/05/26-19:13:17.071121 36 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.071121 36 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.071122 36 Options.compression: LZ4 +2025/05/26-19:13:17.071123 36 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.071123 36 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.071124 36 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.071125 36 Options.num_levels: 7 +2025/05/26-19:13:17.071125 36 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.071126 36 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.071126 36 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.071127 36 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.071128 36 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.071128 36 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.071129 36 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071130 36 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071130 36 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071131 36 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.071132 36 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071132 36 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071133 36 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.071136 36 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.071137 36 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.071138 36 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071138 36 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071139 36 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071139 36 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071140 36 Options.compression_opts.enabled: false +2025/05/26-19:13:17.071141 36 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071141 36 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.071142 36 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.071143 36 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.071144 36 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.071144 36 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.071145 36 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.071145 36 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.071146 36 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.071148 36 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.071150 36 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.071152 36 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.071153 36 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.071153 36 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.071155 36 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.071156 36 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.071157 36 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.071158 36 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.071160 36 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.071160 36 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.071161 36 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.071161 36 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.071164 36 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.071165 36 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.071166 36 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.071167 36 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.071170 36 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.071172 36 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.071173 36 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.071174 36 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.071185 36 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.071185 36 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.071186 36 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.071187 36 Options.table_properties_collectors: +2025/05/26-19:13:17.071188 36 Options.inplace_update_support: 0 +2025/05/26-19:13:17.071189 36 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.071191 36 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.071192 36 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.071193 36 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.071195 36 Options.bloom_locality: 0 +2025/05/26-19:13:17.071196 36 Options.max_successive_merges: 0 +2025/05/26-19:13:17.071196 36 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.071197 36 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.071198 36 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.071200 36 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.071200 36 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.071201 36 Options.ttl: 2592000 +2025/05/26-19:13:17.071202 36 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.071203 36 Options.default_temperature: kUnknown +2025/05/26-19:13:17.071203 36 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.071204 36 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.071205 36 Options.enable_blob_files: false +2025/05/26-19:13:17.071206 36 Options.min_blob_size: 0 +2025/05/26-19:13:17.071206 36 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.071207 36 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.071208 36 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.071209 36 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.071210 36 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.071211 36 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.071214 36 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.071215 36 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.071217 36 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.071241 36 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.071242 36 Options.merge_operator: None +2025/05/26-19:13:17.071242 36 Options.compaction_filter: None +2025/05/26-19:13:17.071243 36 Options.compaction_filter_factory: None +2025/05/26-19:13:17.071243 36 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.071244 36 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.071244 36 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.071250 36 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff69a00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -667,7 +667,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff86009010 + block_cache: 0xffff69a09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -695,93 +695,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.599172 37 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.599173 37 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.599174 37 Options.compression: LZ4 -2025/05/04-10:09:55.599174 37 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.599175 37 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.599175 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.599176 37 Options.num_levels: 7 -2025/05/04-10:09:55.599176 37 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.599177 37 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.599177 37 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.599178 37 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.599178 37 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.599179 37 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.599180 37 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.599182 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.599182 37 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.599183 37 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.599184 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.599184 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.599185 37 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.599186 37 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.599186 37 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.599187 37 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.599188 37 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.599188 37 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.599189 37 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.599189 37 Options.compression_opts.enabled: false -2025/05/04-10:09:55.599190 37 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.599190 37 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.599191 37 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.599191 37 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.599192 37 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.599192 37 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.599193 37 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.599193 37 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.599194 37 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.599195 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.599195 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.599196 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.599197 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.599197 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.599198 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.599199 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.599199 37 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.599200 37 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.599200 37 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.599201 37 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.599201 37 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.599202 37 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.599202 37 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.599203 37 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.599204 37 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.599204 37 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.599205 37 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.599205 37 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.599206 37 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.599206 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.599207 37 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.599207 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.599208 37 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.599209 37 Options.table_properties_collectors: -2025/05/04-10:09:55.599209 37 Options.inplace_update_support: 0 -2025/05/04-10:09:55.599210 37 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.599210 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.599211 37 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.599212 37 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.599212 37 Options.bloom_locality: 0 -2025/05/04-10:09:55.599213 37 Options.max_successive_merges: 0 -2025/05/04-10:09:55.599213 37 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.599214 37 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.599214 37 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.599215 37 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.599216 37 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.599218 37 Options.ttl: 2592000 -2025/05/04-10:09:55.599219 37 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.599220 37 Options.default_temperature: kUnknown -2025/05/04-10:09:55.599220 37 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.599221 37 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.599221 37 Options.enable_blob_files: false -2025/05/04-10:09:55.599222 37 Options.min_blob_size: 0 -2025/05/04-10:09:55.599222 37 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.599223 37 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.599224 37 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.599225 37 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.599225 37 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.599226 37 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.599227 37 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.599227 37 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.599228 37 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.645228 37 DB pointer 0xffff8606ec00 +2025/05/26-19:13:17.071255 36 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.071255 36 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.071257 36 Options.compression: LZ4 +2025/05/26-19:13:17.071258 36 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.071258 36 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.071259 36 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.071259 36 Options.num_levels: 7 +2025/05/26-19:13:17.071260 36 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.071260 36 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.071261 36 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.071262 36 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.071262 36 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.071263 36 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.071263 36 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071264 36 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071265 36 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071268 36 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.071269 36 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071269 36 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071271 36 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.071271 36 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.071272 36 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.071272 36 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071273 36 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071274 36 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071274 36 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071275 36 Options.compression_opts.enabled: false +2025/05/26-19:13:17.071276 36 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071277 36 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.071293 36 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.071294 36 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.071295 36 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.071345 36 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.071345 36 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.071346 36 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.071347 36 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.071348 36 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.071348 36 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.071349 36 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.071350 36 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.071351 36 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.071352 36 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.071353 36 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.071356 36 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.071357 36 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.071358 36 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.071361 36 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.071362 36 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.071364 36 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.071364 36 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.071365 36 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.071366 36 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.071367 36 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.071367 36 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.071369 36 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.071369 36 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.071370 36 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.071372 36 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.071373 36 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.071374 36 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.071375 36 Options.table_properties_collectors: +2025/05/26-19:13:17.071376 36 Options.inplace_update_support: 0 +2025/05/26-19:13:17.071377 36 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.071377 36 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.071379 36 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.071379 36 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.071380 36 Options.bloom_locality: 0 +2025/05/26-19:13:17.071381 36 Options.max_successive_merges: 0 +2025/05/26-19:13:17.071381 36 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.071382 36 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.071383 36 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.071383 36 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.071385 36 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.071386 36 Options.ttl: 2592000 +2025/05/26-19:13:17.071387 36 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.071387 36 Options.default_temperature: kUnknown +2025/05/26-19:13:17.071388 36 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.071389 36 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.071391 36 Options.enable_blob_files: false +2025/05/26-19:13:17.071392 36 Options.min_blob_size: 0 +2025/05/26-19:13:17.071393 36 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.071393 36 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.071394 36 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.071395 36 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.071396 36 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.071397 36 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.071398 36 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.071399 36 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.071400 36 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.106353 36 DB pointer 0xffff69a63c00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/MANIFEST-000013 deleted file mode 100644 index b15aafbedd19eb76193718cbc4b5a576c93e99ea..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/MANIFEST-000013 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/OPTIONS-000011 deleted file mode 100644 index ad2b181add715408dc69839970eebfd4c1a28b4b..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/OPTIONS-000011 +++ /dev/null @@ -1,670 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "payload"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "payload"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "mapping"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "mapping"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "version"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "version"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "vector"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "vector"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/000012.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/CURRENT index 625d147412870471b19d90716ccc20a7f207a5c3..056df57bb7f73da12edea3c09d88bc3ff790ec7c 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/CURRENT @@ -1 +1 @@ -MANIFEST-000013 +MANIFEST-000017 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/LOG index 6a0a1fe91cc75c03a2c10d3f3a93efb3dfea5bea..ee06785eb987ad90cac8f7fa9c64c8fbde9d15f1 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.790520 37 RocksDB version: 9.9.3 -2025/05/04-10:09:55.790667 37 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.790670 37 DB SUMMARY -2025/05/04-10:09:55.790672 37 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.790672 37 DB Session ID: CD0SHR3DDC5AMRBDXMDI -2025/05/04-10:09:55.791368 37 CURRENT file: CURRENT -2025/05/04-10:09:55.791372 37 IDENTITY file: IDENTITY -2025/05/04-10:09:55.791377 37 MANIFEST file: MANIFEST-000009 size: 159 Bytes -2025/05/04-10:09:55.791378 37 SST files in ./storage/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index dir, Total Num: 0, files: -2025/05/04-10:09:55.791379 37 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index: 000008.log size: 0 ; -2025/05/04-10:09:55.791380 37 Options.error_if_exists: 0 -2025/05/04-10:09:55.791381 37 Options.create_if_missing: 1 -2025/05/04-10:09:55.791382 37 Options.paranoid_checks: 1 -2025/05/04-10:09:55.791383 37 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.791383 37 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.791427 37 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.791428 37 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.791429 37 Options.env: 0xffff86034000 -2025/05/04-10:09:55.791430 37 Options.fs: PosixFileSystem -2025/05/04-10:09:55.791431 37 Options.info_log: 0xffff860ad800 -2025/05/04-10:09:55.791432 37 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.791433 37 Options.statistics: (nil) -2025/05/04-10:09:55.791433 37 Options.use_fsync: 0 -2025/05/04-10:09:55.791434 37 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.791434 37 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.791435 37 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.791436 37 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.791436 37 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.791437 37 Options.allow_fallocate: 1 -2025/05/04-10:09:55.791438 37 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.791438 37 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.791439 37 Options.use_direct_reads: 0 -2025/05/04-10:09:55.791439 37 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.791442 37 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.791443 37 Options.db_log_dir: -2025/05/04-10:09:55.791444 37 Options.wal_dir: -2025/05/04-10:09:55.791499 37 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.791500 37 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.791501 37 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.791501 37 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.791502 37 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.791503 37 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.791503 37 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.791504 37 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.791505 37 Options.write_buffer_manager: 0xffff8600a200 -2025/05/04-10:09:55.791505 37 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.791506 37 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.791507 37 Options.rate_limiter: (nil) -2025/05/04-10:09:55.791557 37 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.791558 37 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.791559 37 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.791559 37 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.791560 37 Options.unordered_write: 0 -2025/05/04-10:09:55.791561 37 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.791561 37 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.791562 37 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.791562 37 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.791563 37 Options.row_cache: None -2025/05/04-10:09:55.791564 37 Options.wal_filter: None -2025/05/04-10:09:55.791564 37 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.791565 37 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.791565 37 Options.two_write_queues: 0 -2025/05/04-10:09:55.791566 37 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.791566 37 Options.wal_compression: 0 -2025/05/04-10:09:55.791567 37 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.791568 37 Options.atomic_flush: 0 -2025/05/04-10:09:55.791635 37 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.791636 37 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.791638 37 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.791638 37 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.791639 37 Options.write_identity_file: 1 -2025/05/04-10:09:55.791640 37 Options.log_readahead_size: 0 -2025/05/04-10:09:55.791640 37 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.791641 37 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.791642 37 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.791642 37 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.791643 37 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.791643 37 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.791644 37 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.791645 37 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.791646 37 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.791646 37 Options.max_background_jobs: 2 -2025/05/04-10:09:55.791647 37 Options.max_background_compactions: -1 -2025/05/04-10:09:55.791648 37 Options.max_subcompactions: 1 -2025/05/04-10:09:55.791648 37 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.791649 37 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.791649 37 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.791650 37 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.791651 37 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.791651 37 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.791652 37 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.791652 37 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.791653 37 Options.max_open_files: 256 -2025/05/04-10:09:55.791654 37 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.791654 37 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.791655 37 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.791655 37 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.791656 37 Options.max_background_flushes: -1 -2025/05/04-10:09:55.791657 37 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.791657 37 Compression algorithms supported: -2025/05/04-10:09:55.791658 37 kZSTD supported: 0 -2025/05/04-10:09:55.791659 37 kXpressCompression supported: 0 -2025/05/04-10:09:55.791659 37 kBZip2Compression supported: 0 -2025/05/04-10:09:55.791660 37 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.791661 37 kLZ4Compression supported: 1 -2025/05/04-10:09:55.791661 37 kZlibCompression supported: 0 -2025/05/04-10:09:55.791662 37 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.791662 37 kSnappyCompression supported: 1 -2025/05/04-10:09:55.791663 37 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.791664 37 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.791665 37 Jemalloc supported: 0 -2025/05/04-10:09:55.793169 37 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.793171 37 Options.merge_operator: None -2025/05/04-10:09:55.793172 37 Options.compaction_filter: None -2025/05/04-10:09:55.793172 37 Options.compaction_filter_factory: None -2025/05/04-10:09:55.793173 37 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.793174 37 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.793175 37 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.793192 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff8613e9e0) +2025/05/26-19:13:17.274755 36 RocksDB version: 9.9.3 +2025/05/26-19:13:17.274871 36 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.274872 36 DB SUMMARY +2025/05/26-19:13:17.274874 36 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.274875 36 DB Session ID: PCRZT7AMVX68CX0XDWU0 +2025/05/26-19:13:17.275686 36 CURRENT file: CURRENT +2025/05/26-19:13:17.275688 36 IDENTITY file: IDENTITY +2025/05/26-19:13:17.275692 36 MANIFEST file: MANIFEST-000013 size: 165 Bytes +2025/05/26-19:13:17.275693 36 SST files in ./storage/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index dir, Total Num: 0, files: +2025/05/26-19:13:17.275694 36 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index: 000012.log size: 0 ; +2025/05/26-19:13:17.275695 36 Options.error_if_exists: 0 +2025/05/26-19:13:17.275696 36 Options.create_if_missing: 1 +2025/05/26-19:13:17.275697 36 Options.paranoid_checks: 1 +2025/05/26-19:13:17.275697 36 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.275698 36 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.275700 36 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.275701 36 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.275701 36 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.275702 36 Options.fs: PosixFileSystem +2025/05/26-19:13:17.275703 36 Options.info_log: 0xffff69aa2800 +2025/05/26-19:13:17.275703 36 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.275704 36 Options.statistics: (nil) +2025/05/26-19:13:17.275704 36 Options.use_fsync: 0 +2025/05/26-19:13:17.275705 36 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.275706 36 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.275706 36 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.275707 36 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.275707 36 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.275708 36 Options.allow_fallocate: 1 +2025/05/26-19:13:17.275708 36 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.275709 36 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.275709 36 Options.use_direct_reads: 0 +2025/05/26-19:13:17.275710 36 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.275710 36 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.275711 36 Options.db_log_dir: +2025/05/26-19:13:17.275711 36 Options.wal_dir: +2025/05/26-19:13:17.275713 36 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.275715 36 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.275715 36 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.275716 36 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.275717 36 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.275717 36 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.275718 36 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.275718 36 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.275719 36 Options.write_buffer_manager: 0xffff69a0a200 +2025/05/26-19:13:17.275719 36 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.275720 36 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.275720 36 Options.rate_limiter: (nil) +2025/05/26-19:13:17.275722 36 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.275722 36 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.275723 36 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.275723 36 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.275724 36 Options.unordered_write: 0 +2025/05/26-19:13:17.275724 36 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.275725 36 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.275727 36 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.275728 36 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.275729 36 Options.row_cache: None +2025/05/26-19:13:17.275729 36 Options.wal_filter: None +2025/05/26-19:13:17.275730 36 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.275730 36 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.275731 36 Options.two_write_queues: 0 +2025/05/26-19:13:17.275732 36 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.275732 36 Options.wal_compression: 0 +2025/05/26-19:13:17.275734 36 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.275735 36 Options.atomic_flush: 0 +2025/05/26-19:13:17.275735 36 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.275736 36 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.275737 36 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.275738 36 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.275738 36 Options.write_identity_file: 1 +2025/05/26-19:13:17.275739 36 Options.log_readahead_size: 0 +2025/05/26-19:13:17.275739 36 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.275740 36 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.275740 36 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.275741 36 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.275741 36 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.275742 36 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.275743 36 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.275743 36 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.275744 36 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.275745 36 Options.max_background_jobs: 2 +2025/05/26-19:13:17.275745 36 Options.max_background_compactions: -1 +2025/05/26-19:13:17.275747 36 Options.max_subcompactions: 1 +2025/05/26-19:13:17.275748 36 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.275749 36 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.275749 36 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.275750 36 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.275750 36 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.275751 36 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.275752 36 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.275752 36 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.275753 36 Options.max_open_files: 256 +2025/05/26-19:13:17.275755 36 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.275756 36 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.275756 36 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.275757 36 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.275758 36 Options.max_background_flushes: -1 +2025/05/26-19:13:17.275758 36 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.275759 36 Compression algorithms supported: +2025/05/26-19:13:17.275760 36 kZSTD supported: 0 +2025/05/26-19:13:17.275760 36 kXpressCompression supported: 0 +2025/05/26-19:13:17.275761 36 kBZip2Compression supported: 0 +2025/05/26-19:13:17.275762 36 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.275762 36 kLZ4Compression supported: 1 +2025/05/26-19:13:17.275810 36 kZlibCompression supported: 0 +2025/05/26-19:13:17.275811 36 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.275811 36 kSnappyCompression supported: 1 +2025/05/26-19:13:17.275812 36 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.275814 36 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.275815 36 Jemalloc supported: 0 +2025/05/26-19:13:17.277768 36 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.277771 36 Options.merge_operator: None +2025/05/26-19:13:17.277771 36 Options.compaction_filter: None +2025/05/26-19:13:17.277772 36 Options.compaction_filter_factory: None +2025/05/26-19:13:17.277773 36 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.277773 36 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.277774 36 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.277789 36 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff69b32cc0) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff8600a150 + block_cache: 0xffff69a0a150 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,93 +155,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.793194 37 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.793195 37 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.793195 37 Options.compression: LZ4 -2025/05/04-10:09:55.793196 37 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.793197 37 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.793198 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.793198 37 Options.num_levels: 7 -2025/05/04-10:09:55.793199 37 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.793199 37 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.793200 37 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.793201 37 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.793202 37 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.793202 37 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.793203 37 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.793204 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.793204 37 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.793205 37 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.793206 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.793206 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.793207 37 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.793208 37 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.793208 37 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.793209 37 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.793209 37 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.793210 37 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.793211 37 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.793211 37 Options.compression_opts.enabled: false -2025/05/04-10:09:55.793212 37 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.793212 37 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.793213 37 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.793214 37 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.793215 37 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.793215 37 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.793216 37 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.793217 37 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.793220 37 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.793222 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.793222 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.793223 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.793223 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.793224 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.793225 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.793225 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.793226 37 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.793226 37 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.793227 37 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.793228 37 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.793228 37 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.793229 37 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.793230 37 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.793231 37 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.793232 37 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.793232 37 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.793233 37 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.793233 37 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.793234 37 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.793235 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.793236 37 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.793236 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.793237 37 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.793244 37 Options.table_properties_collectors: -2025/05/04-10:09:55.793245 37 Options.inplace_update_support: 0 -2025/05/04-10:09:55.793246 37 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.793247 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.793247 37 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.793248 37 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.793249 37 Options.bloom_locality: 0 -2025/05/04-10:09:55.793249 37 Options.max_successive_merges: 0 -2025/05/04-10:09:55.793250 37 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.793250 37 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.793251 37 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.793251 37 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.793252 37 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.793253 37 Options.ttl: 2592000 -2025/05/04-10:09:55.793254 37 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.793254 37 Options.default_temperature: kUnknown -2025/05/04-10:09:55.793255 37 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.793255 37 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.793256 37 Options.enable_blob_files: false -2025/05/04-10:09:55.793257 37 Options.min_blob_size: 0 -2025/05/04-10:09:55.793257 37 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.793258 37 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.793259 37 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.793260 37 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.793260 37 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.793261 37 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.793262 37 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.793262 37 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.793263 37 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.804635 37 DB pointer 0xffff8606d000 +2025/05/26-19:13:17.277796 36 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.277798 36 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.277798 36 Options.compression: LZ4 +2025/05/26-19:13:17.277799 36 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.277800 36 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.277800 36 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.277802 36 Options.num_levels: 7 +2025/05/26-19:13:17.277803 36 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.277804 36 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.277805 36 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.277805 36 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.277806 36 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.277807 36 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.277807 36 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.277808 36 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.277809 36 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.277809 36 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.277810 36 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.277810 36 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.277811 36 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.277812 36 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.277816 36 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.277816 36 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.277817 36 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.277817 36 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.277818 36 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.277819 36 Options.compression_opts.enabled: false +2025/05/26-19:13:17.277819 36 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.277820 36 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.277820 36 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.277822 36 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.277824 36 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.277824 36 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.277825 36 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.277826 36 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.277827 36 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.277828 36 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.277828 36 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.277830 36 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.277831 36 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.277832 36 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.277832 36 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.277833 36 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.277833 36 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.277834 36 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.277835 36 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.277835 36 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.277836 36 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.277836 36 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.277837 36 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.277838 36 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.277838 36 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.277840 36 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.277841 36 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.277842 36 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.277842 36 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.277843 36 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.277844 36 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.277844 36 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.277845 36 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.277847 36 Options.table_properties_collectors: +2025/05/26-19:13:17.277847 36 Options.inplace_update_support: 0 +2025/05/26-19:13:17.277848 36 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.277849 36 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.277849 36 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.277850 36 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.277850 36 Options.bloom_locality: 0 +2025/05/26-19:13:17.277851 36 Options.max_successive_merges: 0 +2025/05/26-19:13:17.277854 36 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.277855 36 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.277856 36 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.277856 36 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.277857 36 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.277857 36 Options.ttl: 2592000 +2025/05/26-19:13:17.277858 36 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.277859 36 Options.default_temperature: kUnknown +2025/05/26-19:13:17.277860 36 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.277860 36 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.277861 36 Options.enable_blob_files: false +2025/05/26-19:13:17.277861 36 Options.min_blob_size: 0 +2025/05/26-19:13:17.277862 36 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.277863 36 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.277863 36 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.277864 36 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.277865 36 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.277865 36 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.277866 36 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.277867 36 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.277867 36 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.291298 36 DB pointer 0xffff69a62000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/MANIFEST-000013 deleted file mode 100644 index 3d99bb56f0ae05b0f1b90f94d514081af12f11bc..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/MANIFEST-000013 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/OPTIONS-000011 deleted file mode 100644 index 1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/OPTIONS-000011 +++ /dev/null @@ -1,214 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/000012.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/CURRENT index 625d147412870471b19d90716ccc20a7f207a5c3..056df57bb7f73da12edea3c09d88bc3ff790ec7c 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/CURRENT @@ -1 +1 @@ -MANIFEST-000013 +MANIFEST-000017 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/LOG index fcaef86da51815c244eb6bfb4d27fb1673304ebb..0c838f1950bd7eadbe61582fac51e9ce8d936e8d 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.609946 44 RocksDB version: 9.9.3 -2025/05/04-10:09:55.610074 44 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.610075 44 DB SUMMARY -2025/05/04-10:09:55.610076 44 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.610077 44 DB Session ID: CD0SHR3DDC5AMRBDXMDK -2025/05/04-10:09:55.611012 44 CURRENT file: CURRENT -2025/05/04-10:09:55.611013 44 IDENTITY file: IDENTITY -2025/05/04-10:09:55.611232 44 MANIFEST file: MANIFEST-000009 size: 497 Bytes -2025/05/04-10:09:55.611234 44 SST files in ./storage/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b dir, Total Num: 0, files: -2025/05/04-10:09:55.611235 44 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b: 000008.log size: 0 ; -2025/05/04-10:09:55.611236 44 Options.error_if_exists: 0 -2025/05/04-10:09:55.611237 44 Options.create_if_missing: 1 -2025/05/04-10:09:55.611238 44 Options.paranoid_checks: 1 -2025/05/04-10:09:55.611238 44 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.611239 44 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.611240 44 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.611242 44 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.611242 44 Options.env: 0xffff86034000 -2025/05/04-10:09:55.611243 44 Options.fs: PosixFileSystem -2025/05/04-10:09:55.611244 44 Options.info_log: 0xffff99aa7000 -2025/05/04-10:09:55.611245 44 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.611246 44 Options.statistics: (nil) -2025/05/04-10:09:55.611246 44 Options.use_fsync: 0 -2025/05/04-10:09:55.611247 44 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.611248 44 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.611248 44 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.611249 44 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.611250 44 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.611250 44 Options.allow_fallocate: 1 -2025/05/04-10:09:55.611251 44 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.611252 44 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.611252 44 Options.use_direct_reads: 0 -2025/05/04-10:09:55.611253 44 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.611254 44 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.611254 44 Options.db_log_dir: -2025/05/04-10:09:55.611255 44 Options.wal_dir: -2025/05/04-10:09:55.611259 44 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.611259 44 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.611260 44 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.611261 44 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.611261 44 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.611262 44 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.611263 44 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.611263 44 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.611264 44 Options.write_buffer_manager: 0xffff99a0f0c0 -2025/05/04-10:09:55.611264 44 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.611265 44 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.611266 44 Options.rate_limiter: (nil) -2025/05/04-10:09:55.611267 44 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.611268 44 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.611268 44 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.611269 44 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.611271 44 Options.unordered_write: 0 -2025/05/04-10:09:55.611271 44 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.611272 44 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.611273 44 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.611273 44 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.611274 44 Options.row_cache: None -2025/05/04-10:09:55.611274 44 Options.wal_filter: None -2025/05/04-10:09:55.611276 44 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.611276 44 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.611277 44 Options.two_write_queues: 0 -2025/05/04-10:09:55.611278 44 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.611278 44 Options.wal_compression: 0 -2025/05/04-10:09:55.611279 44 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.611280 44 Options.atomic_flush: 0 -2025/05/04-10:09:55.611281 44 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.611281 44 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.611282 44 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.611283 44 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.611285 44 Options.write_identity_file: 1 -2025/05/04-10:09:55.611286 44 Options.log_readahead_size: 0 -2025/05/04-10:09:55.611287 44 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.611288 44 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.611288 44 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.611289 44 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.611291 44 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.611292 44 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.611293 44 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.611294 44 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.611295 44 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.611295 44 Options.max_background_jobs: 2 -2025/05/04-10:09:55.611296 44 Options.max_background_compactions: -1 -2025/05/04-10:09:55.611297 44 Options.max_subcompactions: 1 -2025/05/04-10:09:55.611297 44 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.611298 44 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.611299 44 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.611300 44 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.611300 44 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.611301 44 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.611302 44 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.611302 44 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.611303 44 Options.max_open_files: 256 -2025/05/04-10:09:55.611304 44 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.611305 44 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.611306 44 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.611306 44 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.611307 44 Options.max_background_flushes: -1 -2025/05/04-10:09:55.611308 44 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.611308 44 Compression algorithms supported: -2025/05/04-10:09:55.611309 44 kZSTD supported: 0 -2025/05/04-10:09:55.611310 44 kXpressCompression supported: 0 -2025/05/04-10:09:55.611311 44 kBZip2Compression supported: 0 -2025/05/04-10:09:55.611311 44 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.611312 44 kLZ4Compression supported: 1 -2025/05/04-10:09:55.611312 44 kZlibCompression supported: 0 -2025/05/04-10:09:55.611313 44 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.611314 44 kSnappyCompression supported: 1 -2025/05/04-10:09:55.611315 44 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.611316 44 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.611317 44 Jemalloc supported: 0 -2025/05/04-10:09:55.628767 44 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.628772 44 Options.merge_operator: None -2025/05/04-10:09:55.628773 44 Options.compaction_filter: None -2025/05/04-10:09:55.628774 44 Options.compaction_filter_factory: None -2025/05/04-10:09:55.628775 44 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.628776 44 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.628777 44 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.628797 44 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff99a00ce0) +2025/05/26-19:13:17.063638 43 RocksDB version: 9.9.3 +2025/05/26-19:13:17.064885 43 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.064886 43 DB SUMMARY +2025/05/26-19:13:17.064887 43 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.064888 43 DB Session ID: PCRZT7AMVX68CX0XDWTU +2025/05/26-19:13:17.066328 43 CURRENT file: CURRENT +2025/05/26-19:13:17.066331 43 IDENTITY file: IDENTITY +2025/05/26-19:13:17.066439 43 MANIFEST file: MANIFEST-000013 size: 503 Bytes +2025/05/26-19:13:17.066441 43 SST files in ./storage/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b dir, Total Num: 0, files: +2025/05/26-19:13:17.066442 43 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b: 000012.log size: 0 ; +2025/05/26-19:13:17.066450 43 Options.error_if_exists: 0 +2025/05/26-19:13:17.066451 43 Options.create_if_missing: 1 +2025/05/26-19:13:17.066451 43 Options.paranoid_checks: 1 +2025/05/26-19:13:17.066452 43 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.066452 43 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.066453 43 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.066454 43 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.066455 43 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.066455 43 Options.fs: PosixFileSystem +2025/05/26-19:13:17.066456 43 Options.info_log: 0xffff7c2a7000 +2025/05/26-19:13:17.066457 43 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.066458 43 Options.statistics: (nil) +2025/05/26-19:13:17.066459 43 Options.use_fsync: 0 +2025/05/26-19:13:17.066459 43 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.066460 43 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.066461 43 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.066461 43 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.066462 43 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.066463 43 Options.allow_fallocate: 1 +2025/05/26-19:13:17.066465 43 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.066465 43 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.066466 43 Options.use_direct_reads: 0 +2025/05/26-19:13:17.066466 43 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.066467 43 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.066468 43 Options.db_log_dir: +2025/05/26-19:13:17.066468 43 Options.wal_dir: +2025/05/26-19:13:17.066469 43 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.066470 43 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.066470 43 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.066471 43 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.066472 43 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.066472 43 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.066473 43 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.066474 43 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.066474 43 Options.write_buffer_manager: 0xffff7c20f0c0 +2025/05/26-19:13:17.066475 43 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.066476 43 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.066477 43 Options.rate_limiter: (nil) +2025/05/26-19:13:17.066478 43 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.066479 43 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.066480 43 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.066481 43 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.066483 43 Options.unordered_write: 0 +2025/05/26-19:13:17.066484 43 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.066484 43 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.066485 43 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.066486 43 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.066486 43 Options.row_cache: None +2025/05/26-19:13:17.066487 43 Options.wal_filter: None +2025/05/26-19:13:17.066488 43 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.066489 43 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.066490 43 Options.two_write_queues: 0 +2025/05/26-19:13:17.066490 43 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.066491 43 Options.wal_compression: 0 +2025/05/26-19:13:17.066492 43 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.066493 43 Options.atomic_flush: 0 +2025/05/26-19:13:17.066493 43 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.066494 43 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.066495 43 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.066496 43 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.066496 43 Options.write_identity_file: 1 +2025/05/26-19:13:17.066497 43 Options.log_readahead_size: 0 +2025/05/26-19:13:17.066498 43 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.066498 43 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.066499 43 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.066500 43 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.066501 43 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.066502 43 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.066503 43 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.066504 43 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.066505 43 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.066506 43 Options.max_background_jobs: 2 +2025/05/26-19:13:17.066507 43 Options.max_background_compactions: -1 +2025/05/26-19:13:17.066508 43 Options.max_subcompactions: 1 +2025/05/26-19:13:17.066509 43 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.066509 43 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.066510 43 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.066511 43 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.066512 43 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.066512 43 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.066513 43 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.066514 43 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.066515 43 Options.max_open_files: 256 +2025/05/26-19:13:17.066516 43 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.066516 43 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.066517 43 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.066518 43 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.066519 43 Options.max_background_flushes: -1 +2025/05/26-19:13:17.066520 43 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.066520 43 Compression algorithms supported: +2025/05/26-19:13:17.066522 43 kZSTD supported: 0 +2025/05/26-19:13:17.066525 43 kXpressCompression supported: 0 +2025/05/26-19:13:17.066528 43 kBZip2Compression supported: 0 +2025/05/26-19:13:17.066529 43 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.066530 43 kLZ4Compression supported: 1 +2025/05/26-19:13:17.066530 43 kZlibCompression supported: 0 +2025/05/26-19:13:17.066531 43 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.066532 43 kSnappyCompression supported: 1 +2025/05/26-19:13:17.066533 43 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.066534 43 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.066535 43 Jemalloc supported: 0 +2025/05/26-19:13:17.068367 43 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.068369 43 Options.merge_operator: None +2025/05/26-19:13:17.068370 43 Options.compaction_filter: None +2025/05/26-19:13:17.068371 43 Options.compaction_filter_factory: None +2025/05/26-19:13:17.068371 43 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.068372 43 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.068373 43 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.068860 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff7c200ce0) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff99a0f010 + block_cache: 0xffff7c20f010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,103 +155,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.628799 44 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.628801 44 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.628802 44 Options.compression: LZ4 -2025/05/04-10:09:55.628803 44 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.628803 44 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.628804 44 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.628805 44 Options.num_levels: 7 -2025/05/04-10:09:55.628805 44 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.628806 44 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.628807 44 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.628807 44 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.628808 44 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.628809 44 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.628810 44 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.628810 44 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.628811 44 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.628812 44 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.628813 44 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.628814 44 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.628814 44 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.628815 44 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.628816 44 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.628816 44 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.628817 44 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.628818 44 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.628818 44 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.628819 44 Options.compression_opts.enabled: false -2025/05/04-10:09:55.628820 44 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.628820 44 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.628821 44 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.628822 44 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.628823 44 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.628823 44 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.628824 44 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.628824 44 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.628826 44 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.628827 44 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.628827 44 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.628828 44 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.628828 44 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.628829 44 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.628829 44 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.628831 44 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.628831 44 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.628832 44 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.628833 44 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.628834 44 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.628834 44 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.628835 44 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.628837 44 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.628838 44 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.628839 44 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.628840 44 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.628840 44 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.628841 44 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.628842 44 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.628843 44 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.628843 44 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.628844 44 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.628845 44 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.628852 44 Options.table_properties_collectors: -2025/05/04-10:09:55.628853 44 Options.inplace_update_support: 0 -2025/05/04-10:09:55.628853 44 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.628854 44 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.628855 44 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.628856 44 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.628856 44 Options.bloom_locality: 0 -2025/05/04-10:09:55.628857 44 Options.max_successive_merges: 0 -2025/05/04-10:09:55.628858 44 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.628858 44 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.628859 44 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.628868 44 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.628869 44 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.628869 44 Options.ttl: 2592000 -2025/05/04-10:09:55.628870 44 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.628871 44 Options.default_temperature: kUnknown -2025/05/04-10:09:55.628871 44 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.628872 44 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.628872 44 Options.enable_blob_files: false -2025/05/04-10:09:55.628873 44 Options.min_blob_size: 0 -2025/05/04-10:09:55.628874 44 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.628874 44 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.628875 44 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.628876 44 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.628877 44 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.628878 44 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.628878 44 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.628879 44 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.628880 44 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.629394 44 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.629396 44 Options.merge_operator: None -2025/05/04-10:09:55.629396 44 Options.compaction_filter: None -2025/05/04-10:09:55.629397 44 Options.compaction_filter_factory: None -2025/05/04-10:09:55.629397 44 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.629398 44 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.629399 44 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.629408 44 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff99a00ce0) +2025/05/26-19:13:17.068863 43 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.068864 43 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.068865 43 Options.compression: LZ4 +2025/05/26-19:13:17.068866 43 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.068867 43 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.068867 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.068868 43 Options.num_levels: 7 +2025/05/26-19:13:17.068869 43 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.068869 43 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.068870 43 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.068871 43 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.068872 43 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.068872 43 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.068873 43 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.068874 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.068874 43 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.068875 43 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.068876 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.068877 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.068877 43 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.068878 43 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.068879 43 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.068879 43 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.068880 43 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.068880 43 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.068882 43 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.068883 43 Options.compression_opts.enabled: false +2025/05/26-19:13:17.068884 43 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.068884 43 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.068885 43 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.068885 43 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.068887 43 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.068888 43 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.068889 43 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.068889 43 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.068891 43 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.068892 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.068892 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.068928 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.068929 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.068930 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.068930 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.068931 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.068932 43 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.068933 43 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.068933 43 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.068934 43 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.068935 43 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.068937 43 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.068938 43 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.068939 43 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.068939 43 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.068940 43 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.068940 43 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.068941 43 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.068942 43 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.068942 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.068943 43 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.068944 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.068944 43 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.068949 43 Options.table_properties_collectors: +2025/05/26-19:13:17.068949 43 Options.inplace_update_support: 0 +2025/05/26-19:13:17.068950 43 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.068951 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.068952 43 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.068952 43 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.068953 43 Options.bloom_locality: 0 +2025/05/26-19:13:17.068954 43 Options.max_successive_merges: 0 +2025/05/26-19:13:17.068954 43 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.068964 43 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.068965 43 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.068966 43 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.068967 43 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.068967 43 Options.ttl: 2592000 +2025/05/26-19:13:17.068968 43 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.068969 43 Options.default_temperature: kUnknown +2025/05/26-19:13:17.068969 43 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.068970 43 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.068971 43 Options.enable_blob_files: false +2025/05/26-19:13:17.068971 43 Options.min_blob_size: 0 +2025/05/26-19:13:17.068972 43 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.068972 43 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.068973 43 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.068974 43 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.068975 43 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.068976 43 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.068976 43 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.068977 43 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.068979 43 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.069651 43 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.069653 43 Options.merge_operator: None +2025/05/26-19:13:17.069653 43 Options.compaction_filter: None +2025/05/26-19:13:17.069654 43 Options.compaction_filter_factory: None +2025/05/26-19:13:17.069654 43 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.069656 43 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.069658 43 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.069668 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff7c200ce0) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -262,7 +262,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff99a0f010 + block_cache: 0xffff7c20f010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -290,103 +290,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.629410 44 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.629411 44 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.629412 44 Options.compression: LZ4 -2025/05/04-10:09:55.629413 44 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.629414 44 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.629414 44 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.629415 44 Options.num_levels: 7 -2025/05/04-10:09:55.629416 44 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.629416 44 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.629417 44 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.629417 44 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.629418 44 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.629419 44 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.629419 44 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.629420 44 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.629421 44 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.629421 44 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.629422 44 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.629422 44 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.629423 44 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.629423 44 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.629424 44 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.629425 44 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.629425 44 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.629426 44 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.629426 44 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.629427 44 Options.compression_opts.enabled: false -2025/05/04-10:09:55.629428 44 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.629429 44 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.629429 44 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.629430 44 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.629430 44 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.629431 44 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.629431 44 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.629432 44 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.629433 44 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.629434 44 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.629434 44 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.629435 44 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.629435 44 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.629436 44 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.629436 44 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.629437 44 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.629437 44 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.629440 44 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.629441 44 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.629442 44 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.629442 44 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.629443 44 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.629444 44 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.629444 44 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.629445 44 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.629445 44 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.629446 44 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.629447 44 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.629447 44 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.629448 44 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.629450 44 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.629450 44 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.629451 44 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.629452 44 Options.table_properties_collectors: -2025/05/04-10:09:55.629453 44 Options.inplace_update_support: 0 -2025/05/04-10:09:55.629454 44 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.629454 44 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.629455 44 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.629456 44 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.629456 44 Options.bloom_locality: 0 -2025/05/04-10:09:55.629457 44 Options.max_successive_merges: 0 -2025/05/04-10:09:55.629457 44 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.629458 44 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.629458 44 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.629459 44 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.629460 44 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.629460 44 Options.ttl: 2592000 -2025/05/04-10:09:55.629461 44 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.629462 44 Options.default_temperature: kUnknown -2025/05/04-10:09:55.629462 44 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.629463 44 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.629463 44 Options.enable_blob_files: false -2025/05/04-10:09:55.629464 44 Options.min_blob_size: 0 -2025/05/04-10:09:55.629464 44 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.629465 44 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.629466 44 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.629466 44 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.629467 44 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.629468 44 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.629468 44 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.629469 44 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.629470 44 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.629499 44 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.629501 44 Options.merge_operator: None -2025/05/04-10:09:55.629501 44 Options.compaction_filter: None -2025/05/04-10:09:55.629502 44 Options.compaction_filter_factory: None -2025/05/04-10:09:55.629502 44 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.629503 44 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.629503 44 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.629510 44 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff99a00ce0) +2025/05/26-19:13:17.069669 43 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.069670 43 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.069672 43 Options.compression: LZ4 +2025/05/26-19:13:17.069673 43 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.069673 43 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.069674 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.069676 43 Options.num_levels: 7 +2025/05/26-19:13:17.069676 43 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.069677 43 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.069677 43 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.069678 43 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.069679 43 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.069679 43 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.069681 43 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069682 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069682 43 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069683 43 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.069684 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069684 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069686 43 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.069687 43 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.069840 43 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.069841 43 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069842 43 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069842 43 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069843 43 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069844 43 Options.compression_opts.enabled: false +2025/05/26-19:13:17.069845 43 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069846 43 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.069847 43 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.069847 43 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.069848 43 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.069848 43 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.069849 43 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.069850 43 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.069851 43 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.069851 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.069852 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.069853 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.069854 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.069856 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.069857 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.069857 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.069858 43 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.069859 43 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.069861 43 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.069862 43 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.069891 43 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.069894 43 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.069894 43 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.069896 43 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.069897 43 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.069898 43 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.069899 43 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.069899 43 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.069900 43 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.069900 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.069901 43 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.069903 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.069904 43 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.069907 43 Options.table_properties_collectors: +2025/05/26-19:13:17.069907 43 Options.inplace_update_support: 0 +2025/05/26-19:13:17.069917 43 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.069918 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.069919 43 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.069920 43 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.069921 43 Options.bloom_locality: 0 +2025/05/26-19:13:17.069923 43 Options.max_successive_merges: 0 +2025/05/26-19:13:17.069923 43 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.069924 43 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.069925 43 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.069925 43 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.069926 43 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.069927 43 Options.ttl: 2592000 +2025/05/26-19:13:17.069928 43 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.069929 43 Options.default_temperature: kUnknown +2025/05/26-19:13:17.069930 43 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.069930 43 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.069933 43 Options.enable_blob_files: false +2025/05/26-19:13:17.069933 43 Options.min_blob_size: 0 +2025/05/26-19:13:17.069934 43 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.069935 43 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.069935 43 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.069938 43 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.069939 43 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.069940 43 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.069940 43 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070239 43 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070240 43 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070259 43 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070259 43 Options.merge_operator: None +2025/05/26-19:13:17.070260 43 Options.compaction_filter: None +2025/05/26-19:13:17.070262 43 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070263 43 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070263 43 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070264 43 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070271 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff7c200ce0) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -397,7 +397,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff99a0f010 + block_cache: 0xffff7c20f010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -425,103 +425,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.629511 44 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.629511 44 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.629512 44 Options.compression: LZ4 -2025/05/04-10:09:55.629513 44 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.629513 44 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.629514 44 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.629515 44 Options.num_levels: 7 -2025/05/04-10:09:55.629516 44 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.629516 44 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.629517 44 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.629517 44 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.629518 44 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.629518 44 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.629519 44 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.629520 44 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.629520 44 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.629521 44 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.629521 44 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.629522 44 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.629522 44 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.629523 44 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.629523 44 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.629524 44 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.629525 44 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.629525 44 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.629526 44 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.629526 44 Options.compression_opts.enabled: false -2025/05/04-10:09:55.629527 44 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.629527 44 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.629528 44 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.629528 44 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.629529 44 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.629529 44 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.629530 44 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.629530 44 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.629531 44 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.629532 44 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.629532 44 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.629533 44 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.629533 44 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.629534 44 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.629535 44 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.629535 44 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.629536 44 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.629536 44 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.629537 44 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.629537 44 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.629538 44 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.629538 44 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.629539 44 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.629540 44 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.629540 44 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.629541 44 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.629542 44 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.629542 44 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.629543 44 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.629544 44 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.629544 44 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.629545 44 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.629545 44 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.629546 44 Options.table_properties_collectors: -2025/05/04-10:09:55.629548 44 Options.inplace_update_support: 0 -2025/05/04-10:09:55.629548 44 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.629549 44 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.629550 44 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.629550 44 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.629551 44 Options.bloom_locality: 0 -2025/05/04-10:09:55.629551 44 Options.max_successive_merges: 0 -2025/05/04-10:09:55.629552 44 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.629553 44 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.629553 44 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.629554 44 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.629554 44 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.629555 44 Options.ttl: 2592000 -2025/05/04-10:09:55.629556 44 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.629556 44 Options.default_temperature: kUnknown -2025/05/04-10:09:55.629557 44 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.629558 44 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.629558 44 Options.enable_blob_files: false -2025/05/04-10:09:55.629559 44 Options.min_blob_size: 0 -2025/05/04-10:09:55.629559 44 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.629560 44 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.629561 44 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.629561 44 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.629562 44 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.629563 44 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.629563 44 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.629564 44 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.629565 44 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.629580 44 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.629581 44 Options.merge_operator: None -2025/05/04-10:09:55.629582 44 Options.compaction_filter: None -2025/05/04-10:09:55.629582 44 Options.compaction_filter_factory: None -2025/05/04-10:09:55.629583 44 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.629584 44 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.629584 44 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.629590 44 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff99a00ce0) +2025/05/26-19:13:17.070273 43 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070274 43 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070276 43 Options.compression: LZ4 +2025/05/26-19:13:17.070276 43 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070277 43 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070278 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070279 43 Options.num_levels: 7 +2025/05/26-19:13:17.070280 43 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070281 43 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070281 43 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070282 43 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070283 43 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070283 43 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070284 43 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070285 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070285 43 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070286 43 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070286 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070287 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070289 43 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070290 43 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070290 43 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070292 43 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070294 43 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070295 43 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070296 43 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070296 43 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070297 43 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070298 43 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070298 43 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070299 43 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070299 43 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070300 43 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070301 43 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070302 43 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070302 43 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070303 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070304 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070305 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070305 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070306 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070308 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070309 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070310 43 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070310 43 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070311 43 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070311 43 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070312 43 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070312 43 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070529 43 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070530 43 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070531 43 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070532 43 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070533 43 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070533 43 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070534 43 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070535 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070535 43 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070536 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070536 43 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070538 43 Options.table_properties_collectors: +2025/05/26-19:13:17.070539 43 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070539 43 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070540 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070541 43 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070542 43 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070543 43 Options.bloom_locality: 0 +2025/05/26-19:13:17.070543 43 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070591 43 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070593 43 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070594 43 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070594 43 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070595 43 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070595 43 Options.ttl: 2592000 +2025/05/26-19:13:17.070596 43 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070597 43 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070597 43 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070599 43 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070600 43 Options.enable_blob_files: false +2025/05/26-19:13:17.070600 43 Options.min_blob_size: 0 +2025/05/26-19:13:17.070601 43 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070602 43 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070603 43 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070605 43 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070606 43 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070607 43 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070609 43 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070610 43 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070610 43 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070628 43 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070630 43 Options.merge_operator: None +2025/05/26-19:13:17.070630 43 Options.compaction_filter: None +2025/05/26-19:13:17.070631 43 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070632 43 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070632 43 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070633 43 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070642 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff7c200ce0) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -532,7 +532,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff99a0f010 + block_cache: 0xffff7c20f010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -560,103 +560,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.629592 44 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.629592 44 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.629593 44 Options.compression: LZ4 -2025/05/04-10:09:55.629594 44 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.629594 44 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.629595 44 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.629595 44 Options.num_levels: 7 -2025/05/04-10:09:55.629596 44 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.629597 44 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.629597 44 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.629598 44 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.629598 44 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.629599 44 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.629600 44 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.629600 44 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.629601 44 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.629602 44 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.629602 44 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.629603 44 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.629603 44 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.629604 44 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.629605 44 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.629605 44 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.629606 44 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.629607 44 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.629607 44 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.629608 44 Options.compression_opts.enabled: false -2025/05/04-10:09:55.629608 44 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.629609 44 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.629609 44 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.629610 44 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.629610 44 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.629611 44 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.629611 44 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.629612 44 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.629613 44 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.629614 44 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.629615 44 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.629615 44 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.629616 44 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.629617 44 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.629617 44 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.629618 44 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.629619 44 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.629619 44 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.629620 44 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.629621 44 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.629621 44 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.629622 44 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.629623 44 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.629623 44 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.629624 44 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.629624 44 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.629625 44 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.629626 44 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.629626 44 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.629627 44 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.629628 44 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.629628 44 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.629629 44 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.629630 44 Options.table_properties_collectors: -2025/05/04-10:09:55.629630 44 Options.inplace_update_support: 0 -2025/05/04-10:09:55.629631 44 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.629632 44 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.629632 44 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.629633 44 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.629634 44 Options.bloom_locality: 0 -2025/05/04-10:09:55.629634 44 Options.max_successive_merges: 0 -2025/05/04-10:09:55.629635 44 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.629635 44 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.629636 44 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.629637 44 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.629637 44 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.629638 44 Options.ttl: 2592000 -2025/05/04-10:09:55.629640 44 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.629641 44 Options.default_temperature: kUnknown -2025/05/04-10:09:55.629641 44 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.629642 44 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.629642 44 Options.enable_blob_files: false -2025/05/04-10:09:55.629643 44 Options.min_blob_size: 0 -2025/05/04-10:09:55.629643 44 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.629644 44 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.629645 44 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.629645 44 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.629646 44 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.629646 44 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.629647 44 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.629647 44 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.629648 44 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.629663 44 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.629664 44 Options.merge_operator: None -2025/05/04-10:09:55.629665 44 Options.compaction_filter: None -2025/05/04-10:09:55.629665 44 Options.compaction_filter_factory: None -2025/05/04-10:09:55.629666 44 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.629666 44 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.629667 44 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.629672 44 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff99a00ce0) +2025/05/26-19:13:17.070643 43 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070644 43 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070645 43 Options.compression: LZ4 +2025/05/26-19:13:17.070646 43 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070647 43 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070647 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070648 43 Options.num_levels: 7 +2025/05/26-19:13:17.070650 43 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070650 43 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070651 43 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070652 43 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070653 43 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070653 43 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070654 43 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070654 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070655 43 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070656 43 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070656 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070657 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070658 43 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070658 43 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070659 43 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070660 43 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070661 43 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070661 43 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070662 43 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070663 43 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070663 43 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070665 43 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070665 43 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070666 43 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070667 43 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070873 43 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070874 43 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070875 43 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070876 43 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070877 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070878 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070878 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070879 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070880 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070881 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070883 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070884 43 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070885 43 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070885 43 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070886 43 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070887 43 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070887 43 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070888 43 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070889 43 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070889 43 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070890 43 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070891 43 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070893 43 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070894 43 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070895 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070896 43 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070898 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070900 43 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070901 43 Options.table_properties_collectors: +2025/05/26-19:13:17.070902 43 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070903 43 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070903 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070904 43 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070905 43 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070905 43 Options.bloom_locality: 0 +2025/05/26-19:13:17.070906 43 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070907 43 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070908 43 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070908 43 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070910 43 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070912 43 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070913 43 Options.ttl: 2592000 +2025/05/26-19:13:17.070914 43 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070915 43 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070915 43 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070916 43 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070916 43 Options.enable_blob_files: false +2025/05/26-19:13:17.070919 43 Options.min_blob_size: 0 +2025/05/26-19:13:17.070919 43 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070920 43 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070921 43 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070922 43 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070923 43 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070923 43 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070924 43 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070924 43 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070925 43 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070941 43 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070942 43 Options.merge_operator: None +2025/05/26-19:13:17.070944 43 Options.compaction_filter: None +2025/05/26-19:13:17.070945 43 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070945 43 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070946 43 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070946 43 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070965 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff7c200ce0) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -667,7 +667,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff99a0f010 + block_cache: 0xffff7c20f010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -695,93 +695,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.629673 44 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.629674 44 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.629674 44 Options.compression: LZ4 -2025/05/04-10:09:55.629675 44 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.629675 44 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.629676 44 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.629676 44 Options.num_levels: 7 -2025/05/04-10:09:55.629677 44 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.629678 44 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.629678 44 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.629679 44 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.629679 44 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.629680 44 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.629680 44 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.629681 44 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.629681 44 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.629682 44 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.629682 44 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.629683 44 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.629683 44 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.629684 44 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.629684 44 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.629685 44 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.629685 44 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.629686 44 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.629686 44 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.629687 44 Options.compression_opts.enabled: false -2025/05/04-10:09:55.629687 44 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.629688 44 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.629689 44 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.629689 44 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.629690 44 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.629690 44 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.629691 44 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.629691 44 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.629692 44 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.629693 44 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.629693 44 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.629694 44 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.629694 44 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.629695 44 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.629695 44 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.629696 44 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.629697 44 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.629697 44 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.629698 44 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.629699 44 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.629700 44 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.629700 44 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.629701 44 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.629701 44 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.629702 44 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.629703 44 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.629703 44 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.629704 44 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.629704 44 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.629705 44 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.629706 44 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.629706 44 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.629707 44 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.629708 44 Options.table_properties_collectors: -2025/05/04-10:09:55.629791 44 Options.inplace_update_support: 0 -2025/05/04-10:09:55.629796 44 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.629799 44 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.629800 44 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.629801 44 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.629803 44 Options.bloom_locality: 0 -2025/05/04-10:09:55.629804 44 Options.max_successive_merges: 0 -2025/05/04-10:09:55.629805 44 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.629806 44 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.629807 44 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.629808 44 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.629809 44 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.629810 44 Options.ttl: 2592000 -2025/05/04-10:09:55.629811 44 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.629813 44 Options.default_temperature: kUnknown -2025/05/04-10:09:55.629814 44 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.629815 44 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.629816 44 Options.enable_blob_files: false -2025/05/04-10:09:55.629817 44 Options.min_blob_size: 0 -2025/05/04-10:09:55.629818 44 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.629819 44 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.629820 44 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.629821 44 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.629823 44 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.629824 44 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.629825 44 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.629826 44 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.629827 44 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.672934 44 DB pointer 0xffff99a69c00 +2025/05/26-19:13:17.070967 43 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070967 43 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070968 43 Options.compression: LZ4 +2025/05/26-19:13:17.070969 43 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070969 43 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070970 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070970 43 Options.num_levels: 7 +2025/05/26-19:13:17.070971 43 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070971 43 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070972 43 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070973 43 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070973 43 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070974 43 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070974 43 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070975 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070975 43 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070976 43 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070976 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070977 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070977 43 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070978 43 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070979 43 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070979 43 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070980 43 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070980 43 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070981 43 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070981 43 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070984 43 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070985 43 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070985 43 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070987 43 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070988 43 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070989 43 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070989 43 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070990 43 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070991 43 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070991 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070992 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070995 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070995 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070996 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.071196 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.071197 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.071198 43 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.071199 43 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.071200 43 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.071201 43 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.071202 43 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.071203 43 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.071204 43 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.071205 43 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.071206 43 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.071206 43 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.071207 43 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.071208 43 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.071209 43 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.071209 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.071210 43 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.071210 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.071211 43 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.071214 43 Options.table_properties_collectors: +2025/05/26-19:13:17.071215 43 Options.inplace_update_support: 0 +2025/05/26-19:13:17.071217 43 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.071218 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.071218 43 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.071219 43 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.071221 43 Options.bloom_locality: 0 +2025/05/26-19:13:17.071222 43 Options.max_successive_merges: 0 +2025/05/26-19:13:17.071224 43 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.071225 43 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.071225 43 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.071226 43 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.071226 43 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.071227 43 Options.ttl: 2592000 +2025/05/26-19:13:17.071227 43 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.071229 43 Options.default_temperature: kUnknown +2025/05/26-19:13:17.071230 43 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.071231 43 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.071231 43 Options.enable_blob_files: false +2025/05/26-19:13:17.071233 43 Options.min_blob_size: 0 +2025/05/26-19:13:17.071234 43 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.071234 43 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.071235 43 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.071236 43 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.071236 43 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.071237 43 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.071238 43 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.071239 43 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.071240 43 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.108295 43 DB pointer 0xffff7c269c00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/MANIFEST-000013 deleted file mode 100644 index 7cc75110f58d87b0443786187324a5131b7eec53..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/MANIFEST-000013 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/OPTIONS-000011 deleted file mode 100644 index ad2b181add715408dc69839970eebfd4c1a28b4b..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/OPTIONS-000011 +++ /dev/null @@ -1,670 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "payload"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "payload"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "mapping"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "mapping"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "version"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "version"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "vector"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "vector"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/000012.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/CURRENT index 625d147412870471b19d90716ccc20a7f207a5c3..056df57bb7f73da12edea3c09d88bc3ff790ec7c 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/CURRENT @@ -1 +1 @@ -MANIFEST-000013 +MANIFEST-000017 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/LOG index e7ada3f3ab9516bf50dba5ccae0c7c47f7343572..3a32beb1c4ac728c38fb28caae5190192955fc95 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.801165 44 RocksDB version: 9.9.3 -2025/05/04-10:09:55.801281 44 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.801300 44 DB SUMMARY -2025/05/04-10:09:55.801302 44 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.801302 44 DB Session ID: CD0SHR3DDC5AMRBDXMDH -2025/05/04-10:09:55.802522 44 CURRENT file: CURRENT -2025/05/04-10:09:55.802524 44 IDENTITY file: IDENTITY -2025/05/04-10:09:55.802528 44 MANIFEST file: MANIFEST-000009 size: 159 Bytes -2025/05/04-10:09:55.802530 44 SST files in ./storage/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index dir, Total Num: 0, files: -2025/05/04-10:09:55.802530 44 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index: 000008.log size: 0 ; -2025/05/04-10:09:55.802531 44 Options.error_if_exists: 0 -2025/05/04-10:09:55.802532 44 Options.create_if_missing: 1 -2025/05/04-10:09:55.802533 44 Options.paranoid_checks: 1 -2025/05/04-10:09:55.802533 44 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.802534 44 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.802535 44 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.802535 44 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.802536 44 Options.env: 0xffff86034000 -2025/05/04-10:09:55.802538 44 Options.fs: PosixFileSystem -2025/05/04-10:09:55.802539 44 Options.info_log: 0xffff99aa8800 -2025/05/04-10:09:55.802539 44 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.802540 44 Options.statistics: (nil) -2025/05/04-10:09:55.802541 44 Options.use_fsync: 0 -2025/05/04-10:09:55.802542 44 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.802543 44 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.802544 44 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.802544 44 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.802545 44 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.802545 44 Options.allow_fallocate: 1 -2025/05/04-10:09:55.802546 44 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.802546 44 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.802547 44 Options.use_direct_reads: 0 -2025/05/04-10:09:55.802548 44 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.802548 44 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.802549 44 Options.db_log_dir: -2025/05/04-10:09:55.802549 44 Options.wal_dir: -2025/05/04-10:09:55.802550 44 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.802558 44 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.802978 44 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.802982 44 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.802983 44 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.802983 44 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.802984 44 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.802984 44 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.802985 44 Options.write_buffer_manager: 0xffff99a10200 -2025/05/04-10:09:55.802986 44 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.802986 44 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.802987 44 Options.rate_limiter: (nil) -2025/05/04-10:09:55.802987 44 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.802988 44 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.802991 44 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.802991 44 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.802992 44 Options.unordered_write: 0 -2025/05/04-10:09:55.802993 44 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.802993 44 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.802994 44 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.802996 44 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.802996 44 Options.row_cache: None -2025/05/04-10:09:55.802997 44 Options.wal_filter: None -2025/05/04-10:09:55.802998 44 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.802998 44 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.802999 44 Options.two_write_queues: 0 -2025/05/04-10:09:55.802999 44 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.803000 44 Options.wal_compression: 0 -2025/05/04-10:09:55.803001 44 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.803001 44 Options.atomic_flush: 0 -2025/05/04-10:09:55.803002 44 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.803002 44 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.803003 44 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.803004 44 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.803005 44 Options.write_identity_file: 1 -2025/05/04-10:09:55.803006 44 Options.log_readahead_size: 0 -2025/05/04-10:09:55.803006 44 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.803007 44 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.803007 44 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.803008 44 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.803009 44 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.803009 44 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.803010 44 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.803011 44 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.803011 44 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.803012 44 Options.max_background_jobs: 2 -2025/05/04-10:09:55.803012 44 Options.max_background_compactions: -1 -2025/05/04-10:09:55.803014 44 Options.max_subcompactions: 1 -2025/05/04-10:09:55.803015 44 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.803016 44 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.803016 44 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.803017 44 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.803017 44 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.803018 44 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.803117 44 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.803118 44 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.803119 44 Options.max_open_files: 256 -2025/05/04-10:09:55.803119 44 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.803120 44 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.803120 44 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.803121 44 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.803124 44 Options.max_background_flushes: -1 -2025/05/04-10:09:55.803124 44 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.803125 44 Compression algorithms supported: -2025/05/04-10:09:55.803126 44 kZSTD supported: 0 -2025/05/04-10:09:55.803127 44 kXpressCompression supported: 0 -2025/05/04-10:09:55.803127 44 kBZip2Compression supported: 0 -2025/05/04-10:09:55.803128 44 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.803128 44 kLZ4Compression supported: 1 -2025/05/04-10:09:55.803129 44 kZlibCompression supported: 0 -2025/05/04-10:09:55.803129 44 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.803130 44 kSnappyCompression supported: 1 -2025/05/04-10:09:55.803131 44 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.803132 44 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.803132 44 Jemalloc supported: 0 -2025/05/04-10:09:55.805119 44 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.805121 44 Options.merge_operator: None -2025/05/04-10:09:55.805122 44 Options.compaction_filter: None -2025/05/04-10:09:55.805122 44 Options.compaction_filter_factory: None -2025/05/04-10:09:55.805123 44 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.805123 44 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.805124 44 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.805136 44 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff99b388c0) +2025/05/26-19:13:17.246808 43 RocksDB version: 9.9.3 +2025/05/26-19:13:17.246908 43 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.246916 43 DB SUMMARY +2025/05/26-19:13:17.246919 43 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.246920 43 DB Session ID: PCRZT7AMVX68CX0XDWU5 +2025/05/26-19:13:17.247465 43 CURRENT file: CURRENT +2025/05/26-19:13:17.247466 43 IDENTITY file: IDENTITY +2025/05/26-19:13:17.247470 43 MANIFEST file: MANIFEST-000013 size: 165 Bytes +2025/05/26-19:13:17.247472 43 SST files in ./storage/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index dir, Total Num: 0, files: +2025/05/26-19:13:17.247473 43 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index: 000012.log size: 0 ; +2025/05/26-19:13:17.247475 43 Options.error_if_exists: 0 +2025/05/26-19:13:17.247475 43 Options.create_if_missing: 1 +2025/05/26-19:13:17.247476 43 Options.paranoid_checks: 1 +2025/05/26-19:13:17.247477 43 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.247478 43 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.247478 43 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.247480 43 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.247482 43 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.247483 43 Options.fs: PosixFileSystem +2025/05/26-19:13:17.247483 43 Options.info_log: 0xffff7c2a8800 +2025/05/26-19:13:17.247484 43 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.247485 43 Options.statistics: (nil) +2025/05/26-19:13:17.247486 43 Options.use_fsync: 0 +2025/05/26-19:13:17.247487 43 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.247487 43 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.247488 43 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.247489 43 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.247489 43 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.247490 43 Options.allow_fallocate: 1 +2025/05/26-19:13:17.247490 43 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.247491 43 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.247492 43 Options.use_direct_reads: 0 +2025/05/26-19:13:17.247492 43 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.247493 43 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.247493 43 Options.db_log_dir: +2025/05/26-19:13:17.247494 43 Options.wal_dir: +2025/05/26-19:13:17.247495 43 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.247495 43 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.247496 43 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.247497 43 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.247497 43 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.247498 43 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.247499 43 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.247499 43 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.247500 43 Options.write_buffer_manager: 0xffff7c210200 +2025/05/26-19:13:17.247501 43 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.247501 43 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.247502 43 Options.rate_limiter: (nil) +2025/05/26-19:13:17.247503 43 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.247504 43 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.247505 43 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.247505 43 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.247506 43 Options.unordered_write: 0 +2025/05/26-19:13:17.247507 43 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.247507 43 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.247508 43 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.247508 43 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.247509 43 Options.row_cache: None +2025/05/26-19:13:17.247510 43 Options.wal_filter: None +2025/05/26-19:13:17.247510 43 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.247511 43 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.247511 43 Options.two_write_queues: 0 +2025/05/26-19:13:17.247512 43 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.247512 43 Options.wal_compression: 0 +2025/05/26-19:13:17.247513 43 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.247514 43 Options.atomic_flush: 0 +2025/05/26-19:13:17.247514 43 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.247515 43 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.247516 43 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.247517 43 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.247518 43 Options.write_identity_file: 1 +2025/05/26-19:13:17.247519 43 Options.log_readahead_size: 0 +2025/05/26-19:13:17.247519 43 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.247520 43 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.247521 43 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.247521 43 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.247522 43 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.247523 43 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.247523 43 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.247524 43 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.247525 43 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.247525 43 Options.max_background_jobs: 2 +2025/05/26-19:13:17.247526 43 Options.max_background_compactions: -1 +2025/05/26-19:13:17.247527 43 Options.max_subcompactions: 1 +2025/05/26-19:13:17.247527 43 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.247528 43 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.247528 43 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.247529 43 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.247530 43 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.247531 43 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.247531 43 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.247532 43 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.247532 43 Options.max_open_files: 256 +2025/05/26-19:13:17.247533 43 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.247534 43 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.247534 43 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.247535 43 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.247536 43 Options.max_background_flushes: -1 +2025/05/26-19:13:17.247536 43 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.247537 43 Compression algorithms supported: +2025/05/26-19:13:17.247538 43 kZSTD supported: 0 +2025/05/26-19:13:17.247538 43 kXpressCompression supported: 0 +2025/05/26-19:13:17.247539 43 kBZip2Compression supported: 0 +2025/05/26-19:13:17.247540 43 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.247540 43 kLZ4Compression supported: 1 +2025/05/26-19:13:17.247541 43 kZlibCompression supported: 0 +2025/05/26-19:13:17.247542 43 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.247542 43 kSnappyCompression supported: 1 +2025/05/26-19:13:17.247543 43 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.247544 43 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.247544 43 Jemalloc supported: 0 +2025/05/26-19:13:17.248944 43 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.248946 43 Options.merge_operator: None +2025/05/26-19:13:17.248948 43 Options.compaction_filter: None +2025/05/26-19:13:17.248950 43 Options.compaction_filter_factory: None +2025/05/26-19:13:17.248951 43 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.248952 43 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.248953 43 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.249004 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff7c3e9020) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff99a10150 + block_cache: 0xffff7c210150 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,93 +155,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.805137 44 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.805138 44 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.805139 44 Options.compression: LZ4 -2025/05/04-10:09:55.805140 44 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.805140 44 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.805194 44 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.805195 44 Options.num_levels: 7 -2025/05/04-10:09:55.805196 44 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.805196 44 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.805197 44 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.805198 44 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.805198 44 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.805199 44 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.805200 44 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.805200 44 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.805201 44 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.805201 44 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.805202 44 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.805203 44 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.805203 44 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.805204 44 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.805205 44 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.805205 44 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.805206 44 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.805207 44 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.805207 44 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.805208 44 Options.compression_opts.enabled: false -2025/05/04-10:09:55.805208 44 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.805209 44 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.805210 44 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.805210 44 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.805211 44 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.805211 44 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.805213 44 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.805213 44 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.805214 44 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.805215 44 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.805216 44 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.805216 44 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.805217 44 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.805217 44 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.805218 44 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.805218 44 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.805219 44 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.805220 44 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.805220 44 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.805221 44 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.805222 44 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.805222 44 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.805223 44 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.805224 44 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.805224 44 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.805225 44 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.805225 44 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.805226 44 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.805227 44 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.805227 44 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.805228 44 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.805228 44 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.805229 44 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.805230 44 Options.table_properties_collectors: -2025/05/04-10:09:55.805231 44 Options.inplace_update_support: 0 -2025/05/04-10:09:55.805232 44 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.805232 44 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.805233 44 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.805234 44 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.805234 44 Options.bloom_locality: 0 -2025/05/04-10:09:55.805235 44 Options.max_successive_merges: 0 -2025/05/04-10:09:55.805235 44 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.805236 44 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.805236 44 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.805237 44 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.805238 44 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.805238 44 Options.ttl: 2592000 -2025/05/04-10:09:55.805239 44 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.805240 44 Options.default_temperature: kUnknown -2025/05/04-10:09:55.805240 44 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.805241 44 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.805241 44 Options.enable_blob_files: false -2025/05/04-10:09:55.805242 44 Options.min_blob_size: 0 -2025/05/04-10:09:55.805242 44 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.805243 44 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.805244 44 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.805244 44 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.805245 44 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.805246 44 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.805246 44 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.805247 44 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.805247 44 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.816749 44 DB pointer 0xffff99a68000 +2025/05/26-19:13:17.249006 43 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.249007 43 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.249008 43 Options.compression: LZ4 +2025/05/26-19:13:17.249009 43 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.249009 43 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.249010 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.249011 43 Options.num_levels: 7 +2025/05/26-19:13:17.249011 43 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.249012 43 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.249013 43 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.249013 43 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.249014 43 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.249015 43 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.249016 43 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.249018 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.249018 43 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.249019 43 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.249020 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.249020 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.249021 43 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.249022 43 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.249023 43 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.249023 43 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.249024 43 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.249025 43 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.249025 43 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.249026 43 Options.compression_opts.enabled: false +2025/05/26-19:13:17.249027 43 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.249027 43 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.249028 43 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.249029 43 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.249029 43 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.249030 43 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.249031 43 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.249032 43 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.249033 43 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.249034 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.249034 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.249035 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.249035 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.249036 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.249037 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.249037 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.249038 43 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.249038 43 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.249039 43 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.249040 43 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.249040 43 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.249041 43 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.249042 43 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.249043 43 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.249043 43 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.249044 43 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.249045 43 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.249045 43 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.249046 43 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.249047 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.249048 43 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.249048 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.249049 43 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.249053 43 Options.table_properties_collectors: +2025/05/26-19:13:17.249054 43 Options.inplace_update_support: 0 +2025/05/26-19:13:17.249054 43 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.249055 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.249056 43 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.249056 43 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.249057 43 Options.bloom_locality: 0 +2025/05/26-19:13:17.249057 43 Options.max_successive_merges: 0 +2025/05/26-19:13:17.249058 43 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.249058 43 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.249059 43 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.249060 43 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.249060 43 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.249061 43 Options.ttl: 2592000 +2025/05/26-19:13:17.249062 43 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.249062 43 Options.default_temperature: kUnknown +2025/05/26-19:13:17.249063 43 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.249063 43 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.249064 43 Options.enable_blob_files: false +2025/05/26-19:13:17.249065 43 Options.min_blob_size: 0 +2025/05/26-19:13:17.249065 43 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.249066 43 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.249066 43 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.249067 43 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.249068 43 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.249069 43 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.249069 43 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.249070 43 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.249071 43 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.265478 43 DB pointer 0xffff7c268000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/MANIFEST-000013 deleted file mode 100644 index ef17d1584a5029752ea06183a22e9752d12c3f54..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/MANIFEST-000013 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/OPTIONS-000011 deleted file mode 100644 index 1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/OPTIONS-000011 +++ /dev/null @@ -1,214 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/000018.log b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/000018.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/CURRENT index 43c22f0a2c436427c868273482a050658e45ca2f..7fbb62349a171cb93c0e07360fd312e3344b3571 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/CURRENT @@ -1 +1 @@ -MANIFEST-000019 +MANIFEST-000023 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/LOG index 1b7411b8bb1fb10b2a315c0e9fa18d1e82385529..f201f5efc671877dfcab7de840c151da21301149 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.609716 42 RocksDB version: 9.9.3 -2025/05/04-10:09:55.609945 42 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.609947 42 DB SUMMARY -2025/05/04-10:09:55.609948 42 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.609949 42 DB Session ID: CD0SHR3DDC5AMRBDXMDN -2025/05/04-10:09:55.611435 42 CURRENT file: CURRENT -2025/05/04-10:09:55.611437 42 IDENTITY file: IDENTITY -2025/05/04-10:09:55.611670 42 MANIFEST file: MANIFEST-000015 size: 767 Bytes -2025/05/04-10:09:55.611672 42 SST files in ./storage/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999 dir, Total Num: 2, files: 000009.sst 000011.sst -2025/05/04-10:09:55.611673 42 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999: 000014.log size: 0 ; -2025/05/04-10:09:55.611674 42 Options.error_if_exists: 0 -2025/05/04-10:09:55.611674 42 Options.create_if_missing: 1 -2025/05/04-10:09:55.611675 42 Options.paranoid_checks: 1 -2025/05/04-10:09:55.611676 42 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.611676 42 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.611677 42 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.611678 42 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.611678 42 Options.env: 0xffff86034000 -2025/05/04-10:09:55.611679 42 Options.fs: PosixFileSystem -2025/05/04-10:09:55.611680 42 Options.info_log: 0xffff806a1000 -2025/05/04-10:09:55.611681 42 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.611681 42 Options.statistics: (nil) -2025/05/04-10:09:55.611682 42 Options.use_fsync: 0 -2025/05/04-10:09:55.611683 42 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.611683 42 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.611684 42 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.611685 42 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.611685 42 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.611686 42 Options.allow_fallocate: 1 -2025/05/04-10:09:55.611686 42 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.611687 42 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.611687 42 Options.use_direct_reads: 0 -2025/05/04-10:09:55.611688 42 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.611689 42 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.611689 42 Options.db_log_dir: -2025/05/04-10:09:55.611690 42 Options.wal_dir: -2025/05/04-10:09:55.611693 42 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.611694 42 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.611695 42 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.611695 42 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.611696 42 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.611697 42 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.611697 42 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.611698 42 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.611698 42 Options.write_buffer_manager: 0xffff806090c0 -2025/05/04-10:09:55.611699 42 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.611701 42 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.611702 42 Options.rate_limiter: (nil) -2025/05/04-10:09:55.611703 42 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.611703 42 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.611704 42 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.611704 42 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.611707 42 Options.unordered_write: 0 -2025/05/04-10:09:55.611708 42 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.611708 42 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.611709 42 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.611710 42 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.611711 42 Options.row_cache: None -2025/05/04-10:09:55.611711 42 Options.wal_filter: None -2025/05/04-10:09:55.611713 42 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.611713 42 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.611714 42 Options.two_write_queues: 0 -2025/05/04-10:09:55.611714 42 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.611715 42 Options.wal_compression: 0 -2025/05/04-10:09:55.611716 42 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.611716 42 Options.atomic_flush: 0 -2025/05/04-10:09:55.611717 42 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.611717 42 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.611718 42 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.611718 42 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.611719 42 Options.write_identity_file: 1 -2025/05/04-10:09:55.611720 42 Options.log_readahead_size: 0 -2025/05/04-10:09:55.611720 42 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.611721 42 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.611721 42 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.611722 42 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.611723 42 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.611741 42 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.611742 42 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.611743 42 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.611745 42 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.611745 42 Options.max_background_jobs: 2 -2025/05/04-10:09:55.611746 42 Options.max_background_compactions: -1 -2025/05/04-10:09:55.611747 42 Options.max_subcompactions: 1 -2025/05/04-10:09:55.611747 42 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.611748 42 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.611748 42 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.611749 42 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.611750 42 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.611750 42 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.611751 42 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.611752 42 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.611752 42 Options.max_open_files: 256 -2025/05/04-10:09:55.611754 42 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.611754 42 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.611755 42 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.611756 42 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.611756 42 Options.max_background_flushes: -1 -2025/05/04-10:09:55.611758 42 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.611759 42 Compression algorithms supported: -2025/05/04-10:09:55.611760 42 kZSTD supported: 0 -2025/05/04-10:09:55.611761 42 kXpressCompression supported: 0 -2025/05/04-10:09:55.611762 42 kBZip2Compression supported: 0 -2025/05/04-10:09:55.611762 42 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.611763 42 kLZ4Compression supported: 1 -2025/05/04-10:09:55.611764 42 kZlibCompression supported: 0 -2025/05/04-10:09:55.611765 42 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.611765 42 kSnappyCompression supported: 1 -2025/05/04-10:09:55.611766 42 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.611767 42 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.611768 42 Jemalloc supported: 0 -2025/05/04-10:09:55.630277 42 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.630279 42 Options.merge_operator: None -2025/05/04-10:09:55.630280 42 Options.compaction_filter: None -2025/05/04-10:09:55.630282 42 Options.compaction_filter_factory: None -2025/05/04-10:09:55.630283 42 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.630284 42 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.630285 42 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.630294 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff80600060) +2025/05/26-19:13:17.063517 41 RocksDB version: 9.9.3 +2025/05/26-19:13:17.064747 41 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.064747 41 DB SUMMARY +2025/05/26-19:13:17.064748 41 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.064748 41 DB Session ID: PCRZT7AMVX68CX0XDWTV +2025/05/26-19:13:17.066330 41 CURRENT file: CURRENT +2025/05/26-19:13:17.066332 41 IDENTITY file: IDENTITY +2025/05/26-19:13:17.066439 41 MANIFEST file: MANIFEST-000019 size: 767 Bytes +2025/05/26-19:13:17.066441 41 SST files in ./storage/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999 dir, Total Num: 2, files: 000009.sst 000011.sst +2025/05/26-19:13:17.066442 41 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999: 000018.log size: 0 ; +2025/05/26-19:13:17.066469 41 Options.error_if_exists: 0 +2025/05/26-19:13:17.066470 41 Options.create_if_missing: 1 +2025/05/26-19:13:17.066471 41 Options.paranoid_checks: 1 +2025/05/26-19:13:17.066471 41 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.066472 41 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.066473 41 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.066473 41 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.066474 41 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.066475 41 Options.fs: PosixFileSystem +2025/05/26-19:13:17.066476 41 Options.info_log: 0xffff67ea1000 +2025/05/26-19:13:17.066476 41 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.066477 41 Options.statistics: (nil) +2025/05/26-19:13:17.066478 41 Options.use_fsync: 0 +2025/05/26-19:13:17.066478 41 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.066479 41 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.066480 41 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.066481 41 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.066481 41 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.066482 41 Options.allow_fallocate: 1 +2025/05/26-19:13:17.066483 41 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.066483 41 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.066484 41 Options.use_direct_reads: 0 +2025/05/26-19:13:17.066485 41 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.066485 41 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.066486 41 Options.db_log_dir: +2025/05/26-19:13:17.066487 41 Options.wal_dir: +2025/05/26-19:13:17.066487 41 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.066488 41 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.066488 41 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.066489 41 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.066490 41 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.066490 41 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.066491 41 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.066492 41 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.066492 41 Options.write_buffer_manager: 0xffff67e090c0 +2025/05/26-19:13:17.066493 41 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.066494 41 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.066495 41 Options.rate_limiter: (nil) +2025/05/26-19:13:17.066495 41 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.066496 41 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.066497 41 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.066497 41 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.066499 41 Options.unordered_write: 0 +2025/05/26-19:13:17.066499 41 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.066500 41 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.066501 41 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.066502 41 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.066502 41 Options.row_cache: None +2025/05/26-19:13:17.066503 41 Options.wal_filter: None +2025/05/26-19:13:17.066505 41 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.066506 41 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.066507 41 Options.two_write_queues: 0 +2025/05/26-19:13:17.066508 41 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.066508 41 Options.wal_compression: 0 +2025/05/26-19:13:17.066509 41 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.066510 41 Options.atomic_flush: 0 +2025/05/26-19:13:17.066510 41 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.066511 41 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.066512 41 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.066513 41 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.066513 41 Options.write_identity_file: 1 +2025/05/26-19:13:17.066514 41 Options.log_readahead_size: 0 +2025/05/26-19:13:17.066515 41 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.066515 41 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.066516 41 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.066517 41 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.066517 41 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.066518 41 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.066519 41 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.066520 41 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.066521 41 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.066522 41 Options.max_background_jobs: 2 +2025/05/26-19:13:17.066522 41 Options.max_background_compactions: -1 +2025/05/26-19:13:17.066523 41 Options.max_subcompactions: 1 +2025/05/26-19:13:17.066523 41 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.066525 41 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.066528 41 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.066529 41 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.066530 41 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.066531 41 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.066532 41 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.066532 41 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.066533 41 Options.max_open_files: 256 +2025/05/26-19:13:17.066534 41 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.066535 41 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.066535 41 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.066536 41 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.066536 41 Options.max_background_flushes: -1 +2025/05/26-19:13:17.066537 41 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.066538 41 Compression algorithms supported: +2025/05/26-19:13:17.066538 41 kZSTD supported: 0 +2025/05/26-19:13:17.066539 41 kXpressCompression supported: 0 +2025/05/26-19:13:17.066540 41 kBZip2Compression supported: 0 +2025/05/26-19:13:17.066540 41 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.066541 41 kLZ4Compression supported: 1 +2025/05/26-19:13:17.066542 41 kZlibCompression supported: 0 +2025/05/26-19:13:17.066542 41 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.066543 41 kSnappyCompression supported: 1 +2025/05/26-19:13:17.066544 41 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.066544 41 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.066545 41 Jemalloc supported: 0 +2025/05/26-19:13:17.069114 41 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.069115 41 Options.merge_operator: None +2025/05/26-19:13:17.069116 41 Options.compaction_filter: None +2025/05/26-19:13:17.069117 41 Options.compaction_filter_factory: None +2025/05/26-19:13:17.069117 41 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.069118 41 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.069119 41 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.069190 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff67e00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff80609010 + block_cache: 0xffff67e09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,103 +155,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.630295 42 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.630297 42 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.630297 42 Options.compression: LZ4 -2025/05/04-10:09:55.630299 42 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.630299 42 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.630300 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.630300 42 Options.num_levels: 7 -2025/05/04-10:09:55.630301 42 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.630302 42 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.630302 42 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.630303 42 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.630303 42 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.630304 42 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.630304 42 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.630305 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.630305 42 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.630306 42 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.630306 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.630307 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.630307 42 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.630308 42 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.630309 42 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.630309 42 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.630310 42 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.630310 42 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.630311 42 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.630311 42 Options.compression_opts.enabled: false -2025/05/04-10:09:55.630312 42 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.630312 42 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.630313 42 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.630313 42 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.630314 42 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.630314 42 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.630315 42 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.630315 42 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.630316 42 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.630317 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.630317 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.630318 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.630319 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.630319 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.630320 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.630321 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.630321 42 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.630322 42 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.630322 42 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.630323 42 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.630323 42 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.630324 42 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.630325 42 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.630325 42 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.630326 42 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.630326 42 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.630327 42 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.630327 42 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.630328 42 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.630328 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.630329 42 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.630330 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.630330 42 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.630331 42 Options.table_properties_collectors: -2025/05/04-10:09:55.630331 42 Options.inplace_update_support: 0 -2025/05/04-10:09:55.630332 42 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.630333 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.630333 42 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.630334 42 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.630334 42 Options.bloom_locality: 0 -2025/05/04-10:09:55.630335 42 Options.max_successive_merges: 0 -2025/05/04-10:09:55.630335 42 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.630336 42 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.630336 42 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.630337 42 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.630337 42 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.630338 42 Options.ttl: 2592000 -2025/05/04-10:09:55.630338 42 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.630339 42 Options.default_temperature: kUnknown -2025/05/04-10:09:55.630340 42 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.630340 42 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.630341 42 Options.enable_blob_files: false -2025/05/04-10:09:55.630341 42 Options.min_blob_size: 0 -2025/05/04-10:09:55.630342 42 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.630342 42 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.630343 42 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.630343 42 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.630344 42 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.630345 42 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.630345 42 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.630346 42 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.630346 42 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.630543 42 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.630544 42 Options.merge_operator: None -2025/05/04-10:09:55.630545 42 Options.compaction_filter: None -2025/05/04-10:09:55.630547 42 Options.compaction_filter_factory: None -2025/05/04-10:09:55.630548 42 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.630548 42 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.630549 42 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.630555 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff80600060) +2025/05/26-19:13:17.069194 41 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.069195 41 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.069196 41 Options.compression: LZ4 +2025/05/26-19:13:17.069197 41 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.069198 41 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.069199 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.069200 41 Options.num_levels: 7 +2025/05/26-19:13:17.069200 41 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.069201 41 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.069201 41 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.069202 41 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.069203 41 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.069203 41 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.069204 41 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069206 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069207 41 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069207 41 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.069208 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069208 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069209 41 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.069210 41 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.069210 41 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.069211 41 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069211 41 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069212 41 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069212 41 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069213 41 Options.compression_opts.enabled: false +2025/05/26-19:13:17.069214 41 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069214 41 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.069215 41 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.069215 41 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.069216 41 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.069216 41 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.069270 41 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.069270 41 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.069271 41 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.069272 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.069273 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.069273 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.069274 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.069274 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.069275 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.069276 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.069277 41 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.069277 41 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.069278 41 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.069278 41 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.069279 41 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.069280 41 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.069280 41 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.069281 41 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.069281 41 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.069282 41 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.069283 41 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.069283 41 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.069284 41 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.069284 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.069285 41 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.069286 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.069286 41 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.069288 41 Options.table_properties_collectors: +2025/05/26-19:13:17.069288 41 Options.inplace_update_support: 0 +2025/05/26-19:13:17.069289 41 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.069289 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.069290 41 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.069290 41 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.069291 41 Options.bloom_locality: 0 +2025/05/26-19:13:17.069291 41 Options.max_successive_merges: 0 +2025/05/26-19:13:17.069295 41 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.069296 41 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.069297 41 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.069297 41 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.069298 41 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.069298 41 Options.ttl: 2592000 +2025/05/26-19:13:17.069299 41 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.069299 41 Options.default_temperature: kUnknown +2025/05/26-19:13:17.069300 41 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.069301 41 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.069301 41 Options.enable_blob_files: false +2025/05/26-19:13:17.069302 41 Options.min_blob_size: 0 +2025/05/26-19:13:17.069302 41 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.069303 41 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.069303 41 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.069304 41 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.069305 41 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.069305 41 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.069306 41 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.069306 41 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.069307 41 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.069725 41 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.069726 41 Options.merge_operator: None +2025/05/26-19:13:17.069726 41 Options.compaction_filter: None +2025/05/26-19:13:17.069727 41 Options.compaction_filter_factory: None +2025/05/26-19:13:17.069728 41 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.069728 41 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.069729 41 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.069735 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff67e00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -262,7 +262,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff80609010 + block_cache: 0xffff67e09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -290,103 +290,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.630555 42 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.630556 42 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.630557 42 Options.compression: LZ4 -2025/05/04-10:09:55.630557 42 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.630558 42 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.630558 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.630559 42 Options.num_levels: 7 -2025/05/04-10:09:55.630559 42 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.630560 42 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.630560 42 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.630561 42 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.630561 42 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.630562 42 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.630562 42 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.630563 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.630564 42 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.630565 42 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.630566 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.630567 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.630567 42 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.630568 42 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.630569 42 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.630569 42 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.630570 42 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.630570 42 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.630571 42 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.630572 42 Options.compression_opts.enabled: false -2025/05/04-10:09:55.630572 42 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.630573 42 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.630574 42 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.630574 42 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.630575 42 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.630575 42 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.630576 42 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.630576 42 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.630577 42 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.630579 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.630580 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.630580 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.630581 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.630581 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.630582 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.630582 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.630583 42 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.630583 42 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.630584 42 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.630585 42 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.630585 42 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.630586 42 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.630586 42 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.630587 42 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.630587 42 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.630588 42 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.630589 42 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.630589 42 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.630591 42 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.630592 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.630593 42 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.630593 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.630594 42 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.630595 42 Options.table_properties_collectors: -2025/05/04-10:09:55.630595 42 Options.inplace_update_support: 0 -2025/05/04-10:09:55.630596 42 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.630597 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.630597 42 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.630599 42 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.630599 42 Options.bloom_locality: 0 -2025/05/04-10:09:55.630600 42 Options.max_successive_merges: 0 -2025/05/04-10:09:55.630600 42 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.630601 42 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.630601 42 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.630602 42 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.630602 42 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.630603 42 Options.ttl: 2592000 -2025/05/04-10:09:55.630604 42 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.630606 42 Options.default_temperature: kUnknown -2025/05/04-10:09:55.630607 42 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.630607 42 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.630608 42 Options.enable_blob_files: false -2025/05/04-10:09:55.630608 42 Options.min_blob_size: 0 -2025/05/04-10:09:55.630609 42 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.630630 42 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.630631 42 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.630632 42 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.630632 42 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.630633 42 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.630633 42 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.630634 42 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.630634 42 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.630652 42 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.630653 42 Options.merge_operator: None -2025/05/04-10:09:55.630654 42 Options.compaction_filter: None -2025/05/04-10:09:55.630654 42 Options.compaction_filter_factory: None -2025/05/04-10:09:55.631326 42 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.631329 42 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.631330 42 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.631354 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff80600060) +2025/05/26-19:13:17.069740 41 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.069741 41 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.069742 41 Options.compression: LZ4 +2025/05/26-19:13:17.069742 41 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.069743 41 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.069744 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.069744 41 Options.num_levels: 7 +2025/05/26-19:13:17.069745 41 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.069745 41 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.069746 41 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.069747 41 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.069747 41 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.069748 41 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.069748 41 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069749 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069750 41 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069750 41 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.069751 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069751 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069752 41 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.069753 41 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.069754 41 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.069754 41 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069755 41 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069755 41 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069756 41 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069759 41 Options.compression_opts.enabled: false +2025/05/26-19:13:17.069760 41 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069761 41 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.069761 41 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.069762 41 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.069763 41 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.069763 41 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.069765 41 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.069766 41 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.069767 41 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.069769 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.069769 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.069770 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.069770 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.069771 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.069773 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.069773 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.069774 41 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.069774 41 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.069775 41 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.069776 41 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.069978 41 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.069979 41 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.069980 41 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.069981 41 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.069981 41 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.069982 41 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.069982 41 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.069983 41 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.069984 41 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.069985 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.069985 41 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.069986 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.069987 41 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.069988 41 Options.table_properties_collectors: +2025/05/26-19:13:17.069988 41 Options.inplace_update_support: 0 +2025/05/26-19:13:17.069989 41 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.069990 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.069990 41 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.069991 41 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.069992 41 Options.bloom_locality: 0 +2025/05/26-19:13:17.069993 41 Options.max_successive_merges: 0 +2025/05/26-19:13:17.069993 41 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.069994 41 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.069995 41 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.069996 41 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.069996 41 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.069997 41 Options.ttl: 2592000 +2025/05/26-19:13:17.069998 41 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.069999 41 Options.default_temperature: kUnknown +2025/05/26-19:13:17.069999 41 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070000 41 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070002 41 Options.enable_blob_files: false +2025/05/26-19:13:17.070003 41 Options.min_blob_size: 0 +2025/05/26-19:13:17.070004 41 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070004 41 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070005 41 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070006 41 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070006 41 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070008 41 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070009 41 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070011 41 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070012 41 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070404 41 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070405 41 Options.merge_operator: None +2025/05/26-19:13:17.070407 41 Options.compaction_filter: None +2025/05/26-19:13:17.070407 41 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070408 41 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070409 41 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070409 41 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070416 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff67e00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -397,7 +397,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff80609010 + block_cache: 0xffff67e09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -425,103 +425,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.631356 42 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.631357 42 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.631357 42 Options.compression: LZ4 -2025/05/04-10:09:55.631358 42 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.631359 42 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.631361 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.631362 42 Options.num_levels: 7 -2025/05/04-10:09:55.631364 42 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.631365 42 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.631366 42 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.631367 42 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.631368 42 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.631368 42 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.631369 42 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.631370 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.631371 42 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.631371 42 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.631372 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.631373 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.631373 42 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.631374 42 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.631375 42 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.631375 42 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.631376 42 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.631376 42 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.631377 42 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.631377 42 Options.compression_opts.enabled: false -2025/05/04-10:09:55.631379 42 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.631380 42 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.631381 42 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.631381 42 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.631382 42 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.631382 42 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.631383 42 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.631383 42 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.631385 42 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.631385 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.631386 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.631387 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.631387 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.631389 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.631390 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.631390 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.631391 42 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.631392 42 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.631392 42 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.631393 42 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.631393 42 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.631394 42 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.631396 42 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.631397 42 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.631398 42 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.631398 42 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.631399 42 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.631399 42 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.631400 42 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.631401 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.631401 42 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.631402 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.631403 42 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.631406 42 Options.table_properties_collectors: -2025/05/04-10:09:55.631407 42 Options.inplace_update_support: 0 -2025/05/04-10:09:55.631408 42 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.631409 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.631409 42 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.631410 42 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.631411 42 Options.bloom_locality: 0 -2025/05/04-10:09:55.631411 42 Options.max_successive_merges: 0 -2025/05/04-10:09:55.631412 42 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.631413 42 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.631413 42 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.631414 42 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.631415 42 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.631415 42 Options.ttl: 2592000 -2025/05/04-10:09:55.631416 42 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.631416 42 Options.default_temperature: kUnknown -2025/05/04-10:09:55.631417 42 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.631418 42 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.631418 42 Options.enable_blob_files: false -2025/05/04-10:09:55.631419 42 Options.min_blob_size: 0 -2025/05/04-10:09:55.631419 42 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.631420 42 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.631421 42 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.631421 42 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.631474 42 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.631476 42 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.631476 42 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.631477 42 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.631477 42 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.631509 42 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.631511 42 Options.merge_operator: None -2025/05/04-10:09:55.631511 42 Options.compaction_filter: None -2025/05/04-10:09:55.631512 42 Options.compaction_filter_factory: None -2025/05/04-10:09:55.631512 42 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.631514 42 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.631515 42 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.631522 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff80600060) +2025/05/26-19:13:17.070419 41 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070420 41 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070421 41 Options.compression: LZ4 +2025/05/26-19:13:17.070422 41 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070422 41 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070423 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070424 41 Options.num_levels: 7 +2025/05/26-19:13:17.070425 41 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070426 41 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070426 41 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070427 41 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070427 41 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070428 41 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070429 41 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070429 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070430 41 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070430 41 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070431 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070431 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070432 41 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070432 41 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070434 41 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070435 41 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070435 41 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070436 41 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070436 41 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070437 41 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070438 41 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070438 41 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070439 41 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070439 41 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070440 41 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070440 41 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070441 41 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070441 41 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070442 41 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070443 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070443 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070444 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070445 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070445 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070446 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070449 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070450 41 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070450 41 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070451 41 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070452 41 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070452 41 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070453 41 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070453 41 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070455 41 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070456 41 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070457 41 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070457 41 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070458 41 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070459 41 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070460 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070460 41 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070461 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070461 41 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070462 41 Options.table_properties_collectors: +2025/05/26-19:13:17.070464 41 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070464 41 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070465 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070465 41 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070466 41 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070467 41 Options.bloom_locality: 0 +2025/05/26-19:13:17.070467 41 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070468 41 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070468 41 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070471 41 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070473 41 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070473 41 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070474 41 Options.ttl: 2592000 +2025/05/26-19:13:17.070474 41 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070475 41 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070476 41 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070476 41 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070477 41 Options.enable_blob_files: false +2025/05/26-19:13:17.070478 41 Options.min_blob_size: 0 +2025/05/26-19:13:17.070479 41 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070480 41 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070480 41 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070481 41 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070482 41 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070483 41 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070483 41 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070484 41 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070485 41 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070762 41 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070764 41 Options.merge_operator: None +2025/05/26-19:13:17.070764 41 Options.compaction_filter: None +2025/05/26-19:13:17.070765 41 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070765 41 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070785 41 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070786 41 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070793 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff67e00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -532,7 +532,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff80609010 + block_cache: 0xffff67e09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -560,103 +560,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.631524 42 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.631524 42 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.631525 42 Options.compression: LZ4 -2025/05/04-10:09:55.631526 42 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.631526 42 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.631527 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.631527 42 Options.num_levels: 7 -2025/05/04-10:09:55.631528 42 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.631528 42 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.631529 42 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.631529 42 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.631530 42 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.631531 42 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.631531 42 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.631532 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.631532 42 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.631533 42 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.631534 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.631535 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.631536 42 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.631537 42 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.631537 42 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.631538 42 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.631538 42 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.631539 42 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.631539 42 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.631540 42 Options.compression_opts.enabled: false -2025/05/04-10:09:55.631540 42 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.631541 42 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.631542 42 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.631542 42 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.631543 42 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.631543 42 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.631544 42 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.631544 42 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.631545 42 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.631546 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.631546 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.631547 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.631547 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.631548 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.631550 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.631551 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.631552 42 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.631553 42 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.631553 42 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.631554 42 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.631554 42 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.631555 42 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.631556 42 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.631556 42 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.631557 42 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.631557 42 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.631558 42 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.631558 42 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.631559 42 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.631560 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.631560 42 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.631561 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.631561 42 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.631562 42 Options.table_properties_collectors: -2025/05/04-10:09:55.631563 42 Options.inplace_update_support: 0 -2025/05/04-10:09:55.631564 42 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.631566 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.631566 42 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.631568 42 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.631569 42 Options.bloom_locality: 0 -2025/05/04-10:09:55.631569 42 Options.max_successive_merges: 0 -2025/05/04-10:09:55.631570 42 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.631570 42 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.631571 42 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.631572 42 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.631573 42 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.631573 42 Options.ttl: 2592000 -2025/05/04-10:09:55.631574 42 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.631574 42 Options.default_temperature: kUnknown -2025/05/04-10:09:55.631575 42 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.631576 42 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.631576 42 Options.enable_blob_files: false -2025/05/04-10:09:55.631577 42 Options.min_blob_size: 0 -2025/05/04-10:09:55.631577 42 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.631578 42 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.631579 42 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.631579 42 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.631580 42 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.631581 42 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.631581 42 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.631582 42 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.631582 42 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.631598 42 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.631599 42 Options.merge_operator: None -2025/05/04-10:09:55.631600 42 Options.compaction_filter: None -2025/05/04-10:09:55.631600 42 Options.compaction_filter_factory: None -2025/05/04-10:09:55.631601 42 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.631835 42 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.631836 42 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.631844 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff80600060) +2025/05/26-19:13:17.070799 41 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070800 41 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070801 41 Options.compression: LZ4 +2025/05/26-19:13:17.070802 41 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070804 41 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070805 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070808 41 Options.num_levels: 7 +2025/05/26-19:13:17.070809 41 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070809 41 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070810 41 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070811 41 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070812 41 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070813 41 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070813 41 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070814 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070815 41 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070816 41 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070818 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070818 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070822 41 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070823 41 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070826 41 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070827 41 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070828 41 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070830 41 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070831 41 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070832 41 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070832 41 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070834 41 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070835 41 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070836 41 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070837 41 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070837 41 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070838 41 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070838 41 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070839 41 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070840 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070840 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070841 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070842 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070842 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070843 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070845 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070846 41 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.071109 41 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.071110 41 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.071112 41 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.071112 41 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.071113 41 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.071114 41 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.071114 41 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.071115 41 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.071116 41 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.071116 41 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.071119 41 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.071120 41 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.071121 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.071122 41 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.071122 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.071123 41 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.071124 41 Options.table_properties_collectors: +2025/05/26-19:13:17.071125 41 Options.inplace_update_support: 0 +2025/05/26-19:13:17.071126 41 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.071126 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.071127 41 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.071128 41 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.071128 41 Options.bloom_locality: 0 +2025/05/26-19:13:17.071129 41 Options.max_successive_merges: 0 +2025/05/26-19:13:17.071129 41 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.071130 41 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.071130 41 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.071132 41 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.071132 41 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.071134 41 Options.ttl: 2592000 +2025/05/26-19:13:17.071136 41 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.071137 41 Options.default_temperature: kUnknown +2025/05/26-19:13:17.071137 41 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.071138 41 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.071139 41 Options.enable_blob_files: false +2025/05/26-19:13:17.071139 41 Options.min_blob_size: 0 +2025/05/26-19:13:17.071140 41 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.071141 41 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.071141 41 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.071142 41 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.071143 41 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.071143 41 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.071144 41 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.071145 41 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.071145 41 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.071171 41 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.071172 41 Options.merge_operator: None +2025/05/26-19:13:17.071173 41 Options.compaction_filter: None +2025/05/26-19:13:17.071174 41 Options.compaction_filter_factory: None +2025/05/26-19:13:17.071253 41 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.071255 41 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.071257 41 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.071274 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff67e00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -667,7 +667,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff80609010 + block_cache: 0xffff67e09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -695,93 +695,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.631846 42 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.631847 42 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.631848 42 Options.compression: LZ4 -2025/05/04-10:09:55.631848 42 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.631849 42 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.631849 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.631850 42 Options.num_levels: 7 -2025/05/04-10:09:55.631850 42 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.631851 42 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.631852 42 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.631852 42 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.631854 42 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.631855 42 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.631855 42 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.631856 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.631857 42 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.631857 42 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.631858 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.631858 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.631859 42 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.631873 42 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.631874 42 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.631874 42 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.631875 42 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.631876 42 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.631877 42 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.631877 42 Options.compression_opts.enabled: false -2025/05/04-10:09:55.631878 42 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.631878 42 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.631879 42 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.631879 42 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.631880 42 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.631880 42 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.631882 42 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.631882 42 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.631883 42 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.631884 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.631885 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.631885 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.631886 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.631886 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.631887 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.631887 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.631888 42 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.631889 42 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.631889 42 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.631890 42 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.631891 42 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.631891 42 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.631892 42 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.631893 42 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.631893 42 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.631894 42 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.631894 42 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.631895 42 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.631895 42 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.631896 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.631897 42 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.631897 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.631898 42 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.631899 42 Options.table_properties_collectors: -2025/05/04-10:09:55.631900 42 Options.inplace_update_support: 0 -2025/05/04-10:09:55.631900 42 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.631901 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.631901 42 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.631902 42 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.631902 42 Options.bloom_locality: 0 -2025/05/04-10:09:55.631903 42 Options.max_successive_merges: 0 -2025/05/04-10:09:55.631903 42 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.631904 42 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.631904 42 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.631905 42 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.631905 42 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.631906 42 Options.ttl: 2592000 -2025/05/04-10:09:55.631907 42 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.632001 42 Options.default_temperature: kUnknown -2025/05/04-10:09:55.632004 42 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.632006 42 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.632007 42 Options.enable_blob_files: false -2025/05/04-10:09:55.632008 42 Options.min_blob_size: 0 -2025/05/04-10:09:55.632009 42 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.632010 42 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.632011 42 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.632014 42 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.632016 42 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.632017 42 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.632018 42 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.632019 42 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.632021 42 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.672416 42 DB pointer 0xffff80663c00 +2025/05/26-19:13:17.071277 41 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.071283 41 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.071285 41 Options.compression: LZ4 +2025/05/26-19:13:17.071286 41 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.071289 41 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.071290 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.071292 41 Options.num_levels: 7 +2025/05/26-19:13:17.071294 41 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.071295 41 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.071297 41 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.071298 41 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.071299 41 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.071300 41 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.071301 41 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071302 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071305 41 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071310 41 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.071312 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071313 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071317 41 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.071319 41 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.071320 41 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.071321 41 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071322 41 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071325 41 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071326 41 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071329 41 Options.compression_opts.enabled: false +2025/05/26-19:13:17.071331 41 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071332 41 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.071333 41 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.071335 41 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.071336 41 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.071337 41 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.071339 41 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.071340 41 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.071342 41 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.071343 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.071344 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.071345 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.071347 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.071348 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.071349 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.071351 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.071352 41 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.071355 41 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.071357 41 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.071362 41 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.071364 41 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.071365 41 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.071367 41 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.071369 41 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.071370 41 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.071374 41 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.071375 41 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.071376 41 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.071377 41 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.071379 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.071380 41 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.071382 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.071383 41 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.071388 41 Options.table_properties_collectors: +2025/05/26-19:13:17.071392 41 Options.inplace_update_support: 0 +2025/05/26-19:13:17.071393 41 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.071394 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.071396 41 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.071397 41 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.071398 41 Options.bloom_locality: 0 +2025/05/26-19:13:17.071401 41 Options.max_successive_merges: 0 +2025/05/26-19:13:17.071404 41 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.071405 41 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.071407 41 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.071408 41 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.071420 41 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.071423 41 Options.ttl: 2592000 +2025/05/26-19:13:17.071424 41 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.071425 41 Options.default_temperature: kUnknown +2025/05/26-19:13:17.071427 41 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.071428 41 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.071429 41 Options.enable_blob_files: false +2025/05/26-19:13:17.071430 41 Options.min_blob_size: 0 +2025/05/26-19:13:17.071455 41 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.071456 41 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.071457 41 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.071459 41 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.071460 41 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.071461 41 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.071462 41 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.071464 41 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.071465 41 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.112244 41 DB pointer 0xffff67e63c00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/MANIFEST-000019 b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/MANIFEST-000019 deleted file mode 100644 index 56e20c71b5e2254df1451a7462fb983c05decd8b..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/MANIFEST-000019 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/OPTIONS-000017 b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/OPTIONS-000017 deleted file mode 100644 index ad2b181add715408dc69839970eebfd4c1a28b4b..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/OPTIONS-000017 +++ /dev/null @@ -1,670 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "payload"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "payload"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "mapping"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "mapping"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "version"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "version"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "vector"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "vector"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/000012.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/CURRENT index 625d147412870471b19d90716ccc20a7f207a5c3..056df57bb7f73da12edea3c09d88bc3ff790ec7c 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/CURRENT @@ -1 +1 @@ -MANIFEST-000013 +MANIFEST-000017 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/LOG index cb4593601bcef137c152fae2d3db9e6f14c1855e..aee75c16fcc07d144991d7eac36f3a95e2a91a0d 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.817298 42 RocksDB version: 9.9.3 -2025/05/04-10:09:55.817375 42 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.817404 42 DB SUMMARY -2025/05/04-10:09:55.817406 42 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.817407 42 DB Session ID: CD0SHR3DDC5AMRBDXMDC -2025/05/04-10:09:55.817807 42 CURRENT file: CURRENT -2025/05/04-10:09:55.817809 42 IDENTITY file: IDENTITY -2025/05/04-10:09:55.817814 42 MANIFEST file: MANIFEST-000009 size: 159 Bytes -2025/05/04-10:09:55.817816 42 SST files in ./storage/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index dir, Total Num: 0, files: -2025/05/04-10:09:55.817817 42 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index: 000008.log size: 0 ; -2025/05/04-10:09:55.817817 42 Options.error_if_exists: 0 -2025/05/04-10:09:55.817818 42 Options.create_if_missing: 1 -2025/05/04-10:09:55.817819 42 Options.paranoid_checks: 1 -2025/05/04-10:09:55.817820 42 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.817820 42 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.817821 42 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.817821 42 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.817822 42 Options.env: 0xffff86034000 -2025/05/04-10:09:55.817823 42 Options.fs: PosixFileSystem -2025/05/04-10:09:55.817823 42 Options.info_log: 0xffff806a2500 -2025/05/04-10:09:55.817824 42 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.817825 42 Options.statistics: (nil) -2025/05/04-10:09:55.817825 42 Options.use_fsync: 0 -2025/05/04-10:09:55.817826 42 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.817827 42 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.817827 42 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.817828 42 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.817828 42 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.817829 42 Options.allow_fallocate: 1 -2025/05/04-10:09:55.817829 42 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.817830 42 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.817830 42 Options.use_direct_reads: 0 -2025/05/04-10:09:55.817831 42 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.817831 42 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.817832 42 Options.db_log_dir: -2025/05/04-10:09:55.817833 42 Options.wal_dir: -2025/05/04-10:09:55.817833 42 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.817834 42 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.817834 42 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.817835 42 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.817835 42 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.817836 42 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.817837 42 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.817837 42 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.817838 42 Options.write_buffer_manager: 0xffff8060a200 -2025/05/04-10:09:55.817838 42 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.817839 42 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.817839 42 Options.rate_limiter: (nil) -2025/05/04-10:09:55.817840 42 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.817841 42 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.817841 42 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.817842 42 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.817843 42 Options.unordered_write: 0 -2025/05/04-10:09:55.817843 42 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.817844 42 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.817844 42 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.817845 42 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.817845 42 Options.row_cache: None -2025/05/04-10:09:55.817846 42 Options.wal_filter: None -2025/05/04-10:09:55.817847 42 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.817847 42 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.817848 42 Options.two_write_queues: 0 -2025/05/04-10:09:55.817849 42 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.817849 42 Options.wal_compression: 0 -2025/05/04-10:09:55.817850 42 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.817851 42 Options.atomic_flush: 0 -2025/05/04-10:09:55.817852 42 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.817852 42 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.817853 42 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.817853 42 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.817854 42 Options.write_identity_file: 1 -2025/05/04-10:09:55.817855 42 Options.log_readahead_size: 0 -2025/05/04-10:09:55.817855 42 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.817856 42 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.817856 42 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.817857 42 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.817857 42 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.817858 42 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.817859 42 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.817866 42 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.817866 42 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.817867 42 Options.max_background_jobs: 2 -2025/05/04-10:09:55.817867 42 Options.max_background_compactions: -1 -2025/05/04-10:09:55.817870 42 Options.max_subcompactions: 1 -2025/05/04-10:09:55.817870 42 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.817871 42 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.817871 42 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.817872 42 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.817873 42 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.817873 42 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.817874 42 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.817875 42 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.817875 42 Options.max_open_files: 256 -2025/05/04-10:09:55.817876 42 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.817876 42 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.817877 42 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.817879 42 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.817880 42 Options.max_background_flushes: -1 -2025/05/04-10:09:55.817880 42 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.817881 42 Compression algorithms supported: -2025/05/04-10:09:55.817882 42 kZSTD supported: 0 -2025/05/04-10:09:55.817883 42 kXpressCompression supported: 0 -2025/05/04-10:09:55.817883 42 kBZip2Compression supported: 0 -2025/05/04-10:09:55.817885 42 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.817886 42 kLZ4Compression supported: 1 -2025/05/04-10:09:55.817887 42 kZlibCompression supported: 0 -2025/05/04-10:09:55.817887 42 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.817888 42 kSnappyCompression supported: 1 -2025/05/04-10:09:55.817889 42 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.817889 42 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.817890 42 Jemalloc supported: 0 -2025/05/04-10:09:55.819408 42 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.819409 42 Options.merge_operator: None -2025/05/04-10:09:55.819409 42 Options.compaction_filter: None -2025/05/04-10:09:55.819410 42 Options.compaction_filter_factory: None -2025/05/04-10:09:55.819410 42 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.819411 42 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.819412 42 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.819427 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff80732c60) +2025/05/26-19:13:17.273476 41 RocksDB version: 9.9.3 +2025/05/26-19:13:17.273725 41 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.273726 41 DB SUMMARY +2025/05/26-19:13:17.273728 41 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.273728 41 DB Session ID: PCRZT7AMVX68CX0XDWU1 +2025/05/26-19:13:17.274537 41 CURRENT file: CURRENT +2025/05/26-19:13:17.274538 41 IDENTITY file: IDENTITY +2025/05/26-19:13:17.274543 41 MANIFEST file: MANIFEST-000013 size: 165 Bytes +2025/05/26-19:13:17.274544 41 SST files in ./storage/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index dir, Total Num: 0, files: +2025/05/26-19:13:17.274546 41 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index: 000012.log size: 0 ; +2025/05/26-19:13:17.274547 41 Options.error_if_exists: 0 +2025/05/26-19:13:17.274548 41 Options.create_if_missing: 1 +2025/05/26-19:13:17.274548 41 Options.paranoid_checks: 1 +2025/05/26-19:13:17.274550 41 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.274552 41 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.274553 41 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.274554 41 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.274555 41 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.274555 41 Options.fs: PosixFileSystem +2025/05/26-19:13:17.274556 41 Options.info_log: 0xffff67ea2800 +2025/05/26-19:13:17.274557 41 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.274557 41 Options.statistics: (nil) +2025/05/26-19:13:17.274558 41 Options.use_fsync: 0 +2025/05/26-19:13:17.274559 41 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.274559 41 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.274560 41 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.274560 41 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.274561 41 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.274561 41 Options.allow_fallocate: 1 +2025/05/26-19:13:17.274562 41 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.274563 41 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.274563 41 Options.use_direct_reads: 0 +2025/05/26-19:13:17.274564 41 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.274564 41 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.274565 41 Options.db_log_dir: +2025/05/26-19:13:17.274565 41 Options.wal_dir: +2025/05/26-19:13:17.274566 41 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.274566 41 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.274567 41 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.274568 41 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.274568 41 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.274569 41 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.274569 41 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.274570 41 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.274570 41 Options.write_buffer_manager: 0xffff67e0a200 +2025/05/26-19:13:17.274571 41 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.274572 41 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.274572 41 Options.rate_limiter: (nil) +2025/05/26-19:13:17.274573 41 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.274574 41 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.274574 41 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.274576 41 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.274577 41 Options.unordered_write: 0 +2025/05/26-19:13:17.274578 41 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.274578 41 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.274579 41 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.274579 41 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.274580 41 Options.row_cache: None +2025/05/26-19:13:17.274581 41 Options.wal_filter: None +2025/05/26-19:13:17.274581 41 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.274582 41 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.274582 41 Options.two_write_queues: 0 +2025/05/26-19:13:17.274583 41 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.274584 41 Options.wal_compression: 0 +2025/05/26-19:13:17.274586 41 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.274588 41 Options.atomic_flush: 0 +2025/05/26-19:13:17.274588 41 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.274589 41 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.274590 41 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.274591 41 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.274591 41 Options.write_identity_file: 1 +2025/05/26-19:13:17.274592 41 Options.log_readahead_size: 0 +2025/05/26-19:13:17.274593 41 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.274593 41 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.274594 41 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.274594 41 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.274595 41 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.274596 41 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.274596 41 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.274597 41 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.274598 41 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.274598 41 Options.max_background_jobs: 2 +2025/05/26-19:13:17.274600 41 Options.max_background_compactions: -1 +2025/05/26-19:13:17.274601 41 Options.max_subcompactions: 1 +2025/05/26-19:13:17.274602 41 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.274602 41 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.274603 41 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.274604 41 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.274604 41 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.274605 41 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.274606 41 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.274606 41 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.274609 41 Options.max_open_files: 256 +2025/05/26-19:13:17.274610 41 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.274610 41 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.274611 41 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.274612 41 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.274613 41 Options.max_background_flushes: -1 +2025/05/26-19:13:17.274614 41 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.274614 41 Compression algorithms supported: +2025/05/26-19:13:17.274615 41 kZSTD supported: 0 +2025/05/26-19:13:17.274616 41 kXpressCompression supported: 0 +2025/05/26-19:13:17.274617 41 kBZip2Compression supported: 0 +2025/05/26-19:13:17.274617 41 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.274618 41 kLZ4Compression supported: 1 +2025/05/26-19:13:17.274619 41 kZlibCompression supported: 0 +2025/05/26-19:13:17.274619 41 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.274620 41 kSnappyCompression supported: 1 +2025/05/26-19:13:17.274620 41 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.274621 41 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.274622 41 Jemalloc supported: 0 +2025/05/26-19:13:17.276487 41 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.276488 41 Options.merge_operator: None +2025/05/26-19:13:17.276489 41 Options.compaction_filter: None +2025/05/26-19:13:17.276489 41 Options.compaction_filter_factory: None +2025/05/26-19:13:17.276490 41 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.276490 41 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.276491 41 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.276503 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff67f32c60) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff8060a150 + block_cache: 0xffff67e0a150 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,93 +155,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.819429 42 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.819430 42 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.819430 42 Options.compression: LZ4 -2025/05/04-10:09:55.819431 42 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.819432 42 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.819432 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.819433 42 Options.num_levels: 7 -2025/05/04-10:09:55.819435 42 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.819435 42 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.819436 42 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.819436 42 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.819437 42 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.819438 42 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.819438 42 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.819439 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.819439 42 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.819440 42 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.819441 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.819441 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.819442 42 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.819443 42 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.819443 42 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.819444 42 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.819444 42 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.819445 42 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.819445 42 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.819446 42 Options.compression_opts.enabled: false -2025/05/04-10:09:55.819446 42 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.819447 42 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.819448 42 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.819448 42 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.819449 42 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.819450 42 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.819450 42 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.819451 42 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.819452 42 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.819452 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.819453 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.819453 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.819454 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.819454 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.819455 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.819456 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.819456 42 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.819457 42 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.819457 42 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.819458 42 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.819458 42 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.819459 42 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.819460 42 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.819460 42 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.819461 42 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.819461 42 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.819462 42 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.819462 42 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.819463 42 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.819464 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.819464 42 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.819465 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.819465 42 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.819466 42 Options.table_properties_collectors: -2025/05/04-10:09:55.819467 42 Options.inplace_update_support: 0 -2025/05/04-10:09:55.819467 42 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.819468 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.819469 42 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.819469 42 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.819470 42 Options.bloom_locality: 0 -2025/05/04-10:09:55.819470 42 Options.max_successive_merges: 0 -2025/05/04-10:09:55.819471 42 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.819471 42 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.819472 42 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.819472 42 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.819473 42 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.819473 42 Options.ttl: 2592000 -2025/05/04-10:09:55.819474 42 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.819474 42 Options.default_temperature: kUnknown -2025/05/04-10:09:55.819475 42 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.819475 42 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.819476 42 Options.enable_blob_files: false -2025/05/04-10:09:55.819477 42 Options.min_blob_size: 0 -2025/05/04-10:09:55.819477 42 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.819478 42 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.819478 42 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.819479 42 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.819480 42 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.819480 42 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.819481 42 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.819481 42 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.819482 42 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.827655 42 DB pointer 0xffff80662000 +2025/05/26-19:13:17.276507 41 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.276508 41 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.276509 41 Options.compression: LZ4 +2025/05/26-19:13:17.276509 41 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.276510 41 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.276511 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.276511 41 Options.num_levels: 7 +2025/05/26-19:13:17.276512 41 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.276512 41 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.276513 41 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.276514 41 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.276514 41 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.276515 41 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.276515 41 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.276516 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.276516 41 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.276519 41 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.276521 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.276521 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.276522 41 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.276523 41 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.276526 41 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.276527 41 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.276527 41 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.276528 41 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.276529 41 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.276529 41 Options.compression_opts.enabled: false +2025/05/26-19:13:17.276530 41 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.276530 41 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.276531 41 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.276531 41 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.276532 41 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.276533 41 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.276534 41 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.276534 41 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.276535 41 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.276536 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.276537 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.276537 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.276538 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.276538 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.276539 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.276539 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.276540 41 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.276541 41 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.276541 41 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.276542 41 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.276542 41 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.276543 41 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.276544 41 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.276544 41 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.276545 41 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.276545 41 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.276546 41 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.276547 41 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.276547 41 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.276548 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.276549 41 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.276549 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.276550 41 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.276551 41 Options.table_properties_collectors: +2025/05/26-19:13:17.276552 41 Options.inplace_update_support: 0 +2025/05/26-19:13:17.276552 41 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.276553 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.276553 41 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.276554 41 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.276555 41 Options.bloom_locality: 0 +2025/05/26-19:13:17.276555 41 Options.max_successive_merges: 0 +2025/05/26-19:13:17.276556 41 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.276556 41 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.276557 41 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.276558 41 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.276558 41 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.276559 41 Options.ttl: 2592000 +2025/05/26-19:13:17.276559 41 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.276560 41 Options.default_temperature: kUnknown +2025/05/26-19:13:17.276560 41 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.276561 41 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.276561 41 Options.enable_blob_files: false +2025/05/26-19:13:17.276562 41 Options.min_blob_size: 0 +2025/05/26-19:13:17.276563 41 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.276563 41 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.276564 41 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.276565 41 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.276565 41 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.276566 41 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.276567 41 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.276567 41 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.276568 41 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.289540 41 DB pointer 0xffff67e62000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/MANIFEST-000013 deleted file mode 100644 index ecfbb0d5f4f7aab67595870e415de4d1d3f358cb..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/MANIFEST-000013 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/OPTIONS-000011 deleted file mode 100644 index 1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/OPTIONS-000011 +++ /dev/null @@ -1,214 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/000025.log b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/000025.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/CURRENT index 8b1521509dd8df7cb373c026dcaafcfb2d22f1f7..caa721af8539c91200b4080d85b372d3b85f1c88 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/CURRENT @@ -1 +1 @@ -MANIFEST-000026 +MANIFEST-000030 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/LOG index 8eab85fdf7c636d6d0cc3e5fc259e663ad3278db..60ad222ac7e24d14fadc43c57c3beb44abbd3863 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.597008 38 RocksDB version: 9.9.3 -2025/05/04-10:09:55.597133 38 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.597136 38 DB SUMMARY -2025/05/04-10:09:55.597137 38 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.597138 38 DB Session ID: CD0SHR3DDC5AMRBDXMDR -2025/05/04-10:09:55.598259 38 CURRENT file: CURRENT -2025/05/04-10:09:55.598261 38 IDENTITY file: IDENTITY -2025/05/04-10:09:55.598334 38 MANIFEST file: MANIFEST-000022 size: 767 Bytes -2025/05/04-10:09:55.598336 38 SST files in ./storage/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee dir, Total Num: 2, files: 000009.sst 000018.sst -2025/05/04-10:09:55.598337 38 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee: 000021.log size: 0 ; -2025/05/04-10:09:55.598338 38 Options.error_if_exists: 0 -2025/05/04-10:09:55.598339 38 Options.create_if_missing: 1 -2025/05/04-10:09:55.598340 38 Options.paranoid_checks: 1 -2025/05/04-10:09:55.598340 38 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.598341 38 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.598342 38 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.598343 38 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.598343 38 Options.env: 0xffff86034000 -2025/05/04-10:09:55.598344 38 Options.fs: PosixFileSystem -2025/05/04-10:09:55.598345 38 Options.info_log: 0xffff85ca1000 -2025/05/04-10:09:55.598345 38 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.598346 38 Options.statistics: (nil) -2025/05/04-10:09:55.598347 38 Options.use_fsync: 0 -2025/05/04-10:09:55.598347 38 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.598348 38 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.598348 38 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.598349 38 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.598350 38 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.598350 38 Options.allow_fallocate: 1 -2025/05/04-10:09:55.598351 38 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.598351 38 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.598352 38 Options.use_direct_reads: 0 -2025/05/04-10:09:55.598352 38 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.598353 38 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.598353 38 Options.db_log_dir: -2025/05/04-10:09:55.598354 38 Options.wal_dir: -2025/05/04-10:09:55.598355 38 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.598355 38 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.598356 38 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.598356 38 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.598357 38 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.598357 38 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.598358 38 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.598359 38 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.598359 38 Options.write_buffer_manager: 0xffff85c090c0 -2025/05/04-10:09:55.598360 38 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.598360 38 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.598361 38 Options.rate_limiter: (nil) -2025/05/04-10:09:55.598362 38 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.598388 38 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.598391 38 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.598391 38 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.598393 38 Options.unordered_write: 0 -2025/05/04-10:09:55.598393 38 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.598394 38 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.598395 38 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.598395 38 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.598396 38 Options.row_cache: None -2025/05/04-10:09:55.598397 38 Options.wal_filter: None -2025/05/04-10:09:55.598398 38 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.598399 38 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.598400 38 Options.two_write_queues: 0 -2025/05/04-10:09:55.598400 38 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.598401 38 Options.wal_compression: 0 -2025/05/04-10:09:55.598401 38 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.598402 38 Options.atomic_flush: 0 -2025/05/04-10:09:55.598402 38 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.598403 38 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.598403 38 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.598404 38 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.598405 38 Options.write_identity_file: 1 -2025/05/04-10:09:55.598406 38 Options.log_readahead_size: 0 -2025/05/04-10:09:55.598406 38 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.598407 38 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.598407 38 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.598408 38 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.598409 38 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.598409 38 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.598410 38 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.598411 38 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.598411 38 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.598412 38 Options.max_background_jobs: 2 -2025/05/04-10:09:55.598413 38 Options.max_background_compactions: -1 -2025/05/04-10:09:55.598414 38 Options.max_subcompactions: 1 -2025/05/04-10:09:55.598415 38 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.598416 38 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.598417 38 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.598417 38 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.598418 38 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.598419 38 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.598420 38 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.598420 38 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.598421 38 Options.max_open_files: 256 -2025/05/04-10:09:55.598421 38 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.598422 38 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.598423 38 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.598424 38 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.598424 38 Options.max_background_flushes: -1 -2025/05/04-10:09:55.598425 38 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.598426 38 Compression algorithms supported: -2025/05/04-10:09:55.598427 38 kZSTD supported: 0 -2025/05/04-10:09:55.598427 38 kXpressCompression supported: 0 -2025/05/04-10:09:55.598428 38 kBZip2Compression supported: 0 -2025/05/04-10:09:55.598429 38 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.598430 38 kLZ4Compression supported: 1 -2025/05/04-10:09:55.598430 38 kZlibCompression supported: 0 -2025/05/04-10:09:55.598431 38 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.598431 38 kSnappyCompression supported: 1 -2025/05/04-10:09:55.598433 38 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.598433 38 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.598434 38 Jemalloc supported: 0 -2025/05/04-10:09:55.600629 38 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.600631 38 Options.merge_operator: None -2025/05/04-10:09:55.600632 38 Options.compaction_filter: None -2025/05/04-10:09:55.600632 38 Options.compaction_filter_factory: None -2025/05/04-10:09:55.600633 38 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.600634 38 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.600635 38 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.600646 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff85c00060) +2025/05/26-19:13:17.061278 37 RocksDB version: 9.9.3 +2025/05/26-19:13:17.064699 37 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.064704 37 DB SUMMARY +2025/05/26-19:13:17.064706 37 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.064707 37 DB Session ID: PCRZT7AMVX68CX0XDWTW +2025/05/26-19:13:17.066334 37 CURRENT file: CURRENT +2025/05/26-19:13:17.066335 37 IDENTITY file: IDENTITY +2025/05/26-19:13:17.066443 37 MANIFEST file: MANIFEST-000026 size: 767 Bytes +2025/05/26-19:13:17.066446 37 SST files in ./storage/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee dir, Total Num: 2, files: 000009.sst 000018.sst +2025/05/26-19:13:17.066447 37 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee: 000025.log size: 0 ; +2025/05/26-19:13:17.066448 37 Options.error_if_exists: 0 +2025/05/26-19:13:17.066449 37 Options.create_if_missing: 1 +2025/05/26-19:13:17.066449 37 Options.paranoid_checks: 1 +2025/05/26-19:13:17.066450 37 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.066451 37 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.066452 37 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.066453 37 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.066454 37 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.066455 37 Options.fs: PosixFileSystem +2025/05/26-19:13:17.066456 37 Options.info_log: 0xffff68eac000 +2025/05/26-19:13:17.066457 37 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.066458 37 Options.statistics: (nil) +2025/05/26-19:13:17.066458 37 Options.use_fsync: 0 +2025/05/26-19:13:17.066459 37 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.066460 37 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.066461 37 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.066461 37 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.066462 37 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.066463 37 Options.allow_fallocate: 1 +2025/05/26-19:13:17.066464 37 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.066464 37 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.066465 37 Options.use_direct_reads: 0 +2025/05/26-19:13:17.066466 37 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.066466 37 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.066467 37 Options.db_log_dir: +2025/05/26-19:13:17.066468 37 Options.wal_dir: +2025/05/26-19:13:17.066468 37 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.066469 37 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.066470 37 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.066470 37 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.066471 37 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.066472 37 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.066473 37 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.066474 37 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.066475 37 Options.write_buffer_manager: 0xffff68e090c0 +2025/05/26-19:13:17.066475 37 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.066476 37 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.066477 37 Options.rate_limiter: (nil) +2025/05/26-19:13:17.066478 37 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.066479 37 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.066480 37 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.066481 37 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.066482 37 Options.unordered_write: 0 +2025/05/26-19:13:17.066483 37 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.066484 37 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.066485 37 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.066485 37 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.066486 37 Options.row_cache: None +2025/05/26-19:13:17.066487 37 Options.wal_filter: None +2025/05/26-19:13:17.066488 37 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.066488 37 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.066489 37 Options.two_write_queues: 0 +2025/05/26-19:13:17.066489 37 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.066490 37 Options.wal_compression: 0 +2025/05/26-19:13:17.066491 37 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.066491 37 Options.atomic_flush: 0 +2025/05/26-19:13:17.066492 37 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.066493 37 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.066494 37 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.066494 37 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.066495 37 Options.write_identity_file: 1 +2025/05/26-19:13:17.066496 37 Options.log_readahead_size: 0 +2025/05/26-19:13:17.066497 37 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.066498 37 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.066499 37 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.066500 37 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.066501 37 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.066502 37 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.066503 37 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.066504 37 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.066505 37 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.066506 37 Options.max_background_jobs: 2 +2025/05/26-19:13:17.066507 37 Options.max_background_compactions: -1 +2025/05/26-19:13:17.066508 37 Options.max_subcompactions: 1 +2025/05/26-19:13:17.066509 37 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.066510 37 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.066510 37 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.066511 37 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.066512 37 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.066512 37 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.066514 37 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.066514 37 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.066515 37 Options.max_open_files: 256 +2025/05/26-19:13:17.066516 37 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.066517 37 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.066517 37 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.066518 37 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.066519 37 Options.max_background_flushes: -1 +2025/05/26-19:13:17.066520 37 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.066521 37 Compression algorithms supported: +2025/05/26-19:13:17.066522 37 kZSTD supported: 0 +2025/05/26-19:13:17.066525 37 kXpressCompression supported: 0 +2025/05/26-19:13:17.066528 37 kBZip2Compression supported: 0 +2025/05/26-19:13:17.066529 37 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.066530 37 kLZ4Compression supported: 1 +2025/05/26-19:13:17.066531 37 kZlibCompression supported: 0 +2025/05/26-19:13:17.066532 37 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.066533 37 kSnappyCompression supported: 1 +2025/05/26-19:13:17.066534 37 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.066534 37 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.066535 37 Jemalloc supported: 0 +2025/05/26-19:13:17.070808 37 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070809 37 Options.merge_operator: None +2025/05/26-19:13:17.070810 37 Options.compaction_filter: None +2025/05/26-19:13:17.070811 37 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070812 37 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070813 37 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070814 37 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070827 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68e00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff85c09010 + block_cache: 0xffff68e09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,103 +155,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.600648 38 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.600648 38 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.600649 38 Options.compression: LZ4 -2025/05/04-10:09:55.600650 38 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.600650 38 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.600651 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.600652 38 Options.num_levels: 7 -2025/05/04-10:09:55.600652 38 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.600653 38 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.600653 38 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.600654 38 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.600655 38 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.600655 38 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.600656 38 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.600656 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.600657 38 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.600657 38 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.600658 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.600659 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.600659 38 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.600660 38 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.600660 38 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.600663 38 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.600663 38 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.600664 38 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.600665 38 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.600665 38 Options.compression_opts.enabled: false -2025/05/04-10:09:55.600666 38 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.600666 38 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.600667 38 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.600667 38 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.600668 38 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.600669 38 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.600669 38 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.600670 38 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.600671 38 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.600671 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.600672 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.600672 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.600673 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.600673 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.600674 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.600675 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.600676 38 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.600677 38 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.600677 38 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.600678 38 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.600678 38 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.600680 38 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.600681 38 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.600682 38 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.600683 38 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.600683 38 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.600684 38 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.600685 38 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.600685 38 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.600686 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.600687 38 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.600687 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.600688 38 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.600690 38 Options.table_properties_collectors: -2025/05/04-10:09:55.600690 38 Options.inplace_update_support: 0 -2025/05/04-10:09:55.600691 38 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.600691 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.600692 38 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.600693 38 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.600693 38 Options.bloom_locality: 0 -2025/05/04-10:09:55.600694 38 Options.max_successive_merges: 0 -2025/05/04-10:09:55.600694 38 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.600695 38 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.600696 38 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.600697 38 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.600697 38 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.600698 38 Options.ttl: 2592000 -2025/05/04-10:09:55.600698 38 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.600699 38 Options.default_temperature: kUnknown -2025/05/04-10:09:55.600699 38 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.600700 38 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.600700 38 Options.enable_blob_files: false -2025/05/04-10:09:55.600701 38 Options.min_blob_size: 0 -2025/05/04-10:09:55.600701 38 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.600702 38 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.600703 38 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.600703 38 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.600704 38 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.600705 38 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.600705 38 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.600706 38 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.600706 38 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.600964 38 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.600967 38 Options.merge_operator: None -2025/05/04-10:09:55.600967 38 Options.compaction_filter: None -2025/05/04-10:09:55.600968 38 Options.compaction_filter_factory: None -2025/05/04-10:09:55.600969 38 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.600969 38 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.600970 38 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.600981 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff85c00060) +2025/05/26-19:13:17.070830 37 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070831 37 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070832 37 Options.compression: LZ4 +2025/05/26-19:13:17.070833 37 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070842 37 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070843 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070845 37 Options.num_levels: 7 +2025/05/26-19:13:17.070846 37 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070846 37 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070847 37 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070847 37 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070848 37 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070849 37 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070849 37 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070850 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070851 37 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070851 37 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070852 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070852 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070854 37 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070855 37 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070856 37 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070856 37 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070857 37 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070857 37 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070858 37 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070859 37 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070859 37 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070860 37 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070860 37 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070861 37 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070861 37 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070862 37 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070863 37 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070865 37 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070866 37 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070868 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070869 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070869 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070870 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070870 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070872 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070873 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070874 37 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070875 37 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070875 37 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070876 37 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070877 37 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070878 37 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070879 37 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070879 37 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070881 37 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070882 37 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070883 37 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070884 37 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070884 37 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070885 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070886 37 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070886 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070887 37 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070888 37 Options.table_properties_collectors: +2025/05/26-19:13:17.070889 37 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070890 37 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070890 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070891 37 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070893 37 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070894 37 Options.bloom_locality: 0 +2025/05/26-19:13:17.070895 37 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070895 37 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070896 37 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070898 37 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070900 37 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070900 37 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070901 37 Options.ttl: 2592000 +2025/05/26-19:13:17.070902 37 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070902 37 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070903 37 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070904 37 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070904 37 Options.enable_blob_files: false +2025/05/26-19:13:17.070905 37 Options.min_blob_size: 0 +2025/05/26-19:13:17.070906 37 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070907 37 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070908 37 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070908 37 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070909 37 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070912 37 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070912 37 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070913 37 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070914 37 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.071158 37 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.071161 37 Options.merge_operator: None +2025/05/26-19:13:17.071165 37 Options.compaction_filter: None +2025/05/26-19:13:17.071166 37 Options.compaction_filter_factory: None +2025/05/26-19:13:17.071170 37 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.071172 37 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.071174 37 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.071213 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68e00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -262,7 +262,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff85c09010 + block_cache: 0xffff68e09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -290,103 +290,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.600983 38 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.600983 38 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.600984 38 Options.compression: LZ4 -2025/05/04-10:09:55.600985 38 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.600985 38 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.600986 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.600986 38 Options.num_levels: 7 -2025/05/04-10:09:55.600987 38 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.600987 38 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.600988 38 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.600989 38 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.600989 38 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.600990 38 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.600991 38 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.600992 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.600992 38 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.600993 38 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.600993 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.600994 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.600995 38 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.600995 38 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.600996 38 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.600996 38 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.600997 38 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.600997 38 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.601001 38 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.601003 38 Options.compression_opts.enabled: false -2025/05/04-10:09:55.601003 38 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.601004 38 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.601005 38 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.601005 38 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.601006 38 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.601007 38 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.601008 38 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.601008 38 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.601009 38 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.601010 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.601011 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.601011 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.601012 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.601012 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.601013 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.601013 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.601014 38 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.601015 38 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.601016 38 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.601017 38 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.601018 38 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.601019 38 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.601019 38 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.601020 38 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.601021 38 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.601021 38 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.601022 38 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.601022 38 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.601023 38 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.601025 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.601026 38 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.601027 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.601027 38 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.601029 38 Options.table_properties_collectors: -2025/05/04-10:09:55.601030 38 Options.inplace_update_support: 0 -2025/05/04-10:09:55.601030 38 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.601031 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.601032 38 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.601033 38 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.601033 38 Options.bloom_locality: 0 -2025/05/04-10:09:55.601034 38 Options.max_successive_merges: 0 -2025/05/04-10:09:55.601034 38 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.601035 38 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.601035 38 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.601036 38 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.601036 38 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.601037 38 Options.ttl: 2592000 -2025/05/04-10:09:55.601038 38 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.601039 38 Options.default_temperature: kUnknown -2025/05/04-10:09:55.601039 38 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.601040 38 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.601040 38 Options.enable_blob_files: false -2025/05/04-10:09:55.601041 38 Options.min_blob_size: 0 -2025/05/04-10:09:55.601041 38 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.601042 38 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.601043 38 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.601044 38 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.601046 38 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.601047 38 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.601047 38 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.601048 38 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.601049 38 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.601231 38 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.601233 38 Options.merge_operator: None -2025/05/04-10:09:55.601233 38 Options.compaction_filter: None -2025/05/04-10:09:55.601234 38 Options.compaction_filter_factory: None -2025/05/04-10:09:55.601234 38 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.601235 38 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.601235 38 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.601244 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff85c00060) +2025/05/26-19:13:17.071292 37 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.071294 37 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.071296 37 Options.compression: LZ4 +2025/05/26-19:13:17.071297 37 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.071298 37 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.071299 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.071300 37 Options.num_levels: 7 +2025/05/26-19:13:17.071301 37 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.071302 37 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.071304 37 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.071306 37 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.071309 37 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.071312 37 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.071314 37 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071317 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071318 37 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071319 37 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.071320 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071322 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071323 37 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.071328 37 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.071330 37 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.071331 37 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071333 37 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071334 37 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071395 37 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071397 37 Options.compression_opts.enabled: false +2025/05/26-19:13:17.071398 37 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071401 37 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.071403 37 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.071405 37 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.071407 37 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.071408 37 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.071409 37 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.071412 37 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.071414 37 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.071418 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.071420 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.071422 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.071423 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.071424 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.071425 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.071426 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.071427 37 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.071455 37 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.071456 37 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.071457 37 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.071459 37 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.071460 37 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.071461 37 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.071462 37 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.071463 37 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.071464 37 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.071465 37 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.071466 37 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.071471 37 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.071472 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.071473 37 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.071474 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.071475 37 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.071565 37 Options.table_properties_collectors: +2025/05/26-19:13:17.071568 37 Options.inplace_update_support: 0 +2025/05/26-19:13:17.071571 37 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.071572 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.071575 37 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.071578 37 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.071579 37 Options.bloom_locality: 0 +2025/05/26-19:13:17.071580 37 Options.max_successive_merges: 0 +2025/05/26-19:13:17.071581 37 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.071582 37 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.071583 37 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.071668 37 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.071669 37 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.071670 37 Options.ttl: 2592000 +2025/05/26-19:13:17.071671 37 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.071671 37 Options.default_temperature: kUnknown +2025/05/26-19:13:17.071672 37 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.071672 37 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.071673 37 Options.enable_blob_files: false +2025/05/26-19:13:17.071674 37 Options.min_blob_size: 0 +2025/05/26-19:13:17.071674 37 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.071675 37 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.071675 37 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.071676 37 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.071677 37 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.071677 37 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.071678 37 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.071678 37 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.071679 37 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.071918 37 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.071920 37 Options.merge_operator: None +2025/05/26-19:13:17.071921 37 Options.compaction_filter: None +2025/05/26-19:13:17.071921 37 Options.compaction_filter_factory: None +2025/05/26-19:13:17.071922 37 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.071923 37 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.071923 37 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.071930 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68e00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -397,7 +397,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff85c09010 + block_cache: 0xffff68e09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -425,103 +425,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.601250 38 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.601250 38 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.601251 38 Options.compression: LZ4 -2025/05/04-10:09:55.601252 38 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.601252 38 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.601253 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.601254 38 Options.num_levels: 7 -2025/05/04-10:09:55.601254 38 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.601255 38 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.601255 38 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.601256 38 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.601257 38 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.601257 38 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.601259 38 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.601260 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.601260 38 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.601261 38 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.601262 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.601263 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.601264 38 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.601265 38 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.601265 38 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.601266 38 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.601267 38 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.601267 38 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.601268 38 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.601268 38 Options.compression_opts.enabled: false -2025/05/04-10:09:55.601269 38 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.601269 38 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.601270 38 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.601272 38 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.601273 38 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.601274 38 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.601274 38 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.601275 38 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.601276 38 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.601276 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.601277 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.601278 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.601278 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.601279 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.601279 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.601280 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.601280 38 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.601281 38 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.601281 38 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.601282 38 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.601283 38 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.601283 38 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.601284 38 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.601286 38 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.601287 38 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.601287 38 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.601288 38 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.601288 38 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.601289 38 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.601290 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.601290 38 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.601291 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.601292 38 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.601292 38 Options.table_properties_collectors: -2025/05/04-10:09:55.601294 38 Options.inplace_update_support: 0 -2025/05/04-10:09:55.601294 38 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.601295 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.601295 38 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.601296 38 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.601297 38 Options.bloom_locality: 0 -2025/05/04-10:09:55.601297 38 Options.max_successive_merges: 0 -2025/05/04-10:09:55.601298 38 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.601298 38 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.601299 38 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.601299 38 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.601301 38 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.601302 38 Options.ttl: 2592000 -2025/05/04-10:09:55.601302 38 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.601303 38 Options.default_temperature: kUnknown -2025/05/04-10:09:55.601303 38 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.601304 38 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.601305 38 Options.enable_blob_files: false -2025/05/04-10:09:55.601305 38 Options.min_blob_size: 0 -2025/05/04-10:09:55.601306 38 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.601306 38 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.601307 38 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.601308 38 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.601308 38 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.601309 38 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.601309 38 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.601310 38 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.601311 38 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.601617 38 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.601618 38 Options.merge_operator: None -2025/05/04-10:09:55.601619 38 Options.compaction_filter: None -2025/05/04-10:09:55.601620 38 Options.compaction_filter_factory: None -2025/05/04-10:09:55.601620 38 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.601621 38 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.601621 38 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.601627 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff85c00060) +2025/05/26-19:13:17.071934 37 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.071934 37 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.071935 37 Options.compression: LZ4 +2025/05/26-19:13:17.071936 37 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.071936 37 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.071937 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.071938 37 Options.num_levels: 7 +2025/05/26-19:13:17.071938 37 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.071939 37 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.071939 37 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.071940 37 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.071940 37 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.071941 37 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.071941 37 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071942 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071943 37 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071943 37 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.071945 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071947 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071949 37 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.071949 37 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.071950 37 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.071950 37 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.071951 37 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.071951 37 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.071952 37 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.071952 37 Options.compression_opts.enabled: false +2025/05/26-19:13:17.071953 37 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.071953 37 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.071954 37 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.071964 37 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.071965 37 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.071965 37 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.071966 37 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.071967 37 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.071968 37 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.071968 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.071969 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.071971 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.071971 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.071972 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.071973 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.071973 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.071974 37 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.071974 37 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.071975 37 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.071975 37 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.071976 37 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.071976 37 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.071977 37 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.071978 37 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.071978 37 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.071979 37 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.071979 37 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.071981 37 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.071981 37 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.071982 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.071983 37 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.071984 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.071985 37 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.071985 37 Options.table_properties_collectors: +2025/05/26-19:13:17.071986 37 Options.inplace_update_support: 0 +2025/05/26-19:13:17.071987 37 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.071990 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.071991 37 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.071993 37 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.071995 37 Options.bloom_locality: 0 +2025/05/26-19:13:17.071995 37 Options.max_successive_merges: 0 +2025/05/26-19:13:17.071996 37 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.071996 37 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.071997 37 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.071997 37 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.071998 37 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.071998 37 Options.ttl: 2592000 +2025/05/26-19:13:17.071999 37 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.072000 37 Options.default_temperature: kUnknown +2025/05/26-19:13:17.072000 37 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.072001 37 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.072001 37 Options.enable_blob_files: false +2025/05/26-19:13:17.072002 37 Options.min_blob_size: 0 +2025/05/26-19:13:17.072002 37 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.072003 37 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.072003 37 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.072004 37 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.072006 37 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.072008 37 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.072009 37 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.072009 37 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.072010 37 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.072030 37 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.072031 37 Options.merge_operator: None +2025/05/26-19:13:17.072031 37 Options.compaction_filter: None +2025/05/26-19:13:17.072032 37 Options.compaction_filter_factory: None +2025/05/26-19:13:17.072032 37 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.072033 37 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.072033 37 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.072040 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68e00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -532,7 +532,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff85c09010 + block_cache: 0xffff68e09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -560,103 +560,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.601629 38 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.601629 38 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.601631 38 Options.compression: LZ4 -2025/05/04-10:09:55.601631 38 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.601632 38 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.601633 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.601633 38 Options.num_levels: 7 -2025/05/04-10:09:55.601635 38 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.601636 38 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.601637 38 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.601637 38 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.601638 38 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.601639 38 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.601639 38 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.601640 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.601640 38 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.601641 38 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.601641 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.601643 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.601643 38 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.601644 38 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.601645 38 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.601645 38 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.601646 38 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.601646 38 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.601647 38 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.601647 38 Options.compression_opts.enabled: false -2025/05/04-10:09:55.601648 38 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.601648 38 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.601649 38 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.601649 38 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.601650 38 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.601651 38 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.601651 38 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.601652 38 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.601652 38 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.601653 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.601654 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.601654 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.601655 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.601655 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.601656 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.601657 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.601657 38 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.601658 38 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.601658 38 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.601659 38 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.601661 38 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.601662 38 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.601663 38 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.601663 38 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.601664 38 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.601664 38 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.601665 38 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.601665 38 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.601666 38 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.601667 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.601667 38 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.601668 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.601670 38 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.601671 38 Options.table_properties_collectors: -2025/05/04-10:09:55.601672 38 Options.inplace_update_support: 0 -2025/05/04-10:09:55.601672 38 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.601673 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.601676 38 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.601676 38 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.601677 38 Options.bloom_locality: 0 -2025/05/04-10:09:55.601677 38 Options.max_successive_merges: 0 -2025/05/04-10:09:55.601678 38 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.601678 38 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.601679 38 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.601706 38 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.601708 38 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.601708 38 Options.ttl: 2592000 -2025/05/04-10:09:55.601709 38 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.601709 38 Options.default_temperature: kUnknown -2025/05/04-10:09:55.601710 38 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.601711 38 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.601711 38 Options.enable_blob_files: false -2025/05/04-10:09:55.601712 38 Options.min_blob_size: 0 -2025/05/04-10:09:55.601712 38 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.601713 38 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.601713 38 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.601714 38 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.601715 38 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.601716 38 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.601716 38 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.601717 38 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.601718 38 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.601738 38 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.601739 38 Options.merge_operator: None -2025/05/04-10:09:55.601740 38 Options.compaction_filter: None -2025/05/04-10:09:55.601741 38 Options.compaction_filter_factory: None -2025/05/04-10:09:55.601741 38 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.601742 38 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.601742 38 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.601748 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff85c00060) +2025/05/26-19:13:17.072044 37 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.072045 37 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.072045 37 Options.compression: LZ4 +2025/05/26-19:13:17.072046 37 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.072046 37 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.072048 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.072049 37 Options.num_levels: 7 +2025/05/26-19:13:17.072049 37 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.072050 37 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.072050 37 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.072052 37 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.072054 37 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.072054 37 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.072055 37 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.072055 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.072056 37 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.072056 37 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.072057 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.072129 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.072130 37 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.072131 37 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.072131 37 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.072133 37 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.072134 37 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.072135 37 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.072136 37 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.072136 37 Options.compression_opts.enabled: false +2025/05/26-19:13:17.072137 37 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.072138 37 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.072141 37 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.072141 37 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.072142 37 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.072166 37 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.072168 37 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.072168 37 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.072169 37 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.072170 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.072171 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.072172 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.072174 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.072175 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.072177 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.072178 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.072178 37 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.072179 37 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.072179 37 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.072180 37 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.072180 37 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.072181 37 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.072182 37 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.072182 37 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.072183 37 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.072186 37 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.072187 37 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.072189 37 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.072190 37 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.072190 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.072192 37 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.072193 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.072193 37 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.072194 37 Options.table_properties_collectors: +2025/05/26-19:13:17.072195 37 Options.inplace_update_support: 0 +2025/05/26-19:13:17.072196 37 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.072196 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.072197 37 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.072198 37 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.072198 37 Options.bloom_locality: 0 +2025/05/26-19:13:17.072199 37 Options.max_successive_merges: 0 +2025/05/26-19:13:17.072199 37 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.072200 37 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.072200 37 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.072201 37 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.072201 37 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.072202 37 Options.ttl: 2592000 +2025/05/26-19:13:17.072202 37 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.072203 37 Options.default_temperature: kUnknown +2025/05/26-19:13:17.072204 37 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.072206 37 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.072206 37 Options.enable_blob_files: false +2025/05/26-19:13:17.072207 37 Options.min_blob_size: 0 +2025/05/26-19:13:17.072207 37 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.072208 37 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.072208 37 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.072209 37 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.072210 37 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.072210 37 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.072211 37 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.072212 37 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.072212 37 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.072235 37 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.072237 37 Options.merge_operator: None +2025/05/26-19:13:17.072238 37 Options.compaction_filter: None +2025/05/26-19:13:17.072238 37 Options.compaction_filter_factory: None +2025/05/26-19:13:17.072239 37 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.072240 37 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.072240 37 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.072246 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68e00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -667,7 +667,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff85c09010 + block_cache: 0xffff68e09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -695,93 +695,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.601749 38 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.601750 38 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.601750 38 Options.compression: LZ4 -2025/05/04-10:09:55.601751 38 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.601751 38 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.601752 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.601752 38 Options.num_levels: 7 -2025/05/04-10:09:55.601753 38 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.601754 38 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.601756 38 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.601756 38 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.601757 38 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.601758 38 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.601758 38 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.601759 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.601759 38 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.601760 38 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.601761 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.601761 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.601762 38 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.601762 38 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.601763 38 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.601763 38 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.601764 38 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.601765 38 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.601766 38 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.601766 38 Options.compression_opts.enabled: false -2025/05/04-10:09:55.601767 38 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.601768 38 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.601768 38 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.601769 38 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.601769 38 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.601770 38 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.601770 38 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.601773 38 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.601774 38 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.601774 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.601775 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.601776 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.601777 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.601778 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.601779 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.601779 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.601780 38 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.601780 38 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.601781 38 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.601782 38 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.601783 38 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.601784 38 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.601784 38 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.601785 38 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.601786 38 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.601786 38 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.601787 38 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.601787 38 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.601788 38 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.601788 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.601789 38 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.601790 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.601790 38 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.601791 38 Options.table_properties_collectors: -2025/05/04-10:09:55.601792 38 Options.inplace_update_support: 0 -2025/05/04-10:09:55.601792 38 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.601793 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.601793 38 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.601794 38 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.601795 38 Options.bloom_locality: 0 -2025/05/04-10:09:55.601795 38 Options.max_successive_merges: 0 -2025/05/04-10:09:55.601796 38 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.601796 38 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.601797 38 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.601797 38 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.601798 38 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.601798 38 Options.ttl: 2592000 -2025/05/04-10:09:55.601799 38 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.601799 38 Options.default_temperature: kUnknown -2025/05/04-10:09:55.601800 38 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.601800 38 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.601801 38 Options.enable_blob_files: false -2025/05/04-10:09:55.601801 38 Options.min_blob_size: 0 -2025/05/04-10:09:55.601802 38 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.601803 38 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.601803 38 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.601804 38 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.601804 38 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.601805 38 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.601806 38 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.601807 38 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.601807 38 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.652740 38 DB pointer 0xffff85c63c00 +2025/05/26-19:13:17.072251 37 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.072251 37 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.072252 37 Options.compression: LZ4 +2025/05/26-19:13:17.072252 37 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.072254 37 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.072255 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.072255 37 Options.num_levels: 7 +2025/05/26-19:13:17.072256 37 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.072257 37 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.072257 37 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.072258 37 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.072258 37 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.072259 37 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.072259 37 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.072260 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.072260 37 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.072261 37 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.072262 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.072263 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.072264 37 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.072264 37 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.072265 37 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.072265 37 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.072266 37 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.072266 37 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.072267 37 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.072267 37 Options.compression_opts.enabled: false +2025/05/26-19:13:17.072268 37 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.072268 37 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.072269 37 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.072269 37 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.072301 37 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.072302 37 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.072302 37 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.072303 37 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.072303 37 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.072304 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.072305 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.072305 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.072306 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.072309 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.072310 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.072311 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.072311 37 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.072312 37 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.072312 37 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.072313 37 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.072313 37 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.072315 37 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.072316 37 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.072317 37 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.072317 37 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.072318 37 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.072320 37 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.072320 37 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.072321 37 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.072322 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.072324 37 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.072324 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.072325 37 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.072326 37 Options.table_properties_collectors: +2025/05/26-19:13:17.072326 37 Options.inplace_update_support: 0 +2025/05/26-19:13:17.072327 37 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.072327 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.072328 37 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.072329 37 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.072329 37 Options.bloom_locality: 0 +2025/05/26-19:13:17.072330 37 Options.max_successive_merges: 0 +2025/05/26-19:13:17.072330 37 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.072331 37 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.072331 37 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.072332 37 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.072332 37 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.072333 37 Options.ttl: 2592000 +2025/05/26-19:13:17.072333 37 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.072334 37 Options.default_temperature: kUnknown +2025/05/26-19:13:17.072334 37 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.072335 37 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.072336 37 Options.enable_blob_files: false +2025/05/26-19:13:17.072336 37 Options.min_blob_size: 0 +2025/05/26-19:13:17.072337 37 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.072338 37 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.072339 37 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.072340 37 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.072341 37 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.072343 37 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.072343 37 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.072344 37 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.072346 37 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.109802 37 DB pointer 0xffff68e6ec00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/MANIFEST-000026 b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/MANIFEST-000026 deleted file mode 100644 index faf06621218337ade91629f1d89b34d13b3dc648..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/MANIFEST-000026 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/OPTIONS-000024 b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/OPTIONS-000024 deleted file mode 100644 index ad2b181add715408dc69839970eebfd4c1a28b4b..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/OPTIONS-000024 +++ /dev/null @@ -1,670 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "payload"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "payload"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "mapping"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "mapping"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "version"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "version"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "vector"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "vector"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/000012.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/CURRENT index 625d147412870471b19d90716ccc20a7f207a5c3..056df57bb7f73da12edea3c09d88bc3ff790ec7c 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/CURRENT @@ -1 +1 @@ -MANIFEST-000013 +MANIFEST-000017 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/LOG index be465f0c717ad9151094ee3ae313d7a94801c4a7..1ef363d43c7c05b700dda78af115c800cc598ec7 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.809487 38 RocksDB version: 9.9.3 -2025/05/04-10:09:55.809649 38 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.809651 38 DB SUMMARY -2025/05/04-10:09:55.809653 38 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.809653 38 DB Session ID: CD0SHR3DDC5AMRBDXMDE -2025/05/04-10:09:55.810228 38 CURRENT file: CURRENT -2025/05/04-10:09:55.810229 38 IDENTITY file: IDENTITY -2025/05/04-10:09:55.810234 38 MANIFEST file: MANIFEST-000009 size: 159 Bytes -2025/05/04-10:09:55.810259 38 SST files in ./storage/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index dir, Total Num: 0, files: -2025/05/04-10:09:55.810260 38 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index: 000008.log size: 0 ; -2025/05/04-10:09:55.810261 38 Options.error_if_exists: 0 -2025/05/04-10:09:55.810261 38 Options.create_if_missing: 1 -2025/05/04-10:09:55.810262 38 Options.paranoid_checks: 1 -2025/05/04-10:09:55.810263 38 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.810264 38 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.810264 38 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.810265 38 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.810266 38 Options.env: 0xffff86034000 -2025/05/04-10:09:55.810267 38 Options.fs: PosixFileSystem -2025/05/04-10:09:55.810267 38 Options.info_log: 0xffff85ca2800 -2025/05/04-10:09:55.810268 38 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.810269 38 Options.statistics: (nil) -2025/05/04-10:09:55.810269 38 Options.use_fsync: 0 -2025/05/04-10:09:55.810270 38 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.810270 38 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.810271 38 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.810272 38 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.810272 38 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.810273 38 Options.allow_fallocate: 1 -2025/05/04-10:09:55.810273 38 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.810274 38 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.810275 38 Options.use_direct_reads: 0 -2025/05/04-10:09:55.810275 38 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.810276 38 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.810276 38 Options.db_log_dir: -2025/05/04-10:09:55.810277 38 Options.wal_dir: -2025/05/04-10:09:55.810277 38 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.810278 38 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.810279 38 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.810279 38 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.810280 38 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.810281 38 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.810281 38 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.810282 38 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.810282 38 Options.write_buffer_manager: 0xffff85c0a2c0 -2025/05/04-10:09:55.810283 38 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.810284 38 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.810284 38 Options.rate_limiter: (nil) -2025/05/04-10:09:55.810285 38 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.810286 38 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.810287 38 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.810287 38 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.810288 38 Options.unordered_write: 0 -2025/05/04-10:09:55.810288 38 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.810289 38 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.810290 38 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.810290 38 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.810291 38 Options.row_cache: None -2025/05/04-10:09:55.810291 38 Options.wal_filter: None -2025/05/04-10:09:55.810292 38 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.810292 38 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.810293 38 Options.two_write_queues: 0 -2025/05/04-10:09:55.810294 38 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.810294 38 Options.wal_compression: 0 -2025/05/04-10:09:55.810295 38 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.810296 38 Options.atomic_flush: 0 -2025/05/04-10:09:55.810296 38 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.810297 38 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.810298 38 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.810298 38 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.810299 38 Options.write_identity_file: 1 -2025/05/04-10:09:55.810300 38 Options.log_readahead_size: 0 -2025/05/04-10:09:55.810300 38 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.810301 38 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.810302 38 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.810302 38 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.810303 38 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.810304 38 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.810304 38 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.810305 38 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.810306 38 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.810306 38 Options.max_background_jobs: 2 -2025/05/04-10:09:55.810307 38 Options.max_background_compactions: -1 -2025/05/04-10:09:55.810307 38 Options.max_subcompactions: 1 -2025/05/04-10:09:55.810308 38 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.810308 38 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.810309 38 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.810310 38 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.810310 38 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.810311 38 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.810311 38 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.810312 38 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.810312 38 Options.max_open_files: 256 -2025/05/04-10:09:55.810313 38 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.810314 38 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.810314 38 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.810315 38 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.810316 38 Options.max_background_flushes: -1 -2025/05/04-10:09:55.810316 38 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.810317 38 Compression algorithms supported: -2025/05/04-10:09:55.810318 38 kZSTD supported: 0 -2025/05/04-10:09:55.810318 38 kXpressCompression supported: 0 -2025/05/04-10:09:55.810319 38 kBZip2Compression supported: 0 -2025/05/04-10:09:55.810319 38 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.810320 38 kLZ4Compression supported: 1 -2025/05/04-10:09:55.810321 38 kZlibCompression supported: 0 -2025/05/04-10:09:55.810321 38 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.810322 38 kSnappyCompression supported: 1 -2025/05/04-10:09:55.810323 38 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.810323 38 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.810324 38 Jemalloc supported: 0 -2025/05/04-10:09:55.811797 38 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.811798 38 Options.merge_operator: None -2025/05/04-10:09:55.811798 38 Options.compaction_filter: None -2025/05/04-10:09:55.811799 38 Options.compaction_filter_factory: None -2025/05/04-10:09:55.811800 38 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.811808 38 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.811809 38 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.811822 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff85d32c80) +2025/05/26-19:13:17.271695 37 RocksDB version: 9.9.3 +2025/05/26-19:13:17.271826 37 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.271827 37 DB SUMMARY +2025/05/26-19:13:17.271828 37 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.271829 37 DB Session ID: PCRZT7AMVX68CX0XDWU7 +2025/05/26-19:13:17.272491 37 CURRENT file: CURRENT +2025/05/26-19:13:17.272494 37 IDENTITY file: IDENTITY +2025/05/26-19:13:17.272499 37 MANIFEST file: MANIFEST-000013 size: 165 Bytes +2025/05/26-19:13:17.272501 37 SST files in ./storage/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index dir, Total Num: 0, files: +2025/05/26-19:13:17.272503 37 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index: 000012.log size: 0 ; +2025/05/26-19:13:17.272504 37 Options.error_if_exists: 0 +2025/05/26-19:13:17.272506 37 Options.create_if_missing: 1 +2025/05/26-19:13:17.272507 37 Options.paranoid_checks: 1 +2025/05/26-19:13:17.272508 37 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.272508 37 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.272509 37 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.272510 37 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.272511 37 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.272512 37 Options.fs: PosixFileSystem +2025/05/26-19:13:17.272513 37 Options.info_log: 0xffff68ead500 +2025/05/26-19:13:17.272513 37 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.272514 37 Options.statistics: (nil) +2025/05/26-19:13:17.272515 37 Options.use_fsync: 0 +2025/05/26-19:13:17.272516 37 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.272516 37 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.272517 37 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.272518 37 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.272519 37 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.272520 37 Options.allow_fallocate: 1 +2025/05/26-19:13:17.272521 37 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.272522 37 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.272524 37 Options.use_direct_reads: 0 +2025/05/26-19:13:17.272525 37 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.272525 37 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.272526 37 Options.db_log_dir: +2025/05/26-19:13:17.272526 37 Options.wal_dir: +2025/05/26-19:13:17.272527 37 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.272528 37 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.272528 37 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.272529 37 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.272530 37 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.272531 37 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.272532 37 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.272534 37 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.272535 37 Options.write_buffer_manager: 0xffff68e0a200 +2025/05/26-19:13:17.272536 37 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.272537 37 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.272538 37 Options.rate_limiter: (nil) +2025/05/26-19:13:17.272539 37 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.272540 37 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.272540 37 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.272542 37 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.272545 37 Options.unordered_write: 0 +2025/05/26-19:13:17.272546 37 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.272546 37 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.272547 37 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.272548 37 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.272548 37 Options.row_cache: None +2025/05/26-19:13:17.272549 37 Options.wal_filter: None +2025/05/26-19:13:17.272550 37 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.272550 37 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.272552 37 Options.two_write_queues: 0 +2025/05/26-19:13:17.272553 37 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.272553 37 Options.wal_compression: 0 +2025/05/26-19:13:17.272554 37 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.272555 37 Options.atomic_flush: 0 +2025/05/26-19:13:17.272555 37 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.272556 37 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.272559 37 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.272560 37 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.272560 37 Options.write_identity_file: 1 +2025/05/26-19:13:17.272561 37 Options.log_readahead_size: 0 +2025/05/26-19:13:17.272562 37 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.272563 37 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.272564 37 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.272564 37 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.272565 37 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.272566 37 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.272566 37 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.272567 37 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.272568 37 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.272569 37 Options.max_background_jobs: 2 +2025/05/26-19:13:17.272569 37 Options.max_background_compactions: -1 +2025/05/26-19:13:17.272570 37 Options.max_subcompactions: 1 +2025/05/26-19:13:17.272575 37 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.272577 37 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.272578 37 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.272578 37 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.272579 37 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.272580 37 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.272580 37 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.272582 37 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.272583 37 Options.max_open_files: 256 +2025/05/26-19:13:17.272584 37 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.272585 37 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.272586 37 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.272586 37 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.272587 37 Options.max_background_flushes: -1 +2025/05/26-19:13:17.272588 37 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.272588 37 Compression algorithms supported: +2025/05/26-19:13:17.272589 37 kZSTD supported: 0 +2025/05/26-19:13:17.272590 37 kXpressCompression supported: 0 +2025/05/26-19:13:17.272591 37 kBZip2Compression supported: 0 +2025/05/26-19:13:17.272592 37 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.272592 37 kLZ4Compression supported: 1 +2025/05/26-19:13:17.272593 37 kZlibCompression supported: 0 +2025/05/26-19:13:17.272594 37 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.272594 37 kSnappyCompression supported: 1 +2025/05/26-19:13:17.272597 37 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.272598 37 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.272598 37 Jemalloc supported: 0 +2025/05/26-19:13:17.274791 37 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.274792 37 Options.merge_operator: None +2025/05/26-19:13:17.274793 37 Options.compaction_filter: None +2025/05/26-19:13:17.274794 37 Options.compaction_filter_factory: None +2025/05/26-19:13:17.274796 37 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.274797 37 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.274798 37 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.274816 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68f3ed00) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff85c0a210 + block_cache: 0xffff68e0a150 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,93 +155,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.811824 38 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.811825 38 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.811825 38 Options.compression: LZ4 -2025/05/04-10:09:55.811826 38 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.811827 38 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.811828 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.811828 38 Options.num_levels: 7 -2025/05/04-10:09:55.811829 38 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.811829 38 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.811830 38 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.811831 38 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.811831 38 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.811832 38 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.811832 38 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.811833 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.811834 38 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.811834 38 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.811835 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.811836 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.811837 38 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.811837 38 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.811838 38 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.811838 38 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.811839 38 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.811839 38 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.811840 38 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.811841 38 Options.compression_opts.enabled: false -2025/05/04-10:09:55.811841 38 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.811842 38 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.811842 38 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.811843 38 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.811844 38 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.811844 38 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.811845 38 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.811846 38 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.811847 38 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.811847 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.811848 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.811849 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.811849 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.811850 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.811850 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.811851 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.811851 38 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.811852 38 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.811852 38 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.811853 38 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.811854 38 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.811854 38 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.811856 38 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.811856 38 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.811857 38 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.811857 38 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.811858 38 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.811859 38 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.811867 38 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.811868 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.811869 38 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.811869 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.811870 38 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.811871 38 Options.table_properties_collectors: -2025/05/04-10:09:55.811872 38 Options.inplace_update_support: 0 -2025/05/04-10:09:55.811872 38 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.811873 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.811874 38 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.811874 38 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.811875 38 Options.bloom_locality: 0 -2025/05/04-10:09:55.811876 38 Options.max_successive_merges: 0 -2025/05/04-10:09:55.811876 38 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.811877 38 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.811878 38 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.811879 38 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.811880 38 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.811881 38 Options.ttl: 2592000 -2025/05/04-10:09:55.811881 38 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.811882 38 Options.default_temperature: kUnknown -2025/05/04-10:09:55.811882 38 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.811883 38 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.811884 38 Options.enable_blob_files: false -2025/05/04-10:09:55.811884 38 Options.min_blob_size: 0 -2025/05/04-10:09:55.811885 38 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.811886 38 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.811886 38 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.811887 38 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.811888 38 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.811889 38 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.811889 38 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.811890 38 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.811891 38 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.822024 38 DB pointer 0xffff85c62000 +2025/05/26-19:13:17.274821 37 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.274821 37 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.274822 37 Options.compression: LZ4 +2025/05/26-19:13:17.274823 37 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.274824 37 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.274825 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.274825 37 Options.num_levels: 7 +2025/05/26-19:13:17.274826 37 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.274827 37 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.274827 37 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.274828 37 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.274829 37 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.274830 37 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.274830 37 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.274831 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.274832 37 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.274832 37 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.274833 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.274833 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.274834 37 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.274835 37 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.274838 37 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.274839 37 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.274840 37 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.274840 37 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.274841 37 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.274842 37 Options.compression_opts.enabled: false +2025/05/26-19:13:17.274842 37 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.274843 37 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.274844 37 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.274845 37 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.274846 37 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.274847 37 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.274849 37 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.274849 37 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.274850 37 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.274851 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.274852 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.274853 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.274853 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.274854 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.274855 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.274855 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.274857 37 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.274858 37 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.274859 37 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.274859 37 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.274860 37 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.274861 37 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.274861 37 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.274862 37 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.274863 37 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.274863 37 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.274864 37 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.274864 37 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.274865 37 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.274866 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.274866 37 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.274867 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.274867 37 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.274869 37 Options.table_properties_collectors: +2025/05/26-19:13:17.274870 37 Options.inplace_update_support: 0 +2025/05/26-19:13:17.274870 37 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.274871 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.274872 37 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.274872 37 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.274873 37 Options.bloom_locality: 0 +2025/05/26-19:13:17.274874 37 Options.max_successive_merges: 0 +2025/05/26-19:13:17.274874 37 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.274875 37 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.274875 37 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.274876 37 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.274876 37 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.274878 37 Options.ttl: 2592000 +2025/05/26-19:13:17.274879 37 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.274882 37 Options.default_temperature: kUnknown +2025/05/26-19:13:17.274882 37 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.274883 37 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.274884 37 Options.enable_blob_files: false +2025/05/26-19:13:17.274884 37 Options.min_blob_size: 0 +2025/05/26-19:13:17.274885 37 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.274885 37 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.274886 37 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.274887 37 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.274887 37 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.274888 37 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.274889 37 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.274889 37 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.274890 37 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.288450 37 DB pointer 0xffff68e6d000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/MANIFEST-000013 deleted file mode 100644 index 16f98dd5298d12b796ae3e0e178d019fb7475cbc..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/MANIFEST-000013 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/OPTIONS-000011 deleted file mode 100644 index 1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/OPTIONS-000011 +++ /dev/null @@ -1,214 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/000018.log b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/000018.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/CURRENT index 625d147412870471b19d90716ccc20a7f207a5c3..7fbb62349a171cb93c0e07360fd312e3344b3571 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/CURRENT @@ -1 +1 @@ -MANIFEST-000013 +MANIFEST-000023 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/LOG index ecf69b017318c75b080870bca3e1eb0320e66d24..cbbf03958cfd123807eb9ac6dec93c2df52f4696 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.599909 39 RocksDB version: 9.9.3 -2025/05/04-10:09:55.600142 39 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.600143 39 DB SUMMARY -2025/05/04-10:09:55.600144 39 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.600145 39 DB Session ID: CD0SHR3DDC5AMRBDXMDO -2025/05/04-10:09:55.601284 39 CURRENT file: CURRENT -2025/05/04-10:09:55.601287 39 IDENTITY file: IDENTITY -2025/05/04-10:09:55.601560 39 MANIFEST file: MANIFEST-000009 size: 497 Bytes -2025/05/04-10:09:55.601562 39 SST files in ./storage/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d dir, Total Num: 0, files: -2025/05/04-10:09:55.601563 39 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d: 000008.log size: 0 ; -2025/05/04-10:09:55.601566 39 Options.error_if_exists: 0 -2025/05/04-10:09:55.601566 39 Options.create_if_missing: 1 -2025/05/04-10:09:55.601567 39 Options.paranoid_checks: 1 -2025/05/04-10:09:55.601568 39 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.601568 39 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.601569 39 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.601570 39 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.601570 39 Options.env: 0xffff86034000 -2025/05/04-10:09:55.601571 39 Options.fs: PosixFileSystem -2025/05/04-10:09:55.601572 39 Options.info_log: 0xffff844a1000 -2025/05/04-10:09:55.601572 39 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.601574 39 Options.statistics: (nil) -2025/05/04-10:09:55.601575 39 Options.use_fsync: 0 -2025/05/04-10:09:55.601575 39 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.601576 39 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.601578 39 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.601579 39 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.601580 39 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.601581 39 Options.allow_fallocate: 1 -2025/05/04-10:09:55.601581 39 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.601582 39 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.601583 39 Options.use_direct_reads: 0 -2025/05/04-10:09:55.601583 39 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.601584 39 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.601584 39 Options.db_log_dir: -2025/05/04-10:09:55.601585 39 Options.wal_dir: -2025/05/04-10:09:55.601585 39 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.601586 39 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.601586 39 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.601587 39 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.601588 39 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.601588 39 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.601590 39 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.601590 39 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.601591 39 Options.write_buffer_manager: 0xffff844090c0 -2025/05/04-10:09:55.601592 39 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.601592 39 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.601593 39 Options.rate_limiter: (nil) -2025/05/04-10:09:55.601593 39 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.601594 39 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.601595 39 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.601595 39 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.601596 39 Options.unordered_write: 0 -2025/05/04-10:09:55.601597 39 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.601598 39 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.601598 39 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.601599 39 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.601599 39 Options.row_cache: None -2025/05/04-10:09:55.601600 39 Options.wal_filter: None -2025/05/04-10:09:55.601601 39 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.601602 39 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.601602 39 Options.two_write_queues: 0 -2025/05/04-10:09:55.601603 39 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.601603 39 Options.wal_compression: 0 -2025/05/04-10:09:55.601604 39 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.601604 39 Options.atomic_flush: 0 -2025/05/04-10:09:55.601605 39 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.601606 39 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.601607 39 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.601608 39 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.601608 39 Options.write_identity_file: 1 -2025/05/04-10:09:55.601609 39 Options.log_readahead_size: 0 -2025/05/04-10:09:55.601610 39 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.601610 39 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.601611 39 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.601611 39 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.601612 39 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.601613 39 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.601613 39 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.601614 39 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.601615 39 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.601615 39 Options.max_background_jobs: 2 -2025/05/04-10:09:55.601616 39 Options.max_background_compactions: -1 -2025/05/04-10:09:55.601616 39 Options.max_subcompactions: 1 -2025/05/04-10:09:55.601617 39 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.601618 39 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.601618 39 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.601619 39 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.601619 39 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.601620 39 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.601621 39 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.601621 39 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.601622 39 Options.max_open_files: 256 -2025/05/04-10:09:55.601622 39 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.601623 39 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.601623 39 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.601624 39 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.601625 39 Options.max_background_flushes: -1 -2025/05/04-10:09:55.601625 39 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.601626 39 Compression algorithms supported: -2025/05/04-10:09:55.601627 39 kZSTD supported: 0 -2025/05/04-10:09:55.601627 39 kXpressCompression supported: 0 -2025/05/04-10:09:55.601628 39 kBZip2Compression supported: 0 -2025/05/04-10:09:55.601629 39 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.601629 39 kLZ4Compression supported: 1 -2025/05/04-10:09:55.601630 39 kZlibCompression supported: 0 -2025/05/04-10:09:55.601631 39 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.601632 39 kSnappyCompression supported: 1 -2025/05/04-10:09:55.601633 39 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.601635 39 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.601636 39 Jemalloc supported: 0 -2025/05/04-10:09:55.606920 39 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.606922 39 Options.merge_operator: None -2025/05/04-10:09:55.606923 39 Options.compaction_filter: None -2025/05/04-10:09:55.606924 39 Options.compaction_filter_factory: None -2025/05/04-10:09:55.606924 39 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.606925 39 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.606926 39 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.606943 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84400060) +2025/05/26-19:13:17.061422 38 RocksDB version: 9.9.3 +2025/05/26-19:13:17.064802 38 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.064804 38 DB SUMMARY +2025/05/26-19:13:17.064805 38 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.064806 38 DB Session ID: PCRZT7AMVX68CX0XDWTZ +2025/05/26-19:13:17.066358 38 CURRENT file: CURRENT +2025/05/26-19:13:17.066360 38 IDENTITY file: IDENTITY +2025/05/26-19:13:17.066563 38 MANIFEST file: MANIFEST-000013 size: 833 Bytes +2025/05/26-19:13:17.066565 38 SST files in ./storage/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d dir, Total Num: 2, files: 000017.sst 000019.sst +2025/05/26-19:13:17.066566 38 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d: 000018.log size: 0 ; +2025/05/26-19:13:17.066567 38 Options.error_if_exists: 0 +2025/05/26-19:13:17.066568 38 Options.create_if_missing: 1 +2025/05/26-19:13:17.066569 38 Options.paranoid_checks: 1 +2025/05/26-19:13:17.066569 38 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.066570 38 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.066571 38 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.066572 38 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.066572 38 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.066573 38 Options.fs: PosixFileSystem +2025/05/26-19:13:17.066574 38 Options.info_log: 0xffff68aa1000 +2025/05/26-19:13:17.066575 38 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.066575 38 Options.statistics: (nil) +2025/05/26-19:13:17.066576 38 Options.use_fsync: 0 +2025/05/26-19:13:17.066577 38 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.066578 38 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.066578 38 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.066579 38 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.066580 38 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.066581 38 Options.allow_fallocate: 1 +2025/05/26-19:13:17.066583 38 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.066584 38 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.066585 38 Options.use_direct_reads: 0 +2025/05/26-19:13:17.066585 38 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.066586 38 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.066586 38 Options.db_log_dir: +2025/05/26-19:13:17.066588 38 Options.wal_dir: +2025/05/26-19:13:17.066590 38 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.066590 38 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.066591 38 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.066592 38 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.066592 38 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.066593 38 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.066594 38 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.066594 38 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.066595 38 Options.write_buffer_manager: 0xffff68a090c0 +2025/05/26-19:13:17.066595 38 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.066596 38 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.066597 38 Options.rate_limiter: (nil) +2025/05/26-19:13:17.066598 38 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.066598 38 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.066599 38 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.066599 38 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.066600 38 Options.unordered_write: 0 +2025/05/26-19:13:17.066602 38 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.066602 38 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.066603 38 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.066604 38 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.066604 38 Options.row_cache: None +2025/05/26-19:13:17.066605 38 Options.wal_filter: None +2025/05/26-19:13:17.066606 38 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.066607 38 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.066608 38 Options.two_write_queues: 0 +2025/05/26-19:13:17.066609 38 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.066609 38 Options.wal_compression: 0 +2025/05/26-19:13:17.066610 38 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.066610 38 Options.atomic_flush: 0 +2025/05/26-19:13:17.066611 38 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.066612 38 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.066612 38 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.066613 38 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.066614 38 Options.write_identity_file: 1 +2025/05/26-19:13:17.066614 38 Options.log_readahead_size: 0 +2025/05/26-19:13:17.066615 38 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.066615 38 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.066616 38 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.066617 38 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.066618 38 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.066618 38 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.066619 38 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.066620 38 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.066620 38 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.066621 38 Options.max_background_jobs: 2 +2025/05/26-19:13:17.066622 38 Options.max_background_compactions: -1 +2025/05/26-19:13:17.066622 38 Options.max_subcompactions: 1 +2025/05/26-19:13:17.066625 38 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.066627 38 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.066628 38 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.066629 38 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.066630 38 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.066631 38 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.066632 38 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.066633 38 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.066633 38 Options.max_open_files: 256 +2025/05/26-19:13:17.066634 38 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.066635 38 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.066635 38 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.066636 38 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.066636 38 Options.max_background_flushes: -1 +2025/05/26-19:13:17.066637 38 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.066638 38 Compression algorithms supported: +2025/05/26-19:13:17.066638 38 kZSTD supported: 0 +2025/05/26-19:13:17.066639 38 kXpressCompression supported: 0 +2025/05/26-19:13:17.066640 38 kBZip2Compression supported: 0 +2025/05/26-19:13:17.066641 38 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.066641 38 kLZ4Compression supported: 1 +2025/05/26-19:13:17.066642 38 kZlibCompression supported: 0 +2025/05/26-19:13:17.066643 38 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.066644 38 kSnappyCompression supported: 1 +2025/05/26-19:13:17.066645 38 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.066645 38 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.066646 38 Jemalloc supported: 0 +2025/05/26-19:13:17.069664 38 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.069665 38 Options.merge_operator: None +2025/05/26-19:13:17.069666 38 Options.compaction_filter: None +2025/05/26-19:13:17.069666 38 Options.compaction_filter_factory: None +2025/05/26-19:13:17.069667 38 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.069668 38 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.069669 38 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.069684 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68a00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff84409010 + block_cache: 0xffff68a09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,103 +155,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.606947 39 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.606948 39 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.606949 39 Options.compression: LZ4 -2025/05/04-10:09:55.606950 39 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.606951 39 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.606951 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.606952 39 Options.num_levels: 7 -2025/05/04-10:09:55.606952 39 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.606953 39 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.606954 39 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.606955 39 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.606955 39 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.606956 39 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.606957 39 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.606958 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.606958 39 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.606960 39 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.606961 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.606962 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.606963 39 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.606964 39 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.606964 39 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.606965 39 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.606966 39 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.606967 39 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.606967 39 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.606968 39 Options.compression_opts.enabled: false -2025/05/04-10:09:55.606969 39 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.606969 39 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.606970 39 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.606971 39 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.606971 39 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.606972 39 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.606973 39 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.606973 39 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.606975 39 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.606977 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.606978 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.606978 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.606979 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.606981 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.606982 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.606983 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.606984 39 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.606984 39 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.606985 39 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.606986 39 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.606987 39 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.606987 39 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.606988 39 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.606989 39 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.606990 39 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.606990 39 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.606991 39 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.606992 39 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.606993 39 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.606993 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.606994 39 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.606995 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.606995 39 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.607001 39 Options.table_properties_collectors: -2025/05/04-10:09:55.607002 39 Options.inplace_update_support: 0 -2025/05/04-10:09:55.607003 39 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.607004 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.607005 39 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.607005 39 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.607006 39 Options.bloom_locality: 0 -2025/05/04-10:09:55.607006 39 Options.max_successive_merges: 0 -2025/05/04-10:09:55.607007 39 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.607008 39 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.607008 39 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.607009 39 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.607101 39 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.607102 39 Options.ttl: 2592000 -2025/05/04-10:09:55.607103 39 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.607104 39 Options.default_temperature: kUnknown -2025/05/04-10:09:55.607104 39 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.607105 39 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.607105 39 Options.enable_blob_files: false -2025/05/04-10:09:55.607106 39 Options.min_blob_size: 0 -2025/05/04-10:09:55.607107 39 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.607108 39 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.607108 39 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.607109 39 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.607110 39 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.607111 39 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.607112 39 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.607112 39 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.607113 39 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.607747 39 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.607748 39 Options.merge_operator: None -2025/05/04-10:09:55.607749 39 Options.compaction_filter: None -2025/05/04-10:09:55.607749 39 Options.compaction_filter_factory: None -2025/05/04-10:09:55.607750 39 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.607750 39 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.607751 39 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.607761 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84400060) +2025/05/26-19:13:17.069688 38 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.069689 38 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.069689 38 Options.compression: LZ4 +2025/05/26-19:13:17.069690 38 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.069691 38 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.069693 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.069693 38 Options.num_levels: 7 +2025/05/26-19:13:17.069694 38 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.069695 38 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.069695 38 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.069696 38 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.069696 38 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.069697 38 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.069698 38 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069700 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069700 38 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069701 38 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.069701 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069702 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069703 38 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.069703 38 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.069704 38 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.069704 38 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069705 38 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069705 38 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069706 38 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069707 38 Options.compression_opts.enabled: false +2025/05/26-19:13:17.069707 38 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069708 38 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.069708 38 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.069709 38 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.069709 38 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.069710 38 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.069710 38 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.069711 38 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.069715 38 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.069716 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.069718 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.069720 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.069721 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.069722 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.069724 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.069725 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.069726 38 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.069727 38 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.069728 38 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.069728 38 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.069729 38 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.069730 38 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.069730 38 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.069731 38 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.069732 38 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.069732 38 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.069733 38 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.069733 38 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.069734 38 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.069735 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.069735 38 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.069736 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.069737 38 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.069741 38 Options.table_properties_collectors: +2025/05/26-19:13:17.069742 38 Options.inplace_update_support: 0 +2025/05/26-19:13:17.069742 38 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.069743 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.069744 38 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.069744 38 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.069745 38 Options.bloom_locality: 0 +2025/05/26-19:13:17.069746 38 Options.max_successive_merges: 0 +2025/05/26-19:13:17.069746 38 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.069747 38 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.069747 38 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.069748 38 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.069749 38 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.069749 38 Options.ttl: 2592000 +2025/05/26-19:13:17.069750 38 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.069751 38 Options.default_temperature: kUnknown +2025/05/26-19:13:17.069751 38 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.069752 38 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.069752 38 Options.enable_blob_files: false +2025/05/26-19:13:17.069753 38 Options.min_blob_size: 0 +2025/05/26-19:13:17.069754 38 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.069754 38 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.069755 38 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.069756 38 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.069757 38 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.069757 38 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.069759 38 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.069760 38 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.069761 38 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.069870 38 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.069871 38 Options.merge_operator: None +2025/05/26-19:13:17.069872 38 Options.compaction_filter: None +2025/05/26-19:13:17.069873 38 Options.compaction_filter_factory: None +2025/05/26-19:13:17.069873 38 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.069874 38 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.069875 38 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.069884 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68a00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -262,7 +262,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff84409010 + block_cache: 0xffff68a09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -290,103 +290,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.607762 39 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.607763 39 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.607764 39 Options.compression: LZ4 -2025/05/04-10:09:55.607764 39 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.607765 39 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.607765 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.607766 39 Options.num_levels: 7 -2025/05/04-10:09:55.607766 39 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.607767 39 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.607767 39 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.607768 39 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.607768 39 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.607769 39 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.607770 39 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.607770 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.607771 39 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.607771 39 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.607772 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.607773 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.607773 39 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.607774 39 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.607774 39 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.607775 39 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.607775 39 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.607776 39 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.607778 39 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.607779 39 Options.compression_opts.enabled: false -2025/05/04-10:09:55.607780 39 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.607781 39 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.607781 39 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.607782 39 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.607782 39 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.607783 39 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.607784 39 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.607784 39 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.607785 39 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.607786 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.607786 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.607787 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.607787 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.607788 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.607789 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.607789 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.607790 39 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.607791 39 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.607791 39 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.607792 39 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.607792 39 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.607793 39 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.607793 39 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.607794 39 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.607795 39 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.607795 39 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.607796 39 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.607796 39 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.607797 39 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.607798 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.607798 39 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.607799 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.607799 39 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.607801 39 Options.table_properties_collectors: -2025/05/04-10:09:55.607802 39 Options.inplace_update_support: 0 -2025/05/04-10:09:55.607803 39 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.607803 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.607804 39 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.607804 39 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.607805 39 Options.bloom_locality: 0 -2025/05/04-10:09:55.607806 39 Options.max_successive_merges: 0 -2025/05/04-10:09:55.607806 39 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.607807 39 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.607807 39 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.607808 39 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.607808 39 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.607809 39 Options.ttl: 2592000 -2025/05/04-10:09:55.607810 39 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.607819 39 Options.default_temperature: kUnknown -2025/05/04-10:09:55.607820 39 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.607821 39 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.607821 39 Options.enable_blob_files: false -2025/05/04-10:09:55.607822 39 Options.min_blob_size: 0 -2025/05/04-10:09:55.607822 39 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.607823 39 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.607824 39 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.607824 39 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.607825 39 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.607826 39 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.607826 39 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.607827 39 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.607828 39 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.607855 39 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.607857 39 Options.merge_operator: None -2025/05/04-10:09:55.607857 39 Options.compaction_filter: None -2025/05/04-10:09:55.607858 39 Options.compaction_filter_factory: None -2025/05/04-10:09:55.607858 39 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.607859 39 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.607867 39 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.607873 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84400060) +2025/05/26-19:13:17.069887 38 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.069888 38 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.069889 38 Options.compression: LZ4 +2025/05/26-19:13:17.069889 38 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.069890 38 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.069890 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.069891 38 Options.num_levels: 7 +2025/05/26-19:13:17.069891 38 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.069892 38 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.069893 38 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.069894 38 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.069894 38 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.069896 38 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.069897 38 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069898 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069898 38 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069899 38 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.069900 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069900 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069901 38 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.069902 38 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.069903 38 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.069904 38 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.069906 38 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.069907 38 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.069907 38 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.069910 38 Options.compression_opts.enabled: false +2025/05/26-19:13:17.069912 38 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.069912 38 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.069913 38 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.069925 38 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.069926 38 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.069927 38 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.069927 38 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.069928 38 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.069929 38 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.069930 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.069932 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.069933 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.069934 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.069934 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.069935 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.069935 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.069939 38 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.069940 38 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.069940 38 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.069941 38 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.069942 38 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.069942 38 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.069943 38 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.069944 38 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.069944 38 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.069945 38 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.069946 38 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.069946 38 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.069947 38 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.069949 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.069950 38 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.069950 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.069952 38 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.069954 38 Options.table_properties_collectors: +2025/05/26-19:13:17.069964 38 Options.inplace_update_support: 0 +2025/05/26-19:13:17.069965 38 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.069966 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.069967 38 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.069967 38 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.069968 38 Options.bloom_locality: 0 +2025/05/26-19:13:17.069968 38 Options.max_successive_merges: 0 +2025/05/26-19:13:17.069969 38 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.069970 38 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.069971 38 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.069973 38 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.069973 38 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.069974 38 Options.ttl: 2592000 +2025/05/26-19:13:17.069975 38 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.069976 38 Options.default_temperature: kUnknown +2025/05/26-19:13:17.069976 38 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.069977 38 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.069977 38 Options.enable_blob_files: false +2025/05/26-19:13:17.069978 38 Options.min_blob_size: 0 +2025/05/26-19:13:17.069979 38 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.069979 38 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.069980 38 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.069981 38 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.069982 38 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.069982 38 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.069983 38 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.069984 38 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.069985 38 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070015 38 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070016 38 Options.merge_operator: None +2025/05/26-19:13:17.070017 38 Options.compaction_filter: None +2025/05/26-19:13:17.070017 38 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070018 38 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070019 38 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070019 38 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070026 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68a00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -397,7 +397,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff84409010 + block_cache: 0xffff68a09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -425,103 +425,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.607874 39 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.607875 39 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.607875 39 Options.compression: LZ4 -2025/05/04-10:09:55.607876 39 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.607877 39 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.607878 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.607878 39 Options.num_levels: 7 -2025/05/04-10:09:55.607879 39 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.607880 39 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.607880 39 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.607881 39 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.607882 39 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.607882 39 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.607883 39 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.607883 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.607884 39 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.607884 39 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.607885 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.607885 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.607886 39 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.607886 39 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.607887 39 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.607888 39 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.607888 39 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.607889 39 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.607889 39 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.607890 39 Options.compression_opts.enabled: false -2025/05/04-10:09:55.607890 39 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.607891 39 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.607891 39 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.607892 39 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.607892 39 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.607893 39 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.607893 39 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.607894 39 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.607895 39 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.607895 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.607896 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.607896 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.607897 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.607897 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.607898 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.607900 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.607901 39 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.607901 39 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.607902 39 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.607903 39 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.607903 39 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.607904 39 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.607904 39 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.607905 39 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.607905 39 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.607906 39 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.607906 39 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.607907 39 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.607908 39 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.607908 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.607909 39 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.607909 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.607910 39 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.607911 39 Options.table_properties_collectors: -2025/05/04-10:09:55.607912 39 Options.inplace_update_support: 0 -2025/05/04-10:09:55.607912 39 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.607913 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.607914 39 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.607914 39 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.607915 39 Options.bloom_locality: 0 -2025/05/04-10:09:55.607915 39 Options.max_successive_merges: 0 -2025/05/04-10:09:55.607916 39 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.607916 39 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.607918 39 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.607919 39 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.607920 39 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.607920 39 Options.ttl: 2592000 -2025/05/04-10:09:55.607921 39 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.607921 39 Options.default_temperature: kUnknown -2025/05/04-10:09:55.607922 39 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.607923 39 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.607923 39 Options.enable_blob_files: false -2025/05/04-10:09:55.607924 39 Options.min_blob_size: 0 -2025/05/04-10:09:55.607924 39 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.607925 39 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.607925 39 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.607928 39 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.607929 39 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.607930 39 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.607930 39 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.607931 39 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.607931 39 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.607948 39 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.607950 39 Options.merge_operator: None -2025/05/04-10:09:55.607952 39 Options.compaction_filter: None -2025/05/04-10:09:55.607953 39 Options.compaction_filter_factory: None -2025/05/04-10:09:55.607954 39 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.607954 39 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.607955 39 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.607961 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84400060) +2025/05/26-19:13:17.070030 38 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070031 38 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070032 38 Options.compression: LZ4 +2025/05/26-19:13:17.070033 38 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070034 38 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070036 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070036 38 Options.num_levels: 7 +2025/05/26-19:13:17.070037 38 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070037 38 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070038 38 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070038 38 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070039 38 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070040 38 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070040 38 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070041 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070041 38 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070042 38 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070042 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070043 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070043 38 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070044 38 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070045 38 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070045 38 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070046 38 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070046 38 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070047 38 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070049 38 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070050 38 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070051 38 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070051 38 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070052 38 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070052 38 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070053 38 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070053 38 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070055 38 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070056 38 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070058 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070059 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070061 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070061 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070063 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070063 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070064 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070065 38 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070065 38 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070066 38 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070066 38 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070067 38 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070068 38 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070068 38 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070069 38 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070070 38 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070070 38 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070071 38 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070071 38 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070072 38 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070073 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070074 38 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070075 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070076 38 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070078 38 Options.table_properties_collectors: +2025/05/26-19:13:17.070079 38 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070080 38 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070081 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070081 38 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070082 38 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070082 38 Options.bloom_locality: 0 +2025/05/26-19:13:17.070083 38 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070084 38 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070085 38 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070088 38 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070089 38 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070089 38 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070090 38 Options.ttl: 2592000 +2025/05/26-19:13:17.070091 38 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070091 38 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070092 38 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070093 38 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070095 38 Options.enable_blob_files: false +2025/05/26-19:13:17.070096 38 Options.min_blob_size: 0 +2025/05/26-19:13:17.070096 38 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070097 38 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070097 38 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070098 38 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070099 38 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070100 38 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070101 38 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070101 38 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070102 38 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070124 38 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070126 38 Options.merge_operator: None +2025/05/26-19:13:17.070126 38 Options.compaction_filter: None +2025/05/26-19:13:17.070127 38 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070127 38 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070128 38 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070129 38 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070136 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68a00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -532,7 +532,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff84409010 + block_cache: 0xffff68a09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -560,103 +560,103 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.607962 39 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.607962 39 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.607963 39 Options.compression: LZ4 -2025/05/04-10:09:55.607963 39 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.607964 39 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.607965 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.607965 39 Options.num_levels: 7 -2025/05/04-10:09:55.607966 39 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.607966 39 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.607967 39 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.607967 39 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.607968 39 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.607968 39 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.607969 39 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.607969 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.607970 39 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.607971 39 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.607971 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.607972 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.607972 39 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.607973 39 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.607973 39 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.607974 39 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.607975 39 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.607975 39 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.607976 39 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.607976 39 Options.compression_opts.enabled: false -2025/05/04-10:09:55.607977 39 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.607977 39 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.607978 39 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.607978 39 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.607979 39 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.607980 39 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.607980 39 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.607981 39 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.607981 39 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.607982 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.607983 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.607983 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.607984 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.607984 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.607985 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.607987 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.607988 39 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.607989 39 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.607989 39 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.607990 39 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.607990 39 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.607991 39 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.607991 39 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.607992 39 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.607993 39 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.607993 39 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.607994 39 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.607994 39 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.607995 39 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.607995 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.607996 39 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.607997 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.607997 39 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.607998 39 Options.table_properties_collectors: -2025/05/04-10:09:55.607999 39 Options.inplace_update_support: 0 -2025/05/04-10:09:55.607999 39 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.608000 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.608000 39 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.608001 39 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.608001 39 Options.bloom_locality: 0 -2025/05/04-10:09:55.608002 39 Options.max_successive_merges: 0 -2025/05/04-10:09:55.608002 39 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.608003 39 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.608004 39 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.608006 39 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.608007 39 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.608007 39 Options.ttl: 2592000 -2025/05/04-10:09:55.608008 39 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.608009 39 Options.default_temperature: kUnknown -2025/05/04-10:09:55.608009 39 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.608010 39 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.608010 39 Options.enable_blob_files: false -2025/05/04-10:09:55.608012 39 Options.min_blob_size: 0 -2025/05/04-10:09:55.608013 39 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.608014 39 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.608014 39 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.608015 39 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.608016 39 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.608016 39 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.608017 39 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.608017 39 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.608018 39 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.608043 39 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.608044 39 Options.merge_operator: None -2025/05/04-10:09:55.608045 39 Options.compaction_filter: None -2025/05/04-10:09:55.608046 39 Options.compaction_filter_factory: None -2025/05/04-10:09:55.608047 39 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.608048 39 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.608048 39 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.608071 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84400060) +2025/05/26-19:13:17.070141 38 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070142 38 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070143 38 Options.compression: LZ4 +2025/05/26-19:13:17.070143 38 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070144 38 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070145 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070145 38 Options.num_levels: 7 +2025/05/26-19:13:17.070146 38 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070146 38 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070147 38 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070148 38 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070148 38 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070149 38 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070150 38 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070150 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070151 38 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070153 38 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070153 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070154 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070155 38 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070156 38 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070156 38 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070157 38 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070158 38 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070159 38 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070159 38 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070160 38 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070161 38 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070161 38 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070162 38 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070164 38 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070165 38 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070165 38 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070166 38 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070167 38 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070167 38 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070168 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070169 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070169 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070170 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070171 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070171 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070172 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070173 38 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070174 38 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070175 38 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070176 38 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070177 38 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070177 38 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070178 38 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070179 38 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070181 38 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070183 38 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070184 38 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070184 38 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070185 38 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070186 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070187 38 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070187 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070188 38 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070189 38 Options.table_properties_collectors: +2025/05/26-19:13:17.070190 38 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070190 38 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070191 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070191 38 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070192 38 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070193 38 Options.bloom_locality: 0 +2025/05/26-19:13:17.070193 38 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070194 38 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070194 38 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070195 38 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070196 38 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070198 38 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070199 38 Options.ttl: 2592000 +2025/05/26-19:13:17.070200 38 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070200 38 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070201 38 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070202 38 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070202 38 Options.enable_blob_files: false +2025/05/26-19:13:17.070213 38 Options.min_blob_size: 0 +2025/05/26-19:13:17.070214 38 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070215 38 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070215 38 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070218 38 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070219 38 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070220 38 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070220 38 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070221 38 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070222 38 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.070248 38 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.070249 38 Options.merge_operator: None +2025/05/26-19:13:17.070250 38 Options.compaction_filter: None +2025/05/26-19:13:17.070251 38 Options.compaction_filter_factory: None +2025/05/26-19:13:17.070251 38 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.070252 38 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.070253 38 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.070260 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68a00060) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -667,7 +667,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff84409010 + block_cache: 0xffff68a09010 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -695,93 +695,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.608073 39 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.608074 39 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.608075 39 Options.compression: LZ4 -2025/05/04-10:09:55.608075 39 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.608076 39 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.608076 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.608077 39 Options.num_levels: 7 -2025/05/04-10:09:55.608077 39 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.608078 39 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.608078 39 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.608079 39 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.608080 39 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.608082 39 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.608082 39 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.608083 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.608083 39 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.608084 39 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.608085 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.608085 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.608086 39 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.608086 39 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.608087 39 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.608087 39 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.608088 39 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.608088 39 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.608089 39 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.608090 39 Options.compression_opts.enabled: false -2025/05/04-10:09:55.608090 39 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.608091 39 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.608092 39 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.608103 39 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.608105 39 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.608106 39 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.608106 39 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.608107 39 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.608108 39 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.608109 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.608110 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.608110 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.608111 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.608111 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.608118 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.608119 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.608119 39 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.608120 39 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.608120 39 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.608122 39 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.608122 39 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.608123 39 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.608124 39 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.608124 39 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.608125 39 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.608125 39 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.608126 39 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.608126 39 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.608127 39 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.608127 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.608128 39 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.608129 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.608129 39 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.608130 39 Options.table_properties_collectors: -2025/05/04-10:09:55.608131 39 Options.inplace_update_support: 0 -2025/05/04-10:09:55.608131 39 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.608132 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.608132 39 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.608133 39 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.608133 39 Options.bloom_locality: 0 -2025/05/04-10:09:55.608134 39 Options.max_successive_merges: 0 -2025/05/04-10:09:55.608135 39 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.608135 39 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.608136 39 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.608142 39 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.608143 39 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.608144 39 Options.ttl: 2592000 -2025/05/04-10:09:55.608144 39 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.608145 39 Options.default_temperature: kUnknown -2025/05/04-10:09:55.608145 39 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.608146 39 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.608146 39 Options.enable_blob_files: false -2025/05/04-10:09:55.608147 39 Options.min_blob_size: 0 -2025/05/04-10:09:55.608147 39 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.608148 39 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.608149 39 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.608149 39 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.608150 39 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.608151 39 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.608151 39 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.608152 39 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.608152 39 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.652322 39 DB pointer 0xffff84463c00 +2025/05/26-19:13:17.070264 38 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.070265 38 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.070266 38 Options.compression: LZ4 +2025/05/26-19:13:17.070267 38 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.070269 38 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.070269 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.070271 38 Options.num_levels: 7 +2025/05/26-19:13:17.070271 38 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.070273 38 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.070274 38 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.070276 38 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.070277 38 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.070277 38 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.070278 38 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070278 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070280 38 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070280 38 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.070281 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070282 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070282 38 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.070283 38 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.070284 38 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.070284 38 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.070285 38 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.070286 38 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.070286 38 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.070287 38 Options.compression_opts.enabled: false +2025/05/26-19:13:17.070288 38 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.070292 38 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.070294 38 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.070295 38 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.070296 38 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.070296 38 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.070297 38 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.070297 38 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.070298 38 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.070299 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.070300 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.070300 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.070301 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.070302 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.070303 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.070303 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.070304 38 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.070304 38 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.070331 38 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.070335 38 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.070336 38 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.070337 38 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.070337 38 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.070338 38 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.070339 38 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.070339 38 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.070340 38 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.070340 38 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.070341 38 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.070342 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.070342 38 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.070343 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.070343 38 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.070344 38 Options.table_properties_collectors: +2025/05/26-19:13:17.070345 38 Options.inplace_update_support: 0 +2025/05/26-19:13:17.070345 38 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.070346 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.070346 38 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.070347 38 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.070348 38 Options.bloom_locality: 0 +2025/05/26-19:13:17.070348 38 Options.max_successive_merges: 0 +2025/05/26-19:13:17.070349 38 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.070349 38 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.070350 38 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.070351 38 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.070352 38 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.070352 38 Options.ttl: 2592000 +2025/05/26-19:13:17.070353 38 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.070354 38 Options.default_temperature: kUnknown +2025/05/26-19:13:17.070355 38 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.070355 38 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.070356 38 Options.enable_blob_files: false +2025/05/26-19:13:17.070356 38 Options.min_blob_size: 0 +2025/05/26-19:13:17.070357 38 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.070357 38 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.070358 38 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.070359 38 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.070359 38 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.070360 38 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.070360 38 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.070361 38 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.070362 38 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.113282 38 DB pointer 0xffff68a63c00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/MANIFEST-000013 deleted file mode 100644 index 1a7f861403074e7fa424948c83e7b8855cccda6d..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/MANIFEST-000013 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/OPTIONS-000011 deleted file mode 100644 index ad2b181add715408dc69839970eebfd4c1a28b4b..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/OPTIONS-000011 +++ /dev/null @@ -1,670 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "payload"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "payload"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "mapping"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "mapping"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "version"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "version"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - - -[CFOptions "vector"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "vector"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/000012.log deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/CURRENT index 625d147412870471b19d90716ccc20a7f207a5c3..056df57bb7f73da12edea3c09d88bc3ff790ec7c 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/CURRENT +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/CURRENT @@ -1 +1 @@ -MANIFEST-000013 +MANIFEST-000017 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/LOG index dc72f3ee2bcdbcf78133d0c2e22a4071c4133c42..2314d5b57b4b448b48c6cc3cb1e2025eb8fe5c8d 100644 --- a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/LOG +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/LOG @@ -1,122 +1,122 @@ -2025/05/04-10:09:55.792627 39 RocksDB version: 9.9.3 -2025/05/04-10:09:55.792738 39 Compile date 2024-12-05 01:25:31 -2025/05/04-10:09:55.792740 39 DB SUMMARY -2025/05/04-10:09:55.792742 39 Host name (Env): c5f2a9d061bb -2025/05/04-10:09:55.792743 39 DB Session ID: CD0SHR3DDC5AMRBDXMDJ -2025/05/04-10:09:55.793449 39 CURRENT file: CURRENT -2025/05/04-10:09:55.793450 39 IDENTITY file: IDENTITY -2025/05/04-10:09:55.793499 39 MANIFEST file: MANIFEST-000009 size: 159 Bytes -2025/05/04-10:09:55.793502 39 SST files in ./storage/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index dir, Total Num: 0, files: -2025/05/04-10:09:55.793503 39 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index: 000008.log size: 0 ; -2025/05/04-10:09:55.793504 39 Options.error_if_exists: 0 -2025/05/04-10:09:55.793505 39 Options.create_if_missing: 1 -2025/05/04-10:09:55.793506 39 Options.paranoid_checks: 1 -2025/05/04-10:09:55.793507 39 Options.flush_verify_memtable_count: 1 -2025/05/04-10:09:55.793507 39 Options.compaction_verify_record_count: 1 -2025/05/04-10:09:55.793508 39 Options.track_and_verify_wals_in_manifest: 0 -2025/05/04-10:09:55.793509 39 Options.verify_sst_unique_id_in_manifest: 1 -2025/05/04-10:09:55.793510 39 Options.env: 0xffff86034000 -2025/05/04-10:09:55.793511 39 Options.fs: PosixFileSystem -2025/05/04-10:09:55.793512 39 Options.info_log: 0xffff844a2800 -2025/05/04-10:09:55.793513 39 Options.max_file_opening_threads: 16 -2025/05/04-10:09:55.793513 39 Options.statistics: (nil) -2025/05/04-10:09:55.793514 39 Options.use_fsync: 0 -2025/05/04-10:09:55.793515 39 Options.max_log_file_size: 1048576 -2025/05/04-10:09:55.793515 39 Options.max_manifest_file_size: 1073741824 -2025/05/04-10:09:55.793516 39 Options.log_file_time_to_roll: 0 -2025/05/04-10:09:55.793516 39 Options.keep_log_file_num: 1 -2025/05/04-10:09:55.793517 39 Options.recycle_log_file_num: 0 -2025/05/04-10:09:55.793517 39 Options.allow_fallocate: 1 -2025/05/04-10:09:55.793518 39 Options.allow_mmap_reads: 0 -2025/05/04-10:09:55.793518 39 Options.allow_mmap_writes: 0 -2025/05/04-10:09:55.793557 39 Options.use_direct_reads: 0 -2025/05/04-10:09:55.793558 39 Options.use_direct_io_for_flush_and_compaction: 0 -2025/05/04-10:09:55.793559 39 Options.create_missing_column_families: 1 -2025/05/04-10:09:55.793559 39 Options.db_log_dir: -2025/05/04-10:09:55.793560 39 Options.wal_dir: -2025/05/04-10:09:55.793563 39 Options.table_cache_numshardbits: 6 -2025/05/04-10:09:55.793564 39 Options.WAL_ttl_seconds: 0 -2025/05/04-10:09:55.793565 39 Options.WAL_size_limit_MB: 0 -2025/05/04-10:09:55.793565 39 Options.max_write_batch_group_size_bytes: 1048576 -2025/05/04-10:09:55.793566 39 Options.manifest_preallocation_size: 4194304 -2025/05/04-10:09:55.793567 39 Options.is_fd_close_on_exec: 1 -2025/05/04-10:09:55.793567 39 Options.advise_random_on_open: 1 -2025/05/04-10:09:55.793568 39 Options.db_write_buffer_size: 0 -2025/05/04-10:09:55.793568 39 Options.write_buffer_manager: 0xffff8440a200 -2025/05/04-10:09:55.793569 39 Options.random_access_max_buffer_size: 1048576 -2025/05/04-10:09:55.793569 39 Options.use_adaptive_mutex: 0 -2025/05/04-10:09:55.793570 39 Options.rate_limiter: (nil) -2025/05/04-10:09:55.793571 39 Options.sst_file_manager.rate_bytes_per_sec: 0 -2025/05/04-10:09:55.793572 39 Options.wal_recovery_mode: 0 -2025/05/04-10:09:55.793572 39 Options.enable_thread_tracking: 0 -2025/05/04-10:09:55.793573 39 Options.enable_pipelined_write: 0 -2025/05/04-10:09:55.793573 39 Options.unordered_write: 0 -2025/05/04-10:09:55.793574 39 Options.allow_concurrent_memtable_write: 1 -2025/05/04-10:09:55.793575 39 Options.enable_write_thread_adaptive_yield: 1 -2025/05/04-10:09:55.793575 39 Options.write_thread_max_yield_usec: 100 -2025/05/04-10:09:55.793576 39 Options.write_thread_slow_yield_usec: 3 -2025/05/04-10:09:55.793576 39 Options.row_cache: None -2025/05/04-10:09:55.793577 39 Options.wal_filter: None -2025/05/04-10:09:55.793577 39 Options.avoid_flush_during_recovery: 0 -2025/05/04-10:09:55.793578 39 Options.allow_ingest_behind: 0 -2025/05/04-10:09:55.793616 39 Options.two_write_queues: 0 -2025/05/04-10:09:55.793618 39 Options.manual_wal_flush: 0 -2025/05/04-10:09:55.793618 39 Options.wal_compression: 0 -2025/05/04-10:09:55.793620 39 Options.background_close_inactive_wals: 0 -2025/05/04-10:09:55.793622 39 Options.atomic_flush: 0 -2025/05/04-10:09:55.793624 39 Options.avoid_unnecessary_blocking_io: 0 -2025/05/04-10:09:55.793625 39 Options.prefix_seek_opt_in_only: 0 -2025/05/04-10:09:55.793626 39 Options.persist_stats_to_disk: 0 -2025/05/04-10:09:55.793627 39 Options.write_dbid_to_manifest: 1 -2025/05/04-10:09:55.793628 39 Options.write_identity_file: 1 -2025/05/04-10:09:55.793629 39 Options.log_readahead_size: 0 -2025/05/04-10:09:55.793629 39 Options.file_checksum_gen_factory: Unknown -2025/05/04-10:09:55.793630 39 Options.best_efforts_recovery: 0 -2025/05/04-10:09:55.793630 39 Options.max_bgerror_resume_count: 2147483647 -2025/05/04-10:09:55.793631 39 Options.bgerror_resume_retry_interval: 1000000 -2025/05/04-10:09:55.793631 39 Options.allow_data_in_errors: 0 -2025/05/04-10:09:55.793632 39 Options.db_host_id: __hostname__ -2025/05/04-10:09:55.793633 39 Options.enforce_single_del_contracts: true -2025/05/04-10:09:55.793633 39 Options.metadata_write_temperature: kUnknown -2025/05/04-10:09:55.793634 39 Options.wal_write_temperature: kUnknown -2025/05/04-10:09:55.793635 39 Options.max_background_jobs: 2 -2025/05/04-10:09:55.793635 39 Options.max_background_compactions: -1 -2025/05/04-10:09:55.793636 39 Options.max_subcompactions: 1 -2025/05/04-10:09:55.793636 39 Options.avoid_flush_during_shutdown: 0 -2025/05/04-10:09:55.793637 39 Options.writable_file_max_buffer_size: 1048576 -2025/05/04-10:09:55.793637 39 Options.delayed_write_rate : 16777216 -2025/05/04-10:09:55.793675 39 Options.max_total_wal_size: 0 -2025/05/04-10:09:55.793677 39 Options.delete_obsolete_files_period_micros: 180000000 -2025/05/04-10:09:55.793678 39 Options.stats_dump_period_sec: 600 -2025/05/04-10:09:55.793678 39 Options.stats_persist_period_sec: 600 -2025/05/04-10:09:55.793679 39 Options.stats_history_buffer_size: 1048576 -2025/05/04-10:09:55.793679 39 Options.max_open_files: 256 -2025/05/04-10:09:55.793681 39 Options.bytes_per_sync: 0 -2025/05/04-10:09:55.793683 39 Options.wal_bytes_per_sync: 0 -2025/05/04-10:09:55.793684 39 Options.strict_bytes_per_sync: 0 -2025/05/04-10:09:55.793684 39 Options.compaction_readahead_size: 2097152 -2025/05/04-10:09:55.793685 39 Options.max_background_flushes: -1 -2025/05/04-10:09:55.793686 39 Options.daily_offpeak_time_utc: -2025/05/04-10:09:55.793686 39 Compression algorithms supported: -2025/05/04-10:09:55.793687 39 kZSTD supported: 0 -2025/05/04-10:09:55.793688 39 kXpressCompression supported: 0 -2025/05/04-10:09:55.793688 39 kBZip2Compression supported: 0 -2025/05/04-10:09:55.793689 39 kZSTDNotFinalCompression supported: 0 -2025/05/04-10:09:55.793689 39 kLZ4Compression supported: 1 -2025/05/04-10:09:55.793690 39 kZlibCompression supported: 0 -2025/05/04-10:09:55.793691 39 kLZ4HCCompression supported: 1 -2025/05/04-10:09:55.793691 39 kSnappyCompression supported: 1 -2025/05/04-10:09:55.793692 39 Fast CRC32 supported: Not supported on x86 -2025/05/04-10:09:55.793693 39 DMutex implementation: pthread_mutex_t -2025/05/04-10:09:55.793693 39 Jemalloc supported: 0 -2025/05/04-10:09:55.795422 39 Options.comparator: leveldb.BytewiseComparator -2025/05/04-10:09:55.795423 39 Options.merge_operator: None -2025/05/04-10:09:55.795424 39 Options.compaction_filter: None -2025/05/04-10:09:55.795425 39 Options.compaction_filter_factory: None -2025/05/04-10:09:55.795425 39 Options.sst_partitioner_factory: None -2025/05/04-10:09:55.795426 39 Options.memtable_factory: SkipListFactory -2025/05/04-10:09:55.795426 39 Options.table_factory: BlockBasedTable -2025/05/04-10:09:55.795451 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff845e2380) +2025/05/26-19:13:17.271695 38 RocksDB version: 9.9.3 +2025/05/26-19:13:17.271829 38 Compile date 2024-12-05 01:25:31 +2025/05/26-19:13:17.271831 38 DB SUMMARY +2025/05/26-19:13:17.271832 38 Host name (Env): c5f2a9d061bb +2025/05/26-19:13:17.271833 38 DB Session ID: PCRZT7AMVX68CX0XDWU4 +2025/05/26-19:13:17.272498 38 CURRENT file: CURRENT +2025/05/26-19:13:17.272500 38 IDENTITY file: IDENTITY +2025/05/26-19:13:17.272505 38 MANIFEST file: MANIFEST-000013 size: 165 Bytes +2025/05/26-19:13:17.272507 38 SST files in ./storage/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index dir, Total Num: 0, files: +2025/05/26-19:13:17.272507 38 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index: 000012.log size: 0 ; +2025/05/26-19:13:17.272508 38 Options.error_if_exists: 0 +2025/05/26-19:13:17.272509 38 Options.create_if_missing: 1 +2025/05/26-19:13:17.272510 38 Options.paranoid_checks: 1 +2025/05/26-19:13:17.272511 38 Options.flush_verify_memtable_count: 1 +2025/05/26-19:13:17.272512 38 Options.compaction_verify_record_count: 1 +2025/05/26-19:13:17.272513 38 Options.track_and_verify_wals_in_manifest: 0 +2025/05/26-19:13:17.272514 38 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/26-19:13:17.272514 38 Options.env: 0xffff68e34000 +2025/05/26-19:13:17.272515 38 Options.fs: PosixFileSystem +2025/05/26-19:13:17.272516 38 Options.info_log: 0xffff68aa2800 +2025/05/26-19:13:17.272517 38 Options.max_file_opening_threads: 16 +2025/05/26-19:13:17.272517 38 Options.statistics: (nil) +2025/05/26-19:13:17.272518 38 Options.use_fsync: 0 +2025/05/26-19:13:17.272519 38 Options.max_log_file_size: 1048576 +2025/05/26-19:13:17.272520 38 Options.max_manifest_file_size: 1073741824 +2025/05/26-19:13:17.272521 38 Options.log_file_time_to_roll: 0 +2025/05/26-19:13:17.272521 38 Options.keep_log_file_num: 1 +2025/05/26-19:13:17.272523 38 Options.recycle_log_file_num: 0 +2025/05/26-19:13:17.272524 38 Options.allow_fallocate: 1 +2025/05/26-19:13:17.272525 38 Options.allow_mmap_reads: 0 +2025/05/26-19:13:17.272525 38 Options.allow_mmap_writes: 0 +2025/05/26-19:13:17.272526 38 Options.use_direct_reads: 0 +2025/05/26-19:13:17.272527 38 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/26-19:13:17.272527 38 Options.create_missing_column_families: 1 +2025/05/26-19:13:17.272528 38 Options.db_log_dir: +2025/05/26-19:13:17.272529 38 Options.wal_dir: +2025/05/26-19:13:17.272529 38 Options.table_cache_numshardbits: 6 +2025/05/26-19:13:17.272531 38 Options.WAL_ttl_seconds: 0 +2025/05/26-19:13:17.272532 38 Options.WAL_size_limit_MB: 0 +2025/05/26-19:13:17.272532 38 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/26-19:13:17.272535 38 Options.manifest_preallocation_size: 4194304 +2025/05/26-19:13:17.272535 38 Options.is_fd_close_on_exec: 1 +2025/05/26-19:13:17.272536 38 Options.advise_random_on_open: 1 +2025/05/26-19:13:17.272536 38 Options.db_write_buffer_size: 0 +2025/05/26-19:13:17.272537 38 Options.write_buffer_manager: 0xffff68a0a200 +2025/05/26-19:13:17.272538 38 Options.random_access_max_buffer_size: 1048576 +2025/05/26-19:13:17.272538 38 Options.use_adaptive_mutex: 0 +2025/05/26-19:13:17.272539 38 Options.rate_limiter: (nil) +2025/05/26-19:13:17.272540 38 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/26-19:13:17.272542 38 Options.wal_recovery_mode: 0 +2025/05/26-19:13:17.272544 38 Options.enable_thread_tracking: 0 +2025/05/26-19:13:17.272545 38 Options.enable_pipelined_write: 0 +2025/05/26-19:13:17.272546 38 Options.unordered_write: 0 +2025/05/26-19:13:17.272547 38 Options.allow_concurrent_memtable_write: 1 +2025/05/26-19:13:17.272547 38 Options.enable_write_thread_adaptive_yield: 1 +2025/05/26-19:13:17.272548 38 Options.write_thread_max_yield_usec: 100 +2025/05/26-19:13:17.272549 38 Options.write_thread_slow_yield_usec: 3 +2025/05/26-19:13:17.272549 38 Options.row_cache: None +2025/05/26-19:13:17.272550 38 Options.wal_filter: None +2025/05/26-19:13:17.272551 38 Options.avoid_flush_during_recovery: 0 +2025/05/26-19:13:17.272551 38 Options.allow_ingest_behind: 0 +2025/05/26-19:13:17.272552 38 Options.two_write_queues: 0 +2025/05/26-19:13:17.272552 38 Options.manual_wal_flush: 0 +2025/05/26-19:13:17.272553 38 Options.wal_compression: 0 +2025/05/26-19:13:17.272554 38 Options.background_close_inactive_wals: 0 +2025/05/26-19:13:17.272555 38 Options.atomic_flush: 0 +2025/05/26-19:13:17.272556 38 Options.avoid_unnecessary_blocking_io: 0 +2025/05/26-19:13:17.272556 38 Options.prefix_seek_opt_in_only: 0 +2025/05/26-19:13:17.272559 38 Options.persist_stats_to_disk: 0 +2025/05/26-19:13:17.272560 38 Options.write_dbid_to_manifest: 1 +2025/05/26-19:13:17.272561 38 Options.write_identity_file: 1 +2025/05/26-19:13:17.272561 38 Options.log_readahead_size: 0 +2025/05/26-19:13:17.272562 38 Options.file_checksum_gen_factory: Unknown +2025/05/26-19:13:17.272563 38 Options.best_efforts_recovery: 0 +2025/05/26-19:13:17.272563 38 Options.max_bgerror_resume_count: 2147483647 +2025/05/26-19:13:17.272564 38 Options.bgerror_resume_retry_interval: 1000000 +2025/05/26-19:13:17.272565 38 Options.allow_data_in_errors: 0 +2025/05/26-19:13:17.272566 38 Options.db_host_id: __hostname__ +2025/05/26-19:13:17.272566 38 Options.enforce_single_del_contracts: true +2025/05/26-19:13:17.272567 38 Options.metadata_write_temperature: kUnknown +2025/05/26-19:13:17.272568 38 Options.wal_write_temperature: kUnknown +2025/05/26-19:13:17.272569 38 Options.max_background_jobs: 2 +2025/05/26-19:13:17.272569 38 Options.max_background_compactions: -1 +2025/05/26-19:13:17.272570 38 Options.max_subcompactions: 1 +2025/05/26-19:13:17.272573 38 Options.avoid_flush_during_shutdown: 0 +2025/05/26-19:13:17.272573 38 Options.writable_file_max_buffer_size: 1048576 +2025/05/26-19:13:17.272575 38 Options.delayed_write_rate : 16777216 +2025/05/26-19:13:17.272577 38 Options.max_total_wal_size: 0 +2025/05/26-19:13:17.272577 38 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/26-19:13:17.272578 38 Options.stats_dump_period_sec: 600 +2025/05/26-19:13:17.272579 38 Options.stats_persist_period_sec: 600 +2025/05/26-19:13:17.272579 38 Options.stats_history_buffer_size: 1048576 +2025/05/26-19:13:17.272582 38 Options.max_open_files: 256 +2025/05/26-19:13:17.272584 38 Options.bytes_per_sync: 0 +2025/05/26-19:13:17.272585 38 Options.wal_bytes_per_sync: 0 +2025/05/26-19:13:17.272585 38 Options.strict_bytes_per_sync: 0 +2025/05/26-19:13:17.272586 38 Options.compaction_readahead_size: 2097152 +2025/05/26-19:13:17.272587 38 Options.max_background_flushes: -1 +2025/05/26-19:13:17.272587 38 Options.daily_offpeak_time_utc: +2025/05/26-19:13:17.272588 38 Compression algorithms supported: +2025/05/26-19:13:17.272589 38 kZSTD supported: 0 +2025/05/26-19:13:17.272590 38 kXpressCompression supported: 0 +2025/05/26-19:13:17.272591 38 kBZip2Compression supported: 0 +2025/05/26-19:13:17.272591 38 kZSTDNotFinalCompression supported: 0 +2025/05/26-19:13:17.272592 38 kLZ4Compression supported: 1 +2025/05/26-19:13:17.272593 38 kZlibCompression supported: 0 +2025/05/26-19:13:17.272593 38 kLZ4HCCompression supported: 1 +2025/05/26-19:13:17.272594 38 kSnappyCompression supported: 1 +2025/05/26-19:13:17.272596 38 Fast CRC32 supported: Not supported on x86 +2025/05/26-19:13:17.272597 38 DMutex implementation: pthread_mutex_t +2025/05/26-19:13:17.272598 38 Jemalloc supported: 0 +2025/05/26-19:13:17.274742 38 Options.comparator: leveldb.BytewiseComparator +2025/05/26-19:13:17.274743 38 Options.merge_operator: None +2025/05/26-19:13:17.274744 38 Options.compaction_filter: None +2025/05/26-19:13:17.274745 38 Options.compaction_filter_factory: None +2025/05/26-19:13:17.274745 38 Options.sst_partitioner_factory: None +2025/05/26-19:13:17.274746 38 Options.memtable_factory: SkipListFactory +2025/05/26-19:13:17.274747 38 Options.table_factory: BlockBasedTable +2025/05/26-19:13:17.274765 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff68b32c60) cache_index_and_filter_blocks: 0 cache_index_and_filter_blocks_with_high_priority: 1 pin_l0_filter_and_index_blocks_in_cache: 0 @@ -127,7 +127,7 @@ data_block_hash_table_util_ratio: 0.750000 checksum: 4 no_block_cache: 0 - block_cache: 0xffff8440a150 + block_cache: 0xffff68a0a150 block_cache_name: LRUCache block_cache_options: capacity : 33554432 @@ -155,93 +155,93 @@ prepopulate_block_cache: 0 initial_auto_readahead_size: 8192 num_file_reads_for_auto_readahead: 2 -2025/05/04-10:09:55.795453 39 Options.write_buffer_size: 10485760 -2025/05/04-10:09:55.795454 39 Options.max_write_buffer_number: 2 -2025/05/04-10:09:55.795454 39 Options.compression: LZ4 -2025/05/04-10:09:55.795455 39 Options.bottommost_compression: Disabled -2025/05/04-10:09:55.795456 39 Options.prefix_extractor: nullptr -2025/05/04-10:09:55.795456 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr -2025/05/04-10:09:55.795457 39 Options.num_levels: 7 -2025/05/04-10:09:55.795457 39 Options.min_write_buffer_number_to_merge: 1 -2025/05/04-10:09:55.795458 39 Options.max_write_buffer_number_to_maintain: 0 -2025/05/04-10:09:55.795458 39 Options.max_write_buffer_size_to_maintain: 0 -2025/05/04-10:09:55.795459 39 Options.bottommost_compression_opts.window_bits: -14 -2025/05/04-10:09:55.795460 39 Options.bottommost_compression_opts.level: 32767 -2025/05/04-10:09:55.795460 39 Options.bottommost_compression_opts.strategy: 0 -2025/05/04-10:09:55.795461 39 Options.bottommost_compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.795462 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.795462 39 Options.bottommost_compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.795463 39 Options.bottommost_compression_opts.enabled: false -2025/05/04-10:09:55.795463 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.795464 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.795465 39 Options.compression_opts.window_bits: -14 -2025/05/04-10:09:55.795465 39 Options.compression_opts.level: 32767 -2025/05/04-10:09:55.795466 39 Options.compression_opts.strategy: 0 -2025/05/04-10:09:55.795466 39 Options.compression_opts.max_dict_bytes: 0 -2025/05/04-10:09:55.795467 39 Options.compression_opts.zstd_max_train_bytes: 0 -2025/05/04-10:09:55.795468 39 Options.compression_opts.use_zstd_dict_trainer: true -2025/05/04-10:09:55.795468 39 Options.compression_opts.parallel_threads: 1 -2025/05/04-10:09:55.795469 39 Options.compression_opts.enabled: false -2025/05/04-10:09:55.795469 39 Options.compression_opts.max_dict_buffer_bytes: 0 -2025/05/04-10:09:55.795470 39 Options.level0_file_num_compaction_trigger: 4 -2025/05/04-10:09:55.795470 39 Options.level0_slowdown_writes_trigger: 20 -2025/05/04-10:09:55.795471 39 Options.level0_stop_writes_trigger: 36 -2025/05/04-10:09:55.795471 39 Options.target_file_size_base: 67108864 -2025/05/04-10:09:55.795472 39 Options.target_file_size_multiplier: 1 -2025/05/04-10:09:55.795473 39 Options.max_bytes_for_level_base: 268435456 -2025/05/04-10:09:55.795474 39 Options.level_compaction_dynamic_level_bytes: 1 -2025/05/04-10:09:55.795474 39 Options.max_bytes_for_level_multiplier: 10.000000 -2025/05/04-10:09:55.795475 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 -2025/05/04-10:09:55.795476 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 -2025/05/04-10:09:55.795476 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 -2025/05/04-10:09:55.795477 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 -2025/05/04-10:09:55.795477 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 -2025/05/04-10:09:55.795478 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 -2025/05/04-10:09:55.795478 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 -2025/05/04-10:09:55.795479 39 Options.max_sequential_skip_in_iterations: 8 -2025/05/04-10:09:55.795480 39 Options.max_compaction_bytes: 1677721600 -2025/05/04-10:09:55.795480 39 Options.arena_block_size: 1048576 -2025/05/04-10:09:55.795481 39 Options.soft_pending_compaction_bytes_limit: 68719476736 -2025/05/04-10:09:55.795481 39 Options.hard_pending_compaction_bytes_limit: 274877906944 -2025/05/04-10:09:55.795482 39 Options.disable_auto_compactions: 0 -2025/05/04-10:09:55.795483 39 Options.compaction_style: kCompactionStyleLevel -2025/05/04-10:09:55.795483 39 Options.compaction_pri: kMinOverlappingRatio -2025/05/04-10:09:55.795484 39 Options.compaction_options_universal.size_ratio: 1 -2025/05/04-10:09:55.795484 39 Options.compaction_options_universal.min_merge_width: 2 -2025/05/04-10:09:55.795485 39 Options.compaction_options_universal.max_merge_width: 4294967295 -2025/05/04-10:09:55.795486 39 Options.compaction_options_universal.max_size_amplification_percent: 200 -2025/05/04-10:09:55.795486 39 Options.compaction_options_universal.compression_size_percent: -1 -2025/05/04-10:09:55.795487 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize -2025/05/04-10:09:55.795487 39 Options.compaction_options_universal.max_read_amp: -1 -2025/05/04-10:09:55.795488 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 -2025/05/04-10:09:55.795488 39 Options.compaction_options_fifo.allow_compaction: 0 -2025/05/04-10:09:55.795491 39 Options.table_properties_collectors: -2025/05/04-10:09:55.795491 39 Options.inplace_update_support: 0 -2025/05/04-10:09:55.795492 39 Options.inplace_update_num_locks: 10000 -2025/05/04-10:09:55.795492 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 -2025/05/04-10:09:55.795493 39 Options.memtable_whole_key_filtering: 0 -2025/05/04-10:09:55.795493 39 Options.memtable_huge_page_size: 0 -2025/05/04-10:09:55.795494 39 Options.bloom_locality: 0 -2025/05/04-10:09:55.795495 39 Options.max_successive_merges: 0 -2025/05/04-10:09:55.795495 39 Options.strict_max_successive_merges: 0 -2025/05/04-10:09:55.795496 39 Options.optimize_filters_for_hits: 0 -2025/05/04-10:09:55.795496 39 Options.paranoid_file_checks: 0 -2025/05/04-10:09:55.795497 39 Options.force_consistency_checks: 1 -2025/05/04-10:09:55.795497 39 Options.report_bg_io_stats: 0 -2025/05/04-10:09:55.795498 39 Options.ttl: 2592000 -2025/05/04-10:09:55.795498 39 Options.periodic_compaction_seconds: 0 -2025/05/04-10:09:55.795499 39 Options.default_temperature: kUnknown -2025/05/04-10:09:55.795499 39 Options.preclude_last_level_data_seconds: 0 -2025/05/04-10:09:55.795500 39 Options.preserve_internal_time_seconds: 0 -2025/05/04-10:09:55.795501 39 Options.enable_blob_files: false -2025/05/04-10:09:55.795501 39 Options.min_blob_size: 0 -2025/05/04-10:09:55.795502 39 Options.blob_file_size: 268435456 -2025/05/04-10:09:55.795502 39 Options.blob_compression_type: NoCompression -2025/05/04-10:09:55.795503 39 Options.enable_blob_garbage_collection: false -2025/05/04-10:09:55.795504 39 Options.blob_garbage_collection_age_cutoff: 0.250000 -2025/05/04-10:09:55.795504 39 Options.blob_garbage_collection_force_threshold: 1.000000 -2025/05/04-10:09:55.795505 39 Options.blob_compaction_readahead_size: 0 -2025/05/04-10:09:55.795505 39 Options.blob_file_starting_level: 0 -2025/05/04-10:09:55.795506 39 Options.experimental_mempurge_threshold: 0.000000 -2025/05/04-10:09:55.795507 39 Options.memtable_max_range_deletions: 0 -2025/05/04-10:09:55.808234 39 DB pointer 0xffff84462000 +2025/05/26-19:13:17.274771 38 Options.write_buffer_size: 10485760 +2025/05/26-19:13:17.274773 38 Options.max_write_buffer_number: 2 +2025/05/26-19:13:17.274773 38 Options.compression: LZ4 +2025/05/26-19:13:17.274774 38 Options.bottommost_compression: Disabled +2025/05/26-19:13:17.274775 38 Options.prefix_extractor: nullptr +2025/05/26-19:13:17.274776 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/26-19:13:17.274776 38 Options.num_levels: 7 +2025/05/26-19:13:17.274777 38 Options.min_write_buffer_number_to_merge: 1 +2025/05/26-19:13:17.274777 38 Options.max_write_buffer_number_to_maintain: 0 +2025/05/26-19:13:17.274780 38 Options.max_write_buffer_size_to_maintain: 0 +2025/05/26-19:13:17.274781 38 Options.bottommost_compression_opts.window_bits: -14 +2025/05/26-19:13:17.274782 38 Options.bottommost_compression_opts.level: 32767 +2025/05/26-19:13:17.274782 38 Options.bottommost_compression_opts.strategy: 0 +2025/05/26-19:13:17.274783 38 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.274784 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.274785 38 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.274789 38 Options.bottommost_compression_opts.enabled: false +2025/05/26-19:13:17.274790 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.274791 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.274791 38 Options.compression_opts.window_bits: -14 +2025/05/26-19:13:17.274792 38 Options.compression_opts.level: 32767 +2025/05/26-19:13:17.274796 38 Options.compression_opts.strategy: 0 +2025/05/26-19:13:17.274797 38 Options.compression_opts.max_dict_bytes: 0 +2025/05/26-19:13:17.274797 38 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/26-19:13:17.274798 38 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/26-19:13:17.274798 38 Options.compression_opts.parallel_threads: 1 +2025/05/26-19:13:17.274799 38 Options.compression_opts.enabled: false +2025/05/26-19:13:17.274801 38 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/26-19:13:17.274802 38 Options.level0_file_num_compaction_trigger: 4 +2025/05/26-19:13:17.274802 38 Options.level0_slowdown_writes_trigger: 20 +2025/05/26-19:13:17.274803 38 Options.level0_stop_writes_trigger: 36 +2025/05/26-19:13:17.274803 38 Options.target_file_size_base: 67108864 +2025/05/26-19:13:17.274806 38 Options.target_file_size_multiplier: 1 +2025/05/26-19:13:17.274807 38 Options.max_bytes_for_level_base: 268435456 +2025/05/26-19:13:17.274807 38 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/26-19:13:17.274809 38 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/26-19:13:17.274810 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/26-19:13:17.274810 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/26-19:13:17.274812 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/26-19:13:17.274813 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/26-19:13:17.274814 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/26-19:13:17.274814 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/26-19:13:17.274815 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/26-19:13:17.274815 38 Options.max_sequential_skip_in_iterations: 8 +2025/05/26-19:13:17.274816 38 Options.max_compaction_bytes: 1677721600 +2025/05/26-19:13:17.274817 38 Options.arena_block_size: 1048576 +2025/05/26-19:13:17.274818 38 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/26-19:13:17.274819 38 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/26-19:13:17.274820 38 Options.disable_auto_compactions: 0 +2025/05/26-19:13:17.274821 38 Options.compaction_style: kCompactionStyleLevel +2025/05/26-19:13:17.274822 38 Options.compaction_pri: kMinOverlappingRatio +2025/05/26-19:13:17.274822 38 Options.compaction_options_universal.size_ratio: 1 +2025/05/26-19:13:17.274823 38 Options.compaction_options_universal.min_merge_width: 2 +2025/05/26-19:13:17.274824 38 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/26-19:13:17.274825 38 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/26-19:13:17.274826 38 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/26-19:13:17.274826 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/26-19:13:17.274827 38 Options.compaction_options_universal.max_read_amp: -1 +2025/05/26-19:13:17.274828 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/26-19:13:17.274828 38 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/26-19:13:17.274832 38 Options.table_properties_collectors: +2025/05/26-19:13:17.274833 38 Options.inplace_update_support: 0 +2025/05/26-19:13:17.274834 38 Options.inplace_update_num_locks: 10000 +2025/05/26-19:13:17.274834 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/26-19:13:17.274835 38 Options.memtable_whole_key_filtering: 0 +2025/05/26-19:13:17.274836 38 Options.memtable_huge_page_size: 0 +2025/05/26-19:13:17.274838 38 Options.bloom_locality: 0 +2025/05/26-19:13:17.274838 38 Options.max_successive_merges: 0 +2025/05/26-19:13:17.274839 38 Options.strict_max_successive_merges: 0 +2025/05/26-19:13:17.274840 38 Options.optimize_filters_for_hits: 0 +2025/05/26-19:13:17.274841 38 Options.paranoid_file_checks: 0 +2025/05/26-19:13:17.274841 38 Options.force_consistency_checks: 1 +2025/05/26-19:13:17.274842 38 Options.report_bg_io_stats: 0 +2025/05/26-19:13:17.274843 38 Options.ttl: 2592000 +2025/05/26-19:13:17.274843 38 Options.periodic_compaction_seconds: 0 +2025/05/26-19:13:17.274844 38 Options.default_temperature: kUnknown +2025/05/26-19:13:17.274845 38 Options.preclude_last_level_data_seconds: 0 +2025/05/26-19:13:17.274845 38 Options.preserve_internal_time_seconds: 0 +2025/05/26-19:13:17.274846 38 Options.enable_blob_files: false +2025/05/26-19:13:17.274848 38 Options.min_blob_size: 0 +2025/05/26-19:13:17.274849 38 Options.blob_file_size: 268435456 +2025/05/26-19:13:17.274850 38 Options.blob_compression_type: NoCompression +2025/05/26-19:13:17.274850 38 Options.enable_blob_garbage_collection: false +2025/05/26-19:13:17.274851 38 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/26-19:13:17.274852 38 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/26-19:13:17.274853 38 Options.blob_compaction_readahead_size: 0 +2025/05/26-19:13:17.274854 38 Options.blob_file_starting_level: 0 +2025/05/26-19:13:17.274855 38 Options.experimental_mempurge_threshold: 0.000000 +2025/05/26-19:13:17.274855 38 Options.memtable_max_range_deletions: 0 +2025/05/26-19:13:17.289023 38 DB pointer 0xffff68a62000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/MANIFEST-000013 deleted file mode 100644 index a4adf340f0f133a650ff9fd9606807935881a442..0000000000000000000000000000000000000000 Binary files a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/MANIFEST-000013 and /dev/null differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/OPTIONS-000011 deleted file mode 100644 index 1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2..0000000000000000000000000000000000000000 --- a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/OPTIONS-000011 +++ /dev/null @@ -1,214 +0,0 @@ -# This is a RocksDB option file. -# -# For detailed file format spec, please refer to the example file -# in examples/rocksdb_option_file_example.ini -# - -[Version] - rocksdb_version=9.9.3 - options_file_version=1.1 - -[DBOptions] - compaction_readahead_size=2097152 - strict_bytes_per_sync=false - bytes_per_sync=0 - max_background_jobs=2 - avoid_flush_during_shutdown=false - max_background_flushes=-1 - delayed_write_rate=16777216 - max_open_files=256 - max_subcompactions=1 - writable_file_max_buffer_size=1048576 - wal_bytes_per_sync=0 - max_background_compactions=-1 - max_total_wal_size=0 - delete_obsolete_files_period_micros=180000000 - stats_dump_period_sec=600 - stats_history_buffer_size=1048576 - stats_persist_period_sec=600 - follower_refresh_catchup_period_ms=10000 - enforce_single_del_contracts=true - lowest_used_cache_tier=kNonVolatileBlockTier - bgerror_resume_retry_interval=1000000 - metadata_write_temperature=kUnknown - best_efforts_recovery=false - log_readahead_size=0 - write_identity_file=true - write_dbid_to_manifest=true - prefix_seek_opt_in_only=false - wal_compression=kNoCompression - manual_wal_flush=false - db_host_id=__hostname__ - two_write_queues=false - random_access_max_buffer_size=1048576 - avoid_unnecessary_blocking_io=false - skip_checking_sst_file_sizes_on_db_open=false - flush_verify_memtable_count=true - fail_if_options_file_error=true - atomic_flush=false - verify_sst_unique_id_in_manifest=true - skip_stats_update_on_db_open=false - track_and_verify_wals_in_manifest=false - compaction_verify_record_count=true - paranoid_checks=true - create_if_missing=true - max_write_batch_group_size_bytes=1048576 - follower_catchup_retry_count=10 - avoid_flush_during_recovery=false - file_checksum_gen_factory=nullptr - enable_thread_tracking=false - allow_fallocate=true - allow_data_in_errors=false - error_if_exists=false - use_direct_io_for_flush_and_compaction=false - background_close_inactive_wals=false - create_missing_column_families=true - WAL_size_limit_MB=0 - use_direct_reads=false - persist_stats_to_disk=false - allow_2pc=false - is_fd_close_on_exec=true - max_log_file_size=1048576 - max_file_opening_threads=16 - wal_filter=nullptr - wal_write_temperature=kUnknown - follower_catchup_retry_wait_ms=100 - allow_mmap_reads=false - allow_mmap_writes=false - use_adaptive_mutex=false - use_fsync=false - table_cache_numshardbits=6 - dump_malloc_stats=false - db_write_buffer_size=0 - allow_ingest_behind=false - keep_log_file_num=1 - max_bgerror_resume_count=2147483647 - allow_concurrent_memtable_write=true - recycle_log_file_num=0 - log_file_time_to_roll=0 - manifest_preallocation_size=4194304 - enable_write_thread_adaptive_yield=true - WAL_ttl_seconds=0 - max_manifest_file_size=1073741824 - wal_recovery_mode=kTolerateCorruptedTailRecords - enable_pipelined_write=false - write_thread_slow_yield_usec=3 - unordered_write=false - write_thread_max_yield_usec=100 - advise_random_on_open=true - info_log_level=ERROR_LEVEL - - -[CFOptions "default"] - memtable_max_range_deletions=0 - compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_memory_checks=false - block_protection_bytes_per_key=0 - uncache_aggressiveness=0 - bottommost_file_compaction_delay=0 - memtable_protection_bytes_per_key=0 - experimental_mempurge_threshold=0.000000 - bottommost_compression=kDisableCompressionOption - sample_for_compression=0 - prepopulate_blob_cache=kDisable - blob_file_starting_level=0 - blob_compaction_readahead_size=0 - table_factory=BlockBasedTable - max_successive_merges=0 - max_write_buffer_number=2 - prefix_extractor=nullptr - memtable_huge_page_size=0 - write_buffer_size=10485760 - strict_max_successive_merges=false - arena_block_size=1048576 - level0_file_num_compaction_trigger=4 - report_bg_io_stats=false - inplace_update_num_locks=10000 - memtable_prefix_bloom_size_ratio=0.000000 - level0_stop_writes_trigger=36 - blob_compression_type=kNoCompression - level0_slowdown_writes_trigger=20 - hard_pending_compaction_bytes_limit=274877906944 - target_file_size_multiplier=1 - bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} - paranoid_file_checks=false - blob_garbage_collection_force_threshold=1.000000 - enable_blob_files=false - soft_pending_compaction_bytes_limit=68719476736 - target_file_size_base=67108864 - max_compaction_bytes=1677721600 - disable_auto_compactions=false - min_blob_size=0 - memtable_whole_key_filtering=false - max_bytes_for_level_base=268435456 - last_level_temperature=kUnknown - preserve_internal_time_seconds=0 - compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} - max_bytes_for_level_multiplier=10.000000 - max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 - max_sequential_skip_in_iterations=8 - compression=kLZ4Compression - default_write_temperature=kUnknown - compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} - blob_garbage_collection_age_cutoff=0.250000 - ttl=2592000 - periodic_compaction_seconds=0 - preclude_last_level_data_seconds=0 - blob_file_size=268435456 - enable_blob_garbage_collection=false - persist_user_defined_timestamps=true - compaction_pri=kMinOverlappingRatio - compaction_filter_factory=nullptr - comparator=leveldb.BytewiseComparator - bloom_locality=0 - merge_operator=nullptr - compaction_filter=nullptr - level_compaction_dynamic_level_bytes=true - optimize_filters_for_hits=false - inplace_update_support=false - max_write_buffer_number_to_maintain=0 - max_write_buffer_size_to_maintain=0 - sst_partitioner_factory=nullptr - default_temperature=kUnknown - compaction_style=kCompactionStyleLevel - min_write_buffer_number_to_merge=1 - memtable_factory=SkipListFactory - memtable_insert_with_hint_prefix_extractor=nullptr - force_consistency_checks=true - num_levels=7 - -[TableOptions/BlockBasedTable "default"] - num_file_reads_for_auto_readahead=2 - initial_auto_readahead_size=8192 - metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} - enable_index_compression=true - verify_compression=false - prepopulate_block_cache=kDisable - format_version=6 - use_delta_encoding=true - pin_top_level_index_and_filter=true - read_amp_bytes_per_bit=0 - decouple_partitioned_filters=false - partition_filters=false - metadata_block_size=4096 - max_auto_readahead_size=262144 - index_block_restart_interval=1 - block_size_deviation=10 - block_size=4096 - detect_filter_construct_corruption=false - no_block_cache=false - checksum=kXXH3 - filter_policy=nullptr - data_block_hash_table_util_ratio=0.750000 - block_restart_interval=16 - index_type=kBinarySearch - pin_l0_filter_and_index_blocks_in_cache=false - data_block_index_type=kDataBlockBinarySearch - cache_index_and_filter_blocks_with_high_priority=true - whole_key_filtering=true - index_shortening=kShortenSeparators - cache_index_and_filter_blocks=false - block_align=false - optimize_filters_for_memory=true - flush_block_policy_factory=FlushBlockBySizePolicyFactory - diff --git a/data/raw/Dokumentation Huy Minh Nguyen.pdf b/data/raw/Dokumentation Huy Minh Nguyen.pdf deleted file mode 100644 index 2a28b173aa7c597361f58f8500265c691a78d8ab..0000000000000000000000000000000000000000 Binary files a/data/raw/Dokumentation Huy Minh Nguyen.pdf and /dev/null differ diff --git a/data/raw/GermanThesis.pdf b/data/raw/GermanThesis.pdf deleted file mode 100644 index 6ad481f82fba457816a153b764f7502a4652b856..0000000000000000000000000000000000000000 Binary files a/data/raw/GermanThesis.pdf and /dev/null differ diff --git a/data/raw/INSPIRER_Schlussbericht.pdf b/data/raw/INSPIRER_Schlussbericht.pdf deleted file mode 100644 index d85b215a0bd4ec0dfad7e85f76e0cf199501275e..0000000000000000000000000000000000000000 Binary files a/data/raw/INSPIRER_Schlussbericht.pdf and /dev/null differ diff --git a/data/raw/Kreye_Marieke_BA_241_V2.pdf b/data/raw/Kreye_Marieke_BA_241_V2.pdf deleted file mode 100644 index 1ff02dbfd3f350a6a8f11e796a195a8b3406356c..0000000000000000000000000000000000000000 Binary files a/data/raw/Kreye_Marieke_BA_241_V2.pdf and /dev/null differ diff --git a/data/raw/Kuhnle_Jakob_BA_241.pdf b/data/raw/Kuhnle_Jakob_BA_241.pdf deleted file mode 100644 index 9823b45f864a0e2279e34d57088d0c0d37c01ee8..0000000000000000000000000000000000000000 Binary files a/data/raw/Kuhnle_Jakob_BA_241.pdf and /dev/null differ diff --git a/data/raw/SCS_WiSe24-25_Savalskii_Denis-Thesis.pdf b/data/raw/SCS_WiSe24-25_Savalskii_Denis-Thesis.pdf deleted file mode 100644 index d09293f7a110b86e23050bd5b9d28bddfec560b4..0000000000000000000000000000000000000000 Binary files a/data/raw/SCS_WiSe24-25_Savalskii_Denis-Thesis.pdf and /dev/null differ diff --git a/data/raw/Thesis_Verladegeraeusche_in_Speditionen.pdf b/data/raw/Thesis_Verladegeraeusche_in_Speditionen.pdf deleted file mode 100644 index 9ca413b2cb65e3b23727872c168472aa96e004b6..0000000000000000000000000000000000000000 Binary files a/data/raw/Thesis_Verladegeraeusche_in_Speditionen.pdf and /dev/null differ diff --git a/data/raw/Wurzbacher-Schulze-et_al_Pro_La-Fellbach_2025.pdf b/data/raw/Wurzbacher-Schulze-et_al_Pro_La-Fellbach_2025.pdf deleted file mode 100644 index 3e9b2a86ae2d8757343e8a7d9d6b9f632ee3e387..0000000000000000000000000000000000000000 Binary files a/data/raw/Wurzbacher-Schulze-et_al_Pro_La-Fellbach_2025.pdf and /dev/null differ diff --git a/data_types.py b/data_types.py new file mode 100644 index 0000000000000000000000000000000000000000..cb639558998ba4908f4dc122fd3dcbd4346b49f2 --- /dev/null +++ b/data_types.py @@ -0,0 +1,57 @@ +from typing import List, Optional, Dict, Any +from dataclasses import dataclass, asdict + + +@dataclass +class ChatMessage: + role: str + content: str + + +@dataclass +class DataPoints: + text: Optional[List[str]] = None + images: Optional[list] = None + + def to_dict(self): + return { + "text": self.text, + "images": self.images + } + + +@dataclass +class ExtraInfo: + data_points: DataPoints + followup_questions: Optional[List[str]] = None + + def to_dict(self): + return { + "data_points": self.data_points.to_dict() if hasattr(self.data_points, 'to_dict') else self.data_points, + "followup_questions": self.followup_questions + } + + +@dataclass +class SearchDocument: + id: Optional[str] = None + content: Optional[str] = None + source_page: Optional[str] = None + sourcefile: Optional[str] = None + source_path: Optional[str] = None + score: Optional[float] = None + reranker_score: Optional[float] = None + combined_score: Optional[float] = None + + def serialize_for_results(self) -> Dict[str, Any]: + result_dict = { + "id": self.id, + "content": self.content, + "source_page": self.source_page, + "sourcefile": self.sourcefile, + "source_path": self.source_path, + "score": self.score, + "reranker_score": self.reranker_score, + "combined_score": self.combined_score, + } + return result_dict diff --git a/debug_elements.txt b/debug_elements.txt deleted file mode 100644 index 733c054dd9009584ecc8074296e19948aad5713f..0000000000000000000000000000000000000000 --- a/debug_elements.txt +++ /dev/null @@ -1,435 +0,0 @@ - -=== Element 0 === -Category: Image -Text: -Metadata: - -=== Element 1 === -Category: Title -Text: Studiengang Bauphysik -Metadata: - -=== Element 2 === -Category: Title -Text: Verladegeräusche in Speditionen -Metadata: - -=== Element 3 === -Category: NarrativeText -Text: Bachelorarbeit zur Erlangung des akademischen Grades Bachelor of Engineering -Metadata: - -=== Element 4 === -Category: Title -Text: vorgelegt von -Metadata: - -=== Element 5 === -Category: Title -Text: Selin Karagöz -Metadata: - -=== Element 6 === -Category: Title -Text: Matrikelnummer -Metadata: - -=== Element 7 === -Category: Title -Text: Matrikelnummer -Metadata: - -=== Element 8 === -Category: UncategorizedText -Text: 610260 -Metadata: - -=== Element 9 === -Category: NarrativeText -Text: Eingereicht am -Metadata: - -=== Element 10 === -Category: UncategorizedText -Text: 30.06.2023 -Metadata: - -=== Element 11 === -Category: NarrativeText -Text: Erstgutachter Prof. Dr. Karl Georg Degen Zweitgutachter Prof. Dr.-Ing. Berndt Zeitler externer Betreuer Dipl.-Ing (FH) Bauphysik Thomas Heine Heine und Jud, Forststraße 9, 70174 Stuttgart -Metadata: - -=== Element 12 === -Category: Header -Text: Kurzfassung -Metadata: - -=== Element 13 === -Category: Title -Text: Kurzfassung -Metadata: - -=== Element 14 === -Category: NarrativeText -Text: Die Logistik spielt eine entscheidende Rolle in der globalen Wirtschaft, doch sie geht auch mit einer unvermeidlichen Lärmbelastung einher. Diese Arbeit konzentriert sich auf die Analyse und Bewertung von Verladetätigkeiten in Speditionen mit verschiedenen Flurfördergeräten und Anhängern. Ziel ist es, Emissionsdatenblätter für Verladetätigkei- ten mit bestimmten Flurfördergeräten und Anhängern zu erstellen, die als Grundlage für Schallimmissionsprognosen dienen können. Weiterhin werden mögliche Lärmmin- derungsmaßnahmen aufgezeigt. -Metadata: - -=== Element 15 === -Category: NarrativeText -Text: Im Rahmen der Untersuchung wurde der Schalldruck im Fernfeld gemessen, wobei das Hüllflächen-Verfahren zur Ermittlung der Schallleistung angewendet wurde. Zusätzlich wurde die Richtcharakteristik entlang einer Kreisbahn im Nahfeld analysiert. Es wurde zudem eine Vergleichsanalyse der simulierten Messergebnisse mit den tatsächlichen Messungen durchgeführt, um die Genauigkeit der berechneten Kenngrößen zu überprü- fen und Abweichungen zu interpretieren. Die Ergebnisse zeigen, dass die Beladung mit einem Gabelstapler und einem Gabelhubwagen ähnliche Schallleistungspegel aufwei- sen. Allerdings gibt es Unterschiede in der Impulshaftigkeit der Geräuschentwicklung. Der Gabelhubwagen erzeugt mehr impulsartige Schallereignisse, während der Gabel- stapler eine kontinuierlichere Geräuschabstrahlung aufweist. Es gibt gewisse Variatio- nen der Schallleistungspegel je nach Flurfördergerät und Anhängertyp, jedoch zeigt sich kein signifikanter Unterschied zwischen den Beladevorgängen der Flurfördergeräte in den verschiedenen Anhängern, was auf eine gewisse Ähnlichkeit hinweist (siehe Tabelle 1). Die Schallabstrahlung der Flurfördergeräte erfolgt weitestgehend in alle Richtungen, -Metadata: - -=== Element 16 === -Category: Title -Text: ohne eine ausgeprägte Richtcharakteristik aufzuweisen. -Metadata: - -=== Element 17 === -Category: Table -Text: Anzahl Max-Pegel Schallleistungspegel Flurfördergerät | Einzelereignisse LAFmax LWA,5s LWAmax LWA,1h Kl LWAT,1h El [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] Gabelstapler 297 69,3 100,7 108,8 72,1 5,7 77,8 STABW [dB] 6,5 4,9 6,5 4,9 2,9 - Gabelhubwagen 99 68,6 100,7 108,1 72,1 6,2 79,5 STABW [dB] 6,4 5,1 6,4 51 2,7 - -Metadata: - -=== Element 18 === -Category: Title -Text: I -Metadata: - -=== Element 19 === -Category: Header -Text: Kurzfassung -Metadata: - -=== Element 20 === -Category: Table -Text: Anzahl Max-Pegel Schallleistungspegel Flurfördergerät | Anhänger-Typ lEinzelereignissel LArmax | LWASs LWAmax LWA‚Ih Kl LWAT,Ih [ie [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A}] [dB{A)] Tautliner 36 73,1 103,1 112,5 74,6 6,9 81,5 STABW [dB] 7,1 4,8 71 4,8 2,9 - Koffer 68,3 100,1 107,9 71,6 5,4 77,0 Gabelstapler STABW [dB] 6,1 48 6,1 4,8 2,8 B Wechselbrücke 71,6 102,0 111,0 73,4 81 81,5 STABW [dB] 4,9 4 4,9 4 16 - Koffer 3 69,4 101,5 108,9 72,9 6,7 79,6 STABW [dB] 6 49 6 4,9 2,7 - Gabelhubwagen Wechselbrücke 3 64,4 97,2 103,8 68,6 5,0 73,6 STABW [dB] 5,6 4,3 5,6 4,3 2,1 - -Metadata: - -=== Element 21 === -Category: Title -Text: Tabelle 1: Ergebnisse der Verladegeräusche -Metadata: - -=== Element 22 === -Category: NarrativeText -Text: Mit: LAFmax: Maximal-Pegel [dB(A)], LWA,5s: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWAmax: maximale Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWA,1h: stündliche Schall- leistungspegel [dB(A)], KI: Impulszuschlag [dB(A)], LWAT,1h: impulsbehaftete stündliche Schallleis- -Metadata: - -=== Element 23 === -Category: Title -Text: tungspegel [dB(A)], STABW: Standardabweichung [dB] -Metadata: - -=== Element 24 === -Category: NarrativeText -Text: Es stehen verschiedene Möglichkeiten zur Lärmminderung zur Verfügung, wie die Ver- wendung von weicheren Oberflächen auf Überladebrücken, Dröhnfolien an der Unter- seite der Überladebrücken, speziell angepasste Stoßdämpfer in den Anhängern sowie Maßnahmen auf dem Gelände und das richtige Verhalten des Personals. -Metadata: - -=== Element 25 === -Category: NarrativeText -Text: Zukünftige Untersuchungen könnten weitere spezifische Messungen und Untersuchun- gen für bestimmte Situationen von Flurfördergeräten umfassen, um eine detailliertere Bewertung vorzunehmen. Die Erkenntnisse können dazu beitragen, Standards und Richtlinien für den Einsatz von Flurfördergeräten zu verbessern und die Lärmbelastung in Speditionen und während des Verladeprozesses insgesamt zu reduzieren. Es wurden Emissionsdatenblätter erstellt, um die Arbeit zu erleichtern. Je nach bekanntem Anhä- ngertyp können die entsprechenden Vorlagen verwendet werden, um präzisere Ergeb- nisse zu erzielen. Ein Entladevorgang kann ähnlich wie ein Beladevorgang betrachtet werden. -Metadata: - -=== Element 26 === -Category: NarrativeText -Text: Die vorliegende Arbeit liefert somit wichtige Erkenntnisse über Verladegeräusche in ver- schiedenen Anhängertypen und bietet eine Grundlage für zukünftige Untersuchungen und Maßnahmen zur Lärmminderung in der Logistikbranche. -Metadata: - -=== Element 27 === -Category: Title -Text: II -Metadata: - -=== Element 28 === -Category: Header -Text: Eidesstattliche Versicherung -Metadata: - -=== Element 29 === -Category: Title -Text: Eidesstattliche Versicherung -Metadata: - -=== Element 30 === -Category: NarrativeText -Text: Ich erkläre hiermit, dass ich die vorliegende Arbeit selbstständig und ohne Verwendung anderer als der angegebenen Hilfsmittel verfasst habe. Ich habe sämtliche verwendeten Quellen erwähnt und gemäß den gängigen wissenschaftlichen Regeln zitiert. Die Arbeit hat in gleicher oder ähnlicher Form noch keiner anderen Prüfungsbehörde vorgelegen. -Metadata: - -=== Element 31 === -Category: Image -Text: . Hanpsi -Metadata: - -=== Element 32 === -Category: FigureCaption -Text: Kirchheim unter Teck, 30.06.2023 -Metadata: - -=== Element 33 === -Category: Title -Text: III -Metadata: - -=== Element 34 === -Category: Header -Text: Danksagung -Metadata: - -=== Element 35 === -Category: Title -Text: Danksagung -Metadata: - -=== Element 36 === -Category: NarrativeText -Text: Ich möchte mich von ganzem Herzen bei allen Personen bedanken, die mich während meiner Bachelorarbeit unterstützt haben, ohne die wäre diese Thesis nicht möglich ge- wesen. -Metadata: - -=== Element 37 === -Category: NarrativeText -Text: Ein besonderer Dank gebührt meinem externen Betreuer Thomas Heine von dem Inge- nieurbüro Heine+Jud in Stuttgart der mich tatkräftig unterstützt hat und mit wertvollen Hinweisen bzw. Anregungen erfolgreich unterstützt hat. Ich bedanke mich herzlichst für die Zeit die man für mich genommen hat, um meine Thesis zu lesen und zu kommentie- ren. Ebenfalls dank ich meinem Betreuer Prof. Dr. Karl Georg Degen von der Hochschule der Technik in Stuttgart, der mich ebenfalls unterstützt hat und mir Hinweise und Anre- gungen gab. Die konstruktive Kritik und Hilfestelllungen haben mir geholfen, meine Ar- beit und mein Repertoire zu erweitern und zu verbessern. -Metadata: - -=== Element 38 === -Category: NarrativeText -Text: Ein weiterer großer Dank geht an alle meine Arbeitskollegen von Heine+Jud und meinem zweiten Chef Axel Jud, die mich während dieser herausfordernden Zeit motiviert und ermutigt haben. Ich bedanke mich zudem besonders an meine Messgehilfen Tobias Gassner, Christian Reutter, Sebastian Gerner und Lena Robert, die mich bei meinen Mes- sungen tatkräftig unterstützt haben. -Metadata: - -=== Element 39 === -Category: NarrativeText -Text: Ebenfalls geht auch ein Dank raus an meine Familie und meinem Freund, die mir mora- lischen Halt gegeben haben und mich immer motiviert haben, meine beste Leistung vor- zulegen und nie aufzugeben. Hervorgehoben bedanke ich mich bei meinen Eltern die mir mein Studium durch ihre Unterstützung ermöglicht haben und fortwährend ein of- fenes Ohr für mich hatten. -Metadata: - -=== Element 40 === -Category: NarrativeText -Text: Schließlich möchte ich mich auch bei meinen Kommilitonen und Mitstudierenden be- danken, die mich während meines Studiums inspiriert und unterstützt haben. Ich bin dankbar für die wunderbaren Erinnerungen und Freundschaften, die ich während dieser Zeit geknüpft habe. -Metadata: - -=== Element 41 === -Category: NarrativeText -Text: Noch einmal vielen herzlichen Dank an alle, die mir geholfen haben, mein Bachelorstu- dium abzuschließen. Eure Unterstützung und Ermutigung haben mir sehr geholfen, diese Arbeit erfolgreich und ohne Einbüße abzuschließen. -Metadata: - -=== Element 42 === -Category: Title -Text: IV -Metadata: - -=== Element 43 === -Category: Header -Text: Inhaltsverzeichnis -Metadata: - -=== Element 44 === -Category: Title -Text: Inhaltsverzeichnis -Metadata: - -=== Element 45 === -Category: Table -Text: Kurzfassung .................................................................................................................. I Eidesstattliche Versicherung ....................................................................................... III Danksagung ................................................................................................................ IV Inhaltsverzeichnis ........................................................................................................ 1 1 Einleitung ......................................................................................................... 3 2 Grundlagen ...................................................................................................... 6 2.1 Logistik ....................................................................................................................... 6 2.2 Ermittlung der akustischen Kenngrößen ................................................................... 9 2.3 Statistik .................................................................................................................... 21 3 Aktuelle Prognosegrundlage ............................................................................24 3.1 Schallimmissionsprognosen für Gewerbe – Technischer Bericht des HLUG ........... 24 3.2 Be- und Entladevorgängen mit Palettenhubwagen und beladener Palette bei Lkw in Logistikzentren ..................................................................................................... 27 3.3 Geräuschemissionen durch Ladevorgänge in Ladezonen von Discountern ............ 28 3.4 Fazit .......................................................................................................................... 30 4 Beschreibung des Betriebs und Untersuchungsobjekte .....................................31 4.1 Beschreibung des Betriebs ...................................................................................... 31 4.2 Beschreibung der Untersuchungsobjekte ............................................................... 33 5 Beschreibung der Untersuchungsmethodik ......................................................38 5.1 Prozessablauf der untersuchten Verladetätigkeit ................................................... 38 5.2 Messequipment und Messaufbau ........................................................................... 39 5.3 Vorgehensweise bei der Messwerterfassung .......................................................... 41 5.4 Messpositionen ........................................................................................................ 44 6 Messauswertung und Statistik .........................................................................46 6.1 Verladegeräusche .................................................................................................... 46 6.2 Statistik .................................................................................................................... 48 6.3 Modellierung der Messsituation ............................................................................. 50 6.4 Richtcharakteristik ................................................................................................... 51 -Metadata: - -=== Element 46 === -Category: UncategorizedText -Text: 6.5 -Metadata: - -=== Element 47 === -Category: UncategorizedText -Text: Validierung ............................................................................................................... 55 -Metadata: - -=== Element 48 === -Category: UncategorizedText -Text: 1 -Metadata: - -=== Element 49 === -Category: Header -Text: Inhaltsverzeichnis -Metadata: - -=== Element 50 === -Category: Table -Text: 7 Ergebnisse und Interpretation ..........................................................................56 7.1 Verladegeräusche .................................................................................................... 56 7.2 Statistik .................................................................................................................... 60 7.3 Richtcharakteristik ................................................................................................... 66 7.4 Validierung ............................................................................................................... 68 7.5 Mögliche Minderungsmaßnahmen ......................................................................... 70 7.6 Fehlerdiskussion ...................................................................................................... 72 8 Abschließende Bewertung und Ausblick ...........................................................75 9 Literatur ............................................................................................................ I Formelverzeichnis ..................................................................................................... VIII Abbildungsverzeichnis ................................................................................................ IX Tabellenverzeichnis ..................................................................................................... X Diagrammverzeichnis .................................................................................................. XI Anhänge .................................................................................................................... XII Anhang 1: Emissionsdatenblätter ........................................................................................ XII Anhang 2: Lagepläne ........................................................................................................... XIX Anhang 3: Messprotokolle ................................................................................................. XXII Anhang 4: Messergebnisse der Beladevorgänge ............................................................. XXIV Anhang 5: Rechenmodell SoundPlan 9.0 – Gabelhubwagen 27.04.23 ............................. XLIII -Metadata: - -=== Element 51 === -Category: UncategorizedText -Text: Anhang 6: Rechenmodell SoundPlan 9.0 – Gabelstapler 03.05.2023 ............................... XLVI -Metadata: - -=== Element 52 === -Category: UncategorizedText -Text: 2 -Metadata: - -=== Element 53 === -Category: Header -Text: 1 Einleitung -Metadata: - -=== Element 54 === -Category: Title -Text: 1 Einleitung -Metadata: - -=== Element 55 === -Category: NarrativeText -Text: Laute Klänge und Töne, wie etwa lautes Geschrei oder ein donnerndes Geräusch, wer- -Metadata: - -=== Element 56 === -Category: NarrativeText -Text: den von uns als störend oder bedrohlich wahrgenommen und werden auch als Lärm bezeichnet. Diese können sich negativ auf unser körperliches, seelischen und unser so- ziales Wohlbefinden auswirken. [1] Durch die ermittelte Lärmbelastung können Schluss- folgerungen über die Belästigung gezogen und somit Menschen vor schädlichem und störendem Lärm geschützt werden. Lärm kann an verschieden Orten auftreten und da- her unterscheidet man in der Gesetzgebung nach Straßen-, Schienen-, Flug-, Gewerbe-, Bau-, Freizeit- und Sportlärm. Hinter jeder dieser Verursacher steht eine spezifische Ge- setzgebung mit beigeordneten Regelungen und Zuständigkeiten. Um einen präventiven Schallschutz zu gewährleisten und ein angenehmes akustisches Stadtklima zu erreichen, ist der Schallimmissionsschutz von großer Bedeutung. Ziel ist es, alle störenden Geräu- sche zu reduzieren, besonders in Bereichen mit zunehmender Mobilität und Warenver- kehr. [2] Der stetig wachsende Wohnraummangel zwingt die Wohnbebauung näher an Straßen- und Schienenwege, sowie näher an das Gewerbe. [3] Dadurch wächst das Po- tential von dem daraus entstehenden Lärm belästigt zu werden. Gemäß einer Umfrage aus dem Jahr 2020 des Bundesministeriums für Umwelt, Naturschutz, nukleare Sicher- heit und Verbraucherschutz, empfinden 51 % der Bevölkerung in Deutschland eine Be- -Metadata: - -=== Element 57 === -Category: NarrativeText -Text: lästigung durch Lärm aus Industrie-/Gewerbelärm (siehe Abbildung 1). [4] -Metadata: - -=== Element 58 === -Category: Image -Text: Belästigung durch einzelne Lärmquellen 2020 Frage: Wenn Sie einmal an die letzten 12 Monate hier bei Ihnen denken, wie stark haben Sie sich persönlich durch den Lärm von. folgenden Dingen gestört oder belästigt gefühlt? ‚Antworten: "zumindest etwas belästigt”, das heißt Summe der Angaben „äußerst gestört oder belästigt”, „stark gestört oder belästigt“, „mittelmäßig gestört oder belästigt" und „etwas gestört oder belästigt" Schienenverkehrslärm Flugverkehrslärm Industrie- und Gewerbelärm Lärm von Nachbarn/ Nachbarinnen Straßenverkehrslärm Repräsentativerhebung bei 2.115 Befragten, Bevölkerung ab 14 Jahren Bundesministerium für Umwelt, Naturschutz, nukleare Sicherheit und Verbraucherschutz/Umweitbundesamt (Hrsg.). Umweltbewusstsein in Deutschland 2020 - Ergebnisse einer repräsentativen Bevölkerungsumfrage -Metadata: - -=== Element 59 === -Category: FigureCaption -Text: Abbildung 1: Ausmaß der Lärmbelästigung der Bevölkerung in Deutschland 2020 [4] -Metadata: - -=== Element 60 === -Category: UncategorizedText -Text: 3 -Metadata: - -=== Element 61 === -Category: Header -Text: 1 Einleitung -Metadata: - -=== Element 62 === -Category: NarrativeText -Text: Der immerwährende Austausch von Gütern führt zu einer Lärmquelle, die genau be- trachtet werden muss, um eine zukünftige Lärmbelastung vorherzusagen. Verantwort- lich für diesen Güterfluss sind Logistikunternehmen oder auch Speditionen genannt. Eine zentrale Schnittstelle sind die Verladestationen, an denen der Umschlag der Güter stattfindet und geeignete Flurfördergeräte zum Einsatz kommen, um den Wechsel der Transportmittel zu ermöglichen. Durch diesen Prozess von Be- und Entladung der Anhä- nger entsteht eine vielfältige Lärmbelastung durch unterschiedliche Faktoren. [5] -Metadata: - -=== Element 63 === -Category: Title -Text: Mit Hilfe einer Schallimmissionsprognose lassen sich Schallimmissionen von Industrie- -Metadata: - -=== Element 64 === -Category: NarrativeText -Text: und Gewerbelärm, dergleichen für alle anderen Verursachern, prognostizieren. Richt- werte für Gewerbe gibt die Technische Anleitung zum Schutz gegen Lärm (TA Lärm) vor, die laut der TA Lärm zum „Schutz der Allgemeinheit und der Nachbarschaft vor schädli- chen Umwelteinwirkungen durch Geräusche sowie der Vorsorge gegen schädliche Um- welteinwirkungen durch Geräusche“ [6] dient. Für eine Schallimmissionsprognose wer- den schalltechnische Eingangsdaten benötigt und sind erforderlich, um eine Simulation durchführen zu können. Für Be- und Entladevorgänge an einem Umschlagspunkt stehen Veröffentlichungen zur Verfügung, die auf messtechnisch ermittelten Schalldruckpegeln basieren. Für Verladetätigkeiten werden zu derzeitigem Stand beispielgebend der der Technische Bericht [7, 8] von der hessischen Landesanstalt für Umwelt verwendet. Die bisherigen Veröffentlichungen und Untersuchungen in diesem Bereich sind konzentrie- ren sich hauptsächlich auf Verbrauchermärkte und Verladungen mit Handhubwagen, was nur einen kleinen Teil der tatsächlich möglichen Verladetätigkeiten abdeckt. -Metadata: - -=== Element 65 === -Category: Title -Text: Ziel dieser Thesis -Metadata: - -=== Element 66 === -Category: NarrativeText -Text: Um eine umfassendere und praxisnähere Schallimmissionsprognose durchführen zu können, bedarf es weiterer Untersuchungen. Das Ziel dieser Thesis besteht darin, detail- liert die Verladetätigkeiten in Speditionen zu analysieren und zu bewerten. Die mess- technisch ermittelten Daten werden ausgewertet und durch eine geeignete Simulation verifiziert. Die notwendigen Rechengrundlagen werden dazu erläutert, die zur Analyse und Bewertung von Verladegeräusche benötigt werden. Aus dem gewonnenen Wissen werden Emissionsansätze ausgearbeitet, die als Prognosegrundlage für weiterführende Schallimmissionsprognosen zur Verfügung steht. Zusätzlich wird die 2D-Richtcharakte- ristik der Verladegeräusche durch eine Untersuchung entlang einer Kreisbahn im Nah- -Metadata: - -=== Element 67 === -Category: UncategorizedText -Text: 4 -Metadata: - -=== Element 68 === -Category: Header -Text: 1 Einleitung -Metadata: - -=== Element 69 === -Category: NarrativeText -Text: feld ermittelt. Die Thesis stellt eine wichtige Grundlage für die Entwicklung von geeig- neten Maßnahmen zur Reduktion der Lärmbelastung in Speditionen dar, weshalb mög- liche Minderungsmaßnahmen aufgezeigt werden, um die Lärmbelastung zu reduzieren. Die Thesis bietet somit eine umfassende Einführung in die Grundlagen und Rechen- grundlagen der Lärmemissionsmessung und -bewertung. -Metadata: - -=== Element 70 === -Category: UncategorizedText -Text: 5 -Metadata: - -=== Element 71 === -Category: Header -Text: 2 Grundlagen -Metadata: - -=== Element 72 === -Category: Title -Text: 2 Grundlagen -Metadata: - -=== Element 73 === -Category: NarrativeText -Text: Das folgende Kapitel dient zur Einführung in die Thesis und bildet somit das Grundge- rüst. Es werden die allgemeinen Grundlagen der Logistik und Grundlagen zur Ermittlung der notwendigen akustischen Kenngrößen aufgezeigt. Ziel dieses Kapitel ist es ein grund- legendes Wissen darzubieten, um ein vollständiges Verständnis der Thesis zu vermitteln. -Metadata: - -=== Element 74 === -Category: Title -Text: 2.1 Logistik -Metadata: - -=== Element 75 === -Category: Title -Text: Einer der wichtigsten Komponente der globalen Wirtschaft ist die Logistik. Sie verbindet -Metadata: - -=== Element 76 === -Category: NarrativeText -Text: die Gesellschaft durch den Handel und Verbrauch von Gütern. Als Grundgerüst der Lo- gistik, steht der Güteraustausch zwischen Unternehmen oder dem privaten Haushalt. Im täglichen Leben machen wir permanent Gebrauch von Logistik, sei es für den Trans- port von Personen oder von Gütern. Vernetzt werden die Unternehmen über die Liefer- und Logistikkette, welche den Austausch von Gütern ermöglichen. Die Kette beginnt mit der Güterbereitstellung, der Güterverwendung und der Güterverteilung. Unternehmen stellen Güter über die Produktionskette her, die dann bereitgestellt werden. Diese be- reitgestellten Güter werden entweder als Sachgüter wie Smartphones verwendet oder als Konsumgüter wie Nahrungsmittel verbraucht. Damit Unternehmen die Güter an den Kunden verteilen können wird die Logistik benötigt. Die Logistik stellt das Bindeglied zwischen Bereitstellung und Verwendung der Güter dar. Ein sogenannter Güterfluss ist entstanden [5]. -Metadata: - -=== Element 77 === -Category: Title -Text: Die Logistikkette -Metadata: - -=== Element 78 === -Category: NarrativeText -Text: Die raumzeitliche Transformation der Güter ist einer der Hauptarbeitsprozesse der Lo- gistik. Dies betrifft die Überbrückung der Zeit zwischen Fertigstellung und dem Ver- brauch. Um die Zeit zu überbrücken, bis die Güter verbraucht werden, ist es erforderlich, diese zwischenzulagern. Diese Zwischenlagerung betrifft den Transport, den Umschlag und die Lagerung der Güter. Unter Umschlag wird der Vorgang bezeichnet, indem die Güter das Transportmittel durch Flurfördergeräte wechseln. [9] -Metadata: - -=== Element 79 === -Category: NarrativeText -Text: Logistikunternehmen, auch bekannt als Speditionen, tragen die Verantwortung für den Güterfluss sowie die damit verbundenen Prozesse. Ihre Aufgabe besteht darin, die -Metadata: - -=== Element 80 === -Category: UncategorizedText -Text: 6 -Metadata: - -=== Element 81 === -Category: Header -Text: 2 Grundlagen -Metadata: - -=== Element 82 === -Category: NarrativeText -Text: Menge, Art und Handhabungseigenschaften der Güter zu berücksichtigen und den ge- samten Prozess der Planung, Steuerung und Kontrolle zu gewährleisten. Die Menge und Art der Güter ergeben sich aus der Zusammenstellung der Güter für eine Bestellung im Lager. Die Güterhandhabungseigenschaft wird durch die Verpackung geändert. Die Gü- ter werden auf sogenannten Ladungsträger, zu Ladeeinheiten gebildet. Die Ladeträger sind spezielle und genormte Lade- oder Transporthilfsmittel wie beispielsweise Schach- teln, Behälter oder Paletten. Eine Logistikkette entsteht aus den einzelnen logistischen Prozessanteilen, die den Lauf einer Ladeeinheit darstellt. Zu Beginn steht das einzelne Packstück, welches zu einer Ladeeinheit, durch die Lagerung auf beispielsweise einer Normpalette, gebildet wird. Die Ladeeinheit wird im Lager zwischengelagert, bis der Auf- trag zur Auslieferung erteilt wird. Am Tag der Auslieferung wird die Ladeeinheit in das Transportfahrzeug umgeschlagen und zu dem jeweiligen Auslieferungsort transportiert. Dort angekommen wird die Ladeeinheit in das Auslieferungslager umgeschlagen und wieder zwischengelagert. [5] -Metadata: - -=== Element 83 === -Category: Title -Text: Fördern und Transportieren -Metadata: - -=== Element 84 === -Category: NarrativeText -Text: Für den Umschlag der Ladeeinheiten sind Transportmittel notwendig und realisieren so- mit die logistischen Funktionen das Transportieren, Umschlagens, Stapelns, Lagern und Kommissionierens. Die Hauptfunktion eines Transportmittels besteht darin, Güter ent- lang der verschiedenen Produktions- und Vertriebsprozesse zu transportieren. Trans- port bedeutet, dass ein Gegenstand von einem Ausgangsort abgeholt und zu einem Be- stimmungsort gebracht wird, wo er benötigt wird. Der Transport kann entweder von Menschen oder automatisiert durchgeführt werden. In der Praxis werden bevorzugt von Menschen gesteuerte Techniken, wie Flurfördergeräte, für den Umschlag in ein Trans- portmittel verwendet. Beispiele für Flurfördergeräte sind Handgabelhubwagen, Gabel- stapler und andere. Es gibt verschiedene Kriterien, die bei der Auswahl eines geeigneten Flurfördergeräts eine Rolle spielen, wie die Anzahl der zu transportierenden Einheiten und die Art der Transportgüter. Je nach Gewicht und Größe der Güter wird das passende Flurfördergerät ausgewählt. Durch die Verwendung von Normpaletten als Transportein- heiten können verschiedene Flurfördergeräte eingesetzt werden. Flurfördergeräte kön- nen je nach Antriebsart (z.B. Elektro), Bedienungsart (z.B. Automatik) und Bauart (z.B. Schmalgangstapler) unterschieden werden. Flurfördergeräte können je nach Antriebs- art (z.B. Elektro), Bedienungsart (z.B. Automatik) und Bauart (z.B. Schmalgangstapler) -Metadata: - -=== Element 85 === -Category: Title -Text: unterschieden werden. [10, 3, 5] -Metadata: - -=== Element 86 === -Category: UncategorizedText -Text: 7 -Metadata: diff --git a/document_ingest.py b/document_ingest.py new file mode 100644 index 0000000000000000000000000000000000000000..e74e617496417a3732ac4eb7bb89fec8cf371cfa --- /dev/null +++ b/document_ingest.py @@ -0,0 +1,50 @@ +import argparse +import asyncio +import logging +from typing import Union +from config import Config +from ingestion.file_ingestor import FileIngestor +from ingestion.file_source import FileSource, LocalFileSource + +logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s') +logger = logging.getLogger(__name__) + + +def create_file_source(local_files: Union[str, None]): + file_source: FileSource + if local_files: + logger.info(f"Initializing LocalFileSource with pattern: {local_files}") + file_source = LocalFileSource(path_pattern=local_files) + else: + logger.error("No local_files pattern provided for file ingestion.") + raise ValueError("local_files must be provided.") + return file_source + + +async def main(file_ingestor: FileIngestor, setup_index: bool = True): + # if setup_index: + # await file_ingestor.setup() + await file_ingestor.run() + + +if __name__ == "__main__": + parser = argparse.ArgumentParser( + description="Prepare documents by extracting content from PDFs, splitting content into sections and indexing in a search index." + ) + parser.add_argument("files", nargs="?", help="Files to be processed") + + parser.add_argument("--verbose", "-v", action="store_true", help="Verbose output") + args = parser.parse_args() + + loop = asyncio.new_event_loop() + asyncio.set_event_loop(loop) + + config = Config() + + file_source = create_file_source( + local_files=args.files, + ) + file_ingestor = FileIngestor(config, file_source) + + loop.run_until_complete(main(file_ingestor)) + loop.close() diff --git a/evals/evaluate.py b/evals/evaluate.py index 1bf2f774306e63f2ef05fb0ba4cf18af157f1404..1b86a14d1d1b68fa72883d91994b0a2fcb1104c3 100644 --- a/evals/evaluate.py +++ b/evals/evaluate.py @@ -1,75 +1,75 @@ -import os -import json -import argparse -import logging -from pathlib import Path -import requests -from metrics import exact_match, fuzzy_match, partial_fuzzy_match, jaccard_similarity - -METRIC_FUNCS = { - "exact_match": exact_match, - "fuzzy_match": fuzzy_match, - "partial_fuzzy_match": partial_fuzzy_match, - "jaccard_similarity": jaccard_similarity, -} - -def load_config(config_path): - with open(config_path, "r", encoding="utf-8") as f: - return json.load(f) - -def load_ground_truth(ground_truth_file): - gt = [] - with open(ground_truth_file, "r", encoding="utf-8") as f: - for line in f: - gt.append(json.loads(line)) - return gt - -def ask_chatbot(api_url, question): - try: - response = requests.post(api_url, json={"question": question}) - if response.status_code == 200: - # Sửa nếu response format khác - return response.json().get("answer", "") - else: - return "" - except Exception as e: - return "" - -def evaluate(config): - ground_truths = load_ground_truth(config["ground_truth_file"]) - metrics = config["metrics"] - api_url = config["target_url"] - results_dir = Path(config["results_dir"]) - results_dir.mkdir(parents=True, exist_ok=True) - results_path = results_dir / "results.jsonl" - - # Log - logging.basicConfig(level=logging.INFO) - - # Lưu từng kết quả dòng - with open(results_path, "w", encoding="utf-8") as fout: - for idx, gt in enumerate(ground_truths): - q = gt["question"] - gt_ans = gt["ground_truth"] - pred = ask_chatbot(api_url, q) - result = { - "question": q, - "ground_truth": gt_ans, - "prediction": pred, - } - # Tính các metric - for metric in metrics: - func = METRIC_FUNCS.get(metric) - if func: - result[metric] = func(pred, gt_ans) - fout.write(json.dumps(result, ensure_ascii=False) + "\n") - logging.info(f"Done: {idx+1}/{len(ground_truths)}") - - logging.info(f"Evaluation completed. Results saved to {results_path}") - -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument("--config", type=str, default="evals/evaluate_config.json") - args = parser.parse_args() - config = load_config(args.config) - evaluate(config) +# import os +# import json +# import argparse +# import logging +# from pathlib import Path +# import requests +# from metrics import exact_match, fuzzy_match, partial_fuzzy_match, jaccard_similarity +# +# METRIC_FUNCS = { +# "exact_match": exact_match, +# "fuzzy_match": fuzzy_match, +# "partial_fuzzy_match": partial_fuzzy_match, +# "jaccard_similarity": jaccard_similarity, +# } +# +# def load_config(config_path): +# with open(config_path, "r", encoding="utf-8") as f: +# return json.load(f) +# +# def load_ground_truth(ground_truth_file): +# gt = [] +# with open(ground_truth_file, "r", encoding="utf-8") as f: +# for line in f: +# gt.append(json.loads(line)) +# return gt +# +# def ask_chatbot(api_url, question): +# try: +# response = requests.post(api_url, json={"question": question}) +# if response.status_code == 200: +# # Sửa nếu response format khác +# return response.json().get("answer", "") +# else: +# return "" +# except Exception as e: +# return "" +# +# def evaluate(config): +# ground_truths = load_ground_truth(config["ground_truth_file"]) +# metrics = config["metrics"] +# api_url = config["target_url"] +# results_dir = Path(config["results_dir"]) +# results_dir.mkdir(parents=True, exist_ok=True) +# results_path = results_dir / "results.jsonl" +# +# # Log +# logging.basicConfig(level=logging.INFO) +# +# # Lưu từng kết quả dòng +# with open(results_path, "w", encoding="utf-8") as fout: +# for idx, gt in enumerate(ground_truths): +# q = gt["question"] +# gt_ans = gt["ground_truth"] +# pred = ask_chatbot(api_url, q) +# result = { +# "question": q, +# "ground_truth": gt_ans, +# "prediction": pred, +# } +# # Tính các metric +# for metric in metrics: +# func = METRIC_FUNCS.get(metric) +# if func: +# result[metric] = func(pred, gt_ans) +# fout.write(json.dumps(result, ensure_ascii=False) + "\n") +# logging.info(f"Done: {idx+1}/{len(ground_truths)}") +# +# logging.info(f"Evaluation completed. Results saved to {results_path}") +# +# if __name__ == "__main__": +# parser = argparse.ArgumentParser() +# parser.add_argument("--config", type=str, default="evals/evaluate_config.json") +# args = parser.parse_args() +# config = load_config(args.config) +# evaluate(config) diff --git a/evals/evaluate_runner.py b/evals/evaluate_runner.py index db8373918d5195add93bb583c9b3532cb8a2d16b..b877e2cee0c35c34bc0adffa11afa9378ce8896b 100644 --- a/evals/evaluate_runner.py +++ b/evals/evaluate_runner.py @@ -42,5 +42,4 @@ if __name__ == "__main__": results_dir=args.resultsdir, openai_config=openai_config, model=openai_config["model"], # Lấy model từ config - azure_credential=None, # KHÔNG dùng azure_credential ) diff --git a/evals/evaluation.py b/evals/evaluation.py index 49814525c87380c201e16e8fdae7992cfd8df10d..074880e2de02c7b7fa32af2c49cc6038fb1d05c7 100644 --- a/evals/evaluation.py +++ b/evals/evaluation.py @@ -28,8 +28,8 @@ def send_question_to_target( # "context": parameters, # } body = { - "query": question, - "conversation_history": parameters.get("conversation_history", []) + "messages": [{"role": "user", "content": question}], + **parameters } try: r = requests.post(url, headers=headers, json=body) @@ -48,14 +48,17 @@ def send_question_to_target( try: answer = jmespath.search(response_answer_jmespath, response_dict) data_points = jmespath.search(response_context_jmespath, response_dict) - if isinstance(data_points, dict): + # -- PATCH: nếu answer hoặc data_points là None, thay bằng "" -- + if answer is None: + answer = "" + if data_points is None: + context = "" + elif isinstance(data_points, dict): context = json.dumps(data_points, ensure_ascii=False) elif isinstance(data_points, list): context = "\n\n".join(data_points) - elif data_points is not None: - context = data_points else: - raise ValueError("Context is missing") + context = data_points except Exception: raise ValueError( "Response does not adhere to the expected schema. " @@ -97,7 +100,6 @@ def run_evaluation( target_response_answer_jmespath=None, target_response_context_jmespath=None, model=None, - azure_credential=None, ): logger.info("Running evaluation using data from %s", testdata_path) testdata = load_jsonl(testdata_path) @@ -224,7 +226,6 @@ def run_evaluate_from_config( results_dir=None, openai_config=None, model=None, - azure_credential=None, ): config_path = working_dir / Path(config_path) logger.info("Running evaluation from config %s", config_path) @@ -253,7 +254,6 @@ def run_evaluate_from_config( target_response_answer_jmespath=config.get("target_response_answer_jmespath", "message.content"), target_response_context_jmespath=config.get("target_response_context_jmespath", "context.data_points.text"), model=model or os.environ.get("OPENAI_GPT_MODEL", None), - azure_credential=azure_credential, ) if evaluation_run_complete: diff --git a/evals/ground_truth.jsonl b/evals/ground_truth.jsonl index ba993dfe8effe435b71337b00ca3a1f4988e21c6..4c8b31374a23f61dd22ec28ce7f429d09891e05d 100644 --- a/evals/ground_truth.jsonl +++ b/evals/ground_truth.jsonl @@ -1,10 +1,60 @@ -{"question": "Was ist das Hauptziel der Bachelorarbeit 'Verladegeräusche in Speditionen'?", "truth": "Das Hauptziel der Arbeit ist die Analyse und Bewertung von Verladetätigkeiten in Speditionen mit verschiedenen Flurfördergeräten und Anhängern, um Emissionsdatenblätter zu erstellen, die als Grundlage für Schallimmissionsprognosen dienen können. Außerdem werden mögliche Lärmminderungsmaßnahmen vorgestellt."} -{"question": "Welche Methoden wurden zur Messung und Analyse der Verladegeräusche verwendet?", "truth": "Zur Messung der Verladegeräusche wurde der Schalldruck im Fernfeld gemessen und das Hüllflächen-Verfahren zur Ermittlung der Schallleistung angewendet. Zusätzlich wurde die Richtcharakteristik entlang einer Kreisbahn im Nahfeld analysiert und eine Vergleichsanalyse zwischen simulierten und tatsächlichen Messungen durchgeführt."} -{"question": "Welche Unterschiede wurden zwischen Gabelstapler und Gabelhubwagen bei den Verladegeräuschen festgestellt?", "truth": "Die Beladung mit Gabelstapler und Gabelhubwagen weist ähnliche Schallleistungspegel auf, jedoch gibt es Unterschiede in der Impulshaftigkeit der Geräuschentwicklung. Der Gabelhubwagen erzeugt mehr impulsartige Schallereignisse, während der Gabelstapler eine kontinuierlichere Geräuschabstrahlung aufweist."} -{"question": "Welche Maßnahmen zur Lärmminderung werden in der Arbeit vorgeschlagen?", "truth": "Zu den vorgeschlagenen Maßnahmen zur Lärmminderung zählen die Verwendung von weicheren Oberflächen auf Überladebrücken, Dröhnfolien an deren Unterseite, speziell angepasste Stoßdämpfer in Anhängern sowie organisatorische Maßnahmen auf dem Gelände und das richtige Verhalten des Personals."} -{"question": "Welche Erkenntnisse liefert die Arbeit in Bezug auf Verladegeräusche in verschiedenen Anhängertypen?", "truth": "Die Arbeit zeigt, dass es gewisse Variationen der Schallleistungspegel je nach Flurfördergerät und Anhängertyp gibt, aber keinen signifikanten Unterschied zwischen den Beladevorgängen der Flurfördergeräte in verschiedenen Anhängern. Die Schallabstrahlung erfolgt weitestgehend in alle Richtungen, ohne ausgeprägte Richtcharakteristik."} -{"question": "Was versteht man unter 'Schallimmissionsprognose' laut der Arbeit?", "truth": "Eine Schallimmissionsprognose ist eine Prognose der Schallimmissionen, zum Beispiel von Industrie- und Gewerbelärm, basierend auf messtechnisch ermittelten Schalldruckpegeln. Für die Prognose werden schalltechnische Eingangsdaten benötigt, die für Simulationen verwendet werden."} -{"question": "Welche Aufgaben übernehmen Logistikunternehmen im Zusammenhang mit dem Güterfluss?", "truth": "Logistikunternehmen, auch Speditionen genannt, sind verantwortlich für den Güterfluss sowie die Planung, Steuerung und Kontrolle aller damit verbundenen Prozesse. Sie kümmern sich um Menge, Art und Handhabungseigenschaften der Güter und organisieren deren Transport, Umschlag und Lagerung."} -{"question": "Welche Arten von Flurfördergeräten werden im Text genannt?", "truth": "Im Text werden unter anderem Handgabelhubwagen und Gabelstapler als Beispiele für Flurfördergeräte genannt. Es gibt verschiedene Arten, die sich in Antriebsart, Bedienungsart und Bauart unterscheiden können."} -{"question": "Welche Bedeutung hat die Logistikkette laut Arbeit?", "truth": "Die Logistikkette ist ein zentraler Bestandteil der Logistik. Sie beschreibt den Ablauf von der Güterbereitstellung über die Verwendung bis zur Verteilung und Zwischenlagerung der Güter. Unternehmen sind durch die Logistikkette miteinander verbunden, um den Austausch von Gütern zu ermöglichen."} -{"question": "Worin besteht der Unterschied zwischen in der Arbeit genannten Emissionsdatenblättern und bisherigen Veröffentlichungen?", "truth": "Die in der Arbeit erstellten Emissionsdatenblätter bieten eine Grundlage für präzisere Schallimmissionsprognosen, insbesondere für verschiedene Flurfördergeräte und Anhängertypen. Bisherige Veröffentlichungen konzentrierten sich hauptsächlich auf Verbrauchermärkte und Verladungen mit Handhubwagen, was nur einen Teil der tatsächlichen Verladetätigkeiten abdeckt."} +{ + "question": "Welche Unterschiede im Stromverbrauch gibt es zwischen den Quartieren 'Hospitalhof' und 'Im Buchwald'?", + "truth": "Ein wesentlicher Unterschied liegt im Stromverbrauch durch das untertägige Laden von BEVs durch externe Besucher im Quartier 'Hospitalhof'. Während im Quartier 'Im Buchwald' die BEVs der Bewohner nur bei der Entladung berücksichtigt werden, werden im Quartier 'Hospitalhof' auch zwischen 0 Uhr und 17 Uhr weiterhin BEVs geladen. Verstärkt wird der Effekt durch den höheren Anteil an Elektroautos und den geringeren Anteil an mit PV-Anlagen belegten Dächern im Quartier 'Hospitalhof'." +} +{ + "question": "Warum ist das Gleichgewicht zwischen Stromerzeugung und Stromverbrauch im deutschen Stromnetz so wichtig und wie wird es sichergestellt?", + "truth": "Strom kann im benötigten Maßstab für das deutsche Stromnetz nicht gespeichert werden, daher muss zu jedem Zeitpunkt ein Gleichgewicht zwischen Erzeugung und Verbrauch herrschen. Ein Indikator dafür ist die Netzfrequenz, die in Deutschland bei 50 Hz liegt und nur um ±0,05 Hz abweichen darf. Für die Sicherstellung werden verschiedene Arten von Regelenergie bereitgehalten. Die Primärregelleistung steht innerhalb von 15 bis 30 Sekunden für bis zu 15 Minuten zur Verfügung und wird vor allem von großen Atom- oder Kohlekraftwerken bereitgestellt, die einen Teil ihrer Kapazität zurückhalten. Da immer mehr dieser Kraftwerke abgeschaltet werden, müssen die Übertragungsnetzbetreiber in Zukunft alternative Quellen für die Primärregelleistung finden." +} +{ + "question": "Warum sollten Kopfhörer nicht für die Wiedergabe von überwiegend tieffrequenten Geräuschen verwendet werden?", + "truth": "Weil Kopfhörer im Frequenzgang, insbesondere unter 63 Hz, eingeschränkt sind und tieffrequente Geräusche nicht optimal wiedergeben können." +} +{ + "question": "Was ist Multitasking?", + "truth": "Multitasking bedeutet, dass mehrere getrennte Aufgaben parallel bearbeitet werden und dabei um begrenzte Aufmerksamkeitsressourcen konkurrieren." +} +{ + "question": "Welchen Einfluss hatte die Parklet-Intervention auf die Akzeptanz der Reduzierung des ruhenden Autoverkehrs?", + "truth": "Die Parklet-Intervention hatte einen signifikant positiven Einfluss auf die Akzeptanz der Reduzierung des ruhenden Autoverkehrs. Die Akzeptanz stieg nach der Intervention von M=4.01 auf M=4.15 (auf einer Skala von 1 bis 5, p=.039)." +} +{ + "question": "Wie wurden die Innenpegel im Vergleich zu den Außenpegeln bei der Messsituation an der HFT Stuttgart ermittelt?", + "truth": "Die Innenpegel wurden mithilfe eines Lärmsensors im Innenraum eines Büros der HFT Stuttgart gemessen, während zeitgleich ein zweiter Sensor außen vor dem Fenster installiert war. So konnten die Innen- und Außenpegel direkt miteinander verglichen und spektrale Unterschiede analysiert werden." +} +{ + "question": "Was ist der Hauptvorteil von CityGML gegenüber anderen Geodatenformaten wie Shapefile und GeoJSON im Kontext von Urban Building Energy Modelling (UBEM)?", + "truth": "CityGML kann neben der Geometrie auch semantische und topologische Informationen des urbanen Gebäudebestands speichern, was Shapefiles und GeoJSON nicht können. Dadurch eignet sich CityGML besser als standardisierte Eingabe für UBEM, da diese Informationen für präzise Energiemodellierung notwendig sind." +} +{ + "question": "Welche Hauptaufgabe verfolgt das OGC Testbed-18 Innovation Programme im Kontext dieser Arbeit?", + "truth": "Das Hauptziel besteht darin, die Machbarkeit der Kombination von Energie- und Geodaten in einem einzigen Modell zu untersuchen, das OGC Web API Standards entspricht und für Analyse, Simulation und Visualisierung genutzt werden kann." +} +{ + "question": "Welche zentrale Rolle spielen Bürgerinnen und Bürger bei der Umsetzung von Positive Energy Districts (PEDs)?", + "truth": "Bürgerinnen und Bürger spielen eine entscheidende Rolle, da der Erfolg von PEDs nicht nur von technologischen Fortschritten, sondern auch von sozialem, politischem und wirtschaftlichem Engagement abhängt. Ihre aktive Beteiligung in Planung und Umsetzung ist notwendig, um nachhaltige und resiliente Energiesysteme zu schaffen." +} +{ + "question": "Welches Ziel verfolgt das DigiTwins4PEDs-Projekt bei der Transformation zu Positive Energy Districts?", + "truth": "Das Projekt verfolgt das Ziel, durch innovative Beteiligungsprozesse und den Einsatz von Urban Digital Twins die lokale Bevölkerung zu befähigen, an der Energiewende ihrer Stadtviertel mitzuwirken und gemeinsam mit Stadtverwaltungen Energie-Flexibilisierungsstrategien zu entwickeln." +} +{ + "question": "Welche zentralen Faktoren beeinflussen laut dem Urban Digital Twin Framework den CO₂-Fußabdruck von Haushalten in urbanen Quartieren?", + "truth": "Die zentralen Faktoren sind Gebäude (insbesondere die Einstellung der Raumtemperatur), Ernährung (z.B. Ernährungsgewohnheiten und Lebensmittelabfälle) und Mobilität (Verkehrsmittelwahl und Fahrverhalten). Das Framework analysiert, wie Veränderungen in diesen Bereichen die Emissionen eines Quartiers beeinflussen." +} +{ + "question": "What is the role of urban digital twins in sustainable urban development?", + "truth": "Urban digital twins replicate both the physical and dynamic aspects of built environments in a virtual space, enabling holistic identification and prioritization of sustainability opportunities and challenges. They support data-driven workflows for predicting future urban processes, facilitate collaborative decision-making, and are used to monitor and analyze urban sprawl, carbon emissions, and progress towards sustainability goals." +} +{ + "question": "Welche Auswirkungen hat eine niedrige Bebauungsdichte auf das Ökosystem und die Wohnraumkrise?", + "truth": "Eine niedrige Bebauungsdichte benötigt mehr Fläche, was zu Urban Sprawl führt und dadurch erhebliche negative Auswirkungen auf die heimische Pflanzen- und Tierwelt hat. Gleichzeitig verschärft sie langfristig die Wohnraumkrise, da sie weniger Menschen auf derselben Fläche unterbringt." +} +{ + "question": "Welche Rolle spielt das ALKIS-Datensystem in der vorliegenden Studie?", + "truth": "ALKIS dient als Hauptquelle für amtliche und katasterbezogene 2D-Daten wie Straßennamen, Hausnummern und ALKIS-IDs. Es wird sowohl zur Datenerfassung im Feld mit QField als auch zur Sicherstellung der Genauigkeit und Zuverlässigkeit der analysierten Daten verwendet." +} +{ + "question": "Welche Vorteile bietet die Nutzung des Django-Frameworks bei der Entwicklung der Datenbank für das Energie-Plugin?", + "truth": "Die Nutzung des Django-Frameworks ermöglicht es, Datenbankmodelle als Python-Klassen zu definieren, wodurch sich wiederholende Änderungen an SQL-Code vermieden werden. Außerdem erlaubt die Strukturierung in separate Apps und Tabellen eine effiziente Speicherung und schnelle Abfragen, beispielsweise nach bestimmten Gebäude- oder Materialtypen." +} \ No newline at end of file diff --git a/ingest_rag_data.py b/ingest_rag_data.py deleted file mode 100644 index 571f72b7005a2b8cbb0c870e7f4fefb226fc50a6..0000000000000000000000000000000000000000 --- a/ingest_rag_data.py +++ /dev/null @@ -1,47 +0,0 @@ -import warnings -warnings.filterwarnings('ignore') -import logging -import json -from pathlib import Path -import sys - -logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s') - -sys.path.append(str(Path(__file__).parent.parent)) - -from agents.rag_agent import ResearchAssistantRAG -from config import Config - -import argparse - -parser = argparse.ArgumentParser(description="Process some command-line arguments.") - -parser.add_argument("--file", type=str, required=False, help="Enter file path to ingest") -parser.add_argument("--dir", type=str, required=False, help="Enter directory path of files to ingest") - -args = parser.parse_args() - -config = Config() - -rag = ResearchAssistantRAG(config) - -def data_ingestion(): - if args.file: - file_path = args.file - result = rag.ingest_file(file_path) - elif args.dir: - dir_path = args.dir - result = rag.ingest_directory(dir_path) - - print("Ingestion result:", json.dumps(result, indent=2)) - - return result["success"] - -if __name__ == "__main__": - - print("\nIngesting document(s)...") - - ingestion_success = data_ingestion() - - if ingestion_success: - print("\nSuccessfully ingested the documents.") \ No newline at end of file diff --git a/agents/rag_agent/data_ingestion.py b/ingestion/__init__.py similarity index 100% rename from agents/rag_agent/data_ingestion.py rename to ingestion/__init__.py diff --git a/ingestion/file_ingestor.py b/ingestion/file_ingestor.py new file mode 100644 index 0000000000000000000000000000000000000000..341af69fa129d10d257d56a04b5e856caf498541 --- /dev/null +++ b/ingestion/file_ingestor.py @@ -0,0 +1,78 @@ +import logging +from pathlib import Path +from typing import List + +from rag.document_chunker import DocumentChunker +from rag.document_parser import DocumentParser +from rag.vectorstore import VectorStore + + +class FileIngestor: + + def __init__(self, config, file_source): + self.config = config + self.logger = logging.getLogger(__name__) + self.file_source = file_source + self.document_parser = DocumentParser() + self.document_chunker = DocumentChunker(config.file_ingestor) + self.vector_store = VectorStore(config.file_ingestor) + self.parsed_content_dir = self.config.file_ingestor.parsed_content_dir + + async def run(self): + files = self.file_source.list() + async for file in files: + try: + filename = file.filename() + filepath = file.path + file_ext = file.file_extension() + + self.logger.info(f"Ingesting file: {filename} (ext: {file_ext}, path: {filepath})") + + # Step 1: Parse document + self.logger.info("Parsing document and extracting images...") + parsed_document, images = self.document_parser.parse_document( + filepath, self.parsed_content_dir + ) + self.logger.info(f"Parsed document and extracted {len(images)} images") + + # Step 2: Summarize images + self.logger.info("Summarizing images...") + image_summaries = self.document_chunker.summarize_images(images) + self.logger.info(f"Generated {len(image_summaries)} image summaries") + + # Step 3: Format document with image summaries + self.logger.info("Formatting document with image summaries...") + formatted_document = self.document_chunker.format_document_with_images(parsed_document, + image_summaries) + + # Save parsed_document to data/formatted_documents + parsed_dir = Path("data/formatted_documents") + parsed_dir.mkdir(exist_ok=True, parents=True) + parsed_path = parsed_dir / (Path(filepath).stem + "_parsed.json") + with open(parsed_path, "w", encoding="utf-8") as f: + import json + json.dump(formatted_document, f, ensure_ascii=False, indent=2, default=str) + + # Step 4: Chunk document into semantic sections + self.logger.info("Chunking document into semantic sections...") + document_chunks: List[str] = self.document_chunker.chunk_document(formatted_document) + self.logger.info(f"Document split into {len(document_chunks)} chunks") + + ### Only for debugging + with open("document_chunks.json", "w", encoding="utf-8") as f: + json.dump(document_chunks, f, ensure_ascii=False, indent=2) + ### + + # Step 5: Create vector store and document store + self.logger.info("Creating vector store knowledge base...") + self.vector_store.create_vectorstore( + document_chunks=document_chunks, + document_path=filepath + ) + self.logger.info(f"Ingested file successfully: {filename}") + + except Exception as e: + self.logger.error(f"Error ingesting file {file.filename()}: {e}") + finally: + if file: + file.close() diff --git a/ingestion/file_source.py b/ingestion/file_source.py new file mode 100644 index 0000000000000000000000000000000000000000..bc9b931d54ecfdca3c9eec69eb6fddd0d4ffd40f --- /dev/null +++ b/ingestion/file_source.py @@ -0,0 +1,103 @@ +import base64 +import hashlib +import logging +import os +import re +import tempfile +from abc import ABC +from collections.abc import AsyncGenerator +from glob import glob +from typing import IO, Optional, Union + +logger = logging.getLogger(__name__) + + +class File: + + def __init__(self, file_obj: IO, acls: Optional[dict[str, list]] = None, url: Optional[str] = None): + self.file_obj = file_obj + self.acls = acls or {} + self.url = url + + def filename(self): + return os.path.basename(self.file_obj.name) + + def file_extension(self): + return os.path.splitext(self.file_obj.name)[1] + + @property + def path(self): + if hasattr(self.file_obj, "name"): + return self.file_obj.name + return self.url + + def filename_to_id(self): + filename_ascii = re.sub("[^0-9a-zA-Z_-]", "_", self.filename()) + filename_hash = base64.b16encode(self.filename().encode("utf-8")).decode("ascii") + acls_hash = "" + if self.acls: + acls_hash = base64.b16encode(str(self.acls).encode("utf-8")).decode("ascii") + return f"file-{filename_ascii}-{filename_hash}{acls_hash}" + + def close(self): + if self.file_obj: + self.file_obj.close() + + +class FileSource(ABC): + async def list(self) -> AsyncGenerator[File, None]: + if False: # pragma: no cover - this is necessary for mypy to type check + yield + + async def list_paths(self) -> AsyncGenerator[str, None]: + if False: # pragma: no cover - this is necessary for mypy to type check + yield + + +class LocalFileSource(FileSource): + + def __init__(self, path_pattern: str): + self.path_pattern = path_pattern + # pattern của file/folder cần lấy (ví dụ: "./data/*.pdf", "./docs/**/*") + + async def list_paths(self) -> AsyncGenerator[str, None]: + async for p in self._list_paths(self.path_pattern): + yield p + + async def _list_paths(self, path_pattern: str) -> AsyncGenerator[str, None]: + for path in glob(path_pattern): + if os.path.isdir(path): + async for p in self._list_paths(f"{path}/*"): + yield p + else: + # Only list files, not directories + yield path + + async def list(self) -> AsyncGenerator[File, None]: + async for path in self.list_paths(): + if not self.check_md5(path): + yield File(file_obj=open(path, mode="rb")) + + def check_md5(self, path: str) -> bool: + # if filename ends in .md5 skip + if path.endswith(".md5"): + return True + + # if there is a file called .md5 in this directory, see if its updated + stored_hash = None + with open(path, "rb") as file: + existing_hash = hashlib.md5(file.read()).hexdigest() + hash_path = f"{path}.md5" + if os.path.exists(hash_path): + with open(hash_path, encoding="utf-8") as md5_f: + stored_hash = md5_f.read() + + if stored_hash and stored_hash.strip() == existing_hash.strip(): + logger.info("Skipping %s, no changes detected.", path) + return True + + # Write the hash + with open(hash_path, "w", encoding="utf-8") as md5_f: + md5_f.write(existing_hash) + + return False diff --git a/rag/__init__.py b/rag/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..ca344231963164c299f067753ab6c1d9179c3533 --- /dev/null +++ b/rag/__init__.py @@ -0,0 +1,204 @@ +# import logging +# import time +# from typing import List, Dict, Any, Optional +# import uuid +# from pathlib import Path +# import json +# +# from .document_chunker import DocumentChunker +# from .document_parser import DocParser +# # from .query_expander import QueryExpander +# from .reranker import Reranker +# from .response_generator import ResponseGenerator +# from .query_rewriter import QueryRewriter +# from .vectorstore import VectorStore +# +# class ResearchAssistantRAG: +# +# def __init__(self, config): +# self.config = config +# # self._initialize() +# self.logger = logging.getLogger(f"{self.__module__}") +# self.logger.info("Initializing Research Assistant RAG system") +# self.doc_parser = DocParser() +# self.document_chunker = DocumentChunker(config) +# self.parsed_content_dir = self.config.rag.parsed_content_dir +# self.vector_store = VectorStore(config) +# self.reranker = Reranker(config) +# self.response_generator = ResponseGenerator(config) +# +# +# def ingest_file(self, document_path: str) -> Dict[str, Any]: +# """ +# Ingest a single file into the RAG system. +# +# Args: +# document_path: Path to the file to ingest +# +# Returns: +# Dictionary with ingestion results +# """ +# start_time = time.time() +# self.logger.info(f"Ingesting file: {document_path}") +# +# try: +# # Step 1: Parse document +# self.logger.info("1. Parsing document and extracting images...") +# parsed_document, images = self.doc_parser.parse_document(document_path, self.parsed_content_dir) +# self.logger.info(f" Parsed document and extracted {len(images)} images") +# +# # parsed_dir = Path("data/parsed") +# # parsed_dir.mkdir(exist_ok=True, parents=True) +# # parsed_path = parsed_dir / (Path(document_path).stem + "_parsedfirst.json") +# # +# # with open(parsed_path, "w", encoding="utf-8") as f: +# # import json +# # json.dump(parsed_document, f, ensure_ascii=False, indent=2, default=str) +# +# # Step 2: Summarize images +# self.logger.info("2. Summarizing images...") +# image_summaries = self.document_chunker.summarize_images(images) +# self.logger.info(f" Generated {len(image_summaries)} image summaries") +# +# # Step 3: Format document with image summaries +# self.logger.info("3. Formatting document with image summaries...") +# formatted_document = format_document_with_images(parsed_document, image_summaries) +# +# # Save parsed_document to data/parsed +# parsed_dir = Path("data/parsed") +# parsed_dir.mkdir(exist_ok=True, parents=True) +# parsed_path = parsed_dir / (Path(document_path).stem + "_parsed.json") +# with open(parsed_path, "w", encoding="utf-8") as f: +# import json +# json.dump(formatted_document, f, ensure_ascii=False, indent=2, default=str) +# +# # Step 4: Chunk document into semantic sections +# self.logger.info("4. Chunking document into semantic sections...") +# document_chunks: List[str] = self.document_chunker.chunk_document(formatted_document) +# self.logger.info(f" Document split into {len(document_chunks)} chunks") +# +# with open("document_chunks.json", "w", encoding="utf-8") as f: +# json.dump(document_chunks, f, ensure_ascii=False, indent=2) +# +# # Step 5: Create vector store and document store +# self.logger.info("5. Creating vector store knowledge base...") +# self.vector_store.create_vectorstore( +# document_chunks=document_chunks, +# document_path=document_path +# ) +# +# return { +# "success": True, +# "documents_ingested": 1, +# "chunks_processed": len(document_chunks), +# "processing_time": time.time() - start_time +# } +# +# except Exception as e: +# self.logger.error(f"Error ingesting file: {e}") +# return { +# "success": False, +# "error": str(e), +# "processing_time": time.time() - start_time +# } +# +# +# def process_query(self, query: str, chat_history: Optional[List[Dict[str, str]]] = None) -> Dict[str, Any]: +# """ +# Process a query with the RAG system. +# +# Args: +# query: The query string +# chat_history: Optional chat history for context +# +# Returns: +# Response dictionary +# """ +# start_time = time.time() +# self.logger.info(f"RAG Agent processing query: {query}") +# +# # Process query and return result, passing chat_history +# try: +# # Step 1: Expand query - REWRITE QUERY +# # self.logger.info(f"1. Expanding query: '{query}'") +# # expansion_result = self.query_expander.expand_query(query) +# # expanded_query = expansion_result["expanded_query"] +# # self.logger.info(f" Original: '{query}'") +# # self.logger.info(f" Expanded: '{expanded_query}'") +# # query = expanded_query +# +# # Step 2: Retrieval +# self.logger.info(f"2. Retrieving relevant documents for the query: '{query}'") +# vectorstore, docstore = self.vector_store.load_vectorstore() +# retrieved_documents = self.vector_store.retrieve_relevant_chunks( +# query=query, +# vectorstore=vectorstore, +# docstore=docstore, +# ) +# +# self.logger.info(f" Retrieved {len(retrieved_documents)} relevant document chunks") +# print(f"type of retrieved_documents = {type(retrieved_documents)}") +# print(f"retrieved_documents = {retrieved_documents}") +# +# # Step 3: Rerank the retrieved documents if we have a reranker and enough documents +# self.logger.info(f"3. Reranking the retrieved documents") +# if self.reranker and len(retrieved_documents) > 1: +# # reranked_documents, reranked_top_k_picture_paths = self.reranker.rerank(query, retrieved_documents, +# # self.parsed_content_dir) +# reranked_documents = self.reranker.rerank(query, retrieved_documents, self.parsed_content_dir) +# self.logger.info(f" Reranked retrieved documents and chose top {len(reranked_documents)}") +# # self.logger.info(f" Found {len(reranked_top_k_picture_paths)} referenced images") +# else: +# self.logger.info(f" Could not rerank the retrieved documents, falling back to original scores") +# reranked_documents = retrieved_documents +# reranked_top_k_picture_paths = [] +# +# # Step 4: Generate response +# self.logger.info("4. Generating response...") +# response = self.response_generator.generate_response( +# query=query, +# retrieved_docs=reranked_documents, +# # picture_paths=reranked_top_k_picture_paths, +# chat_history=chat_history +# ) +# +# print(f"type(reranked_documents) = {type(reranked_documents)}") +# print(f"reranked_documents = {reranked_documents}") +# +# # Add timing information +# processing_time = time.time() - start_time +# response["processing_time"] = processing_time +# +# response["chunks"] = [doc["content"] for doc in reranked_documents] +# +# return response +# +# except Exception as e: +# self.logger.error(f"Error processing query: {e}") +# import traceback +# self.logger.error(traceback.format_exc()) +# # Return error response +# return { +# "response": f"I encountered an error while processing your query: {str(e)}", +# "sources": [], +# "confidence": 0.0, +# "processing_time": time.time() - start_time +# } +# +# +# def _ensure_json_serializable(self, obj): +# if isinstance(obj, dict): +# return {k: self._ensure_json_serializable(v) for k, v in obj.items()} +# elif isinstance(obj, list): +# return [self._ensure_json_serializable(item) for item in obj] +# elif isinstance(obj, (str, int, float, bool, type(None))): +# return obj +# else: +# return str(obj) +# +# +# def ingest_directory(self, directory_path: str, file_extension: Optional[str] = None) -> Dict[str, Any]: +# pass +# +# +# diff --git a/rag/base_retrieval.py b/rag/base_retrieval.py new file mode 100644 index 0000000000000000000000000000000000000000..20af1a168e9f5b882cc5a62ec0ad899e0cd54b73 --- /dev/null +++ b/rag/base_retrieval.py @@ -0,0 +1,14 @@ +from abc import ABC, abstractmethod +from typing import List, Dict, Any, Optional +from data_types import ChatMessage + + +class BaseRetrieval(ABC): + @abstractmethod + def run( + self, + messages: List[ChatMessage], + session_state: Optional[str] = None + # context: Dict[str, Any] = None, + ) -> Dict[str, Any]: + pass diff --git a/agents/rag_agent/buffer_memory.py b/rag/buffer_memory.py similarity index 100% rename from agents/rag_agent/buffer_memory.py rename to rag/buffer_memory.py diff --git a/rag/embedding_factory.py b/rag/embedding_factory.py new file mode 100644 index 0000000000000000000000000000000000000000..6a6468c7fcac3a17e2a7c5eb0a51a6b1d95055ed --- /dev/null +++ b/rag/embedding_factory.py @@ -0,0 +1,66 @@ +from dataclasses import dataclass +from typing import Literal +from langchain_core.embeddings import Embeddings +from langchain_openai import OpenAIEmbeddings +from langchain_community.embeddings import HuggingFaceEmbeddings +try: + from local_embedding_model import LocalEmbeddingModel +except ImportError: + LocalEmbeddingModel = None + +@dataclass +class EmbeddingModelInfo: + model: Embeddings + dimension: int + provider: Literal["openai", "huggingface", "local"] + model_name: str + +class EmbeddingModelFactory: + """Factory to create embedding models from various providers (OpenAI, HuggingFace, Local).""" + @staticmethod + def create(config) -> EmbeddingModelInfo: + print(f"type(config) in create instance of EmbeddingModelFactory: {type(config)}") + + # Todo: Check that config has the expected attributes + # if not hasattr(config, 'rag'): + # raise ValueError("Config object must have a 'rag' attribute with embedding settings.") + # if not hasattr(config.rag, 'embedding_provider'): + # raise ValueError("Config is missing 'rag.embedding_provider' setting.") + + model_instance = None + provider = config.embedding_provider.lower() + model_name = config.embedding_model_name + dimension = config.embedding_dim + # provider = getattr(config, "embedding_provider", "openai").lower() + # model_name = getattr(config, "embedding_model_name", "text-embedding-ada-002") + # dimension = getattr(config, "embedding_dim", 1536) + + if provider == "openai": + api_key = config.openai_api_key + if not api_key: + raise ValueError("Missing OpenAI API Key.") + model_instance = OpenAIEmbeddings(model=model_name, api_key=api_key) + + elif provider == "huggingface": + model_instance = HuggingFaceEmbeddings( + model_name=model_name, + model_kwargs={"use_auth_token": getattr(config, "huggingface_api_token", None)} + ) + elif provider == "local": + if LocalEmbeddingModel is None: + raise ImportError("LocalEmbeddingModel class is not found. Make sure it's defined and importable.") + model_instance = LocalEmbeddingModel(getattr(config, "local_model_path", model_name)) + else: + raise ValueError(f"Unsupported embedding provider: {provider}") + + # Create and return the EmbeddingModelInfo dataclass + return EmbeddingModelInfo( + model=model_instance, + dimension=dimension, + provider=provider, + model_name=model_name + ) + +# config = ... +# embedding_info = EmbeddingModelFactory.create(config) +# print(f"Embedding dimension: {embedding_info.dimension}") diff --git a/rag/hybrid_retrieval.py b/rag/hybrid_retrieval.py new file mode 100644 index 0000000000000000000000000000000000000000..a80951a8e5f6a58ccee22e0852ae3e687e55647e --- /dev/null +++ b/rag/hybrid_retrieval.py @@ -0,0 +1,86 @@ +from collections.abc import Awaitable +import time +import logging +from typing import List, Dict, Any, Optional, Tuple +from rag.document_parser import DocumentParser +from rag.reranker import Reranker +from rag.response_generator import ResponseGenerator +from rag.vectorstore import VectorStore +from data_types import ChatMessage, ExtraInfo, DataPoints, SearchDocument +from rag.base_retrieval import BaseRetrieval + + +class HybridRetrieval(BaseRetrieval): + + def __init__(self, config): + self.config = config + self.logger = logging.getLogger(f"{self.__module__}") + self.vector_store = VectorStore(config.rag) + self.document_parser = DocumentParser() + self.parsed_content_dir = self.config.rag.parsed_content_dir + self.reranker = Reranker(config) + self.response_generator = ResponseGenerator(config) + + async def run( + self, + messages: List[ChatMessage], + session_state: Optional[str] = None, + # context: Dict[str, Any] = None, + ) -> Dict[str, Any]: + # auth_claims = context.get("auth_claims", {}) + return await self.run_without_streaming(messages, session_state) + + async def run_without_streaming(self, messages, session_state=None) -> Dict[str, Any]: + extra_info, llm_coroutine = await self.run_until_final_call(messages) + llm_response = await llm_coroutine + content = llm_response["response"] + + chat_app_response = { + "message": {"content": content, "role": "assistant"}, + "context": extra_info, + "session_state": session_state, + } + return chat_app_response + + async def run_until_final_call( + self, + messages: List[Dict[str, str]], + # auth_claims: Dict[str, Any], + ) -> Tuple[ExtraInfo, Awaitable[Dict[str, Any]]]: + extra_info = await self.run_search_approach(messages) + + llm_coroutine = self.response_generator.generate_response(messages, extra_info) + + return extra_info, llm_coroutine + + async def run_search_approach( + self, + messages: List[Dict[str, str]], + # auth_claims: Dict[str, Any] + ) -> ExtraInfo: + original_user_query = messages[-1]["content"] + if not isinstance(original_user_query, str): + raise ValueError("The most recent message content must be a string.") + + vectorstore, docstore = self.vector_store.load_vectorstore() + retrieved_documents: list[SearchDocument] = self.vector_store.retrieve_relevant_chunks( + query=original_user_query, + vectorstore=vectorstore, + document_db=docstore, + ) + self.logger.info(f" Retrieved {len(retrieved_documents)} relevant document chunks") + + self.logger.info(f"3. Reranking the retrieved documents") + reranked_documents: list[SearchDocument] + if self.reranker and len(retrieved_documents) > 1: + reranked_documents = self.reranker.rerank(original_user_query, retrieved_documents, self.parsed_content_dir) + else: + self.logger.info(f" Could not rerank the retrieved documents, falling back to original scores") + reranked_documents = retrieved_documents + + # text_sources chính là mảng các chunks (dưới dạng text) + text_sources = [document.content for document in reranked_documents] + + extra_info = ExtraInfo(data_points=DataPoints(text=text_sources)) + + return extra_info diff --git a/agents/rag_agent/local_embedding_model.py b/rag/local_embedding_model.py similarity index 100% rename from agents/rag_agent/local_embedding_model.py rename to rag/local_embedding_model.py diff --git a/rag/logger.py b/rag/logger.py new file mode 100644 index 0000000000000000000000000000000000000000..e8bde36b9577f2535f32c4896d9697c38db8b70d --- /dev/null +++ b/rag/logger.py @@ -0,0 +1,12 @@ +import logging +import sys + +def get_logger(name: str = "app"): + logger = logging.getLogger(name) + if not logger.hasHandlers(): + handler = logging.StreamHandler(sys.stdout) + formatter = logging.Formatter('%(asctime)s | %(name)s | %(levelname)s | %(message)s') + handler.setFormatter(formatter) + logger.addHandler(handler) + logger.setLevel(logging.INFO) + return logger \ No newline at end of file diff --git a/agents/message_filter.py b/rag/message_filter.py similarity index 100% rename from agents/message_filter.py rename to rag/message_filter.py diff --git a/agents/rag_agent/document_processor.py b/rag/multi_query_generator.py similarity index 100% rename from agents/rag_agent/document_processor.py rename to rag/multi_query_generator.py diff --git a/rag/query_expander.py b/rag/query_expander.py new file mode 100644 index 0000000000000000000000000000000000000000..95201332ef142d04f3dd582ed839fc449659fed5 --- /dev/null +++ b/rag/query_expander.py @@ -0,0 +1,71 @@ +# import logging +# from typing import List, Dict, Any +# +# class QueryExpander: +# def __init__(self, config): +# self.logger = logging.getLogger(f"{self.__module__}") +# self.config = config +# self.model = config.rag.llm +# +# def expand_query(self, original_query: str) -> Dict[str, Any]: +# """ +# Expand the original query with relevant academic and scientific terms. +# +# Args: +# original_query: The user's original query +# +# Returns: +# Dictionary with original and expanded queries +# """ +# self.logger.info(f"Expanding query: {original_query}") +# +# # Generate expansions +# # Step 1: expand the query using synonyms and related terms (using a predefined thesaurus or external source) +# expanded_query = self._expand_with_synonyms_and_related_terms(original_query) +# +# # Step 2: use llm to expand query semantically +# expanded_query = self._expand_with_semantics(expanded_query) +# +# return { +# "original_query": original_query, +# "expanded_query": expanded_query +# } +# +# def _expand_with_synonyms_and_related_terms(self, query: str) -> str: +# """Expand the query by adding synonyms and related terms using a predefined thesaurus or domain knowledge.""" +# +# # Define a dictionary for basic synonyms/related terms (this can be expanded based on your domain) +# synonym_dict = { +# "artificial intelligence": ["machine learning", "deep learning", "neural networks", "AI"], +# "data science": ["big data", "data analysis", "machine learning", "data mining"], +# } +# +# expanded_query = query.lower() # Convert to lowercase for matching +# +# # Expand using synonyms from the dictionary +# for key, synonyms in synonym_dict.items(): +# if key.lower() in expanded_query: +# expanded_query += " OR " + " OR ".join(synonyms) +# +# self.logger.info(f"Expanded query after synonym addition: {expanded_query}") +# +# # return expanded_query +# ### For now: do nothing and return original query +# return query +# +# def _expand_with_semantics(self, query: str) -> str: +# """Use LLM to expand query with academic and scientific terminology.""" +# prompt = f""" +# As a research assistant, expand the following query with relevant scientific terminology, +# synonyms, related concepts, and keywords that would help in retrieving relevant academic papers and research articles: +# +# User Query: {query} +# +# Expand the query only if you feel like it is required, otherwise keep the user query intact. +# Be specific to the field of study mentioned, do not add other irrelevant domains. +# If the user query asks about answering in tabular format, include that in the expanded query and do not answer in tabular format yourself. +# Provide only the expanded query without explanations. +# """ +# expansion = self.model.invoke(prompt) +# +# return expansion \ No newline at end of file diff --git a/agents/rag_agent/query_rewriter.py b/rag/query_rewriter.py similarity index 100% rename from agents/rag_agent/query_rewriter.py rename to rag/query_rewriter.py diff --git a/rag/response_generator.py b/rag/response_generator.py new file mode 100644 index 0000000000000000000000000000000000000000..a8ec1635be5f20e52ef776722d4b4ca457fc65f8 --- /dev/null +++ b/rag/response_generator.py @@ -0,0 +1,103 @@ +import logging +from typing import List, Dict, Any, Optional +from data_types import ExtraInfo + + +class ResponseGenerator: + + def __init__(self, config): + self.logger = logging.getLogger(__name__) + self.llm = config.rag.llm + # self.max_context_length = config.rag.max_context_length #unused + self.include_sources = getattr(config.rag, "include_sources", True) + + def _build_prompt( + self, + query: str, + context: str, + messages: Optional[List[Dict[str, str]]] = None + ) -> str: + table_instructions = """ + Einige der abgerufenen Informationen werden in Tabellenform präsentiert. Beim Verwenden von Informationen aus Tabellen: + 1. Stelle tabellarische Daten mit korrekter Markdown-Tabellenformatierung und Kopfzeilen dar, zum Beispiel: + | Spalte1 | Spalte2 | Spalte3 | + |---------|---------|---------| + | Wert1 | Wert2 | Wert3 | + 2. Formatiere die Tabellenstruktur so um, dass sie leichter zu lesen und zu verstehen ist. + 3. Wenn beim Umformatieren der Tabelle eine neue Komponente hinzugefügt wird, erwähne dies ausdrücklich. + 4. Interpretiere die tabellarischen Daten in deiner Antwort klar und verständlich. + 5. Beziehe dich beim Präsentieren spezifischer Datenpunkte auf die jeweilige Tabelle. + 6. Fasse, wenn sinnvoll, Trends oder Muster aus den Tabellen zusammen. + 7. Falls nur Referenznummern genannt werden und du dazugehörige Werte wie den Titel einer wissenschaftlichen Arbeit oder Autoren aus dem Kontext holen kannst, ersetze die Referenznummern durch die tatsächlichen Werte. + """ + + response_format_instructions = """Anweisungen: + 1. Beantworte die Frage ausschließlich auf Basis der im Kontext bereitgestellten Informationen. + 2. Falls der Kontext keine relevanten Informationen zur Beantwortung der Frage enthält, sage: "Ich habe nicht genügend Informationen, um diese Frage auf Basis des bereitgestellten Kontexts zu beantworten." + 3. Nutze kein Vorwissen, das nicht im Kontext enthalten ist. + 5. Sei präzise und korrekt. + 6. Gib eine gut strukturierte Antwort mit Überschriften, Unterüberschriften und ggf. tabellarischer Darstellung im Markdown-Format basierend auf dem abgerufenen Wissen. Halte Überschriften und Unterüberschriften möglichst kurz. + 7. Führe nur solche Abschnitte auf, die in einer Chatbot-Antwort sinnvoll sind. Nenne z. B. keine Referenzen explizit. + 8. Wenn Werte enthalten sind, gib exakt die im Kontext vorhandenen Werte wieder. Erfinde keine Werte. + 9. Wiederhole die Frage nicht in der Antwort.""" + + prompt = f""" + Du bist ein wissenschaftlicher Chatbot, der folgende Aufgaben erfüllt: + - Zusammenfassung wissenschaftlicher Artikel + - Suche nach aktuellen und vergangenen Forschungsprojekten + - Navigation zu Artikeln: Bereitstellung von Links zu Veröffentlichungen, Anzeige meistzitierter oder neuester Artikel Antworte auf Deutsch. + + Hier sind die letzten Nachrichten aus unserem Gespräch: + {messages} + + Der Nutzer hat folgende Frage gestellt: + {query} + + Ich habe die folgenden Informationen abgerufen, um bei der Beantwortung der Frage zu helfen: + {context} + + {table_instructions} + + {response_format_instructions} + + Bitte beantworte die Frage des Nutzers auf Grundlage der bereitgestellten Informationen umfassend, aber prägnant. + Falls die Informationen keine Antwort enthalten, weise bitte auf die Grenzen der verfügbaren Informationen hin. + + Gib keinen Quell-Link an, der nicht im Kontext enthalten ist. Erfinde keinen Quell-Link. + + Assistant Response:""" + + return prompt + + async def generate_response( + self, + messages: List[Dict[str, str]], + extra_info: ExtraInfo, + ) -> Dict[str, Any]: + + try: + query = messages[-1]["content"] if messages else "" + doc_texts = extra_info.data_points.text or [] + context = "\n\n===DOCUMENT SECTION===\n\n".join(doc_texts) + prompt = self._build_prompt(query, context, messages) + response = await self.llm.invoke(prompt) if hasattr(self.llm.invoke, "__await__") else self.llm.invoke( + prompt) + result = { + "response": response.content if hasattr(response, "content") else str(response) + } + + return result + + except Exception as e: + self.logger.error(f"Error generating response: {e}") + return { + "response": "I apologize, but I encountered an error while generating a response. Please try rephrasing your question." + } + + # except Exception as e: + # self.logger.error(f"Error generating response: {e}") + # return { + # "response": "I apologize, but I encountered an error while generating a response. Please try rephrasing your question.", + # "sources": [], + # "confidence": 0.0 + # } diff --git a/agents/rag_agent/sparse_embedder.py b/rag/sparse_embedder.py similarity index 100% rename from agents/rag_agent/sparse_embedder.py rename to rag/sparse_embedder.py