From 9ee49c0b4e9b5fe5e3d4dd32aa831b5fe41e64cd Mon Sep 17 00:00:00 2001
From: "locadex-agent[bot]"
<217277504+locadex-agent[bot]@users.noreply.github.com>
Date: Sun, 7 Dec 2025 01:40:55 +0000
Subject: [PATCH] docs(locadex): add translations
---
es/ai/agent.mdx | 20 -
es/api/assistant/create-assistant-message.mdx | 6 +-
es/discovery-openapi.json | 66 +-
fr/ai/agent.mdx | 18 -
fr/api/assistant/create-assistant-message.mdx | 4 +-
fr/discovery-openapi.json | 67 +-
gt-lock.json | 1006 +++++++++--------
zh/ai/agent.mdx | 20 -
zh/api/assistant/create-assistant-message.mdx | 8 +-
zh/discovery-openapi.json | 66 +-
10 files changed, 667 insertions(+), 614 deletions(-)
diff --git a/es/ai/agent.mdx b/es/ai/agent.mdx
index dbbbabd0e..fcbdc88bb 100644
--- a/es/ai/agent.mdx
+++ b/es/ai/agent.mdx
@@ -17,26 +17,6 @@ Usa el agente para:
* Buscar y actualizar contenido existente
* Responder preguntas sobre tu documentación y temas de redacción técnica
-
- ## Usa el agente en el dashboard
-
-
-Accede al panel del agente directamente desde tu dashboard usando el atajo de teclado ⌘+I (Mac) o Ctrl+I (Windows/Linux), o haciendo clic en el botón **Preguntar al agente**.
-
-El panel del agente incluye:
-
-* **Chat**: Envía consultas y recibe respuestas con propuestas de cambios en la documentación.
-* **Historial**: Consulta y continúa conversaciones anteriores.
-* **Configuración**: Configura los permisos de la Aplicación de GitHub y la integración con Slack.
-
-
-
-
-
-
-
-Cuando el agente realiza cambios, puedes ver la solicitud de extracción directamente desde el chat o abrir los cambios en el editor web.
-
## Añade el agente a tu espacio de trabajo de Slack
diff --git a/es/api/assistant/create-assistant-message.mdx b/es/api/assistant/create-assistant-message.mdx
index 06cd3645f..42fa83d76 100644
--- a/es/api/assistant/create-assistant-message.mdx
+++ b/es/api/assistant/create-assistant-message.mdx
@@ -10,7 +10,7 @@ keywords: [ "mensaje del assistant", "incrustar", "chat", "integrar" ]
El hook `useChat` del AI SDK de Vercel es la forma recomendada de integrar la API del assistant en tu aplicación.
- La API del assistant de Mintlify es compatible con **AI SDK v4**. Si usas AI SDK v5 o posterior, debes configurar un transporte personalizado.
+ La API del assistant de Mintlify es compatible con **AI SDK v4**. Si utilizas AI SDK v5 o posterior, debes configurar un transporte personalizado.
@@ -59,9 +59,9 @@ function MyComponent({ domain }) {
**Configuración obligatoria para Mintlify:**
- `streamProtocol: 'data'` - Obligatorio para respuestas en streaming.
-- `sendExtraMessageFields: true` - Obligatorio para enviar metadata de los mensajes.
+- `sendExtraMessageFields: true` - Obligatorio para enviar metadatos de los mensajes.
- `body.fp` - Identificador de huella digital (usa 'anonymous' o un identificador de usuario).
-- `body.retrievalPageSize` - Número de resultados de búsqueda a usar (recomendado: 5).
+- `body.retrievalPageSize` - Número de resultados de búsqueda que se usarán (recomendado: 5).
diff --git a/es/discovery-openapi.json b/es/discovery-openapi.json
index 3d17c3900..23cf0310c 100644
--- a/es/discovery-openapi.json
+++ b/es/discovery-openapi.json
@@ -2,7 +2,7 @@
"openapi": "3.0.1",
"info": {
"title": "Mintlify Assistant API",
- "description": "Una API para integrar las funcionalidades de descubrimiento de Mintlify en tu producto.",
+ "description": "An API to integrate Mintlify discovery features into your product.",
"version": "1.0.0"
},
"servers": [
@@ -18,8 +18,8 @@
"paths": {
"/assistant/{domain}/message": {
"post": {
- "summary": "Mensaje del assistant",
- "description": "Genera un mensaje de respuesta del assistant para el dominio especificado.",
+ "summary": "Assistant message",
+ "description": "Generates a response message from the assistant for the specified domain.",
"parameters": [
{
"name": "domain",
@@ -28,7 +28,7 @@
"schema": {
"type": "string"
},
- "description": "El identificador de dominio de tu URL `domain.mintlify.app`. Puedes encontrarlo al final de la URL de tu dashboard. Por ejemplo, en `dashboard.mintlify.com/organization/domain`, el identificador de dominio es `domain`."
+ "description": "The domain identifier from your `domain.mintlify.app` URL. Can be found at the end of your dashboard URL. For example, `dashboard.mintlify.com/organization/domain` has a domain identifier of `domain`."
}
],
"requestBody": {
@@ -44,12 +44,12 @@
"properties": {
"fp": {
"type": "string",
- "description": "Identificador de huella digital para el seguimiento de sesiones de conversación. Usa `anonymous` para usuarios anónimos o proporciona un identificador de usuario único."
+ "description": "Fingerprint identifier for tracking conversation sessions. Use 'anonymous' for anonymous users or provide a unique user identifier."
},
"threadId": {
"default": null,
"type": "string",
- "description": "Un identificador opcional que se utiliza para mantener la continuidad de la conversación a lo largo de varios mensajes. Cuando se proporciona, permite que el sistema asocie los mensajes posteriores con el mismo hilo de conversación. El threadId se devuelve en la respuesta como event.threadId cuando event.type === 'finish'."
+ "description": "An optional identifier used to maintain conversation continuity across multiple messages. When provided, it allows the system to associate follow-up messages with the same conversation thread. The threadId is returned in the response as event.threadId when event.type === 'finish'."
},
"messages": {
"type": "array",
@@ -71,7 +71,7 @@
"properties": {
"id": {
"type": "string",
- "description": "Identificador único del mensaje"
+ "description": "Unique identifier for the message"
},
"role": {
"type": "string",
@@ -81,21 +81,21 @@
"data",
"user"
],
- "description": "El rol del remitente del mensaje"
+ "description": "The role of the message sender"
},
"createdAt": {
"type": "string",
"format": "date-time",
- "description": "Marca de tiempo en que se creó el mensaje"
+ "description": "Timestamp when the message was created"
},
"content": {
"type": "string",
- "description": "El contenido del mensaje"
+ "description": "The content of the message"
},
"annotations": {
"type": "array",
"items": {},
- "description": "Arreglo opcional de anotaciones para el mensaje"
+ "description": "Optional array of annotations for the message"
},
"parts": {
"type": "array",
@@ -342,7 +342,7 @@
}
]
},
- "description": "Array de fragmentos de mensaje de distintos tipos, incluidos texto, razonamiento, fuentes e invocaciones de herramientas"
+ "description": "Array of message parts with different types including text, reasoning, sources, and tool invocations"
},
"experimental_attachments": {
"type": "array",
@@ -363,7 +363,7 @@
"url"
]
},
- "description": "Arreglo opcional de archivos adjuntos experimentales para el mensaje"
+ "description": "Optional array of experimental attachments for the message"
}
},
"required": [
@@ -373,12 +373,12 @@
"parts"
]
},
- "description": "Array de mensajes de la conversación. En el frontend, es probable que quieras usar la función handleSubmit del hook useChat del paquete @ai-sdk para agregar los mensajes del usuario y gestionar las respuestas en streaming, en lugar de definir manualmente los objetos de este array, ya que tienen tantos parámetros."
+ "description": "Array of messages in the conversation. On the frontend, you will likely want to use the handleSubmit function from the @ai-sdk package's useChat hook to append user messages and handle streaming responses, rather than manually defining the objects in this array as they have so many parameters."
},
"retrievalPageSize": {
"type": "number",
"default": 5,
- "description": "Número de resultados de búsqueda en la documentación que se utilizarán para generar la respuesta. Valores más altos proporcionan más contexto, pero pueden aumentar el tiempo de respuesta. Recomendado: 5."
+ "description": "Number of documentation search results to use for generating the response. Higher values provide more context but may increase response time. Recommended: 5."
},
"filter": {
"type": "object",
@@ -386,14 +386,14 @@
"properties": {
"version": {
"type": "string",
- "description": "Filtro opcional de versión"
+ "description": "Optional version filter"
},
"language": {
"type": "string",
- "description": "Filtro de idioma opcional"
+ "description": "Optional language filter"
}
},
- "description": "Criterios opcionales de filtrado para la búsqueda"
+ "description": "Optional filter criteria for the search"
}
}
}
@@ -402,12 +402,12 @@
},
"responses": {
"200": {
- "description": "Mensaje generado con éxito",
+ "description": "Message generated successfully",
"content": {
"application/json": {
"schema": {
"type": "object",
- "description": "Objeto de respuesta que transmite partes de un flujo de datos con formato con el estado, los encabezados y el contenido especificados. Esto coincide con lo que espera AI SDK, según se documenta en [ai-sdk.dev/docs/ai-sdk-ui/streaming-data](https://ai-sdk.dev/docs/ai-sdk-ui/streaming-data). En lugar de escribir tu propio analizador (parser), se recomienda usar el [hook useChat de ai-sdk, tal como se documenta aquí](https://ai-sdk.dev/docs/reference/ai-sdk-ui/use-chat#usechat)."
+ "description": "Response object that streams formatted data stream parts with the specified status, headers, and content. This matches what is expected from the AI SDK as documented at [ai-sdk.dev/docs/ai-sdk-ui/streaming-data](https://ai-sdk.dev/docs/ai-sdk-ui/streaming-data). Instead of writing your own parser, it is recommended to use the [useChat hook from ai-sdk as documented here](https://ai-sdk.dev/docs/reference/ai-sdk-ui/use-chat#usechat)."
}
}
}
@@ -417,8 +417,8 @@
},
"/search/{domain}": {
"post": {
- "summary": "Buscar en la documentación",
- "description": "Realiza búsquedas semánticas y de palabras clave en tu documentación con filtros y paginación configurables.",
+ "summary": "Search documentation",
+ "description": "Perform semantic and keyword searches across your documentation with configurable filtering and pagination.",
"parameters": [
{
"name": "domain",
@@ -427,7 +427,7 @@
"schema": {
"type": "string"
},
- "description": "El identificador de dominio de tu URL `domain.mintlify.app`. Puedes encontrarlo al final de la URL de tu dashboard. Por ejemplo, `dashboard.mintlify.com/organization/domain` tiene como identificador de dominio `domain`."
+ "description": "The domain identifier from your `domain.mintlify.app` URL. Can be found at the end of your dashboard URL. For example, `dashboard.mintlify.com/organization/domain` has a domain identifier of `domain`."
}
],
"requestBody": {
@@ -442,24 +442,24 @@
"properties": {
"query": {
"type": "string",
- "description": "La búsqueda que se ejecutará en el contenido de tu documentación."
+ "description": "The search query to execute against your documentation content."
},
"pageSize": {
"type": "number",
"default": 10,
- "description": "Número de resultados de búsqueda que se devolverán. El valor predeterminado es 10 si no se especifica."
+ "description": "Number of search results to return. Defaults to 10 if not specified."
},
"filter": {
"type": "object",
- "description": "Parámetros de filtrado opcionales para refinar los resultados de búsqueda.",
+ "description": "Optional filtering parameters to narrow search results.",
"properties": {
"version": {
"type": "string",
- "description": "Filtrar resultados por versión de la documentación."
+ "description": "Filter results by documentation version."
},
"language": {
"type": "string",
- "description": "Filtra los resultados según el idioma del contenido."
+ "description": "Filter results by content language."
}
}
}
@@ -470,7 +470,7 @@
},
"responses": {
"200": {
- "description": "Resultados de búsqueda",
+ "description": "Search results",
"content": {
"application/json": {
"schema": {
@@ -480,15 +480,15 @@
"properties": {
"content": {
"type": "string",
- "description": "El contenido correspondiente de tu documentación."
+ "description": "The matching content from your documentation."
},
"path": {
"type": "string",
- "description": "La ruta o URL del documento de origen."
+ "description": "The path or URL to the source document."
},
"metadata": {
"type": "object",
- "description": "Metadata adicional sobre el resultado de la búsqueda."
+ "description": "Additional metadata about the search result."
}
}
}
@@ -505,7 +505,7 @@
"bearerAuth": {
"type": "http",
"scheme": "bearer",
- "description": "El encabezado Authorization requiere un token Bearer. Consulta la [documentación de la clave de API del assistant](/docs/api-reference/introduction#assistant-api-key) para obtener más detalles sobre cómo obtener tu clave de API."
+ "description": "The Authorization header expects a Bearer token. See the [Assistant API Key documentation](/docs/api-reference/introduction#assistant-api-key) for details on how to get your API key."
}
}
}
diff --git a/fr/ai/agent.mdx b/fr/ai/agent.mdx
index 7f64f4d8b..0908289fe 100644
--- a/fr/ai/agent.mdx
+++ b/fr/ai/agent.mdx
@@ -17,24 +17,6 @@ Utilisez l'agent pour :
* Rechercher et mettre à jour le contenu existant
* Répondre à des questions sur votre documentation et des sujets de rédaction technique
-## Utiliser l'agent dans le Dashboard
-
-Accédez au panneau de l'agent directement depuis votre Dashboard à l'aide du raccourci clavier ⌘+I (Mac) ou Ctrl+I (Windows/Linux), ou en cliquant sur le bouton **Demander à l'agent**.
-
-Le panneau de l'agent comprend :
-
-* **Chat** : Envoyez des requêtes et recevez des réponses avec des propositions de modifications de la documentation.
-* **History** : Affichez et poursuivez des conversations précédentes.
-* **Settings** : Configurez les autorisations GitHub App et l'intégration à Slack.
-
-
-
-
-
-
-
-Lorsque l'agent effectue des modifications, vous pouvez consulter la pull request (demande de fusion) directement depuis le chat ou ouvrir les modifications dans l'éditeur web.
-
## Ajouter l’agent à votre espace de travail Slack
diff --git a/fr/api/assistant/create-assistant-message.mdx b/fr/api/assistant/create-assistant-message.mdx
index e81213e13..843fc213c 100644
--- a/fr/api/assistant/create-assistant-message.mdx
+++ b/fr/api/assistant/create-assistant-message.mdx
@@ -7,14 +7,14 @@ keywords: [ "message de l’Assistant", "intégration", "chat", "intégrer" ]
## Intégration avec `useChat`
-La méthode recommandée pour intégrer l’API de l’Assistant à votre application consiste à utiliser le hook `useChat` du SDK AI de Vercel.
+Le hook `useChat` du SDK AI de Vercel est la méthode recommandée pour intégrer l’API de l’Assistant à votre application.
L’API de l’Assistant Mintlify est compatible avec **AI SDK v4**. Si vous utilisez AI SDK v5 ou une version ultérieure, vous devez configurer un transport personnalisé.
-
+
```bash
npm i ai@^4.1.15
diff --git a/fr/discovery-openapi.json b/fr/discovery-openapi.json
index 9dafbcba7..23cf0310c 100644
--- a/fr/discovery-openapi.json
+++ b/fr/discovery-openapi.json
@@ -2,7 +2,7 @@
"openapi": "3.0.1",
"info": {
"title": "Mintlify Assistant API",
- "description": "Une API permettant d’intégrer les fonctionnalités de découverte de Mintlify à votre produit.",
+ "description": "An API to integrate Mintlify discovery features into your product.",
"version": "1.0.0"
},
"servers": [
@@ -18,9 +18,8 @@
"paths": {
"/assistant/{domain}/message": {
"post": {
-
- "summary": "Message de l’Assistant",
- "description": "Génère un message de réponse de l’Assistant pour le domaine spécifié.",
+ "summary": "Assistant message",
+ "description": "Generates a response message from the assistant for the specified domain.",
"parameters": [
{
"name": "domain",
@@ -29,7 +28,7 @@
"schema": {
"type": "string"
},
- "description": "L’identifiant de domaine utilisé dans votre URL `domain.mintlify.app`. Il se trouve à la fin de l’URL de votre Dashboard. Par exemple, `dashboard.mintlify.com/organization/domain` a pour identifiant de domaine `domain`."
+ "description": "The domain identifier from your `domain.mintlify.app` URL. Can be found at the end of your dashboard URL. For example, `dashboard.mintlify.com/organization/domain` has a domain identifier of `domain`."
}
],
"requestBody": {
@@ -45,12 +44,12 @@
"properties": {
"fp": {
"type": "string",
- "description": "Identifiant d’empreinte (« fingerprint ») pour le suivi des sessions de conversation. Utilisez « anonymous » pour les utilisateurs anonymes ou fournissez un identifiant utilisateur unique."
+ "description": "Fingerprint identifier for tracking conversation sessions. Use 'anonymous' for anonymous users or provide a unique user identifier."
},
"threadId": {
"default": null,
"type": "string",
- "description": "Un identifiant facultatif utilisé pour maintenir la continuité de la conversation sur plusieurs messages. Lorsqu’il est fourni, il permet au système d’associer les messages suivants au même fil de conversation. Le threadId est renvoyé dans la réponse sous la forme event.threadId lorsque event.type === 'finish'."
+ "description": "An optional identifier used to maintain conversation continuity across multiple messages. When provided, it allows the system to associate follow-up messages with the same conversation thread. The threadId is returned in the response as event.threadId when event.type === 'finish'."
},
"messages": {
"type": "array",
@@ -72,7 +71,7 @@
"properties": {
"id": {
"type": "string",
- "description": "Identifiant unique du message"
+ "description": "Unique identifier for the message"
},
"role": {
"type": "string",
@@ -82,21 +81,21 @@
"data",
"user"
],
- "description": "Le rôle de l’émetteur du message"
+ "description": "The role of the message sender"
},
"createdAt": {
"type": "string",
"format": "date-time",
- "description": "Horodatage indiquant la création du message"
+ "description": "Timestamp when the message was created"
},
"content": {
"type": "string",
- "description": "Le contenu du message"
+ "description": "The content of the message"
},
"annotations": {
"type": "array",
"items": {},
- "description": "Tableau facultatif d’annotations associées au message"
+ "description": "Optional array of annotations for the message"
},
"parts": {
"type": "array",
@@ -343,7 +342,7 @@
}
]
},
- "description": "Tableau de segments de message comportant différents types, notamment du texte, du raisonnement, des sources et des appels d’outils"
+ "description": "Array of message parts with different types including text, reasoning, sources, and tool invocations"
},
"experimental_attachments": {
"type": "array",
@@ -364,7 +363,7 @@
"url"
]
},
- "description": "Tableau facultatif de pièces jointes expérimentales pour ce message"
+ "description": "Optional array of experimental attachments for the message"
}
},
"required": [
@@ -374,12 +373,12 @@
"parts"
]
},
- "description": "Tableau de messages de la conversation. Côté frontend, vous voudrez probablement utiliser la fonction handleSubmit du hook useChat du package @ai-sdk pour ajouter les messages utilisateur et gérer les réponses en streaming, plutôt que de définir manuellement les objets de ce tableau, car ils comportent de très nombreux paramètres."
+ "description": "Array of messages in the conversation. On the frontend, you will likely want to use the handleSubmit function from the @ai-sdk package's useChat hook to append user messages and handle streaming responses, rather than manually defining the objects in this array as they have so many parameters."
},
"retrievalPageSize": {
"type": "number",
"default": 5,
- "description": "Nombre de résultats de recherche dans la documentation à prendre en compte pour générer la réponse. Des valeurs plus élevées fournissent davantage de contexte, mais peuvent augmenter le temps de réponse. Recommandé : 5."
+ "description": "Number of documentation search results to use for generating the response. Higher values provide more context but may increase response time. Recommended: 5."
},
"filter": {
"type": "object",
@@ -387,14 +386,14 @@
"properties": {
"version": {
"type": "string",
- "description": "Filtre de version (optionnel)"
+ "description": "Optional version filter"
},
"language": {
"type": "string",
- "description": "Filtre de langue optionnel"
+ "description": "Optional language filter"
}
},
- "description": "Critères de filtrage facultatifs pour la recherche"
+ "description": "Optional filter criteria for the search"
}
}
}
@@ -403,12 +402,12 @@
},
"responses": {
"200": {
- "description": "Message généré avec succès",
+ "description": "Message generated successfully",
"content": {
"application/json": {
"schema": {
"type": "object",
- "description": "Objet Response qui diffuse des parties de flux de données formatées avec le statut, les en-têtes et le champ content spécifiés. Cela correspond à ce qui est attendu par le SDK d’IA, comme documenté sur [ai-sdk.dev/docs/ai-sdk-ui/streaming-data](https://ai-sdk.dev/docs/ai-sdk-ui/streaming-data). Au lieu d’écrire votre propre analyseur, il est recommandé d’utiliser le [hook useChat d’ai-sdk, comme documenté ici](https://ai-sdk.dev/docs/reference/ai-sdk-ui/use-chat#usechat)."
+ "description": "Response object that streams formatted data stream parts with the specified status, headers, and content. This matches what is expected from the AI SDK as documented at [ai-sdk.dev/docs/ai-sdk-ui/streaming-data](https://ai-sdk.dev/docs/ai-sdk-ui/streaming-data). Instead of writing your own parser, it is recommended to use the [useChat hook from ai-sdk as documented here](https://ai-sdk.dev/docs/reference/ai-sdk-ui/use-chat#usechat)."
}
}
}
@@ -418,8 +417,8 @@
},
"/search/{domain}": {
"post": {
- "summary": "Rechercher dans la documentation",
- "description": "Effectuez des recherches sémantiques et par mots-clés au sein de votre documentation avec des options de filtrage et de pagination configurables.",
+ "summary": "Search documentation",
+ "description": "Perform semantic and keyword searches across your documentation with configurable filtering and pagination.",
"parameters": [
{
"name": "domain",
@@ -428,7 +427,7 @@
"schema": {
"type": "string"
},
- "description": "L’identifiant de domaine de votre URL `domain.mintlify.app`. Vous pouvez le trouver à la fin de l’URL de votre Dashboard. Par exemple, dans `dashboard.mintlify.com/organization/domain`, l’identifiant de domaine est `domain`."
+ "description": "The domain identifier from your `domain.mintlify.app` URL. Can be found at the end of your dashboard URL. For example, `dashboard.mintlify.com/organization/domain` has a domain identifier of `domain`."
}
],
"requestBody": {
@@ -443,24 +442,24 @@
"properties": {
"query": {
"type": "string",
- "description": "La requête de recherche à exécuter dans le contenu de votre documentation."
+ "description": "The search query to execute against your documentation content."
},
"pageSize": {
"type": "number",
"default": 10,
- "description": "Nombre de résultats de recherche à renvoyer. Par défaut, 10 si aucune valeur n’est spécifiée."
+ "description": "Number of search results to return. Defaults to 10 if not specified."
},
"filter": {
"type": "object",
- "description": "Paramètres de filtrage optionnels pour affiner les résultats de recherche.",
+ "description": "Optional filtering parameters to narrow search results.",
"properties": {
"version": {
"type": "string",
- "description": "Filtrer les résultats par version de la documentation."
+ "description": "Filter results by documentation version."
},
"language": {
"type": "string",
- "description": "Filtrer les résultats selon la langue du contenu."
+ "description": "Filter results by content language."
}
}
}
@@ -471,7 +470,7 @@
},
"responses": {
"200": {
- "description": "Résultats de recherche",
+ "description": "Search results",
"content": {
"application/json": {
"schema": {
@@ -481,15 +480,15 @@
"properties": {
"content": {
"type": "string",
- "description": "Le contenu correspondant tiré de votre documentation."
+ "description": "The matching content from your documentation."
},
"path": {
"type": "string",
- "description": "Le chemin ou l’URL vers le document source."
+ "description": "The path or URL to the source document."
},
"metadata": {
"type": "object",
- "description": "Des métadonnées supplémentaires sur le résultat de recherche."
+ "description": "Additional metadata about the search result."
}
}
}
@@ -506,7 +505,7 @@
"bearerAuth": {
"type": "http",
"scheme": "bearer",
- "description": "L’en-tête Authorization requiert un jeton Bearer. Consultez la [documentation de la clé d’API Assistant](/docs/api-reference/introduction#assistant-api-key) pour savoir comment obtenir votre clé d’API."
+ "description": "The Authorization header expects a Bearer token. See the [Assistant API Key documentation](/docs/api-reference/introduction#assistant-api-key) for details on how to get your API key."
}
}
}
diff --git a/gt-lock.json b/gt-lock.json
index 301ade01f..8f5cab0aa 100644
--- a/gt-lock.json
+++ b/gt-lock.json
@@ -2576,15 +2576,15 @@
},
"df76a0eb48f3969fa97c0b9cb3c3f66431ff507911c97129b5ae5a7848619c74": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.389Z",
+ "updatedAt": "2025-12-07T01:40:33.908Z",
"postProcessHash": "3a1293f09a6ae811b12b3e995e949f189daa02ec78dbdc5ab690caf0d4d5d01e"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.389Z",
+ "updatedAt": "2025-12-07T01:40:33.909Z",
"postProcessHash": "4af755390b12715c0597e2ebd89ef33a94e4aec2387ff3efeacc1d52830433fa"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.389Z",
+ "updatedAt": "2025-12-07T01:40:33.909Z",
"postProcessHash": "6bf7392de7fdd42c1880a5728152317e0b101cdbe0def6e9bb66907e3e010111"
}
}
@@ -2636,15 +2636,15 @@
},
"01d1b95cd21ac6d48c7177a3afbac73c6ca5adffd9d10ab5103980beb0447517": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.391Z",
+ "updatedAt": "2025-12-07T01:40:33.910Z",
"postProcessHash": "4cbb993b7e3c5a99f7498b9b14816c875e96982ba5659e1cb2e0b2be35914cef"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.391Z",
+ "updatedAt": "2025-12-07T01:40:33.910Z",
"postProcessHash": "6f10d4703a74f7b49ed90196e5e6053da81dc024e224425c7a346c6136df81a8"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.391Z",
+ "updatedAt": "2025-12-07T01:40:33.911Z",
"postProcessHash": "9da6213f013f926f79ccf66f005beb95a2f383d00122ba7483d0c7e266422485"
}
}
@@ -2652,15 +2652,15 @@
"23468f0552fb3e6e3e07f5ccc3f3267c1f9e3dde0f865e866f185cb2947d3700": {
"cf671b42a22bf53b553d52737aa0ebd2832efeeb3c4329997d454109b44b2d0b": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.407Z",
+ "updatedAt": "2025-12-07T01:40:33.919Z",
"postProcessHash": "0dcb24a821f6210e76e947eb5f6d0ac515f880cddf8d8f863c3f89ee6d07a2ee"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.407Z",
+ "updatedAt": "2025-12-07T01:40:33.919Z",
"postProcessHash": "d8f94ac787cbcf1c6c3f809e4867f5da828393f9df972d61175c5371cbb03806"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.408Z",
+ "updatedAt": "2025-12-07T01:40:33.919Z",
"postProcessHash": "e627ac75f507c186c4e17ce56c74814f83795f7530786508096aaba835fc20fc"
}
}
@@ -2679,15 +2679,15 @@
},
"33b27f6424e49160a6a8f7ca639a6ecabe4ccb6c81e109c16357715ed5705d59": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.375Z",
+ "updatedAt": "2025-12-07T01:40:33.896Z",
"postProcessHash": "074fa429573f00a1a21055dff2b0a74ec8972d03a84e1950b7b9c7fba4d093d9"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.376Z",
+ "updatedAt": "2025-12-07T01:40:33.897Z",
"postProcessHash": "3bd6f9d399a6dac7643be1d4dba76192f6188a388d66f180dd730f64c22ca80f"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.376Z",
+ "updatedAt": "2025-12-07T01:40:33.897Z",
"postProcessHash": "f623c406f79201a2fd99b95d00e73b254f3d4b5fd9d6b84fd90b818557fb1467"
}
}
@@ -2739,15 +2739,15 @@
},
"27f53cd80f1d9d96ab5f1d15c7d4143a1faa63b80e35b5f57fa79bf4da0eaea4": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.389Z",
+ "updatedAt": "2025-12-07T01:40:33.909Z",
"postProcessHash": "f2b8c58dbc7cb5d90601c366f26d4734107c62b49a9402e0f1dbc6adce2f439f"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.390Z",
+ "updatedAt": "2025-12-07T01:40:33.909Z",
"postProcessHash": "8865decdb223590ec3aba90314e0223ea216957aab3d0ccfc47f409f1d473cb7"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.390Z",
+ "updatedAt": "2025-12-07T01:40:33.910Z",
"postProcessHash": "fc21bafb1a5666a2c38776625e014540ca7164b0a57c08cfabdb61032a89363a"
}
}
@@ -2777,15 +2777,15 @@
},
"4bbec825257b2e44662cece56ea8f6d2a270af8295558ba8c49333d01f531512": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.380Z",
+ "updatedAt": "2025-12-07T01:40:33.901Z",
"postProcessHash": "e4ada9eb602ad5fdb51ee876050480b47fccc31953e905efe8f44011a48d5565"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.380Z",
+ "updatedAt": "2025-12-07T01:40:33.901Z",
"postProcessHash": "ebc1a190db69005bf50e4f2c8752f264c20f759797c7656057b619bb924e6937"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.383Z",
+ "updatedAt": "2025-12-07T01:40:33.904Z",
"postProcessHash": "73aad7b3e20eced796388977990b133e5e83bff0ac1873c62d3289b440d823d0"
}
}
@@ -2815,15 +2815,15 @@
},
"64a3699238f7091a57f32a304d4d6ea95e7b276b252acad469433afd381059d3": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.377Z",
+ "updatedAt": "2025-12-07T01:40:33.899Z",
"postProcessHash": "488d2901ae32fae3c5e865187c72139349368ff3de72b1e30801cf5c6bf51734"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.382Z",
+ "updatedAt": "2025-12-07T01:40:33.902Z",
"postProcessHash": "f3064f57a2d2b4c212fdf58658bf9e4ca38fe7e5f74250630abfa517d17be1f3"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.382Z",
+ "updatedAt": "2025-12-07T01:40:33.903Z",
"postProcessHash": "3f67b199792c8ebffc05370ede5870ebb5e3b0418ca6c2ef26cc564d8f25c918"
}
}
@@ -2853,15 +2853,15 @@
},
"91728bc6b9b8b6139a0dd62305e5baa3b279f2b75c5da5884361f1d6921cd5a0": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.377Z",
+ "updatedAt": "2025-12-07T01:40:33.898Z",
"postProcessHash": "d637bf9d227e05282377f6bd772ec71b43b8211a9e949701fcfd52bbb5cac513"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.378Z",
+ "updatedAt": "2025-12-07T01:40:33.899Z",
"postProcessHash": "3bd2ac2aed58004e59237b3527abe871ac3265fd4b0a312aee2cbeceff4dbbbf"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.379Z",
+ "updatedAt": "2025-12-07T01:40:33.900Z",
"postProcessHash": "3a2d26e68770d0d604dc626f49a18eac2cf5a12ed65ad17cbfb628fc35554bff"
}
}
@@ -2902,15 +2902,15 @@
},
"e6a344d226f71ec9d74b139ad033dcf67bc7845e173faafb769737d5a53e20e0": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.423Z",
+ "updatedAt": "2025-12-07T01:40:33.930Z",
"postProcessHash": "81fc3568f3c86637333bdcb90c56f48b3f6af658bee62196b16e2a1a98442545"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.424Z",
+ "updatedAt": "2025-12-07T01:40:33.930Z",
"postProcessHash": "c6fb9315d254d49befeadbab24e28e02dc6c42ddc9a7f14abd005bff4d261b02"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.425Z",
+ "updatedAt": "2025-12-07T01:40:33.930Z",
"postProcessHash": "bc1ab086b0f83492f839de81e82dee958d7e38258f4973dafe1749135da3cb0e"
}
}
@@ -2951,15 +2951,15 @@
},
"9242b786b93718623d525ba9255744e28d36cba2b1a87db50bc7d4c700693c27": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.388Z",
+ "updatedAt": "2025-12-07T01:40:33.908Z",
"postProcessHash": "0dfce139955738c77a275458dd53278808d6fd24f3e701551150cdbbfbce5b01"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.423Z",
+ "updatedAt": "2025-12-07T01:40:33.929Z",
"postProcessHash": "28eceddc3cf9e7a65cce6084f46c71231a4d5add174ae3e6182a3c6b5a42d554"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.424Z",
+ "updatedAt": "2025-12-07T01:40:33.930Z",
"postProcessHash": "8546874971ef988b94a9f39dda6382b3c44b77bc52e6898f6fb159f55eb71f55"
}
}
@@ -2978,15 +2978,15 @@
},
"1b5192704d8c87b7157e3ffb37e67740bf4db60592047855671eaa0de99fce67": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.379Z",
+ "updatedAt": "2025-12-07T01:40:33.900Z",
"postProcessHash": "d3e98c18a83271c858a30fa843960967910c7919ca02f722c0a1dac9991a7391"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.384Z",
+ "updatedAt": "2025-12-07T01:40:33.904Z",
"postProcessHash": "d91f92d1705c6a1344db508110b51f25358f441e3bcafb9c4b448ab02815a4ee"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.385Z",
+ "updatedAt": "2025-12-07T01:40:33.905Z",
"postProcessHash": "82acea5bbd072989914d4f7900b3b1c3a495ec82c35a102dee7f064a91868fb3"
}
}
@@ -3005,15 +3005,15 @@
},
"7df72a5c83b1558be5c0fa2deec46e528d5f4d2df119cca457c97ad94568dafd": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.378Z",
+ "updatedAt": "2025-12-07T01:40:33.899Z",
"postProcessHash": "ef36a326da3d8fa106566418e5c1b31a03e9e8ed4cd5b25bc67066b302acc4ee"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.378Z",
+ "updatedAt": "2025-12-07T01:40:33.900Z",
"postProcessHash": "88f0c4b5718472ba8b2016909e7787c4c1126bcdb87296fd6f921b455393bd01"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.380Z",
+ "updatedAt": "2025-12-07T01:40:33.901Z",
"postProcessHash": "280ad2a610db0eee1030c4fd9a623eaaa9a0127945201be88540eab3124e1e3c"
}
}
@@ -3065,15 +3065,15 @@
},
"ed36c10a2ac068ab971d9018c8eaed0e1d8810b6cab254986672b83e7260c35f": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.374Z",
+ "updatedAt": "2025-12-07T01:40:33.895Z",
"postProcessHash": "c2d575803e67814e2b47954c87980beb51b0f35137f53f3993bc4e9b7a862080"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.374Z",
+ "updatedAt": "2025-12-07T01:40:33.896Z",
"postProcessHash": "eccffd10c1c9b5e8dc27bf7d7492437cbe3db1d9f67a99692272f0df979cec32"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.375Z",
+ "updatedAt": "2025-12-07T01:40:33.896Z",
"postProcessHash": "2aac5cc095f999af84f446578539e80acb7e3a5225fef095fa9cd43f53cf966b"
}
}
@@ -3092,15 +3092,15 @@
},
"4ba815c35fc1d6ae05c075a25e63c14bb4f99030f6269e2e624b6a6cf7b40e43": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.375Z",
+ "updatedAt": "2025-12-07T01:40:33.896Z",
"postProcessHash": "5650fd1e5b54ca1f661e47670d18329aa1f7bffa14db3c976ac8c62b7d8f83db"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.375Z",
+ "updatedAt": "2025-12-07T01:40:33.897Z",
"postProcessHash": "7335a32222b237a0727718dba49a451bab788d164964f432fb24439da285b365"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.376Z",
+ "updatedAt": "2025-12-07T01:40:33.897Z",
"postProcessHash": "9564fd4e27315a68427db20238bfd5b1ef80c3cc44a87580e41f928358511c6c"
}
}
@@ -3130,15 +3130,15 @@
},
"eb20f767427fb4ce5134a35c35949a707ee0443db110d0b9778a731d5cfc0e82": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.377Z",
+ "updatedAt": "2025-12-07T01:40:33.898Z",
"postProcessHash": "d877c19b8c7d77430f40b3e355f978e688beb88f69826e706fc3f6b0613ece0a"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.384Z",
+ "updatedAt": "2025-12-07T01:40:33.904Z",
"postProcessHash": "d418dfc3e19cfe9aaa58501f8a8b7d713008cec5d60b7a8694ea652a199dbff8"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.384Z",
+ "updatedAt": "2025-12-07T01:40:33.905Z",
"postProcessHash": "370d177442be0ae1e7a10e8dfdf6200f7cf08662a5bb0c0a1b6bcbe8762a91fe"
}
}
@@ -3237,6 +3237,20 @@
"updatedAt": "2025-12-06T00:52:26.392Z",
"postProcessHash": "fa2f2452146f22e70ba46b6b307f43479813e3b90ac7ad5e686215fbb507a64a"
}
+ },
+ "e9fe82a70a0db05830011d63d1139e6fc676658e81783eaa240bc00207ab6623": {
+ "fr": {
+ "updatedAt": "2025-12-07T01:40:33.917Z",
+ "postProcessHash": "722d524700a28e96e84bf445b6e3ec0fc5541d469aaf58ae204b5624b73ec6ac"
+ },
+ "zh": {
+ "updatedAt": "2025-12-07T01:40:33.918Z",
+ "postProcessHash": "108b8153fe7d92b7c420cab4a43028a70679e903f69effc1c8f33c92137cd206"
+ },
+ "es": {
+ "updatedAt": "2025-12-07T01:40:33.918Z",
+ "postProcessHash": "13b67ea24bc55d24240b6365ec1e0a4022e5cf4a09b06307ac1d02d911690c0a"
+ }
}
},
"b7b4169fa5b2e02aa17d40553a73c5d9520086753c501eeb926c63b162bb6d9e": {
@@ -3344,15 +3358,15 @@
},
"f2d2eba18f2d99a846a22e37f08013200d0d53bea29eed47e8ab65c63ea495d2": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.378Z",
+ "updatedAt": "2025-12-07T01:40:33.899Z",
"postProcessHash": "8f24befec031ba478bdd384847f30297bd4ef16bc475812d2c75015c0ccc4244"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.390Z",
+ "updatedAt": "2025-12-07T01:40:33.910Z",
"postProcessHash": "d82dfc5acb2b61f2c3dcf98d604456bd2239dfe0662d3c0b1a3dbf3fb298f759"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.385Z",
+ "updatedAt": "2025-12-07T01:40:33.905Z",
"postProcessHash": "0f69fa5eacefb31067b354e86a6584c3aa538822dc0be4cc80ac164559e79e7f"
}
}
@@ -3426,15 +3440,15 @@
},
"614e7e8383fa563b9fa872425dc6b9d1304340386a1d5f5a70cfdc636141d63e": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.373Z",
+ "updatedAt": "2025-12-07T01:40:33.893Z",
"postProcessHash": "77e006bd842f861d7c61348464be11bc9af77b07df26143498ebad9e9c6d0d5a"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.374Z",
+ "updatedAt": "2025-12-07T01:40:33.895Z",
"postProcessHash": "eb6d0df147285afa69c3a84417a00553fb72755fd171d33ea57e175c9b1b5312"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.374Z",
+ "updatedAt": "2025-12-07T01:40:33.896Z",
"postProcessHash": "65f8a3f42f04182ad381d92939bbe2ca30298a47634bfde963e3e41f992816d7"
}
}
@@ -3486,15 +3500,15 @@
},
"a1bd07d382165778edcabffa3686ed892ef439380ca48b8aebf9e4d4ec2cde92": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.388Z",
+ "updatedAt": "2025-12-07T01:40:33.908Z",
"postProcessHash": "0093e614b111853bced845acbb84081f116d38327ce2fe50df4597962377b592"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.390Z",
+ "updatedAt": "2025-12-07T01:40:33.910Z",
"postProcessHash": "e080bad5adbaf4b23425241c82259bde5c031b76b7b98ffec44a9fbf5c8efe29"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.388Z",
+ "updatedAt": "2025-12-07T01:40:33.908Z",
"postProcessHash": "1920b5b5c855bcff4e3156207b2f0c110b5b93245e33b0331c2c42bdec9611ce"
}
}
@@ -3585,15 +3599,15 @@
},
"dba93118be6bea2c4d551bf0a4c054fc6dd461831d5abb3730b5d54f47177d21": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.405Z",
+ "updatedAt": "2025-12-07T01:40:33.916Z",
"postProcessHash": "19f0a2d5e3e552f170693ea76265fc33285339b9bc31226727864e2dcebe811c"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.406Z",
+ "updatedAt": "2025-12-07T01:40:33.916Z",
"postProcessHash": "8b2c47784b4150ad12b4b2f28e329efdacf9cd1af6233a84002ac5a1e375da69"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.407Z",
+ "updatedAt": "2025-12-07T01:40:33.917Z",
"postProcessHash": "56194a55cadb83a3d8a5d74e82220947b4bbc31e63b2a7bbd9ab18034ca3ae69"
}
}
@@ -3659,15 +3673,15 @@
},
"8a57fb2bf73502e46b07d0f552d28d7f5e2e71583500d8383f923b148ebd3323": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.514Z",
+ "updatedAt": "2025-12-07T01:40:33.917Z",
"postProcessHash": "7384493fd8f795b14ee81f713097f8b2e80297e31912468e6f9454927a465c82"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.515Z",
+ "updatedAt": "2025-12-07T01:40:33.917Z",
"postProcessHash": "c0c8f6ef6ae01d8bbadfac97e2c17b51541ffc95a0e0e2c549b5bd6d4fb3ab10"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.515Z",
+ "updatedAt": "2025-12-07T01:40:33.917Z",
"postProcessHash": "b6fb2cb2afbf7dfe99c77cbe29f27544fb8d5933e1d45f47f5196801a6c9eb11"
}
}
@@ -3697,15 +3711,15 @@
},
"239feca6504164e8bcbd82b2524a752018ed7a39e7c99c5bd82283b05ad42419": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.414Z",
+ "updatedAt": "2025-12-07T01:40:33.924Z",
"postProcessHash": "ecf86e0cda0ae341235df6b851ef4573dba152f96a2d7ae573b89a51176dd861"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.416Z",
+ "updatedAt": "2025-12-07T01:40:33.925Z",
"postProcessHash": "08ce82e18ad44239f39f8edeed8f61bd6e4414375d457afc6569d5c261ded3c1"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.418Z",
+ "updatedAt": "2025-12-07T01:40:33.926Z",
"postProcessHash": "f2a4fceea4e9f8d0dabbab77430230ebbbc6f7c99cc3c0a26f95428fa0bfcb61"
}
}
@@ -3735,15 +3749,15 @@
},
"6b6eb89e73eae4cff9d6413f91f2f4ce27e6b47013fb676bde0cdced959047d5": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.380Z",
+ "updatedAt": "2025-12-07T01:40:33.901Z",
"postProcessHash": "803b849c10972536e3c3f4efafbfdd1440ff1b2eccbaea67ecec345932e04bb6"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.381Z",
+ "updatedAt": "2025-12-07T01:40:33.902Z",
"postProcessHash": "d51ce93ab00e9613dc28df79c1214f96a300d0b730098afc58493ea1c3f80dfd"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.381Z",
+ "updatedAt": "2025-12-07T01:40:33.902Z",
"postProcessHash": "faa968f415d917b5ccb0b41591c9d744f7353d9738cf8eae88687cc50f5e5a8e"
}
}
@@ -3784,15 +3798,15 @@
},
"2142b34f605ba6b02fc694f8930d1d6a0068a69bd4e2f55d94bb3b33512bc21b": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.426Z",
+ "updatedAt": "2025-12-07T01:40:33.931Z",
"postProcessHash": "2b42ae5d214bdcf117c9fccef9536d943bd0ac0610021e8dc23f864c425ae69f"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.426Z",
+ "updatedAt": "2025-12-07T01:40:33.931Z",
"postProcessHash": "b21adce213645928d0461969a163d45bb40eafa7a46bc8b45e65ac6428965944"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.426Z",
+ "updatedAt": "2025-12-07T01:40:33.931Z",
"postProcessHash": "75a48247570e4aeed9288553e74fdc1ee72bd2b93625d091b06ac31aee4f0058"
}
}
@@ -3811,15 +3825,15 @@
},
"9b746c5834165dc199fdd794e1657e4116749bcc2ce014fa6bc5e7a59751e5e0": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.429Z",
+ "updatedAt": "2025-12-07T01:40:33.933Z",
"postProcessHash": "bcc5ad8c02a010869436abf275abe92007f40251eff63cbe8586d2dbec9b2405"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.432Z",
+ "updatedAt": "2025-12-07T01:40:33.935Z",
"postProcessHash": "19e6d916d166ac44f673ee4a0752179bfaff59e83f5984ca86856ef64df7b9b9"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.429Z",
+ "updatedAt": "2025-12-07T01:40:33.933Z",
"postProcessHash": "ada3db3d9afc6df89f01fffe6cdaf172e275fea40aad0d1e6a440bc530a7df77"
}
}
@@ -3849,15 +3863,15 @@
},
"1579230cd266b076718d44b00c6f2b14c604bd1468d47abd65c5b3f284ee238b": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.379Z",
+ "updatedAt": "2025-12-07T01:40:33.901Z",
"postProcessHash": "5a9e558f007c8216799e85d6928b6fa60a1215fe540ee35cdea429b4d19c2791"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.380Z",
+ "updatedAt": "2025-12-07T01:40:33.901Z",
"postProcessHash": "f7f2e7cda47e2a406adf5e7fc43ad3d6b8107d0b39726bf0e5e4ab5a44a52ab0"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.382Z",
+ "updatedAt": "2025-12-07T01:40:33.903Z",
"postProcessHash": "54ae54d4908aa6cb881c0abdbf013394d75bda9828f4008e0a1df9c56470041c"
}
}
@@ -3876,15 +3890,15 @@
},
"84e1f1ee89d0e933d7883bd51c19cc1497abc66ebb4cfc68cb7f690d71de87f5": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.384Z",
+ "updatedAt": "2025-12-07T01:40:33.905Z",
"postProcessHash": "33591395616a90822fbcd2632ebabcb49a8803494aba8a028b69dc51afdb0c54"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.422Z",
+ "updatedAt": "2025-12-07T01:40:33.929Z",
"postProcessHash": "5bf50d02759ee62bce8f381578b2d0eee1508437b88246e4189a66676257c9f8"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.385Z",
+ "updatedAt": "2025-12-07T01:40:33.906Z",
"postProcessHash": "f7b5fc36c896417e53f8535f588715f6086fbc9a8562db1d79b0aec3258dc0e4"
}
}
@@ -3914,15 +3928,15 @@
},
"b0fc3fe18db44f5d5e3138970ce56042937cae027c36a20826e5e83b18448c2c": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.379Z",
+ "updatedAt": "2025-12-07T01:40:33.900Z",
"postProcessHash": "38b483ace0062e2e4d7aff7f92af31e591ad0bd5b6afef17e7f20df38b27992d"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.383Z",
+ "updatedAt": "2025-12-07T01:40:33.904Z",
"postProcessHash": "f18539681eb6e25076b0fcccb6513d5a61fd58771c86fb5443c0dca4703d8f54"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.386Z",
+ "updatedAt": "2025-12-07T01:40:33.906Z",
"postProcessHash": "b7558b56b96127532fe43b6ceedfcd79da5f33583082d1ebf164a81d437c1d8e"
}
}
@@ -3952,15 +3966,15 @@
},
"f6377bf2dbd5497b12e74eecdf1c1400c517c2aec35e1ac91f461cd4769214b4": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.417Z",
+ "updatedAt": "2025-12-07T01:40:33.926Z",
"postProcessHash": "5a6eabb55ef741d3a9ec91052b2ece9b7b05b8515464f34dee55482405f9f214"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.422Z",
+ "updatedAt": "2025-12-07T01:40:33.929Z",
"postProcessHash": "ff221cad8299c0441a89215d748949d4791cb6b17955ce5281e73544785b5d1b"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.423Z",
+ "updatedAt": "2025-12-07T01:40:33.929Z",
"postProcessHash": "2bb9222be8ad6a93309739feef0dace849861e6d34c15ba08a59ea8543ddebd0"
}
}
@@ -3990,15 +4004,15 @@
},
"bc8397cc9a6ce325952185bd403e7322c795c94318958e9c38b0cbea30872f53": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.413Z",
+ "updatedAt": "2025-12-07T01:40:33.923Z",
"postProcessHash": "3dfe0b3a8adea57098cf6a28353cf3c877a5085cbd41a6e0e78c119243fd9156"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.417Z",
+ "updatedAt": "2025-12-07T01:40:33.926Z",
"postProcessHash": "7c29ebf872683033685b8098cffab0e516dfcc75434a8dac6c025d8c5cee4a61"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.421Z",
+ "updatedAt": "2025-12-07T01:40:33.928Z",
"postProcessHash": "8ba797a7b6f6ce48010f809e0f9c0a1d958f740c94e593f0b8cf0d296a6d44a5"
}
}
@@ -4017,15 +4031,15 @@
},
"53d7697aa5f590afda9685f76f9b36753da2903b860d4c937c9a58e10cac4877": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.378Z",
+ "updatedAt": "2025-12-07T01:40:33.899Z",
"postProcessHash": "4de934ac169563729300aa4fe2abd8cdeadb7699fb17d8026f90da5c9751c3ce"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.382Z",
+ "updatedAt": "2025-12-07T01:40:33.903Z",
"postProcessHash": "1b1c0780b1acd6039cb576939ae608c0a789cba16b1a1a202a9c40c9fb4078f1"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.385Z",
+ "updatedAt": "2025-12-07T01:40:33.906Z",
"postProcessHash": "41decad5cd376be69cf982a39d312f5205f5f0d6a5e78e3799f2598ff3f8e6c2"
}
}
@@ -4055,15 +4069,15 @@
},
"6065a4c2de7e7a039acb75fd86ac55270b68e0a1c50cce78c38218d7e17332be": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.411Z",
+ "updatedAt": "2025-12-07T01:40:33.922Z",
"postProcessHash": "f505d335e7e41002bead32a72ef8770e0f01aa55ddfd00df962df90c74fa6f30"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.421Z",
+ "updatedAt": "2025-12-07T01:40:33.928Z",
"postProcessHash": "4d31183d779a1f62ff522cd37888cdbe563be18971040f0cbebc87f22a3de068"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.420Z",
+ "updatedAt": "2025-12-07T01:40:33.928Z",
"postProcessHash": "c3b64d28e24a0b671275be48dc47ab4eb1e3e0b21912431067473846b817cd36"
}
}
@@ -4104,15 +4118,15 @@
},
"58530194580e1f232e86282b69ce2eca0690f31f7c0d6cace4af03fc68418734": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.369Z",
+ "updatedAt": "2025-12-07T01:40:33.920Z",
"postProcessHash": "abb859b784f13b6e795d658969fa78e074298e010e41db1cb3d828a1e91bcd8b"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.373Z",
+ "updatedAt": "2025-12-07T01:40:33.920Z",
"postProcessHash": "427a7a11f12a4c4197f656bc7720ac76d40c480c07ab129dd0195d007b58dcf5"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.373Z",
+ "updatedAt": "2025-12-07T01:40:33.920Z",
"postProcessHash": "fbaabf2cf64092cef80bb797cd12417c96f2545bea053c2aedae63197293533f"
}
}
@@ -4131,15 +4145,15 @@
},
"fa529df5efd3bbc04a1b2491b1b102472a547fa0543ac8eb62229ff695e1e2b8": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.376Z",
+ "updatedAt": "2025-12-07T01:40:33.898Z",
"postProcessHash": "4d4bf4147726be0b1956e1a1100c527d4bcf9fa1ce583d3c4d75a3814d33c519"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.376Z",
+ "updatedAt": "2025-12-07T01:40:33.898Z",
"postProcessHash": "820c6b8dd20c8435f1420f6b3345ca0f2c79af6d4c6c40a2047a821b12b65ab4"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.383Z",
+ "updatedAt": "2025-12-07T01:40:33.904Z",
"postProcessHash": "20a74979d1a3488b4b6d50975ca30584004746e99f1a7f632600aea7852a4342"
}
}
@@ -4169,15 +4183,15 @@
},
"7af7098ed0591bb1b52aeda833b7c793c648c594ddc27001cc458732beb61d42": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.381Z",
+ "updatedAt": "2025-12-07T01:40:33.902Z",
"postProcessHash": "ee7927a66bca5f3914e782982c16c4bd197ad1fc99475d6b796714ec5cdca520"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.381Z",
+ "updatedAt": "2025-12-07T01:40:33.902Z",
"postProcessHash": "c2ac1d60635a33b85cc74b7f3e9c7948eba155cc374c08a7b72a8db0fef9624e"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.383Z",
+ "updatedAt": "2025-12-07T01:40:33.904Z",
"postProcessHash": "09062f0322a3c03c37f1aadf8125a0bce1f1aef6090cc1100f954977b2ebfc3f"
}
}
@@ -4207,15 +4221,15 @@
},
"ff6db2e1d92370a81059bfc2de4d5a8e1f57d0325aba414f0579b5874c2f211c": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.417Z",
+ "updatedAt": "2025-12-07T01:40:33.925Z",
"postProcessHash": "68641cdacdd020c8dbaaf1b97877dd9c7c051bcf8df97cb41ec4f29dcd46f1df"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.422Z",
+ "updatedAt": "2025-12-07T01:40:33.929Z",
"postProcessHash": "548909345f09738e4c12e5ada740edfa12c3ba741627dd44bded6d3ba0157e98"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.421Z",
+ "updatedAt": "2025-12-07T01:40:33.928Z",
"postProcessHash": "499b29d6d13c9bf97ba8da19b96795e7c22aae097e67886ccd9fbb5ce7d46536"
}
}
@@ -4245,15 +4259,15 @@
},
"d6a5a6940e86056dceb450ae7e7d83a0ff1ae53e967a7386f2ee6e1a51cb1919": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.415Z",
+ "updatedAt": "2025-12-07T01:40:33.924Z",
"postProcessHash": "cb3a885b4c1e16998b51e7a68e2f80acc0c85795405cb8e5bea6213adb689962"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.415Z",
+ "updatedAt": "2025-12-07T01:40:33.925Z",
"postProcessHash": "e6ef32b6539f0fc8a299077c2101f4517407000d422c5751cecb64c25e31f40a"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.423Z",
+ "updatedAt": "2025-12-07T01:40:33.929Z",
"postProcessHash": "20a7ff032325dc1f4a2b20302aae40c6514032b0bb46bbec277ed5ebe0268a8d"
}
}
@@ -4294,15 +4308,15 @@
},
"7b5e31679e6dc64290dcbaf7ebdc38d509f113fac1106932fc5c382eae0f70f2": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.387Z",
+ "updatedAt": "2025-12-07T01:40:33.907Z",
"postProcessHash": "65d9d06b4c59c29060ebc535647e1d043c06d0af011948127afc661f003ff8bf"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.388Z",
+ "updatedAt": "2025-12-07T01:40:33.907Z",
"postProcessHash": "50b56894e24fefc140d3295b7479b802008f2870f0de88257d15c192eb066e83"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.425Z",
+ "updatedAt": "2025-12-07T01:40:33.931Z",
"postProcessHash": "ba83d909f06c536eed658c3bb9988e8b972ab31bf4ba50f21dbb7308a9183589"
}
}
@@ -4365,15 +4379,15 @@
},
"eb41c43939f88bd3938929ecf1ed929135f2aa5ad83f4775c2d2a29f1c9da37c": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.432Z",
+ "updatedAt": "2025-12-07T01:40:33.935Z",
"postProcessHash": "08d306d2877f2153abbf0658f9fe970c34da297bfeffc8b4b0b3a0cf04cf8aaa"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.426Z",
+ "updatedAt": "2025-12-07T01:40:33.931Z",
"postProcessHash": "1f333e535afbc58a202038b0e7bf2ce948a1666a4778f4d6195ba04a9acb7855"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.426Z",
+ "updatedAt": "2025-12-07T01:40:33.931Z",
"postProcessHash": "5af3afa46d9c04147a478614a47e51230424ac1d381fc18674b1db7684202306"
}
}
@@ -4425,15 +4439,15 @@
},
"15dcc5bf8fe3a6cc2d7be853f5ea3001fbd0a4390995b0d89c4688a863d93554": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.424Z",
+ "updatedAt": "2025-12-07T01:40:33.930Z",
"postProcessHash": "c368d5ac47f0591534eb11bfdbce32db76f6ff1efc5a281f4071da6d88c615fa"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.431Z",
+ "updatedAt": "2025-12-07T01:40:33.934Z",
"postProcessHash": "78909af21516a9d8fd34c573eec5893aba200d42e0150cf1d48ed7dd2668ad6e"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.430Z",
+ "updatedAt": "2025-12-07T01:40:33.934Z",
"postProcessHash": "e71e653dc7f9b3ce0030ee6f50335f33bc33e2e3c28b8b19d5f6e12117be1751"
}
}
@@ -4463,15 +4477,15 @@
},
"4b669eac3d8af5dba744f7619f5f1d7a71791df3e93cb61cdd5f4efa1a49e7a8": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.382Z",
+ "updatedAt": "2025-12-07T01:40:33.903Z",
"postProcessHash": "60896f6123f2a4804458e79e2db3fad7f776186252a130553dc6ad22dd1e1e44"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.383Z",
+ "updatedAt": "2025-12-07T01:40:33.903Z",
"postProcessHash": "d94bc7df19d521fbc5c43c567ee788bc635b8b6c208c98483330d9ce1a3d7a51"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.385Z",
+ "updatedAt": "2025-12-07T01:40:33.905Z",
"postProcessHash": "6f065465e8d462d374a00f95654c7a9dbabbfb291c4daac02d10dbc2289947c0"
}
}
@@ -4512,15 +4526,15 @@
},
"a36886f4bb4adc67e3f0f6784b450b2375adaa18049fbf2130e009b7e3e6b136": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.419Z",
+ "updatedAt": "2025-12-07T01:40:33.927Z",
"postProcessHash": "21e51ff7cc048a52da442b366a5f2a5c5734a924304df0d3ba6df9c0127277fc"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.420Z",
+ "updatedAt": "2025-12-07T01:40:33.928Z",
"postProcessHash": "c341c7751529f0f05840a6fcce139c1e968d7e7c3321e239cc1156302bc08268"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.421Z",
+ "updatedAt": "2025-12-07T01:40:33.928Z",
"postProcessHash": "a4f6eec5bf7b66e1894fd56f3e83bb4b725c0fc532cec374ca1e700c71379315"
}
}
@@ -4572,15 +4586,15 @@
},
"7c9eafb4b7ad5727b7732528fc5845233eb0449cbf65f1045cb340c823cbdff2": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.455Z",
+ "updatedAt": "2025-12-07T01:40:33.949Z",
"postProcessHash": "dc994883fee577bb57bfe868e2ff630a956ff8fd19ae775addb08b7a980cc6bf"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.454Z",
+ "updatedAt": "2025-12-07T01:40:33.949Z",
"postProcessHash": "84d48c235c22730da3bb03faf5228991b7332e84ec25123278ab302156d2812e"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.456Z",
+ "updatedAt": "2025-12-07T01:40:33.949Z",
"postProcessHash": "f0d4c2388941df409f92aad64c98e0fdab08e8be28373b0f526cade46fe999e5"
}
}
@@ -4610,15 +4624,15 @@
},
"daac240f9481ada70f4ab82196cb275ec718d8c2d714eb60b5c567634c3e725a": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.438Z",
+ "updatedAt": "2025-12-07T01:40:33.938Z",
"postProcessHash": "cef778ece2656866f974984362d25317410be8bdac20f55a8a8f3426ee3644a8"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.440Z",
+ "updatedAt": "2025-12-07T01:40:33.939Z",
"postProcessHash": "3fb68cc6016006437b9b159efff45fa7d81eaf3924d82544042ea2e740009f34"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.440Z",
+ "updatedAt": "2025-12-07T01:40:33.940Z",
"postProcessHash": "747a1a67ef6492bbff4d4659f4a1faa894e9830ee7b848803844019d038affe8"
}
}
@@ -4659,15 +4673,15 @@
},
"5f164293a7b7d857847dd6724df827abe1235b34e02d3b3ff596ad6884d30fda": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.453Z",
+ "updatedAt": "2025-12-07T01:40:33.948Z",
"postProcessHash": "5077d55dfb194414de3ccc6ad4fce47bcbb2b706604913baa4fd433cf0df42b7"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.441Z",
+ "updatedAt": "2025-12-07T01:40:33.940Z",
"postProcessHash": "468c6b7cbad8a8a544c73a25e2be40efc8ac71b6a372eb982cb8e4bc9062588d"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.444Z",
+ "updatedAt": "2025-12-07T01:40:33.942Z",
"postProcessHash": "15ccf30c58932162164363615489bfc2cc6a657bdd49f185ec2b7c96fa0cd1b6"
}
}
@@ -4697,15 +4711,15 @@
},
"c0ecdfc77f161f9ec951eeea61e89d87be13c8dcbf63cc28240bc8e495f7e7f4": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.411Z",
+ "updatedAt": "2025-12-07T01:40:33.922Z",
"postProcessHash": "448ce5d2b5fbbd572a78038bf7132cff0e71ba1e347160ba1a7198576e2f6195"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.412Z",
+ "updatedAt": "2025-12-07T01:40:33.922Z",
"postProcessHash": "d2820ec3ae42bd301ac2d90b8b9d73078a74b545ae61cce9372844fa64e22f1f"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.420Z",
+ "updatedAt": "2025-12-07T01:40:33.927Z",
"postProcessHash": "1551047fa8b5fc350260b9cee71617212cf7eb90682fb3981d11a6659c6153f9"
}
}
@@ -4748,15 +4762,15 @@
},
"b40c60718a227589b2b21319224942654b402d349ebeb430217cefce50203dd1": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.415Z",
+ "updatedAt": "2025-12-07T01:40:33.924Z",
"postProcessHash": "ac7a52a9427dc0ab43a67d18e0834c20640d1cad7d1e2c6f01f56895f23ba4c7"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.419Z",
+ "updatedAt": "2025-12-07T01:40:33.927Z",
"postProcessHash": "16f54f5c4ead634b1423e669341abfb0d7bfa3b2a0d5e7a8494ee5abec9ac073"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.419Z",
+ "updatedAt": "2025-12-07T01:40:33.927Z",
"postProcessHash": "6cdb281d722ac1a66703e5f6438102fcd8da9970d8db2e7df91f3800e1058e1f"
}
}
@@ -4786,15 +4800,15 @@
},
"1c0a8202856d2630d58fdd9440e8b59dc16e2e0d0df716f94c1c61506b0abf73": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.414Z",
+ "updatedAt": "2025-12-07T01:40:33.924Z",
"postProcessHash": "e891b940e13b1b63e6a49465d01a87aa7c328c45b63b3faa068131eabae9355f"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.416Z",
+ "updatedAt": "2025-12-07T01:40:33.925Z",
"postProcessHash": "b832478040fa89fe4ef18efbc0acc74b6e85e26138aa62dfd861d9e6f517bb36"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.418Z",
+ "updatedAt": "2025-12-07T01:40:33.926Z",
"postProcessHash": "d4198c527fc9951a00defec1cf841e763d9e88d137ab1415d478ea17dec82c2f"
}
}
@@ -4824,15 +4838,15 @@
},
"2a0f0b7a4c2e97c104841a7ca775cb7ea2d904d3c58797b4df16f21bed656cbf": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.416Z",
+ "updatedAt": "2025-12-07T01:40:33.925Z",
"postProcessHash": "4c51eeb094c01e18e658e0aa81d2a1b92a5571ef0d457cbddebceedcd29e9559"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.439Z",
+ "updatedAt": "2025-12-07T01:40:33.939Z",
"postProcessHash": "fdfca5d48424f7e26c868ff031ddd100aca0b0b2b06b56c6d913ffed3564f324"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.441Z",
+ "updatedAt": "2025-12-07T01:40:33.940Z",
"postProcessHash": "9558b0a06dfe4c8cd1da2a6b691060d876dedbff3c04057d522619fa4e173adb"
}
}
@@ -4862,15 +4876,15 @@
},
"cc2a087cfe19f368db8940e1369be0e2b08997d401eb3bafcb63ce4b0c545328": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.428Z",
+ "updatedAt": "2025-12-07T01:40:33.932Z",
"postProcessHash": "2d0814783035e4b89de5a957b8d1b41a27bb81f876e7e8b1a275b7a1bd3261af"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.431Z",
+ "updatedAt": "2025-12-07T01:40:33.934Z",
"postProcessHash": "955a93f808a54b74246c778e1df735495c6ae9ee68e1b3030dfb508312d06e0a"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.417Z",
+ "updatedAt": "2025-12-07T01:40:33.926Z",
"postProcessHash": "9be79651513924e3f0c5e17696f0e3097b8e51c4943f69fc32e586bfb3408044"
}
}
@@ -4911,15 +4925,15 @@
},
"1e5e24c5831011296eb0d6e6dbb9c228554eb4545d985aa2aabfa4b2eb8010b6": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.438Z",
+ "updatedAt": "2025-12-07T01:40:33.939Z",
"postProcessHash": "ea641246293f4eec3bab002aa06c10563068b6cd2c1da2b85234f81d6287f545"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.443Z",
+ "updatedAt": "2025-12-07T01:40:33.941Z",
"postProcessHash": "b2347b905781b2791126330873e2dced730a5a8fc4125ccb217f81918cd323a5"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.444Z",
+ "updatedAt": "2025-12-07T01:40:33.943Z",
"postProcessHash": "1af0f69d927b2d1aa2a98fdd99bd69001706144f79cfdeaf1963d703ced347d9"
}
}
@@ -4960,15 +4974,15 @@
},
"2202aa02e9ae341447ee588b80ce34cf38f9e450be559627fb28845418cd4906": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.442Z",
+ "updatedAt": "2025-12-07T01:40:33.941Z",
"postProcessHash": "ddd5dca0075078e52e20d43c61eed52d651375256591c6042d8b20b558219273"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.439Z",
+ "updatedAt": "2025-12-07T01:40:33.939Z",
"postProcessHash": "fd534b52300a6685457e2dd9e6563e7dfb52e5a84d8e2fc3dd6c8c6bec435eff"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.445Z",
+ "updatedAt": "2025-12-07T01:40:33.943Z",
"postProcessHash": "62073aff38c1e8c02c4c9ecbe9fe9cbddccacb380883c754e298e9d9620296de"
}
}
@@ -4998,15 +5012,15 @@
},
"8b3eb4d91a03437fdb577ff828b7858bed1d4efbac277fcc00b6de4d73556b7a": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.418Z",
+ "updatedAt": "2025-12-07T01:40:33.926Z",
"postProcessHash": "828da7beeb813df86e4bb1e1292a4ef9236701f6ae35fdd2800bb1b1ea78a8fc"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.420Z",
+ "updatedAt": "2025-12-07T01:40:33.927Z",
"postProcessHash": "880afc8d2f78c5306cb8defed9098c278ed7924d315bd61514b22186513912aa"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.422Z",
+ "updatedAt": "2025-12-07T01:40:33.929Z",
"postProcessHash": "3d70cd16a3c92c4b3494a1c1c2a028c8874c74a64defafe3bf9a3957d136f57a"
}
}
@@ -5036,15 +5050,15 @@
},
"717ba6ec955149d36b641a29e243d1a562bc0a4a45246ea8f00e97a12de033a2": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.452Z",
+ "updatedAt": "2025-12-07T01:40:33.947Z",
"postProcessHash": "bf21ae9fd3d5b766a06fb12a9cf16816ce273a35e9aa75c13938d0824ed0fee0"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.450Z",
+ "updatedAt": "2025-12-07T01:40:33.946Z",
"postProcessHash": "ef9907be38c9bc93ad52723ed826bb9b8a417740689d459f6b42870a213d6002"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.445Z",
+ "updatedAt": "2025-12-07T01:40:33.943Z",
"postProcessHash": "abd93d995fc73a033db16ab360f5dfdb5d301c2c82cb755a0aadbb26ac035203"
}
}
@@ -5085,15 +5099,15 @@
},
"4933445bff862f003961a7d56f1c800fc218b7e831b9c7182f9698938ea39796": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.448Z",
+ "updatedAt": "2025-12-07T01:40:33.945Z",
"postProcessHash": "6ede8ae21abf5012ddf1a4be44daabfc817bc6f9b9228c984afe5804279dab12"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.448Z",
+ "updatedAt": "2025-12-07T01:40:33.945Z",
"postProcessHash": "bd1b8d353e3bfff4deb7697a910a657b194498896b1efbd5544d8a41ba96c418"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.450Z",
+ "updatedAt": "2025-12-07T01:40:33.946Z",
"postProcessHash": "e6e0fb75fe3186975eb1f8dc9864659d7c5809da28c34479d5186509499e05a3"
}
}
@@ -5123,15 +5137,15 @@
},
"490447ff6751bd36032615f87abdbbf88d8fbe2abb4e3a562a822148c6c24722": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.412Z",
+ "updatedAt": "2025-12-07T01:40:33.922Z",
"postProcessHash": "d7d3a81b544e7365c911dd73a60b7f318fd23ce51656e2faf7625cb5a03ef0ee"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.418Z",
+ "updatedAt": "2025-12-07T01:40:33.926Z",
"postProcessHash": "dd06bc1acb52401b6f6ca746c2c1a92da627491828b629afcb2f33f426089294"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.418Z",
+ "updatedAt": "2025-12-07T01:40:33.926Z",
"postProcessHash": "538b31c1f99fbe57cf6e6ede626c83d1def64cd5dc9b23ae567fc98077cd2117"
}
}
@@ -5161,15 +5175,15 @@
},
"9e6bd9dddc84ee56ab61dd51d66778954d94835fa02e115422354fbc956a4a8d": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.452Z",
+ "updatedAt": "2025-12-07T01:40:33.948Z",
"postProcessHash": "caa3e0316a4a3480a61d22d8cb5ebbab62d94b89282fb6bf718ae6d1ba46c992"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.450Z",
+ "updatedAt": "2025-12-07T01:40:33.946Z",
"postProcessHash": "9718fb7d06f4c55a514dffa5450cfefd8c1d27ceb38178a3ef96f0a2ef42bd69"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.439Z",
+ "updatedAt": "2025-12-07T01:40:33.939Z",
"postProcessHash": "aaaefa2927cd92debed8c8c6de6a5d4e5439e0c5b51b9a4217ce3367ef4249a4"
}
}
@@ -5210,15 +5224,15 @@
},
"ce6876fe5f22e2c6437a4d497bad2b008231a76eb534358aeec83c667205144a": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.427Z",
+ "updatedAt": "2025-12-07T01:40:33.932Z",
"postProcessHash": "8227d59cca45c6364e78b3e8a5228f00c143c37612d56f3e2e4ce9c95c70f80b"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.428Z",
+ "updatedAt": "2025-12-07T01:40:33.932Z",
"postProcessHash": "eb7b1485c64f6bc6a5a07c86f490de17cae3eb944fbb52484e1a5adc254e98bd"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.428Z",
+ "updatedAt": "2025-12-07T01:40:33.932Z",
"postProcessHash": "d886c4d488c36fa262c26e6be5be60241c8783a105fdedbdae5a037b29de8da2"
}
}
@@ -5248,15 +5262,15 @@
},
"f3c2f45fd08c00d6549d66c81c11f1b2851ec3db49e4c254e5b05f87b192bfa8": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.412Z",
+ "updatedAt": "2025-12-07T01:40:33.922Z",
"postProcessHash": "4f28eb2a016ab57d246d4c446dfb7fec3696124e40e398e34fb599576ac91c35"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.419Z",
+ "updatedAt": "2025-12-07T01:40:33.927Z",
"postProcessHash": "0a464bc05af953102dc10645e49c5fc6f7315061203625db7fd68a62cd4f50f7"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.421Z",
+ "updatedAt": "2025-12-07T01:40:33.928Z",
"postProcessHash": "5ba09ce062aa030f7301aeb199989b1d938ee279f6fc1040fd2fdbd681bf3824"
}
}
@@ -5308,15 +5322,15 @@
},
"ee4f96bff0470723b7a10737aa848e0d3cdf797351ac32229d9d22a82ed34e59": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.408Z",
+ "updatedAt": "2025-12-07T01:40:33.920Z",
"postProcessHash": "943ad62ccf5e87246cbd8032a56ef87fac96dcf23591fc46e9c3b397f95dad53"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.409Z",
+ "updatedAt": "2025-12-07T01:40:33.921Z",
"postProcessHash": "2ff0148d1a8d9be8b0b5a9c4d5d3f3a3dcef4d1189434a43373b809e4d43b30a"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.409Z",
+ "updatedAt": "2025-12-07T01:40:33.921Z",
"postProcessHash": "e6f38994ff4810c823540cf2ce0102d796cdaf5590d8b6657eb370f19f07c40b"
}
}
@@ -5357,15 +5371,15 @@
},
"ecf8a04b3e44574002cf2d4e9de7760b9f518ea76315815e9bba74ebf4f3e229": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.447Z",
+ "updatedAt": "2025-12-07T01:40:33.945Z",
"postProcessHash": "5bcb57afcbe6871695d33d23f38e742b95d4a3e07321b8c9925ebb858319e89a"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.448Z",
+ "updatedAt": "2025-12-07T01:40:33.945Z",
"postProcessHash": "46e99f1e56f51f569eea9096876e68cffb39f3bc9e26b8a237554fbde4774693"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.448Z",
+ "updatedAt": "2025-12-07T01:40:33.945Z",
"postProcessHash": "85a9a833133b6f290cbd3c9869b9e0d5f4f3e0601ea0a8a0e958dc058074c670"
}
}
@@ -5395,15 +5409,15 @@
},
"f8b9a9d106b121e6ddbc9bb70445ad03bea3db43afdce8ba3db21e5f8bb27def": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.431Z",
+ "updatedAt": "2025-12-07T01:40:33.934Z",
"postProcessHash": "206743920b96854fecfe5e5aa153d017cb74ab603f9c998005f5cffc0710fb65"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.432Z",
+ "updatedAt": "2025-12-07T01:40:33.935Z",
"postProcessHash": "7dbd9a4f7c1c8313cbc68d1c267cc76ecc14d707a1d441a170943923869baf9f"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.420Z",
+ "updatedAt": "2025-12-07T01:40:33.928Z",
"postProcessHash": "09d8774c603804597ac2111f67bf975166a3b4e46e9229079fa4c85614213aa6"
}
}
@@ -5502,15 +5516,15 @@
},
"c7acb0e57983d98584373b6c7096d770548217418efc906335271ac88a871253": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.490Z",
+ "updatedAt": "2025-12-07T01:40:33.961Z",
"postProcessHash": "e23812c87496d210b6444e8517e972117c6a9d4b1a11496a35aaa6b30d114538"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.491Z",
+ "updatedAt": "2025-12-07T01:40:33.961Z",
"postProcessHash": "ee9a0e1cc49b56c4abf19c8914d7ef3c99f004d87bd1638a37c4ab5469fb4f0b"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.491Z",
+ "updatedAt": "2025-12-07T01:40:33.961Z",
"postProcessHash": "54d92eb224cab1b9daf770f0bdf36ab161e0645b103b638bfa2a60c635f51e2b"
}
}
@@ -5518,15 +5532,15 @@
"53c3b9e499ef5bd5e368aa05a9a2484ab2e83e086a848e4dc65f744f4303c18f": {
"fc7569e7101cf497720e212cf9526dfda81c1a7301c1866a84396fb6339961ed": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.494Z",
+ "updatedAt": "2025-12-07T01:40:33.964Z",
"postProcessHash": "fc75c2d9938841194e2d671eef3d30c51041573d551759f489ffcb22eced7246"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.495Z",
+ "updatedAt": "2025-12-07T01:40:33.964Z",
"postProcessHash": "10b19f2607796220023bffe69a09859b9214413133e5553d2e12a9329e0c3b30"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.495Z",
+ "updatedAt": "2025-12-07T01:40:33.964Z",
"postProcessHash": "6f470191e7ba5700ea93b6111e10536bd7763d866c23a98d3433de076a76deda"
}
}
@@ -5567,15 +5581,15 @@
},
"86d5122da17807a0fa71ef1c13380126a4d638a2fa21a6b325cc13132e480681": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.450Z",
+ "updatedAt": "2025-12-07T01:40:33.947Z",
"postProcessHash": "258af03eb7a52cba3490f2584bcc7f71eca53cb80d95dde9d1d83c35f06dd21a"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.451Z",
+ "updatedAt": "2025-12-07T01:40:33.947Z",
"postProcessHash": "15862f6624698d445c51efb13211ebec4ff894f3769dddf4ab6b427bfa8a06df"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.451Z",
+ "updatedAt": "2025-12-07T01:40:33.947Z",
"postProcessHash": "7bf48d9c603b8fee319e394f4e473b8accde60c47eb27d66da791d54b544eb6e"
}
}
@@ -5605,15 +5619,15 @@
},
"0228942914d7754379a163a3e9fd8dbd1c314df31b406d2df877d274d0fb8282": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.439Z",
+ "updatedAt": "2025-12-07T01:40:33.939Z",
"postProcessHash": "8c91e8fa4167ba210f3b2308851eb38c98c17189132ec7aa32b05083bb0237e0"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.444Z",
+ "updatedAt": "2025-12-07T01:40:33.942Z",
"postProcessHash": "d3542f324dfd3a229718e408121faa79dafcecd08651a7b126d8ffa69cd4ce2e"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.454Z",
+ "updatedAt": "2025-12-07T01:40:33.948Z",
"postProcessHash": "060b01f1938957d59bec7ad8776126885d294603716897fa8fd61202f2456945"
}
}
@@ -5643,15 +5657,15 @@
},
"fa3c99c7b63408c3050a1074fce5edf8c4b0f834acd9219844bb6b030cfb03fd": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.437Z",
+ "updatedAt": "2025-12-07T01:40:33.938Z",
"postProcessHash": "b8bd6be1c7f2126cbdaeaceb27cd9d7acdad6e2284816c7b36d962908cddd443"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.438Z",
+ "updatedAt": "2025-12-07T01:40:33.938Z",
"postProcessHash": "d422a254afeb71d677fcf8c567ffb783d97f2954e3235e158f5e8d8d33f09ba0"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.445Z",
+ "updatedAt": "2025-12-07T01:40:33.943Z",
"postProcessHash": "1498da6b6d1ab7ee0eb15b95c959ce9d07442d8e567b35939e8585a4b706930f"
}
}
@@ -5681,15 +5695,15 @@
},
"adbe9541002b1646c97b2808c84189ee9f023c72ad021051e865d9d5ef268ec9": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.412Z",
+ "updatedAt": "2025-12-07T01:40:33.922Z",
"postProcessHash": "4b0acbfe6598a091275b0e8bb0e204956606e3250e939e46c796cc67719609c4"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.413Z",
+ "updatedAt": "2025-12-07T01:40:33.923Z",
"postProcessHash": "9db8494b6a5fc6f8d035c978771fda3d0f622d7365996b5086201f7cea7ba409"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.440Z",
+ "updatedAt": "2025-12-07T01:40:33.940Z",
"postProcessHash": "113a8f8013e81920fc3346eb087306aefbe82ef33b8bc0648c4d0acf9bb7ce97"
}
}
@@ -5763,15 +5777,15 @@
},
"78489f8b8d97cf3a3aa5760913d11d4037f3c94e7bbe7c3ee3a3b970d06e026b": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.457Z",
+ "updatedAt": "2025-12-07T01:40:33.950Z",
"postProcessHash": "c75ec4f60ba49ba11cc777c3fa777c2c017b58eb790730151f6e3fb1351e9d1c"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.457Z",
+ "updatedAt": "2025-12-07T01:40:33.950Z",
"postProcessHash": "91c582baff65e6836a65ee3c092b793c6b18efcce9d06f88d4734f65893ecff0"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.457Z",
+ "updatedAt": "2025-12-07T01:40:33.950Z",
"postProcessHash": "d85520c2a80d05c2e262bf7a104080da92c6f4094c7ec20ba9eb90ae4de6c349"
}
}
@@ -5801,15 +5815,15 @@
},
"79ce9a01a754dff7caa2815c273adb26f9fa5e7a21f6e8e07fc94d1f85cdba74": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.434Z",
+ "updatedAt": "2025-12-07T01:40:33.936Z",
"postProcessHash": "4f3d9036b6c463c31d5d73da325be00fc2f397e1caacd8189f0ccc1ee8e14a33"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.437Z",
+ "updatedAt": "2025-12-07T01:40:33.938Z",
"postProcessHash": "fa4b69feb4a7ff9a420eb06a60cf2ee33443e29243043d54a564a6b12a4228d3"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.444Z",
+ "updatedAt": "2025-12-07T01:40:33.943Z",
"postProcessHash": "edb3a451e5f74672eb9931e14a85482d7ed3e838a1c45b58040fcdb8ca2a8243"
}
}
@@ -5839,15 +5853,15 @@
},
"cb332adcfe09bedb087e499ecf60d6a233e8053ca49c78bb30ca1add261b4ea8": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.435Z",
+ "updatedAt": "2025-12-07T01:40:33.937Z",
"postProcessHash": "d3f4ff69a82a65ed50e89bef979ce2e2a4177f6aecd78ed924d81542122e8812"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.437Z",
+ "updatedAt": "2025-12-07T01:40:33.938Z",
"postProcessHash": "831df8b865aa0658cf5481cc3a6d40eb2d06d3ba5e4232130dbd8208ae905817"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.441Z",
+ "updatedAt": "2025-12-07T01:40:33.940Z",
"postProcessHash": "154f89bdf5fd85627d81ad5d075da2c577fccb2126d8c2d2f87418b89ff5f52f"
}
}
@@ -5877,15 +5891,15 @@
},
"0d47285825c7ae55984e6f9c3d7528dd673f95650add2cbb567f8c29315f01d5": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.436Z",
+ "updatedAt": "2025-12-07T01:40:33.937Z",
"postProcessHash": "7b1d3ca88d0e73f3be028e1fe38f0322a2efed3dcb2988bd5da04967bd3c2e05"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.438Z",
+ "updatedAt": "2025-12-07T01:40:33.938Z",
"postProcessHash": "55880c10f3d37ee1d716a38031a483f2543afba521909dc4408c72579b11ba55"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.443Z",
+ "updatedAt": "2025-12-07T01:40:33.942Z",
"postProcessHash": "099305d139ec4025d49c85572a0fcdf7aa05cb23992d78d03ffb3aed637b9d85"
}
}
@@ -5915,15 +5929,15 @@
},
"9277c5d065b05d3f338e148bb8b9a7359baa986e51127a488155faacbc3c3a72": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.435Z",
+ "updatedAt": "2025-12-07T01:40:33.936Z",
"postProcessHash": "faee58249dd8a9113f3aba705d6dfaec41a3fe393600f29d7135705206db09fa"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.436Z",
+ "updatedAt": "2025-12-07T01:40:33.937Z",
"postProcessHash": "a60b72007a91b910277cefb0cfa09e751a90eb2e5b663cb1a1047689c6c50cb4"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.443Z",
+ "updatedAt": "2025-12-07T01:40:33.941Z",
"postProcessHash": "7f5ae4e82939f74154200b48db75a609911af14e320bcf71bdd1ed44ed4dffd7"
}
}
@@ -5964,15 +5978,15 @@
},
"c957730742bfb92e2dc7fb525f717a4437abf5f9440efbbac1db614a1b98a392": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.447Z",
+ "updatedAt": "2025-12-07T01:40:33.944Z",
"postProcessHash": "cced41b6e6d7b9628f4573f9468ee1759122bb6f0570669d067a4873bdba1fa8"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.449Z",
+ "updatedAt": "2025-12-07T01:40:33.946Z",
"postProcessHash": "08a684c08c6145f36f681fcdcd5a809e2241033d14484876bc1de355fe6294ff"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.449Z",
+ "updatedAt": "2025-12-07T01:40:33.946Z",
"postProcessHash": "75f945df223e9bc12d4dfbe86962bd30eecc250670cd63a3cd480c403d07ce66"
}
}
@@ -6002,15 +6016,15 @@
},
"ede4781ac253b215e63e85bc6df9f6b663c66406f6357aa7af4eeffb8d1a98cf": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.437Z",
+ "updatedAt": "2025-12-07T01:40:33.938Z",
"postProcessHash": "37b2ffe2b7b48cd1f25fa55f91837972d06bf29bcbbd52dbd45abf29105f1e91"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.439Z",
+ "updatedAt": "2025-12-07T01:40:33.939Z",
"postProcessHash": "c8fc5a4cc90098f978f22a3edcdbe727587c6e68fd2b83bf3ff21a1a76b80c58"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.443Z",
+ "updatedAt": "2025-12-07T01:40:33.941Z",
"postProcessHash": "37253f6b18842eb86e4fd436766441ce9297e358f404a239c698562baa430714"
}
}
@@ -6040,15 +6054,15 @@
},
"077aa8e71ac9b1ad9784f1fdb2f0f2272d89aef4e499c387a943a032aa224732": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.414Z",
+ "updatedAt": "2025-12-07T01:40:33.924Z",
"postProcessHash": "f0b4564abe56b90d979fd97246c207ebd30c74de30f0e64b94824db60f7e60bb"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.441Z",
+ "updatedAt": "2025-12-07T01:40:33.941Z",
"postProcessHash": "c481f3a0059f7ddc6e91388789cb8a9471ed02ad32e4ba9090b6b3fafc2ddb0c"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.446Z",
+ "updatedAt": "2025-12-07T01:40:33.944Z",
"postProcessHash": "39d867622e218bdaa5d41f34fb9ebc79bd6cc4a3674aa92102c522722b3002b8"
}
}
@@ -6089,15 +6103,15 @@
},
"55fa23acdb7de467734fe16b314362e832463f3c8bb6f5c6582d9160f35cea0e": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.453Z",
+ "updatedAt": "2025-12-07T01:40:33.948Z",
"postProcessHash": "341f9e89ea1dd3170301bc66c73f074807cc3bf5b7a6a80c292a6470e113d77c"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.485Z",
+ "updatedAt": "2025-12-07T01:40:33.958Z",
"postProcessHash": "322945abb43c04f46c37350dc3427053ede6bc9c9f3e427f09dfa581accf402d"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.485Z",
+ "updatedAt": "2025-12-07T01:40:33.959Z",
"postProcessHash": "d640fc4ec5920fbf22a781fa548f1e6c887a0171765fa56dbe77b952c576820a"
}
}
@@ -6127,15 +6141,15 @@
},
"09e6faacedcffff953e51c59a6092cbbe84f4d0578d592bc9decaa2ea769e610": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.413Z",
+ "updatedAt": "2025-12-07T01:40:33.923Z",
"postProcessHash": "c254e7e62a9dae1516c69ed5ac715725f7fefa8cbf15a8ee661c0fac377564bd"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.442Z",
+ "updatedAt": "2025-12-07T01:40:33.941Z",
"postProcessHash": "8b30533125ef020face675322f662b6d39aac227c7c0c01daf0f899b97deb185"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.445Z",
+ "updatedAt": "2025-12-07T01:40:33.943Z",
"postProcessHash": "fc09af799d0e6a57696d98961e5f4cb4eb2bfdfc3318c3809a6e764c1b73229e"
}
}
@@ -6176,15 +6190,15 @@
},
"932164e54df873e85483457879f18e64e32a0b2e369f5ac02f63fa24d0b597e8": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.410Z",
+ "updatedAt": "2025-12-07T01:40:33.935Z",
"postProcessHash": "056911e012472d793cdaba50a2c8ca12f4349eb3638a494c3b195b49d77a72e2"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.434Z",
+ "updatedAt": "2025-12-07T01:40:33.936Z",
"postProcessHash": "7f0676d4ad461ace403c926ce54814362c763cd819d35541fca58540e71f867f"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.434Z",
+ "updatedAt": "2025-12-07T01:40:33.936Z",
"postProcessHash": "0140c7068930261b4ca0c63f9afcf41fa317a62e0d09e283570ad12a6ada18db"
}
}
@@ -6225,15 +6239,15 @@
},
"ec71bf3822a4c56c270e9b788ef048e6f9cee300afd195dca52467da091b89a9": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.483Z",
+ "updatedAt": "2025-12-07T01:40:33.958Z",
"postProcessHash": "8aa134d755c87182a2a2c754987870ec6bef9069233c2afce67cf50dc6b0a46d"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.484Z",
+ "updatedAt": "2025-12-07T01:40:33.958Z",
"postProcessHash": "bae6438ff1d33e4cfc1694d8f2c5084af8bce770aae84786a6f4d1870601acfd"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.484Z",
+ "updatedAt": "2025-12-07T01:40:33.958Z",
"postProcessHash": "526616ad2a6ef4c92f94be4802a62f779caaf8ec5ce1aea6caef80fa78a19159"
}
}
@@ -6263,15 +6277,15 @@
},
"160f5f116c9fa308d3ec6a5259bbd3981661441ed3005e4cecde5805eb67d49f": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.413Z",
+ "updatedAt": "2025-12-07T01:40:33.923Z",
"postProcessHash": "b28d42a6f94c40653c2068e6658b348d192f91c3a4d711f865121c8cf9dd1130"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.414Z",
+ "updatedAt": "2025-12-07T01:40:33.923Z",
"postProcessHash": "b296312f68f318d7230611776108eea87a4b53ed201c8aabe3ee79bfd290c562"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.416Z",
+ "updatedAt": "2025-12-07T01:40:33.925Z",
"postProcessHash": "8510c54a3b69f2ef327f022a09fb5e0e960dbd13b0700a28548f682f8c98f3ec"
}
}
@@ -6323,15 +6337,15 @@
},
"c9b2cc3264dd28035c31174a00e7a3504fa6b70444ad3e472634e138afa04319": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.454Z",
+ "updatedAt": "2025-12-07T01:40:33.949Z",
"postProcessHash": "ea8bbcd89d42a8e2c0721a7ece139530b580b0c7cb371a1f34c26ded8e6d8813"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.455Z",
+ "updatedAt": "2025-12-07T01:40:33.949Z",
"postProcessHash": "b22782c350becf853cf1dc0dd62c4856f03f686ef279eac76dab13a900f8c16f"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.455Z",
+ "updatedAt": "2025-12-07T01:40:33.949Z",
"postProcessHash": "01a11811d746c3f84e24719f9c34d630e81333caa40a2d91251403b0c20ce425"
}
}
@@ -6372,15 +6386,15 @@
},
"d5f72a1068546e50a8769f65162ffc337c9b76d937e24eaec2c75f7a648f9644": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.446Z",
+ "updatedAt": "2025-12-07T01:40:33.944Z",
"postProcessHash": "4b96a26b6a0d2408f284b7a0f8ec5f46297d6c78fb078d02bfd39f59611f2362"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.446Z",
+ "updatedAt": "2025-12-07T01:40:33.944Z",
"postProcessHash": "24d1f539b7505c87d034f56f7ac314e41f8265813e2897b121a9db6a2bc2e42d"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.446Z",
+ "updatedAt": "2025-12-07T01:40:33.944Z",
"postProcessHash": "4c350da45407f8e3c54b1c6f18383581434a8f9b13324e61d4c1de12a14cbbaa"
}
}
@@ -6443,15 +6457,15 @@
},
"b2941acc9defbd3d9c3b300b73704cac0dd2fb86b77e667eb6cde4d0fa6c5495": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.447Z",
+ "updatedAt": "2025-12-07T01:40:33.944Z",
"postProcessHash": "c6f28bc8100939a6fbdeeaf3abddf03ffd521cac6a8f9a8c9ef27654ea4446c5"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.453Z",
+ "updatedAt": "2025-12-07T01:40:33.948Z",
"postProcessHash": "b5baf0b834fa723f2343b63f5e321b8a30d7305b3e43b85726e6346a367df99d"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.447Z",
+ "updatedAt": "2025-12-07T01:40:33.945Z",
"postProcessHash": "a4fa03f2c6225f764bb541f9b1b603f772d36521832551be5048899fd37222f7"
}
}
@@ -6506,15 +6520,15 @@
},
"63da82ed66e97333aa48b4c26afdabccb4cb0093e4ad3fbdc95ca7401ecd48ee": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.492Z",
+ "updatedAt": "2025-12-07T01:40:33.962Z",
"postProcessHash": "2607f1276c8002d280c484e57066d836f4d687dda0105d602403e27e537a9b1e"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.493Z",
+ "updatedAt": "2025-12-07T01:40:33.962Z",
"postProcessHash": "263cb451fcd5d5b8cf92ca2db0a712f6da9c1b40df6a21e66cff85f6fb09721f"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.493Z",
+ "updatedAt": "2025-12-07T01:40:33.963Z",
"postProcessHash": "05200b474df235a5ea2813ef6624d4c662f9c6e80ad135e3e088af43fe5b8ba1"
}
}
@@ -6568,15 +6582,15 @@
},
"acfaa578e31469bba912c816947b7f178d4832f82c00d05c3e244edd94887e39": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.505Z",
+ "updatedAt": "2025-12-07T01:40:33.968Z",
"postProcessHash": "1bf805d28357fd4c6516184713411d605ca067fec74cc0d93dfe220ff49585bb"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.505Z",
+ "updatedAt": "2025-12-07T01:40:33.968Z",
"postProcessHash": "13005ac041b93bd857d8e59aaa93c6efd67ced33e802174e8b0d67f43e384265"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.506Z",
+ "updatedAt": "2025-12-07T01:40:33.968Z",
"postProcessHash": "792476f5828a03d073e4b19df36512d43f64747ae6d95f7ae3be63b9f4fec9e9"
}
}
@@ -6584,15 +6598,15 @@
"d94f062276e8ad0d42732979d06ce717dd7311616fe48748e00dba55829e49e7": {
"38383b08735a5cb0e05fd23251b27a3ee86198c1e15186670fc6283782cd16ac": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.496Z",
+ "updatedAt": "2025-12-07T01:40:33.965Z",
"postProcessHash": "7be6faa4e42554befd520c19a6f3491993e94a21f662c1efdb2d40c9cedff8f9"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.497Z",
+ "updatedAt": "2025-12-07T01:40:33.965Z",
"postProcessHash": "1b8a6318b0dfe185d0659617edc34dbca1e15a9c7c691840d2b863f61ecee115"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.496Z",
+ "updatedAt": "2025-12-07T01:40:33.965Z",
"postProcessHash": "61a8388dd04e334392c1787d6c488bdc84b7c6700c627791b00fb54d534be8d2"
}
}
@@ -6600,15 +6614,15 @@
"b75acb2803501aae1bc445e5c4671f7a1cb79a55d21e1658ded84494ddd40dd7": {
"2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.497Z",
+ "updatedAt": "2025-12-07T01:40:33.965Z",
"postProcessHash": "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.497Z",
+ "updatedAt": "2025-12-07T01:40:33.965Z",
"postProcessHash": "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.497Z",
+ "updatedAt": "2025-12-07T01:40:33.965Z",
"postProcessHash": "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419"
}
}
@@ -6638,15 +6652,15 @@
},
"70ae68e58bd169fcaad5883e12866d9623dd08aeda647b33d080900e63da30ae": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.461Z",
+ "updatedAt": "2025-12-07T01:40:33.953Z",
"postProcessHash": "f5f221ba2d8314ef1816a191296a593d06fd07914a257fd35677d80acbe77127"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.463Z",
+ "updatedAt": "2025-12-07T01:40:33.953Z",
"postProcessHash": "e69840c0323e058adde26e5c16ba77be21fb16092c2b0486a533fd3a0a4533d6"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.467Z",
+ "updatedAt": "2025-12-07T01:40:33.955Z",
"postProcessHash": "874e43e0aeff69d04c072315bd02c26fc170450ace3dfdfe271838a07640fdc3"
}
}
@@ -6676,15 +6690,15 @@
},
"abd558ca5dff83fea0f652890cb390fbf5a7818d903e464a8407cbac75b6926b": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.471Z",
+ "updatedAt": "2025-12-07T01:40:33.957Z",
"postProcessHash": "df401d1fb70452352dfd19f417d03ac67d4157ce1fb061c488118515f304fcc8"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.470Z",
+ "updatedAt": "2025-12-07T01:40:33.956Z",
"postProcessHash": "e91542489d8909439b4f25d8d514c0b9eee432a9102578c35340641a1b995708"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.483Z",
+ "updatedAt": "2025-12-07T01:40:33.957Z",
"postProcessHash": "e78b8df95f3554b1e5796fd4431fc6ceed73b4e2524ccbb6b815754d80243461"
}
}
@@ -6703,15 +6717,15 @@
},
"14c735b1f5d231158fc82ee047c2c33adf31bf94b27796f516f1287a5bcec0be": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.470Z",
+ "updatedAt": "2025-12-07T01:40:33.957Z",
"postProcessHash": "9c992242df738e1c797c2559c72263d523df37252b4bf886b45fa0e6d1982974"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.471Z",
+ "updatedAt": "2025-12-07T01:40:33.957Z",
"postProcessHash": "272a49cce702d034dd784a972f2df536efad5e9666c3b2466a7df2a826b31ad7"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.471Z",
+ "updatedAt": "2025-12-07T01:40:33.957Z",
"postProcessHash": "4f947e6f4c702c653ee263be612941c3c69378052b0a439e6d4508d3fe3293ab"
}
}
@@ -6741,15 +6755,15 @@
},
"6b0824d08f834f9a5d538b3b8632f9b239036b14491d42acebef6408dc7ec637": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.460Z",
+ "updatedAt": "2025-12-07T01:40:33.952Z",
"postProcessHash": "5658e43759591f4255778f584e2633d06428537642b0becca5cc0039082d5da3"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.465Z",
+ "updatedAt": "2025-12-07T01:40:33.954Z",
"postProcessHash": "f7f3edda9e945c9383face672f3b3bea008ab3ee22fd84e4786e6d515542009a"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.468Z",
+ "updatedAt": "2025-12-07T01:40:33.956Z",
"postProcessHash": "4940c7b39b10be524409a7d1f44a6cc1058cfd07aa078891bf9254c3fa86d446"
}
}
@@ -6779,15 +6793,15 @@
},
"69541fe204b62627117cad380d521083fbbbf9f2aa883d6f7c32d9483e435d8a": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.465Z",
+ "updatedAt": "2025-12-07T01:40:33.954Z",
"postProcessHash": "163966cdd813c053854e23eca96d253b95b8ec1852b3193f9498bc05b0028c2e"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.466Z",
+ "updatedAt": "2025-12-07T01:40:33.955Z",
"postProcessHash": "b7c9c61a568769b80300eda4b0ceb124c50e3a3be0d8be07e82f922b20c9dc84"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.467Z",
+ "updatedAt": "2025-12-07T01:40:33.955Z",
"postProcessHash": "7621505108d9b738d7bf7c3a6515f392123fb3a4dddf8c01154854652f3daf67"
}
}
@@ -6828,15 +6842,15 @@
},
"a579b00d949d1eb971a0e0020a4684cc68ba269d7c6744518b1e9d92ca3b0d2e": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.468Z",
+ "updatedAt": "2025-12-07T01:40:33.956Z",
"postProcessHash": "fb3463cd9ce35f6fb18b88fe91805d4af2adaa344784595f8f592e5cb695309a"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.469Z",
+ "updatedAt": "2025-12-07T01:40:33.956Z",
"postProcessHash": "532554c45472aa32bcb040b2a711115e45015356dfec7bf617b709b03f4b5e8d"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.469Z",
+ "updatedAt": "2025-12-07T01:40:33.956Z",
"postProcessHash": "e44dab06aba88fe749706641279540ebad36232963afe30bf6955db4fb39d642"
}
}
@@ -6866,15 +6880,15 @@
},
"be04206c1c53f3a25f69fae280dd277b9bde36158b2e9b21967acc980f632e3e": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.466Z",
+ "updatedAt": "2025-12-07T01:40:33.955Z",
"postProcessHash": "79ef51c6c57e55473ba0b131d3879f4b9d5541022ae3d0e0c1d57568c8c5bef5"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.467Z",
+ "updatedAt": "2025-12-07T01:40:33.955Z",
"postProcessHash": "7047d458b19d8113e9d1d25dbeb826f77cf1cde79a57df29c10f9cf50ff867e6"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.468Z",
+ "updatedAt": "2025-12-07T01:40:33.955Z",
"postProcessHash": "64fa990fbb94a748c916d29b1cee65a46ab9cf1f20adedd4b3b4cbba07ea76c4"
}
}
@@ -6904,15 +6918,15 @@
},
"072b9eebedb71c24eff9121c4c3df35b97b1ed50e4d085469528c9d2de05859f": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.459Z",
+ "updatedAt": "2025-12-07T01:40:33.952Z",
"postProcessHash": "ce43cffea176a18739de24137e8ba8b295ef20048cbd87f374f43c64fd61f9af"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.466Z",
+ "updatedAt": "2025-12-07T01:40:33.954Z",
"postProcessHash": "1b7200c17e4a1a70668709828b6960c49d796b2e48aca1217fc3202d7cc8cb8f"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.466Z",
+ "updatedAt": "2025-12-07T01:40:33.954Z",
"postProcessHash": "d5f4acd37da75353c4da7775bb4d6dee19433308a0fd075916c41abca972b311"
}
}
@@ -6942,15 +6956,15 @@
},
"60410e8de452c7da325a02a1b113b5f41efda66701da3ba2c1c778a5bfcf1c6b": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.434Z",
+ "updatedAt": "2025-12-07T01:40:33.936Z",
"postProcessHash": "c07eadec087884b8c15f2c85ff82af42cb2fdb230d500a5dc8838286b934344d"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.435Z",
+ "updatedAt": "2025-12-07T01:40:33.937Z",
"postProcessHash": "df7ebd8d0dc810d993a8ec36837a627e2cd4f5155a567f52a32b301c2cc5c916"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.436Z",
+ "updatedAt": "2025-12-07T01:40:33.937Z",
"postProcessHash": "2865c5a4d907fe77512ad9ca6f0c87933ff18542dd9d7cbf4aa1183d103cefb1"
}
}
@@ -7002,15 +7016,15 @@
},
"4eae604426bf8aea4e211d29fbdb8293ad317b800322c61d893101024cdadff0": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.485Z",
+ "updatedAt": "2025-12-07T01:40:33.959Z",
"postProcessHash": "d050cda4da0cd6807b3671ca7719f9e4a3d0592935b40fe0b6e5776c08314ac8"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.486Z",
+ "updatedAt": "2025-12-07T01:40:33.959Z",
"postProcessHash": "74cd4f6452e34e9ff2ebedf20d2113f6b3e081a079084e5bc367a5a6ffc6d23a"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.487Z",
+ "updatedAt": "2025-12-07T01:40:33.959Z",
"postProcessHash": "d181d20d3d4ad8e044f5e7ad78b356a816c999b73cd5a336403e87ceae9f02e8"
}
}
@@ -7051,15 +7065,15 @@
},
"b50bec2f6fbc20f925edb6d286c9764aae8d9649421d2ee0556e6a4354954892": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.486Z",
+ "updatedAt": "2025-12-07T01:40:33.959Z",
"postProcessHash": "7c00710bb6230a11a5e4a58d7832cd1ac3a4880c965fc054693ba27f275a594d"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.486Z",
+ "updatedAt": "2025-12-07T01:40:33.959Z",
"postProcessHash": "e3d8dc2fccf2b0e4df0e27bea8ed2f4158fad71db1bcc9f7f3fe9f9d896d6532"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.486Z",
+ "updatedAt": "2025-12-07T01:40:33.959Z",
"postProcessHash": "268c9b1e68fd46219de27c7862aacdb2c2b9df92f8c7d05ecc8c5bfef95131e5"
}
}
@@ -7100,15 +7114,15 @@
},
"0fc1c97ac1271e56711c24a8e174f746e5aba365ae68c766dfc386de28b68758": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.452Z",
+ "updatedAt": "2025-12-07T01:40:33.947Z",
"postProcessHash": "91eefb1610ac8a8e5960f09c348906baa3797d04bfebd24e3f93e69247182dd7"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.449Z",
+ "updatedAt": "2025-12-07T01:40:33.945Z",
"postProcessHash": "f036c788e9536b57ba87e7da391cbc5dc3365f53da6a3bb0e3033e43faa0f15d"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.451Z",
+ "updatedAt": "2025-12-07T01:40:33.947Z",
"postProcessHash": "54d380f074def6e5ae4cdba4c87608810d5345321934336421ca947f62fe9807"
}
}
@@ -7138,15 +7152,15 @@
},
"61916a309506445f20e4979e2a04f18a825fc867a7af92e1e9f217840401ff61": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.437Z",
+ "updatedAt": "2025-12-07T01:40:33.938Z",
"postProcessHash": "55bd9d8bb428656557707f1916f8b20e7cea4717aaaf254752cbb6139f20f549"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.440Z",
+ "updatedAt": "2025-12-07T01:40:33.940Z",
"postProcessHash": "1eeb6a01020112cb5f3193088e02387e8693dfa345669ce830ca209057eecce7"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.442Z",
+ "updatedAt": "2025-12-07T01:40:33.941Z",
"postProcessHash": "cb46b2a05f3b5821f1eb86d50386fa52ef26b7e704c6e999898aa1c667398eb2"
}
}
@@ -7187,15 +7201,15 @@
},
"f1af2ab84f3b9ec22c6360f04b3968b3a9d8ea06a5721d866d818246c596d5e6": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.410Z",
+ "updatedAt": "2025-12-07T01:40:33.935Z",
"postProcessHash": "3f6b6dc923f6b148a20876a057a094e3a0024bf5feb23c9b8ee9c36b88ba97a0"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.410Z",
+ "updatedAt": "2025-12-07T01:40:33.936Z",
"postProcessHash": "3bbc71829abcdf781e8dd2579101f3c2793fc25be406e9d3ee4aaec1ae43b72f"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.434Z",
+ "updatedAt": "2025-12-07T01:40:33.936Z",
"postProcessHash": "027e94abfc1868d8857d0a2bc4df91dfdfa4b78893768e283ff9b653e9344ba3"
}
}
@@ -7225,15 +7239,15 @@
},
"8868b228fc8a687b133035b70a0de2ce37b05bf402b2e01848c326ea1dea023f": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.436Z",
+ "updatedAt": "2025-12-07T01:40:33.937Z",
"postProcessHash": "2dfa29d17529516813e4f9d5cac8869f0e8443242aed5f9e9c371ff3ea3935ea"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.463Z",
+ "updatedAt": "2025-12-07T01:40:33.953Z",
"postProcessHash": "0df0fb5ee9eaeaf7bcbfac87a0997d52db99c11792c7b09d1d7df76d5be6b301"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.442Z",
+ "updatedAt": "2025-12-07T01:40:33.941Z",
"postProcessHash": "15cd17e2ec537cafb081a4ef7d7dc769843a0815247a25db22c877b1a3bba11e"
}
}
@@ -7285,15 +7299,15 @@
},
"e39e9caf29465b5d48d1d5115af5bc0b2609607382f1f48c6ff0b741fea2ed5c": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.487Z",
+ "updatedAt": "2025-12-07T01:40:33.959Z",
"postProcessHash": "571f4813c9c062f52e8e3413a3ef048b62a666a9d4619e7aed2f2d710fea5b30"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.487Z",
+ "updatedAt": "2025-12-07T01:40:33.960Z",
"postProcessHash": "0d2981af9f19eff8e0dbbea0b6ecdf65b237ce12e25ddb25338168f5e8d4de15"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.487Z",
+ "updatedAt": "2025-12-07T01:40:33.960Z",
"postProcessHash": "f6e80783266fb093cb61ef6c6d80af0b3184dce451a0b234d42757d843332668"
}
}
@@ -7406,15 +7420,15 @@
},
"b675289256581575e4a96a292d94245f8bcb006b1bf0d10aa48589ec81b44953": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.491Z",
+ "updatedAt": "2025-12-07T01:40:33.962Z",
"postProcessHash": "3a02376d1e19836495db9b7a6f8b72450048b322d2adf0a517fc8987e17450ad"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.492Z",
+ "updatedAt": "2025-12-07T01:40:33.962Z",
"postProcessHash": "ffd089fd65ac759ec699cb2ef3e40fde54da327c0ab544147fa2118468aad03c"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.493Z",
+ "updatedAt": "2025-12-07T01:40:33.962Z",
"postProcessHash": "278645dacd3918f7ae7bfc4fc94f87ccf591e31e29a34d04b5f15b17acc9f889"
}
}
@@ -7455,15 +7469,15 @@
},
"b45bae404e19ce4bf3d7eef53d482ed6ef014f4e3fa1a95ce29fa233498d3100": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.510Z",
+ "updatedAt": "2025-12-07T01:40:33.970Z",
"postProcessHash": "2b8465c471635af256b417b092985b8426f4d03bda6389d054bc306a7a529a75"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.510Z",
+ "updatedAt": "2025-12-07T01:40:33.971Z",
"postProcessHash": "9a4e68881747a5c197e74cb9af2c1cfb5c064dffea87037221768b4dc4b37982"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.510Z",
+ "updatedAt": "2025-12-07T01:40:33.971Z",
"postProcessHash": "ab75d9d838e3c216d891865945682e11b8c168bdd4c52b0878f15c1372736db3"
}
}
@@ -7493,15 +7507,15 @@
},
"e5f66a275721a9cc17c973319dccecc1dac2ac8dee59f4ab039032125acac1a5": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.462Z",
+ "updatedAt": "2025-12-07T01:40:33.953Z",
"postProcessHash": "957d17811fdc1a0a0bfefd536dc68c8a72663d76bf22cc3511d35a3c8684d9ef"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.459Z",
+ "updatedAt": "2025-12-07T01:40:33.952Z",
"postProcessHash": "fe0dc117f70e9942557c15b5cee3f12455c69e421e062504d8016ae6923bce50"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.506Z",
+ "updatedAt": "2025-12-07T01:40:33.968Z",
"postProcessHash": "cc22fdbc75d6087d1c7fe491329801246f9629ebcab8e7e68b078a8559e584b4"
}
}
@@ -7509,15 +7523,15 @@
"9f010ac20bb43e57e5a7e4090f5201d7cb2a2c159a75dcd9dc8c8fec762bdb2f": {
"ddf56b843c9eb02243bfeecfd91aaaa2ec31066e8332e46c84e6e2e13605c21f": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.495Z",
+ "updatedAt": "2025-12-07T01:40:33.964Z",
"postProcessHash": "fc8c5f6931a05856947a7c265ddaf7929c81cff612c556e9c54ef5e822724b4b"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.496Z",
+ "updatedAt": "2025-12-07T01:40:33.964Z",
"postProcessHash": "69ea9648fcfcc4e18e11cf3cb45e3dc9d78736de44f9fdf2d53ad2e064dbaa32"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.496Z",
+ "updatedAt": "2025-12-07T01:40:33.964Z",
"postProcessHash": "d9b22ad706f80a611cfa3450fbd9322f3a5091e5089fd5fbfa313ef5f1ff79e4"
}
}
@@ -7595,15 +7609,15 @@
},
"ddeb7f2354190cbc31ab09c6f70e517fff11b85b0d95e50c7db0f94bb98f084b": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.502Z",
+ "updatedAt": "2025-12-07T01:40:33.955Z",
"postProcessHash": "caca14a7c8131127e6530e569eea0ea790aec3703ba1941af9282a54fa82f47c"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.504Z",
+ "updatedAt": "2025-12-07T01:40:33.967Z",
"postProcessHash": "01eb4ba640b3f9904e85a6843a95902dc1066cff0458214269390403563839a5"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.509Z",
+ "updatedAt": "2025-12-07T01:40:33.970Z",
"postProcessHash": "8b3091ec7ab69e425ed7b4bbefc8f04ef65ef0d90f8a803b446ad272a9ac04e7"
}
}
@@ -7633,15 +7647,15 @@
},
"f07a3c65b544b1b6c3631e472056dfd51f9fbc79e28fe7073271fa963f1355a2": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.461Z",
+ "updatedAt": "2025-12-07T01:40:33.952Z",
"postProcessHash": "4496ca98a01e7502324d30bf0469b59ce40c1db2b03a86b44353ea82fd7ea120"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.500Z",
+ "updatedAt": "2025-12-07T01:40:33.954Z",
"postProcessHash": "08ca06a1338ba7049b87366bddb334e923088a7206035d664245d22801820110"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.508Z",
+ "updatedAt": "2025-12-07T01:40:33.970Z",
"postProcessHash": "b563eb2cea6afc1153afe426a3ac992bd028ce5fa354232e994b9a3a5d449291"
}
}
@@ -7671,15 +7685,15 @@
},
"9af3d645babdeca987fedca80aae0b76816b37e30bf3a25fc1db00ead3f1bca8": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.459Z",
+ "updatedAt": "2025-12-07T01:40:33.952Z",
"postProcessHash": "33c20bd73a7a8748f16da13e403820f6f6966387d9cfea733ef5e68057ec6cc6"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.461Z",
+ "updatedAt": "2025-12-07T01:40:33.953Z",
"postProcessHash": "c6c4a678806e221fab1713a0b18cf048bbf05300f7c6c9308b94c8c30c47d297"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.464Z",
+ "updatedAt": "2025-12-07T01:40:33.953Z",
"postProcessHash": "fe0bdd6098714b57e215235c69b6041a271ff0bfd974868e95c18b57981c0836"
}
}
@@ -7709,15 +7723,15 @@
},
"6958bd474f6a4553c34c8b0c0941dc296fda94522707820277c2a5d0c951d3d9": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.499Z",
+ "updatedAt": "2025-12-07T01:40:33.953Z",
"postProcessHash": "9dab242a07567b150cbdce7d855a21d5ebbdde9ebbb61991d4d2d4e94dcdae59"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.502Z",
+ "updatedAt": "2025-12-07T01:40:33.966Z",
"postProcessHash": "098c8d43ec5bc487807f87a1cd4206ec9c2d8e3c3067e471dc14d0326bc4c134"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.503Z",
+ "updatedAt": "2025-12-07T01:40:33.967Z",
"postProcessHash": "57a5c14521091112adecddb1fe39f246022dbfcbb42091857316c42cc6437584"
}
}
@@ -7747,15 +7761,15 @@
},
"9a8eb49e54fa21c3ff613191e3d1b289989902d0fa2e4ba51397002c40e93870": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.504Z",
+ "updatedAt": "2025-12-07T01:40:33.967Z",
"postProcessHash": "266d3597b0059ee6955b0d5a84ddb285c34240690f93ba963cb973e895b61350"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.508Z",
+ "updatedAt": "2025-12-07T01:40:33.969Z",
"postProcessHash": "bfaf25829776d4049319ebbabd5c6a3537254d6aaded2c22d0e680e9258b9144"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.509Z",
+ "updatedAt": "2025-12-07T01:40:33.970Z",
"postProcessHash": "b1bd6004b9a39368ebbe1b63ed8f9eaaff34054d720e733d69021cbf3de77ce2"
}
}
@@ -7785,15 +7799,15 @@
},
"1154edcbe3fdbda2eae42bc99ecc5bb63cae52c0474d507872da2f6dc8e7f297": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.506Z",
+ "updatedAt": "2025-12-07T01:40:33.968Z",
"postProcessHash": "21b5b35c9c3d7707093d026952bafea8cc25dbf0bcff32e2aa86cb21e76afdec"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.503Z",
+ "updatedAt": "2025-12-07T01:40:33.967Z",
"postProcessHash": "5253edd586464bf07b7b09aac7caa2e58b0153736207e6f57a2100c7da6252cb"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.508Z",
+ "updatedAt": "2025-12-07T01:40:33.969Z",
"postProcessHash": "425623b37f056b00d0ac9ed37f587ef02be5d38f06c26325833f28d0297440d6"
}
}
@@ -7847,15 +7861,15 @@
},
"0ea9b1d6e66497b1210bfe5724c2f7510c6e6d56377ada39d875c6fcfe0f87c8": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.505Z",
+ "updatedAt": "2025-12-07T01:40:33.968Z",
"postProcessHash": "24d9d322ff152b6781e9c20c39fa79706b3f966c971508286211d9548fe79d08"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.506Z",
+ "updatedAt": "2025-12-07T01:40:33.968Z",
"postProcessHash": "16136b9b1cf6ad2158710f24ff23c2d1f7f074dc7c545cc94ea5557715829b74"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.508Z",
+ "updatedAt": "2025-12-07T01:40:33.969Z",
"postProcessHash": "495d3333856c47fbfe3df780982819aef2f34e47671004a21c7e95c4712473a1"
}
}
@@ -7885,6 +7899,20 @@
"updatedAt": "2025-12-06T00:52:26.504Z",
"postProcessHash": "f955fef90827d67c8a22958b8343c9c9f1dfe4d6b5b4a73d7fc4c040ee488991"
}
+ },
+ "1ab8b9b2dd396f8535d042b00b5cec585a32c8af1e180b7335a5b527f301c014": {
+ "es": {
+ "updatedAt": "2025-12-07T01:40:33.973Z",
+ "postProcessHash": "cad9579300730c9dc42950672b1419b74be585c2172ae1e9b46761a667234a5f"
+ },
+ "zh": {
+ "updatedAt": "2025-12-07T01:40:33.974Z",
+ "postProcessHash": "f955fef90827d67c8a22958b8343c9c9f1dfe4d6b5b4a73d7fc4c040ee488991"
+ },
+ "fr": {
+ "updatedAt": "2025-12-07T01:40:33.975Z",
+ "postProcessHash": "6a24e0ac0570b7d077d243728e6e911c08112a51f3ddbbf22997a4b5cffb68e3"
+ }
}
},
"75a8aca8877151461eb8dd5080e382ef2627bbe40e1723c59d6efd36df98981f": {
@@ -7912,6 +7940,20 @@
"updatedAt": "2025-12-06T00:52:26.502Z",
"postProcessHash": "77901b25a20d95a27bcb867a38ef4a439703ca53fa9494b4c05e5867643b6320"
}
+ },
+ "9b2521d77dcb0f3a1b076db93f0fce6fa228d763d08823a4923240744a33b6e4": {
+ "es": {
+ "updatedAt": "2025-12-07T01:40:33.974Z",
+ "postProcessHash": "19cb440bb33042f18c726298f421e3819fa5b0ca02effb9d0d5be85cedc98a89"
+ },
+ "zh": {
+ "updatedAt": "2025-12-07T01:40:33.974Z",
+ "postProcessHash": "77901b25a20d95a27bcb867a38ef4a439703ca53fa9494b4c05e5867643b6320"
+ },
+ "fr": {
+ "updatedAt": "2025-12-07T01:40:33.975Z",
+ "postProcessHash": "35120c1e9cf62caebfce2e2bda8fae590f34a7eb6d3c526cbf7483ece98d2022"
+ }
}
},
"9782df54c86da949c11459a1d47a8332be80eebc416dfcd2bd7590e3a4a292b5": {
@@ -7939,6 +7981,20 @@
"updatedAt": "2025-12-06T00:52:26.505Z",
"postProcessHash": "158a03497834c5483055cd5500cb606f423c04906604f6c74b2ef8f9148dcbb0"
}
+ },
+ "3b4d746118c03d3f1689a6484a77b1123bdb898858cfb21d0c74f7c7530e5106": {
+ "es": {
+ "updatedAt": "2025-12-07T01:40:33.974Z",
+ "postProcessHash": "158a03497834c5483055cd5500cb606f423c04906604f6c74b2ef8f9148dcbb0"
+ },
+ "zh": {
+ "updatedAt": "2025-12-07T01:40:33.974Z",
+ "postProcessHash": "3c2b6dee76f34f1e2629226e79b5f14c0ab4c6d2e3e2d2b908c29d99db767e6a"
+ },
+ "fr": {
+ "updatedAt": "2025-12-07T01:40:33.975Z",
+ "postProcessHash": "6b6b920d5ecd82b7877a7dbe1681ab8266680167e0ad75ba6deb04edf83d4477"
+ }
}
},
"a178317f8a21f32934a9b453aefce36c84587f79c9f46e918bdfba0046e21559": {
@@ -7966,6 +8022,20 @@
"updatedAt": "2025-12-06T00:52:26.500Z",
"postProcessHash": "70b7981c1bbd9db6da6a1d3373aa7a7cd5c2e77f7d949ca4e5da2b464597ee7d"
}
+ },
+ "1aa9d2a0f653714017d2595d9219aac463355da86f4c5a7d4c4696bbb1d4ae8b": {
+ "zh": {
+ "updatedAt": "2025-12-07T01:40:33.973Z",
+ "postProcessHash": "3f48bc4b124ed5e38bd6e4cf974f80212f3b88b9d6e5a94f865c683fcb02fb03"
+ },
+ "es": {
+ "updatedAt": "2025-12-07T01:40:33.974Z",
+ "postProcessHash": "f9c9a37d205e9ce823edc1797661247aba4f5671f1c2ca3abbca2854dd42d93a"
+ },
+ "fr": {
+ "updatedAt": "2025-12-07T01:40:33.975Z",
+ "postProcessHash": "70b7981c1bbd9db6da6a1d3373aa7a7cd5c2e77f7d949ca4e5da2b464597ee7d"
+ }
}
},
"72ea8fdc0791e3c2091b8283e651af6084cbbd350ab02ddd9762b260e10349d8": {
@@ -7993,6 +8063,20 @@
"updatedAt": "2025-12-06T00:52:26.507Z",
"postProcessHash": "5dd24fae76476de9d20ca64a3f04352c0f7810de566260ee53744ae54e1830c5"
}
+ },
+ "08f9dd3e813bd43ed49aaa064fdf92cb93b24e9b4681dbe1662083f135aa7a56": {
+ "es": {
+ "updatedAt": "2025-12-07T01:40:33.973Z",
+ "postProcessHash": "5dd24fae76476de9d20ca64a3f04352c0f7810de566260ee53744ae54e1830c5"
+ },
+ "zh": {
+ "updatedAt": "2025-12-07T01:40:33.974Z",
+ "postProcessHash": "a2f32cd38d1c834c2b4da83b5fc62eba6e058c030fb2f1b09d8657793d3b702b"
+ },
+ "fr": {
+ "updatedAt": "2025-12-07T01:40:33.975Z",
+ "postProcessHash": "98d91777bf0ccb78f4c52da809daa5d58b3429bec7e47528e745662cdab00a15"
+ }
}
},
"7db5883334d74d8c471058b37692b7ac0dbfb791ed596a9c5d61c9d609a87494": {
@@ -8034,6 +8118,20 @@
"updatedAt": "2025-12-06T00:52:26.490Z",
"postProcessHash": "544dd5f4200b70a1a9faffaf88ab001aef72abadccc1f942d5da1383e06bb58c"
}
+ },
+ "a09d0a1e722492938d9985a7dafcbac1018303df26b2b14e58d6e331ac12d83a": {
+ "es": {
+ "updatedAt": "2025-12-07T01:40:33.963Z",
+ "postProcessHash": "544dd5f4200b70a1a9faffaf88ab001aef72abadccc1f942d5da1383e06bb58c"
+ },
+ "zh": {
+ "updatedAt": "2025-12-07T01:40:33.963Z",
+ "postProcessHash": "48c44a45ad6c6b96afc96eb3743d3c144fb8844b09bc89fcab0b3dbc71b8e544"
+ },
+ "fr": {
+ "updatedAt": "2025-12-07T01:40:33.963Z",
+ "postProcessHash": "1e0e3fe0cd240d987b48c2e297048e3e1331db5342a664ac82882f0e65daa4f3"
+ }
}
},
"9a2fd190c10fe0ad4db5848fc459d1ca7cfc9df275c9c775d6ab1e277a4c3bb2": {
@@ -8086,20 +8184,34 @@
"updatedAt": "2025-12-06T00:52:26.514Z",
"postProcessHash": "4e083467bcbcf077ffb522e02fc62be84bdd249f15df7d78a0af2689e871a6c9"
}
+ },
+ "50adb9fb4a61ff6bc77074c24376d340648ad90b5030fbdfb04f1aee97236026": {
+ "es": {
+ "updatedAt": "2025-12-07T01:40:33.975Z",
+ "postProcessHash": "fdedd55a16063e5eaa6775f365c38139afebc14b52f32dabae0c426d0467636e"
+ },
+ "zh": {
+ "updatedAt": "2025-12-07T01:40:33.975Z",
+ "postProcessHash": "1b636b41c335a01e7fcf3deb65605fe10bc8f2e923850d3cc65080154ec3e30a"
+ },
+ "fr": {
+ "updatedAt": "2025-12-07T01:40:33.976Z",
+ "postProcessHash": "a3fce9cac94e4f43464bdb00ae1b1de39778d3fdc512d4db7c0cdd2b7792d024"
+ }
}
},
"dc269fa38a9f70dcc0dcdd446172ce680441082b0cba035e0d7d22453651fb4c": {
"841108bbf6e1733b36d68418b8096f6505ae3769ebe6bb0939b9862f7ee905ae": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.498Z",
+ "updatedAt": "2025-12-07T01:40:33.965Z",
"postProcessHash": "3c5202b0d2c541dbd05d52009c1c5de1b8db35f4d1341d2427d826b49271ac39"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.498Z",
+ "updatedAt": "2025-12-07T01:40:33.965Z",
"postProcessHash": "3c5202b0d2c541dbd05d52009c1c5de1b8db35f4d1341d2427d826b49271ac39"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.498Z",
+ "updatedAt": "2025-12-07T01:40:33.966Z",
"postProcessHash": "3c5202b0d2c541dbd05d52009c1c5de1b8db35f4d1341d2427d826b49271ac39"
}
}
@@ -8140,15 +8252,15 @@
},
"f4f0e0d1d7d5c6b40de72868e4789dada23400a426c416d7008b09a065c484db": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.410Z",
+ "updatedAt": "2025-12-07T01:40:33.921Z",
"postProcessHash": "fd26658553941f4038cd0d24583d720cc04fe6db6889aefd5a33235f414914fc"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.411Z",
+ "updatedAt": "2025-12-07T01:40:33.921Z",
"postProcessHash": "937c6ac5e67e1edd8269adc375a2495d4c1dff47671ae3ed217f7c7ec0229f38"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.411Z",
+ "updatedAt": "2025-12-07T01:40:33.922Z",
"postProcessHash": "39a7bafe031f08547fcfe2a219cb37172a6b8b4613d2ba66483053d9ebd90eea"
}
}
@@ -8189,15 +8301,15 @@
},
"eaf3b675306027bf04595dca52e74dd1614edc320fafff007530df01cbb22259": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.511Z",
+ "updatedAt": "2025-12-07T01:40:33.971Z",
"postProcessHash": "a3587b20ebaaff884bc5a71b020088e7cef33d8b63b3bd39058bea7096fd54d8"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.511Z",
+ "updatedAt": "2025-12-07T01:40:33.971Z",
"postProcessHash": "4171929429febde0247535e00c036a61f0a1d8975ce6750b115cb3065f6a98a5"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.511Z",
+ "updatedAt": "2025-12-07T01:40:33.972Z",
"postProcessHash": "1a90247d6776c6905777a0fadee52f8e5ba0dadaf221f8ec6bb0fe865ca109bd"
}
}
@@ -8227,15 +8339,15 @@
},
"df2826252d76bef142551e69ee162b565fd37e0e63cdd9159fb925f1f911f524": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.513Z",
+ "updatedAt": "2025-12-07T01:40:33.973Z",
"postProcessHash": "adde6a2d0fb1ee3bca85e28e51569c0f94aab798902466f85edb4b009a7fd7df"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.513Z",
+ "updatedAt": "2025-12-07T01:40:33.973Z",
"postProcessHash": "aa37022925bf21be39c3527ab3027b797f5665fafa64c76b81afff460fcc0ff6"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.512Z",
+ "updatedAt": "2025-12-07T01:40:33.972Z",
"postProcessHash": "27f8ce2d73d590a03d8a02df646039b494324138621ea9a0f03c25c3d4448950"
}
}
@@ -8265,15 +8377,15 @@
},
"3db39b6f8aead15f7b8dbe6824e173913fabaf7b510406e0124e1b2be61ca3de": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.513Z",
+ "updatedAt": "2025-12-07T01:40:33.973Z",
"postProcessHash": "f06a5dd3558711f58c181082bf6c8676ac4e63d47e1cad464e487726526a86de"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.512Z",
+ "updatedAt": "2025-12-07T01:40:33.972Z",
"postProcessHash": "4d47fed93a4a8afac5bfdd3efd0d24555d43b456cb05c8fb5c218871a18828f2"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.512Z",
+ "updatedAt": "2025-12-07T01:40:33.972Z",
"postProcessHash": "c68b1d083baeea6d45a83f3b2ea64f5bd398928876aec7641052ae88ee479622"
}
}
@@ -8303,15 +8415,15 @@
},
"4bc387e1ff76fddd88238476d65b74ade4cc2f449ce36eb3bc8b85f770c3f490": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.464Z",
+ "updatedAt": "2025-12-07T01:40:33.966Z",
"postProcessHash": "052f957adbf550b514f0b00fb1c6ce4d1f05ee2a1e8c78c4450c7ef4515ce0c6"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.465Z",
+ "updatedAt": "2025-12-07T01:40:33.966Z",
"postProcessHash": "890f0487febc4d3a384c1258113cff8ca9f4897a21aa5f02b498f09c3c436a91"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.499Z",
+ "updatedAt": "2025-12-07T01:40:33.966Z",
"postProcessHash": "4c92ed5694ff42e4e0b3df5381b266d95cc2b19b95ff2b9ee323faed4f1b853b"
}
}
@@ -8352,15 +8464,15 @@
},
"2e6a80a1a0b8e8424f493d4c864eb475de15f72d6014090c74d48ecd2104428c": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.510Z",
+ "updatedAt": "2025-12-07T01:40:33.971Z",
"postProcessHash": "5ce156680db30f828548b0a9a8396e18e5a3af8bb9ff529252ac1fe1be223ce4"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.511Z",
+ "updatedAt": "2025-12-07T01:40:33.971Z",
"postProcessHash": "ad231391fa7696cac3044bf4464023ffe8859f8bc46a24de55c6d25a4e495ce0"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.511Z",
+ "updatedAt": "2025-12-07T01:40:33.971Z",
"postProcessHash": "e1ec1af3e9ff1ce8f3858e2cdb4ecba29883568556230feb2676ae4fbb4eb1b1"
}
}
@@ -8390,15 +8502,15 @@
},
"62faf6816da4cc899a87cf65d8cdedfb2984c52d91929ff74e1ff826d2f3edf2": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.462Z",
+ "updatedAt": "2025-12-07T01:40:33.953Z",
"postProcessHash": "b1f670acba02bced80ecf8481bd5e6a406cc70e4ee79a7a5f7efc099100d922f"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.503Z",
+ "updatedAt": "2025-12-07T01:40:33.967Z",
"postProcessHash": "44ae5fefd7f32e159d738819b1eac4526220c2eb78652fabf17345e1b33b2883"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.508Z",
+ "updatedAt": "2025-12-07T01:40:33.969Z",
"postProcessHash": "5fb3b415edf7b8e382ac7d393d5f3867c85e1adbd9ac9c6a29038ab969598edc"
}
}
@@ -8428,15 +8540,15 @@
},
"ec813e998591f0d4114ebde9d66a49f01a39db4bc9c058a1340c41d38731a456": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.460Z",
+ "updatedAt": "2025-12-07T01:40:33.952Z",
"postProcessHash": "79c7dd77372a39e9d196a3a3d40f9e8355b5def4f469e2919fb82965f86e63ce"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.506Z",
+ "updatedAt": "2025-12-07T01:40:33.968Z",
"postProcessHash": "53027cd6eda8c980f27d3105ee31e080fff8cf3e7c52f66c3cf8c698a6da648b"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.504Z",
+ "updatedAt": "2025-12-07T01:40:33.967Z",
"postProcessHash": "4c93a613201a4ab30ddb7f265310a03f56e70b0cb53860b0cb31413b79f02b6d"
}
}
@@ -8477,15 +8589,15 @@
},
"725c514c7f51a988e1a1f21ba6c44e514520aa57b3b2f7ba21b45751dcfac18d": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.509Z",
+ "updatedAt": "2025-12-07T01:40:33.970Z",
"postProcessHash": "40e11462937239fe1be662299aaf082d0eb693c84d4f87a1f7e93617b37d1ba4"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.509Z",
+ "updatedAt": "2025-12-07T01:40:33.970Z",
"postProcessHash": "8405da61923d3d0b0e0384ca625ed33901fb4282f909afad0a1f02c156f64188"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.510Z",
+ "updatedAt": "2025-12-07T01:40:33.970Z",
"postProcessHash": "82548bec5d746f41292cf2fc1449753856ce64e8ee5ab2186658edb2373af083"
}
}
@@ -8515,15 +8627,15 @@
},
"02a3f8a9c2b7bed0ca12b135d6610f9dd0567e2045b9486068c3fcc46e5e7b9f": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.459Z",
+ "updatedAt": "2025-12-07T01:40:33.951Z",
"postProcessHash": "9a95b5516fce01f14489a297d66bbca47b91f015d8332ce935f6e3302a3fbcd1"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.464Z",
+ "updatedAt": "2025-12-07T01:40:33.966Z",
"postProcessHash": "00e8294e32af03a56d151ca0fc87fd279d476d3bcca0ce5c26d509ecedf60ce3"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.501Z",
+ "updatedAt": "2025-12-07T01:40:33.966Z",
"postProcessHash": "bd2e02bcf312fa532b075d1b76a9166b8815072855d47d9d2ed6f8c440ce2227"
}
}
@@ -8586,15 +8698,15 @@
},
"054f6571273d2558bdb64b68da5622eadbb8e039eb02cdf5f4f5e82f029dced1": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.458Z",
+ "updatedAt": "2025-12-07T01:40:33.951Z",
"postProcessHash": "8c9ddc1a30ed54fef29b2ca9fbc8e5365815328ad6b7c9c54207e50071ff414c"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.513Z",
+ "updatedAt": "2025-12-07T01:40:33.973Z",
"postProcessHash": "c32f9e858a250002b2696371dfa7b9bddc48f581f752de44b4f695e8291d958e"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.458Z",
+ "updatedAt": "2025-12-07T01:40:33.951Z",
"postProcessHash": "43b7c01b940df37472bc4d43a35de48a66144221ae838ecdd887384d92cef02b"
}
}
@@ -8624,15 +8736,15 @@
},
"da2fe203fd6263e2f728a6d0927c4acfae11b86bb47b86a53209988c7f12a9b8": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.500Z",
+ "updatedAt": "2025-12-07T01:40:33.954Z",
"postProcessHash": "32f3ad405cd7459e8149922b09fd74e74d834e7e13d866fa33063a4dc6d70575"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.502Z",
+ "updatedAt": "2025-12-07T01:40:33.967Z",
"postProcessHash": "9caa10688aa5994c81140eb47c9d8f380803fa3b8f822c89e5da869e8b325556"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.509Z",
+ "updatedAt": "2025-12-07T01:40:33.970Z",
"postProcessHash": "5a126cbd2dae3d1e80cf92fd32a2df9a7bedf18748725aea597b93a4f4945927"
}
}
@@ -8662,15 +8774,15 @@
},
"d6087277997107007f0e8bb1fa131196a7db7e155e4fff201da51c38c12cdea4": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.512Z",
+ "updatedAt": "2025-12-07T01:40:33.972Z",
"postProcessHash": "691bf0ea140a4450f388147e38a4836c2e209f6cccfa6e7e9d681ec6f9b1e3c0"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.513Z",
+ "updatedAt": "2025-12-07T01:40:33.972Z",
"postProcessHash": "d6686de41fc374eb6f0fd40a27da93376cea048f4418896693752a77c0ed0c3b"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.507Z",
+ "updatedAt": "2025-12-07T01:40:33.969Z",
"postProcessHash": "d65a25d2af4c6a4b995a3a6b43f1b8a89e4a9cd54b8b761dd4be2cf10fd31bc3"
}
}
@@ -8700,15 +8812,15 @@
},
"83bea4f26ff686307b770bfaca74faddccd854e05ce6462eefc4c2832e6d3813": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.435Z",
+ "updatedAt": "2025-12-07T01:40:33.937Z",
"postProcessHash": "1fc910e784f8eac5ca0b6e74980cad294be1471507d8e86b2f5f3e384f4f78ec"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.450Z",
+ "updatedAt": "2025-12-07T01:40:33.947Z",
"postProcessHash": "b4ca92a6e0ff425c2fad478d00c84f7eff45a90491cbffc1ccdfbf460e777ebd"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.443Z",
+ "updatedAt": "2025-12-07T01:40:33.942Z",
"postProcessHash": "dcf869e1ec182af3cee022ce9c258145d03c984b211795432a58c1382662f7bb"
}
}
@@ -8738,15 +8850,15 @@
},
"b72d2b9d9ef504cbfecd6422d202a23f54cb213b4a6c7fbe372d2fe6c315757d": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.500Z",
+ "updatedAt": "2025-12-07T01:40:33.954Z",
"postProcessHash": "bbf4b3fc2fee65a6334d5b66c1603b7b6219e142b93e3db1fd55c60e81cc4fee"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.507Z",
+ "updatedAt": "2025-12-07T01:40:33.969Z",
"postProcessHash": "a2d361d2756d7fe746e60b623d07c14d40ae7115aaed3744a6540574ec8c2427"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.507Z",
+ "updatedAt": "2025-12-07T01:40:33.969Z",
"postProcessHash": "45babf5a62e66b6b4e205ccf73a62e99a96ed2c5c3062e56c1a45a8ec803e8b0"
}
}
@@ -8765,15 +8877,15 @@
},
"63edc9f8eced556d538a11fa6698380e9a743ce1de62b85c73cccb6a91d3af3e": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.430Z",
+ "updatedAt": "2025-12-07T01:40:33.933Z",
"postProcessHash": "f6b3b322b5fdb3f5f42fb244a83b5c1713b8dacae61111c58d0f45f51b8d1660"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.430Z",
+ "updatedAt": "2025-12-07T01:40:33.933Z",
"postProcessHash": "9b4b41a36b330048519b9cae3c7149b3ff0cb209ec9e496de1ab3c9ad6a62f98"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.428Z",
+ "updatedAt": "2025-12-07T01:40:33.932Z",
"postProcessHash": "60eddc13f02dc931dd8882483efb23d075f7c147946508b72478b02f7fc73953"
}
}
@@ -8781,15 +8893,15 @@
"39825e960dc329e7e701846853ea8b2c69eccee5c036c82edfdf9a06020a9fbb": {
"c2e28964d6bf27dad509a1169a25e67dcb784e72bd2b52b810d9fba2f2c5a82b": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.432Z",
+ "updatedAt": "2025-12-07T01:40:33.935Z",
"postProcessHash": "f688cc04db06e9e2a59dc6c3a693ec5de24fba98cd5ef1ef513fcec3458fc2fc"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.429Z",
+ "updatedAt": "2025-12-07T01:40:33.933Z",
"postProcessHash": "8823956ec054d63943648e44dd31f7f4569163898db69a989699f350d9b6403d"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.429Z",
+ "updatedAt": "2025-12-07T01:40:33.933Z",
"postProcessHash": "42f9abeb9495be51253b3c3ab6965f82645860859830f406d3b18b769d61663c"
}
}
@@ -8797,15 +8909,15 @@
"5ee2c22c5f816bd2e9ccb18534d94c7d2d0d1fd48d15aea7d344871cc05d6b5d": {
"ab26030a2677e7aee15a1962ed36cc8690f9395c1234a20e05071c72dccaff07": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.386Z",
+ "updatedAt": "2025-12-07T01:40:33.907Z",
"postProcessHash": "0e15065c7b17dd0473d4b62471e9b03f672d35c31958ff503b92faad6666bff8"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.387Z",
+ "updatedAt": "2025-12-07T01:40:33.907Z",
"postProcessHash": "df09cadfdb7957655bab1c4ead21eead119120f5c00be55289bdd0365bfc4336"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.423Z",
+ "updatedAt": "2025-12-07T01:40:33.930Z",
"postProcessHash": "43e517d5e0a0de32723b2715c99da4b2a3808a2d5691c6f2a806e89b47eb571c"
}
}
@@ -8813,15 +8925,15 @@
"fd46ee9a7c4d77ed4c1a2b9efb3f8f7f2964363b03115970bf43dd58e197f08c": {
"935322d7360b64d9326d5f92a1858bc47136cff17d63784a0d3cd82ba099c65a": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.430Z",
+ "updatedAt": "2025-12-07T01:40:33.934Z",
"postProcessHash": "11bfe3d31f0a754a5975fb23e82f4b74dbd770db786f5e0099427d42ed454acd"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.425Z",
+ "updatedAt": "2025-12-07T01:40:33.930Z",
"postProcessHash": "149fff8148852c2752b676dc32b93b386028084a16f78104c76b0609d6cf50d8"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.425Z",
+ "updatedAt": "2025-12-07T01:40:33.930Z",
"postProcessHash": "21e719669400e770a974f7c222451548bacec3705c1e96273645d38c0df997e1"
}
}
@@ -8840,15 +8952,15 @@
},
"ad85637acb660ea365744e7a0e4d5c9af14dd3d61d032245a55b39a025dc998b": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.427Z",
+ "updatedAt": "2025-12-07T01:40:33.931Z",
"postProcessHash": "506d3775ab05180d214e1b5e68df61d13b9ed5535e611f67768174342a9f7d24"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.427Z",
+ "updatedAt": "2025-12-07T01:40:33.932Z",
"postProcessHash": "e6737aab81793e80f4f020d394525c37393bd1a238333b47860214cc059263d0"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.427Z",
+ "updatedAt": "2025-12-07T01:40:33.932Z",
"postProcessHash": "108c972a2b87e87349c9e9923f6a8faa88a8bfb0c609a4734249924ba89e35b2"
}
}
@@ -8867,15 +8979,15 @@
},
"6f7ef54468b886002503e049fe014aeecf19dbca85d972b5cc1aeb4f5cbcd259": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.433Z",
+ "updatedAt": "2025-12-07T01:40:33.950Z",
"postProcessHash": "bce9ca3d9a41150ad46e918a80a7256a50eaa19ccacd9694c94fe5df2247f408"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.433Z",
+ "updatedAt": "2025-12-07T01:40:33.951Z",
"postProcessHash": "6b2e087de45b6e4d6f7c563db270e9ea76d5ba2d98a96f0b2c5aab17dbf9f94c"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.433Z",
+ "updatedAt": "2025-12-07T01:40:33.951Z",
"postProcessHash": "88cdf8ccb3a9971a65a7449e35a0b4253033768eea0c85984e1982486b487797"
}
}
@@ -8883,15 +8995,15 @@
"be5e892f6c4f67bd81fe0cb2eb2c6926b3e1aed86319263030ba6de5aef81643": {
"2d45a98943adcf6323d8b9bd963e1a68b9c6d584fe97c7f01e9a6f37e4268f9c": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.470Z",
+ "updatedAt": "2025-12-07T01:40:33.957Z",
"postProcessHash": "38d1c711bb53d9d53bb702884b3a89e217354af6ffa2a61b056144094b266019"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.469Z",
+ "updatedAt": "2025-12-07T01:40:33.956Z",
"postProcessHash": "53d7fa6c39475cb74c45005d59a84607bcfa431872c4e186b32ed2e6e66c928a"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.471Z",
+ "updatedAt": "2025-12-07T01:40:33.957Z",
"postProcessHash": "5e800c917820203f87bab698aa0de6ea1e81629b29396f6980397c7af109d0a3"
}
}
@@ -8899,15 +9011,15 @@
"77ea8b1235af73346c74a76d9c806e3bb004764d3a0d8aa467b0cd38785523c1": {
"11572668be0bfa5784f337f06ff8b84bd549b35ba8986840db7e54a31ffd864f": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.454Z",
+ "updatedAt": "2025-12-07T01:40:33.948Z",
"postProcessHash": "d05b0d9edb9bedcbd421359ab56cc53319494a62c9916cc80ae3a2b7ddc4e3ee"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.449Z",
+ "updatedAt": "2025-12-07T01:40:33.946Z",
"postProcessHash": "53c7d3a2be4e7df541d1a926eb5c244be312f0ecb9b2e93fc5490cfcf2fa1ff9"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.452Z",
+ "updatedAt": "2025-12-07T01:40:33.948Z",
"postProcessHash": "a04e6aba520c93cb0f509c13137efe68b1ecd7415eaca5054638ffd74f9844c7"
}
}
@@ -8915,15 +9027,15 @@
"855860e7e2c378e03eeadd8be43d2e9195684a4803997d926d976b0ca4a456f3": {
"c8947be6ab36b3f78b0e6b92140f2cbbf957e4dda05b552df8d7a165e6c3943f": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.386Z",
+ "updatedAt": "2025-12-07T01:40:33.906Z",
"postProcessHash": "b9e1c0ea328bc8007066439cda482c4a9afc5e311613da3a01c1aac272fa039b"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.386Z",
+ "updatedAt": "2025-12-07T01:40:33.906Z",
"postProcessHash": "4d75060075656650e3912b90c0992b2dfb1127968f782c0577a593d9b4fce22e"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.386Z",
+ "updatedAt": "2025-12-07T01:40:33.907Z",
"postProcessHash": "5f119e31ab9fa3f6bdac6775d876168bfc9d925e1820a1b31c660a192204c4e2"
}
}
@@ -8959,15 +9071,15 @@
},
"cc77bc43455772442376eec0dfcf4ad87b875c1c053848a6a44735c676c26757": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.494Z",
+ "updatedAt": "2025-12-07T01:40:33.963Z",
"postProcessHash": "56b11fe8e42a42387f76f57c0b91d8cd55733ae9e900d4b5a8119bd1f00464d2"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.494Z",
+ "updatedAt": "2025-12-07T01:40:33.963Z",
"postProcessHash": "e9f0d646e2713d6c2649d44df9f9dca159b62a69a762bbc865dd27b72d0fce92"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.494Z",
+ "updatedAt": "2025-12-07T01:40:33.964Z",
"postProcessHash": "6e884ac1551e6b4d015896df163b034304d7c1209d0c86f740b6c86ad7ad440f"
}
}
@@ -9000,15 +9112,15 @@
},
"9da429298db13c7a5d5e5785d737157adb7ceb8a8e62f690ce93d1276d0daf19": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.488Z",
+ "updatedAt": "2025-12-07T01:40:33.960Z",
"postProcessHash": "f595ded82601ffbd66c2de293c879c5053d3682d709a52c1760b0613ab80a2c5"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.488Z",
+ "updatedAt": "2025-12-07T01:40:33.960Z",
"postProcessHash": "f3dfe27159132fb19f4127e455136c9c6b514561ce522121657f57c99ff600c0"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.488Z",
+ "updatedAt": "2025-12-07T01:40:33.960Z",
"postProcessHash": "40a704607b5c1e09af3b9ba652c736a8f6565f62af969faa1bf59072734786e4"
}
}
@@ -9016,15 +9128,15 @@
"c7e83e67760cb5f2f3d9f4a8e7b72602aab97864906ea048ef30a9c16dfbffdc": {
"931983105b73997866b2002f4ce0a50227b0adc5d896f8d6ba8e5a2b07ea5178": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.428Z",
+ "updatedAt": "2025-12-07T01:40:33.932Z",
"postProcessHash": "5569249feecf5f833320e7c215bed46f337f5608d948f9e512e175b117aa19c2"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.409Z",
+ "updatedAt": "2025-12-07T01:40:33.921Z",
"postProcessHash": "c670ec6fd4e041533cebdaeba8a177ba67164e58342d4ec52b8fc9df790b4f2f"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.430Z",
+ "updatedAt": "2025-12-07T01:40:33.934Z",
"postProcessHash": "62e06d2d9dc861b6ea918bacac503c308328848b993141590b2292144171eff7"
}
}
@@ -9032,15 +9144,15 @@
"9f724bcc4d486aa89f9c4e82c6e29422eb310398ae25cb142dacea64acf986b9": {
"ec0fbd61c3b28b15222a91c56220501a2b86ef5978bfb81db7207e9ca891b07a": {
"es": {
- "updatedAt": "2025-12-06T00:52:26.483Z",
+ "updatedAt": "2025-12-07T01:40:33.958Z",
"postProcessHash": "477b0b97f30cb4534c7bad2fc0eb393dc166eefdae7c063dca631434f81ce334"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.484Z",
+ "updatedAt": "2025-12-07T01:40:33.958Z",
"postProcessHash": "852610162c25a79a86c3463eea02da8162bc0950da5c10e3a2ca5abbb4a3ce62"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.485Z",
+ "updatedAt": "2025-12-07T01:40:33.958Z",
"postProcessHash": "666adb45cc1ef7701db118a622a04aa960d7c51d809a9c48cfa64ff331c93356"
}
}
@@ -9048,15 +9160,15 @@
"cd145b894513f172f602f9d7fb60cbb0e24242dac2c6e9fb520e2c0fad69d912": {
"aecab972d16e30d3a2bf061544b71e0967e1758562cfea07b94fbe6421fe1cc6": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.456Z",
+ "updatedAt": "2025-12-07T01:40:33.949Z",
"postProcessHash": "ef409ac77bc940d8f60a573fbb9d68ee4261ffecb8f7eac55a1dc9c33571d5c6"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.456Z",
+ "updatedAt": "2025-12-07T01:40:33.950Z",
"postProcessHash": "a386219adc4366f7a876057279dca6f3de29c718cb3923e1434c786067927507"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.456Z",
+ "updatedAt": "2025-12-07T01:40:33.950Z",
"postProcessHash": "42f3c8ad2b4c5d749d5da224f9f6328f58871431e7d5651b74e5351b9811b385"
}
}
@@ -9064,15 +9176,15 @@
"90116f4c19423dc1c2ee23a4b4cdd4eab43d59108594936e2ca27c10c36f9b46": {
"506ac3fac34785b9baa5f33fa439d9ce30606533d1a2578634868a9a2428675a": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.489Z",
+ "updatedAt": "2025-12-07T01:40:33.960Z",
"postProcessHash": "57a6507e4e841e67b60465bd799c353b60cae210a0c6a4f91d2cdfea65965895"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.489Z",
+ "updatedAt": "2025-12-07T01:40:33.960Z",
"postProcessHash": "7b188bc418d92a862a71b09a37e020188a8aaab7300196a047e7b86626d2142a"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.489Z",
+ "updatedAt": "2025-12-07T01:40:33.961Z",
"postProcessHash": "e40be7d8033e5f394f367d7a3e1c2bb2dfd533e459a9004d627680eae8529df7"
}
}
@@ -9080,15 +9192,15 @@
"a9865368a7fc7fa33065e35b2343f10d08fb79d65205435403d0a163a3044713": {
"1c56f57c0f6b8d7b90f241db9e06021b4e478d16e1964f7da423eca5607f49ab": {
"fr": {
- "updatedAt": "2025-12-06T00:52:26.393Z",
+ "updatedAt": "2025-12-07T01:40:33.912Z",
"postProcessHash": "f8950ed9763af98c37633d3f4c8053c6d7dd7cb9c813e71a3e34b1896826be83"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.394Z",
+ "updatedAt": "2025-12-07T01:40:33.913Z",
"postProcessHash": "97b5fa380e09f9fcaf886daf65d8c81e1dd70381be8d74b827fb95da2f4c2f49"
},
"zh": {
- "updatedAt": "2025-12-06T00:52:26.395Z",
+ "updatedAt": "2025-12-07T01:40:33.913Z",
"postProcessHash": "49bba02fcbc3adbe95b13e3246d6d3be771bee716f7db0855564e990e43a1a76"
}
}
@@ -9096,15 +9208,15 @@
"04d07581abb57aab750da9f63e2479468ff67ad52fbce45fe0fc2af2f5932510": {
"b0ba5d467d806bbf17c25bfce1720368833af317e06842c8e0adb91611b9922c": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.396Z",
+ "updatedAt": "2025-12-07T01:40:33.914Z",
"postProcessHash": "454972427e8e79c561c3bc98e70c50f8c58c234df1b5158b2ced76561cf253e3"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.398Z",
+ "updatedAt": "2025-12-07T01:40:33.914Z",
"postProcessHash": "e2b9b9d97e0425816666a7fa9da5402b185777792705450da1130cb7b15694c2"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.400Z",
+ "updatedAt": "2025-12-07T01:40:33.915Z",
"postProcessHash": "9f21cabbe315413addcf7e42af365e3abc94f86880b9173a03fad817f4eef45b"
}
}
@@ -9112,16 +9224,16 @@
"bb0a5cd4ee36a1ee81bf4dd654dd9db465af4300d728ba06783d5c00d02c2ca8": {
"307a74bf3d3e5f91d795ccf57630bfcaa6fe5b8cc695289e0f4f32b53f1c43b4": {
"zh": {
- "updatedAt": "2025-12-06T00:52:26.402Z",
- "postProcessHash": "ad8d6968dac04164822d842f88d3c41ea1000a5c315eefb484e0adb621e81928"
+ "updatedAt": "2025-12-07T01:40:33.916Z",
+ "postProcessHash": "dc35cc239d2a8ecb23dcf46354839eb116dc27aaa19508eff027e0ccb4dc95df"
},
"es": {
- "updatedAt": "2025-12-06T00:52:26.403Z",
- "postProcessHash": "daf028415fdb64f7b2f429764123c89470503f9ad0595228967b5d8f13e13d41"
+ "updatedAt": "2025-12-07T01:40:33.919Z",
+ "postProcessHash": "dc35cc239d2a8ecb23dcf46354839eb116dc27aaa19508eff027e0ccb4dc95df"
},
"fr": {
- "updatedAt": "2025-12-06T00:52:26.404Z",
- "postProcessHash": "1c3a52bf733ad77929bfa61db6d0cc3fdcbe33e33feea39399d08ff8f46fabae"
+ "updatedAt": "2025-12-07T01:40:33.918Z",
+ "postProcessHash": "dc35cc239d2a8ecb23dcf46354839eb116dc27aaa19508eff027e0ccb4dc95df"
}
}
}
diff --git a/zh/ai/agent.mdx b/zh/ai/agent.mdx
index 995fd31f1..63beacf2a 100644
--- a/zh/ai/agent.mdx
+++ b/zh/ai/agent.mdx
@@ -17,26 +17,6 @@ agent 会根据你的提示为文档创建包含建议修改的拉取请求(PR
* 查找并更新现有内容
* 回答关于你的文档和技术写作相关主题的问题
-
- ## 在控制台中使用智能助手
-
-
-在控制台中,你可以通过键盘快捷键 ⌘+I(Mac)或 Ctrl+I(Windows/Linux),或者点击 **Ask agent** 按钮,直接打开助手面板。
-
-助手面板包括:
-
-* **Chat**:发送提示词并接收包含文档修改建议的回复。
-* **History**:查看并继续之前的对话。
-* **Settings**:配置 GitHub 应用权限和 Slack 集成。
-
-
-
-
-
-
-
-当助手进行更改时,你可以直接在对话中查看拉取请求(PR;亦称“合并请求”/Merge Request),或者在 Web 编辑器中打开这些更改。
-
## 将 agent 添加到你的 Slack 工作区
diff --git a/zh/api/assistant/create-assistant-message.mdx b/zh/api/assistant/create-assistant-message.mdx
index 99abfa3a9..f421430cd 100644
--- a/zh/api/assistant/create-assistant-message.mdx
+++ b/zh/api/assistant/create-assistant-message.mdx
@@ -7,10 +7,10 @@ keywords: [ "AI 助手消息", "嵌入", "聊天", "集成" ]
## 与 `useChat` 集成
-Vercel 的 AI SDK 提供的 `useChat` 钩子是将 AI 助手 API 集成到你的应用中的推荐方式。
+将 AI 助手 API 集成到你的应用中的推荐方式是使用 Vercel 的 AI SDK 提供的 `useChat` 钩子。
- Mintlify AI 助手 API 与 **AI SDK v4** 兼容。如果你使用 AI SDK v5 或更高版本,必须配置自定义 transport。
+ Mintlify AI 助手 API 与 **AI SDK v4** 兼容。如果你使用 AI SDK v5 或更高版本,则必须配置自定义传输方式。
@@ -57,8 +57,8 @@ function MyComponent({ domain }) {
}
```
-**Mintlify 的必填配置:**
-- `streamProtocol: 'data'` - 启用流式响应所必需。
+**Mintlify 的必备配置:**
+- `streamProtocol: 'data'` - 流式响应所必需。
- `sendExtraMessageFields: true` - 发送消息 metadata 所必需。
- `body.fp` - 指纹标识符(使用 `'anonymous'` 或某个用户标识符)。
- `body.retrievalPageSize` - 要使用的搜索结果数量(推荐:5)。
diff --git a/zh/discovery-openapi.json b/zh/discovery-openapi.json
index 1f21e2290..23cf0310c 100644
--- a/zh/discovery-openapi.json
+++ b/zh/discovery-openapi.json
@@ -2,7 +2,7 @@
"openapi": "3.0.1",
"info": {
"title": "Mintlify Assistant API",
- "description": "用于将 Mintlify 的发现功能集成到你的产品中的 API。",
+ "description": "An API to integrate Mintlify discovery features into your product.",
"version": "1.0.0"
},
"servers": [
@@ -18,8 +18,8 @@
"paths": {
"/assistant/{domain}/message": {
"post": {
- "summary": "AI 助手消息",
- "description": "为指定的 domain 生成一条由 AI 助手提供的响应消息。",
+ "summary": "Assistant message",
+ "description": "Generates a response message from the assistant for the specified domain.",
"parameters": [
{
"name": "domain",
@@ -28,7 +28,7 @@
"schema": {
"type": "string"
},
- "description": "来自你的 `domain.mintlify.app` URL 的 domain 标识符。你可以在控制台 URL 的末尾找到它。例如,`dashboard.mintlify.com/organization/domain` 的 domain 标识符是 `domain`。"
+ "description": "The domain identifier from your `domain.mintlify.app` URL. Can be found at the end of your dashboard URL. For example, `dashboard.mintlify.com/organization/domain` has a domain identifier of `domain`."
}
],
"requestBody": {
@@ -44,12 +44,12 @@
"properties": {
"fp": {
"type": "string",
- "description": "用于追踪会话会话的指纹标识符。对匿名用户使用“anonymous”,或为用户提供唯一的用户标识符。"
+ "description": "Fingerprint identifier for tracking conversation sessions. Use 'anonymous' for anonymous users or provide a unique user identifier."
},
"threadId": {
"default": null,
"type": "string",
- "description": "一个可选的标识符,用于在多条消息之间保持会话的连续性。提供该标识符后,系统就可以将后续消息与同一个会话线程关联起来。在响应中,当 event.type === 'finish' 时,会以 event.threadId 的形式返回 threadId。"
+ "description": "An optional identifier used to maintain conversation continuity across multiple messages. When provided, it allows the system to associate follow-up messages with the same conversation thread. The threadId is returned in the response as event.threadId when event.type === 'finish'."
},
"messages": {
"type": "array",
@@ -71,7 +71,7 @@
"properties": {
"id": {
"type": "string",
- "description": "该消息的唯一标识符"
+ "description": "Unique identifier for the message"
},
"role": {
"type": "string",
@@ -81,21 +81,21 @@
"data",
"user"
],
- "description": "消息发送方的角色"
+ "description": "The role of the message sender"
},
"createdAt": {
"type": "string",
"format": "date-time",
- "description": "消息创建时间戳"
+ "description": "Timestamp when the message was created"
},
"content": {
"type": "string",
- "description": "消息内容"
+ "description": "The content of the message"
},
"annotations": {
"type": "array",
"items": {},
- "description": "该消息的可选注解数组"
+ "description": "Optional array of annotations for the message"
},
"parts": {
"type": "array",
@@ -342,7 +342,7 @@
}
]
},
- "description": "由多种类型的消息片段组成的数组,包括文本、推理过程、来源信息和工具调用"
+ "description": "Array of message parts with different types including text, reasoning, sources, and tool invocations"
},
"experimental_attachments": {
"type": "array",
@@ -363,7 +363,7 @@
"url"
]
},
- "description": "消息可选的实验性附件数组"
+ "description": "Optional array of experimental attachments for the message"
}
},
"required": [
@@ -373,12 +373,12 @@
"parts"
]
},
- "description": "会话中的消息数组。在前端开发中,你通常会希望使用 @ai-sdk 包中 useChat hook 提供的 handleSubmit 函数来追加用户消息并处理流式响应,而不是在这个数组中手动定义这些对象,因为它们包含的参数非常多。"
+ "description": "Array of messages in the conversation. On the frontend, you will likely want to use the handleSubmit function from the @ai-sdk package's useChat hook to append user messages and handle streaming responses, rather than manually defining the objects in this array as they have so many parameters."
},
"retrievalPageSize": {
"type": "number",
"default": 5,
- "description": "用于生成回复时参考的文档搜索结果数量。值越大,可提供的上下文越多,但可能会增加响应时间。推荐值:5。"
+ "description": "Number of documentation search results to use for generating the response. Higher values provide more context but may increase response time. Recommended: 5."
},
"filter": {
"type": "object",
@@ -386,14 +386,14 @@
"properties": {
"version": {
"type": "string",
- "description": "可选版本筛选器"
+ "description": "Optional version filter"
},
"language": {
"type": "string",
- "description": "可选语言筛选器"
+ "description": "Optional language filter"
}
},
- "description": "用于搜索的可选筛选条件"
+ "description": "Optional filter criteria for the search"
}
}
}
@@ -402,12 +402,12 @@
},
"responses": {
"200": {
- "description": "消息已成功生成",
+ "description": "Message generated successfully",
"content": {
"application/json": {
"schema": {
"type": "object",
- "description": "响应对象会以指定的状态码、响应头和内容来流式传输格式化的数据流片段。这与 AI SDK 在文档 [ai-sdk.dev/docs/ai-sdk-ui/streaming-data](https://ai-sdk.dev/docs/ai-sdk-ui/streaming-data) 中所述的预期格式一致。与其编写你自己的解析器,推荐使用 AI SDK 中的 useChat hook(详见文档:[链接](https://ai-sdk.dev/docs/reference/ai-sdk-ui/use-chat#usechat))。"
+ "description": "Response object that streams formatted data stream parts with the specified status, headers, and content. This matches what is expected from the AI SDK as documented at [ai-sdk.dev/docs/ai-sdk-ui/streaming-data](https://ai-sdk.dev/docs/ai-sdk-ui/streaming-data). Instead of writing your own parser, it is recommended to use the [useChat hook from ai-sdk as documented here](https://ai-sdk.dev/docs/reference/ai-sdk-ui/use-chat#usechat)."
}
}
}
@@ -417,8 +417,8 @@
},
"/search/{domain}": {
"post": {
- "summary": "搜索文档",
- "description": "在你的文档中执行语义和关键词搜索,并支持可配置的过滤和分页。",
+ "summary": "Search documentation",
+ "description": "Perform semantic and keyword searches across your documentation with configurable filtering and pagination.",
"parameters": [
{
"name": "domain",
@@ -427,7 +427,7 @@
"schema": {
"type": "string"
},
- "description": "来自你的 `domain.mintlify.app` URL 中的 domain 标识符。可以在你的控制台 URL 末尾找到。例如,`dashboard.mintlify.com/organization/domain` 的 domain 标识符是 `domain`。"
+ "description": "The domain identifier from your `domain.mintlify.app` URL. Can be found at the end of your dashboard URL. For example, `dashboard.mintlify.com/organization/domain` has a domain identifier of `domain`."
}
],
"requestBody": {
@@ -442,24 +442,24 @@
"properties": {
"query": {
"type": "string",
- "description": "用于在你的文档内容中执行搜索的查询。"
+ "description": "The search query to execute against your documentation content."
},
"pageSize": {
"type": "number",
"default": 10,
- "description": "要返回的搜索结果数量。如果未指定,则默认为 10。"
+ "description": "Number of search results to return. Defaults to 10 if not specified."
},
"filter": {
"type": "object",
- "description": "用于缩小搜索结果范围的可选筛选参数。",
+ "description": "Optional filtering parameters to narrow search results.",
"properties": {
"version": {
"type": "string",
- "description": "根据文档版本筛选结果。"
+ "description": "Filter results by documentation version."
},
"language": {
"type": "string",
- "description": "根据内容语言筛选结果。"
+ "description": "Filter results by content language."
}
}
}
@@ -470,7 +470,7 @@
},
"responses": {
"200": {
- "description": "搜索结果",
+ "description": "Search results",
"content": {
"application/json": {
"schema": {
@@ -480,15 +480,15 @@
"properties": {
"content": {
"type": "string",
- "description": "您文档中与之匹配的内容。"
+ "description": "The matching content from your documentation."
},
"path": {
"type": "string",
- "description": "源文档所在的路径或 URL。"
+ "description": "The path or URL to the source document."
},
"metadata": {
"type": "object",
- "description": "关于搜索结果的额外 metadata。"
+ "description": "Additional metadata about the search result."
}
}
}
@@ -505,7 +505,7 @@
"bearerAuth": {
"type": "http",
"scheme": "bearer",
- "description": "Authorization 标头需要使用 Bearer 令牌。关于如何获取 API key 的详细信息,请参阅 [Assistant API Key 文档](/docs/api-reference/introduction#assistant-api-key)。"
+ "description": "The Authorization header expects a Bearer token. See the [Assistant API Key documentation](/docs/api-reference/introduction#assistant-api-key) for details on how to get your API key."
}
}
}