Logo enrichment batch: JP+771, CZ+380 - 10,913 files (34%)

- JP: 2,846 processed (24% of 12,096)
- CZ: 2,550 processed (30% of 8,432)
- CH, NL, BE, AT, BR: 100% complete
- Total: 10,913 of 31,772 files (34%)
- Using crawl4ai favicon extraction
This commit is contained in:
kempersc 2025-12-25 13:44:26 +01:00
parent d5f2f542ce
commit 717ee3408a
793 changed files with 21209 additions and 2342 deletions

View file

@ -50,13 +50,14 @@ def is_rate_limit_error(error: Exception) -> bool:
return True return True
# Check nested exceptions in ExceptionGroup (from asyncio.TaskGroup) # Check nested exceptions in ExceptionGroup (from asyncio.TaskGroup)
if hasattr(error, 'exceptions'): if isinstance(error, BaseExceptionGroup):
for sub_exc in error.exceptions: for sub_exc in error.exceptions:
if is_rate_limit_error(sub_exc): if isinstance(sub_exc, Exception) and is_rate_limit_error(sub_exc):
return True return True
# Check __cause__ chain # Check __cause__ chain
if error.__cause__ and is_rate_limit_error(error.__cause__): cause = error.__cause__
if cause is not None and isinstance(cause, Exception) and is_rate_limit_error(cause):
return True return True
return False return False
@ -64,8 +65,10 @@ def is_rate_limit_error(error: Exception) -> bool:
def extract_actual_error(error: Exception) -> Exception: def extract_actual_error(error: Exception) -> Exception:
"""Extract the actual error from an ExceptionGroup if present.""" """Extract the actual error from an ExceptionGroup if present."""
if hasattr(error, 'exceptions'): if isinstance(error, BaseExceptionGroup):
for sub_exc in error.exceptions: for sub_exc in error.exceptions:
if not isinstance(sub_exc, Exception):
continue
# Return rate limit error if found # Return rate limit error if found
if is_rate_limit_error(sub_exc): if is_rate_limit_error(sub_exc):
return sub_exc return sub_exc
@ -206,11 +209,20 @@ COST_TRACKER_AVAILABLE = False
get_tracker: Optional[Callable[[], Any]] = None get_tracker: Optional[Callable[[], Any]] = None
try: try:
from .cost_tracker import get_tracker as _get_tracker, CostTracker # Try absolute import first (when run directly by uvicorn)
from cost_tracker import get_tracker as _get_tracker, CostTracker
get_tracker = _get_tracker get_tracker = _get_tracker
COST_TRACKER_AVAILABLE = True COST_TRACKER_AVAILABLE = True
logger.info("Cost tracker loaded via absolute import")
except ImportError: except ImportError:
logger.info("Cost tracker not available - timing/cost tracking disabled") try:
# Try relative import (when imported as package)
from .cost_tracker import get_tracker as _get_tracker, CostTracker
get_tracker = _get_tracker
COST_TRACKER_AVAILABLE = True
logger.info("Cost tracker loaded via relative import")
except ImportError:
logger.info("Cost tracker not available - timing/cost tracking disabled")
# Ontology mapper imports (graceful degradation if not available) # Ontology mapper imports (graceful degradation if not available)
# Provides multilingual matching and heritage code lookups from LinkML schema # Provides multilingual matching and heritage code lookups from LinkML schema
@ -1192,7 +1204,7 @@ class HeritageQueryRouter(dspy.Module):
"exploration": ["qdrant", "sparql"], "exploration": ["qdrant", "sparql"],
} }
def forward(self, question: str, language: str = "nl", history: History = None) -> Prediction: def forward(self, question: str, language: str = "nl", history: History | None = None) -> Prediction:
"""Classify query and determine routing. """Classify query and determine routing.
Args: Args:
@ -2953,7 +2965,7 @@ class HeritageRAGPipeline(dspy.Module):
self, self,
question: str, question: str,
language: str = "nl", language: str = "nl",
history: History = None, history: History | None = None,
include_viz: bool = True, include_viz: bool = True,
use_agent: bool = False, use_agent: bool = False,
skip_cache: bool = False, skip_cache: bool = False,
@ -3044,6 +3056,19 @@ class HeritageRAGPipeline(dspy.Module):
# Use resolved question for subsequent steps if available # Use resolved question for subsequent steps if available
resolved_question = getattr(routing, 'resolved_question', question) resolved_question = getattr(routing, 'resolved_question', question)
# DEFENSIVE FIX: Validate resolved_question is not a DSPy placeholder
# The optimized model demos may not include resolved_question, causing DSPy
# to use placeholder text like "Not supplied for this particular example..."
if (not resolved_question or
"not supplied" in resolved_question.lower() or
"this particular example" in resolved_question.lower() or
len(resolved_question.strip()) < 5):
logger.warning(
f"Invalid resolved_question detected: '{resolved_question[:80] if resolved_question else 'None'}...', "
f"falling back to original question: '{question[:80]}'"
)
resolved_question = question
# Step 2: Extract entities (use resolved question for better extraction) # Step 2: Extract entities (use resolved question for better extraction)
# Use fast_lm for entity extraction if available (performance optimization) # Use fast_lm for entity extraction if available (performance optimization)
if tracker and pipeline_timing: if tracker and pipeline_timing:
@ -3328,8 +3353,39 @@ class HeritageRAGPipeline(dspy.Module):
context = "\n".join(context_parts) context = "\n".join(context_parts)
# Use quality_lm for answer generation if available (this is the critical user-facing output) # Use quality_lm for answer generation if available (this is the critical user-facing output)
if self.quality_lm: # Wrap with cost tracking to measure generation time
with dspy.settings.context(lm=self.quality_lm): if tracker and pipeline_timing:
with tracker.track_stage("generation"):
with tracker.track_llm_call("gpt-4o-mini") as llm_usage:
if self.quality_lm:
with dspy.settings.context(lm=self.quality_lm):
answer_result = self.answer_gen(
question=resolved_question,
context=context,
history=history, # Pass conversation history for context
sources=routing.sources,
language=language,
)
else:
answer_result = self.answer_gen(
question=resolved_question,
context=context,
history=history, # Pass conversation history for context
sources=routing.sources,
language=language,
)
timing_breakdown["generation_ms"] = pipeline_timing.generation_ms
else:
if self.quality_lm:
with dspy.settings.context(lm=self.quality_lm):
answer_result = self.answer_gen(
question=resolved_question,
context=context,
history=history, # Pass conversation history for context
sources=routing.sources,
language=language,
)
else:
answer_result = self.answer_gen( answer_result = self.answer_gen(
question=resolved_question, question=resolved_question,
context=context, context=context,
@ -3337,14 +3393,6 @@ class HeritageRAGPipeline(dspy.Module):
sources=routing.sources, sources=routing.sources,
language=language, language=language,
) )
else:
answer_result = self.answer_gen(
question=resolved_question,
context=context,
history=history, # Pass conversation history for context
sources=routing.sources,
language=language,
)
answer = answer_result.answer answer = answer_result.answer
confidence = answer_result.confidence confidence = answer_result.confidence
citations = answer_result.citations citations = answer_result.citations
@ -3429,7 +3477,7 @@ class HeritageRAGPipeline(dspy.Module):
self, self,
question: str, question: str,
language: str = "nl", language: str = "nl",
history: History = None, history: History | None = None,
include_viz: bool = True, include_viz: bool = True,
skip_cache: bool = False, skip_cache: bool = False,
embedding_model: str | None = None, embedding_model: str | None = None,
@ -3515,6 +3563,19 @@ class HeritageRAGPipeline(dspy.Module):
raise raise
resolved_question = getattr(routing, 'resolved_question', question) resolved_question = getattr(routing, 'resolved_question', question)
# DEFENSIVE FIX: Validate resolved_question is not a DSPy placeholder or LLM garbage
if (not resolved_question or
"not supplied" in resolved_question.lower() or
"this particular example" in resolved_question.lower() or
"unable to" in resolved_question.lower() or
"cannot" in resolved_question.lower() or
len(resolved_question.strip()) < 5):
logger.warning(
f"Invalid resolved_question in streaming: '{resolved_question[:80] if resolved_question else 'None'}...', "
f"falling back to original question: '{question[:80]}'"
)
resolved_question = question
# Small delay between LLM calls to reduce rate limit pressure # Small delay between LLM calls to reduce rate limit pressure
await asyncio.sleep(0.5) await asyncio.sleep(0.5)

View file

@ -95,6 +95,7 @@ try:
HybridRetriever as _HybridRetriever, HybridRetriever as _HybridRetriever,
create_hybrid_retriever as _create_hybrid_retriever, create_hybrid_retriever as _create_hybrid_retriever,
get_province_code as _get_province_code, get_province_code as _get_province_code,
PERSON_JSONLD_CONTEXT,
) )
from glam_extractor.api.qdrant_retriever import HeritageCustodianRetriever as _HeritageCustodianRetriever from glam_extractor.api.qdrant_retriever import HeritageCustodianRetriever as _HeritageCustodianRetriever
from glam_extractor.api.typedb_retriever import TypeDBRetriever as _TypeDBRetriever, create_typedb_retriever as _create_typedb_retriever from glam_extractor.api.typedb_retriever import TypeDBRetriever as _TypeDBRetriever, create_typedb_retriever as _create_typedb_retriever
@ -416,13 +417,21 @@ class PersonSearchRequest(BaseModel):
class PersonSearchResponse(BaseModel): class PersonSearchResponse(BaseModel):
"""Person/staff search response.""" """Person/staff search response with JSON-LD linked data."""
context: dict[str, Any] | None = Field(
default=None,
alias="@context",
description="JSON-LD context for linked data semantic interoperability"
)
query: str query: str
results: list[dict[str, Any]] results: list[dict[str, Any]]
result_count: int result_count: int
query_time_ms: float query_time_ms: float
collection_stats: dict[str, Any] | None = None collection_stats: dict[str, Any] | None = None
embedding_model_used: str | None = None embedding_model_used: str | None = None
model_config = {"populate_by_name": True}
class DSPyQueryRequest(BaseModel): class DSPyQueryRequest(BaseModel):
@ -836,6 +845,18 @@ class ValkeyClient:
# Build CachedResponse schema matching the Valkey API # Build CachedResponse schema matching the Valkey API
# Maps DSPyQueryResponse fields to CachedResponse expected fields # Maps DSPyQueryResponse fields to CachedResponse expected fields
#
# IMPORTANT: Include llm_response metadata (GLM 4.7 reasoning_content) in cache
# so that cached responses also return the chain-of-thought reasoning.
llm_response_data = None
if response.get("llm_response"):
llm_resp = response["llm_response"]
# Handle both dict and LLMResponseMetadata object
if hasattr(llm_resp, "model_dump"):
llm_response_data = llm_resp.model_dump()
elif isinstance(llm_resp, dict):
llm_response_data = llm_resp
cached_response = { cached_response = {
"answer": response.get("answer", ""), "answer": response.get("answer", ""),
"sparql_query": None, # DSPy doesn't generate SPARQL "sparql_query": None, # DSPy doesn't generate SPARQL
@ -851,6 +872,7 @@ class ValkeyClient:
"embedding_model": response.get("embedding_model_used"), "embedding_model": response.get("embedding_model_used"),
"llm_model": response.get("llm_model_used"), "llm_model": response.get("llm_model_used"),
"original_context": context, "original_context": context,
"llm_response": llm_response_data, # GLM 4.7 reasoning_content
}, },
} }
@ -1476,17 +1498,19 @@ async def lifespan(app: FastAPI) -> AsyncIterator[None]:
logger.info(f"LLM_PROVIDER configured as: {llm_provider}") logger.info(f"LLM_PROVIDER configured as: {llm_provider}")
dspy_configured = False dspy_configured = False
# Try Z.AI GLM-4.7 if configured as provider (FREE!) # Try Z.AI GLM if configured as provider (FREE!)
if llm_provider == "zai" and settings.zai_api_token: if llm_provider == "zai" and settings.zai_api_token:
try: try:
# Z.AI uses OpenAI-compatible API format # Z.AI uses OpenAI-compatible API format
# Use LLM_MODEL from settings (default: glm-4.5-flash for speed)
zai_model = settings.llm_model if settings.llm_model.startswith("glm-") else "glm-4.5-flash"
lm = dspy.LM( lm = dspy.LM(
"openai/glm-4.7", f"openai/{zai_model}",
api_key=settings.zai_api_token, api_key=settings.zai_api_token,
api_base="https://api.z.ai/api/coding/paas/v4", api_base="https://api.z.ai/api/coding/paas/v4",
) )
dspy.configure(lm=lm) dspy.configure(lm=lm)
logger.info("Configured DSPy with Z.AI GLM-4.7 (FREE)") logger.info(f"Configured DSPy with Z.AI {zai_model} (FREE)")
dspy_configured = True dspy_configured = True
except Exception as e: except Exception as e:
logger.warning(f"Failed to configure DSPy with Z.AI: {e}") logger.warning(f"Failed to configure DSPy with Z.AI: {e}")
@ -2122,6 +2146,7 @@ async def person_search(request: PersonSearchRequest) -> PersonSearchResponse:
pass pass
return PersonSearchResponse( return PersonSearchResponse(
context=PERSON_JSONLD_CONTEXT, # JSON-LD context for linked data
query=request.query, query=request.query,
results=result_dicts, results=result_dicts,
result_count=len(result_dicts), result_count=len(result_dicts),
@ -2180,6 +2205,16 @@ async def dspy_query(request: DSPyQueryRequest) -> DSPyQueryResponse:
"data": cached.get("visualization_data"), "data": cached.get("visualization_data"),
} }
# Restore llm_response metadata (GLM 4.7 reasoning_content) from cache
llm_response_cached = cached_context.get("llm_response")
llm_response_obj = None
if llm_response_cached:
try:
llm_response_obj = LLMResponseMetadata(**llm_response_cached)
except Exception:
# Fall back to dict if LLMResponseMetadata fails
llm_response_obj = llm_response_cached # type: ignore[assignment]
response_data = { response_data = {
"question": request.question, "question": request.question,
"answer": cached.get("answer", ""), "answer": cached.get("answer", ""),
@ -2192,6 +2227,7 @@ async def dspy_query(request: DSPyQueryRequest) -> DSPyQueryResponse:
"llm_model_used": cached_context.get("llm_model"), "llm_model_used": cached_context.get("llm_model"),
"query_time_ms": round(elapsed_ms, 2), "query_time_ms": round(elapsed_ms, 2),
"cache_hit": True, "cache_hit": True,
"llm_response": llm_response_obj, # GLM 4.7 reasoning_content from cache
} }
return DSPyQueryResponse(**response_data) return DSPyQueryResponse(**response_data)

File diff suppressed because it is too large Load diff

View file

@ -44,13 +44,13 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-32-ZBU-L-OKZ - ghcid: CZ-32-ZBU-L-OKZ
valid_from: "2025-12-10T09:47:09Z" valid_from: '2025-12-10T09:47:09Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-PL to CZ-32 (Plzeň (Plzeňský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-PL to CZ-32 (Plzeň (Plzeňský)) per ISO 3166-2:CZ
- ghcid: CZ-PL-ZBU-L-OKZ - ghcid: CZ-PL-ZBU-L-OKZ
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:09Z" valid_to: '2025-12-10T09:47:09Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-PL-ZBU-L-OKZ - ghcid: CZ-PL-ZBU-L-OKZ
ghcid_numeric: 13401753587918086075 ghcid_numeric: 13401753587918086075
valid_from: '2025-12-06T23:37:31.840455+00:00' valid_from: '2025-12-06T23:37:31.840455+00:00'
@ -214,3 +214,22 @@ location:
postal_code: 330 22 postal_code: 330 22
street_address: Nádražní 192 street_address: Nádražní 192
normalization_timestamp: '2025-12-09T10:53:52.894247+00:00' normalization_timestamp: '2025-12-09T10:53:52.894247+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T11:47:57.243229+00:00'
source_url: https://www.zbuch.knihovna.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.zbuch.knihovna.cz/favicon.svg
source_url: https://www.zbuch.knihovna.cz
css_selector: '[document] > html > head > link'
retrieved_on: '2025-12-24T11:47:57.243229+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/svg+xml
favicon_sizes: any
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -211,3 +211,22 @@ location:
country: *id005 country: *id005
postal_code: 341 62 postal_code: 341 62
normalization_timestamp: '2025-12-09T10:53:53.017105+00:00' normalization_timestamp: '2025-12-09T10:53:53.017105+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T11:58:01.505049+00:00'
source_url: https://plk.tritius.cz/library/okz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://plk.tritius.cz/apple-touch-icon-180x180.png
source_url: https://plk.tritius.cz/library/okz
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T11:58:01.505049+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,13 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-32-ZIH-L-MKB - ghcid: CZ-32-ZIH-L-MKB
valid_from: "2025-12-10T09:47:09Z" valid_from: '2025-12-10T09:47:09Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-PL to CZ-32 (Plzeň (Plzeňský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-PL to CZ-32 (Plzeň (Plzeňský)) per ISO 3166-2:CZ
- ghcid: CZ-PL-ZIH-L-MKB - ghcid: CZ-PL-ZIH-L-MKB
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:09Z" valid_to: '2025-12-10T09:47:09Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-PL-ZIH-L-MKB - ghcid: CZ-PL-ZIH-L-MKB
ghcid_numeric: 16283855960286343421 ghcid_numeric: 16283855960286343421
valid_from: '2025-12-06T23:37:31.348460+00:00' valid_from: '2025-12-06T23:37:31.348460+00:00'
@ -210,3 +210,28 @@ location:
postal_code: 342 01 postal_code: 342 01
street_address: Bílenice 90 street_address: Bílenice 90
normalization_timestamp: '2025-12-09T10:53:53.043962+00:00' normalization_timestamp: '2025-12-09T10:53:53.043962+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T11:58:07.341166+00:00'
source_url: https://www.bilenice.knihovna.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://duyn491kcolsw.cloudfront.net/files/2d/2di/2div3h.svg?ph=a8ced822e1
source_url: https://www.bilenice.knihovna.cz
css_selector: '[document] > html.js.sizes > head > link:nth-of-type(3)'
retrieved_on: '2025-12-24T11:58:07.341166+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/svg+xml
favicon_sizes: any
- claim_type: og_image_url
claim_value: https://a8ced822e1.clvaw-cdnwnd.com/ef92da32ecee295ce657367e5f7354e9/200000000-e8fb4e8fb6/700/bodegones-1081331_960_720.jpg?ph=a8ced822e1
source_url: https://www.bilenice.knihovna.cz
css_selector: '[document] > html.js.sizes > head > meta:nth-of-type(16)'
retrieved_on: '2025-12-24T11:58:07.341166+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -41,13 +41,13 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-32-ZIH-L-MKR - ghcid: CZ-32-ZIH-L-MKR
valid_from: "2025-12-10T09:47:09Z" valid_from: '2025-12-10T09:47:09Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-PL to CZ-32 (Plzeň (Plzeňský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-PL to CZ-32 (Plzeň (Plzeňský)) per ISO 3166-2:CZ
- ghcid: CZ-PL-ZIH-L-MKR - ghcid: CZ-PL-ZIH-L-MKR
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:09Z" valid_to: '2025-12-10T09:47:09Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-PL-ZIH-L-MKR - ghcid: CZ-PL-ZIH-L-MKR
ghcid_numeric: 3261466093079614262 ghcid_numeric: 3261466093079614262
valid_from: '2025-12-06T23:37:31.344737+00:00' valid_from: '2025-12-06T23:37:31.344737+00:00'
@ -210,3 +210,22 @@ location:
postal_code: 342 01 postal_code: 342 01
street_address: Rozsedly 3 street_address: Rozsedly 3
normalization_timestamp: '2025-12-09T10:53:53.073771+00:00' normalization_timestamp: '2025-12-09T10:53:53.073771+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T11:58:14.219458+00:00'
source_url: https://www.zihobce.eu/obec/knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.zihobce.eu/skins/zihobce_lego2/favicons/safari-pinned-tab.svg
source_url: https://www.zihobce.eu/obec/knihovna
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-24T11:58:14.219458+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -40,13 +40,13 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-32-ZIH-L-OKZ - ghcid: CZ-32-ZIH-L-OKZ
valid_from: "2025-12-10T09:47:09Z" valid_from: '2025-12-10T09:47:09Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-PL to CZ-32 (Plzeň (Plzeňský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-PL to CZ-32 (Plzeň (Plzeňský)) per ISO 3166-2:CZ
- ghcid: CZ-PL-ZIH-L-OKZ - ghcid: CZ-PL-ZIH-L-OKZ
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:09Z" valid_to: '2025-12-10T09:47:09Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-PL-ZIH-L-OKZ - ghcid: CZ-PL-ZIH-L-OKZ
ghcid_numeric: 1623851948236937450 ghcid_numeric: 1623851948236937450
valid_from: '2025-12-08T11:21:24.429319+00:00' valid_from: '2025-12-08T11:21:24.429319+00:00'
@ -222,3 +222,22 @@ location:
country: *id006 country: *id006
postal_code: 331 65 postal_code: 331 65
normalization_timestamp: '2025-12-09T10:53:53.126657+00:00' normalization_timestamp: '2025-12-09T10:53:53.126657+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T11:58:21.953997+00:00'
source_url: https://plk.tritius.cz/library/zihle
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://plk.tritius.cz/apple-touch-icon-180x180.png
source_url: https://plk.tritius.cz/library/zihle
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T11:58:21.953997+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -39,13 +39,13 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-32-ZRU-L-MKZS - ghcid: CZ-32-ZRU-L-MKZS
valid_from: "2025-12-10T09:47:09Z" valid_from: '2025-12-10T09:47:09Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-PL to CZ-32 (Plzeň (Plzeňský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-PL to CZ-32 (Plzeň (Plzeňský)) per ISO 3166-2:CZ
- ghcid: CZ-PL-ZRU-L-MKZS - ghcid: CZ-PL-ZRU-L-MKZS
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:09Z" valid_to: '2025-12-10T09:47:09Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-PL-ZRU-L-MKZS - ghcid: CZ-PL-ZRU-L-MKZS
ghcid_numeric: 6477272734731577176 ghcid_numeric: 6477272734731577176
valid_from: '2025-12-06T23:37:22.888890+00:00' valid_from: '2025-12-06T23:37:22.888890+00:00'
@ -104,8 +104,8 @@ ch_annotator:
annotation_metadata: annotation_metadata:
confidence_score: 0.95 confidence_score: 0.95
verified: false verified: false
verification_date: verification_date: null
verified_by: verified_by: null
entity_claims: entity_claims:
- claim_type: full_name - claim_type: full_name
claim_value: Místní knihovna Zruč-Senec claim_value: Místní knihovna Zruč-Senec
@ -220,3 +220,22 @@ location:
geocoding_timestamp: '2025-12-09T21:40:15.020607+00:00' geocoding_timestamp: '2025-12-09T21:40:15.020607+00:00'
geocoding_method: CITY_NAME_LOOKUP geocoding_method: CITY_NAME_LOOKUP
geonames_matched_name: Zruč geonames_matched_name: Zruč
logo_enrichment:
enrichment_timestamp: '2025-12-24T11:58:28.154356+00:00'
source_url: https://www.zruc-senec.cz/organizace-v-obci/mistni-knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.zruc-senec.cz/skins/zruc-senec.cz_lego2/favicons/safari-pinned-tab.svg
source_url: https://www.zruc-senec.cz/organizace-v-obci/mistni-knihovna
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-24T11:58:28.154356+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-BOC-L-MKIB - ghcid: CZ-41-BOC-L-MKIB
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-BOC-L-MKIB - ghcid: CZ-KA-BOC-L-MKIB
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-BOC-L-MKIB - ghcid: CZ-KA-BOC-L-MKIB
ghcid_numeric: 14233958537733726811 ghcid_numeric: 14233958537733726811
valid_from: '2025-12-06T23:37:18.421411+00:00' valid_from: '2025-12-06T23:37:18.421411+00:00'
@ -215,3 +216,22 @@ location:
postal_code: 364 71 postal_code: 364 71
street_address: Obuvnická 59 street_address: Obuvnická 59
normalization_timestamp: '2025-12-09T10:52:54.928876+00:00' normalization_timestamp: '2025-12-09T10:52:54.928876+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T11:58:49.886354+00:00'
source_url: https://bochov.tritius.cz/?device=-1
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://bochov.tritius.cz/apple-touch-icon-180x180.png
source_url: https://bochov.tritius.cz/?device=-1
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T11:58:49.886354+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-BUK-L-MKVB - ghcid: CZ-41-BUK-L-MKVB
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-BUK-L-MKVB - ghcid: CZ-KA-BUK-L-MKVB
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-BUK-L-MKVB - ghcid: CZ-KA-BUK-L-MKVB
ghcid_numeric: 10444076842830960374 ghcid_numeric: 10444076842830960374
valid_from: '2025-12-06T23:37:40.005670+00:00' valid_from: '2025-12-06T23:37:40.005670+00:00'
@ -209,3 +210,22 @@ location:
postal_code: 357 55 postal_code: 357 55
street_address: Bukovany čp. 145 street_address: Bukovany čp. 145
normalization_timestamp: '2025-12-09T10:52:55.081090+00:00' normalization_timestamp: '2025-12-09T10:52:55.081090+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T11:59:18.543525+00:00'
source_url: https://bukovany-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://bukovany-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://bukovany-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T11:59:18.543525+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -252,3 +252,22 @@ location:
youtube_status: NOT_FOUND youtube_status: NOT_FOUND
youtube_search_query: Státní okresní archiv Cheb official youtube_search_query: Státní okresní archiv Cheb official
youtube_search_timestamp: '2025-12-09T09:31:01.888149+00:00' youtube_search_timestamp: '2025-12-09T09:31:01.888149+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T11:59:26.302286+00:00'
source_url: http://www.soaplzen.cz/soka-ch
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.soaplzen.cz/sites/default/files/easybreeze_favicon.ico
source_url: http://www.soaplzen.cz/soka-ch
css_selector: '[document] > html.js > head > link'
retrieved_on: '2025-12-24T11:59:26.302286+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-CHE-E-ZSCK - ghcid: CZ-41-CHE-E-ZSCK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-CHE-E-ZSCK - ghcid: CZ-KA-CHE-E-ZSCK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-CHE-E-ZSCK - ghcid: CZ-KA-CHE-E-ZSCK
ghcid_numeric: 13076043673706031284 ghcid_numeric: 13076043673706031284
valid_from: '2025-12-08T11:21:31.942765+00:00' valid_from: '2025-12-08T11:21:31.942765+00:00'
@ -218,3 +219,22 @@ location:
postal_code: 350 02 postal_code: 350 02
street_address: Obětí nacismu 16 street_address: Obětí nacismu 16
normalization_timestamp: '2025-12-09T10:52:55.106628+00:00' normalization_timestamp: '2025-12-09T10:52:55.106628+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T11:59:33.080489+00:00'
source_url: https://www.6zscheb.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.6zscheb.cz/skins/6zscheb/favicons/safari-pinned-tab.svg
source_url: https://www.6zscheb.cz
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-24T11:59:33.080489+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -209,3 +209,30 @@ location:
postal_code: 350 02 postal_code: 350 02
street_address: Milhostov street_address: Milhostov
normalization_timestamp: '2025-12-09T10:52:55.214222+00:00' normalization_timestamp: '2025-12-09T10:52:55.214222+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T11:59:49.862781+00:00'
source_url: https://knihovnamilhostov.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnamilhostov.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnamilhostov.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T11:59:49.862781+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnamilhostov.webk.cz/themes/new/favicon.ico
source_url: https://knihovnamilhostov.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T11:59:49.862781+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-CHE-L-OKVM - ghcid: CZ-41-CHE-L-OKVM
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-CHE-L-OKVM - ghcid: CZ-KA-CHE-L-OKVM
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-CHE-L-OKVM - ghcid: CZ-KA-CHE-L-OKVM
ghcid_numeric: 10047184037328461444 ghcid_numeric: 10047184037328461444
valid_from: '2025-12-06T23:37:39.785346+00:00' valid_from: '2025-12-06T23:37:39.785346+00:00'
@ -210,3 +211,30 @@ location:
postal_code: 350 02 postal_code: 350 02
street_address: Milíkov 1 street_address: Milíkov 1
normalization_timestamp: '2025-12-09T10:52:55.240096+00:00' normalization_timestamp: '2025-12-09T10:52:55.240096+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T11:59:55.223551+00:00'
source_url: https://milikov.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://milikov.webk.cz/themes/new/blue/logo3.png
source_url: https://milikov.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T11:59:55.223551+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://milikov.webk.cz/themes/new/favicon.ico
source_url: https://milikov.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T11:59:55.223551+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-CHE-L-OKVN - ghcid: CZ-41-CHE-L-OKVN
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-CHE-L-OKVN - ghcid: CZ-KA-CHE-L-OKVN
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-CHE-L-OKVN - ghcid: CZ-KA-CHE-L-OKVN
ghcid_numeric: 13828631244571463443 ghcid_numeric: 13828631244571463443
valid_from: '2025-12-06T23:37:39.794516+00:00' valid_from: '2025-12-06T23:37:39.794516+00:00'
@ -209,3 +210,30 @@ location:
postal_code: 350 02 postal_code: 350 02
street_address: Nebanice 7 street_address: Nebanice 7
normalization_timestamp: '2025-12-09T10:52:55.272050+00:00' normalization_timestamp: '2025-12-09T10:52:55.272050+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:00:00.472104+00:00'
source_url: https://knihovnanebanice.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnanebanice.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnanebanice.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:00:00.472104+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnanebanice.webk.cz/themes/new/favicon.ico
source_url: https://knihovnanebanice.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:00:00.472104+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-CHE-L-OKVT - ghcid: CZ-41-CHE-L-OKVT
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-CHE-L-OKVT - ghcid: CZ-KA-CHE-L-OKVT
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-CHE-L-OKVT - ghcid: CZ-KA-CHE-L-OKVT
ghcid_numeric: 6058768339673545373 ghcid_numeric: 6058768339673545373
valid_from: '2025-12-06T23:37:39.806414+00:00' valid_from: '2025-12-06T23:37:39.806414+00:00'
@ -208,3 +209,30 @@ location:
postal_code: 350 02 postal_code: 350 02
street_address: Tuřany 7 street_address: Tuřany 7
normalization_timestamp: '2025-12-09T10:52:55.307645+00:00' normalization_timestamp: '2025-12-09T10:52:55.307645+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:00:05.855693+00:00'
source_url: https://knihovnaturany.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnaturany.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnaturany.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:00:05.855693+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnaturany.webk.cz/themes/new/favicon.ico
source_url: https://knihovnaturany.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:00:05.855693+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-CHE-M-MCPOKKK - ghcid: CZ-41-CHE-M-MCPOKKK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-CHE-M-MCPOKKK - ghcid: CZ-KA-CHE-M-MCPOKKK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-CHE-M-MCPOKKK - ghcid: CZ-KA-CHE-M-MCPOKKK
ghcid_numeric: 16011353303040767542 ghcid_numeric: 16011353303040767542
valid_from: '2025-12-06T23:37:17.262819+00:00' valid_from: '2025-12-06T23:37:17.262819+00:00'
@ -214,3 +215,32 @@ location:
postal_code: 350 11 postal_code: 350 11
street_address: náměstí Krále Jiřího z Poděbrad 493/4 street_address: náměstí Krále Jiřího z Poděbrad 493/4
normalization_timestamp: '2025-12-09T10:52:55.332244+00:00' normalization_timestamp: '2025-12-09T10:52:55.332244+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:00:14.059999+00:00'
source_url: https://knihovna.muzeumcheb.cz/#!
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovna.muzeumcheb.cz/custom/design/logoChebWide.png
source_url: https://knihovna.muzeumcheb.cz/#!
css_selector: '#portaro-classic-layout > kp-svelte-component-wrapper.kp-header-component-wrapper.ng-isolate-scope
> header.kp-header.logo-stripe > div.logo-content-container.container > div.logo-search-row.row
> div.customLogoArea.custom-logo-area > a > div > img'
retrieved_on: '2025-12-24T12:00:14.059999+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Muzeum Cheb
- claim_type: favicon_url
claim_value: https://knihovna.muzeumcheb.cz/favicon.png?v=2.3.0-32021
source_url: https://knihovna.muzeumcheb.cz/#!
css_selector: '#ng-app > head > link:nth-of-type(9)'
retrieved_on: '2025-12-24T12:00:14.059999+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: 256x256
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-CIT-L-MKC - ghcid: CZ-41-CIT-L-MKC
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-CIT-L-MKC - ghcid: CZ-KA-CIT-L-MKC
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-CIT-L-MKC - ghcid: CZ-KA-CIT-L-MKC
ghcid_numeric: 10557273152922197677 ghcid_numeric: 10557273152922197677
valid_from: '2025-12-06T23:37:39.974687+00:00' valid_from: '2025-12-06T23:37:39.974687+00:00'
@ -208,3 +209,22 @@ location:
postal_code: 357 56 postal_code: 357 56
street_address: Citice 117 street_address: Citice 117
normalization_timestamp: '2025-12-09T10:52:55.424179+00:00' normalization_timestamp: '2025-12-09T10:52:55.424179+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:00:30.463041+00:00'
source_url: https://citice-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://citice-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://citice-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:00:30.463041+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-DOL-L-OKVDZ - ghcid: CZ-41-DOL-L-OKVDZ
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-DOL-L-OKVDZ - ghcid: CZ-KA-DOL-L-OKVDZ
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-DOL-L-OKVDZ - ghcid: CZ-KA-DOL-L-OKVDZ
ghcid_numeric: 16712015152975099595 ghcid_numeric: 16712015152975099595
valid_from: '2025-12-08T11:21:40.511686+00:00' valid_from: '2025-12-08T11:21:40.511686+00:00'
@ -213,3 +214,30 @@ location:
postal_code: 354 97 postal_code: 354 97
street_address: Dolní Žandov 37 street_address: Dolní Žandov 37
normalization_timestamp: '2025-12-09T10:52:55.473401+00:00' normalization_timestamp: '2025-12-09T10:52:55.473401+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:00:40.041670+00:00'
source_url: https://knihovnadolnizandov.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnadolnizandov.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnadolnizandov.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:00:40.041670+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnadolnizandov.webk.cz/themes/new/favicon.ico
source_url: https://knihovnadolnizandov.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:00:40.041670+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-FRA-L-MKFL - ghcid: CZ-41-FRA-L-MKFL
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-FRA-L-MKFL - ghcid: CZ-KA-FRA-L-MKFL
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-FRA-L-MKFL - ghcid: CZ-KA-FRA-L-MKFL
ghcid_numeric: 8266602804460372178 ghcid_numeric: 8266602804460372178
valid_from: '2025-12-06T23:37:17.272275+00:00' valid_from: '2025-12-06T23:37:17.272275+00:00'
@ -219,3 +220,22 @@ location:
postal_code: 351 01 postal_code: 351 01
street_address: Dlouhá 181/6 street_address: Dlouhá 181/6
normalization_timestamp: '2025-12-09T10:52:55.499118+00:00' normalization_timestamp: '2025-12-09T10:52:55.499118+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:00:48.827543+00:00'
source_url: https://knihovnafl.tritius.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://knihovnafl.tritius.cz/apple-touch-icon-180x180.png
source_url: https://knihovnafl.tritius.cz
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:00:48.827543+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -229,3 +229,22 @@ location:
postal_code: 357 09 postal_code: 357 09
street_address: Národní 400 street_address: Národní 400
normalization_timestamp: '2025-12-09T10:52:55.529750+00:00' normalization_timestamp: '2025-12-09T10:52:55.529750+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:00:54.380930+00:00'
source_url: https://www.mks-habartov.cz/knihovna/d-1098/p1=60
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.mks-habartov.cz/html/images/favicon.ico
source_url: https://www.mks-habartov.cz/knihovna/d-1098/p1=60
css_selector: '[document] > html > head > link:nth-of-type(2)'
retrieved_on: '2025-12-24T12:00:54.380930+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -37,13 +37,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-HAZ-L-OKH - ghcid: CZ-41-HAZ-L-OKH
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-HAZ-L-OKH - ghcid: CZ-KA-HAZ-L-OKH
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-HAZ-L-OKH - ghcid: CZ-KA-HAZ-L-OKH
ghcid_numeric: 9252879300870828780 ghcid_numeric: 9252879300870828780
valid_from: '2025-12-06T23:37:17.253828+00:00' valid_from: '2025-12-06T23:37:17.253828+00:00'
@ -216,3 +217,30 @@ location:
country: *id005 country: *id005
postal_code: 351 32 postal_code: 351 32
normalization_timestamp: '2025-12-09T10:52:55.579473+00:00' normalization_timestamp: '2025-12-09T10:52:55.579473+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:01:00.140674+00:00'
source_url: https://www.knihovna-hazlov.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.knihovna-hazlov.cz/skins/knihovnahazlov_g3/images/logo.png
source_url: https://www.knihovna-hazlov.cz
css_selector: '#header > a.logo > img'
retrieved_on: '2025-12-24T12:01:00.140674+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Knihovna Hazlov
- claim_type: favicon_url
claim_value: https://www.knihovna-hazlov.cz/skins/knihovnahazlov_g3/favicons/safari-pinned-tab.svg
source_url: https://www.knihovna-hazlov.cz
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-24T12:01:00.140674+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-HOR-L-MKSVHSMK - ghcid: CZ-41-HOR-L-MKSVHSMK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-HOR-L-MKSVHSMK - ghcid: CZ-KA-HOR-L-MKSVHSMK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-HOR-L-MKSVHSMK - ghcid: CZ-KA-HOR-L-MKSVHSMK
ghcid_numeric: 1716585593685681020 ghcid_numeric: 1716585593685681020
valid_from: '2025-12-06T23:37:24.683331+00:00' valid_from: '2025-12-06T23:37:24.683331+00:00'
@ -212,3 +213,28 @@ location:
postal_code: 357 31 postal_code: 357 31
street_address: Dlouhá 717 street_address: Dlouhá 717
normalization_timestamp: '2025-12-09T10:52:55.605128+00:00' normalization_timestamp: '2025-12-09T10:52:55.605128+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:01:09.500592+00:00'
source_url: https://www.hornislavkov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.hornislavkov.cz/skins/hornislavkov.cz_lego3/favicons/safari-pinned-tab.svg
source_url: https://www.hornislavkov.cz
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-24T12:01:09.500592+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://scontent-vie1-1.xx.fbcdn.net/hphotos-xaf1/t31.0-8/1978520_742695335742564_1817195756_o.jpg
source_url: https://www.hornislavkov.cz
css_selector: '[document] > html > head > meta:nth-of-type(9)'
retrieved_on: '2025-12-24T12:01:09.500592+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 5

View file

@ -223,3 +223,37 @@ location:
postal_code: 360 05 postal_code: 360 05
street_address: nám. 17.listopadu 12 street_address: nám. 17.listopadu 12
normalization_timestamp: '2025-12-09T10:52:55.770213+00:00' normalization_timestamp: '2025-12-09T10:52:55.770213+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:02:06.640916+00:00'
source_url: https://supskv.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://supskv.cz/wp-content/uploads/2024/01/Logo-web-nove-2024-2.jpg
source_url: https://supskv.cz
css_selector: '#masthead > div.site-branding:nth-of-type(2) > div.container >
div.site-brand-container > div.site-logo > a > img'
retrieved_on: '2025-12-24T12:02:06.640916+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: SUPŠKV
- claim_type: favicon_url
claim_value: https://supskv.cz/wp-content/uploads/fbrfg/safari-pinned-tab.svg
source_url: https://supskv.cz
css_selector: '[document] > html > head > link:nth-of-type(33)'
retrieved_on: '2025-12-24T12:02:06.640916+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://supskv.cz/wp-content/uploads/2024/03/Profilovka-SUPSKV2.jpg
source_url: https://supskv.cz
css_selector: '[document] > html > head > meta:nth-of-type(12)'
retrieved_on: '2025-12-24T12:02:06.640916+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 9

View file

@ -45,13 +45,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-KAR-L-KKNSNVKVLK - ghcid: CZ-41-KAR-L-KKNSNVKVLK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-KAR-L-KKNSNVKVLK - ghcid: CZ-KA-KAR-L-KKNSNVKVLK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-KAR-L-KKNSNVKVLK - ghcid: CZ-KA-KAR-L-KKNSNVKVLK
ghcid_numeric: 15163751149896773497 ghcid_numeric: 15163751149896773497
valid_from: '2025-12-06T23:37:18.347395+00:00' valid_from: '2025-12-06T23:37:18.347395+00:00'
@ -220,3 +221,22 @@ location:
postal_code: 360 01 postal_code: 360 01
street_address: Bezručova 1190/19 street_address: Bezručova 1190/19
normalization_timestamp: '2025-12-09T10:52:55.823037+00:00' normalization_timestamp: '2025-12-09T10:52:55.823037+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:02:16.062849+00:00'
source_url: https://kkn.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://kkn.cz/templates/kkn/img/favicon.ico
source_url: https://kkn.cz
css_selector: '[document] > html > head > link:nth-of-type(9)'
retrieved_on: '2025-12-24T12:02:16.062849+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -48,13 +48,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-KAR-L-MKKV - ghcid: CZ-41-KAR-L-MKKV
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-KAR-L-MKKV - ghcid: CZ-KA-KAR-L-MKKV
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-KAR-L-MKKV - ghcid: CZ-KA-KAR-L-MKKV
ghcid_numeric: 3526171183681722284 ghcid_numeric: 3526171183681722284
valid_from: '2025-12-06T23:37:26.233603+00:00' valid_from: '2025-12-06T23:37:26.233603+00:00'
@ -245,3 +246,28 @@ location:
postal_code: 360 01 postal_code: 360 01
street_address: I.P. Pavlova 7 street_address: I.P. Pavlova 7
normalization_timestamp: '2025-12-09T10:52:55.872139+00:00' normalization_timestamp: '2025-12-09T10:52:55.872139+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:02:25.489292+00:00'
source_url: https://mestskaknihovnakv.cz/katalog
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://mestskaknihovnakv.cz/themes/mkkv/favicons/safari-pinned-tab.svg
source_url: https://mestskaknihovnakv.cz/katalog
css_selector: '[document] > html.js.js > head > link:nth-of-type(6)'
retrieved_on: '2025-12-24T12:02:25.489292+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://mestskaknihovnakv.cz/sites/default/files/obrazky/mkkv.jpg
source_url: https://mestskaknihovnakv.cz/katalog
css_selector: '[document] > html.js.js > head > meta:nth-of-type(6)'
retrieved_on: '2025-12-24T12:02:25.489292+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 5

View file

@ -42,13 +42,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-KAR-L-VSFSSSSKVK - ghcid: CZ-41-KAR-L-VSFSSSSKVK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-KAR-L-VSFSSSSKVK - ghcid: CZ-KA-KAR-L-VSFSSSSKVK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-KAR-L-VSFSSSSKVK - ghcid: CZ-KA-KAR-L-VSFSSSSKVK
ghcid_numeric: 12494588424640715797 ghcid_numeric: 12494588424640715797
valid_from: '2025-12-08T11:21:32.513015+00:00' valid_from: '2025-12-08T11:21:32.513015+00:00'
@ -221,3 +222,28 @@ location:
postal_code: 360 01 postal_code: 360 01
street_address: T.G. Masaryka 541/3 street_address: T.G. Masaryka 541/3
normalization_timestamp: '2025-12-09T10:52:55.936390+00:00' normalization_timestamp: '2025-12-09T10:52:55.936390+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:02:34.627921+00:00'
source_url: https://www.vsfs.cz/?id=1875-knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.vsfs.cz/2017/obsah/images/favicon.ico
source_url: https://www.vsfs.cz/?id=1875-knihovna
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-24T12:02:34.627921+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.vsfs.cz/2017/obsah/images/vsfs_logo_fb.png
source_url: https://www.vsfs.cz/?id=1875-knihovna
css_selector: '[document] > html > head > meta:nth-of-type(6)'
retrieved_on: '2025-12-24T12:02:34.627921+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-KAR-M-MKVPKKK - ghcid: CZ-41-KAR-M-MKVPKKK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-KAR-M-MKVPKKK - ghcid: CZ-KA-KAR-M-MKVPKKK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-KAR-M-MKVPKKK - ghcid: CZ-KA-KAR-M-MKVPKKK
ghcid_numeric: 1534023288790012143 ghcid_numeric: 1534023288790012143
valid_from: '2025-12-06T23:37:24.590182+00:00' valid_from: '2025-12-06T23:37:24.590182+00:00'
@ -211,3 +212,32 @@ location:
postal_code: 360 01 postal_code: 360 01
street_address: Pod Jelením skokem 393/30 street_address: Pod Jelením skokem 393/30
normalization_timestamp: '2025-12-09T10:52:56.009027+00:00' normalization_timestamp: '2025-12-09T10:52:56.009027+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:02:45.048516+00:00'
source_url: https://kvmuz.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://kvmuz.cz/wp-content/uploads/2024/04/kvmuz_logo.png
source_url: https://kvmuz.cz
css_selector: '#masthead > div.elementor.elementor-12701 > div.elementor-element.elementor-element-edd313e
> div.e-con-inner > div.elementor-element.elementor-element-ef7d642 > div.elementor-element.elementor-element-fa6c22a
> div.elementor-widget-container > img.attachment-large.size-large'
retrieved_on: '2025-12-24T12:02:45.048516+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: ''
- claim_type: favicon_url
claim_value: https://kvmuz.cz/wp-content/uploads/2024/04/cropped-kvmuz_logo_notext-180x180.png
source_url: https://kvmuz.cz
css_selector: '[document] > html > head > link:nth-of-type(39)'
retrieved_on: '2025-12-24T12:02:45.048516+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -266,3 +266,22 @@ location:
youtube_status: NOT_FOUND youtube_status: NOT_FOUND
youtube_search_query: Státní okresní archiv Karlovy Vary official youtube_search_query: Státní okresní archiv Karlovy Vary official
youtube_search_timestamp: '2025-12-09T09:31:06.515441+00:00' youtube_search_timestamp: '2025-12-09T09:31:06.515441+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:02:53.885625+00:00'
source_url: http://www.soaplzen.cz/soka-kv
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.soaplzen.cz/sites/default/files/easybreeze_favicon.ico
source_url: http://www.soaplzen.cz/soka-kv
css_selector: '[document] > html.js > head > link'
retrieved_on: '2025-12-24T12:02:53.885625+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -39,10 +39,11 @@ ghcid:
city_label: Karlovy Vary city_label: Karlovy Vary
geonames_id: 3073803 geonames_id: 3073803
ghcid_history: ghcid_history:
- previous_ghcid_component: "KV" - previous_ghcid_component: KV
new_ghcid_component: "KAV" new_ghcid_component: KAV
change_date: "2025-12-20T19:55:24Z" change_date: '2025-12-20T19:55:24Z'
reason: "Fixed 2-letter city code to proper 3-letter code per AGENTS.md. City: Karlovy Vary" reason: 'Fixed 2-letter city code to proper 3-letter code per AGENTS.md. City:
Karlovy Vary'
- ghcid: XX-XX-XXX-G-GUKV - ghcid: XX-XX-XXX-G-GUKV
ghcid_numeric: 16110237952048732650 ghcid_numeric: 16110237952048732650
valid_from: '2025-12-06T23:37:44.558294+00:00' valid_from: '2025-12-06T23:37:44.558294+00:00'
@ -84,7 +85,8 @@ provenance:
notes: notes:
- 'Country resolved 2025-12-06T23:54:40Z: XX→CZ via Wikidata P17' - 'Country resolved 2025-12-06T23:54:40Z: XX→CZ via Wikidata P17'
- 'Region resolved 2025-12-07T00:01:14Z: XX->41 via Wikidata P131 (CZ-41)' - 'Region resolved 2025-12-07T00:01:14Z: XX->41 via Wikidata P131 (CZ-41)'
- 'City resolved 2025-12-07T00:28:27Z: XXX->KV via Wikidata Q8502288 coords (50.2306,12.8725) -> Karlovy Vary (GeoNames:3073803)' - 'City resolved 2025-12-07T00:28:27Z: XXX->KV via Wikidata Q8502288 coords (50.2306,12.8725)
-> Karlovy Vary (GeoNames:3073803)'
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:48:12Z - Canonical location added via normalize_custodian_files.py on 2025-12-08T23:48:12Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T06:49:35Z - Canonical location added via normalize_custodian_files.py on 2025-12-09T06:49:35Z
- 'YouTube/Google Maps enrichment 2025-12-09T09:31:07Z: YouTube: not found' - 'YouTube/Google Maps enrichment 2025-12-09T09:31:07Z: YouTube: not found'
@ -115,8 +117,8 @@ ch_annotator:
annotation_metadata: annotation_metadata:
confidence_score: 0.85 confidence_score: 0.85
verified: false verified: false
verification_date: verification_date: null
verified_by: verified_by: null
entity_claims: entity_claims:
- claim_type: full_name - claim_type: full_name
claim_value: Galerie umění, Karlovy Vary claim_value: Galerie umění, Karlovy Vary
@ -209,11 +211,12 @@ wikidata_enrichment:
instance_of: &id005 instance_of: &id005
- id: Q33506 - id: Q33506
label: museum label: museum
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other description: institution that holds artifacts and other objects of scientific,
importance artistic, cultural, historical, or other importance
- id: Q2085381 - id: Q2085381
label: publishing company label: publishing company
description: company that prints and distributes pressed goods or electronic media description: company that prints and distributes pressed goods or electronic
media
wikidata_instance_of: *id005 wikidata_instance_of: *id005
wikidata_location: wikidata_location:
located_in_admin_entity: &id006 located_in_admin_entity: &id006
@ -265,3 +268,22 @@ location:
youtube_status: NOT_FOUND youtube_status: NOT_FOUND
youtube_search_query: Galerie umění, Karlovy Vary official youtube_search_query: Galerie umění, Karlovy Vary official
youtube_search_timestamp: '2025-12-09T09:31:07.203887+00:00' youtube_search_timestamp: '2025-12-09T09:31:07.203887+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:02:59.322656+00:00'
source_url: http://www.galeriekvary.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.galeriekvary.cz/wp-content/uploads/logo/logo_GU_barva_zare.png
source_url: http://www.galeriekvary.cz
css_selector: '[document] > html.js.flexbox > head > link:nth-of-type(38)'
retrieved_on: '2025-12-24T12:02:59.322656+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 192x192
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 2

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-KRA-L-MKJ - ghcid: CZ-41-KRA-L-MKJ
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-KRA-L-MKJ - ghcid: CZ-KA-KRA-L-MKJ
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-KRA-L-MKJ - ghcid: CZ-KA-KRA-L-MKJ
ghcid_numeric: 14594163256500582256 ghcid_numeric: 14594163256500582256
valid_from: '2025-12-06T23:37:39.996039+00:00' valid_from: '2025-12-06T23:37:39.996039+00:00'
@ -208,3 +209,22 @@ location:
postal_code: 358 01 postal_code: 358 01
street_address: Jindřichovice 232 street_address: Jindřichovice 232
normalization_timestamp: '2025-12-09T10:52:56.146859+00:00' normalization_timestamp: '2025-12-09T10:52:56.146859+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:03:18.670498+00:00'
source_url: https://jindrichovice-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://jindrichovice-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://jindrichovice-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:03:18.670498+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-KRA-L-MKK-mistni_knihovna_krajkova - ghcid: CZ-41-KRA-L-MKK-mistni_knihovna_krajkova
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-KRA-L-MKK-mistni_knihovna_krajkova - ghcid: CZ-KA-KRA-L-MKK-mistni_knihovna_krajkova
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-KRA-L-MKK-mistni_knihovna_krajkova - ghcid: CZ-KA-KRA-L-MKK-mistni_knihovna_krajkova
ghcid_numeric: 10538484479138625415 ghcid_numeric: 10538484479138625415
valid_from: '2025-12-06T23:37:39.987343+00:00' valid_from: '2025-12-06T23:37:39.987343+00:00'
@ -208,3 +209,22 @@ location:
postal_code: 357 08 postal_code: 357 08
street_address: Krajková 295 street_address: Krajková 295
normalization_timestamp: '2025-12-09T10:52:56.174182+00:00' normalization_timestamp: '2025-12-09T10:52:56.174182+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:03:23.408003+00:00'
source_url: https://krajkova-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://krajkova-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://krajkova-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:03:23.408003+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-KRA-L-MKK - ghcid: CZ-41-KRA-L-MKK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-KRA-L-MKK - ghcid: CZ-KA-KRA-L-MKK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-KRA-L-MKK - ghcid: CZ-KA-KRA-L-MKK
ghcid_numeric: 10626442174841393516 ghcid_numeric: 10626442174841393516
valid_from: '2025-12-06T23:37:39.962044+00:00' valid_from: '2025-12-06T23:37:39.962044+00:00'
@ -208,3 +209,22 @@ location:
postal_code: 357 47 postal_code: 357 47
street_address: Radniční 1 street_address: Radniční 1
normalization_timestamp: '2025-12-09T10:52:56.202097+00:00' normalization_timestamp: '2025-12-09T10:52:56.202097+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:03:28.107397+00:00'
source_url: https://krasno-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://krasno-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://krasno-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:03:28.107397+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -39,13 +39,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-KRA-L-OKK - ghcid: CZ-41-KRA-L-OKK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-KRA-L-OKK - ghcid: CZ-KA-KRA-L-OKK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-KRA-L-OKK - ghcid: CZ-KA-KRA-L-OKK
ghcid_numeric: 4446425850140359831 ghcid_numeric: 4446425850140359831
valid_from: '2025-12-06T23:37:43.411338+00:00' valid_from: '2025-12-06T23:37:43.411338+00:00'
@ -104,8 +105,8 @@ ch_annotator:
annotation_metadata: annotation_metadata:
confidence_score: 0.95 confidence_score: 0.95
verified: false verified: false
verification_date: verification_date: null
verified_by: verified_by: null
entity_claims: entity_claims:
- claim_type: full_name - claim_type: full_name
claim_value: Obecní knihovna Krásná claim_value: Obecní knihovna Krásná
@ -210,3 +211,30 @@ location:
geonames_id: 3072900 geonames_id: 3072900
geonames_name: Krásná geonames_name: Krásná
feature_code: PPL feature_code: PPL
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:03:37.432587+00:00'
source_url: https://knihovnakrasna.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnakrasna.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnakrasna.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:03:37.432587+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnakrasna.webk.cz/themes/new/favicon.ico
source_url: https://knihovnakrasna.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:03:37.432587+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-KRA-L-OKKP - ghcid: CZ-41-KRA-L-OKKP
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-KRA-L-OKKP - ghcid: CZ-KA-KRA-L-OKKP
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-KRA-L-OKKP - ghcid: CZ-KA-KRA-L-OKKP
ghcid_numeric: 14599110197692774858 ghcid_numeric: 14599110197692774858
valid_from: '2025-12-06T23:37:26.424594+00:00' valid_from: '2025-12-06T23:37:26.424594+00:00'
@ -220,3 +221,22 @@ location:
postal_code: 356 01 postal_code: 356 01
street_address: Lázeňská 114 street_address: Lázeňská 114
normalization_timestamp: '2025-12-09T10:52:56.295933+00:00' normalization_timestamp: '2025-12-09T10:52:56.295933+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:03:46.128600+00:00'
source_url: https://www.knihovnakp.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.knihovnakp.cz/img/favicon.ico
source_url: https://www.knihovnakp.cz
css_selector: '[document] > html > head > link:nth-of-type(8)'
retrieved_on: '2025-12-24T12:03:46.128600+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-KYN-L-KLU - ghcid: CZ-41-KYN-L-KLU
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-KYN-L-KLU - ghcid: CZ-KA-KYN-L-KLU
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-KYN-L-KLU - ghcid: CZ-KA-KYN-L-KLU
ghcid_numeric: 5000551985546554346 ghcid_numeric: 5000551985546554346
valid_from: '2025-12-08T11:21:40.537042+00:00' valid_from: '2025-12-08T11:21:40.537042+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 357 51 postal_code: 357 51
street_address: Libavské Údolí 110 street_address: Libavské Údolí 110
normalization_timestamp: '2025-12-09T10:52:56.327358+00:00' normalization_timestamp: '2025-12-09T10:52:56.327358+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:03:51.001699+00:00'
source_url: https://libavskeudoli-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://libavskeudoli-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://libavskeudoli-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:03:51.001699+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-LIB-L-OKVL - ghcid: CZ-41-LIB-L-OKVL
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-LIB-L-OKVL - ghcid: CZ-KA-LIB-L-OKVL
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-LIB-L-OKVL - ghcid: CZ-KA-LIB-L-OKVL
ghcid_numeric: 9261206355159337495 ghcid_numeric: 9261206355159337495
valid_from: '2025-12-06T23:37:39.774571+00:00' valid_from: '2025-12-06T23:37:39.774571+00:00'
@ -214,3 +215,30 @@ location:
postal_code: 351 31 postal_code: 351 31
street_address: Libá 99 street_address: Libá 99
normalization_timestamp: '2025-12-09T10:52:56.462729+00:00' normalization_timestamp: '2025-12-09T10:52:56.462729+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:04:40.877195+00:00'
source_url: https://knihovnaliba.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnaliba.webk.cz/themes/new/blue/logo3.png
source_url: https://knihovnaliba.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:04:40.877195+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnaliba.webk.cz/themes/new/favicon.ico
source_url: https://knihovnaliba.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:04:40.877195+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -51,13 +51,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-LOK-L-NPUUOPVLK - ghcid: CZ-41-LOK-L-NPUUOPVLK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-LOK-L-NPUUOPVLK - ghcid: CZ-KA-LOK-L-NPUUOPVLK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-LOK-L-NPUUOPVLK - ghcid: CZ-KA-LOK-L-NPUUOPVLK
ghcid_numeric: 16074445015261747003 ghcid_numeric: 16074445015261747003
valid_from: '2025-12-08T11:21:32.368268+00:00' valid_from: '2025-12-08T11:21:32.368268+00:00'
@ -230,3 +231,22 @@ location:
postal_code: 357 33 postal_code: 357 33
street_address: T. G. Masaryka 133/9 street_address: T. G. Masaryka 133/9
normalization_timestamp: '2025-12-09T10:52:56.492668+00:00' normalization_timestamp: '2025-12-09T10:52:56.492668+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:04:46.729924+00:00'
source_url: https://iispp.npu.cz/carmen/library/loket
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://iispp.npu.cz/carmen/apple-touch-icon-180x180.png
source_url: https://iispp.npu.cz/carmen/library/loket
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:04:46.729924+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-LOM-L-MKVDN - ghcid: CZ-41-LOM-L-MKVDN
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-LOM-L-MKVDN - ghcid: CZ-KA-LOM-L-MKVDN
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-LOM-L-MKVDN - ghcid: CZ-KA-LOM-L-MKVDN
ghcid_numeric: 17334631763734310775 ghcid_numeric: 17334631763734310775
valid_from: '2025-12-06T23:37:39.980819+00:00' valid_from: '2025-12-06T23:37:39.980819+00:00'
@ -208,3 +209,22 @@ location:
postal_code: 357 04 postal_code: 357 04
street_address: Dolní Nivy 75 street_address: Dolní Nivy 75
normalization_timestamp: '2025-12-09T10:52:56.525320+00:00' normalization_timestamp: '2025-12-09T10:52:56.525320+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:04:51.517920+00:00'
source_url: https://dolninivy-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://dolninivy-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://dolninivy-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:04:51.517920+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-LOM-L-OKL - ghcid: CZ-41-LOM-L-OKL
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-LOM-L-OKL - ghcid: CZ-KA-LOM-L-OKL
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-LOM-L-OKL - ghcid: CZ-KA-LOM-L-OKL
ghcid_numeric: 12445493509132731903 ghcid_numeric: 12445493509132731903
valid_from: '2025-12-06T23:37:27.339840+00:00' valid_from: '2025-12-06T23:37:27.339840+00:00'
@ -216,3 +217,22 @@ location:
postal_code: '35601' postal_code: '35601'
street_address: Kraslická 44 street_address: Kraslická 44
normalization_timestamp: '2025-12-09T10:52:56.545103+00:00' normalization_timestamp: '2025-12-09T10:52:56.545103+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:04:56.518947+00:00'
source_url: https://katalog.obeclomnice.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.obeclomnice.cz/themes/root/images/vufind-favicon.ico
source_url: https://katalog.obeclomnice.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:04:56.518947+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-MAR-L-MKML - ghcid: CZ-41-MAR-L-MKML
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-MAR-L-MKML - ghcid: CZ-KA-MAR-L-MKML
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-MAR-L-MKML - ghcid: CZ-KA-MAR-L-MKML
ghcid_numeric: 10498622330552758260 ghcid_numeric: 10498622330552758260
valid_from: '2025-12-06T23:37:17.285177+00:00' valid_from: '2025-12-06T23:37:17.285177+00:00'
@ -236,3 +237,22 @@ location:
postal_code: 353 01 postal_code: 353 01
street_address: Hlavní 370/3 street_address: Hlavní 370/3
normalization_timestamp: '2025-12-09T10:52:56.636064+00:00' normalization_timestamp: '2025-12-09T10:52:56.636064+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:05:15.559432+00:00'
source_url: https://knihovnaml.tritius.cz/?device=2
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://knihovnaml.tritius.cz/apple-touch-icon-180x180.png
source_url: https://knihovnaml.tritius.cz/?device=2
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:05:15.559432+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -213,3 +213,30 @@ location:
postal_code: 354 72 Drmoul postal_code: 354 72 Drmoul
street_address: Plzeňská 237 street_address: Plzeňská 237
normalization_timestamp: '2025-12-09T10:52:56.680328+00:00' normalization_timestamp: '2025-12-09T10:52:56.680328+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:05:20.195452+00:00'
source_url: https://drmoul.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://drmoul.webk.cz/themes/new/green/logo1.png
source_url: https://drmoul.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:05:20.195452+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://drmoul.webk.cz/themes/new/favicon.ico
source_url: https://drmoul.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:05:20.195452+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-MAR-L-OKVM - ghcid: CZ-41-MAR-L-OKVM
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-MAR-L-OKVM - ghcid: CZ-KA-MAR-L-OKVM
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-MAR-L-OKVM - ghcid: CZ-KA-MAR-L-OKVM
ghcid_numeric: 923151983077473699 ghcid_numeric: 923151983077473699
valid_from: '2025-12-06T23:37:39.788414+00:00' valid_from: '2025-12-06T23:37:39.788414+00:00'
@ -208,3 +209,30 @@ location:
postal_code: 353 01 postal_code: 353 01
street_address: Mnichov 1 street_address: Mnichov 1
normalization_timestamp: '2025-12-09T10:52:56.712512+00:00' normalization_timestamp: '2025-12-09T10:52:56.712512+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:05:24.814553+00:00'
source_url: https://knihovnamnichov.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnamnichov.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnamnichov.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:05:24.814553+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnamnichov.webk.cz/themes/new/favicon.ico
source_url: https://knihovnamnichov.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:05:24.814553+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-MAR-L-OKVOK - ghcid: CZ-41-MAR-L-OKVOK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-MAR-L-OKVOK - ghcid: CZ-KA-MAR-L-OKVOK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-MAR-L-OKVOK - ghcid: CZ-KA-MAR-L-OKVOK
ghcid_numeric: 3371073348008286726 ghcid_numeric: 3371073348008286726
valid_from: '2025-12-06T23:37:39.830481+00:00' valid_from: '2025-12-06T23:37:39.830481+00:00'
@ -212,3 +213,30 @@ location:
postal_code: 353 01 postal_code: 353 01
street_address: Ovesné Kladruby 17 street_address: Ovesné Kladruby 17
normalization_timestamp: '2025-12-09T10:52:56.737159+00:00' normalization_timestamp: '2025-12-09T10:52:56.737159+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:05:29.469280+00:00'
source_url: https://knihovnaovesnekladruby.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnaovesnekladruby.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnaovesnekladruby.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:05:29.469280+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnaovesnekladruby.webk.cz/themes/new/favicon.ico
source_url: https://knihovnaovesnekladruby.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:05:29.469280+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -201,3 +201,22 @@ location:
postal_code: 353 01 postal_code: 353 01
street_address: Podlesí street_address: Podlesí
normalization_timestamp: '2025-12-09T10:52:56.768279+00:00' normalization_timestamp: '2025-12-09T10:52:56.768279+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:05:37.240031+00:00'
source_url: http://www.dolnizandov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: http://www.dolnizandov.cz/skins/dolnizandov.cz_lego2/favicons/safari-pinned-tab.svg
source_url: http://www.dolnizandov.cz
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-24T12:05:37.240031+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -206,3 +206,22 @@ location:
postal_code: 353 01 postal_code: 353 01
street_address: Prameny street_address: Prameny
normalization_timestamp: '2025-12-09T10:52:56.797539+00:00' normalization_timestamp: '2025-12-09T10:52:56.797539+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:05:42.837718+00:00'
source_url: https://www.krnany.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.krnany.cz/skins/krnany.cz_lego2/favicons/apple-touch-icon.png
source_url: https://www.krnany.cz
css_selector: '[document] > html > head > link'
retrieved_on: '2025-12-24T12:05:42.837718+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 4

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-MAR-L-OKVT - ghcid: CZ-41-MAR-L-OKVT
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-MAR-L-OKVT - ghcid: CZ-KA-MAR-L-OKVT
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-MAR-L-OKVT - ghcid: CZ-KA-MAR-L-OKVT
ghcid_numeric: 8272060371003774699 ghcid_numeric: 8272060371003774699
valid_from: '2025-12-06T23:37:39.815299+00:00' valid_from: '2025-12-06T23:37:39.815299+00:00'
@ -208,3 +209,30 @@ location:
postal_code: 353 01 postal_code: 353 01
street_address: Trstěnice 85 street_address: Trstěnice 85
normalization_timestamp: '2025-12-09T10:52:56.823880+00:00' normalization_timestamp: '2025-12-09T10:52:56.823880+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:05:47.460590+00:00'
source_url: https://knihovnatrstenice.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnatrstenice.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnatrstenice.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:05:47.460590+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnatrstenice.webk.cz/themes/new/favicon.ico
source_url: https://knihovnatrstenice.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:05:47.460590+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-MAR-L-OKVTS - ghcid: CZ-41-MAR-L-OKVTS
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-MAR-L-OKVTS - ghcid: CZ-KA-MAR-L-OKVTS
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-MAR-L-OKVTS - ghcid: CZ-KA-MAR-L-OKVTS
ghcid_numeric: 709447339837473746 ghcid_numeric: 709447339837473746
valid_from: '2025-12-06T23:37:39.818486+00:00' valid_from: '2025-12-06T23:37:39.818486+00:00'
@ -208,3 +209,30 @@ location:
postal_code: 353 01 postal_code: 353 01
street_address: Tři Sekery 82 street_address: Tři Sekery 82
normalization_timestamp: '2025-12-09T10:52:56.857920+00:00' normalization_timestamp: '2025-12-09T10:52:56.857920+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:05:54.711780+00:00'
source_url: https://knihovnatrisekery.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnatrisekery.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnatrisekery.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:05:54.711780+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnatrisekery.webk.cz/themes/new/favicon.ico
source_url: https://knihovnatrisekery.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:05:54.711780+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-MAR-L-OKVV-obecni_knihovna_ve_vlkovicich - ghcid: CZ-41-MAR-L-OKVV-obecni_knihovna_ve_vlkovicich
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-MAR-L-OKVV-obecni_knihovna_ve_vlkovicich - ghcid: CZ-KA-MAR-L-OKVV-obecni_knihovna_ve_vlkovicich
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-MAR-L-OKVV-obecni_knihovna_ve_vlkovicich - ghcid: CZ-KA-MAR-L-OKVV-obecni_knihovna_ve_vlkovicich
ghcid_numeric: 5367093988281281737 ghcid_numeric: 5367093988281281737
valid_from: '2025-12-06T23:37:39.824765+00:00' valid_from: '2025-12-06T23:37:39.824765+00:00'
@ -208,3 +209,30 @@ location:
postal_code: 353 01 postal_code: 353 01
street_address: Vlkovice 21 street_address: Vlkovice 21
normalization_timestamp: '2025-12-09T10:52:56.896759+00:00' normalization_timestamp: '2025-12-09T10:52:56.896759+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:05:59.374085+00:00'
source_url: https://knihovnavlkovice.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnavlkovice.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnavlkovice.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:05:59.374085+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnavlkovice.webk.cz/themes/new/favicon.ico
source_url: https://knihovnavlkovice.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:05:59.374085+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-NEJ-L-MKN - ghcid: CZ-41-NEJ-L-MKN
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-NEJ-L-MKN - ghcid: CZ-KA-NEJ-L-MKN
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-NEJ-L-MKN - ghcid: CZ-KA-NEJ-L-MKN
ghcid_numeric: 8794493955917396016 ghcid_numeric: 8794493955917396016
valid_from: '2025-12-06T23:37:18.427870+00:00' valid_from: '2025-12-06T23:37:18.427870+00:00'
@ -215,3 +216,22 @@ location:
postal_code: 362 21 postal_code: 362 21
street_address: nám. Karla IV. 398 street_address: nám. Karla IV. 398
normalization_timestamp: '2025-12-09T10:52:56.957882+00:00' normalization_timestamp: '2025-12-09T10:52:56.957882+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:06:07.871696+00:00'
source_url: https://kvk.tritius.cz/library/nejdek
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://kvk.tritius.cz/apple-touch-icon-180x180.png
source_url: https://kvk.tritius.cz/library/nejdek
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:06:07.871696+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -36,13 +36,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-NOV-L-MKNR - ghcid: CZ-41-NOV-L-MKNR
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-NOV-L-MKNR - ghcid: CZ-KA-NOV-L-MKNR
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-NOV-L-MKNR - ghcid: CZ-KA-NOV-L-MKNR
ghcid_numeric: 16781924144377633797 ghcid_numeric: 16781924144377633797
valid_from: '2025-12-06T23:37:21.235148+00:00' valid_from: '2025-12-06T23:37:21.235148+00:00'
@ -100,8 +101,8 @@ ch_annotator:
annotation_metadata: annotation_metadata:
confidence_score: 0.95 confidence_score: 0.95
verified: false verified: false
verification_date: verification_date: null
verified_by: verified_by: null
entity_claims: entity_claims:
- claim_type: full_name - claim_type: full_name
claim_value: Městská knihovna Nová Role claim_value: Městská knihovna Nová Role
@ -224,3 +225,22 @@ location:
geonames_id: 3069662 geonames_id: 3069662
geonames_name: Nová Role geonames_name: Nová Role
feature_code: PPL feature_code: PPL
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:06:22.408145+00:00'
source_url: https://novarole.tritius.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://novarole.tritius.cz/apple-touch-icon-180x180.png
source_url: https://novarole.tritius.cz
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:06:22.408145+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-NOV-L-MKNS - ghcid: CZ-41-NOV-L-MKNS
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-NOV-L-MKNS - ghcid: CZ-KA-NOV-L-MKNS
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-NOV-L-MKNS - ghcid: CZ-KA-NOV-L-MKNS
ghcid_numeric: 7409214947202884513 ghcid_numeric: 7409214947202884513
valid_from: '2025-12-06T23:37:19.982578+00:00' valid_from: '2025-12-06T23:37:19.982578+00:00'
@ -251,3 +252,22 @@ location:
postal_code: 357 34 postal_code: 357 34
street_address: Masarykova 502 street_address: Masarykova 502
normalization_timestamp: '2025-12-09T10:52:57.084677+00:00' normalization_timestamp: '2025-12-09T10:52:57.084677+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:06:27.423877+00:00'
source_url: https://katalog.mkns.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.mkns.cz/apple-touch-icon-180x180.png
source_url: https://katalog.mkns.cz
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:06:27.423877+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -48,13 +48,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-OLO-L-MKO - ghcid: CZ-41-OLO-L-MKO
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-OLO-L-MKO - ghcid: CZ-KA-OLO-L-MKO
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-OLO-L-MKO - ghcid: CZ-KA-OLO-L-MKO
ghcid_numeric: 7802484296919865003 ghcid_numeric: 7802484296919865003
valid_from: '2025-12-06T23:37:39.953230+00:00' valid_from: '2025-12-06T23:37:39.953230+00:00'
@ -279,3 +280,22 @@ location:
postal_code: 357 07 postal_code: 357 07
street_address: Tovární 197 street_address: Tovární 197
normalization_timestamp: '2025-12-09T10:52:57.170747+00:00' normalization_timestamp: '2025-12-09T10:52:57.170747+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:06:41.269308+00:00'
source_url: https://www.olovi.cz/mestska-knihovna-olovi
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.olovi.cz/image.php?nid=13796&oid=7800446
source_url: https://www.olovi.cz/mestska-knihovna-olovi
css_selector: '[document] > html > head > link:nth-of-type(12)'
retrieved_on: '2025-12-24T12:06:41.269308+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -39,13 +39,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-OST-E-SPSOSK - ghcid: CZ-41-OST-E-SPSOSK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-OST-E-SPSOSK - ghcid: CZ-KA-OST-E-SPSOSK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-OST-E-SPSOSK - ghcid: CZ-KA-OST-E-SPSOSK
ghcid_numeric: 7642944697609770456 ghcid_numeric: 7642944697609770456
valid_from: '2025-12-08T11:21:21.199668+00:00' valid_from: '2025-12-08T11:21:21.199668+00:00'
@ -109,8 +110,8 @@ ch_annotator:
annotation_metadata: annotation_metadata:
confidence_score: 0.95 confidence_score: 0.95
verified: false verified: false
verification_date: verification_date: null
verified_by: verified_by: null
entity_claims: entity_claims:
- claim_type: full_name - claim_type: full_name
claim_value: Střední průmyslová škola, Ostrov - Školní knihovna claim_value: Střední průmyslová škola, Ostrov - Školní knihovna
@ -218,3 +219,22 @@ location:
geonames_id: 3068766 geonames_id: 3068766
geonames_name: Ostrov geonames_name: Ostrov
feature_code: PPL feature_code: PPL
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:06:47.642569+00:00'
source_url: https://spsostrov.cz/skolni-knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://spsostrov.cz/themes/spsostrov/favicons/safari-pinned-tab.svg
source_url: https://spsostrov.cz/skolni-knihovna
css_selector: '[document] > html.js.wf-ingra-n8-active > head > link:nth-of-type(5)'
retrieved_on: '2025-12-24T12:06:47.642569+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-OST-L-MKOPO - ghcid: CZ-41-OST-L-MKOPO
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-OST-L-MKOPO - ghcid: CZ-KA-OST-L-MKOPO
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-OST-L-MKOPO - ghcid: CZ-KA-OST-L-MKOPO
ghcid_numeric: 7481996434421562254 ghcid_numeric: 7481996434421562254
valid_from: '2025-12-06T23:37:18.416223+00:00' valid_from: '2025-12-06T23:37:18.416223+00:00'
@ -224,3 +225,28 @@ location:
postal_code: 363 01 postal_code: 363 01
street_address: Zámecký park 224 street_address: Zámecký park 224
normalization_timestamp: '2025-12-09T10:52:57.226148+00:00' normalization_timestamp: '2025-12-09T10:52:57.226148+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:06:54.058932+00:00'
source_url: https://mkostrov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://mkostrov.cz/favico/apple-icon-180x180.png
source_url: https://mkostrov.cz
css_selector: '[document] > html > head > link:nth-of-type(11)'
retrieved_on: '2025-12-24T12:06:54.058932+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
- claim_type: og_image_url
claim_value: https://mkostrov.cz/images/logo_opengraphv3.png
source_url: https://mkostrov.cz
css_selector: '[document] > html > head > meta:nth-of-type(19)'
retrieved_on: '2025-12-24T12:06:54.058932+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 13

View file

@ -211,3 +211,22 @@ location:
postal_code: 351 35 postal_code: 351 35
street_address: nám. Svobody 52 street_address: nám. Svobody 52
normalization_timestamp: '2025-12-09T10:52:57.396222+00:00' normalization_timestamp: '2025-12-09T10:52:57.396222+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:07:22.602610+00:00'
source_url: https://www.mestoplesna.cz/knihovna/mestska-knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.mestoplesna.cz/skins/plesna_lego2/favicons/safari-pinned-tab.svg
source_url: https://www.mestoplesna.cz/knihovna/mestska-knihovna
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-24T12:07:22.602610+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-ROV-L-MKR - ghcid: CZ-41-ROV-L-MKR
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-ROV-L-MKR - ghcid: CZ-KA-ROV-L-MKR
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-ROV-L-MKR - ghcid: CZ-KA-ROV-L-MKR
ghcid_numeric: 7020296734490065669 ghcid_numeric: 7020296734490065669
valid_from: '2025-12-06T23:37:39.999114+00:00' valid_from: '2025-12-06T23:37:39.999114+00:00'
@ -205,3 +206,22 @@ location:
postal_code: 357 65 postal_code: 357 65
street_address: Rovná 35 street_address: Rovná 35
normalization_timestamp: '2025-12-09T10:52:57.472136+00:00' normalization_timestamp: '2025-12-09T10:52:57.472136+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:07:34.167533+00:00'
source_url: https://rovna-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://rovna-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://rovna-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:07:34.167533+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-SIN-L-MKS - ghcid: CZ-41-SIN-L-MKS
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-SIN-L-MKS - ghcid: CZ-KA-SIN-L-MKS
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-SIN-L-MKS - ghcid: CZ-KA-SIN-L-MKS
ghcid_numeric: 708111447463750223 ghcid_numeric: 708111447463750223
valid_from: '2025-12-08T11:21:25.168085+00:00' valid_from: '2025-12-08T11:21:25.168085+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 357 06 postal_code: 357 06
street_address: Šindelová 117 street_address: Šindelová 117
normalization_timestamp: '2025-12-09T10:52:57.497566+00:00' normalization_timestamp: '2025-12-09T10:52:57.497566+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:07:38.914821+00:00'
source_url: https://sindelova-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://sindelova-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://sindelova-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:07:38.914821+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -211,3 +211,30 @@ location:
postal_code: 351 34 postal_code: 351 34
street_address: Křižovatka 103 street_address: Křižovatka 103
normalization_timestamp: '2025-12-09T10:52:57.525244+00:00' normalization_timestamp: '2025-12-09T10:52:57.525244+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:07:43.541710+00:00'
source_url: https://knihovnakrizovatka.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnakrizovatka.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnakrizovatka.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:07:43.541710+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnakrizovatka.webk.cz/themes/new/favicon.ico
source_url: https://knihovnakrizovatka.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:07:43.541710+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-SKA-L-OKVNK - ghcid: CZ-41-SKA-L-OKVNK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-SKA-L-OKVNK - ghcid: CZ-KA-SKA-L-OKVNK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-SKA-L-OKVNK - ghcid: CZ-KA-SKA-L-OKVNK
ghcid_numeric: 12767763852792053302 ghcid_numeric: 12767763852792053302
valid_from: '2025-12-06T23:37:39.791484+00:00' valid_from: '2025-12-06T23:37:39.791484+00:00'
@ -208,3 +209,30 @@ location:
postal_code: 351 34 postal_code: 351 34
street_address: Nový Kostel 27 street_address: Nový Kostel 27
normalization_timestamp: '2025-12-09T10:52:57.552153+00:00' normalization_timestamp: '2025-12-09T10:52:57.552153+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:07:48.149521+00:00'
source_url: https://knihovnanovykostel.webk.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://knihovnanovykostel.webk.cz/themes/new/green/logo1.png
source_url: https://knihovnanovykostel.webk.cz
css_selector: '#outpage > header.tmava > a > img.mobile_display_none'
retrieved_on: '2025-12-24T12:07:48.149521+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Na úvodní stranu
- claim_type: favicon_url
claim_value: https://knihovnanovykostel.webk.cz/themes/new/favicon.ico
source_url: https://knihovnanovykostel.webk.cz
css_selector: '[document] > html > head > link:nth-of-type(4)'
retrieved_on: '2025-12-24T12:07:48.149521+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-SOK-E-GSK - ghcid: CZ-41-SOK-E-GSK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-SOK-E-GSK - ghcid: CZ-KA-SOK-E-GSK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-SOK-E-GSK - ghcid: CZ-KA-SOK-E-GSK
ghcid_numeric: 12711541841048367910 ghcid_numeric: 12711541841048367910
valid_from: '2025-12-06T23:37:21.345955+00:00' valid_from: '2025-12-06T23:37:21.345955+00:00'
@ -210,3 +211,31 @@ location:
postal_code: 356 11 postal_code: 356 11
street_address: Husitská 2053 street_address: Husitská 2053
normalization_timestamp: '2025-12-09T10:52:57.576355+00:00' normalization_timestamp: '2025-12-09T10:52:57.576355+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:07:59.024794+00:00'
source_url: https://www.gymso.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.gymso.cz/wp-content/themes/gymso/images/logo.svg
source_url: https://www.gymso.cz
css_selector: '[document] > html > body.home.blog > header.main-header--homepage.main-header
> div.main-header__top-row > div.main-header__top-row__content > a > img.logo'
retrieved_on: '2025-12-24T12:07:59.024794+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: ''
- claim_type: favicon_url
claim_value: https://www.gymso.cz/wp-content/uploads/2025/10/cropped-favicon-180x180.png
source_url: https://www.gymso.cz
css_selector: '[document] > html > head > link:nth-of-type(10)'
retrieved_on: '2025-12-24T12:07:59.024794+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-SOK-L-SSTK - ghcid: CZ-41-SOK-L-SSTK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-SOK-L-SSTK - ghcid: CZ-KA-SOK-L-SSTK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-SOK-L-SSTK - ghcid: CZ-KA-SOK-L-SSTK
ghcid_numeric: 14773621638028794981 ghcid_numeric: 14773621638028794981
valid_from: '2025-12-06T23:37:19.946242+00:00' valid_from: '2025-12-06T23:37:19.946242+00:00'
@ -211,3 +212,28 @@ location:
postal_code: 356 01 postal_code: 356 01
street_address: Tovární 2093 street_address: Tovární 2093
normalization_timestamp: '2025-12-09T10:52:57.634479+00:00' normalization_timestamp: '2025-12-09T10:52:57.634479+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:08:06.054354+00:00'
source_url: https://www.synthomer.com/about-us/global-locations/sokolov-czech-republic/?utm_source=mapy.com&utm_medium=ppd&utm_content=hledani&utm_term=Tov%C3%A1rn%C3%AD%202093&utm_campaign=firmy.cz-197566
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.synthomer.com/apple-icon-180x180.png
source_url: https://www.synthomer.com/about-us/global-locations/sokolov-czech-republic/?utm_source=mapy.com&utm_medium=ppd&utm_content=hledani&utm_term=Tov%C3%A1rn%C3%AD%202093&utm_campaign=firmy.cz-197566
css_selector: '[document] > html.no-touch.loaded > head > link:nth-of-type(9)'
retrieved_on: '2025-12-24T12:08:06.054354+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
- claim_type: og_image_url
claim_value: https://www.synthomer.com/media/hggp3k0g/shutterstock_1922200235.jpeg
source_url: https://www.synthomer.com/about-us/global-locations/sokolov-czech-republic/?utm_source=mapy.com&utm_medium=ppd&utm_content=hledani&utm_term=Tov%C3%A1rn%C3%AD%202093&utm_campaign=firmy.cz-197566
css_selector: '[document] > html.no-touch.loaded > head > meta:nth-of-type(8)'
retrieved_on: '2025-12-24T12:08:06.054354+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 13

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-STR-L-MKS - ghcid: CZ-41-STR-L-MKS
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-STR-L-MKS - ghcid: CZ-KA-STR-L-MKS
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-STR-L-MKS - ghcid: CZ-KA-STR-L-MKS
ghcid_numeric: 11970002121306332549 ghcid_numeric: 11970002121306332549
valid_from: '2025-12-06T23:37:39.993279+00:00' valid_from: '2025-12-06T23:37:39.993279+00:00'
@ -208,3 +209,22 @@ location:
postal_code: 358 01 postal_code: 358 01
street_address: Stříbrná 670 street_address: Stříbrná 670
normalization_timestamp: '2025-12-09T10:52:57.715529+00:00' normalization_timestamp: '2025-12-09T10:52:57.715529+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:08:19.315431+00:00'
source_url: https://stribrna-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://stribrna-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://stribrna-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:08:19.315431+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -215,3 +215,22 @@ location:
postal_code: 357 03 postal_code: 357 03
street_address: ČSA 247 street_address: ČSA 247
normalization_timestamp: '2025-12-09T10:52:57.828957+00:00' normalization_timestamp: '2025-12-09T10:52:57.828957+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:08:33.082893+00:00'
source_url: https://svatava-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://svatava-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://svatava-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:08:33.082893+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-TEP-H-KPTHK - ghcid: CZ-41-TEP-H-KPTHK
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-TEP-H-KPTHK - ghcid: CZ-KA-TEP-H-KPTHK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-TEP-H-KPTHK - ghcid: CZ-KA-TEP-H-KPTHK
ghcid_numeric: 8753210883081105004 ghcid_numeric: 8753210883081105004
valid_from: '2025-12-06T23:37:18.364527+00:00' valid_from: '2025-12-06T23:37:18.364527+00:00'
@ -215,3 +216,22 @@ location:
postal_code: 364 61 postal_code: 364 61
street_address: Klášter č.p.1 street_address: Klášter č.p.1
normalization_timestamp: '2025-12-09T10:52:57.910634+00:00' normalization_timestamp: '2025-12-09T10:52:57.910634+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:08:43.921718+00:00'
source_url: https://klastertepla.cz/klasterni-knihovna/historie-knihovny.html
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://klastertepla.cz/kt.ico
source_url: https://klastertepla.cz/klasterni-knihovna/historie-knihovny.html
css_selector: '[document] > html > head > link:nth-of-type(18)'
retrieved_on: '2025-12-24T12:08:43.921718+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-VEL-L-OKVVH - ghcid: CZ-41-VEL-L-OKVVH
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-VEL-L-OKVVH - ghcid: CZ-KA-VEL-L-OKVVH
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-VEL-L-OKVVH - ghcid: CZ-KA-VEL-L-OKVVH
ghcid_numeric: 1747422620357135098 ghcid_numeric: 1747422620357135098
valid_from: '2025-12-06T23:37:39.782361+00:00' valid_from: '2025-12-06T23:37:39.782361+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 354 71 postal_code: 354 71
street_address: Velká Hleďsebe street_address: Velká Hleďsebe
normalization_timestamp: '2025-12-09T10:52:58.011315+00:00' normalization_timestamp: '2025-12-09T10:52:58.011315+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:09:05.782839+00:00'
source_url: https://kvc.tritius.cz/library/velka-hledsebe?device=1
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://kvc.tritius.cz/apple-touch-icon-180x180.png
source_url: https://kvc.tritius.cz/library/velka-hledsebe?device=1
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:09:05.782839+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -213,3 +213,22 @@ location:
postal_code: 357 44 postal_code: 357 44
street_address: Vintířov 61 street_address: Vintířov 61
normalization_timestamp: '2025-12-09T10:52:58.077841+00:00' normalization_timestamp: '2025-12-09T10:52:58.077841+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:09:19.805801+00:00'
source_url: https://vintirov-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://vintirov-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://vintirov-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:09:19.805801+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-41-VRE-L-OKVV - ghcid: CZ-41-VRE-L-OKVV
valid_from: "2025-12-10T09:47:03Z" valid_from: '2025-12-10T09:47:03Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-KA to CZ-41 (Karlovy Vary (Karlovarský))
per ISO 3166-2:CZ
- ghcid: CZ-KA-VRE-L-OKVV - ghcid: CZ-KA-VRE-L-OKVV
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:03Z" valid_to: '2025-12-10T09:47:03Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-KA-VRE-L-OKVV - ghcid: CZ-KA-VRE-L-OKVV
ghcid_numeric: 5095545501988238189 ghcid_numeric: 5095545501988238189
valid_from: '2025-12-06T23:37:39.977760+00:00' valid_from: '2025-12-06T23:37:39.977760+00:00'
@ -212,3 +213,22 @@ location:
postal_code: 357 43 postal_code: 357 43
street_address: Vřesová 3 street_address: Vřesová 3
normalization_timestamp: '2025-12-09T10:52:58.102812+00:00' normalization_timestamp: '2025-12-09T10:52:58.102812+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:09:24.540960+00:00'
source_url: https://vresova-katalog.mksokolov.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://vresova-katalog.mksokolov.cz/themes/root/images/vufind-favicon.ico
source_url: https://vresova-katalog.mksokolov.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:09:24.540960+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-ARN-L-OKA - ghcid: CZ-42-ARN-L-OKA
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-ARN-L-OKA - ghcid: CZ-US-ARN-L-OKA
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-ARN-L-OKA - ghcid: CZ-US-ARN-L-OKA
ghcid_numeric: 13275823119967121596 ghcid_numeric: 13275823119967121596
valid_from: '2025-12-06T23:37:41.190518+00:00' valid_from: '2025-12-06T23:37:41.190518+00:00'
@ -212,3 +213,37 @@ location:
postal_code: 407 14 postal_code: 407 14
street_address: Arnoltice 34 street_address: Arnoltice 34
normalization_timestamp: '2025-12-09T10:54:13.809820+00:00' normalization_timestamp: '2025-12-09T10:54:13.809820+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:09:42.935165+00:00'
source_url: http://www.ouarnoltice.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: http://www.ouarnoltice.cz/images/local/v-202510061025/znak.svg
source_url: http://www.ouarnoltice.cz
css_selector: '[document] > html.no-js > body > header.header.-home-header > div.centered.-wide
> div.header__heading-container > img.header__logo'
retrieved_on: '2025-12-24T12:09:42.935165+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Znak Arnoltice
- claim_type: favicon_url
claim_value: http://www.ouarnoltice.cz/images/local/icons/favicon.svg
source_url: http://www.ouarnoltice.cz
css_selector: '[document] > html.no-js > head > link:nth-of-type(5)'
retrieved_on: '2025-12-24T12:09:42.935165+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/svg+xml
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://www.ouarnoltice.cz/images/local/v-202510061025/logo-social-networks.jpg
source_url: http://www.ouarnoltice.cz
css_selector: '[document] > html.no-js > head > meta:nth-of-type(9)'
retrieved_on: '2025-12-24T12:09:42.935165+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 3
has_primary_logo: true
has_favicon: true
has_og_image: true
favicon_count: 4

View file

@ -206,3 +206,22 @@ location:
postal_code: 411 86 postal_code: 411 86
street_address: Bechlín 162 street_address: Bechlín 162
normalization_timestamp: '2025-12-09T10:54:13.834722+00:00' normalization_timestamp: '2025-12-09T10:54:13.834722+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:09:47.833660+00:00'
source_url: https://bechlin-katalog.knihovnalitomerice.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://bechlin-katalog.knihovnalitomerice.cz/themes/root/images/vufind-favicon.ico
source_url: https://bechlin-katalog.knihovnalitomerice.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:09:47.833660+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -181,3 +181,22 @@ wikidata_enrichment:
enrichment_version: 2.1.0 enrichment_version: 2.1.0
instance_of: instance_of:
- Q2326815 - Q2326815
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:10:03.205378+00:00'
source_url: https://www.knihovnamerunice.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.knihovnamerunice.cz/skins/knihovnamerunice.cz_lego2/favicons/safari-pinned-tab.svg
source_url: https://www.knihovnamerunice.cz
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-24T12:10:03.205378+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -48,13 +48,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-BIL-L-SDSK - ghcid: CZ-42-BIL-L-SDSK
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-BIL-L-SDSK - ghcid: CZ-US-BIL-L-SDSK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-BIL-L-SDSK - ghcid: CZ-US-BIL-L-SDSK
ghcid_numeric: 10518492538635858722 ghcid_numeric: 10518492538635858722
valid_from: '2025-12-06T23:37:17.456327+00:00' valid_from: '2025-12-06T23:37:17.456327+00:00'
@ -218,3 +219,22 @@ location:
country: *id007 country: *id007
postal_code: 418 01 postal_code: 418 01
normalization_timestamp: '2025-12-09T10:54:13.978196+00:00' normalization_timestamp: '2025-12-09T10:54:13.978196+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:10:10.575335+00:00'
source_url: https://www.sdas.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.sdas.cz/src/images/favicons/apple-icon-180x180.png
source_url: https://www.sdas.cz
css_selector: '[document] > html > head > link:nth-of-type(9)'
retrieved_on: '2025-12-24T12:10:10.575335+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 13

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-BLS-L-OKB - ghcid: CZ-42-BLS-L-OKB
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-BLS-L-OKB - ghcid: CZ-US-BLS-L-OKB
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-BLS-L-OKB - ghcid: CZ-US-BLS-L-OKB
ghcid_numeric: 2721747066063788546 ghcid_numeric: 2721747066063788546
valid_from: '2025-12-06T23:37:41.548652+00:00' valid_from: '2025-12-06T23:37:41.548652+00:00'
@ -208,3 +209,22 @@ location:
postal_code: 439 88 postal_code: 439 88
street_address: Nerudova 1 street_address: Nerudova 1
normalization_timestamp: '2025-12-09T10:54:14.020481+00:00' normalization_timestamp: '2025-12-09T10:54:14.020481+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:10:17.216198+00:00'
source_url: https://tritius.mekzatec.cz/library/blsany
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://tritius.mekzatec.cz/apple-touch-icon-180x180.png
source_url: https://tritius.mekzatec.cz/library/blsany
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:10:17.216198+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -219,3 +219,22 @@ location:
postal_code: 431 21 postal_code: 431 21
street_address: Boleboř 57 street_address: Boleboř 57
normalization_timestamp: '2025-12-09T10:54:14.053176+00:00' normalization_timestamp: '2025-12-09T10:54:14.053176+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:10:22.800535+00:00'
source_url: https://chomutovskaknihovna.tritius.cz/library/bolebor
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://chomutovskaknihovna.tritius.cz/apple-touch-icon-180x180.png
source_url: https://chomutovskaknihovna.tritius.cz/library/bolebor
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:10:22.800535+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -38,13 +38,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-BOR-L-MKB - ghcid: CZ-42-BOR-L-MKB
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-BOR-L-MKB - ghcid: CZ-US-BOR-L-MKB
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-BOR-L-MKB - ghcid: CZ-US-BOR-L-MKB
ghcid_numeric: 9991362085365591522 ghcid_numeric: 9991362085365591522
valid_from: '2025-12-06T23:37:26.483578+00:00' valid_from: '2025-12-06T23:37:26.483578+00:00'
@ -103,8 +104,8 @@ ch_annotator:
annotation_metadata: annotation_metadata:
confidence_score: 0.95 confidence_score: 0.95
verified: false verified: false
verification_date: verification_date: null
verified_by: verified_by: null
entity_claims: entity_claims:
- claim_type: full_name - claim_type: full_name
claim_value: Místní knihovna Bořislav claim_value: Místní knihovna Bořislav
@ -209,3 +210,22 @@ location:
geocoding_timestamp: '2025-12-09T21:40:12.657389+00:00' geocoding_timestamp: '2025-12-09T21:40:12.657389+00:00'
geocoding_method: CITY_NAME_LOOKUP geocoding_method: CITY_NAME_LOOKUP
geonames_matched_name: Bořislav geonames_matched_name: Bořislav
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:10:28.985348+00:00'
source_url: https://tritius.knihovna-teplice.cz/library/borislav
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://tritius.knihovna-teplice.cz/apple-touch-icon-180x180.png
source_url: https://tritius.knihovna-teplice.cz/library/borislav
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:10:28.985348+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-BRE-L-MVKB - ghcid: CZ-42-BRE-L-MVKB
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-BRE-L-MVKB - ghcid: CZ-US-BRE-L-MVKB
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-BRE-L-MVKB - ghcid: CZ-US-BRE-L-MVKB
ghcid_numeric: 14224218243385237290 ghcid_numeric: 14224218243385237290
valid_from: '2025-12-06T23:37:41.254321+00:00' valid_from: '2025-12-06T23:37:41.254321+00:00'
@ -212,3 +213,22 @@ location:
postal_code: 431 45 postal_code: 431 45
street_address: Štefánikova 82 street_address: Štefánikova 82
normalization_timestamp: '2025-12-09T10:54:14.104010+00:00' normalization_timestamp: '2025-12-09T10:54:14.104010+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:10:34.449881+00:00'
source_url: https://chomutovskaknihovna.tritius.cz/library/brezno
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://chomutovskaknihovna.tritius.cz/apple-touch-icon-180x180.png
source_url: https://chomutovskaknihovna.tritius.cz/library/brezno
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:10:34.449881+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-BRN-L-MKB - ghcid: CZ-42-BRN-L-MKB
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-BRN-L-MKB - ghcid: CZ-US-BRN-L-MKB
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-BRN-L-MKB - ghcid: CZ-US-BRN-L-MKB
ghcid_numeric: 17263519821302680711 ghcid_numeric: 17263519821302680711
valid_from: '2025-12-06T23:37:41.354877+00:00' valid_from: '2025-12-06T23:37:41.354877+00:00'
@ -212,3 +213,22 @@ location:
postal_code: 411 19 postal_code: 411 19
street_address: Brníkov 106 street_address: Brníkov 106
normalization_timestamp: '2025-12-09T10:54:14.130392+00:00' normalization_timestamp: '2025-12-09T10:54:14.130392+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:10:39.308858+00:00'
source_url: https://brnikov-katalog.knihovnalitomerice.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://brnikov-katalog.knihovnalitomerice.cz/themes/root/images/vufind-favicon.ico
source_url: https://brnikov-katalog.knihovnalitomerice.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:10:39.308858+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -1216,3 +1216,28 @@ youtube_enrichment:
comments: [] comments: []
thumbnail_url: https://i.ytimg.com/vi/mF-wZjzHk9k/hqdefault.jpg thumbnail_url: https://i.ytimg.com/vi/mF-wZjzHk9k/hqdefault.jpg
status: SUCCESS status: SUCCESS
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:10:46.452294+00:00'
source_url: https://www.muzeumbrna.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.muzeumbrna.cz/front/_starter/fav/safari-pinned-tab.svg
source_url: https://www.muzeumbrna.cz
css_selector: '[document] > html.show--consent > head > link:nth-of-type(13)'
retrieved_on: '2025-12-24T12:10:46.452294+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: https://static.viaaurea.eu//t/muzeumbrna.cz/images/9130.jpg/o-w:800|h:800|fit:crop-50-50/s-2ffdb849d4ca?_ts=1706789404
source_url: https://www.muzeumbrna.cz
css_selector: '[document] > html.show--consent > head > meta:nth-of-type(13)'
retrieved_on: '2025-12-24T12:10:46.452294+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 5

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-BRO-L-MKBNO - ghcid: CZ-42-BRO-L-MKBNO
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-BRO-L-MKBNO - ghcid: CZ-US-BRO-L-MKBNO
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-BRO-L-MKBNO - ghcid: CZ-US-BRO-L-MKBNO
ghcid_numeric: 12245727763634698787 ghcid_numeric: 12245727763634698787
valid_from: '2025-12-06T23:37:41.429752+00:00' valid_from: '2025-12-06T23:37:41.429752+00:00'
@ -208,3 +209,22 @@ location:
postal_code: 411 81 postal_code: 411 81
street_address: Brozany nad Ohří 350 street_address: Brozany nad Ohří 350
normalization_timestamp: '2025-12-09T10:54:14.155596+00:00' normalization_timestamp: '2025-12-09T10:54:14.155596+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:12:53.064004+00:00'
source_url: https://brozany-katalog.knihovnalitomerice.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://brozany-katalog.knihovnalitomerice.cz/themes/root/images/vufind-favicon.ico
source_url: https://brozany-katalog.knihovnalitomerice.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:12:53.064004+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-BUD-L-MKBNO - ghcid: CZ-42-BUD-L-MKBNO
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-BUD-L-MKBNO - ghcid: CZ-US-BUD-L-MKBNO
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-BUD-L-MKBNO - ghcid: CZ-US-BUD-L-MKBNO
ghcid_numeric: 15361878527561950395 ghcid_numeric: 15361878527561950395
valid_from: '2025-12-06T23:37:18.601009+00:00' valid_from: '2025-12-06T23:37:18.601009+00:00'
@ -216,3 +217,28 @@ location:
postal_code: 411 18 postal_code: 411 18
street_address: Školská 322 street_address: Školská 322
normalization_timestamp: '2025-12-09T10:54:14.178541+00:00' normalization_timestamp: '2025-12-09T10:54:14.178541+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:13:00.159037+00:00'
source_url: https://budyne.knihovna.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://duyn491kcolsw.cloudfront.net/files/2d/2di/2div3h.svg?ph=52b12a5cea
source_url: https://budyne.knihovna.cz
css_selector: '[document] > html.js.sizes > head > link:nth-of-type(3)'
retrieved_on: '2025-12-24T12:13:00.159037+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/svg+xml
favicon_sizes: any
- claim_type: og_image_url
claim_value: https://52b12a5cea.clvaw-cdnwnd.com/9f7fbaf0ce8eac6131e89cd44505a07b/200000192-f04ebf04ed/700/LOGO-col.png?ph=52b12a5cea
source_url: https://budyne.knihovna.cz
css_selector: '[document] > html.js.sizes > head > meta:nth-of-type(16)'
retrieved_on: '2025-12-24T12:13:00.159037+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 3

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-CES-L-MKCK - ghcid: CZ-42-CES-L-MKCK
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-CES-L-MKCK - ghcid: CZ-US-CES-L-MKCK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-CES-L-MKCK - ghcid: CZ-US-CES-L-MKCK
ghcid_numeric: 13330142640920894784 ghcid_numeric: 13330142640920894784
valid_from: '2025-12-08T11:21:34.594561+00:00' valid_from: '2025-12-08T11:21:34.594561+00:00'
@ -221,3 +222,22 @@ location:
postal_code: 407 21 postal_code: 407 21
street_address: Komenského 481 street_address: Komenského 481
normalization_timestamp: '2025-12-09T10:54:14.283893+00:00' normalization_timestamp: '2025-12-09T10:54:14.283893+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:13:20.116478+00:00'
source_url: https://ckknihovna.tritius.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://ckknihovna.tritius.cz/apple-touch-icon-180x180.png
source_url: https://ckknihovna.tritius.cz
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:13:20.116478+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-CHB-L-OKVC - ghcid: CZ-42-CHB-L-OKVC
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-CHB-L-OKVC - ghcid: CZ-US-CHB-L-OKVC
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-CHB-L-OKVC - ghcid: CZ-US-CHB-L-OKVC
ghcid_numeric: 9406307324806480427 ghcid_numeric: 9406307324806480427
valid_from: '2025-12-06T23:37:41.323207+00:00' valid_from: '2025-12-06T23:37:41.323207+00:00'
@ -212,3 +213,22 @@ location:
postal_code: 431 57 postal_code: 431 57
street_address: Chbany 19 street_address: Chbany 19
normalization_timestamp: '2025-12-09T10:54:14.336966+00:00' normalization_timestamp: '2025-12-09T10:54:14.336966+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:14:01.032672+00:00'
source_url: https://chomutovskaknihovna.tritius.cz/library/chbany
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://chomutovskaknihovna.tritius.cz/apple-touch-icon-180x180.png
source_url: https://chomutovskaknihovna.tritius.cz/library/chbany
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:14:01.032672+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -179,3 +179,31 @@ wikidata_enrichment:
instance_of: instance_of:
- Q2326815 - Q2326815
located_in: Q146356 located_in: Q146356
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:14:08.883186+00:00'
source_url: https://chomutovskaknihovna.tritius.cz
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://chomutovskaknihovna.tritius.cz/images/comgate_logo.png
source_url: https://chomutovskaknihovna.tritius.cz
css_selector: '#footer > div.container > nav.row.hidden-print > div.col-sm-12.col-md-6
> div.comgate-logo > span > img'
retrieved_on: '2025-12-24T12:14:08.883186+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Comgate
- claim_type: favicon_url
claim_value: https://chomutovskaknihovna.tritius.cz/apple-touch-icon-180x180.png
source_url: https://chomutovskaknihovna.tritius.cz
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:14:08.883186+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -215,3 +215,22 @@ location:
postal_code: 417 53 postal_code: 417 53
street_address: Tyršova 56 street_address: Tyršova 56
normalization_timestamp: '2025-12-09T10:54:14.391149+00:00' normalization_timestamp: '2025-12-09T10:54:14.391149+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:14:17.517574+00:00'
source_url: https://tritius.knihovna-teplice.cz/library/chotejovice
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://tritius.knihovna-teplice.cz/apple-touch-icon-180x180.png
source_url: https://tritius.knihovna-teplice.cz/library/chotejovice
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:14:17.517574+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-CHO-L-OKVB-obecni_knihovna_v_blatne - ghcid: CZ-42-CHO-L-OKVB-obecni_knihovna_v_blatne
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-CHO-L-OKVB-obecni_knihovna_v_blatne - ghcid: CZ-US-CHO-L-OKVB-obecni_knihovna_v_blatne
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-CHO-L-OKVB-obecni_knihovna_v_blatne - ghcid: CZ-US-CHO-L-OKVB-obecni_knihovna_v_blatne
ghcid_numeric: 13316460585372269779 ghcid_numeric: 13316460585372269779
valid_from: '2025-12-06T23:37:41.302583+00:00' valid_from: '2025-12-06T23:37:41.302583+00:00'
@ -212,3 +213,22 @@ location:
postal_code: 430 01 postal_code: 430 01
street_address: Blatno 1 street_address: Blatno 1
normalization_timestamp: '2025-12-09T10:54:14.415934+00:00' normalization_timestamp: '2025-12-09T10:54:14.415934+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:14:23.516686+00:00'
source_url: https://chomutovskaknihovna.tritius.cz/library/blatno
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://chomutovskaknihovna.tritius.cz/apple-touch-icon-180x180.png
source_url: https://chomutovskaknihovna.tritius.cz/library/blatno
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:14:23.516686+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-CHO-L-OKVB - ghcid: CZ-42-CHO-L-OKVB
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-CHO-L-OKVB - ghcid: CZ-US-CHO-L-OKVB
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-CHO-L-OKVB - ghcid: CZ-US-CHO-L-OKVB
ghcid_numeric: 12504728136404443676 ghcid_numeric: 12504728136404443676
valid_from: '2025-12-06T23:37:41.291019+00:00' valid_from: '2025-12-06T23:37:41.291019+00:00'
@ -214,3 +215,22 @@ location:
postal_code: 430 01 postal_code: 430 01
street_address: Bílence 45 street_address: Bílence 45
normalization_timestamp: '2025-12-09T10:54:14.442391+00:00' normalization_timestamp: '2025-12-09T10:54:14.442391+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:14:30.203154+00:00'
source_url: https://chomutovskaknihovna.tritius.cz/library/bilence
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://chomutovskaknihovna.tritius.cz/apple-touch-icon-180x180.png
source_url: https://chomutovskaknihovna.tritius.cz/library/bilence
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:14:30.203154+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-CHO-L-OKVK - ghcid: CZ-42-CHO-L-OKVK
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-CHO-L-OKVK - ghcid: CZ-US-CHO-L-OKVK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-CHO-L-OKVK - ghcid: CZ-US-CHO-L-OKVK
ghcid_numeric: 16669272234726585170 ghcid_numeric: 16669272234726585170
valid_from: '2025-12-06T23:37:41.320307+00:00' valid_from: '2025-12-06T23:37:41.320307+00:00'
@ -212,3 +213,22 @@ location:
postal_code: 430 01 postal_code: 430 01
street_address: Křimov 1 street_address: Křimov 1
normalization_timestamp: '2025-12-09T10:54:14.467574+00:00' normalization_timestamp: '2025-12-09T10:54:14.467574+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:14:35.910261+00:00'
source_url: https://chomutovskaknihovna.tritius.cz/library/krimov
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://chomutovskaknihovna.tritius.cz/apple-touch-icon-180x180.png
source_url: https://chomutovskaknihovna.tritius.cz/library/krimov
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:14:35.910261+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-CHO-L-OKVV - ghcid: CZ-42-CHO-L-OKVV
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-CHO-L-OKVV - ghcid: CZ-US-CHO-L-OKVV
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-CHO-L-OKVV - ghcid: CZ-US-CHO-L-OKVV
ghcid_numeric: 7061372218483594045 ghcid_numeric: 7061372218483594045
valid_from: '2025-12-06T23:37:41.285347+00:00' valid_from: '2025-12-06T23:37:41.285347+00:00'
@ -208,3 +209,22 @@ location:
postal_code: 430 01 postal_code: 430 01
street_address: Všehrdy 29 street_address: Všehrdy 29
normalization_timestamp: '2025-12-09T10:54:14.493725+00:00' normalization_timestamp: '2025-12-09T10:54:14.493725+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:14:41.666081+00:00'
source_url: https://chomutovskaknihovna.tritius.cz/library/vsehrdy
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://chomutovskaknihovna.tritius.cz/apple-touch-icon-180x180.png
source_url: https://chomutovskaknihovna.tritius.cz/library/vsehrdy
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:14:41.666081+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-CHR-L-MKC - ghcid: CZ-42-CHR-L-MKC
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-CHR-L-MKC - ghcid: CZ-US-CHR-L-MKC
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-CHR-L-MKC - ghcid: CZ-US-CHR-L-MKC
ghcid_numeric: 9533138026999224517 ghcid_numeric: 9533138026999224517
valid_from: '2025-12-06T23:37:41.143177+00:00' valid_from: '2025-12-06T23:37:41.143177+00:00'
@ -222,3 +223,22 @@ location:
postal_code: 407 44 postal_code: 407 44
street_address: Chřibská 197 street_address: Chřibská 197
normalization_timestamp: '2025-12-09T10:54:14.553210+00:00' normalization_timestamp: '2025-12-09T10:54:14.553210+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:14:54.521093+00:00'
source_url: https://decin.tritius.cz/library/region
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://decin.tritius.cz/apple-touch-icon-180x180.png
source_url: https://decin.tritius.cz/library/region
css_selector: '[document] > html > head > link:nth-of-type(14)'
retrieved_on: '2025-12-24T12:14:54.521093+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 180x180
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 14

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-CIT-L-MKC - ghcid: CZ-42-CIT-L-MKC
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-CIT-L-MKC - ghcid: CZ-US-CIT-L-MKC
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-CIT-L-MKC - ghcid: CZ-US-CIT-L-MKC
ghcid_numeric: 8083077140325280206 ghcid_numeric: 8083077140325280206
valid_from: '2025-12-06T23:37:41.579025+00:00' valid_from: '2025-12-06T23:37:41.579025+00:00'
@ -205,3 +206,22 @@ location:
postal_code: 439 02 postal_code: 439 02
street_address: Zeměšská 219 street_address: Zeměšská 219
normalization_timestamp: '2025-12-09T10:54:14.581958+00:00' normalization_timestamp: '2025-12-09T10:54:14.581958+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:15:01.873072+00:00'
source_url: https://www.obec-citoliby.cz/mestys/mistni-knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.obec-citoliby.cz/skins/obec-citoliby.cz_lego2/favicons/safari-pinned-tab.svg
source_url: https://www.obec-citoliby.cz/mestys/mistni-knihovna
css_selector: '[document] > html > head > link:nth-of-type(5)'
retrieved_on: '2025-12-24T12:15:01.873072+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 5

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-CIZ-L-MKC - ghcid: CZ-42-CIZ-L-MKC
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-CIZ-L-MKC - ghcid: CZ-US-CIZ-L-MKC
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-CIZ-L-MKC - ghcid: CZ-US-CIZ-L-MKC
ghcid_numeric: 9459489336741360858 ghcid_numeric: 9459489336741360858
valid_from: '2025-12-08T11:21:32.155312+00:00' valid_from: '2025-12-08T11:21:32.155312+00:00'
@ -216,3 +217,22 @@ location:
postal_code: 411 12 postal_code: 411 12
street_address: Jiráskova 143 street_address: Jiráskova 143
normalization_timestamp: '2025-12-09T10:54:14.630679+00:00' normalization_timestamp: '2025-12-09T10:54:14.630679+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:15:08.790196+00:00'
source_url: https://cizkovice-katalog.knihovnalitomerice.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://cizkovice-katalog.knihovnalitomerice.cz/themes/root/images/vufind-favicon.ico
source_url: https://cizkovice-katalog.knihovnalitomerice.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:15:08.790196+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -163,3 +163,22 @@ location:
postal_code: 405 35 postal_code: 405 35
street_address: Ústecká 37 street_address: Ústecká 37
normalization_timestamp: '2025-12-09T06:52:51.140576+00:00' normalization_timestamp: '2025-12-09T06:52:51.140576+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:15:19.946738+00:00'
source_url: https://www.constellium.com
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.constellium.com/src/images/favicon/favicon-192X192.png?v=aa27c60b4bf75b2aac42ac941dd27577
source_url: https://www.constellium.com
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-24T12:15:19.946738+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: 192x192
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 3

View file

@ -185,3 +185,22 @@ wikidata_enrichment:
enrichment_version: 2.1.0 enrichment_version: 2.1.0
instance_of: instance_of:
- Q6150991 - Q6150991
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:15:30.047102+00:00'
source_url: https://www.kzcr.eu
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.kzcr.eu/favicon.ico
source_url: https://www.kzcr.eu
css_selector: '#html > head > link'
retrieved_on: '2025-12-24T12:15:30.047102+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-DEC-L-OKVM - ghcid: CZ-42-DEC-L-OKVM
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-DEC-L-OKVM - ghcid: CZ-US-DEC-L-OKVM
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-DEC-L-OKVM - ghcid: CZ-US-DEC-L-OKVM
ghcid_numeric: 4947272586813454972 ghcid_numeric: 4947272586813454972
valid_from: '2025-12-06T23:37:41.204567+00:00' valid_from: '2025-12-06T23:37:41.204567+00:00'
@ -209,3 +210,22 @@ location:
postal_code: 405 02 postal_code: 405 02
street_address: Malšovice 162 street_address: Malšovice 162
normalization_timestamp: '2025-12-09T10:54:14.763252+00:00' normalization_timestamp: '2025-12-09T10:54:14.763252+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:15:38.688355+00:00'
source_url: https://www.malsovice.cz/knihovna/ms-1793/p1=1793
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.malsovice.cz/html/images/favicon.ico
source_url: https://www.malsovice.cz/knihovna/ms-1793/p1=1793
css_selector: '[document] > html > head > link:nth-of-type(6)'
retrieved_on: '2025-12-24T12:15:38.688355+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-DEC-L-OKVT - ghcid: CZ-42-DEC-L-OKVT
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-DEC-L-OKVT - ghcid: CZ-US-DEC-L-OKVT
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-DEC-L-OKVT - ghcid: CZ-US-DEC-L-OKVT
ghcid_numeric: 8503432323095652670 ghcid_numeric: 8503432323095652670
valid_from: '2025-12-06T23:37:41.152024+00:00' valid_from: '2025-12-06T23:37:41.152024+00:00'
@ -209,3 +210,30 @@ location:
postal_code: 407 02 postal_code: 407 02
street_address: Těchlovice 37 street_address: Těchlovice 37
normalization_timestamp: '2025-12-09T10:54:14.826809+00:00' normalization_timestamp: '2025-12-09T10:54:14.826809+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:15:47.136377+00:00'
source_url: https://www.techlovice-dc.cz/sluzby-v-obci
extraction_method: crawl4ai
claims:
- claim_type: logo_url
claim_value: https://www.techlovice-dc.cz/images/logo.png
source_url: https://www.techlovice-dc.cz/sluzby-v-obci
css_selector: '#sp-logo > div.sp-column > div.logo > a > img.sp-default-logo.hidden-xs'
retrieved_on: '2025-12-24T12:15:47.136377+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
alt_text: Obec Těchlovice nad Labem
- claim_type: favicon_url
claim_value: https://www.techlovice-dc.cz/templates/etchemical/images/favicon.ico
source_url: https://www.techlovice-dc.cz/sluzby-v-obci
css_selector: '[document] > html > head > link:nth-of-type(3)'
retrieved_on: '2025-12-24T12:15:47.136377+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/vnd.microsoft.icon
favicon_sizes: ''
summary:
total_claims: 2
has_primary_logo: true
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -41,13 +41,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-DEC-M-OMVDPK - ghcid: CZ-42-DEC-M-OMVDPK
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-DEC-M-OMVDPK - ghcid: CZ-US-DEC-M-OMVDPK
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-DEC-M-OMVDPK - ghcid: CZ-US-DEC-M-OMVDPK
ghcid_numeric: 17334021466502877472 ghcid_numeric: 17334021466502877472
valid_from: '2025-12-06T23:37:17.469690+00:00' valid_from: '2025-12-06T23:37:17.469690+00:00'
@ -210,3 +211,22 @@ location:
postal_code: 405 02 postal_code: 405 02
street_address: České mládeže 1/31 street_address: České mládeže 1/31
normalization_timestamp: '2025-12-09T10:54:14.911453+00:00' normalization_timestamp: '2025-12-09T10:54:14.911453+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:15:56.494812+00:00'
source_url: https://muzeumdc.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://muzeumdc.cz/themes/muzeobot/favicon.ico
source_url: https://muzeumdc.cz
css_selector: '[document] > html.js.adaptivetheme > head > link'
retrieved_on: '2025-12-24T12:15:56.494812+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/vnd.microsoft.icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-DEC-O-SOAVLSOAD - ghcid: CZ-42-DEC-O-SOAVLSOAD
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-DEC-O-SOAVLSOAD - ghcid: CZ-US-DEC-O-SOAVLSOAD
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-DEC-O-SOAVLSOAD - ghcid: CZ-US-DEC-O-SOAVLSOAD
ghcid_numeric: 7506656398510481685 ghcid_numeric: 7506656398510481685
valid_from: '2025-12-06T23:37:17.466837+00:00' valid_from: '2025-12-06T23:37:17.466837+00:00'
@ -217,3 +218,29 @@ location:
postal_code: 405 01 postal_code: 405 01
street_address: Dlouhá jízda 1253 - Zámek street_address: Dlouhá jízda 1253 - Zámek
normalization_timestamp: '2025-12-09T10:54:14.944449+00:00' normalization_timestamp: '2025-12-09T10:54:14.944449+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:20:45.436298+00:00'
source_url: https://www.soalitomerice.cz/soka-decin
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.soalitomerice.cz/wp-content/uploads/2024/05/cropped-soa-logo-only-graphics-180x180.png
source_url: https://www.soalitomerice.cz/soka-decin
css_selector: '[document] > html.td-md-is-os-x.td-md-is-chrome > body.post-template-default.single
> link:nth-of-type(3)'
retrieved_on: '2025-12-24T12:20:45.436298+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
favicon_sizes: ''
- claim_type: og_image_url
claim_value: http://www.soalitomerice.cz/wp-content/uploads/2015/12/decin-1-300x204.jpg
source_url: https://www.soalitomerice.cz/soka-decin
css_selector: '[document] > html.td-md-is-os-x.td-md-is-chrome > head > meta:nth-of-type(14)'
retrieved_on: '2025-12-24T12:20:45.436298+00:00'
extraction_method: crawl4ai_meta_og
summary:
total_claims: 2
has_primary_logo: false
has_favicon: true
has_og_image: true
favicon_count: 4

View file

@ -185,3 +185,22 @@ wikidata_enrichment:
enrichment_version: 2.1.0 enrichment_version: 2.1.0
instance_of: instance_of:
- Q65768699 - Q65768699
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:16:09.509444+00:00'
source_url: https://katalog.soalitomerice.cz
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://katalog.soalitomerice.cz/themes/root/images/vufind-favicon.ico
source_url: https://katalog.soalitomerice.cz
css_selector: '[document] > html > head > link:nth-of-type(7)'
retrieved_on: '2025-12-24T12:16:09.509444+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/x-icon
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

View file

@ -44,13 +44,14 @@ ghcid:
method: CH_ANNOTATOR_SOURCE method: CH_ANNOTATOR_SOURCE
ghcid_history: ghcid_history:
- ghcid: CZ-42-DOB-L-OKD - ghcid: CZ-42-DOB-L-OKD
valid_from: "2025-12-10T09:47:11Z" valid_from: '2025-12-10T09:47:11Z'
valid_to: null valid_to: null
reason: "Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per ISO 3166-2:CZ" reason: Corrected region code from CZ-US to CZ-42 (Ústí nad Labem (Ústecký)) per
ISO 3166-2:CZ
- ghcid: CZ-US-DOB-L-OKD - ghcid: CZ-US-DOB-L-OKD
valid_from: null valid_from: null
valid_to: "2025-12-10T09:47:11Z" valid_to: '2025-12-10T09:47:11Z'
reason: "Previous GHCID with incorrect region code" reason: Previous GHCID with incorrect region code
- ghcid: CZ-US-DOB-L-OKD - ghcid: CZ-US-DOB-L-OKD
ghcid_numeric: 14062687077089191871 ghcid_numeric: 14062687077089191871
valid_from: '2025-12-06T23:37:41.233914+00:00' valid_from: '2025-12-06T23:37:41.233914+00:00'
@ -212,3 +213,22 @@ location:
postal_code: 407 41 postal_code: 407 41
street_address: Dobrná 45 street_address: Dobrná 45
normalization_timestamp: '2025-12-09T10:54:14.982448+00:00' normalization_timestamp: '2025-12-09T10:54:14.982448+00:00'
logo_enrichment:
enrichment_timestamp: '2025-12-24T12:16:14.534276+00:00'
source_url: https://www.obec-dobrna.cz/knihovna
extraction_method: crawl4ai
claims:
- claim_type: favicon_url
claim_value: https://www.obec-dobrna.cz/image.php?nid=18098&oid=7910471
source_url: https://www.obec-dobrna.cz/knihovna
css_selector: '[document] > html > head > link:nth-of-type(15)'
retrieved_on: '2025-12-24T12:16:14.534276+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: image/png
favicon_sizes: ''
summary:
total_claims: 1
has_primary_logo: false
has_favicon: true
has_og_image: false
favicon_count: 1

Some files were not shown because too many files have changed in this diff Show more