diff --git a/es/deploy/ghes.mdx b/es/deploy/ghes.mdx
new file mode 100644
index 000000000..6415daa6f
--- /dev/null
+++ b/es/deploy/ghes.mdx
@@ -0,0 +1,292 @@
+---
+title: "GitHub Enterprise Server"
+description: "Configura la aplicación de GitHub en tu instalación de GitHub Enterprise Server."
+keywords: ["GitHub Enterprise Server", "GHES", "GitHub Enterprise"]
+---
+
+En esta guía se explica cómo configurar la aplicación de GitHub de Mintlify en tu instalación de GitHub Enterprise Server (GHES). Para conectar una instancia de GHES a Mintlify, debes crear una versión local de nuestra aplicación dentro de tu entorno autoalojado que se comunique con nuestro servidor remoto.
+
+Si usas una instancia de GitHub alojada en la nube, consulta la página de [GitHub](/es/deploy/github) para ver las instrucciones de configuración.
+
+
+ ## Requisitos previos
+
+
+* Privilegios de administrador en tu organización de GitHub Enterprise Server donde deseas instalar la aplicación
+* Acceso a los repositorios de tu organización donde deseas instalar la aplicación
+* Conectividad de red para comunicarte con nuestros servicios externos (consulta la sección [Requisitos de red](#network-requirements) a continuación)
+
+
+ ### Requisitos de red
+
+
+
+ #### Conectividad saliente
+
+
+Tu servidor de GitHub Enterprise debe poder acceder a:
+
+* Los endpoints de la API de Mintlify (https://leaves.mintlify.com)
+* Los receptores de webhooks (puerto 443)
+
+
+ #### Configuración del firewall
+
+
+Se deben permitir las siguientes conexiones salientes:
+
+* Conexiones desde la IP estática de Mintlify: `54.242.90.151`
+* HTTPS (puerto 443) a los dominios de servicio de Mintlify
+* Resolución de DNS para los dominios de servicio de Mintlify
+
+
+ ## Paso 1: Registrar la aplicación de GitHub
+
+
+Consulta [Registrar una aplicación de GitHub](https://docs.github.com/en/enterprise-server@3.18/apps/creating-github-apps/registering-a-github-app/registering-a-github-app) en la documentación de GitHub para obtener instrucciones detalladas.
+
+
+
+ 1. En la esquina superior derecha de cualquier página de GitHub, haz clic en tu foto de perfil.
+ 2. Haz clic en **Your organizations**.
+ 3. Haz clic en **Settings** junto a la organización para la que quieres crear la aplicación.
+
+
+
+ 1. En la barra lateral izquierda, haz clic en **Developer settings**.
+ 2. Haz clic en **GitHub Apps**.
+ 3. Haz clic en **New GitHub App**.
+
+
+
+ Configura lo siguiente:
+
+ * **GitHub App name:** `Mintlify`
+ * **Description:** `Integration with Mintlify services`
+ * **Homepage URL:** `https://mintlify.com`
+ * **User authorization callback URL:** `https://your-github-server.com/` (reemplaza con tu dominio real de GHES)
+
+
+
+
+ ## Paso 2: Configurar los permisos de la aplicación
+
+
+
+
+ Establece los siguientes permisos para la aplicación. No se requieren permisos de organización, cuenta ni Enterprise:
+
+ * **Checks:** Lectura y escritura
+ * **Contents:** Lectura y escritura
+ * **Deployments:** Lectura y escritura
+ * **Metadata:** Solo lectura
+ * **Pull Requests:** Lectura y escritura
+
+
+
+ Selecciona los siguientes eventos de webhook:
+
+ * Installation
+ * Installation Target
+ * Create
+ * Delete
+ * Public
+ * Pull Request
+ * Push
+ * Repository
+
+
+
+
+ ## Paso 3: Generar y proteger credenciales
+
+
+
+
+ Haz clic en **Create GitHub App**.
+
+ Se te redirigirá a la página de configuración de la app.
+
+
+
+ 1. Desplázate hacia abajo hasta la sección **Private keys**.
+ 2. Haz clic en **Generate a private key**.
+ 3. Descarga el archivo `.pem` y guárdalo de forma segura.
+
+
+
+ Toma nota de lo siguiente:
+
+ * **App ID** (visible en la parte superior de la página de configuración)
+ * **Client ID** (en la sección "About")
+ * **Client Secret** (genéralo y guárdalo de forma segura)
+
+
+
+
+ ## Paso 4: Instalar la app
+
+
+
+
+ 1. Desde la página de configuración de la app, haz clic en **Install App** en la barra lateral izquierda.
+ 2. Selecciona tu organización de la lista.
+
+
+
+ Selecciona una de las siguientes opciones:
+
+ * **All repositories** (para acceso en toda la organización)
+ * **Only select repositories** (elige repositorios específicos)
+
+
+ Recomendamos seleccionar **Only select repositories** y limitar la app solo a los repositorios donde se encuentra tu documentación.
+
+
+
+
+ 1. Haz clic en **Install**.
+ 2. Anota el ID de instalación de la URL. Por ejemplo, en `https://your-github-server.com/settings/installations/12345`, la cadena `12345` es el ID de instalación.
+
+
+
+
+ ## Paso 5: Configurar la URL del webhook
+
+
+
+
+ 1. Regresa a la página de configuración de tu aplicación.
+ 2. Desplázate hasta la sección **Webhook**.
+
+
+
+ Configura lo siguiente:
+
+ * **Webhook URL:** `https://leaves.mintlify.com/github-enterprise/:subdomain` (reemplaza `:subdomain` con la URL que te proporcionemos)
+ * **Webhook secret:** Genera una cadena aleatoria (de 32 caracteres o más) y guárdala de forma segura. Mintlify también puede generarla y proporcionártela.
+
+
+
+
+ ## Comparte las credenciales con nosotros
+
+
+Comparte la siguiente información con nuestro equipo utilizando tu método preferido de transferencia segura de información.
+
+
+ ### Credenciales requeridas
+
+
+* URL base de GitHub Enterprise Server: https://your-github-server.com
+* ID de la aplicación (App ID): (del paso 3)
+* ID de cliente de la aplicación (App client ID): (del paso 3)
+* Secreto de cliente de la aplicación (App client secret): (del paso 3)
+* ID de la instalación (Installation ID): (del paso 4)
+* Clave privada: Todo el contenido del archivo `.pem` (debe compartirse mediante transferencia segura de archivos)
+* Secreto del webhook (Webhook secret): (del paso 5)
+
+
+ ### Credenciales opcionales para la resolución de problemas
+
+
+* Organization name: El nombre de tu organización en GitHub
+* Repository names: Nombres de los repositorios específicos donde la aplicación está instalada
+* GitHub Enterprise Server version: La encontrarás en el panel de administración de tu sitio
+
+
+ ## Conexión con Mintlify
+
+
+Recibimos las credenciales que nos proporcionas y las almacenamos cifradas en una ubicación segura. Luego trabajamos contigo para:
+
+* Integrar tu entorno GHES con un despliegue existente de Mintlify.
+* Integrar tu entorno GHES con un nuevo despliegue de Mintlify que aprovisionamos para ti.
+
+Una vez que tu entorno GHES esté integrado con un despliegue de Mintlify, podrás habilitar los webhooks de tu GitHub App.
+
+
+ La URL del webhook puede cambiar según nuestra configuración. Probamos la integración y te proporcionamos la nueva URL.
+
+
+
+ ## Probar la integración
+
+
+
+
+ 1. Ve a la configuración de tu GitHub App.
+ 2. Haz clic en la pestaña **Advanced**.
+ 3. Revisa "Recent Deliveries" para comprobar que haya entregas de webhook correctas.
+ 4. Busca respuestas HTTP 200.
+
+
+
+ 1. Crea un issue o pull request de prueba en un repositorio instalado.
+ 2. Asegúrate de que Mintlify responda correctamente.
+
+
+
+
+ ## Preguntas frecuentes y solución de problemas
+
+
+
+
+ Asegúrate de tener:
+
+ * Privilegios de administrador del sitio para la creación de la app.
+ * Derechos de propietario o administrador de la organización para la instalación de la app.
+ * Permisos adecuados sobre el repositorio si la instalas en repositorios específicos.
+
+
+
+ * Verifica que la URL del webhook sea correcta y accesible.
+ * Asegúrate de que tu firewall permita conexiones salientes mediante HTTPS.
+ * Comprueba que el secreto del webhook coincida con lo configurado.
+ * Revisa los registros de entrega de webhooks en la pestaña "Advanced" de la configuración de tu GitHub App.
+
+
+
+ Tu GHES podría usar certificados autofirmados. Nuestros servicios no pueden verificar el certificado de tu servidor.
+
+ **Solución:** Asegúrate de que tu GHES tenga un certificado SSL válido.
+
+
+
+ * Asegúrate de que los webhooks se estén entregando y sean reconocidos por nuestro servidor con un código de respuesta 200.
+ * Verifica que se hayan otorgado los permisos necesarios durante la instalación.
+
+
+
+ Sí, durante la instalación puedes seleccionar "Only select repositories" y elegir repositorios específicos. Puedes modificar esto más adelante en la configuración de apps instaladas de tu organización. Esta es la forma de instalación recomendada.
+
+
+
+ * Ve a la configuración de la app como administrador del sitio.
+ * Modifica los permisos según sea necesario.
+ * La app deberá volver a ser aprobada por los propietarios de la organización.
+ * Avísanos de cualquier cambio de permisos, ya que puede afectar a la funcionalidad.
+
+
+
+ Debes:
+
+ * Incluir nuestros dominios de servicio en la lista blanca de tu firewall.
+ * Asegurar la conectividad saliente mediante HTTPS (puerto 443).
+ * Si no se permite el acceso directo a Internet, configura un proxy.
+
+
+
+ No, tu GHES debe poder comunicarse con nuestro servidor en la nube.
+
+
+
+ Ponte en contacto con tu representante de customer success con quien ya hayas hablado en Mintlify, o con nuestro equipo de soporte en support@mintlify.com con:
+
+ * Tu versión de GitHub Enterprise Server.
+ * Mensajes de error específicos.
+ * Capturas de pantalla de cualquier problema.
+ * Detalles de configuración de red/firewall (si corresponde).
+
+
\ No newline at end of file
diff --git a/fr/deploy/ghes.mdx b/fr/deploy/ghes.mdx
new file mode 100644
index 000000000..6956915c9
--- /dev/null
+++ b/fr/deploy/ghes.mdx
@@ -0,0 +1,286 @@
+---
+title: "GitHub Enterprise Server"
+description: "Configurer l’App GitHub sur votre installation GitHub Enterprise Server."
+keywords: ["GitHub Enterprise Server", "GHES", "GitHub Enterprise"]
+---
+
+Ce guide vous explique comment configurer l’App GitHub Mintlify sur votre installation GitHub Enterprise Server (GHES). Pour connecter une instance GHES à Mintlify, vous devez créer une version locale de notre application au sein de votre environnement auto‑hébergé, qui communique avec notre serveur distant.
+
+Si vous utilisez une instance GitHub hébergée sur le cloud, consultez la page [GitHub](/fr/deploy/github) pour les instructions de configuration.
+
+
+ ## Prérequis
+
+
+* Droits d’administrateur sur votre organisation GitHub Enterprise Server où vous souhaitez installer l’application
+* Accès aux dépôts de votre organisation où vous souhaitez installer l’application
+* Connectivité réseau pour communiquer avec nos services externes (voir la section [Exigences réseau](#network-requirements) ci-dessous)
+
+
+ ### Prérequis réseau
+
+
+
+ #### Connectivité sortante
+
+
+Votre GitHub Enterprise Server doit pouvoir accéder à :
+
+* les points de terminaison de l'API Mintlify (https://leaves.mintlify.com)
+* les récepteurs de webhook (port 443)
+
+
+ #### Configuration du pare-feu
+
+
+Les connexions sortantes suivantes doivent être autorisées :
+
+* Connexions provenant de l'adresse IP statique de Mintlify : `54.242.90.151`
+* HTTPS (port 443) vers les domaines de service de Mintlify
+* Résolution DNS pour les domaines de service de Mintlify
+
+## Étape 1 : Enregistrer l'application GitHub
+
+Consultez la page [Registering a GitHub App](https://docs.github.com/en/enterprise-server@3.18/apps/creating-github-apps/registering-a-github-app/registering-a-github-app) dans la documentation GitHub pour des instructions détaillées.
+
+
+
+ 1. Dans le coin supérieur droit de n'importe quelle page sur GitHub, cliquez sur votre photo de profil.
+ 2. Cliquez sur **Your organizations**.
+ 3. Cliquez sur **Settings** à côté de l'organisation pour laquelle vous souhaitez créer l'application.
+
+
+
+ 1. Dans la barre latérale gauche, cliquez sur **Developer settings**.
+ 2. Cliquez sur **GitHub Apps**.
+ 3. Cliquez sur **New GitHub App**.
+
+
+
+ Définissez les éléments suivants :
+
+ * **GitHub App name :** `Mintlify`
+ * **Description :** `Intégration avec les services Mintlify`
+ * **Homepage URL :** `https://mintlify.com`
+ * **User authorization callback URL :** `https://your-github-server.com/` (remplacez par votre domaine GHES réel)
+
+
+
+## Étape 2 : Configurer les autorisations de l'application
+
+
+
+ Définissez les autorisations suivantes pour l'application. Aucune autorisation au niveau de l'organisation, du compte ou de l'entreprise n'est requise :
+
+ * **Checks :** lecture et écriture
+ * **Contents :** lecture et écriture
+ * **Deployments :** lecture et écriture
+ * **Metadata :** lecture seule
+ * **Pull Requests :** lecture et écriture
+
+
+
+ Sélectionnez les événements de webhook suivants :
+
+ * Installation
+ * Installation Target
+ * Create
+ * Delete
+ * Public
+ * Pull Request
+ * Push
+ * Repository
+
+
+
+
+ ## Étape 3 : Générer et sécuriser les identifiants
+
+
+
+
+ Cliquez sur **Create GitHub App**.
+
+ Vous serez redirigé vers la page de paramètres de l'application.
+
+
+
+ 1. Faites défiler la page jusqu'à la section **Private keys**.
+ 2. Cliquez sur **Generate a private key**.
+ 3. Téléchargez le fichier `.pem` et conservez-le en lieu sûr.
+
+
+
+ Notez les informations suivantes :
+
+ * **App ID** (visible en haut de la page de paramètres)
+ * **Client ID** (dans la section "About")
+ * **Client Secret** (générez-le et conservez-le en lieu sûr)
+
+
+
+## Étape 4 : Installer l'application
+
+
+
+ 1. Sur la page des paramètres de l'application, cliquez sur **Install App** dans la barre latérale gauche.
+ 2. Sélectionnez votre organisation dans la liste.
+
+
+
+ Sélectionnez l'une des options suivantes :
+
+ * **All repositories** (pour un accès à l'ensemble de l'organisation)
+ * **Only select repositories** (choisir des dépôts spécifiques)
+
+
+ Nous vous recommandons de sélectionner **Only select repositories** et de limiter l'application uniquement aux dépôts où votre documentation est hébergée.
+
+
+
+
+ 1. Cliquez sur **Install**.
+ 2. Notez l'ID d'installation à partir de l'URL. Par exemple, dans `https://your-github-server.com/settings/installations/12345`, la chaîne `12345` correspond à l'ID d'installation.
+
+
+
+
+ ## Étape 5 : Configurer l’URL du webhook
+
+
+
+
+ 1. Revenez à la page de paramètres de votre app.
+ 2. Faites défiler jusqu’à la section **Webhook**.
+
+
+
+ Configurez ce qui suit :
+
+ * **Webhook URL :** `https://leaves.mintlify.com/github-enterprise/:subdomain` (remplacez `:subdomain` par l’URL que nous vous fournirons)
+ * **Webhook secret :** Générez une chaîne de caractères aléatoire d’au moins 32 caractères et conservez-la en lieu sûr. Mintlify peut également la générer et vous la fournir.
+
+
+
+
+ ## Partagez vos identifiants avec nous
+
+
+Veuillez partager les informations suivantes avec notre équipe en utilisant la méthode sécurisée de transmission d’informations de votre choix.
+
+
+ ### Identifiants requis
+
+
+* URL de base de votre GitHub Enterprise Server : https://your-github-server.com
+* ID de l’application : (à partir de l’étape 3)
+* ID client de l’application : (à partir de l’étape 3)
+* Secret client de l’application : (à partir de l’étape 3)
+* ID d’installation : (à partir de l’étape 4)
+* Clé privée : l’intégralité du contenu du fichier `.pem` (à partager via un transfert de fichier sécurisé)
+* Secret du webhook : (à partir de l’étape 5)
+
+
+ ### Identifiants facultatifs pour le dépannage
+
+
+* Organization name: Le nom de votre organisation GitHub
+* Repository names: Dépôts spécifiques où l’application est installée
+* GitHub Enterprise Server version: Indiquée dans le tableau de bord d’administration de votre site
+
+
+ ## Connexion à Mintlify
+
+
+Nous chiffrons et stockons les identifiants que vous nous fournissez dans un emplacement sécurisé. Ensuite, nous collaborons avec vous pour :
+
+* Intégrer votre environnement GHES à un déploiement Mintlify existant.
+* Intégrer votre environnement GHES à un nouveau déploiement Mintlify que nous mettons en place pour vous.
+
+Une fois que votre environnement GHES est intégré à un déploiement Mintlify, vous êtes prêt à activer les webhooks pour votre GitHub App.
+
+
+ L’URL du webhook peut changer en fonction de notre configuration. Nous testons l’intégration et vous communiquons la nouvelle URL.
+
+
+
+ ## Tester l’intégration
+
+
+
+
+ 1. Allez dans les paramètres de votre GitHub App.
+ 2. Cliquez sur l’onglet **Advanced**.
+ 3. Consultez la section "Recent deliveries" pour confirmer la réussite des envois de webhooks.
+ 4. Recherchez les réponses HTTP 200.
+
+
+
+ 1. Créez une issue ou une pull request de test dans un dépôt où l’application est installée.
+ 2. Vérifiez que Mintlify réagit comme attendu.
+
+
+
+
+ ## FAQ et dépannage
+
+
+
+
+ Assurez-vous de disposer de :
+
+ * Privilèges d'administrateur du site pour la création d'applications
+ * Droits de propriétaire ou d'administrateur de l'organisation pour l'installation de l'application
+ * Autorisations de dépôt appropriées si vous installez l'application sur des dépôts spécifiques
+
+
+
+ * Vérifiez que l'URL du webhook est correcte et accessible.
+ * Assurez-vous que votre pare-feu autorise les connexions HTTPS sortantes.
+ * Vérifiez que le secret du webhook correspond à celui configuré.
+ * Consultez les journaux de livraison des webhooks dans l'onglet « Advanced » des paramètres de votre GitHub App.
+
+
+
+ Votre GHES peut utiliser des certificats auto-signés. Nos services ne peuvent pas vérifier le certificat de votre serveur.
+
+ **Solution :** Assurez-vous que votre GHES dispose d'un certificat SSL valide.
+
+
+
+ * Assurez-vous que les webhooks sont bien livrés et accusés de réception par notre serveur avec un code de réponse 200.
+ * Vérifiez que les autorisations requises ont été accordées lors de l'installation.
+
+
+
+ Oui, lors de l'installation, vous pouvez sélectionner « Only select repositories » et choisir des dépôts spécifiques. Vous pouvez modifier ce paramètre plus tard dans les paramètres des applications installées de votre organisation. C'est la méthode d'installation recommandée.
+
+
+
+ * Accédez aux paramètres de l'application en tant qu'administrateur du site.
+ * Modifiez les autorisations selon vos besoins.
+ * L'application devra être à nouveau approuvée par les propriétaires de l'organisation.
+ * Informez-nous de toute modification d'autorisations, car elle peut affecter les fonctionnalités.
+
+
+
+ Vous devez :
+
+ * Autoriser nos domaines de service dans votre pare-feu.
+ * Assurer la connectivité HTTPS sortante (port 443).
+ * Si l'accès direct à Internet n'est pas autorisé, configurer un proxy.
+
+
+
+ Non, votre GHES doit pouvoir communiquer avec notre serveur hébergé dans le cloud.
+
+
+
+ Veuillez contacter votre représentant Customer Success avec qui vous avez échangé chez Mintlify, ou notre équipe support à l'adresse support@mintlify.com avec :
+
+ * Votre version de GitHub Enterprise Server.
+ * Les messages d'erreur spécifiques.
+ * Des captures d'écran des problèmes rencontrés.
+ * Les détails de la configuration réseau/pare-feu (le cas échéant).
+
+
\ No newline at end of file
diff --git a/gt-lock.json b/gt-lock.json
index 5d6184240..c00064c9d 100644
--- a/gt-lock.json
+++ b/gt-lock.json
@@ -2565,13 +2565,13 @@
},
"e1245d1e4e59db779cbdcf29d3bb3fab791f1bcdc251feaa8d73f8bd2299d0f7": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.802Z"
+ "updatedAt": "2025-11-21T21:15:56.356Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.807Z"
+ "updatedAt": "2025-11-21T21:15:56.363Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.808Z"
+ "updatedAt": "2025-11-21T21:15:56.363Z"
}
}
},
@@ -2600,26 +2600,26 @@
},
"d2c25bcfded41a5d23f177481940cde0a5f87bd602952ec47faf7deb1bbfdd7c": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.799Z"
+ "updatedAt": "2025-11-21T21:15:56.350Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.802Z"
+ "updatedAt": "2025-11-21T21:15:56.356Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.805Z"
+ "updatedAt": "2025-11-21T21:15:56.360Z"
}
}
},
"23468f0552fb3e6e3e07f5ccc3f3267c1f9e3dde0f865e866f185cb2947d3700": {
"cf671b42a22bf53b553d52737aa0ebd2832efeeb3c4329997d454109b44b2d0b": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.814Z"
+ "updatedAt": "2025-11-21T21:15:56.371Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.814Z"
+ "updatedAt": "2025-11-21T21:15:56.371Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.815Z"
+ "updatedAt": "2025-11-21T21:15:56.372Z"
}
}
},
@@ -2637,13 +2637,13 @@
},
"33b27f6424e49160a6a8f7ca639a6ecabe4ccb6c81e109c16357715ed5705d59": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.798Z"
+ "updatedAt": "2025-11-21T21:15:56.347Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.798Z"
+ "updatedAt": "2025-11-21T21:15:56.349Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.799Z"
+ "updatedAt": "2025-11-21T21:15:56.349Z"
}
}
},
@@ -2683,13 +2683,13 @@
},
"f31f9cf136c02823cb255cd9df9f3da8f4b0e63d540e3c3bb735c2b54cb2dced": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.801Z"
+ "updatedAt": "2025-11-21T21:15:56.353Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.801Z"
+ "updatedAt": "2025-11-21T21:15:56.354Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.807Z"
+ "updatedAt": "2025-11-21T21:15:56.362Z"
}
}
},
@@ -2718,13 +2718,13 @@
},
"4bbec825257b2e44662cece56ea8f6d2a270af8295558ba8c49333d01f531512": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.804Z"
+ "updatedAt": "2025-11-21T21:15:56.359Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.804Z"
+ "updatedAt": "2025-11-21T21:15:56.359Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.804Z"
+ "updatedAt": "2025-11-21T21:15:56.359Z"
}
}
},
@@ -2753,13 +2753,13 @@
},
"64a3699238f7091a57f32a304d4d6ea95e7b276b252acad469433afd381059d3": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.800Z"
+ "updatedAt": "2025-11-21T21:15:56.352Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.820Z"
+ "updatedAt": "2025-11-21T21:15:56.377Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.821Z"
+ "updatedAt": "2025-11-21T21:15:56.379Z"
}
}
},
@@ -2788,13 +2788,13 @@
},
"91728bc6b9b8b6139a0dd62305e5baa3b279f2b75c5da5884361f1d6921cd5a0": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.800Z"
+ "updatedAt": "2025-11-21T21:15:56.352Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.802Z"
+ "updatedAt": "2025-11-21T21:15:56.355Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.802Z"
+ "updatedAt": "2025-11-21T21:15:56.356Z"
}
}
},
@@ -2834,13 +2834,13 @@
},
"e6a344d226f71ec9d74b139ad033dcf67bc7845e173faafb769737d5a53e20e0": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.812Z"
+ "updatedAt": "2025-11-21T21:15:56.369Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.812Z"
+ "updatedAt": "2025-11-21T21:15:56.369Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.813Z"
+ "updatedAt": "2025-11-21T21:15:56.370Z"
}
}
},
@@ -2880,13 +2880,13 @@
},
"9242b786b93718623d525ba9255744e28d36cba2b1a87db50bc7d4c700693c27": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.828Z"
+ "updatedAt": "2025-11-21T21:15:56.385Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.828Z"
+ "updatedAt": "2025-11-21T21:15:56.386Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.830Z"
+ "updatedAt": "2025-11-21T21:15:56.387Z"
}
}
},
@@ -2904,13 +2904,13 @@
},
"1b5192704d8c87b7157e3ffb37e67740bf4db60592047855671eaa0de99fce67": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.803Z"
+ "updatedAt": "2025-11-21T21:15:56.357Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.806Z"
+ "updatedAt": "2025-11-21T21:15:56.362Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.808Z"
+ "updatedAt": "2025-11-21T21:15:56.363Z"
}
}
},
@@ -2928,13 +2928,13 @@
},
"7df72a5c83b1558be5c0fa2deec46e528d5f4d2df119cca457c97ad94568dafd": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.801Z"
+ "updatedAt": "2025-11-21T21:15:56.354Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.802Z"
+ "updatedAt": "2025-11-21T21:15:56.355Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.803Z"
+ "updatedAt": "2025-11-21T21:15:56.358Z"
}
}
},
@@ -2963,13 +2963,13 @@
},
"e71844c012c9eba781ce344458c88e183151a3faef835f82596821c65ff82f74": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.799Z"
+ "updatedAt": "2025-11-21T21:15:56.351Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.803Z"
+ "updatedAt": "2025-11-21T21:15:56.358Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.804Z"
+ "updatedAt": "2025-11-21T21:15:56.359Z"
}
}
},
@@ -2987,13 +2987,13 @@
},
"4ba815c35fc1d6ae05c075a25e63c14bb4f99030f6269e2e624b6a6cf7b40e43": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.797Z"
+ "updatedAt": "2025-11-21T21:15:56.346Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.798Z"
+ "updatedAt": "2025-11-21T21:15:56.348Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.798Z"
+ "updatedAt": "2025-11-21T21:15:56.349Z"
}
}
},
@@ -3022,13 +3022,13 @@
},
"eb20f767427fb4ce5134a35c35949a707ee0443db110d0b9778a731d5cfc0e82": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.799Z"
+ "updatedAt": "2025-11-21T21:15:56.350Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.806Z"
+ "updatedAt": "2025-11-21T21:15:56.361Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.807Z"
+ "updatedAt": "2025-11-21T21:15:56.362Z"
}
}
},
@@ -3057,13 +3057,13 @@
},
"de5065a1737f1067c1832f1b37ca40c6c25a0a37c373977577006c4ffadc26bd": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.803Z"
+ "updatedAt": "2025-11-21T21:15:56.357Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.804Z"
+ "updatedAt": "2025-11-21T21:15:56.358Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.806Z"
+ "updatedAt": "2025-11-21T21:15:56.361Z"
}
}
},
@@ -3127,13 +3127,13 @@
},
"f2d2eba18f2d99a846a22e37f08013200d0d53bea29eed47e8ab65c63ea495d2": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.800Z"
+ "updatedAt": "2025-11-21T21:15:56.353Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.805Z"
+ "updatedAt": "2025-11-21T21:15:56.360Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.808Z"
+ "updatedAt": "2025-11-21T21:15:56.364Z"
}
}
},
@@ -3184,13 +3184,13 @@
},
"d6db05f81e0faaa848f2c46938dd28f24cc1aeb134dcb8338838e803f9278f33": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.809Z"
+ "updatedAt": "2025-11-21T21:15:56.365Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.809Z"
+ "updatedAt": "2025-11-21T21:15:56.365Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.810Z"
+ "updatedAt": "2025-11-21T21:15:56.366Z"
}
}
},
@@ -3219,13 +3219,13 @@
},
"2341a25388611c22bd36017b85efa47a442fa5adb18291bb1ffb335425217526": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.800Z"
+ "updatedAt": "2025-11-21T21:15:56.351Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.805Z"
+ "updatedAt": "2025-11-21T21:15:56.361Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.809Z"
+ "updatedAt": "2025-11-21T21:15:56.364Z"
}
}
},
@@ -3243,13 +3243,13 @@
},
"47b41ab7978333bd5e4d9862c9365a3d4af5a173fdd4ad491434032be08aeca3": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.810Z"
+ "updatedAt": "2025-11-21T21:15:56.366Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.811Z"
+ "updatedAt": "2025-11-21T21:15:56.367Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.811Z"
+ "updatedAt": "2025-11-21T21:15:56.368Z"
}
}
},
@@ -3289,13 +3289,13 @@
},
"2ffaf84018cb11556557799aa88cbfa6bfd45b853412a098492763d087f46bc0": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.813Z"
+ "updatedAt": "2025-11-21T21:15:56.370Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.814Z"
+ "updatedAt": "2025-11-21T21:15:56.371Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.814Z"
+ "updatedAt": "2025-11-21T21:15:56.371Z"
}
}
},
@@ -3324,13 +3324,13 @@
},
"239feca6504164e8bcbd82b2524a752018ed7a39e7c99c5bd82283b05ad42419": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.840Z"
+ "updatedAt": "2025-11-21T21:15:56.397Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.842Z"
+ "updatedAt": "2025-11-21T21:15:56.399Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.845Z"
+ "updatedAt": "2025-11-21T21:15:56.402Z"
}
}
},
@@ -3359,13 +3359,13 @@
},
"6b6eb89e73eae4cff9d6413f91f2f4ce27e6b47013fb676bde0cdced959047d5": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.818Z"
+ "updatedAt": "2025-11-21T21:15:56.376Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.818Z"
+ "updatedAt": "2025-11-21T21:15:56.376Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.819Z"
+ "updatedAt": "2025-11-21T21:15:56.376Z"
}
}
},
@@ -3405,13 +3405,13 @@
},
"2142b34f605ba6b02fc694f8930d1d6a0068a69bd4e2f55d94bb3b33512bc21b": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.832Z"
+ "updatedAt": "2025-11-21T21:15:56.389Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.833Z"
+ "updatedAt": "2025-11-21T21:15:56.390Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.833Z"
+ "updatedAt": "2025-11-21T21:15:56.390Z"
}
}
},
@@ -3429,13 +3429,13 @@
},
"9b746c5834165dc199fdd794e1657e4116749bcc2ce014fa6bc5e7a59751e5e0": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.815Z"
+ "updatedAt": "2025-11-21T21:15:56.372Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.815Z"
+ "updatedAt": "2025-11-21T21:15:56.372Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.816Z"
+ "updatedAt": "2025-11-21T21:15:56.373Z"
}
}
},
@@ -3464,13 +3464,13 @@
},
"1579230cd266b076718d44b00c6f2b14c604bd1468d47abd65c5b3f284ee238b": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.818Z"
+ "updatedAt": "2025-11-21T21:15:56.375Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.818Z"
+ "updatedAt": "2025-11-21T21:15:56.375Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.821Z"
+ "updatedAt": "2025-11-21T21:15:56.378Z"
}
}
},
@@ -3488,13 +3488,13 @@
},
"84e1f1ee89d0e933d7883bd51c19cc1497abc66ebb4cfc68cb7f690d71de87f5": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.824Z"
+ "updatedAt": "2025-11-21T21:15:56.381Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.824Z"
+ "updatedAt": "2025-11-21T21:15:56.382Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.825Z"
+ "updatedAt": "2025-11-21T21:15:56.382Z"
}
}
},
@@ -3523,13 +3523,13 @@
},
"b0fc3fe18db44f5d5e3138970ce56042937cae027c36a20826e5e83b18448c2c": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.817Z"
+ "updatedAt": "2025-11-21T21:15:56.375Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.823Z"
+ "updatedAt": "2025-11-21T21:15:56.380Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.825Z"
+ "updatedAt": "2025-11-21T21:15:56.383Z"
}
}
},
@@ -3558,13 +3558,13 @@
},
"f6377bf2dbd5497b12e74eecdf1c1400c517c2aec35e1ac91f461cd4769214b4": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.820Z"
+ "updatedAt": "2025-11-21T21:15:56.378Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.825Z"
+ "updatedAt": "2025-11-21T21:15:56.382Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.851Z"
+ "updatedAt": "2025-11-21T21:15:56.407Z"
}
}
},
@@ -3593,13 +3593,13 @@
},
"bc8397cc9a6ce325952185bd403e7322c795c94318958e9c38b0cbea30872f53": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.817Z"
+ "updatedAt": "2025-11-21T21:15:56.374Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.819Z"
+ "updatedAt": "2025-11-21T21:15:56.377Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.823Z"
+ "updatedAt": "2025-11-21T21:15:56.380Z"
}
}
},
@@ -3617,13 +3617,13 @@
},
"53d7697aa5f590afda9685f76f9b36753da2903b860d4c937c9a58e10cac4877": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.817Z"
+ "updatedAt": "2025-11-21T21:15:56.375Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.821Z"
+ "updatedAt": "2025-11-21T21:15:56.378Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.825Z"
+ "updatedAt": "2025-11-21T21:15:56.382Z"
}
}
},
@@ -3652,13 +3652,13 @@
},
"6065a4c2de7e7a039acb75fd86ac55270b68e0a1c50cce78c38218d7e17332be": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.835Z"
+ "updatedAt": "2025-11-21T21:15:56.392Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.849Z"
+ "updatedAt": "2025-11-21T21:15:56.406Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.848Z"
+ "updatedAt": "2025-11-21T21:15:56.405Z"
}
}
},
@@ -3687,13 +3687,13 @@
},
"1a05c480b0ecc49cc9d7d80ebc9f7620461a9a3ddb7587f23f5f948bca5dea20": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.816Z"
+ "updatedAt": "2025-11-21T21:15:56.373Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.817Z"
+ "updatedAt": "2025-11-21T21:15:56.374Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.826Z"
+ "updatedAt": "2025-11-21T21:15:56.383Z"
}
}
},
@@ -3711,13 +3711,13 @@
},
"fa529df5efd3bbc04a1b2491b1b102472a547fa0543ac8eb62229ff695e1e2b8": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.816Z"
+ "updatedAt": "2025-11-21T21:15:56.373Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.816Z"
+ "updatedAt": "2025-11-21T21:15:56.374Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.822Z"
+ "updatedAt": "2025-11-21T21:15:56.379Z"
}
}
},
@@ -3746,13 +3746,13 @@
},
"7af7098ed0591bb1b52aeda833b7c793c648c594ddc27001cc458732beb61d42": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.819Z"
+ "updatedAt": "2025-11-21T21:15:56.377Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.820Z"
+ "updatedAt": "2025-11-21T21:15:56.377Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.822Z"
+ "updatedAt": "2025-11-21T21:15:56.379Z"
}
}
},
@@ -3781,13 +3781,13 @@
},
"ff6db2e1d92370a81059bfc2de4d5a8e1f57d0325aba414f0579b5874c2f211c": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.842Z"
+ "updatedAt": "2025-11-21T21:15:56.399Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.849Z"
+ "updatedAt": "2025-11-21T21:15:56.406Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.848Z"
+ "updatedAt": "2025-11-21T21:15:56.405Z"
}
}
},
@@ -3816,13 +3816,13 @@
},
"d6a5a6940e86056dceb450ae7e7d83a0ff1ae53e967a7386f2ee6e1a51cb1919": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.840Z"
+ "updatedAt": "2025-11-21T21:15:56.397Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.841Z"
+ "updatedAt": "2025-11-21T21:15:56.398Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.851Z"
+ "updatedAt": "2025-11-21T21:15:56.407Z"
}
}
},
@@ -3862,13 +3862,13 @@
},
"7b5e31679e6dc64290dcbaf7ebdc38d509f113fac1106932fc5c382eae0f70f2": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.827Z"
+ "updatedAt": "2025-11-21T21:15:56.384Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.828Z"
+ "updatedAt": "2025-11-21T21:15:56.385Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.831Z"
+ "updatedAt": "2025-11-21T21:15:56.388Z"
}
}
},
@@ -3919,13 +3919,13 @@
},
"c267f27f72ca38bf57a908e09cd9f0ebd44ae0a830ecedfa36f20cc1ebc8192a": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.831Z"
+ "updatedAt": "2025-11-21T21:15:56.388Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.832Z"
+ "updatedAt": "2025-11-21T21:15:56.389Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.832Z"
+ "updatedAt": "2025-11-21T21:15:56.389Z"
}
}
},
@@ -3976,13 +3976,13 @@
},
"15dcc5bf8fe3a6cc2d7be853f5ea3001fbd0a4390995b0d89c4688a863d93554": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.829Z"
+ "updatedAt": "2025-11-21T21:15:56.386Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.830Z"
+ "updatedAt": "2025-11-21T21:15:56.387Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.831Z"
+ "updatedAt": "2025-11-21T21:15:56.388Z"
}
}
},
@@ -4011,13 +4011,13 @@
},
"4b669eac3d8af5dba744f7619f5f1d7a71791df3e93cb61cdd5f4efa1a49e7a8": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.821Z"
+ "updatedAt": "2025-11-21T21:15:56.378Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.822Z"
+ "updatedAt": "2025-11-21T21:15:56.379Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.824Z"
+ "updatedAt": "2025-11-21T21:15:56.381Z"
}
}
},
@@ -4057,13 +4057,13 @@
},
"a36886f4bb4adc67e3f0f6784b450b2375adaa18049fbf2130e009b7e3e6b136": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.823Z"
+ "updatedAt": "2025-11-21T21:15:56.380Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.823Z"
+ "updatedAt": "2025-11-21T21:15:56.380Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.824Z"
+ "updatedAt": "2025-11-21T21:15:56.381Z"
}
}
},
@@ -4092,13 +4092,13 @@
},
"acb80de1656353a1bc614c6cc059ab5bcd69c112efd41ee1d2e7aa2b0e04726c": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.836Z"
+ "updatedAt": "2025-11-21T21:15:56.393Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.843Z"
+ "updatedAt": "2025-11-21T21:15:56.400Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.844Z"
+ "updatedAt": "2025-11-21T21:15:56.401Z"
}
}
},
@@ -4127,13 +4127,13 @@
},
"daac240f9481ada70f4ab82196cb275ec718d8c2d714eb60b5c567634c3e725a": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.860Z"
+ "updatedAt": "2025-11-21T21:15:56.417Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.863Z"
+ "updatedAt": "2025-11-21T21:15:56.433Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.864Z"
+ "updatedAt": "2025-11-21T21:15:56.433Z"
}
}
},
@@ -4173,13 +4173,13 @@
},
"5f164293a7b7d857847dd6724df827abe1235b34e02d3b3ff596ad6884d30fda": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.853Z"
+ "updatedAt": "2025-11-21T21:15:56.411Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.864Z"
+ "updatedAt": "2025-11-21T21:15:56.434Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.868Z"
+ "updatedAt": "2025-11-21T21:15:56.438Z"
}
}
},
@@ -4208,13 +4208,13 @@
},
"c0ecdfc77f161f9ec951eeea61e89d87be13c8dcbf63cc28240bc8e495f7e7f4": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.834Z"
+ "updatedAt": "2025-11-21T21:15:56.390Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.835Z"
+ "updatedAt": "2025-11-21T21:15:56.392Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.848Z"
+ "updatedAt": "2025-11-21T21:15:56.404Z"
}
}
},
@@ -4256,13 +4256,13 @@
},
"b40c60718a227589b2b21319224942654b402d349ebeb430217cefce50203dd1": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.840Z"
+ "updatedAt": "2025-11-21T21:15:56.397Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.846Z"
+ "updatedAt": "2025-11-21T21:15:56.403Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.847Z"
+ "updatedAt": "2025-11-21T21:15:56.403Z"
}
}
},
@@ -4291,13 +4291,13 @@
},
"1c0a8202856d2630d58fdd9440e8b59dc16e2e0d0df716f94c1c61506b0abf73": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.840Z"
+ "updatedAt": "2025-11-21T21:15:56.396Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.841Z"
+ "updatedAt": "2025-11-21T21:15:56.398Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.846Z"
+ "updatedAt": "2025-11-21T21:15:56.402Z"
}
}
},
@@ -4326,13 +4326,13 @@
},
"2a0f0b7a4c2e97c104841a7ca775cb7ea2d904d3c58797b4df16f21bed656cbf": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.861Z"
+ "updatedAt": "2025-11-21T21:15:56.418Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.862Z"
+ "updatedAt": "2025-11-21T21:15:56.431Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.865Z"
+ "updatedAt": "2025-11-21T21:15:56.434Z"
}
}
},
@@ -4361,13 +4361,13 @@
},
"cc2a087cfe19f368db8940e1369be0e2b08997d401eb3bafcb63ce4b0c545328": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.839Z"
+ "updatedAt": "2025-11-21T21:15:56.396Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.844Z"
+ "updatedAt": "2025-11-21T21:15:56.401Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.843Z"
+ "updatedAt": "2025-11-21T21:15:56.400Z"
}
}
},
@@ -4407,13 +4407,13 @@
},
"1e5e24c5831011296eb0d6e6dbb9c228554eb4545d985aa2aabfa4b2eb8010b6": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.861Z"
+ "updatedAt": "2025-11-21T21:15:56.418Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.867Z"
+ "updatedAt": "2025-11-21T21:15:56.437Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.868Z"
+ "updatedAt": "2025-11-21T21:15:56.438Z"
}
}
},
@@ -4453,13 +4453,13 @@
},
"2202aa02e9ae341447ee588b80ce34cf38f9e450be559627fb28845418cd4906": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.865Z"
+ "updatedAt": "2025-11-21T21:15:56.435Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.863Z"
+ "updatedAt": "2025-11-21T21:15:56.432Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.869Z"
+ "updatedAt": "2025-11-21T21:15:56.439Z"
}
}
},
@@ -4488,13 +4488,13 @@
},
"8b3eb4d91a03437fdb577ff828b7858bed1d4efbac277fcc00b6de4d73556b7a": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.845Z"
+ "updatedAt": "2025-11-21T21:15:56.402Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.847Z"
+ "updatedAt": "2025-11-21T21:15:56.404Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.850Z"
+ "updatedAt": "2025-11-21T21:15:56.407Z"
}
}
},
@@ -4523,13 +4523,13 @@
},
"717ba6ec955149d36b641a29e243d1a562bc0a4a45246ea8f00e97a12de033a2": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.842Z"
+ "updatedAt": "2025-11-21T21:15:56.399Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.849Z"
+ "updatedAt": "2025-11-21T21:15:56.406Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.850Z"
+ "updatedAt": "2025-11-21T21:15:56.407Z"
}
}
},
@@ -4558,13 +4558,13 @@
},
"0fa10cf016a982a519972a78c99929f4394257ce24c2e155eaefec0ef1e96c64": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.838Z"
+ "updatedAt": "2025-11-21T21:15:56.395Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.839Z"
+ "updatedAt": "2025-11-21T21:15:56.396Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.847Z"
+ "updatedAt": "2025-11-21T21:15:56.404Z"
}
}
},
@@ -4593,13 +4593,13 @@
},
"490447ff6751bd36032615f87abdbbf88d8fbe2abb4e3a562a822148c6c24722": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.837Z"
+ "updatedAt": "2025-11-21T21:15:56.394Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.845Z"
+ "updatedAt": "2025-11-21T21:15:56.401Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.845Z"
+ "updatedAt": "2025-11-21T21:15:56.402Z"
}
}
},
@@ -4628,13 +4628,13 @@
},
"9e6bd9dddc84ee56ab61dd51d66778954d94835fa02e115422354fbc956a4a8d": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.834Z"
+ "updatedAt": "2025-11-21T21:15:56.391Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.834Z"
+ "updatedAt": "2025-11-21T21:15:56.391Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.844Z"
+ "updatedAt": "2025-11-21T21:15:56.400Z"
}
}
},
@@ -4663,13 +4663,13 @@
},
"0f9ffeb2462a1128f8286d8229915f4445a470d7919c91391c8801d498d28ac5": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.836Z"
+ "updatedAt": "2025-11-21T21:15:56.393Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.838Z"
+ "updatedAt": "2025-11-21T21:15:56.394Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.838Z"
+ "updatedAt": "2025-11-21T21:15:56.395Z"
}
}
},
@@ -4698,13 +4698,13 @@
},
"f3c2f45fd08c00d6549d66c81c11f1b2851ec3db49e4c254e5b05f87b192bfa8": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.837Z"
+ "updatedAt": "2025-11-21T21:15:56.394Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.846Z"
+ "updatedAt": "2025-11-21T21:15:56.403Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.849Z"
+ "updatedAt": "2025-11-21T21:15:56.405Z"
}
}
},
@@ -4744,13 +4744,13 @@
},
"b256b87b867d66b2e8ce15ea04a50b663764eaa4205962c11ff9132e72c4daee": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.851Z"
+ "updatedAt": "2025-11-21T21:15:56.408Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.852Z"
+ "updatedAt": "2025-11-21T21:15:56.408Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.852Z"
+ "updatedAt": "2025-11-21T21:15:56.409Z"
}
}
},
@@ -4779,13 +4779,13 @@
},
"077114eba2d6fea49eae5779c9f6728252b23400d3610ae1df75331aa21e6063": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.835Z"
+ "updatedAt": "2025-11-21T21:15:56.392Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.842Z"
+ "updatedAt": "2025-11-21T21:15:56.398Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.843Z"
+ "updatedAt": "2025-11-21T21:15:56.400Z"
}
}
},
@@ -4814,13 +4814,13 @@
},
"f8b9a9d106b121e6ddbc9bb70445ad03bea3db43afdce8ba3db21e5f8bb27def": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.838Z"
+ "updatedAt": "2025-11-21T21:15:56.395Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.846Z"
+ "updatedAt": "2025-11-21T21:15:56.403Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.848Z"
+ "updatedAt": "2025-11-21T21:15:56.405Z"
}
}
},
@@ -4849,26 +4849,26 @@
},
"87a0bf35a1022c6df1638c1bf2db62635e9fbc92f8f67b509171817df40e3e96": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.902Z"
+ "updatedAt": "2025-11-21T21:15:56.466Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.903Z"
+ "updatedAt": "2025-11-21T21:15:56.467Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.907Z"
+ "updatedAt": "2025-11-21T21:15:56.472Z"
}
}
},
"53c3b9e499ef5bd5e368aa05a9a2484ab2e83e086a848e4dc65f744f4303c18f": {
"fc7569e7101cf497720e212cf9526dfda81c1a7301c1866a84396fb6339961ed": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.911Z"
+ "updatedAt": "2025-11-21T21:15:56.476Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.911Z"
+ "updatedAt": "2025-11-21T21:15:56.476Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.911Z"
+ "updatedAt": "2025-11-21T21:15:56.476Z"
}
}
},
@@ -4897,13 +4897,13 @@
},
"9aae22f3f7200ef0bfedfcf0f68534a5899dfeca3533861b826b08df4f7c4601": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.857Z"
+ "updatedAt": "2025-11-21T21:15:56.414Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.857Z"
+ "updatedAt": "2025-11-21T21:15:56.414Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.853Z"
+ "updatedAt": "2025-11-21T21:15:56.410Z"
}
}
},
@@ -4932,13 +4932,13 @@
},
"0228942914d7754379a163a3e9fd8dbd1c314df31b406d2df877d274d0fb8282": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.862Z"
+ "updatedAt": "2025-11-21T21:15:56.431Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.868Z"
+ "updatedAt": "2025-11-21T21:15:56.438Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.870Z"
+ "updatedAt": "2025-11-21T21:15:56.440Z"
}
}
},
@@ -4967,13 +4967,13 @@
},
"fa3c99c7b63408c3050a1074fce5edf8c4b0f834acd9219844bb6b030cfb03fd": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.892Z"
+ "updatedAt": "2025-11-21T21:15:56.451Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.893Z"
+ "updatedAt": "2025-11-21T21:15:56.451Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.869Z"
+ "updatedAt": "2025-11-21T21:15:56.460Z"
}
}
},
@@ -5002,13 +5002,13 @@
},
"adbe9541002b1646c97b2808c84189ee9f023c72ad021051e865d9d5ef268ec9": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.856Z"
+ "updatedAt": "2025-11-21T21:15:56.413Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.858Z"
+ "updatedAt": "2025-11-21T21:15:56.415Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.864Z"
+ "updatedAt": "2025-11-21T21:15:56.433Z"
}
}
},
@@ -5059,13 +5059,13 @@
},
"1e42c18859b8a4f5863f701845499ed58e6243cae93972a5fa7567f04fb9b5a4": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.854Z"
+ "updatedAt": "2025-11-21T21:15:56.411Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.856Z"
+ "updatedAt": "2025-11-21T21:15:56.413Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.867Z"
+ "updatedAt": "2025-11-21T21:15:56.437Z"
}
}
},
@@ -5094,13 +5094,13 @@
},
"79ce9a01a754dff7caa2815c273adb26f9fa5e7a21f6e8e07fc94d1f85cdba74": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.883Z"
+ "updatedAt": "2025-11-21T21:15:56.409Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.891Z"
+ "updatedAt": "2025-11-21T21:15:56.449Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.898Z"
+ "updatedAt": "2025-11-21T21:15:56.459Z"
}
}
},
@@ -5129,13 +5129,13 @@
},
"cb332adcfe09bedb087e499ecf60d6a233e8053ca49c78bb30ca1add261b4ea8": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.885Z"
+ "updatedAt": "2025-11-21T21:15:56.443Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.890Z"
+ "updatedAt": "2025-11-21T21:15:56.448Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.896Z"
+ "updatedAt": "2025-11-21T21:15:56.455Z"
}
}
},
@@ -5164,13 +5164,13 @@
},
"0d47285825c7ae55984e6f9c3d7528dd673f95650add2cbb567f8c29315f01d5": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.857Z"
+ "updatedAt": "2025-11-21T21:15:56.414Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.861Z"
+ "updatedAt": "2025-11-21T21:15:56.418Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.868Z"
+ "updatedAt": "2025-11-21T21:15:56.438Z"
}
}
},
@@ -5199,13 +5199,13 @@
},
"9277c5d065b05d3f338e148bb8b9a7359baa986e51127a488155faacbc3c3a72": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.884Z"
+ "updatedAt": "2025-11-21T21:15:56.442Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.888Z"
+ "updatedAt": "2025-11-21T21:15:56.445Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.897Z"
+ "updatedAt": "2025-11-21T21:15:56.459Z"
}
}
},
@@ -5234,13 +5234,13 @@
},
"a3d9f36e26be8d1d749fa658d2834e0b0c0316225d4a12f6fe599f481eb68175": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.855Z"
+ "updatedAt": "2025-11-21T21:15:56.412Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.863Z"
+ "updatedAt": "2025-11-21T21:15:56.432Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.866Z"
+ "updatedAt": "2025-11-21T21:15:56.436Z"
}
}
},
@@ -5269,13 +5269,13 @@
},
"ede4781ac253b215e63e85bc6df9f6b663c66406f6357aa7af4eeffb8d1a98cf": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.892Z"
+ "updatedAt": "2025-11-21T21:15:56.450Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.894Z"
+ "updatedAt": "2025-11-21T21:15:56.452Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.898Z"
+ "updatedAt": "2025-11-21T21:15:56.459Z"
}
}
},
@@ -5304,13 +5304,13 @@
},
"077aa8e71ac9b1ad9784f1fdb2f0f2272d89aef4e499c387a943a032aa224732": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.859Z"
+ "updatedAt": "2025-11-21T21:15:56.416Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.865Z"
+ "updatedAt": "2025-11-21T21:15:56.435Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.870Z"
+ "updatedAt": "2025-11-21T21:15:56.439Z"
}
}
},
@@ -5339,13 +5339,13 @@
},
"da016517371e5e7db181469b550eca247e51f3bf4b86713715fc068a333414c0": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.859Z"
+ "updatedAt": "2025-11-21T21:15:56.416Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.860Z"
+ "updatedAt": "2025-11-21T21:15:56.417Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.863Z"
+ "updatedAt": "2025-11-21T21:15:56.432Z"
}
}
},
@@ -5374,13 +5374,13 @@
},
"09e6faacedcffff953e51c59a6092cbbe84f4d0578d592bc9decaa2ea769e610": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.857Z"
+ "updatedAt": "2025-11-21T21:15:56.414Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.866Z"
+ "updatedAt": "2025-11-21T21:15:56.436Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.869Z"
+ "updatedAt": "2025-11-21T21:15:56.439Z"
}
}
},
@@ -5409,13 +5409,13 @@
},
"920a037cf6ef3d11b598424d40e30e4fb7ed552c10735b7bd0019d1f3fec22ed": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.890Z"
+ "updatedAt": "2025-11-21T21:15:56.448Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.890Z"
+ "updatedAt": "2025-11-21T21:15:56.447Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.894Z"
+ "updatedAt": "2025-11-21T21:15:56.453Z"
}
}
},
@@ -5444,13 +5444,13 @@
},
"73e97e9550aca0ead247a8d29bb6dac2a50383ac82c0b2865048005b70d66c61": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.855Z"
+ "updatedAt": "2025-11-21T21:15:56.412Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.862Z"
+ "updatedAt": "2025-11-21T21:15:56.432Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.865Z"
+ "updatedAt": "2025-11-21T21:15:56.435Z"
}
}
},
@@ -5479,13 +5479,13 @@
},
"160f5f116c9fa308d3ec6a5259bbd3981661441ed3005e4cecde5805eb67d49f": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.858Z"
+ "updatedAt": "2025-11-21T21:15:56.415Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.858Z"
+ "updatedAt": "2025-11-21T21:15:56.415Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.860Z"
+ "updatedAt": "2025-11-21T21:15:56.417Z"
}
}
},
@@ -5514,13 +5514,13 @@
},
"a1bf694f86c7f72fb10846dc37670a875e07de5a75e15426af1b93628b812848": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.864Z"
+ "updatedAt": "2025-11-21T21:15:56.433Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.866Z"
+ "updatedAt": "2025-11-21T21:15:56.436Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.867Z"
+ "updatedAt": "2025-11-21T21:15:56.437Z"
}
}
},
@@ -5560,13 +5560,13 @@
},
"d5f72a1068546e50a8769f65162ffc337c9b76d937e24eaec2c75f7a648f9644": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.870Z"
+ "updatedAt": "2025-11-21T21:15:56.440Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.870Z"
+ "updatedAt": "2025-11-21T21:15:56.440Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.871Z"
+ "updatedAt": "2025-11-21T21:15:56.441Z"
}
}
},
@@ -5617,13 +5617,13 @@
},
"bb192f14472c4d94ad880d1783a867313ae36201c60ff7aee4730510657347c2": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.852Z"
+ "updatedAt": "2025-11-21T21:15:56.410Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.860Z"
+ "updatedAt": "2025-11-21T21:15:56.417Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.866Z"
+ "updatedAt": "2025-11-21T21:15:56.435Z"
}
}
},
@@ -5652,13 +5652,13 @@
},
"62db0957ed6711220fa49c7cf65df10040a251057650ab128ccfbc68bc8408cd": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.859Z"
+ "updatedAt": "2025-11-21T21:15:56.416Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.853Z"
+ "updatedAt": "2025-11-21T21:15:56.411Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.854Z"
+ "updatedAt": "2025-11-21T21:15:56.443Z"
}
}
},
@@ -5711,39 +5711,39 @@
},
"acfaa578e31469bba912c816947b7f178d4832f82c00d05c3e244edd94887e39": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.922Z"
+ "updatedAt": "2025-11-21T21:15:56.490Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.923Z"
+ "updatedAt": "2025-11-21T21:15:56.491Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.924Z"
+ "updatedAt": "2025-11-21T21:15:56.492Z"
}
}
},
"d94f062276e8ad0d42732979d06ce717dd7311616fe48748e00dba55829e49e7": {
"38383b08735a5cb0e05fd23251b27a3ee86198c1e15186670fc6283782cd16ac": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.912Z"
+ "updatedAt": "2025-11-21T21:15:56.477Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.913Z"
+ "updatedAt": "2025-11-21T21:15:56.478Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.912Z"
+ "updatedAt": "2025-11-21T21:15:56.477Z"
}
}
},
"b75acb2803501aae1bc445e5c4671f7a1cb79a55d21e1658ded84494ddd40dd7": {
"2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.913Z"
+ "updatedAt": "2025-11-21T21:15:56.478Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.913Z"
+ "updatedAt": "2025-11-21T21:15:56.478Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.913Z"
+ "updatedAt": "2025-11-21T21:15:56.478Z"
}
}
},
@@ -5772,13 +5772,13 @@
},
"70ae68e58bd169fcaad5883e12866d9623dd08aeda647b33d080900e63da30ae": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.887Z"
+ "updatedAt": "2025-11-21T21:15:56.444Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.889Z"
+ "updatedAt": "2025-11-21T21:15:56.446Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.896Z"
+ "updatedAt": "2025-11-21T21:15:56.457Z"
}
}
},
@@ -5807,13 +5807,13 @@
},
"abd558ca5dff83fea0f652890cb390fbf5a7818d903e464a8407cbac75b6926b": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.901Z"
+ "updatedAt": "2025-11-21T21:15:56.465Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.902Z"
+ "updatedAt": "2025-11-21T21:15:56.466Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.907Z"
+ "updatedAt": "2025-11-21T21:15:56.472Z"
}
}
},
@@ -5831,13 +5831,13 @@
},
"14c735b1f5d231158fc82ee047c2c33adf31bf94b27796f516f1287a5bcec0be": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.871Z"
+ "updatedAt": "2025-11-21T21:15:56.441Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.872Z"
+ "updatedAt": "2025-11-21T21:15:56.442Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.871Z"
+ "updatedAt": "2025-11-21T21:15:56.441Z"
}
}
},
@@ -5866,13 +5866,13 @@
},
"6b0824d08f834f9a5d538b3b8632f9b239036b14491d42acebef6408dc7ec637": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.885Z"
+ "updatedAt": "2025-11-21T21:15:56.443Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.891Z"
+ "updatedAt": "2025-11-21T21:15:56.449Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.898Z"
+ "updatedAt": "2025-11-21T21:15:56.459Z"
}
}
},
@@ -5901,13 +5901,13 @@
},
"69541fe204b62627117cad380d521083fbbbf9f2aa883d6f7c32d9483e435d8a": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.892Z"
+ "updatedAt": "2025-11-21T21:15:56.450Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.895Z"
+ "updatedAt": "2025-11-21T21:15:56.454Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.896Z"
+ "updatedAt": "2025-11-21T21:15:56.456Z"
}
}
},
@@ -5936,13 +5936,13 @@
},
"a9933108d32793185c40702c6218e974c4ccb76eabbe428ce3ea89856a73eaca": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.904Z"
+ "updatedAt": "2025-11-21T21:15:56.468Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.906Z"
+ "updatedAt": "2025-11-21T21:15:56.471Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.907Z"
+ "updatedAt": "2025-11-21T21:15:56.472Z"
}
}
},
@@ -5971,13 +5971,13 @@
},
"be04206c1c53f3a25f69fae280dd277b9bde36158b2e9b21967acc980f632e3e": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.894Z"
+ "updatedAt": "2025-11-21T21:15:56.453Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.897Z"
+ "updatedAt": "2025-11-21T21:15:56.458Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.897Z"
+ "updatedAt": "2025-11-21T21:15:56.458Z"
}
}
},
@@ -6006,13 +6006,13 @@
},
"072b9eebedb71c24eff9121c4c3df35b97b1ed50e4d085469528c9d2de05859f": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.883Z"
+ "updatedAt": "2025-11-21T21:15:56.442Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.893Z"
+ "updatedAt": "2025-11-21T21:15:56.451Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.893Z"
+ "updatedAt": "2025-11-21T21:15:56.452Z"
}
}
},
@@ -6041,13 +6041,13 @@
},
"60410e8de452c7da325a02a1b113b5f41efda66701da3ba2c1c778a5bfcf1c6b": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.883Z"
+ "updatedAt": "2025-11-21T21:15:56.409Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.885Z"
+ "updatedAt": "2025-11-21T21:15:56.444Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.888Z"
+ "updatedAt": "2025-11-21T21:15:56.445Z"
}
}
},
@@ -6076,13 +6076,13 @@
},
"dde578357b2aa8dc9ec91b7416fd9f8749254ddcf457dc7de9da32aa6e56b9c8": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.893Z"
+ "updatedAt": "2025-11-21T21:15:56.452Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.895Z"
+ "updatedAt": "2025-11-21T21:15:56.454Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.895Z"
+ "updatedAt": "2025-11-21T21:15:56.454Z"
}
}
},
@@ -6111,13 +6111,13 @@
},
"d17d77e9a77034275d7299a408936de7d84a9217ba3d17dc5229aa6378688f5b": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.889Z"
+ "updatedAt": "2025-11-21T21:15:56.446Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.884Z"
+ "updatedAt": "2025-11-21T21:15:56.443Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.893Z"
+ "updatedAt": "2025-11-21T21:15:56.451Z"
}
}
},
@@ -6146,13 +6146,13 @@
},
"ed94ad0529b64d45d1957c423606fe64b44d4d6e64b8c759f8c651e1eeeab6d2": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.889Z"
+ "updatedAt": "2025-11-21T21:15:56.446Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.889Z"
+ "updatedAt": "2025-11-21T21:15:56.447Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.892Z"
+ "updatedAt": "2025-11-21T21:15:56.450Z"
}
}
},
@@ -6181,13 +6181,13 @@
},
"61916a309506445f20e4979e2a04f18a825fc867a7af92e1e9f217840401ff61": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.891Z"
+ "updatedAt": "2025-11-21T21:15:56.449Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.895Z"
+ "updatedAt": "2025-11-21T21:15:56.455Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.896Z"
+ "updatedAt": "2025-11-21T21:15:56.458Z"
}
}
},
@@ -6216,13 +6216,13 @@
},
"2a73cd0326763c7348f44dc1cc2e1d20ce60a6c28804faf8200b562081183243": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.890Z"
+ "updatedAt": "2025-11-21T21:15:56.447Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.891Z"
+ "updatedAt": "2025-11-21T21:15:56.448Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.894Z"
+ "updatedAt": "2025-11-21T21:15:56.452Z"
}
}
},
@@ -6251,13 +6251,13 @@
},
"8868b228fc8a687b133035b70a0de2ce37b05bf402b2e01848c326ea1dea023f": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.888Z"
+ "updatedAt": "2025-11-21T21:15:56.445Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.889Z"
+ "updatedAt": "2025-11-21T21:15:56.446Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.896Z"
+ "updatedAt": "2025-11-21T21:15:56.457Z"
}
}
},
@@ -6286,13 +6286,13 @@
},
"441f44e99448188269c15c491d62d5b3f3f8da03e91610c618a04efc0a0f2dca": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.894Z"
+ "updatedAt": "2025-11-21T21:15:56.453Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.891Z"
+ "updatedAt": "2025-11-21T21:15:56.449Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.897Z"
+ "updatedAt": "2025-11-21T21:15:56.472Z"
}
}
},
@@ -6332,13 +6332,13 @@
},
"e2e86174125296cc6c41a0539f379098a9f64428817936d4ce29fb6108660bc2": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.910Z"
+ "updatedAt": "2025-11-21T21:15:56.474Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.910Z"
+ "updatedAt": "2025-11-21T21:15:56.475Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.910Z"
+ "updatedAt": "2025-11-21T21:15:56.475Z"
}
}
},
@@ -6367,13 +6367,13 @@
},
"c7d98ce5a97fb43b1d912cce4b3ce9ca6eb8d6f9b3b9a63e254a65690e9bf03a": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.918Z"
+ "updatedAt": "2025-11-21T21:15:56.485Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.924Z"
+ "updatedAt": "2025-11-21T21:15:56.493Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.925Z"
+ "updatedAt": "2025-11-21T21:15:56.493Z"
}
}
},
@@ -6402,26 +6402,26 @@
},
"e5f66a275721a9cc17c973319dccecc1dac2ac8dee59f4ab039032125acac1a5": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.915Z"
+ "updatedAt": "2025-11-21T21:15:56.481Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.900Z"
+ "updatedAt": "2025-11-21T21:15:56.462Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.924Z"
+ "updatedAt": "2025-11-21T21:15:56.492Z"
}
}
},
"9f010ac20bb43e57e5a7e4090f5201d7cb2a2c159a75dcd9dc8c8fec762bdb2f": {
"ddf56b843c9eb02243bfeecfd91aaaa2ec31066e8332e46c84e6e2e13605c21f": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.912Z"
+ "updatedAt": "2025-11-21T21:15:56.477Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.912Z"
+ "updatedAt": "2025-11-21T21:15:56.477Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.912Z"
+ "updatedAt": "2025-11-21T21:15:56.477Z"
}
}
},
@@ -6498,13 +6498,13 @@
},
"ddeb7f2354190cbc31ab09c6f70e517fff11b85b0d95e50c7db0f94bb98f084b": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.905Z"
+ "updatedAt": "2025-11-21T21:15:56.470Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.906Z"
+ "updatedAt": "2025-11-21T21:15:56.471Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.909Z"
+ "updatedAt": "2025-11-21T21:15:56.474Z"
}
}
},
@@ -6533,13 +6533,13 @@
},
"f07a3c65b544b1b6c3631e472056dfd51f9fbc79e28fe7073271fa963f1355a2": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.887Z"
+ "updatedAt": "2025-11-21T21:15:56.463Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.903Z"
+ "updatedAt": "2025-11-21T21:15:56.467Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.909Z"
+ "updatedAt": "2025-11-21T21:15:56.474Z"
}
}
},
@@ -6568,13 +6568,13 @@
},
"9af3d645babdeca987fedca80aae0b76816b37e30bf3a25fc1db00ead3f1bca8": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.900Z"
+ "updatedAt": "2025-11-21T21:15:56.462Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.915Z"
+ "updatedAt": "2025-11-21T21:15:56.480Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.917Z"
+ "updatedAt": "2025-11-21T21:15:56.483Z"
}
}
},
@@ -6603,13 +6603,13 @@
},
"6958bd474f6a4553c34c8b0c0941dc296fda94522707820277c2a5d0c951d3d9": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.918Z"
+ "updatedAt": "2025-11-21T21:15:56.484Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.920Z"
+ "updatedAt": "2025-11-21T21:15:56.487Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.921Z"
+ "updatedAt": "2025-11-21T21:15:56.488Z"
}
}
},
@@ -6638,13 +6638,13 @@
},
"9a8eb49e54fa21c3ff613191e3d1b289989902d0fa2e4ba51397002c40e93870": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.922Z"
+ "updatedAt": "2025-11-21T21:15:56.489Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.925Z"
+ "updatedAt": "2025-11-21T21:15:56.494Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.926Z"
+ "updatedAt": "2025-11-21T21:15:56.495Z"
}
}
},
@@ -6673,13 +6673,13 @@
},
"1154edcbe3fdbda2eae42bc99ecc5bb63cae52c0474d507872da2f6dc8e7f297": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.908Z"
+ "updatedAt": "2025-11-21T21:15:56.473Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.906Z"
+ "updatedAt": "2025-11-21T21:15:56.470Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.909Z"
+ "updatedAt": "2025-11-21T21:15:56.474Z"
}
}
},
@@ -6732,13 +6732,13 @@
},
"0ea9b1d6e66497b1210bfe5724c2f7510c6e6d56377ada39d875c6fcfe0f87c8": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.907Z"
+ "updatedAt": "2025-11-21T21:15:56.490Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.908Z"
+ "updatedAt": "2025-11-21T21:15:56.492Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.909Z"
+ "updatedAt": "2025-11-21T21:15:56.494Z"
}
}
},
@@ -6756,13 +6756,13 @@
},
"a4977444f0f815bce050c7b0c40b95d2b90dad17b3590fe6a21f53bc81615877": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.884Z"
+ "updatedAt": "2025-11-21T21:15:56.463Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.902Z"
+ "updatedAt": "2025-11-21T21:15:56.466Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.906Z"
+ "updatedAt": "2025-11-21T21:15:56.470Z"
}
}
},
@@ -6780,13 +6780,13 @@
},
"431c7d877cd968680654f3ba3199018c65f3067f181556f6c17cb6fc23a09b95": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.902Z"
+ "updatedAt": "2025-11-21T21:15:56.466Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.904Z"
+ "updatedAt": "2025-11-21T21:15:56.469Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.905Z"
+ "updatedAt": "2025-11-21T21:15:56.469Z"
}
}
},
@@ -6804,13 +6804,13 @@
},
"6271866faf9d02d817186ae34b2d3eab2cf36cf06b76aef6099a4b150a1b7a29": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.905Z"
+ "updatedAt": "2025-11-21T21:15:56.469Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.905Z"
+ "updatedAt": "2025-11-21T21:15:56.470Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.906Z"
+ "updatedAt": "2025-11-21T21:15:56.471Z"
}
}
},
@@ -6828,13 +6828,13 @@
},
"2b5cfbd867ca905528ea813143cb7cd4d779ff3e6af7fc85478477cde375d7b4": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.900Z"
+ "updatedAt": "2025-11-21T21:15:56.464Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.901Z"
+ "updatedAt": "2025-11-21T21:15:56.464Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.904Z"
+ "updatedAt": "2025-11-21T21:15:56.468Z"
}
}
},
@@ -6852,13 +6852,13 @@
},
"81dc63a56ed47eb6d5074a9077653870c724bb93134e76ca204752ffda496a52": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.900Z"
+ "updatedAt": "2025-11-21T21:15:56.464Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.902Z"
+ "updatedAt": "2025-11-21T21:15:56.465Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.908Z"
+ "updatedAt": "2025-11-21T21:15:56.473Z"
}
}
},
@@ -6876,13 +6876,13 @@
},
"12bcbe0047512bda33bb98c07f650993bb355469a42885552917c1f1369c09a6": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.901Z"
+ "updatedAt": "2025-11-21T21:15:56.464Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.903Z"
+ "updatedAt": "2025-11-21T21:15:56.467Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.904Z"
+ "updatedAt": "2025-11-21T21:15:56.469Z"
}
}
},
@@ -6911,26 +6911,26 @@
},
"03347655354b5e353b408c7a4beb3218145489a16062547e3b6ae4ca52dab02f": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.901Z"
+ "updatedAt": "2025-11-21T21:15:56.465Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.904Z"
+ "updatedAt": "2025-11-21T21:15:56.468Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.904Z"
+ "updatedAt": "2025-11-21T21:15:56.468Z"
}
}
},
"dc269fa38a9f70dcc0dcdd446172ce680441082b0cba035e0d7d22453651fb4c": {
"841108bbf6e1733b36d68418b8096f6505ae3769ebe6bb0939b9862f7ee905ae": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.913Z"
+ "updatedAt": "2025-11-21T21:15:56.479Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.914Z"
+ "updatedAt": "2025-11-21T21:15:56.479Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.914Z"
+ "updatedAt": "2025-11-21T21:15:56.479Z"
}
}
},
@@ -6959,13 +6959,13 @@
},
"1a8ae0e522de475d50ceb2c3d930ab75e0a9c7cb448a33d5a9aafaa5717b2770": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.833Z"
+ "updatedAt": "2025-11-21T21:15:56.390Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.836Z"
+ "updatedAt": "2025-11-21T21:15:56.393Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.850Z"
+ "updatedAt": "2025-11-21T21:15:56.406Z"
}
}
},
@@ -6994,13 +6994,13 @@
},
"712c65b8f604471a93ce53fc12fde0176d8b7a65778998aaa0aad58f3d66f226": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.918Z"
+ "updatedAt": "2025-11-21T21:15:56.484Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.920Z"
+ "updatedAt": "2025-11-21T21:15:56.487Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.923Z"
+ "updatedAt": "2025-11-21T21:15:56.490Z"
}
}
},
@@ -7029,13 +7029,13 @@
},
"df2826252d76bef142551e69ee162b565fd37e0e63cdd9159fb925f1f911f524": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.915Z"
+ "updatedAt": "2025-11-21T21:15:56.480Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.920Z"
+ "updatedAt": "2025-11-21T21:15:56.486Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.921Z"
+ "updatedAt": "2025-11-21T21:15:56.488Z"
}
}
},
@@ -7064,13 +7064,13 @@
},
"3db39b6f8aead15f7b8dbe6824e173913fabaf7b510406e0124e1b2be61ca3de": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.919Z"
+ "updatedAt": "2025-11-21T21:15:56.485Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.922Z"
+ "updatedAt": "2025-11-21T21:15:56.489Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.923Z"
+ "updatedAt": "2025-11-21T21:15:56.491Z"
}
}
},
@@ -7099,13 +7099,13 @@
},
"4bc387e1ff76fddd88238476d65b74ade4cc2f449ce36eb3bc8b85f770c3f490": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.917Z"
+ "updatedAt": "2025-11-21T21:15:56.483Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.917Z"
+ "updatedAt": "2025-11-21T21:15:56.483Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.917Z"
+ "updatedAt": "2025-11-21T21:15:56.483Z"
}
}
},
@@ -7134,13 +7134,13 @@
},
"d51544db93deb2a18fa27e6efe1c2582b2769e28f13d7f06bb6691034fdad163": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.916Z"
+ "updatedAt": "2025-11-21T21:15:56.482Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.919Z"
+ "updatedAt": "2025-11-21T21:15:56.486Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.920Z"
+ "updatedAt": "2025-11-21T21:15:56.486Z"
}
}
},
@@ -7169,13 +7169,13 @@
},
"62faf6816da4cc899a87cf65d8cdedfb2984c52d91929ff74e1ff826d2f3edf2": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.915Z"
+ "updatedAt": "2025-11-21T21:15:56.481Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.921Z"
+ "updatedAt": "2025-11-21T21:15:56.488Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.925Z"
+ "updatedAt": "2025-11-21T21:15:56.494Z"
}
}
},
@@ -7204,13 +7204,13 @@
},
"ec813e998591f0d4114ebde9d66a49f01a39db4bc9c058a1340c41d38731a456": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.914Z"
+ "updatedAt": "2025-11-21T21:15:56.480Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.924Z"
+ "updatedAt": "2025-11-21T21:15:56.492Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.922Z"
+ "updatedAt": "2025-11-21T21:15:56.489Z"
}
}
},
@@ -7239,13 +7239,13 @@
},
"fdb1f135104b4d5d5aa59dc227cb911c87d278cb5a8a10d950429502b06e35db": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.916Z"
+ "updatedAt": "2025-11-21T21:15:56.481Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.914Z"
+ "updatedAt": "2025-11-21T21:15:56.480Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.919Z"
+ "updatedAt": "2025-11-21T21:15:56.485Z"
}
}
},
@@ -7274,13 +7274,13 @@
},
"02a3f8a9c2b7bed0ca12b135d6610f9dd0567e2045b9486068c3fcc46e5e7b9f": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.899Z"
+ "updatedAt": "2025-11-21T21:15:56.462Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.916Z"
+ "updatedAt": "2025-11-21T21:15:56.482Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.919Z"
+ "updatedAt": "2025-11-21T21:15:56.485Z"
}
}
},
@@ -7331,13 +7331,13 @@
},
"6c9af69e973b5a013910ef259a5a71e1aae045fac921a68550ae739aa1e0aaed": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.916Z"
+ "updatedAt": "2025-11-21T21:15:56.482Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.922Z"
+ "updatedAt": "2025-11-21T21:15:56.490Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.923Z"
+ "updatedAt": "2025-11-21T21:15:56.491Z"
}
}
},
@@ -7366,13 +7366,13 @@
},
"da2fe203fd6263e2f728a6d0927c4acfae11b86bb47b86a53209988c7f12a9b8": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.918Z"
+ "updatedAt": "2025-11-21T21:15:56.484Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.920Z"
+ "updatedAt": "2025-11-21T21:15:56.487Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.926Z"
+ "updatedAt": "2025-11-21T21:15:56.495Z"
}
}
},
@@ -7401,13 +7401,13 @@
},
"d6087277997107007f0e8bb1fa131196a7db7e155e4fff201da51c38c12cdea4": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.919Z"
+ "updatedAt": "2025-11-21T21:15:56.486Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.925Z"
+ "updatedAt": "2025-11-21T21:15:56.493Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.925Z"
+ "updatedAt": "2025-11-21T21:15:56.493Z"
}
}
},
@@ -7436,13 +7436,13 @@
},
"83bea4f26ff686307b770bfaca74faddccd854e05ce6462eefc4c2832e6d3813": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.854Z"
+ "updatedAt": "2025-11-21T21:15:56.412Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.856Z"
+ "updatedAt": "2025-11-21T21:15:56.413Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.867Z"
+ "updatedAt": "2025-11-21T21:15:56.437Z"
}
}
},
@@ -7471,13 +7471,13 @@
},
"b72d2b9d9ef504cbfecd6422d202a23f54cb213b4a6c7fbe372d2fe6c315757d": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.903Z"
+ "updatedAt": "2025-11-21T21:15:56.467Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.908Z"
+ "updatedAt": "2025-11-21T21:15:56.473Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.908Z"
+ "updatedAt": "2025-11-21T21:15:56.473Z"
}
}
},
@@ -7495,91 +7495,104 @@
},
"63edc9f8eced556d538a11fa6698380e9a743ce1de62b85c73cccb6a91d3af3e": {
"fr": {
- "updatedAt": "2025-11-21T18:55:32.837Z"
+ "updatedAt": "2025-11-21T21:15:56.394Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.841Z"
+ "updatedAt": "2025-11-21T21:15:56.398Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.839Z"
+ "updatedAt": "2025-11-21T21:15:56.396Z"
}
}
},
"39825e960dc329e7e701846853ea8b2c69eccee5c036c82edfdf9a06020a9fbb": {
"c2e28964d6bf27dad509a1169a25e67dcb784e72bd2b52b810d9fba2f2c5a82b": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.826Z"
+ "updatedAt": "2025-11-21T21:15:56.383Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.826Z"
+ "updatedAt": "2025-11-21T21:15:56.383Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.827Z"
+ "updatedAt": "2025-11-21T21:15:56.384Z"
}
}
},
"5ee2c22c5f816bd2e9ccb18534d94c7d2d0d1fd48d15aea7d344871cc05d6b5d": {
"ab26030a2677e7aee15a1962ed36cc8690f9395c1234a20e05071c72dccaff07": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.827Z"
+ "updatedAt": "2025-11-21T21:15:56.384Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.827Z"
+ "updatedAt": "2025-11-21T21:15:56.385Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.829Z"
+ "updatedAt": "2025-11-21T21:15:56.386Z"
}
}
},
"fd46ee9a7c4d77ed4c1a2b9efb3f8f7f2964363b03115970bf43dd58e197f08c": {
"935322d7360b64d9326d5f92a1858bc47136cff17d63784a0d3cd82ba099c65a": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.812Z"
+ "updatedAt": "2025-11-21T21:15:56.368Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.812Z"
+ "updatedAt": "2025-11-21T21:15:56.369Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.813Z"
+ "updatedAt": "2025-11-21T21:15:56.370Z"
}
}
},
"ae682ad0c390ee5d2a787779b0781d8ba9aa7e9facf958bd2d07b2d1e6a5a8fd": {
"014f00ea40cd4b853d8f1d7402a3b61cd123492b45eaa0e06f5415df5b236234": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.829Z"
+ "updatedAt": "2025-11-21T21:15:56.386Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.830Z"
+ "updatedAt": "2025-11-21T21:15:56.387Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.831Z"
+ "updatedAt": "2025-11-21T21:15:56.388Z"
}
}
},
"f01b14e6cb9b0793859f39974057dccadb099e6923db2cd880d1405c42ea9f6d": {
"d2c82f40d334439f08a63b79ddbe7185e0cc02ee88fb77fd5f7f3ca6c2899d6f": {
"es": {
- "updatedAt": "2025-11-21T18:55:32.898Z"
+ "updatedAt": "2025-11-21T21:15:56.460Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.899Z"
+ "updatedAt": "2025-11-21T21:15:56.460Z"
},
"zh": {
- "updatedAt": "2025-11-21T18:55:32.899Z"
+ "updatedAt": "2025-11-21T21:15:56.461Z"
}
}
},
"be5e892f6c4f67bd81fe0cb2eb2c6926b3e1aed86319263030ba6de5aef81643": {
"2d45a98943adcf6323d8b9bd963e1a68b9c6d584fe97c7f01e9a6f37e4268f9c": {
"zh": {
- "updatedAt": "2025-11-21T18:55:32.926Z"
+ "updatedAt": "2025-11-21T21:15:56.461Z"
},
"es": {
- "updatedAt": "2025-11-21T18:55:32.926Z"
+ "updatedAt": "2025-11-21T21:15:56.461Z"
},
"fr": {
- "updatedAt": "2025-11-21T18:55:32.927Z"
+ "updatedAt": "2025-11-21T21:15:56.461Z"
+ }
+ }
+ },
+ "77ea8b1235af73346c74a76d9c806e3bb004764d3a0d8aa467b0cd38785523c1": {
+ "11572668be0bfa5784f337f06ff8b84bd549b35ba8986840db7e54a31ffd864f": {
+ "zh": {
+ "updatedAt": "2025-11-21T21:15:56.495Z"
+ },
+ "fr": {
+ "updatedAt": "2025-11-21T21:15:56.496Z"
+ },
+ "es": {
+ "updatedAt": "2025-11-21T21:15:56.496Z"
}
}
}
diff --git a/zh/deploy/ghes.mdx b/zh/deploy/ghes.mdx
new file mode 100644
index 000000000..1484f1c2f
--- /dev/null
+++ b/zh/deploy/ghes.mdx
@@ -0,0 +1,292 @@
+---
+title: "GitHub Enterprise Server"
+description: "在你的 GitHub Enterprise Server 实例上设置 GitHub 应用。"
+keywords: ["GitHub Enterprise Server", "GHES", "GitHub Enterprise"]
+---
+
+本指南将逐步引导你在 GitHub Enterprise Server(GHES)实例上配置 Mintlify GitHub App。要将 GHES 实例连接到 Mintlify,你必须在自托管环境中创建该应用的本地版本,用于与我们的远程服务器通信。
+
+如果你使用的是云托管的 GitHub 实例,请参阅 [GitHub](/zh/deploy/github) 页面了解设置方法。
+
+
+ ## 前提条件
+
+
+* 在你要安装该应用的 GitHub Enterprise Server 组织中拥有管理员权限
+* 能访问你要安装该应用的组织仓库
+* 具备与我们外部服务通信的网络连通性(参见下方的 [网络要求](#network-requirements) 部分)
+
+
+ ### 网络要求
+
+
+
+ #### 出站连接
+
+
+你的 GitHub Enterprise Server 必须能够访问:
+
+* Mintlify 的 API 端点 (https://leaves.mintlify.com)
+* Webhook 接收端(443 端口)
+
+
+ #### 防火墙配置
+
+
+必须允许以下出站连接:
+
+* 来自 Mintlify 静态 IP 地址的连接:`54.242.90.151`
+* 到 Mintlify 服务域名的 HTTPS(端口 443)连接
+* 对 Mintlify 服务域名的 DNS 解析
+
+
+ ## 步骤 1:注册 GitHub 应用
+
+
+有关详细步骤,请参阅 GitHub 文档中的[注册 GitHub 应用](https://docs.github.com/en/enterprise-server@3.18/apps/creating-github-apps/registering-a-github-app/registering-a-github-app)。
+
+
+
+ 1. 在 GitHub 的任意页面右上角,点击你的个人头像。
+ 2. 点击 **Your organizations**。
+ 3. 在你想为其创建应用的组织旁边,点击 **Settings**。
+
+
+
+ 1. 在左侧边栏中,点击 **Developer settings**。
+ 2. 点击 **GitHub Apps**。
+ 3. 点击 **New GitHub App**。
+
+
+
+ 进行如下设置:
+
+ * **GitHub App name:** `Mintlify`
+ * **Description:** `Integration with Mintlify services`
+ * **Homepage URL:** `https://mintlify.com`
+ * **User authorization callback URL:** `https://your-github-server.com/`(替换为你实际的 GHES 域名)
+
+
+
+
+ ## 步骤 2:配置应用权限
+
+
+
+
+ 为该应用设置以下权限。无需为组织(Organization)、账户(Account)或企业(Enterprise)配置任何权限:
+
+ * **Checks:** 读取和写入
+ * **Contents:** 读取和写入
+ * **Deployments:** 读取和写入
+ * **Metadata:** 只读
+ * **Pull Requests:** 读取和写入
+
+
+
+ 选择以下 webhook 事件:
+
+ * Installation(安装)
+ * Installation Target(安装目标)
+ * Create(创建)
+ * Delete(删除)
+ * Public(公开)
+ * Pull Request(拉取请求)
+ * Push(推送)
+ * Repository(仓库)
+
+
+
+
+ ## 步骤 3:生成并保护凭证
+
+
+
+
+ 点击 **Create GitHub App**。
+
+ 您会被重定向到该应用的设置页面。
+
+
+
+ 1. 向下滚动至 **Private keys** 部分。
+ 2. 点击 **Generate a private key**。
+ 3. 下载 `.pem` 文件并安全保存。
+
+
+
+ 记录以下信息:
+
+ * **App ID**(显示在设置页面顶部)
+ * **Client ID**(位于 “About” 部分)
+ * **Client Secret**(生成后请妥善保存)
+
+
+
+
+ ## 步骤 4:安装应用
+
+
+
+
+ 1. 在应用设置页面,点击左侧边栏中的 **Install App**。
+ 2. 从列表中选择你的组织。
+
+
+
+ 选择以下其中一项:
+
+ * **All repositories**(适用于组织内的所有代码仓库)
+ * **Only select repositories**(仅选择特定代码仓库)
+
+
+ 我们建议选择 “Only select repositories”,并将应用的访问范围限制为存放你文档的那些仓库。
+
+
+
+
+ 1. 点击 **Install**。
+ 2. 记录 URL 中的 installation ID。例如,在 `https://your-github-server.com/settings/installations/12345` 中,字符串 `12345` 就是 installation ID。
+
+
+
+
+ ## 步骤 5:配置 webhook URL
+
+
+
+
+ 1. 返回你的应用设置页面。
+ 2. 向下滚动到 **Webhook** 部分。
+
+
+
+ 按如下方式配置:
+
+ * **Webhook URL:** `https://leaves.mintlify.com/github-enterprise/:subdomain`(将 `:subdomain` 替换为我们提供给你的 URL)
+ * **Webhook secret:** 生成一个随机字符串(32 个以上字符)并妥善保存。Mintlify 也可以为你生成并提供此密钥。
+
+
+
+
+ ## 向我们提供凭证
+
+
+请通过你选择的安全信息传输方式,将以下信息提供给我们的团队。
+
+
+ ### 所需凭证
+
+
+* GitHub Enterprise Server 基础 URL:https://your-github-server.com
+* App ID:(来自步骤 3)
+* 应用客户端 ID:(来自步骤 3)
+* 应用客户端密钥:(来自步骤 3)
+* Installation ID:(来自步骤 4)
+* 私钥:`.pem` 文件的全部内容(应通过安全文件传输方式传递)
+* Webhook 密钥:(来自步骤 5)
+
+
+ ### 用于故障排查的可选凭据
+
+
+* 组织名称:你的 GitHub 组织名称
+* 仓库名称:安装该应用的具体仓库
+* GitHub Enterprise Server 版本:可在站点管理后台中查看
+
+
+ ## Mintlify 连接
+
+
+我们会使用你提供的凭据,并将其加密后安全存储起来。然后我们会与你协作,采用以下两种方式之一:
+
+* 将你的 GHES 环境与现有的 Mintlify 部署集成。
+* 将你的 GHES 环境与我们为你准备的新 Mintlify 部署集成。
+
+当你的 GHES 环境与某个 Mintlify 部署完成集成后,你就可以为 GitHub App 启用 webhook 了。
+
+
+ 根据我们的配置,webhook 的 URL 可能会发生变化。我们会测试集成,并向你提供新的 URL。
+
+
+
+ ## 测试集成
+
+
+
+
+ 1. 前往 GitHub 应用的设置页面。
+ 2. 点击 **Advanced** 选项卡。
+ 3. 在 "Recent Deliveries" 中检查 webhook 是否成功投递。
+ 4. 查找 HTTP 200 响应。
+
+
+
+ 1. 在已安装的仓库中创建一个测试 issue 或 pull request。
+ 2. 确认 Mintlify 的响应是否符合预期。
+
+
+
+
+ ## 常见问题与故障排查
+
+
+
+
+ 请确保你具备:
+
+ * 创建应用所需的站点管理员权限
+ * 安装应用所需的组织所有者或管理员权限
+ * 如果要安装到特定仓库,还需具备相应仓库权限
+
+
+
+ * 验证 webhook URL 是否正确且可访问。
+ * 确保你的防火墙允许向外发起 HTTPS 连接。
+ * 检查 webhook secret 是否与配置时设置的一致。
+ * 在 GitHub App 设置的「Advanced」选项卡中查看 webhook 投递日志。
+
+
+
+ 你的 GHES 可能使用了自签名证书,因此我们的服务无法验证你服务器的证书。
+
+ **解决方案:** 确保你的 GHES 使用有效的 SSL 证书。
+
+
+
+ * 确认 webhook 已成功投递,并且我们的服务器以 200 响应码进行确认。
+ * 确认安装过程中已授予所需权限。
+
+
+
+ 可以,在安装过程中你可以选择「Only select repositories」,并挑选特定仓库。之后也可以在你组织的已安装应用设置中进行修改。这是推荐的安装方式。
+
+
+
+ * 以站点管理员身份进入应用设置。
+ * 根据需要修改权限。
+ * 应用需要由组织所有者重新批准。
+ * 如有权限变更,请通知我们,因为这可能会影响功能。
+
+
+
+ 你需要:
+
+ * 在防火墙中将我们的服务域名加入允许列表。
+ * 确保可以向外建立 HTTPS(443 端口)连接。
+ * 如果不允许直接访问互联网,请配置代理。
+
+
+
+ 不能,你的 GHES 必须能够与我们托管在云端的服务器通信。
+
+
+
+ 请联系你在 Mintlify 对接的客户成功代表,或通过 support@mintlify.com 联系我们的支持团队,并提供:
+
+ * 你的 GitHub Enterprise Server 版本
+ * 具体错误信息
+ * 相关问题的截图
+ * 网络 / 防火墙配置详情(如适用)
+
+
\ No newline at end of file